.slider {
    position: relative;
    overflow: hidden;

}




.slider .item-slide {}






.slider .item-slide .slide-bg {
    position: relative;
}

.slider .item-slide .slide-bg::before {
    content: '';
    position: absolute;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 30%, rgba(255,255,255,0) 100%);
    bottom: 0px;
    width: 100%;
    height: 750px;
    left: 0;
    right: 0;
}

.slider .item-slide .slide-bg img {
    width: 100vw;
    height: 750px;
    -o-object-fit: cover;
    object-fit: cover;
}






.item-slide .slide-product {
    position: absolute;
    left: 0;
    right: 0;
    top: 50px;
    bottom: inherit;
    width: 100%;
    text-align: right;
    opacity: 0;
    transform: translateY(600px);
    -webkit-transition: all 1.5s ease-in-out;
    -khtml-transition: all 1.5s ease-in-out;
    -moz-transition: all 1.5s ease-in-out;
    -ms-transition: all 1.5s ease-in-out;
    -o-transition: all 1.5s ease-in-out;
    transition: all 1.5s ease-in-out;
}


.slick-active .item-slide .slide-product {
    opacity: 1;
    transform: translateY(0px);
    -webkit-transition: all 1.5s ease-in-out;
    -khtml-transition: all 1.5s ease-in-out;
    -moz-transition: all 1.5s ease-in-out;
    -ms-transition: all 1.5s ease-in-out;
    -o-transition: all 1.5s ease-in-out;
    transition: all 1.5s ease-in-out;
}



.item-slide .slide-product img {
    display: inline-block;
}



.item-slide .slide-text h2{
    font-family: 'Dancing Script', cursive;
    color: #e9cb69;
    font-size: 62px;
    line-height: 64px;
}

.item-slide .slide-text {
    opacity: 0;
    background: #414e61b2;
    display: inline-block;
    width: 100%;
    position: absolute;
    right: 0;
    top: inherit;
    bottom: 0;
    padding: 30px;
    transform: translateX(600px);
    -webkit-transition: all 1.5s ease-in-out;
    -khtml-transition: all 1.5s ease-in-out;
    -moz-transition: all 1.5s ease-in-out;
    -ms-transition: all 1.5s ease-in-out;
    -o-transition: all 1.5s ease-in-out;
    transition: all 1.5s ease-in-out;
}


.slick-active .item-slide .slide-text {
    opacity: 1;
    transform: translateX(0px);
    -webkit-transition: all 1.5s ease-in-out;
    -khtml-transition: all 1.5s ease-in-out;
    -moz-transition: all 1.5s ease-in-out;
    -ms-transition: all 1.5s ease-in-out;
    -o-transition: all 1.5s ease-in-out;
    transition: all 1.5s ease-in-out;
}




@media (min-width: 992px) {
    .slider .item-slide {
        width: 100vw;
        height: 800px;
        overflow: hidden;
    }





.slider .item-slide .slide-bg img {
    width: 100vw;
    height: 800px;
    -o-object-fit: cover;
    object-fit: cover;
}


    .slider .item-slide .slide-product {
        bottom: 0;
        top: 120px;
        width: 70%;
    }


    .item-slide .slide-text {
        position: absolute;
        right: 0;
        top: 200px;
        padding-right: 90px;
        bottom: inherit;
        width: initial;

    }


}






@media (max-width: 992px) {

.item-slide .slide-text h2 {

    font-size: 45px;
    line-height: 54px;
}
}






 .btn-light {
    position: relative;
    padding: 12px 50px;
    color: #062550;
    background: #fff;
}
 .btn-light::before {
    content: '';
    width: 0%;
    height: 1px;
    position: absolute;
    left: 10px;
    bottom: -10px;
    background: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -khtml-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
 .btn-light::after {
    content: '';
    width: 1px;
    height: 0%;
    position: absolute;
    right: -10px;
    top: 10px;
    background: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -khtml-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}
 .btn-light:hover:before {
    content: '';
    width: 105%;
    height: 1px;
    position: absolute;
    left: 10px;
    bottom: -10px;
    background: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -khtml-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
 .btn-light:hover:after {
    content: '';
    width: 1px;
    height: 110%;
    position: absolute;
    right: -10px;
    top: 10px;
    background: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -khtml-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}