/* Première page */
.mentions-firstPage {
    padding-top: 120px;
    padding-bottom: 40px;
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mentions__section {
    width: 1330px;
    height: 100%;
    margin: 6px;
    font-size: 14px;
    text-align: justify;
}

.section div {
    box-sizing: border-box;
    padding: 8px;
}

/* MEDIA QUERIES */
@media (max-width: 480px) {

    .mentions-firstPage {
        padding-top: 80px;
    }

    .mentions__section {
        width: 100%;
    }

    .section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section div {
        width: 80%;
        font-size: 12px;
    }

    .list__section {
        width: 80%;
        font-size: 12px;
    }

    .title__section {
        align-self: start;
        margin-left: 8px;
    }

}

/* MEDIA QUERIES */
@media (min-width: 481px) and (max-width: 1080px) {

    .mentions-firstPage {
        padding-top: 80px;
    }

    .mentions__section {
        width: 100%;
    }

    .section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section div {
        width: 90%;
        text-align: justify;
        font-size: 12px;
    }

    .list__section {
        width: 90%;
        font-size: 12px;
    }

    .title__section {
        align-self: start;
        margin-left: 8px;
    }

}

/* MEDIA QUERIES */
@media (min-width: 1081px) and (max-width: 1329px) {

    .mentions-firstPage {
        padding-top: 80px;
    }

    .mentions__section {
        width: 100%;
    }

    .section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section div {
        width: 90%;
        text-align: justify;
        font-size: 12px;
    }

    .list__section {
        width: 90%;
        font-size: 12px;
    }

    .title__section {
        align-self: start;
        margin-left: 8px;
    }

}