/* ===========================
   MAIN SWIPER
=========================== */
.lhc-swiper{
    width:100%;
    overflow:visible !important;
    padding:30px 0 80px;
}
.lhc-swiper .swiper-wrapper{
    align-items:center;
}
/* ===========================
   SLIDES
=========================== */
.lhc-swiper .swiper-slide{
    width:auto !important;
    transition:all .8s ease;
}
.lhc-swiper .swiper-slide.swiper-slide-visible { margin-right: 0; }
.lhc-swiper .swiper-slide.swiper-slide-visible.swiper-slide-active {
    transform: scale(1.03);
}
/* ===========================
   CARD
=========================== */
.lhc-slide{
    position:relative;
    width:65vw;
    max-width:1200px;
    min-width:1100px;
    border-radius:24px;
    overflow:hidden;
    opacity:1;
    transform:scale(.82);
    transition:
    transform .8s ease,
    opacity .8s ease;
    cursor:pointer;
}
/* ===========================
   ACTIVE
=========================== */
.swiper-slide-active .lhc-slide{
    opacity:1;
    transform:scale(1);
}
/* ===========================
   SIDE SLIDES
=========================== */
.swiper-slide-prev .lhc-slide,
.swiper-slide-next .lhc-slide{
    opacity:.55;
    transform:scale(.86);
}
/* ===========================
   IMAGE
=========================== */
.lhc-slide-image{
    width:100%;
    height:600px;
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}
/* ===========================
   CONTENT
=========================== */
.lhc-slide-content{
    position:absolute;
    left:0;
    right:0;
    bottom:40px;
    text-align:center;
    z-index:10;
    padding:0 40px;
}
.lhc-slide-title{
    color:#fff;
    font-size:40px;
    font-weight:700;
    margin-bottom:12px;
}
.lhc-slide-desc{
    color:#fff;
    font-size:18px;
    line-height:1.7;
}
/* ===========================
   OVERLAY
=========================== */
.lhc-slide::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,.15),
        rgba(0,0,0,.05)
    );
    z-index:1;
}
.lhc-slide-content{
    z-index:2;
}
/* ===========================
   TABLET
=========================== */
@media(max-width:1024px){
    .lhc-slide{
        width:80vw;
        min-width:650px;
    }
    .lhc-slide-image{
        height:500px;
    }
    .lhc-slide-title{
        font-size:32px;
    }
}
/* ===========================
   MOBILE
=========================== */
@media(max-width:767px){
    .lhc-slide{
        width:90vw;
        min-width:unset;
    }
    .lhc-slide-image{
        height:380px;
    }
    .lhc-slide-title{
        font-size:24px;
    }
    .lhc-slide-desc{
        font-size:14px;
    }
    .lhc-slide-content{
        bottom:25px;
    }
}