section{
    padding: 1.85rem 5rem;
    font-family: var(--main-font-family);
}
section > h6{
    font-size: .75rem;
    font-weight: 700;
    color: var(--main-color);
    text-transform: uppercase;
    
}
section > h1{
    text-transform: uppercase;
    font-weight: 900;
}

#about-home{
    padding: 1.15rem 5rem;
}
#about-header{
    padding-bottom: 0;
}
.about-numbers{
    border: none;
}
.about-numbers-list{
    width: 25%;
    padding-block: 2rem;
}
.about-numbers h3{
    font-size: 2.5rem;
    font-weight: 800;
}
.about-numbers-border{
    border-right: 1px solid rgba(10, 10, 10, 0.2);
}

#team h4{
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
}
.team-div{
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}
.team-list{
    width: 31.5%;
    text-transform: uppercase;
}
.team-div img{
    max-width: 100%;
}
.team-name{
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--black-color);
    margin-top: .5rem;
}
.team-position{
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: .85rem;
    font-weight: 500;
    color: var(--main-color);
    margin-top: -17px
}
@media screen and (max-width: 798px) {
    section{
        padding: 2.5rem 1.5rem;
    }
    #about-home{
        padding: 1.15rem 1.5rem;
    }
    .about-numbers-list{
        width: 50%;
    }
    .about-numbers{
        flex-wrap: wrap;
    }
    .about-numbers-border{
        border-right: none
    }
    .about-numbers-list:nth-child(1){
        border-right: 1px solid rgba(10, 10, 10, 0.2);
        border-bottom: 1px solid rgba(10, 10, 10, 0.2);
    }
    .about-numbers-list:nth-child(4){
        border-left: 1px solid rgba(10, 10, 10, 0.2);
        border-top: 1px solid rgba(10, 10, 10, 0.2);
    }
    .team-div{
        display: block
    }
    .team-list{
        width: 100%;
        margin-bottom: 2rem;
    }
}