.people .person-img,
.people h3,
.people small,
/* .about h1, */
/* .about p, */
.people h1,
.people p,
.mission-vision>div {
    position: relative;
    top: 200px;
    opacity: 0.25;
    transition: top ease 300ms, opacity ease 300ms;
}

.people .person-img.animate,
.people h3.animate,
.people small.animate,
/* .about h1.animate, */
/* .about p.animate, */
.people h1.animate,
.people p.animate,
.mission-vision>div.animate {
    position: relative;
    top: 0px;
    opacity: 1;
}

.people .person-img,
.people h3,
.people small,
/* .about h1, */
/* .about p, */
.people h1,
.people p,
.mission-vision>div {
    top: 0px;
    opacity: 1;
}

.mission,
.vision,
.goal {
    max-width: 400px;
    width: calc(100vw - 2rem);
    position: relative;
    padding: 1rem;
    border-radius: 1.1rem;
    color: rgb(var(--text-clr-1));
    aspect-ratio: 3/2;
}

.mission-vision .bg-image {
    opacity: 0.5;
    filter: brightness(0.2);
    z-index: -1;
    object-fit: cover;
    border-radius: 1.1rem;
}

body.light-mode .mission,
body.light-mode .vision,
body.light-mode .goal {
    /* background: var(--card-bg-clr); */
    box-shadow: 1px 10px 8px 3px rgba(0, 0, 0, 0.3);
}

.mission::before,
.vision::before,
.goal::before {
    content: "";
    background: var(--card-bg-clr);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 1rem;
}

.person-info {
    background-color: rgba(var(--brand-clr-2), 0.5);
    color: rgb(var(--text-clr-1));
    backdrop-filter: blur(12px) brightness(0.5);
    width: calc(100% - 1rem);
    padding: 0.5rem 0.25rem;
    border-radius: 0 0 0.25rem 0.25rem;
}

.founder .person-info {
    width: 100%;
}

.about-page>div:not(.dark-card) {
    max-width: var(--max-vw);
    margin-left: auto;
    margin-right: auto;
}

.about-page div.about {
    max-width: 100%;
    background: linear-gradient(to bottom, rgb(31,37,41), white);
    background: radial-gradient(rgb(31,37,41), black);
    /* background: radial-gradient(black, rgb(31,37,41)); */
}

.about-page div.about::after {
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -2;
}

.about-page .about h1 {
    color: rgb(var(--text-clr-1));
}

.person-img {
    border-radius: 0.25rem;
    border: 1px solid rgba(0, 0, 0, 0.25);
}

.about-content {
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: none;
    color: rgb(var(--text-clr-1));
    border-radius: 0.25rem;
}

@media screen and (min-width: 768px) {
    .person-info {
        width: calc(100% - 1rem);
    }

    .about-content {
        background-color: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px) brightness(0.5);
        color: rgb(var(--text-clr-1));
        padding: 1rem;
    }

    .about-page div.about::after {
        background: var(--bs-dark);
    }
}