/** header slider */
@media screen and (min-width: 834px) {
    .header-image, .custom-headerSlider, .headerSlider {
        height: clamp(300px, 500px, 50vh);
    }
}

@media screen and (min-width: 550px) {
    .header-image, .custom-headerSlider, .headerSlider {
        height: clamp(300px, 400px, 50vh);
    }
}

#root[data-page-color="blue"] .btn.more:hover::before {
    content: url(../../Img/Icons/Icon-Arrow-small-blue.svg);
}

#root[data-page-color="magenta"] .btn.more:hover::before {
    content: url(../../Img/Icons/Icon-Arrow-small-magenta.svg);
}

#root[data-page-color="turquoise"] .btn.more:hover::before {
    content: url(../../Img/Icons/Icon-Arrow-small-turquoise.svg);
}

#root[data-page-color="orange"] .btn.more:hover::before {
    content: url(../../Img/Icons/Icon-Arrow-small-orange_v2.svg);
}

.custom-headerSlider .header-text-wrapper {
    width: 50%;
    max-width: 618px;
    position: absolute;
    left: 50%;
    z-index: 1;
    padding: 0 0 0 105px;
    margin: 0 30px 0 0;
    -webkit-box-decoration-break: clone;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.custom-headerSlider .header-text-wrapper .header-text--title {
    font-size: 50px;
    font-weight: 700;
    max-width: unset;
}

.custom-headerSlider .header-text-wrapper .header-text--subtitle {
    font-size: 40px;
    font-weight: 400;
    background: none;
}

.custom-headerSlider .header-text-wrapper .header-text--title,
.custom-headerSlider .header-text-wrapper .header-text--subtitle {
    hyphens: manual;
    padding: 0;
    margin: 0;
    z-index: 1;
}

.header-text-wrapper .btn-default {
    background: none;
    border: solid 1px #FFF;
}

.header-text-wrapper .btn-default:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: #FFF !important;
    border: solid 1px;
}

@media screen and (min-width: 1024px) {
    .custom-headerSlider .header-text-wrapper .header-text--title {
        font-size: clamp(30px, 4.5vh, 50px);
    }

    .custom-headerSlider .header-text-wrapper .header-text--subtitle {
        font-size: clamp(20px, 3.5vh, 40px);
    }

    .header-text-wrapper .btn-default {
        font-size: clamp(18px, 2.5vh, 22px);
    }
}

@media screen and (max-width: 834px) {
    .custom-headerSlider .header-text-wrapper .header-text--title {
        font-size: 36px;
    }

    .custom-headerSlider .header-text-wrapper .header-text--subtitle {
        font-size: 26px;
    }
}