.about {
    flex-direction: column-reverse;
    background-color: black;
    color: var(--color-primary-light);
    gap: var(--spacing-md);
    display: flex;
    align-items: flex-start;
    position: relative;
}

.about .section-shadow {
    width: 100%;
    left: 0;
    background-image: linear-gradient(rgb(0, 0, 0, 0), white);
}

.about-photos {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: flex-end;
    margin-top: var(--spacing-md);
}

.about-photo {
    position: relative;
}

.about-photo img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-box);
}

.about-text-waves {
    display: flex;
    justify-content: center;
}

.about-text-waves img {
    margin: -32px -4px;
    width: 100px;
}

.about-text header {
    margin-bottom: var(--spacing-md-lg);
}

.about-subheading {
    color: var(--color-gray-200);
}

.about-paragraph {
    margin-top: var(--spacing-md);
    color: white;
}

.about-stats {
    display: flex;
    flex-direction: column;
    margin-top: var(--spacing-lg);
}

.about-stats>* {
    padding: var(--spacing-md);
}

.stats-left {
    height: 300px;
    background-color: var(--color-primary-dark);
    color: white;
    border-radius: 20px 20px 0 20px;
}

.stats-heading {
    font-size: 3rem;
    line-height: 2.4rem;
    color: white;
    font-family: var(--font-em);
    font-weight: 100;
    padding-bottom: var(--spacing-sm);
    border-bottom: solid 1px var(--color-gray-200);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: calc(300px - 100px);
}

.stat-wrapper {
    margin-top: auto;
    text-align: center;
    font-size: 2.6rem;
    line-height: 1.4rem;
    font-style: italic;
    color: var(--color-primary-light);
}

.stat-wrapper span {
    font-size: 1rem;
    font-weight: bolder;
    color: var(--color-highlight);
}

.stats-right {
    position: relative;
    border-radius: 0 20px 20px 0;
    height: 200px;
    align-self: flex-end;
    background-color: var(--color-primary-light);
    color: black;
}

.stats-right .svg-corner {
    top: -24px;
    left: 0;
    position: absolute;
    width: 24px;
    height: 24px;
}

.stats-review,
.stats-right footer {}

.stats-review {
    max-height: 100px;
    overflow-y: auto;
    color: var(--color-primary-dark);
}

.stats-right footer {
    border-radius: var(--border-radius-box);
    background-color: white;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    position: absolute;
    bottom: var(--spacing-md);
    padding: var(--spacing-tiny);
    padding-right: var(--spacing-md);
}

.stats-right footer img {
    width: 36px;
    border-radius: 50%;
    height: 36px;
}

@media screen and (min-width: 750px) {

    .about {
        flex-direction: row;
    }

    .about>* {
        width: 50%;
        padding-bottom: 100px;
    }

    .about-photos {
        margin-top: 0;
    }

    .sm-photo img {
        max-height: 300px;
    }

}

@media screen and (min-width: 1120px) {

    .about-stats {
        flex-direction: row;
    }

    .about-stats>* {
        width: 50%;
    }

}