.mission-section h2, .mission-section p {
    max-width: 35rem;
}

.mission-section p {
    line-height: 150%;
}

.mission-section img {
    display: block;
}

.intro-section .brandingcont {
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-section {
    --minheightvhaz: 100vh;
    --minheightvhaz: 100svh;
    min-height: calc(var(--minheightvhaz) - calc(2rem + var(--contentnavheight)));
    display: flex;
    flex-direction: column;
    background-image: url("../assets/images/about_bgimg.jpg");
    background-size: cover;
    background-position: 50% 80%;
}

.mission-section {
    position: relative;
}

.mission-section > .bgcont {
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    margin-bottom: 0;
}

.mission-section .bgcont::before {
    content: '';
    background: linear-gradient(80deg, black 10rem, transparent 88rem);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.mission-section .bgcont > img {
    width: 100%;
    height: 100%;
    z-index: -2;
    position: absolute;
    object-fit: cover;
    user-select: none;
}

.intro-section .brandingcont p {
    margin-bottom: 0;
}

.intro-section .brandingcont p:first-of-type {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.intro-section .brandingcont p:nth-of-type(2) {
    font-size: 1.5rem;
    color: rgb(137, 137, 137);
    margin-bottom: 2rem;
}

.intro-section .brandingcont p:nth-of-type(3) {
    font-size: 1.25rem;
}

.intro-section .brandingcont img {
    height: 20rem;
    margin-inline: auto;
    display: block;
    aspect-ratio: initial;
    margin-bottom: 2rem;
}

.intro-section .brandingcont > * {
    text-align: center;
    max-width: 100%;
}

@media only screen and (min-width: 701px) {
    .mission-section {
        min-height: 100vh;
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /*background-image: url("assets/images/starbg.jpg");
        background-size: cover;*/
    }
    .mission-section > img {
        display: none;
    }

    .mission-section *:not(.bgcont) {
        user-select: text;
    }
}

@media only screen and (max-width: 700px) {
    .mission-section {
        margin-inline: 1rem;
    }

    .intro-section .brandingcont img {
        width: 70%;
        height: auto;
    }

    .mission-section .title {
        margin-bottom: 1rem;
    }

    .mission-section .bgcont {
        display: none;
    }
}

.breakaz {
    display: none;
}

.otherteams-section .teamscontainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    text-align: center;
    gap: 1rem;
}

@media only screen and (max-width: 1250px) {
    .otherteams-section .teamscontainer {
        grid-template-columns: 1fr;
    }
}

.otherteams-section .teamscontainer h3 {
    font-size: 1.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.otherteams-section .teams {
    margin-bottom: 0;
}

.otherteams-section h3 {
    margin-bottom: 0.5rem;
}

.otherteams-section .people {
    overflow: hidden;
    padding-top: 1rem;
}

.otherteams-section .dropdowncont {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.otherteams-section .dropdowncont .people {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.otherteams-section .teamscontainer .teams {
    background-color: rgb(18, 18, 18);
    background: linear-gradient(black, rgb(21, 21, 21));
    border: 2px solid rgb(38, 38, 38);
    padding: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (max-width: 700px) {
    .otherteams-section .teamscontainer .teams {
        background: initial;
        background-color: rgb(18, 18, 18);
        border: initial;
    }
}

.otherteams-section .teamscontainer .person p {
    max-width: 100%;
}

.otherteams-section .person .name {
    font-family: "Eurostile";
    font-size: 1.25rem;
    margin-bottom: 0;
}

.otherteams-section .person .title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 100;
    text-transform: initial;
}

.otherteams-section .name {
    font-weight: 600;
    text-transform: uppercase;
}

.otherteams-section .title {
    font-weight: 100;
    text-transform: uppercase;
    color: rgb(173, 173, 173);

}

@media only screen and (min-width: 701px) {
.breakaz {
    display: initial;
}
}