.customers-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(to right, white 3%, transparent, white 97%);
}

.customers-animated-row {
  display: flex;
  width: max-content;
}

.customers-animated-row .item {
  flex-shrink: 0;
  margin-right: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customers-animated-row .item img {
  max-height: 60px;
  width: auto;
  display: block;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.customers-animated-row .item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

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