.section__team {
    margin: 40px 0 80px;
}

.team__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 30px;
    row-gap: 20px;
}

.team__box {
    display: flex;
}

.team__img {
    width: 100%;
    max-width: 170px;
    height: 200px;
}

.team__name {
    font-family: ProximaNova, serif;
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 30px;
}

.team__position {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 20px;
}

.team__contact__wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.team__info__warpper {
    margin-left: 10px;
}

.team__contact-img {
    margin-right: 10px;
}

.team__contact-item {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.team-link {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    color: #333333;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .team-link.active {
    color: #FFBA00;
    border-bottom: 1px solid #FFBA00 !important;
    border-color: transparent;
    background-color: transparent;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border-color: transparent;
}

.nav-link:focus, .nav-link:hover {
    color: #FFBA00;
}

.nav-tabs {
    margin-bottom: 50px;
}

.nav-tabs .nav-link {
    padding: 10px 25px;
}

.team-tabs {
    display: flex;
    flex-wrap: nowrap;
}

.team-tabs .team-link {
    white-space: nowrap;

}

@media (max-width: 1400px) {
    .team__wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .team__wrapper {
        grid-template-columns: 1fr;
    }

    .team-tabs {
        overflow-y: scroll;
    }

    .nav-item {
        border-bottom: transparent !important;
    }

    .nav-tabs {
        border-bottom: 1px solid transparent !important;
    }

    .nav-tabs {
        margin-bottom: 25px;
    }

}

@media (max-width: 556px) {
    .team__img {
        max-width: 115px;
        height: 145px;
    }

    .section__team {
        margin: 0px 0 40px;
    }

    .nav-tabs .nav-link {
        padding: 10px 10px;
    }

}