.yt-video {
    height: 250px;
  }

@media only screen and (min-width: 768px) {
  .yt-video {
    height: 350px;
  }
}

@media only screen and (min-width: 1024px) {
  .yt-video {
    height: 500px;
  }
}

.banner-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.banner-track {
  display: flex;
  animation: scroll 40s linear infinite;
}

.banner-track .logo-set-2 {
  animation-delay: 40s; 
}

.banner-item {
  flex: 0 0 auto;
  width: 150px; /* Set a fixed width for the items */
  margin: 0 15px; /* Adjust spacing between items */
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-item img {
  max-height: 100px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
}

@keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-100%);
  }
}