/* Sponsor */
#sponsors .sponsors-container {
	width: 100%;
	overflow: hidden;
	position: relative;
}
#sponsors .sponsor-logos {
	gap: 0;
	align-items: center;
	white-space: nowrap;
	width: fit-content;
	will-change: transform;
  	transform: translateX(0);
	animation: none;
}
@keyframes scrollBackAndForth {
  0%, 10% { transform: translateX(0); }
  50% { transform: translateX(var(--scroll-distance)); }
  90%, 100% { transform: translateX(0); }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Move left by the full width of the logos */
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 769px) {
	#sponsors .sponsor-logos img { width: 140px; }
}

@media screen and (max-width: 581px) {
	#sponsors .sponsor-logos img { width: 100px; }
}
