.formation {
    background: var(--blue-300);
    display: flex;
    justify-content: center;
    padding: 64px 0;
    margin-top: 56px;
}

.formation h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 32px;
    text-align: center;
}

.formation-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.formation .boxes {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}

.formation .box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 368px;
}

.formation .box div {
    background-color: var(--black-100);
    display: flex;
    justify-content: center;
    align-items: center;
}

.formation .box img {
    width: 192px;
}

.formation h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
}

@media screen and (min-width: 0) {
    .formation {
        width: 100vw;
        padding: 64px 10px;
    }

    .formation-container {
        max-width: 1136px;
        width: 100%;
    }

    .formation .boxes {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    .formation .box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 70%;
    }

    .formation .box div {
        width: 100%;
        height: 150px;
    }

    .formation .box img {
        width: 40%;
        max-width: 192px;
    }
}

@media screen and (min-width: 768px) {
    .formation {
        padding: 64px 34px;
    }

    .formation .boxes {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
    }
}

@media screen and (min-width: 1024px) {

}

@media screen and (min-width: 1170px) {
    .formation {
        padding: 64px 0;
    }

    .formation .boxes {
        display: flex;
        gap: 16px;
        width: 100%;
    }

    .formation .box div {
        height: 286px;
    }

}