.customer-logo-banner .elementor-widget-loop-carousel .swiper-wrapper {
  transition-timing-function: linear !important;
  animation: loop-scroll 60s linear infinite !important;
}

@media (max-width: 1200px) {
  .customer-logo-banner .elementor-widget-loop-carousel .swiper-wrapper {
    animation: loop-scroll 40s linear infinite !important;
  }
}

@media (max-width: 1024px) {
  .customer-logo-banner .elementor-widget-loop-carousel .swiper-wrapper {
    animation: loop-scroll 33s linear infinite !important;
  }
}

@media (max-width: 880px) {
  .customer-logo-banner .elementor-widget-loop-carousel .swiper-wrapper {
    animation: loop-scroll 27s linear infinite !important;
  }
}

@media (max-width: 767px) {
  .customer-logo-banner .elementor-widget-loop-carousel .swiper-wrapper {
    animation: loop-scroll 20s linear infinite !important;
  }
}

@keyframes loop-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.customer-logo-banner .elementor-widget-loop-carousel {
  position: relative;
  overflow: hidden; /* important */
}

.customer-logo-banner .elementor-widget-loop-carousel::before,
.customer-logo-banner .elementor-widget-loop-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px; /* width of fade effect */
  height: 100%;
  z-index: 5;
  pointer-events: none; /* allows interaction through fades */
}

.customer-logo-banner .elementor-widget-loop-carousel::before {
  left: 0;
  background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
}

.customer-logo-banner .elementor-widget-loop-carousel::after {
  right: 0;
  background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
}
