
.banner .slide {
    position: relative;
    height: 100%;
    margin: 0;
    width: 100%;
}

.banner .slider {
    height: 100%;
    width: 100%;
}

.banner .slick-slider {
    margin: 0;
}

.banner .slide__img {
    @@media (min-width: 992px) {
        position: absolute;
        top: 20%;
        left: 0;
        transform: translateY(-50%);
        width: 100%;
        height: auto;
        overflow: hidden;
    }
}

.banner img {
    max-width: 100%;
    height: auto;
    opacity: 1 !important;
    animation-duration: 3s;
    transition: all 1s ease;
    width: 100%;
}

.banner .slide__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner h2 {
    font-size: 4.5rem;
    margin: 10px 0;
}

.banner .animated {
    transition: all 0.5s ease;
}


.banner .slider [data-animation-in] {
    opacity: 0;
    animation-duration: 1.5s;
    transition: opacity 0.5s ease 0.3s;
}

.banner .slick-dotted .slick-slider {
    margin-bottom: 30px;
}

.banner .slick-dots {
    position: absolute;
    bottom: 25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
    z-index: 999;
}

.banner li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.banner button {
    border: 0;
    display: block;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner {
    /* height: 465px; */
    /* width: 100%; */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 2px 0 #000000;
    margin: 1rem 0;
}

    /*.banner .slide__img {
        height: 550px;
        width: 100%;
    }*/

    .banner .slide__img img {
        height: 100%;
        width: 100%;
    }

    .banner .slick-list {
        height: 100%;
        width: 100%;
    }

    .banner .slide__content--headings h2 {
        font-size: 4vw;
        font-weight: 700;
        text-align: center;
        color: #fff;
        text-shadow: 3px 2px 5px black;
        text-transform: uppercase;
    }

    .banner .slide__content--headings p {
        font-size: 25px;
        font-weight: 500;
        text-align: center;
        text-shadow: 3px 2px 5px black;
        color: #fff;
        margin: 20px 0 30px;
        font-size: 1.5vw;
        text-transform: uppercase;
        line-height: initial;
    }

    .banner .slide__content--headings {
        text-align: center;
        display: grid;
        place-content: center;
        padding: 20px;
        background: #0000002e;
    }
/* /////////// IMAGE ZOOM /////////// */
@keyframes zoomInImage {
    from {
        transform: scale3d(1, 1, 1);
    }

    to {
        transform: scale3d(1.1, 1.1, 1.1);
    }
}

.zoomInImage {
    animation-name: zoomInImage;
}

@keyframes zoomOutImage {
    from {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.zoomOutImage {
    animation-name: zoomOutImage;
}
.mob-reverse {
    display: flex;
    flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
    .mob-reverse {
        display: block;
        flex-direction: row-reverse;
    }
    .banner .slide__content {
        position: absolute;
        top: 20%;
        left: 0% !important;
        transform: translate(0, -50%) !important;
    }

    .banner .slide__content {
    }

    .banner .slide__content--headings h2 {
        font-size: 7vw !important;
    }

    .banner .slide__content--headings p {
        font-size: 11px !important;
        margin: 0 0 0 10px !important;
    }
}
