.customers-swiper {
  width: 100%;
  padding: 50px 0px;
  position: relative;
}

.customers-swiper::before, .customers-swiper::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, white, transparent);
    z-index: 10;
}

.customers-swiper::before {
    left: -10px;
    top: 0;
    background: linear-gradient(90deg, white, transparent);
}

.customers-swiper::after {
    right: -10px;
    top: 0;
    background: linear-gradient(-90deg, white, transparent);
}

.customers-swiper .swiper-slide {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.customers-swiper img {
  width: auto;
  height: 90px !important;
  object-fit: contain;
}

@media (max-width: 767px) {
  .customers-swiper::before,
  .customers-swiper::after {
    width: 50px;
  }
}