.products-swiper {
  margin: 0 90px;
  overflow-x: hidden;
}
@media (max-width: 990px) {
  .products-swiper {
    margin: 0 60px;
  }

  
}
@media (max-width: 750px) {
  .products-swiper {
    margin: 0 30px;
  }
}

.swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-wrapper {
  display: flex;
  flex-wrap: nowrap !important;
  gap: 0 !important;
}
.swiper-wrapper.less {
  justify-content: center;
}
@media (max-width: 749px) {
  .swiper-wrapper.less {
    justify-content: flex-start;
  }
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1.5rem;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  display: block !important;
}

.products-swiper-next {
  position: absolute;
  right: -5rem;
}

.products-swiper-prev {
  position: absolute;
  left: -5rem;
}