/******Bandeau pages********/
.headband {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: end;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding-bottom:40px;
}

.headband__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.headband__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: -webkit-linear-gradient(180deg,rgba(26, 26, 26, 0.45) 0%, rgba(26, 26, 26, 0.82) 100%);
    background: -moz-linear-gradient(180deg,rgba(26, 26, 26, 0.45) 0%, rgba(26, 26, 26, 0.82) 100%);
    background: linear-gradient(180deg,rgba(26, 26, 26, 0.45) 0%, rgba(26, 26, 26, 0.82) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(
    startColorstr="#1A1A1A",
    endColorstr="#1A1A1A",
    GradientType=1
    );
}

.headband__title{
    color: var(--white);
    font-weight: 800;
    font-size: 88px;
}

.headband__content {
    color: var(--white);
}

.headband__title-em {
    font-style: italic;
    font-weight: 300;
    color: var(--red);
}

.headband_description{
    font-family: var(--font-primary);
}

.headband > .uk-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Responsive */
@media (max-width: 960px) {
    .headband-title {
        font-size: clamp(3rem, 9vw, 5rem);
    }
}

@media (max-width: 640px) {
    .headband__title{
        font-size: clamp(2.75rem, 13vw, 4rem);
    }
}

/****** Bandeau pages ********/
.headband {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: end;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding-bottom: 40px;
}

.headband > .uk-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

@media (max-width: 960px) {
    .headband {
        min-height: 380px;
        align-items: flex-start;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .headband__title {
        font-size: clamp(3rem, 8vw, 5rem);
    }
}

@media (max-width: 640px) {
    .headband {
        min-height: 280px;
        padding-top: 18px;
        padding-bottom: 18px;
        background-position: center top;
    }

    .headband__title {
        font-size: clamp(2.25rem, 11vw, 3.5rem);
    }

    .headband_description {
        margin-bottom: 0;
    }
}
