/* Container that hides the overflowing logos */
.continuous-marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 20px 0;
}

/* The track that actually moves */
.continuous-marquee-track {
  display: inline-block;
  /* Adjust the '25s' to make it scroll faster or slower */
  animation: marquee-scroll 25s linear infinite;
}

/* Optional but recommended: Pause the scrolling when the user hovers over it */
.continuous-marquee-container:hover .continuous-marquee-track {
  animation-play-state: paused;
}

/* Styling for the items inside the track */
.continuous-marquee-track a {
  display: inline-block;
  margin: 0 40px; /* Space between each logo */
  text-decoration: none;
}

.continuous-marquee-track img {
  vertical-align: middle;
  max-height: 100px; /* Adjust based on how large you want the logos */
  width: auto;
}

/* The Animation Keyframes */
/* It moves left by exactly 50% of its width, then instantly resets */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}