.marquee-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 150px;
  background: #ffffff;
  padding: 16px 0;
  border-radius: 8px;
  margin: 20px 0;
}
.Sponsored{
display: flex;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 150px;
  background: #ffffff;
  padding: 16px 0;
  border-radius: 8px;
  margin: 20px 0;
}
.marquee-lane {
  width: 20%;
  height: 100%;
  overflow: hidden;
  position: relative;
}


.marquee-content {
  display: flex;
  flex-direction:row;
  animation: slot-scroll-vertical 6s linear infinite;
}

.marquee-content img {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  margin: 10px 0;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  object-fit: contain;
}
.marquee-content img:hover {
  opacity: 1;
}

@keyframes slot-scroll-vertical {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}