.team-container{
    background-color: #e9f6e4;
    display: grid;
    justify-content: center;
    justify-items: center;
    padding: 7rem;
}.sub-title-container{
    width: 100%;
}
.team-person{
    display: flex;
    margin-top: 1rem;

}

.team-person.reverse{
    flex-direction: row-reverse;
    margin-top: 1rem;
}

.team-name{
    font-size: 1.5rem;
    font-family: lexend;
}
.team-body{
    font-size: 1.2rem;
    font-family: quicksand;
}
.team-icons{
    display: flex;
    justify-content: right;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.team-icons.left{
    display: flex;
    justify-content: left;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.team-icons img{
    width: 15vw;

}
.team-image img{
    width: 30vw;
}.team-image{
    margin: 23px;
    float: right;
}
.team-image.right{
    margin: 23px;
    float: left;
}
@media(max-width: 768px){
    .team-person{
        flex-direction: column-reverse;
        margin-top: 1rem;
        align-items: center;
    }
    .team-person.reverse{
        flex-direction: column-reverse;
        margin-top: 1rem;
        align-items: center;
    }.team-image img{
        width: 100%;
    }.team-image{
        display: flex;
        justify-content: center;
        float: none;
    }
    .team-image.right{
        display: flex;
        justify-content: center;
        float: none;
    }
}