.trainings-teacher {
    margin-bottom: 100px;
}

.trainings-teacher .trainings-title {
    margin-bottom: 5px;
}

.trainings-teacher .trainings-text {
    width: 58%;
    margin-bottom: 30px;
}


.trainings-teacher-block {
    display: flex;
    align-items: center;
    position: relative;
}

.trainings-teacher-block-slider_arrow {
    width: 50px;
    height: 50px;
    position: absolute;
    cursor: pointer;
}

.trainings-teacher-block-slider__prev {
    left: -60px;
}

.trainings-teacher-block-slider__next {
    right: -60px;
}

.trainings-teacher_item {
    border-radius: 12px;
    padding: 24px;
    background: #fff;
    min-width: 404px;
    height: auto !important;
}

.trainings-teacher_item-img {
    display: flex;
    justify-content: center;
    height: 356px;
    max-height: 356px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 22px;
}

.trainings-teacher_item-img img {
    height: 100%;
    width: auto;
}

.trainings-teacher_item-name {
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    color: #333333;
    margin-bottom: 10px;
}

.trainings-teacher_item-position {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #333333;
    margin-bottom: 12px;
}

.trainings-teacher_item-text ul li {
    position: relative;
    padding-left: 17px;
    display: flex;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 11px;
}

.trainings-teacher_item-text ul li:after {
    content: '';
    background-size: cover;
    width: 5px;
    height: 5px;
    display: block;
    position: absolute;
    left: 0;
    top: 8px;
    border-radius: 100px;
    background: #81B798;
}

@media (max-width: 1200px) {
    .trainings-teacher-block {
        justify-content: center;
    }

    .trainings-teacher-block-slider__prev {
        left: unset;
        bottom: -70px;
        transform: translateX(-28px);
    }

    .trainings-teacher-block-slider__next {
        right: unset;
        bottom: -70px;
        transform: translateX(33px);
    }
}

@media (max-width: 767px){

    .trainings-teacher {
        margin-bottom: 148px;
    }

    .trainings-teacher .trainings-title {
        font-size: 34px;
        margin-bottom: 5px;
    }

    .trainings-teacher .trainings-text {
        width: 100%;
        margin-bottom: 17px;
    }

    .trainings-teacher_item {
        min-width: auto;
    }

    .trainings-teacher_item-img {
        height: auto;
        align-items: center;
    }

    .trainings-teacher_item-img img {
        height: 100%;
        width: auto;
    }

    .trainings-teacher_item-name {
        font-size: 20px;
    }

}