/* ===== TEAM ===== */
.team-section {
    padding: 120px 128px;
    background-color: #F5F9E8;
}

.teams-list {
    max-width: 1440px;
    padding: 0 128px;
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.team-wrapper {
    width: 100%;
    max-width: 33%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-title h2 {
    text-align: center;
}

.section-title p {
    text-align: center;
}

.team-wrapper img {
    width: 100%;
    border-radius: 50%;
    border: 10px solid #fff
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

p.role {
    color: #5A6731;
}

@media (max-width:1199px) {
    .team-section {
        padding: 100px;
    }

    .teams-list {
        max-width: 100%;
        padding: 0 100px;
    }

    .team-wrapper {
        width: 100%;
        max-width: 33%;
    }

    .team-wrapper img {
        border: 10px solid #fff
    }
}

@media (max-width:991px) {

    .team-wrapper img {
        border: 7px solid #fff
    }

    .team-wrapper {
        max-width: 50%
    }

    .teams-list {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width:767px) {
    .team-section {
        padding: 56px;
    }

    .teams-list {
        padding: 0 56px;
    }

    .team-wrapper img {
        border: 5px solid #fff
    }
}

@media (max-width:639px) {
    .team-section {
        padding: 36px;
    }

    .teams-list {
        flex-direction: column;
        align-items: center;
    }

    .team-wrapper {
        max-width: 50%
    }

    .teams-list {
        padding: 0 36px;
        gap: 64px;
    }
}

@media (max-width:479px) {

    .team-wrapper {
        max-width: 100%
    }
}