
.wrap-product {
    position: relative;
    overflow: hidden;
    margin-bottom: 70px;
}
.wrap-product:before,
.wrap-product:after {
    content: '';
    position: absolute;
    pointer-events: none;
    top: 0;
    bottom: 0;
    width: 20%;
    z-index: 2;
}
.wrap-product:before {
    right: -10px;
    background: linear-gradient(to right, rgba(30,30,30,0) 0%, rgba(30,30,30,1) 100%);
}
.wrap-product:after {
    left: -10px;
    background: linear-gradient(to right, rgba(30,30,30,1) 0%, rgba(30,30,30,0) 100%);
}
.mySwiper-product {
    overflow: visible;
}
.mySwiper-product .swiper-slide {
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    width: 240px;
    height: 207px;
}
.mySwiper-product .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}


@media (max-width: 600px) {

    .wrap-product {
        margin-bottom: 40px;
        height: 152px;
    }
    .mySwiper-product {
        width: 600px;
        margin: 0;
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }
    .mySwiper-product .swiper-slide {
        height: 152px;
        padding: 0.5rem;
    }
}

