.manufacturer-category .swiper-slide {
    --beetween: 12px;
    width: calc(43% - var(--beetween));
    margin-right: var(--beetween);
}
.manufacturer-category .swiper-slide:last-child {
    margin-right: 0;
}

@media (min-width: 575px){
    .manufacturer-category .swiper-slide {
        width: calc(36% - var(--beetween));
    }
}

@media (min-width: 768px){
    .manufacturer-category .swiper-slide {
        width: calc(100% / 3 - var(--beetween));
    }
}

@media (min-width: 1200px){
    .manufacturer-category .swiper-slide {
        width: calc(100% / 4 - var(--beetween));
    }
}


.swiper-manufacturer-top-products .swiper-slide {
    --beetween: 12px;
    --slides-per-view: 3;
    width: calc(100% / var(--slides-per-view) - var(--beetween));
    margin-right: var(--beetween);
}

.swiper-manufacturer-top-products .swiper-slide:last-child {
    margin-right: 0;
}

@media (min-width: 575px){
    .swiper-manufacturer-top-products .swiper-slide {
        --slides-per-view: 4;
    }
}

@media (min-width: 768px){
    .swiper-manufacturer-top-products .swiper-slide {
        --slides-per-view: 4;
    }
}
@media (min-width: 992px){
    .swiper-manufacturer-top-products .swiper-slide {
        --slides-per-view: 5;
    }
}

@media (min-width: 1200px){
    .swiper-manufacturer-top-products .swiper-slide {
        --slides-per-view: 6;
    }
}

@media (min-width: 1440px){
    .swiper-manufacturer-top-products .swiper-slide {
        --slides-per-view: 7;
    }
}