.liste-img-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 40px;
    width: 80vw;
    margin: 10vh 10vw 5vh 10vw
}

.liste-img-section > img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.img-libre {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 40px;
    width: 80vw;
    margin: 10vh 10vw 5vh 10vw
}

.img-libre > img {
    border-radius: 5px;
    width: 100%;
}

/* TRES GRAND MOBILE 1050x1370 */
@media screen and (max-width: 1050px ) and (max-height: 1370px ) {
    .liste-img-section {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 40px;
        width: 80vw;
        margin: 10vh 10vw 5vh 10vw
    }
    .img-libre {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, auto);
        grid-column-gap: 40px;
        width: 80vw;
        margin: 10vh 10vw 5vh 10vw
    }
    .img-libre > img {
        border-radius: 5px;
        width: 100%;
        margin-bottom: 40px;
    }
}