/* ==================================================
   ГЛАВНЫЙ СЛАЙДЕР
================================================== */

.main_slider {
    margin: -46px 0 0;
    padding: 0;
}

.main_slider .slider_wrp {
    margin: 0;
}

.slider_wrp {
    position: relative;
    width: 100%;
    overflow: hidden;
	margin-bottom:30px;
}

.mySwiper {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.mySwiper .swiper-wrapper {
    height: 100%;
}

.mySwiper .swiper-slide {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.mySwiper .swiper-slide > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* ==================================================
   ТЕКСТ НА БАННЕРЕ
================================================== */

.mySwiper .img-num {
    position: absolute;
    z-index: 3;

    top: 0;
    right: 0;

    width: 40%;
    height: 100%;

    display: flex;
    align-items: flex-start;

    padding: 65px 55px;

    color: #ffffff;
}

.mySwiper .ten {
    width: 100%;
}

.mySwiper .img-num h1,
.mySwiper .img-num h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
}

.mySwiper .img-num p {
    margin: 0;

    color: rgba(255, 255, 255, 0.92);

    font-size: 20px;
    line-height: 1.35;
}

.mySwiper .img-num span {
    display: inline-block;

    margin-top: 10px;

    font-size: 15px;

    opacity: 0.75;
}


/* ==================================================
   ЗАТЕМНЕНИЕ ПОД ТЕКСТОМ
================================================== */

.mySwiper .gradient33 {
    position: absolute;
    z-index: 2;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent 40%,
            rgba(0, 0, 0, 0.12) 58%,
            rgba(0, 0, 0, 0.72) 100%
        );

    pointer-events: none;
}


/* ==================================================
   ПАГИНАЦИЯ
================================================== */

.mySwiper .swiper-pagination {
    z-index: 5;

    bottom: 18px !important;

    display: flex;
    justify-content: center;

    gap: 7px;
}

.mySwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;

    margin: 0 !important;

    background: #ffffff;

    border-radius: 50%;

    opacity: 0.45;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.mySwiper .swiper-pagination-bullet-active {
    opacity: 1;

    transform: scale(1.3);
}


/* ==================================================
   МОБИЛЬНЫЙ
================================================== */

@media (max-width: 820px) {

    .main_slider {
        display: none;
    }

}