#aboutUs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 5rem;
    overflow-x: hidden;
}


/* --- TEXT --- */

.storyHeader {
    width: 30%;
    display: flex;
    justify-content: center;
    margin-top: 6rem;
}

.storyHeader img {
    max-width: 2.8rem;
    margin: 0 3.5rem 0 3.5rem;
}

.storyText {
    margin-top: 2rem;
    width: 55%;
    text-align: center;
}


/* --- PHOTOS --- */

.storyPhotosWrapper {
    width: 90%;
    margin: 5rem 0 3rem 0;
    display: flex;
    justify-content: center;
}

.storyPhoto {
    margin: 0 1rem 0 1rem;
}

@media only screen and (max-width: 1500px) {

    .storyPhotosWrapper {
        width: 70%;
    }

    .storyPhoto {
        width: 100%;
    }
}

@media only screen and (max-width: 820px) {

    .storyHeader {
        width: 100%;
    }

    .storyPhotosWrapper {
        width: 50%;
        flex-direction: column;
    }

    .storyPhoto {
        margin-bottom: 3rem;
    }

    .storyText {
        width: 75%;
    }
}

@media only screen and (max-width: 450px) {

    .storyPhotosWrapper {
        width: 70%;
        flex-direction: column;
    }
}