.about {
    background-image: linear-gradient(rgb(185, 206, 248, 0.2), rgb(185, 206, 248, 0));
    display: flex;
    flex-direction: column;
    gap: var(--spacing-x-lg);
    position: relative;
    overflow: hidden;
}

.about>img {
    position: absolute;
    z-index: 1;
}

.bg-dumbbell {
    bottom: 400px;
    right: 0;
    bottom: 0;
    width: 280px;
}

.bg-barbell {
    width: 400px;
    top: 0;
    left: 0;
}

.about-images,
.about-text {
    width: 100%;
    position: relative;
    z-index: 2;
}

.photo-shadow {
    position: absolute;
    border-radius: var(--spacing-sm);
    width: 50%;
    height: 50%;
    top: 0;
    left: 0;
    background-color: var(--color-secondary-light);
}

.about-images {
    min-height: 400px;
}

.about-images img {
    position: absolute;
    object-fit: cover;
    border-radius: var(--spacing-sm);
    border: solid 4px white;

}

.about-img-vertical-1 {
    max-width: 200px;
    top: 40px;
    right: 0;
}

.about-img-vertical-2 {
    max-width: 180px;
    margin-left: 200px;
    top: 20px;
    right: 180px;
}

.about-img-sideways {
    max-width: 420px;
    top: 200px;
    left: 0;
}

.about-subheading {
    font-size: 1rem;
    color: var(--color-secondary-dark);
}

.about-heading {
    font-size: var(--spacing-lg);
    color: black;
    margin-bottom: var(--spacing-md-lg);
}

.about-desc {
    margin-top: var(--spacing-sm);
}

.about-stat-grid {
    margin-top: var(--spacing-md-lg);
    display: grid;
    gap: var(--spacing-sm) 0;
    grid-template-columns: 1fr 1fr;
    width: 200px;
}

.about-stat-grid .grid-cell {
    font-weight: bold;
    line-height: 28px;
    font-size: 3rem;
    width: 100px;
    text-align: left;
}


@media screen and (min-width: 940px) {

    .about {
        flex-direction: row;
    }

}

@media screen and (min-width: 1515px) {

    .about-img-sideways {
        left: auto;
        right: 160px;
    }

}