/*//////////////////////////////////////////////////////////////////////////////////////////*/
/* CUSTOM CSS (ADD YOUR CSS HERE!) */
/*//////////////////////////////////////////////////////////////////////////////////////////*/
/* Скрыть стрелки, если их классы другие */
rs-arrow {
    display: none !important;
}

.active>.page-link, .page-link.active {
    z-index: 3;
    color: #ffffff;
    background-color: #9642F2;
    border-color: #9642F2;
}

.page-link {
    color: #9642F2;
}

.h3-28{
    font-size: 38px;
}

#contactForm label.error {
    color: red;
    font-size: 14px;
    text-align: left;
}

.specialoffer-section .featured-imagebox{
    position: relative;
    overflow: hidden;
}

.specialoffer-section .featured-thumbnail {
    display: block; /* Убирает лишние отступы */
    width: 100%; /* Устанавливает ширину изображения */
    height: auto; /* Сохраняет пропорции */
    transition: none; /* Убирает плавные переходы */
}
  
  .specialoffer-section .featured-thumbnail:hover {
    transform: none; /* Убирает увеличение или любые другие изменения */
}

  .specialoffer-section .featured-content {
    position: relative;
    width: 100%; /* Занимает всю ширину родителя */
    padding-top: 5%; /* Соотношение сторон 4:3 (100% * высота / ширина) */
}

  .error-btn-wrapper {
    display: block; /* Убедитесь, что это блоковый элемент */
    text-align: center; /* Для inline-элементов внутри */
}

.b-bnr-contacts__link{
    font-size: 24px;
    font-weight: bold;
}

.bg-base-skin, .bg-base-skin a:hover{
    color:#ffffff;
}

.bg-base-skin a{
    font-size:24px;
}

.bg-base-skin a:hover{
    color:#ffffff;
}

.bg-base-secondskin{
    color:#ffffff;
}

.bg-base-secondskin a{
    font-size:24px;
}

.bg-base-secondskin a:hover{
    color:#ffffff;
}

.icon-circle {
    display: inline-flex; /* Центрирование содержимого */
    justify-content: center; /* Центровка по горизонтали */
    align-items: center; /* Центровка по вертикали */
    width: 50px; /* Ширина круга */
    height: 50px; /* Высота круга */
    border-radius: 50%; /* Круглая форма */
    border: 2px solid #fff; /* Белая граница */
    background-color: transparent; /* Прозрачный фон */
    color: #fff; /* Белая иконка */
    font-size: 24px; /* Размер иконки */
    margin-right: 8px; /* Отступ между кругом и текстом */
    transition: background-color 0.3s ease, color 0.3s ease; /* Анимация при наведении */
}

a:hover .icon-circle {
    background-color: #007bff; /* Цвет фона при наведении */
    color: #fff; /* Белая иконка остается */
}

.about-wrapper {
    display: block;
}

.site-branding {
    display: flex;
    align-items: flex-end; /* выравниваем по низу */
    position: relative;
    padding: 0 20px 0 0;
    z-index: 10;
}

.site-branding:before {
    content: '';
    position: absolute;
    top: -29px;
    right: 0;
    height: 76px;
    /* intentionally left empty — no border */
}

.site-branding h1 {
    margin: 0;
    line-height: 1;
}

.site-branding #logo-img {
    display: block;
    width: auto;
    height: auto;
    max-height: 110px;
    max-width: 110px;
    margin-top: -30px; /* башни "вылазят" */
    margin-bottom: 8px; /* отступ снизу, чтобы логотип приподнялся */
    z-index: 1;
    position: relative;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease-in-out;
}

/* ИСПРАВЛЕНИЕ МОБИЛЬНОЙ ВЕРСИИ - расширенный breakpoint */
@media (max-width: 991px) {
    /* Понижаем z-index только на мобильных */
    .site-branding {
        z-index: 0 !important; /* Убираем z-index: 10 который блокирует кнопку меню */
        padding: 0 15px 0 0;
        align-items: center;
    }

    .site-branding #logo-img {
        max-height: 70px;
        max-width: 70px;
        margin-top: 0;
        margin-bottom: 0;
        z-index: 0;
        position: static;
    }
}