.section_about_team {
    padding-bottom: 20px;
    margin-bottom: 100px;
    background: linear-gradient(to bottom, transparent 0, transparent 40%, #f6f6f6 40%);
    border-bottom: 1px solid #ec691f;
}

.about_team_list .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
}

.about_team_list {
    margin-left: -16px;
}

.about_team_item {
    text-align: center;
    margin-left: 16px;
}

.about_person_photo {
    position: relative;
    height: 200px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border: 1px solid #dfdfdf;
    margin-bottom: 16px;
    z-index: 1;
}

.about_person_photo:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f6f6f6;
    z-index: -1;
}

.about_person_photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.6;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.about_team_item:hover .about_person_photo img {
    filter: grayscale(0);
    opacity: 1;
    transition: .2s;
}

.about_person_name {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.about_person_post {
    font-size: 14px;
    line-height: 16px;
    color: #ec691f;
    margin: 4px 0;
}

.about_person_phone {
    font-weight: 700;
}

.about_person_phone,
.about_person_mail {
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #202020;
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .section_about_team .about_block_nav {
        bottom: -40px;
    }
}

@media (min-width: 480px) {
    .section_about_team {
        padding-bottom: 26px;
    }

    .about_person_photo {
        height: 245px;
        margin-bottom: 22px;
    }

    .about_person_name {
        font-size: 20px;
    }

    .about_person_post {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .about_person_phone,
    .about_person_mail {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .section_about_team {
        padding-bottom: 36px;
    }

    .about_team_list {
        margin-left: -36px;
    }

    .about_team_item {
        margin-left: 36px;
    }

    .about_person_photo {
        height: 255px;
    }
}

@media (min-width: 1620px) {
    .about_person_photo {
        height: 335px;
    }
}