.hero {
    position: relative;
    /* height: fit-content; */
}
.hero__desaturateur {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    background-color: rgba(30, 30, 30, 0.55);
}
.hero__background {
    overflow: hidden;
    position: relative;
    margin-top: -85px;
    left: 0;
    picture {
        img {
            border-radius: 0;
        }
    }
}
.hero__background--flipX {
    transform: scaleX(1);
}
.hero__text {
    position : absolute;
    z-index: 2;
    color: var(--color-white);
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 138.889% */
    top: 50%;
    transform: translateY(-70%);
    padding: 10px;

    p {
        font-size: 36px;
    }
}
.hero__text--color-yellow {
    color: var(--color-brand);
}



@media all and (min-width: 1000px) {
    /* .hero {
        height: min-content;
    } */
    .hero__background {
        top: -110px;

    }
    .hero__text {
        left: 12.5%;
        width: 780px;
        line-height: 70px;
    }
    .hero__background--flipX {
        transform: scaleX(-1);
    }
}
@media all and (min-width: 1200px) {
    .hero__text p {
        font-size: 52px;
    }
}