
#slidehero {
    overflow: hidden !important;
    margin: 116px auto 0px;
    width: 100%;
    background:var(--dblue3);

}

@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-item {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: auto;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:var(--blackrgba3);

    /*background: linear-gradient(221deg, var(--lblue2), var(--dblue2), var(--lblue2), var(--dblue2), var(--lblue2));

    background-size: 600% 600%;
    -webkit-animation: bg-gradient-animator-title 10s ease infinite;
    -moz-animation: bg-gradient-animator-title 10s ease infinite;
    -o-animation: bg-gradient-animator-title 10s ease infinite;
    animation: bg-gradient-animator-title 10s ease infinite;
    transition: opacity 0.5s ease;
    mix-blend-mode: multiply;*/

    z-index: 1;
}

.content-wrap {
    position: absolute;
    top: 50%; /* Centraliza verticalmente */
    left: 50%; /* Centraliza horizontalmente */
    transform: translate(-50%, -50%); /* Ajusta para o centro exato do elemento */
    width: 100%; /* Ocupa toda a largura disponível para o conteúdo */
    padding: 20px; /* Adicione um padding para não colar nas bordas */
    box-sizing: border-box; /* Garante que o padding não aumente a largura total */
    z-index: 2; /* Garante que o conteúdo fique acima do overlay */
    color: #fff; /* Cor do texto para contraste com o overlay escuro */
    text-align: center; /* Centraliza o texto dentro do content-wrap */
}

/* Se você estiver usando Swiper.js, pode ser necessário ajustar algumas classes */
.swiper-slide {
    /* Certifique-se de que o swiper-slide não tenha estilos que conflitem */
    display: flex; /* Pode ser útil para alinhamento, mas com absolute, não é estritamente necessário aqui */
    align-items: center; /* Alinha itens no centro verticalmente */
    justify-content: center; /* Alinha itens no centro horizontalmente */
}

/* Ajustes para os títulos e subtítulos para garantir que sejam visíveis */
.slide-item .title,
.slide-item .subtitle {
    color: #fff; /* Garante que o texto seja branco */
    /* Outros estilos de fonte, tamanho, etc. */
}





.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;
}


.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);
    font-family:var(--theme-font) !important;
}


@media (max-width: 767px) {
    .slide-wrapper .single-slide-wrap .slide-item .content-wrap .title {
        font-size: 26px;
    }
}


@media only screen and (max-width: 1023px) {
    .slide-wrapper .single-slide-wrap .slide-item .content-wrap {
        padding: 15px 15px;
    }
    .slide-wrapper .single-slide-wrap .slide-item .content-wrap .title {
        top: -50px;
    }
    .slide-wrapper .single-slide-wrap .slide-item .content-wrap .subtitle {
        top: -50px;
    }
}