.about-us-section > h1 {
    padding-top: 200px;
}

.about-us-container {
    display: flex;
    flex-direction: column;
    margin-top: 120px;
    margin-bottom: 72px;
}

.activity-container {
    display: flex;
    justify-content: space-between;
}

.activity-container:nth-child(even) {
    flex-direction: row-reverse;
}

.activity-container:not(:last-child) {
    margin-bottom: 72px;
}

.activity-img-wrapper {
    display: flex;
    align-items: center;
    width: 48%;
}

.activity-container:nth-child(even) > .activity-img-wrapper {
    justify-content: flex-end;
}

.activity-img-wrapper > img {
    max-height: 100%;
    max-width: 80%;
    border-radius: 30px;
}

.activity-infos-wrapper {
    display: flex;
    flex-direction: column;
    width: 48%;
}

.activity-container:nth-child(even) > .activity-infos-wrapper {
    align-items: flex-end;
}

.activity-infos-wrapper > h2 {
    width: 80%;
    margin-bottom: 20px;
}

.activity-infos-text{
    width: 80%;
}

.activity-infos-text > p {
    font-weight: 300;
}

.about-us-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0;
    margin-right: -4.6vw;
    margin-left: -4.6vw;
}

.about-us-gallery > img {
    width: 100%;
    aspect-ratio: 27 / 19;
    object-fit: cover;
}

@media (max-width: 992px) {
    .about-us-section > h1 {
        padding-top: 140px;
    }

    .about-us-container {
        margin-top: 40px;
    }

    .activity-container {
        flex-wrap: wrap;
    }
    
    .activity-img-wrapper {
        margin-right: -8.4vw;
        margin-left: -8.4vw;
    }

    .activity-container > div {
        width: 100%;
    }

    .activity-img-wrapper > img {
        max-height: unset;
        max-width: unset;
        width: 100vw;
        border-radius: 0px;
        margin-bottom: 45px;
    }

    .activity-infos-wrapper > h2 {
        width: 100%;
        font-size: 30px;
        line-height: 32px;
        font-weight: 350;
    }

    .activity-infos-text {
        width: 100%;
    }

    .about-us-gallery {
        grid-template-columns: repeat(2, 1fr);
        margin-right: -8.4vw;
        margin-left: -8.4vw;
    }
}