.team-slider {
    padding: 90px 0 140px;
    background: #EDECF1;
}

.team-slider__title {
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 65px;
    color: #413F4D;
    margin: 0 auto 60px;
    width: 100%;
    max-width: 1134px;
    text-align: center;
    letter-spacing: 2px;
}

.team-slider__button-wrapper {
    width: 100%;
    max-width: 1134px;
    margin: 0 auto 95px;
}

.team-slider__button {
    display: inline-block;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 19px;
    text-transform: uppercase;
    color: #EDECF1;
    padding: 13px 52px;
    background: #4990E2;
    border-radius: 5px;
}

.team-slider__slide_square {
    width: auto;
    height: 300px;
    object-fit: cover;
}

.team-slider__carousel_square {
    margin-bottom: 4px;
}

.team-slider__wrapper {
    position: relative;
    cursor: pointer;
}

.team-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    filter: invert(1);
    border-radius: 50%;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.4);
}

.team-slider__arrow_left {
    left: 10px;
}

.team-slider__arrow_right {
    right: 10px;
}

.swiper-pagination_team-slider {
    display: none;
}

/* TABLET */
@media only screen and (max-width: 960px) {
    .team-slider {
        padding: 90px 0 120px;
    }

    .team-slider__title {
        display: none
    }

    .team-slider__button-wrapper {
        max-width: 688px;
        margin: 0 auto 120px;
    }

}

/* END TABLET */

/* MOBILE */
@media only screen and (max-width: 575px) {
    .team-slider {
        padding: 50px 0 90px;
    }
    
    .team-slider__slide_square{
    	width: 87vw;
    }

    .team-slider__title {
        font-size: 24px;
        line-height: 33px;
        max-width: 330px;
    }

    .team-slider__button-wrapper {
        max-width: 330px;
        margin: 0 auto 100px;
    }

    .team-slider__wrapper .team-slider__carousel_rectangle {
        display: none!important;
    }

    .swiper-pagination_team-slider {
        display: flex;
        align-items: center;
        justify-content: center;
        position: initial !important;
    }

    .swiper-pagination_team-slider .swiper-pagination-bullet-active {
        width: 12px;
        height: 12px;
        background-color: #4990e2;
    }
}

/* MOBILE END */