.team_container {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 30px 0;
    border-bottom: 1px solid var(--color-border);
}

.team_container:first-child {
    padding: 0 0 30px 0;
}

.team_container:last-child {
    padding: 30px 0 0 0;
    border-bottom: 0;
}

.team_container .cover {
    width: 25%;
    height: 280px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.team_container .content_team {
    width: calc(75% - 20px);
    height: auto;
}

.team_container .content_team h3 {
    color: var(--color-text-dark);
    font-size: 18px;
    font-weight: 600;
}

.team_container .content_team h4 {
    color: var(--color-text-dark);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
}

.team_container .content_team p {
    font-size: 16px;
    margin: 10px 0;
}


.icons_team {
    width: 100%;
    height: auto;
    margin: 15px 0;
}

.icons_team ul {
    display: flex;
    align-items: center;
}

.icons_team li {
    margin-right: 10px;
}

.icons_team a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: var(--border-radius-sm);
    color: var(--color-text-dark);
    background-color: var(--color-background-light-secondary);
}

.icons_team a:hover {
    opacity: 0.9;
}




/* CSS RESPONSIVE */
@media (max-width: 900px) {

    .team_container .cover {
        width: 25%;
        height: 180px;
    }

}

@media (max-width: 600px) {

    .team_container .flex {
        flex-wrap: wrap;
    }

    .team_container .cover {
        width: 100%;
        max-width: 280px;
        height: 280px;
        margin-bottom: 20px;
    }

    .team_container .content_team {
        width: 100%;
        height: auto;
    }

}