body {
    background-color: black;
    background: url(../../brand/background.jpg) no-repeat 100% 0, rgb(29, 32, 30);
    background-position: center top;
}

.hover-image-scale {
    display: inline-block; 
    overflow: visible; /* Скрываем всё за контуром */
  }
  .hover-image-scale img {
    transition: 1s; /* Время эффекта */
    display: block; 
  }
  .hover-image-scale img:hover {
    transform: scale(1.2); /* Увеличиваем масштаб */
  }
  @media screen and (max-width: 991px) {
    div.mobinvis  {
        visibility: hidden;
        display: none;
    }
    .mobinvis img {
      width: 0;
    }
  }