
/*--------------------------------------------------------------
# Slider
--------------------------------------------------------------*/

.overlay_animate {
    width: 0;
    transition: 500ms ease;
    transition-timing-function: cubic-bezier(.45,.27,.47,.76);
}

.slider_content {
    transform: translateX(-150%);
    transition: 420ms ease;
}

.slide_item img {
    top: 50%;
    transform: translateY(-50%);
}

.animate_content .slider_content {
    transform: translateX(0);
}

.slide_item {
    height: calc( 100vh - 60px );
    /* max-height: 50vh; */
}

@media screen and (min-width: 1200px) {
  .slide_item {
    min-height: 525px;
    max-height: 50vh;
}  
}




.slider_content {
    z-index: 1;
    top: 0;
    color: white;
}

.slider_content h2 {
    color: white;
}

.hero_slider .btn {
    color: white;
    margin: auto;
    position: absolute;
    bottom: 80px;
    z-index: 9999999;
    left: 0;
    right: 0;
    width: fit-content;
}


.hero_slider .slider-scroll-icon {
    color: black;
    width: 28px;
    height: 28px;
    padding-top: 3px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -4px;
    background-color: white;
    z-index: 9999999;
    left: 0;
    right: 0;
    border-radius: 100% 100% 0 0;
}


@media screen and (min-width: 1200px) {
.hero_slider .btn {
    color: white;
    margin: auto;
    position: absolute;
    bottom: 40px;
    z-index: 9999999;
    left: 0;
    right: 0;
    width: fit-content;
    }
    
    .hero_slider .slider-scroll-icon {
        display: none;
    }
 
}



