.header__absolute {
    position: absolute;
}

.header__picture {
    background-image: url(../images/background/reptiles-background.jpg);

}

.aboutus-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    user-select: none;
}

.team-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.team-content__background {
    background-image: url(../images/textures/texture-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.team-content__our-team {
    font-size: var(--large-font);
    color: var(--title-main);
    font-family: "Koho", sans-serif;
}

.team-content__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 0;
}

.team-content__button {
    text-align: center;
    padding: 8px;
    font-size: 22px;
    cursor: pointer;
    color: var(--textcolor-main);
    margin: 1rem 1rem;
    font-family: "KoHo";
    font-weight: bold;
    user-select: none;

    @media (pointer: fine) {
        &:hover {
            background-color: var(--button-main);
            border-radius: var(--border-radius);
        }
    }
}

.team-content__button--active {
    background-color: var(--button-main);
    border-radius: var(--border-radius);
}

.team-content__button-container {
    flex-wrap: wrap;
}

.team-content__area {
    display: flex;
    max-width: 80rem;
    height: 30rem;
    justify-content: start;
    margin-bottom: 7.5rem;
}

.team-content__area-background {
    background-image: url(../images/textures/texture2-backgorund.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.team-content__member-picture {
    height: 100%;
    width: auto;
    padding: 5rem;
}

.team-content__picture-area {
    flex: 0 0 40%;
}

.team-content__member-info {
    flex: 1;
    text-align: center;
    align-self: center;
    padding-left: 4rem;
    font-family: "Koho", sans-serif;
    color: var(--title-tertiary);
    font-size: var(--base-font);
}

.team-content__member-fname,
.team-content__member-lname {
    font-family: 'Love Ya Like A Sister', sans-serif;
    font-size: var(--large-font);
    color: var(--textcolor-main);
    padding-right: 3rem;
    margin: 0;
    text-align: right;
    text-transform: uppercase;
}

.team-content__member-lname {
    color: var(--title-tertiary);
}

.team-content__member-fname {
    color: var(--title-secondary);
}

@media screen and (max-width: 1300px) {
    .team-content__area {
        display: flex;
        width: auto;
        height: auto;
        flex-direction: column-reverse;
        justify-content: space-around;
        margin-bottom: 3rem;
        padding: 3rem 0;
    }

    .team-content__member-fname,
    .team-content__member-lname {
        padding-right: 0;
        text-align: center;
    }

    .team-content__member-picture {
        max-height: 25rem;
        width: auto;
        padding: 5rem 0;
    }

    .team-content__member-info {
        min-width: 15rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .team-content__picture-area {
        align-self: center;
    }

    @media(hover: none) {

        .team-content__button:hover {
            background-color: none;
            border-radius: none;
        }
    }
}