
#slidehero {
    overflow: hidden !important;
    margin: 100px auto 0px;
    width: 100%;
    background:var(--white);

}

@media only screen and (max-width: 1123px) {
    #slidehero {
        margin-top: 0px;

    }

}


:root {
    --slider-button-side-offset: 32px;
    --slider-button-mobile-side-offset:32px;
    --slider-button-mobile-bottom-offset: 50px;
}

.slide-wrapper {
    position: relative;
    padding: 0px;
    margin: 0px;
    height: 550px;
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 0px;
}


.slide-wrapper .single-slide-wrap {
    height: 100%;
    width: 100%;
}


.slide-wrapper .single-slide-wrap .slide-item {
    width: 100%;
    height: 100%;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;

}

.slide-wrapper .single-slide-wrap .slide-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--blackrgba5);
}


.slide-wrapper .single-slide-wrap .slide-item .content-wrap {
    width: 100%;
    height: 100%;
    /* max-width:1200px;*/
    padding: 15px 45px;
    position: absolute;
    top: 0px;
    left: 0px;
    /*transform: translate(-50%, -50%);*/
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}


.slide-wrapper .single-slide-wrap .slide-item .content-wrap .title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 5px var(--blackrgba5);
}

.slide-wrapper .single-slide-wrap .slide-item .content-wrap .subtitle {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--white);
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 5px var(--blackrgba5);
}


@media (max-width: 767px) {
    /*.slider-home .main-nav-slider {
        display: none;
        visibility: hidden;
    }*/
    .slide-wrapper {
        height: 500px;
    }


    .slide-wrapper .single-slide-wrap .slide-item .content-wrap .title {
        font-size: 26px;
    }

}


.img-slider {
    position: absolute;
    height: 390px;
    width: 390px;
    z-index: 0;
    top: 75px;
    right: 75px;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}

.img-slider img {
    width: 100%;
    padding: 15px;
    object-fit: cover;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.linkbtnslide {
    position: relative;
    z-index: 2;
}


@media only screen and (max-width: 1023px) {
    .slide-wrapper .single-slide-wrap .slide-item .content-wrap {
        padding: 15px 15px;

    }

    .img-slider {
        height: 360px;
        width: 420px;
        top: 110px;
        right: 20px;


        /*width: 125px;
        z-index: 10;
        top: 50%;
        transform: translateY(-50%);*/
    }


    .slide-wrapper .single-slide-wrap .slide-item .content-wrap .title {
        top: -50px;
    }

    .slide-wrapper .single-slide-wrap .slide-item .content-wrap .subtitle {
        top: -50px;
    }


}

@media only screen and (max-width: 600px) {
    .img-slider {
        height: 360px;
        width: 430px;
        top: 80px;
        right: 0px;
    }
}




.slider-button {
    transition: .5s;
    outline: none;
    position: absolute;
    width: 55px;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity:0.5;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
.slider-button:focus,
.slider-button:hover {
    opacity:0.9;

}
.slider-button svg {
    display: block;
    fill: var(--white) !important;
    width:55px;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}



.slider-button-prev {
    left: 32px;
}

.slider-button-next {
    right: 32px;
}






