@keyframes animateSliderInfinite {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.wp-block-acf-slider-logo {
  width: 100%;
  overflow-x: scroll;
}

.animate-slider-infinite {
  animation: animateSliderInfinite linear infinite;
  animation-duration: var(--duration);
}

.slider-logo-wrapper:hover .animate-slider-infinite {
  animation-play-state: paused;
}

.slider-logo-wrapper {
  height: 60px;
}

.logo-slider {
  filter: grayscale(1);
  max-width: 136px !important;
}

.img-link {
  transform: scale(1);
  transition: transform 0.3s ease;
}

.img-link:hover {
  transform: scale(0.95);
}