.sections .team_header {
    margin: 60px;
    margin-top: 0px;
}

.sections .team .members {
    justify-content: center;
}

.sections .team .members .member {
    width: 25%;
    max-height: 350px;
    gap: 0px;
}

.sections .team .members .member .name {
    color: white;
    font-size: 20px;
}

.sections .team .members .member .role {
    color: white;
    font-size: 15px;
}

.sections .team .members .member .desc {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    color: #dcdcdc;
    line-height: 22px;
}

@media only screen and (max-width: 1280px) {
    .sections .team_header {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .sections .team_header {
        margin-top: 20px;
    }

    .sections .team .members .member {
        width: 33.33%;
    }
}

@media only screen and (max-width: 550px) {
    .sections .team_header {
        margin-top: 20px;
    }

    .sections .team .members .member {
        width: 50%;
    }
}

@media only screen and (max-width: 413px) {
    .sections .team_header {
        margin-top: 20px;
    }

    .sections .team .members .member {
        width: 100%;
    }
}