/* HOME - RIGHT SIDE IMAGE 3D SLIDER */

.hero-visual {
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:620px;
}

.hero-orange-shape{
    position:absolute;
    width:380px;
    height:540px;
    background:#E77115;
    border-radius:60px;
    z-index:0;
}

.heroSwiper{
    width:420px;
    height:560px;
    overflow:visible;
}

.heroSwiper .swiper-slide{
    opacity:0;
    transition:.3s;
}

.heroSwiper .swiper-slide-active{
    opacity:1;
}

.heroSwiper img{
    margin-top: -30px; 
    margin-left: 10px; 
    display:block;
}


@media (max-width: 768px) {

    .hero-orange-shape{
        max-width: 90%;
        height: 500px;
    }

    .heroSwiper{
        width: 90%;
        max-width: 420px;
        height: auto;
        overflow:visible;
    }

    .heroSwiper img{
        max-width: 100%;
        margin: 0 !important;
    }

}