/* About - Who We Are
================================================== */
.about__title {
    font-size: var(--text-xl);
    margin-bottom: 1rem;
}

.who-we-are {
    padding: 3rem 0;
    background-color: var(--primary-50);
    border-top: solid 1px var(--slate-200);
    border-bottom: solid  1px var(--slate-200);
}

.who-we-are__container {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
}

.who-we-are__img-container {
    width: 100%;
    position: relative;
}

.who-we-are__img {
    width: 100%;
    height: auto;
}

.who-we-are__content {
    width: 100%;
}

.who-we-are__text {
    line-height: 1.5;
    font-size: var(--text-sm);
    color: var(--slate-700);
    margin-bottom: 0.875rem;
}

@media (min-width: 768px) {
    .who-we-are__container {
        flex-direction: row;
        gap: 2rem;
    }

    .who-we-are__img-container {
        width: 40%;
    }

    .who-we-are__content {
        width: 60%;
    }

}

@media only screen and (min-width: 993px) {
    .about__title {
        font-size: var(--text-2xl);
    }

    .who-we-are__container {
        align-items: center;
    }

    .who-we-are__img-container {
        width: 45%;
    }

    .who-we-are__content {
        width: 50%;
    }
}

/* About - History
================================================== */
.history {
    padding: 3rem 0;
    background-color: var(--grey-50);
    border-bottom: solid  1px var(--slate-200);
}

.history__img {
    width: 100%;
    margin: 1rem 0 1rem 0;
}


@media only screen and (min-width: 768px) {
    .history__img {
        float: right;
        margin: 2rem 0 2rem 2rem;
        width: 350px;
    }

    .history__img--left {
        float: left;
        margin: 2rem 2rem 2rem 0;
    }
}



