.team-container-body {
    align-items: flex-start;
}

.team-container-body-element {
    width: 22%;
}

.team-container-body-element img {
    width: 100%;
}

.optivisao-container-body-element {
    align-items: center;
    gap: 42px;
}

.optivisao-container-body-element img {
    width: 40%;
}

.optivisao-container-body-element-content {
    width: 100%;
}

/* small */
@media screen and (max-width: 768px) {
    
    .team-container-body {
        flex-flow: column wrap;
        gap: 42px;
    }
    
    .team-container-body-element {
        width: 100%;
    }
    
    .team-container-body-element img {
        width: 100%;
    }

    .optivisao-container-body-element img {
        width: 100%;
    }

}

/* medium */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    
    .team-container-body {
        flex-flow: column wrap;
        gap: 42px;
    }
    
    .team-container-body-element {
        flex-flow: row wrap;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .team-container-body-element img {
        width: 22%;
    }

    .team-container-body-element-content {
        width: 74%;
    }

    .optivisao-container-body-element img {
        width: 40%;
    }

}

/* large */
@media screen and (min-width: 1024px) {
    /* same behaviour as main */
}