.swiper-slide {
    position: relative;
    /*overflow: hidden;*/
}

.product_slider {
    max-height: 80%;
    object-fit: contain;
}

@media (min-width: 812px){
    .swiper-slide .explore {
        right: 410px;
    }
}

@supports (-webkit-touch-callout: none) {

    .slider {
        height: 800px;
    }

    .slider .card {
        position: absolute !important;
        bottom:  200px !important;
        margin-top:  0px !important;
        padding-bottom: 150px !important;
        height: 850px;
    }

    .slider .swiper-slide {
        display: grid;
        grid-template-areas:
            "image image"
            "product product"
            "card card";
        align-items: center;
        justify-items: end;
        gap: -150px;
        min-height: 650px !important;
        top:0px !important;
        padding-bottom: 100px !important;

    }

    .slider .imageCont {
        grid-area: image;
        width: 100%;
    }

    .slider .product_slider {
        grid-area: product;
        margin: 0 !important;
        display: block !important;
        justify-self: end !important;
        width: 230px !important;
        max-width: 230px !important;
        margin-left: 150px !important;
        left: -80px !important;
        top:  -40px !important;

    }

    .slider .explore {
        grid-area: product;
        margin: 10px 20px 0 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        justify-self: end !important;
        right: 230px !important;
        top: -50px !important;
    }

    .slider .card {
        grid-area: card;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
}