/* Стили для карусели и кнопок на баннерах */

.banner-carousel-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 121px;
}

.banner-item {
    position: relative;
    width: 100%;
}

.banner-item img {
    width: 100%;
    display: block;
}

/* Кнопки на баннерах */
.banner-buttons-row {
    position: absolute;
    top: 66.6%; /* ~2/3 от верха */
    left: 11%;   /* ~1/10 слева */
    display: flex;
    gap: 15px;
    z-index: 10;
}

.banner-btn {
    padding: 10px 25px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.banner-btn-order {
    background-color: #ff6600; /* Оранжевый фон */
    color: #ffffff;            /* Белый текст */
    border-color: #ff6600;
}

.banner-btn-order:hover {
    background-color: #e65c00;
    border-color: #e65c00;
}

.banner-btn-call {
    background-color: transparent; /* Прозрачный фон */
    color: #ffffff;                 /* Белый текст */
    border: 2px solid #ff6600;    /* Оранжевая рамка */
}

.banner-btn-call:hover {
    background-color: rgba(255, 102, 0, 0.1);
}

/* Настройки lightSlider для баннера */
.lSAction > a {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.lSSlideOuter .lSPager.lSpg > li:hover a, .lSSlideOuter .lSPager.lSpg > li.active a {
    background-color: #ff6600 !important;
}



/* Custom_settings */
.lSSlideOuter .lSPager.lSpg{
    top: -40px;
    position: relative;
    margin: 0 !important;
    height: 0;
}

.lSSlideOuter .lSPager.lSpg li a{
    border: 1px solid #ff6600;
}


/* Отключаем в мобильной версии */
@media (max-width: 768px) {
    .banner-carousel-container {
        display: none !important;
    }
}