/**
START SHORTCODE
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&amp;display=swap');

.block-team {
    margin: 0 60px;
    min-height: auto;
}

.block-team.hide {
    display: none;
}

.team__title {
    margin-bottom: 40px;
    font-family: Minion Pro;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 43px;

    color: #000000;
    text-align: center;
}

.members_list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    /* justify-content: center; */
    /* align-items: center; */
    margin: 0 -20px;
}

.members_list .member:nth-child(n+9) {
    display: none;
}

.show_hide_list {
    padding-right: 30px;
    background: url(../svg/show__more__icon.svg) no-repeat right center;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #000000;
    cursor: pointer;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: max-content;
}

.show_hide_list.opnd_g {
    background: url(../svg/show__more__icon_open.svg) no-repeat right center;
}

.member {
    max-width: 300px;
    margin-bottom: 50px;
    margin-right: 20px;
    margin-left: 20px;
    width: 100%;
    flex: 1 0 30%;
    flex-wrap: wrap;
}

.member:nth-of-type(4n) {
    margin-right: 0;
}

.member__avatar {
    margin-bottom: 20px;
}

.member__name {
    margin-bottom: 0 !important;
    font-family: Minion Pro;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 24px;
    /* identical to box height */


    color: #000000;
}

.member__position {
    margin-bottom: 0 !important;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 24px;
    /* identical to box height, or 185% */

    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: #767676;
}


@media (max-width: 1024px) {
    .member {
        max-width: 33%;
        margin-bottom: 50px;
        margin-right: 15px;
        margin-left: 15px;
        width: 100%;
        flex: 1 0 30%;
        flex-wrap: wrap;
    }

    .member:nth-of-type(4n) {
        margin-right: 15px;
    }
}


@media (max-width: 991px) {
    .members_list {
        justify-content: center;
    }
}


@media (max-width: 767px) {
    .members_list {
        flex-wrap: nowrap;
        flex-direction: column;
    }

    .member {
        max-width: 100%;
        width: 100%;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }
}