/* 
===================
===== HEADER ======
===================
*/
.wrap-header-error {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #0F4846;
    margin-bottom: -5rem;
}

.wrap-header-error .text-container {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wrap-header-error .text-container .infos {
    padding: 1rem 3rem;
    width: 100%;
}

.wrap-header-error .text-container .infos h2 {
    font-size: var(--text-medium);
    font-weight: 100;
    line-height: var(--line-medium);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-style: normal;
    color: #FFFFFF;
}

.wrap-header-error .text-container .infos p {
    font-family: 'HelveticaNowDisplay-Thin';
    font-weight: 400;
    font-size: var(--text-small);
    line-height: var(--line-medium);
    letter-spacing: 0.2em;
    color: #FFFFFF;
    margin-bottom: 2rem;
    max-width: 408px;
}

.wrap-header-error .text-container .infos a {
    padding: 1rem 2rem;
}

.wrap-header-error .image-container {
    width: 55%;
    overflow: hidden;
}

.wrap-header-error .image-container img {
    width: 100%;
    object-fit: cover;
}

@media (max-width: 840px) {
    .wrap-header-error {
        flex-wrap: wrap;
    }

    .wrap-header-error .text-container {
        width: 100%;
        margin-top: 7rem;
    }

    .wrap-header-error .image-container {
        width: 100%;
        margin-top: 2rem;
    }
}

@media (max-width: 380px) {
    .wrap-header-error .text-container .infos a {
        padding: 1rem 0.5rem;
    }
}

.page-content p {
    font-family: 'HelveticaNowDisplay';
    font-weight: 100;
    font-size: var(--text-small);
    line-height: var(--line-medium);
}