.block-team .title {
    margin-bottom: 2.5rem;
}
.block-team .teams-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem 2.143rem;
    margin-top: 2.5rem;
}
.block-team .teams-wrapper .team {
    width: calc((100% / 4) - 2.143rem);
    flex-shrink: 0;
    text-align: center;
    padding: 1.429rem 0;
    transition: all .3s linear;
}
.block-team .teams-wrapper .team:hover {
    box-shadow: 0 0 7px rgba(167, 167, 167, .5);
}
.block-team .teams-wrapper .team .email {
    font-weight: 400;
    margin: 0.286rem 0 1.071rem;
}
.block-team .teams-wrapper .team .image {
    margin-top: 3.214rem;
    margin-bottom: 2.857rem;
}
.block-team .teams-wrapper .team .image img {
    border-radius: 50%;
    width: 10.714rem;
    height: 10.714rem;
    object-fit: cover;
}

/* Responsive */
@media only screen and (max-width: 1199px) and (min-width: 992px) {
    .block-team .teams-wrapper {
        gap: 2.5rem 0.714rem;
    }
    .block-team .teams-wrapper .team {
        width: calc((100% / 4) - 0.714rem);
    }
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
    .block-team .teams-wrapper {
        gap: 2.5rem 0;
    }
    .block-team .teams-wrapper .team {
        width: calc(100% / 4);
    }
}

@media only screen and (max-width: 767px) {
    .block-team .teams-wrapper {
        gap: 2.5rem 0;
    }
    .block-team .teams-wrapper .team {
        width: 100%;
    }
}