/* ===================================
   ГЛАВНЫЙ БАННЕР-СЛАЙДЕР
   =================================== */

.real-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reag-slider {
    position: relative;
    width: 100%;
    padding: 60px 0;
}

.reag-slider .swiper-slide {
    display: flex;
    align-items: center;
    min-height: 500px;
}

/* Контейнер с двумя колонками */
.half-cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 60px;
}

.half-cont__col {
    flex: 1;
}

.half-cont__col:first-child {
    max-width: 500px;
}

.half-cont__col:last-child {
    max-width: 600px;
    text-align: right;
}

/* Заголовок */
.h2-top-pad,
.h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #2E4A93;
    margin: 0 0 20px 0;
}

/* Список */
.list-point {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.list-point li {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.list-point li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #2E4A93;
    border-radius: 50%;
}

/* Кнопка */
.reag-slider .button,
.reag-slider .button_alt {
    background-color: #2E4A93 !important;
    color: #fff !important;
    border: 2px solid #2E4A93 !important;
    border-radius: 34px;
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
}

.reag-slider .button:hover,
.reag-slider .button_alt:hover {
    background-color: #1e3266 !important;
    border-color: #1e3266 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 74, 147, 0.3);
}

/* Изображение */
.img-intop {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
}

/* Навигационные кнопки */
.reag-slider .swiper-button-prev,
.reag-slider .swiper-button-next {
    width: 50px;
    height: 50px;
    background: #2E4A93;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s;
}

.reag-slider .swiper-button-prev:after,
.reag-slider .swiper-button-next:after {
    font-size: 20px;
    font-weight: 700;
}

.reag-slider .swiper-button-prev:hover,
.reag-slider .swiper-button-next:hover {
    background: #1e3266;
    transform: scale(1.1);
}

.reag-slider .swiper-button-prev {
    left: 10px;
}

.reag-slider .swiper-button-next {
    right: 10px;
}

/* Пагинация */
.reag-slider .swiper-pagination {
    bottom: 10px;
}

.reag-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #2E4A93;
    opacity: 0.3;
    transition: all 0.3s;
}

.reag-slider .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .half-cont {
        gap: 40px;
    }
    
    .h2-top-pad,
    .h2 {
        font-size: 36px;
    }
    
    .reag-slider .button,
    .reag-slider .button_alt {
        padding: 16px 40px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .half-cont {
        flex-direction: column;
        gap: 30px;
    }
    
    .half-cont__col:first-child,
    .half-cont__col:last-child {
        max-width: 100%;
        text-align: center;
    }
    
    .img-intop {
        margin: 0 auto;
    }
    
    .h2-top-pad,
    .h2 {
        font-size: 28px;
    }
    
    .reag-slider .swiper-slide {
        min-height: 400px;
    }
    
    .reag-slider .swiper-button-prev,
    .reag-slider .swiper-button-next {
        width: 40px;
        height: 40px;
    }
    
    .reag-slider .swiper-button-prev:after,
    .reag-slider .swiper-button-next:after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .h2-top-pad,
    .h2 {
        font-size: 24px;
    }
    
    .reag-slider .button,
    .reag-slider .button_alt {
        padding: 14px 30px;
        font-size: 13px;
    }
    
    .reag-slider {
        padding: 30px 0;
    }
}

