/* стили для корневого элемента слайдера */

.itcss {
    position: relative;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}


/* стили для wrapper */

.itcss__wrapper {
    position: relative;
    background-color: #fff;
}


/* стили для элемента, в котором непосредственно расположены элементы (слайды) */

.itcss__items {
    display: flex;
    transition: transform 0.5s ease;
}


/* класс для отключения transition */

.transition-none {
    transition: none;
}


/* стили для элементов */

.itcss__item {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    padding-right: 1.5%;
    border-radius: 15px;
}


/* кнопки Prev и Next */

.itcss__control {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 50px;
    transform: translateY(-50%);
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    /*background: rgba(0, 0, 0, 0.3);
    opacity: 0.5;*/
    user-select: none;
}

.itcss__control_show {
    display: flex;
}

.itcss__control:hover,
.itcss__control:focus {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
}

.itcss__control_prev {
    /*left: 0;*/
    /*left: -7%;*/
    left: -90%;
    display: none;
}

.itcss__control_next {
    /*right: 0;*/
    /*right: -7%;*/
    right: -90%;
    display: none;
}

.itcss__control::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: transparent no-repeat center center;
    background-size: 100% 100%;
}

.itcss__control_prev::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.itcss__control_next::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}


/* Индикаторы */

.itcss__indicators {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    display: flex;
    justify-content: center;
    padding-left: 0;
    margin: 0 15%;
    list-style: none;
    user-select: none;
}

.itcss__indicator {
    flex: 0 1 auto;
    width: 30px;
    height: 4px;
    margin-right: 3px;
    margin-left: 3px;
    background-color: rgba(255, 255, 255, 0.5);
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    cursor: pointer;
}

.itcss__indicator_active {
    background-color: #fff;
}

.itcss__items {
    counter-reset: slide;
}

.itcss__item {
    counter-increment: slide;
}

.itcss {
    /*width: 1120px!important;*/
}

.itcss {
    max-width: 33.3333%;
}

.element_slide {
    height: 560px;
}

.element_containner {
    padding: 40px 85px;
    max-width: 70%;
}

.element_containner h1 {
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
}

.element_containner h2 {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    margin-top: 24px
}

.def_pic_slider {
    background: url('/includes/bn2.png');
    background-size: cover!important;
    background-position: center!important;
}

.button_slider_push {
    background-color: var(--color-text-category);
    font-size: 15px;
    color: var(--color-re-head-1)!important;
    padding: 10px 15px;
    border-radius: 5px;
    border: 0px ridge #f3c846;
    margin-top: 30px;
}

.button_slider_push:hover {
    color: var(--color-re-head-2)!important;
}

@media (max-width: 870px) {
    .mpg_fix_scroll {
        display: none;
    }
}