.associations__gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 16rem;
    gap: 12rem 15rem;
}

.associations__gallery img {
    width: auto;
    height: auto;
    max-width: 185rem;
    max-height: 125rem;
    -o-object-fit: contain;
       object-fit: contain;
}

.associations__gallery img:nth-child(5n + 1) {
    max-width: 154rem;
}

.associations__gallery img:nth-child(5n + 4) {
    max-width: 126rem;
}

.associations__gallery img:nth-child(5n + 5) {
    max-width: 148rem;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .associations__gallery {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 64rem;
    }

    .associations__gallery {
        margin-top: 58rem;
    }

    .associations__gallery img {
        max-width: 256rem;
        max-height: 172rem;
        margin: 0 auto;
    }

    .associations__gallery img:nth-child(5n + 1) {
        /* max-width: 212rem; */
        max-width: 100%;
    }

    .associations__gallery img:nth-child(5n + 4) {
        /* max-width: 173rem; */
        max-width: 100%;
    }

    .associations__gallery img:nth-child(5n + 5) {
        /* max-width: 205rem; */
        max-width: 100%;
    }
}
