/* Infinite right-to-left logo marquee for the "We are associated with" strip */

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee__item img {
  display: block;
  max-height: 60px;
  width: auto;
  opacity: 0.75;
  filter: grayscale(100%);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.marquee__item img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .marquee__track {
    gap: 40px;
    animation-duration: 18s;
  }

  .marquee__item img {
    max-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}
