/*
    CAROUSEL HP
*/
:root{
    --slide_text_background_height: 200px;
}

#hp-slider{
    z-index: calc(var(--header_zindex) - 2);
    /*margin-top: var(--header_height);*/
}
#hp-slider .slide_area_content {
    height: calc(46vh - var(--header_height));
}

#hp-slider .slide_area_content .slide_img{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


#hp-slider .slide_area {
    /*background-color: rgba(0, 0, 0, 0.1);*/
    height: 100%;
}

#hp-slider .slide-hover {
    height: 100%;
    position: absolute;
    top: 0;
    background-color: var(--theme_primary_color);
    width: 100%;
    opacity: .3;
}


#hp-slider .slide_text_wrapper{
    position: relative;
    height: 100%;
    color: white;
}
.slide_text_background {
    position: absolute;
    left: 0;
    bottom: calc(50% - (var(--slide_text_background_height) / 2));
    height: var(--slide_text_background_height);
    width: 25%;
}
/*#hp-slider .slide_text{*/
/*    position: absolute;*/
/*    bottom: 15%;*/
/*    text-align: center;*/
/*    width: 100%;*/
/*    color: white;*/
/*}*/
#hp-slider .slide_text h2{
    font-weight: var(--font_bold);
}


/*#hp-slider .slide_text:after{*/
/*    content: url("../images/ico-favicon.svg");*/
/*    position: absolute;*/
/*    right: 20px;*/
/*}*/

.carousel-control-next, .carousel-control-prev{
    width: 5%;
}
.carousel-indicators {
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    bottom: 3vh;
    /*top: 90%;*/
}

.carousel-indicators [data-bs-target] {
    width: 20px;
}


