/* Slick SLider Animation */
#heroSlider [data-animation-in] {
    opacity: 0;
}

/* Slider Styles */

.sliderContainer {
    margin-top: 3.5rem;
    position: relative;
}

/* single slide */
#heroSlider .single-slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}




/* #################### slider images #################### */


/* Layout */
.slide-layout {
    height: 88vh !important;
    display: flex;
    align-items: center;
}


/* Slide Navigation | Progression Bar */
.slick-prev:before,
.slick-next:before {
    color: black;
}

.progressBarContainer {
    position: absolute;
    bottom: 0;
}

.progressBarContainer div {
    display: block;
    width: 20%;
    padding: 0;
    cursor: pointer;
    margin-right: 5%;
    float: left;
    color: white;
    border-radius: 10px;

}

.progressBarContainer div:last-child {
    margin-right: 0;
}

/* Progress Bar Colors */
.progressBarContainer div span.progressBar {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.4);
    display: block;
    border-radius: 10px;

}

.progressBarContainer div span.progressBar .inProgress {
    background-color: rgba(255, 255, 255, 1);
    width: 0%;
    height: 4px;
}








/* Media Query for Mobile Devices */
@media (max-width: 480px) {
    .progressBarContainer {
        width: 95%;

    }
}

/* Media Query for low resolution  Tablets, Ipads */
@media (min-width: 481px) and (max-width: 767px) {
    .progressBarContainer {
        width: 80%;
    }
}

/* Media Query for Tablets Ipads portrait mode */
@media (min-width: 768px) and (max-width: 1024px) {
    .progressBarContainer {
        width: 75%;
    }

    /* Layout */
    .slide-layout {
        height: 60vh !important;
    }
}

/* Media Query for Laptops and Desktops */
@media (min-width: 1025px) and (max-width: 1280px) {
    .progressBarContainer {
        width: 50%;
    }
}

/* Media Query for Large screens */
@media (min-width: 1281px) {

    .progressBarContainer {
        width: 50%;
    }

}
