.moreTeamList .mainSection__wr {
    background: #F7F6F6;
    padding-top: 60px;
    padding-bottom: 60px;
}

.moreTeamList .wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.moreTeamList-item {
    padding: 10px;
    flex: 0 0 auto;
    width: 20%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.moreTeamList-item-wrap {
    position: relative;
}

.moreTeamList-item-img {
    height: 390px;
}

.moreTeamList-item-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.moreTeamList-item-quote {
    padding: 15px;
    position: absolute;
    bottom: 0;
    border-radius: 10px 10px 0px 0px;
    background: #FFFFFF;
    display: none;
    width: 100%;
}

.moreTeamList-item-quote.active {
    display: block;
}

.moreTeamList-item-info {
    background: #FFFFFF;
    padding: 10px 20px 10px 20px;
    flex: 1 0 0%;
    display: flex;
}

.moreTeamList-item-icon {
    cursor: pointer;
    flex: 0 0 auto;
    width: 80px;
    height: 100%;
    background: url("/local/templates/mst/components/bitrix/news.list/moreTeamList/images/quote.svg") center center no-repeat;
    margin-left: -20px;
}

.moreTeamList-item-icon.active {
    background: url("/local/templates/mst/components/bitrix/news.list/moreTeamList/images/close.svg") center center no-repeat;
}

.moreTeamList-item-person {
    flex: 1 0 0%;
}

.moreTeamList-item-name {
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #232323;
}

.moreTeamList-item-position {
    text-align: center;
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #23272D;
}

.moreTeamList-item-more {
    justify-content: center;
    margin-top: 20px;
    display: none;
}

.moreTeamList-item-more button {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #026EF9;
    background: #FFFFFF;
    border: 1px solid #026EF9;
    border-radius: 20px;
    width: 145px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1680px) {
    .moreTeamList-item {
        width: 25%;
    }
}

@media (max-width: 1439px) {
    .moreTeamList-item {
        width: 33.33333333%;
    }
}

@media (max-width: 1023px) {
    .moreTeamList-item {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .moreTeamList-item {
        width: 100%;
    }

    .moreTeamList-item:nth-child(n+6) {
        display: none;
    }

    .moreTeamList.active .moreTeamList-item {
        display: flex;
    }

    .moreTeamList-item-more {
        display: flex;
    }
}