/* ========================================
   BASE
   ======================================== */
body {
    font-family: "Red Hat Display", sans-serif;
    margin: 0;
    background-color: var(--color-1);
    image-rendering: optimizeSpeed;
}

/* ========================================
   SECTION 1
   ======================================== */
#section-1 {
    margin-top: var(--header-height);
    height: calc(100vh - var(--header-height));
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-2);
    gap: 15vmin;
}

.article-profil {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 15vmin;
    padding: 15vmin;
    text-align: center;
    box-sizing: border-box;
}

.article-profil p {
    max-width: 350px;
}


h6 {
    font-size: 155.2px;
    font-weight: 900;
    margin: 0;
    transform: translateX(-10vmin);
    line-height: 20px;
    bottom: 50%;
    z-index: 2;
    opacity: 7%;
}

.liste-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    /* width: 100%; */
    height: 100%;
    text-align: left;
}

.bloc-liste {
    position: relative;
}

.titre-action {
    width: 100%;
    text-align: left;
    gap: 30px;
}

.titre-action img{
    width: auto;
    height: 100px;
    padding-bottom: 30px;
}

@media (max-width: 870px) {
    #section-1 {
        height: auto;
    }

    .article-profil {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 0;
        text-align: center;
        box-sizing: border-box;
    }

    .titre-action {
        width: auto;
        text-align: left;
        padding: 15vh 15vmin;
    }

    .liste-action {
        display: flex;
        flex-direction: column;
        align-items: baseline;
        justify-content: space-evenly;
        gap: 100px;
        padding: 15vmin;
        text-align: left;
        height: 100vh;
    }
}