.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background-image: url('https://vendor-provider.fra1.digitaloceanspaces.com/ebetlab/kfkadfkqAgdjqeADqqfa/mini-banners/1JZxQTAGpSndnmbPURId8id2UnAVZmq5XXLHsvcJ.jpg');
  padding: 20px 0;
  margin-top: 35px;
}

.marquee-content {
  display: flex;
  gap: 40px;
  animation: marquee-animation 50s linear infinite;
}

.marquee-content img {
  max-height: 50px;
  transition: transform 0.3s ease;
}

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

@keyframes marquee-animation {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
