.custom-logos-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  max-width: 100%;
  padding: 20px 0;
  background-color: transparent; /* Transparent background */
}

.custom-logos-wrapper:before,
.custom-logos-wrapper:after {
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  content: "";
  z-index: 2;
}

.custom-logos-wrapper:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1)); /* subtle fade */
}
.custom-logos-wrapper:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1)); /* subtle fade */
}

.custom-logos-slide {
  display: inline-block;
  animation: custom-slide 25s linear infinite;
}

@keyframes custom-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.custom-logos-wrapper:hover .custom-logos-slide {
  animation-play-state: paused;
}

.custom-logos-wrapper img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  margin: 0 40px;
}

