.page-home .featured-products .products {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.page-home .featured-products .products .swiper-slide,
.page-home .featured-products .products > * {
  box-sizing: border-box;
  padding: 0 12px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .page-home .featured-products .products .swiper-slide,
  .page-home .featured-products .products > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  .page-home .featured-products .products .swiper-slide,
  .page-home .featured-products .products > * {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

@media (min-width: 992px) {
  .page-home .featured-products .products .swiper-slide,
  .page-home .featured-products .products > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
}