.vlt-custom--8131 {
  bottom: -250px;
  left: -200px;
  max-width: 550px;
}

.vlt-custom--1451 {
  top: -25px;
  left: -30px;
  width: 256px;
  height: 208px;
}

@media only screen and (max-width: 575px) {
  .vlt-custom--1451 {
    top: -100px;
    left: -100px;
  }
}

.vlt-custom--1512 {
  bottom: -28vw;
  left: 45vw;
  width: 75vw;
  height: 75vw;
  background-size: cover;
}

.vlt-custom--1513 {
  width: 100%;
  height: 100%;
  background-size: cover;
}

.vlt-custom--4124 {
  top: 0;
  right: 0;
  bottom: 0;
  width: 45vw;
  height: 100%;
  background-position: top left;
  background-size: cover;
}

@media only screen and (max-width: 991px) {
  .vlt-custom--4124 {
    right: 0;
    width: 50vw;
  }
}

@media only screen and (max-width: 767px) {
  .vlt-custom--4124 {
    right: -50vw;
    width: 100vw;
  }
}

@media only screen and (max-width: 575px) {
  .vlt-custom--4124 {
    right: 0vw;
    width: 100vw;
    height: 75%;
    bottom: 0;
  }
}

.vlt-custom--1259 {
  top: -20px;
  right: -5px;
  width: 256px;
  height: 208px;
}

.vlt-custom--2355 {
  bottom: -250px;
  left: 0;
  width: 389px;
  height: 550px;
}

/* New Smooth Scrolling Animation for Customer Scroller */
.scroller[data-animated="true"] .scroller__inner {
  will-change: transform;
  animation: smoothScroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}

/* Paused state - smoothly stop animation */
.scroller[data-animated="true"].scroller-paused .scroller__inner {
  animation-play-state: paused;
  transition: none;
}

/* New smooth scroll keyframes - replaces old animation */
@keyframes smoothScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 2rem));
  }
}

/* Override old animation from vlt-main.min.css */
.scroller[data-animated="true"] .scroller__inner {
  animation-name: smoothScroll !important;
}

/* Shine animation for all logos in scroller when hovering over any logo */
.scroller__inner {
  position: relative;
}

.scroller__inner img {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
}

/* Create subtle shine overlay for all images when scroller has logo-hovered class */
.scroller.logo-hovered .scroller__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.6) 48%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.6) 52%,
    transparent 60%,
    transparent 100%
  );
  transform: skewX(-25deg);
  z-index: 5;
  pointer-events: none;
  animation: shineSweep 1.5s ease-out forwards;
  mix-blend-mode: screen;
}

/* Subtle shine effect on all images except hovered one - no border */
.scroller.logo-hovered .scroller__inner img:not(:hover) {
  position: relative;
  animation: subtleShine 2.5s ease-in-out infinite;
}

/* Hovered logo - scale up with smooth animation */
.scroller__inner img:hover {
  transform: scale(1.1);
  z-index: 10;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes shineSweep {
  0% {
    left: -100%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    left: 0%;
    opacity: 0;
  }
}

@keyframes subtleShine {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.15);
  }
}
