@font-face {
    font-family: 'TDVolshebstvo';
    src: url('/bitrix/templates/vocnt/assets/fonts/TDVolshebstvo.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Для оптимизации загрузки */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
a, 
a:link, button,svg,
a:visited, 
a:hover, 
a:active {
    cursor: pointer !important;
    border: 0;
}
.header-search button{
    background-color: #0000;
}
.header-search button:hover{
    background-color: #0000;
}
h1{
    all:unset;
}
h2{
    all:unset;
}
a{
    all:unset;
}
.menu.active{
    opacity: 1;
    transform: translateX(0px);
}
.close-menu{
    position: fixed;
    right: 20px;
    top: 10px;
}
.menu-actions{
    display: flex;
    flex-direction: column;
    gap: 10px 0px;
    color: #fff;
}
.menu img{
    width: 95px;
}
.seo{
    display:none;
}
 .cnt-container {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Шапка */
        .cnt-header {
            background: linear-gradient(to right, var(--cnt-primary), var(--cnt-secondary));
            color: white;
            padding: 25px 0;
            box-shadow: var(--cnt-shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .cnt-header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cnt-logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .cnt-logo-icon {
            font-size: 2.8rem;
            color: var(--cnt-accent);
        }

        .cnt-logo-text {
            font-family: 'PT Serif', serif;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .cnt-logo-subtitle {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-top: 5px;
        }

        .cnt-nav {
            display: flex;
            gap: 30px;
        }

        .cnt-nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            padding: 8px 0;
            position: relative;
            transition: color 0.3s;
        }

        .cnt-nav-link:hover {
            color: var(--cnt-accent);
        }

        .cnt-nav-link.active {
            color: var(--cnt-accent);
        }

        .cnt-nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--cnt-accent);
        }

        /* Основной контент */
        .cnt-main-title {
            font-family: 'PT Serif', serif;
            font-size: 2.5rem;
            color: var(--cnt-dark);
            text-align: center;
            margin: 40px 0 30px;
            position: relative;
        }

        .cnt-main-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 3px;
            background-color: var(--cnt-secondary);
        }

        /* Новости в один столбец */
        .cnt-news-list {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin-bottom: 60px;
        }

        .cnt-news-item {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--cnt-shadow);
            border: var(--cnt-border);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }
/* Для вложенных списков на странице Антитеррористическая безопасность */
.info-sublist {
    margin: 10px 0 10px 20px;
    padding-left: 20px;
}
.header-menu li{
    all:unset;
}











        /* ===== ОБЛАСТЬ ПОКАЗА СЛАЙДОВ ===== */
        .slide-display {
            position: relative;
            width: 100%;
            height: 480px;
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 25px;    
            margin-top: 55px;
        }
        
        .slides-track {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.4s ease;
        }
        
        .single-slide {
            flex: 0 0 100%;
            height: 100%;
            position: relative;
        }
        
        .main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .single-slide:hover .main-image {
            transform: scale(1.03);
        }
        /*
        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 25px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .single-slide:hover .image-overlay {
            opacity: 1;
        }
        */
        .overlay-title {
            margin: 0 0 8px;
            font-size: 1.4rem;
            font-weight: 600;
        }
        
        .overlay-text {
            margin: 0;
            font-size: 0.95rem;
            opacity: 0.9;
        }
        
        /* ===== КНОПКИ НАВИГАЦИИ ===== */
        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.85);
            border: none;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--primary-blue);
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .nav-arrow:hover {
            background: white;
            color: var(--accent-red);
            transform: translateY(-50%) scale(1.12);
        }
        
        .arrow-prev {
            left: 20px;
        }
        
        .arrow-next {
            right: 20px;
        }
        
        /* ===== ИНДИКАТОР ПРОГРЕССА ===== */
        .progress-wrapper {
            width: 100%;
            height: 6px;
            background: #e8eef5;
            border-radius: 3px;
            margin: 20px 0;
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-red));
            width: 0%;
            transition: width 0.3s linear;
        }
        
        /* ===== ТОЧЕЧНЫЕ ИНДИКАТОРЫ ===== */
        .dots-container {
            display: none;
            justify-content: center;
            gap: 12px;
            margin: 20px 0;
        }
        
        .dot-indicator {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #d1d9e6;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot-indicator:hover {
            background: var(--primary-blue);
            transform: scale(1.2);
        }
        
        .dot-indicator.active {
            background: var(--accent-red);
            transform: scale(1.3);
            box-shadow: 0 0 8px rgba(255, 107, 107, 0.4);
        }
        
        /* ===== ПАНЕЛЬ МИНИАТЮР ===== */
        .thumbnails-bar {
            display: none;
            gap: 15px;
            margin: 25px 0;
            padding: 10px 5px;
            overflow-x: auto;
            scroll-behavior: smooth;
        }
        
        .thumbnail-box {
            flex: 0 0 auto;
            width: 140px;
            height: 95px;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            opacity: 0.7;
            transition: all 0.3s ease;
            border: 3px solid transparent;
            position: relative;
        }
        
        .thumbnail-box:hover {
            opacity: 1;
            transform: translateY(-5px);
        }
        
        .thumbnail-box.active {
            opacity: 1;
            border-color: var(--accent-red);
            box-shadow: 0 6px 15px rgba(255, 107, 107, 0.3);
        }
        
        .thumbnail-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* ===== БЛОК ОПИСАНИЯ ===== */
        .info-panel {
            background: linear-gradient(135deg, #f8fafd 0%, #edf2f8 100%);
            padding: 22px;
            border-radius: 12px;
            margin: 25px 0;
            border-left: 5px solid var(--primary-blue);
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            display: none;
        }
        
        .image-title {
            color: var(--primary-blue);
            margin: 0 0 12px;
            font-size: 1.5rem;
            font-weight: 600;
        }
        
        .image-desc {
            color: #4a5568;
            margin: 0;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        
        /* ===== ПАНЕЛЬ УПРАВЛЕНИЯ ===== */
        .controls-bar {
            display: none;
            justify-content: center;
            gap: 18px;
            margin: 30px 0 15px;
            flex-wrap: wrap;
        }
        
        .control-btn {
            background: linear-gradient(135deg, var(--primary-blue), #5a86c9);
            color: white;
            border: none;
            padding: 13px 26px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 1.05rem;
            font-weight: 500;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 12px rgba(74, 111, 165, 0.3);
        }
        
        .control-btn:hover {
            background: linear-gradient(135deg, var(--accent-red), #ff8e8e);
            transform: translateY(-4px);
            box-shadow: 0 6px 18px rgba(255, 107, 107, 0.4);
        }
        
        .control-btn.active {
            background: linear-gradient(135deg, var(--accent-red), #ff8e8e);
        }
        
        /* ===== СЧЕТЧИК СЛАЙДОВ ===== */
        .counter-display {
            display: none;
            text-align: center;
            color: var(--primary-blue);
            font-size: 1.1rem;
            margin: 15px 0;
            font-weight: 500;
        }
        
        /* ===== АДАПТИВНОСТЬ ===== */
        @media (max-width: 992px) {
            .slide-display {
                height: 420px;
            }
            
            .thumbnail-box {
                width: 120px;
                height: 85px;
            }
        }
        
        @media (max-width: 768px) {
            .slide-display {
                height: 350px;
            }
            
            .page-header {
                font-size: 1.9rem;
            }
            
            .nav-arrow {
                width: 48px;
                height: 48px;
                font-size: 1.2rem;
            }
            
            .thumbnail-box {
                width: 100px;
                height: 70px;
            }
            
            .control-btn {
                padding: 11px 22px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .slide-display {
                height: 280px;
            }
            
            .page-header {
                font-size: 1.6rem;
            }
            
            .controls-bar {
                flex-direction: column;
                align-items: center;
            }
            
            .control-btn {
                width: 85%;
                justify-content: center;
            }
            
            .image-title {
                font-size: 1.3rem;
            }
            
            .main-wrapper {
                padding: 18px;
            }
        }
        
        /* ===== АНИМАЦИИ ===== */
        @keyframes slideIn {
            from { opacity: 0.6; transform: scale(0.98); }
            to { opacity: 1; transform: scale(1); }
        }
        
        .main-image.changing {
            animation: slideIn 0.5s ease;
        }
        
        /* ===== СКРОЛЛБАР ДЛЯ МИНИАТЮР ===== */
        .thumbnails-bar::-webkit-scrollbar {
            height: 6px;
        }
        
        .thumbnails-bar::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }
        
        .thumbnails-bar::-webkit-scrollbar-thumb {
            background: var(--primary-blue);
            border-radius: 3px;
        }













.info-list{
    display: flex;
    gap: 20px;
    flex-direction: column;
    margin: 20px 0px;    
}

        /* === СТИЛИ СТРАНИЦЫ НОВОСТЕЙ С ПРИСТАВКОЙ news- === */
        .news-page {
            font-family: 'Golos Text', sans-serif;
            background-color: #FFF7E9;
            color: #170E10;
            padding: 60px 0 100px;
        }

        .news-container {
            width: 100%;
            max-width: 1260px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Заголовок страницы */
        .news-main-title {
            color: #A91F21;
            font-size: 48px;
            text-align: center;
            margin-bottom: 15px;
            font-weight: 700;
            position: relative;
            padding-bottom: 20px;
			display:block;
        }

        .news-main-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #303A97;
            border-radius: 2px;
        }

        .news-page-description {
            color: #303A97;
            text-align: center;
            font-size: 20px;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }

        /* Сетка новостей - 3 в ряд */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        /* Карточка новости */
        .news-card {
            background: #ffffff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(161, 31, 33, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(161, 31, 33, 0.15);
        }

        /* Изображение новости */
        .news-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-bottom: 3px solid #303A97;
        }

        /* Контент карточки */
        .news-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        /* Дата новости */
        .news-date {
            color: #303A97;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .news-date:before {
            content: '';
            display: block;
            width: 16px;
            height: 16px;
            background-color: #A91F21;
            border-radius: 50%;
        }

        /* Заголовок новости */
        .news-title {
            color: #170E10;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
            flex-grow: 1;
        }

        /* Краткое описание */
        .news-excerpt {
            color: #666;
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 25px;
            flex-grow: 2;
        }

        /* Кнопка "Подробнее" */
        .news-read-more {
            background-color: #A91F21;
            color: #ffffff;
            border: none;
            border-radius: 15px;
            padding: 12px 30px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
            align-self: flex-start;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .news-read-more:hover {
            background-color: #303A97;
        }

        /* Пагинация */
        .news-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 50px;
        }

        .news-pagination-item {
            width: 45px;
            height: 45px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #303A97;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .news-pagination-item:hover {
            background-color: rgba(161, 31, 33, 0.1);
        }

        .news-pagination-active {
            background-color: #A91F21;
            color: #ffffff;
            border-color: #A91F21;
        }

        .news-pagination-prev,
        .news-pagination-next {
            color: #303A97;
            text-decoration: none;
            font-weight: 500;
            padding: 10px 20px;
            border-radius: 10px;
            border: 2px solid #303A97;
            transition: all 0.3s ease;
        }

        .news-pagination-prev:hover,
        .news-pagination-next:hover {
            background-color: #303A97;
            color: #ffffff;
        }

        /* Адаптивность */
        @media (max-width: 1024px) {
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .news-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }

            .news-main-title {
                font-size: 36px;
            }

            .news-page-description {
                font-size: 18px;
                margin-bottom: 40px;
            }
        }
    
.info-sublist .info-list-item {
    list-style-type: circle;
    font-size: 18px;
    margin-bottom: 8px;
}

/* Для жирных частей текста внутри абзацев */
.info-text span.info-text-bold {
    font-weight: bold;
    display: inline;
}

/* Для ссылок внутри текста */
.info-text a {
    color: #303A97;
    text-decoration: underline;
}

.info-text a:hover {
    color: #A91F21;
}

/* Для документа PDF */
.info-doc-link {
    display: inline-block;
    font-size: 20px;
    color: #303A97;
    text-decoration: none;
    padding: 10px 15px;
    border: 2px solid #303A97;
    border-radius: 8px;
    margin: 15px 0;
    transition: all 0.2s ease;
}

.info-doc-link:hover {
    background-color: #303A97;
    color: #ffffff;
    text-decoration: none;
}

.info-divider {
    height: 1px;
    background-color: #E8E8E8;
    border: none;
    margin: 30px 0;
}


.info-share {        
    background-color: #ffffff;        
    border-radius: 10px;        
    padding: 25px;        
    text-align: center;        
    margin-top: 30px;        
    border: 1px solid #E8E8E8;        
}        

iframe {        
    display: block;            
    border: none;        
    border-radius: 5px;        
}        

hr {        
    border: none;        
    border-top: 2px solid #ddd;        
    margin: 30px 0;        
}        

blockquote {        
    margin: 20px 0;        
    padding-left: 20px;        
    border-left: 4px solid #c20724;        
    font-style: italic;        
    color: #555;        
}        

@media (max-width: 768px) {        
         
            
    iframe {        
        max-width: 100%;        
        height: auto;        
        aspect-ratio: 16/9;        
    }        
}
/* НОВЫЕ СТИЛИ, КОТОРЫЕ НУЖНО ДОБАВИТЬ К СУЩЕСТВУЮЩИМ */

/* Галерея изображений - ФИКСИРОВАННЫЕ РАЗМЕРЫ */
.info-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.info-gallery-item {
    flex: 0 0 auto;
    text-align: center;
}

.info-gallery-image {
    width: 250px;      /* ФИКСИРОВАННАЯ ШИРИНА */
    height: 250px;     /* ФИКСИРОВАННАЯ ВЫСОТА */
    object-fit: cover; /* Сохраняет пропорции, обрезая лишнее */
    border-radius: 8px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.info-gallery-image:hover {
    transform: scale(1.03);
}

/* Стили для таблицы */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 18px;
}

.info-table th,
.info-table td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: left;
    vertical-align: top;
}

.info-table th {
    background-color: #f8f8f8;
    font-weight: 600;
    color: #333;
}

.info-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.info-table tr:hover {
    background-color: #f5f5f5;
}

/* Отступы между строками с временем */
.info-table td {
    line-height: 1.8;
}

.info-table td br {
    display: block;
    margin-bottom: 8px;
    content: "";
}

/* Адаптивность для галереи - сохраняем фиксированные пропорции, но уменьшаем размер */
@media (max-width: 768px) {
    .info-gallery {
        gap: 15px;
    }
    
    .info-gallery-image {
        width: 200px;      /* Уменьшенная фиксированная ширина */
        height: 200px;     /* Уменьшенная фиксированная высота */
    }
    
    .info-table {
        display: block;
        overflow-x: auto;
        font-size: 16px;
    }
    
    .info-table th,
    .info-table td {
        padding: 10px 12px;
        min-width: 140px;
    }
    
    .info-table td br {
        margin-bottom: 6px;
    }
}

@media (max-width: 576px) {
    .info-gallery-image {
        width: 180px;      /* Фиксированная для мобильных */
        height: 180px;     /* Фиксированная для мобильных */
    }
    
    .info-table {
        font-size: 15px;
    }
    
    .info-table th,
    .info-table td {
        padding: 8px 10px;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .info-gallery {
        gap: 12px;
    }
    
    .info-gallery-image {
        width: 160px;      /* Фиксированная для маленьких экранов */
        height: 160px;     /* Фиксированная для маленьких экранов */
    }
    
    .info-table {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .info-gallery {
        gap: 10px;
    }
    
    .info-gallery-image {
        width: 150px;      /* Минимальная фиксированная */
        height: 150px;     /* Минимальная фиксированная */
    }
}
        .cnt-news-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .cnt-news-img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .cnt-news-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .cnt-news-title {
            font-family: 'PT Serif', serif;
            font-size: 1.6rem;
            color: var(--cnt-dark);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .cnt-news-date {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--cnt-secondary);
            font-size: 0.95rem;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .cnt-news-date i {
            color: var(--cnt-secondary);
        }

        .cnt-news-text {
            color: var(--cnt-text);
            margin-bottom: 25px;
            line-height: 1.7;
            font-size: 1.05rem;
            flex-grow: 1;
        }

        .cnt-news-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: var(--cnt-primary);
            text-decoration: none;
            font-weight: 600;
            padding: 12px 25px;
            border: 2px solid var(--cnt-primary);
            border-radius: 30px;
            transition: all 0.3s;
            width: fit-content;
            margin-top: 10px;
        }

        .cnt-news-link:hover {
            background-color: var(--cnt-primary);
            color: white;
            gap: 15px;
        }

        /* Выделенная новость */
        .cnt-featured-news {
            border: 3px solid var(--cnt-accent);
            position: relative;
        }

        .cnt-featured-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--cnt-secondary);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            z-index: 2;
        }

        /* Пагинация */
        .cnt-pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 60px;
        }

        .cnt-page-btn {
            padding: 12px 20px;
            background-color: white;
            border: 2px solid var(--cnt-accent);
            border-radius: 5px;
            color: var(--cnt-dark);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            min-width: 45px;
            text-align: center;
        }

        .cnt-page-btn:hover {
            background-color: var(--cnt-accent);
            color: white;
        }

        .cnt-page-btn.active {
            background-color: var(--cnt-secondary);
            color: white;
            border-color: var(--cnt-secondary);
        }

        /* Подвал */
        .cnt-footer {
            background-color: var(--cnt-dark);
            color: white;
            padding: 50px 0 30px;
            margin-top: 50px;
        }

        .cnt-footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .cnt-footer-section h3 {
            font-family: 'PT Serif', serif;
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--cnt-accent);
        }

        .cnt-footer-links {
            list-style: none;
        }

        .cnt-footer-links li {
            margin-bottom: 12px;
        }

        .cnt-footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }

        .cnt-footer-links a:hover {
            color: var(--cnt-accent);
        }

        .cnt-footer-contact {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .cnt-footer-contact i {
            color: var(--cnt-accent);
        }

        .cnt-copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .cnt-header-content {
                flex-direction: column;
                gap: 20px;
            }
            
            .cnt-nav {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .cnt-main-title {
                font-size: 2rem;
            }
            
            .cnt-news-img {
                height: 250px;
            }
            
            .cnt-news-content {
                padding: 20px;
            }
            
            .cnt-news-title {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 480px) {
            .cnt-container {
                padding: 0 15px;
            }
            
            .cnt-main-title {
                font-size: 1.8rem;
            }
            
            .cnt-news-img {
                height: 200px;
            }
            
            .cnt-news-title {
                font-size: 1.3rem;
            }
            
            .cnt-news-text {
                font-size: 1rem;
            }
            
            .cnt-news-link {
                width: 100%;
                justify-content: center;
            }
        }
.menu{
    position: fixed;
    right: 0;
    top: 0;
	display:none;
    width: 310px;
    height: 100%;
    background-color: #303a97c2;
    z-index: 101;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    backdrop-filter: blur(20px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: translateX(200px);
    padding: 26px 16px;
    flex-direction: column;
    gap: 13px 0px;
}
.creature-item:hover img{
	filter: brightness(0.5);
}
body{
    font-family: 'Golos Text', sans-serif;
    background-color: #FFF7E9;
    margin: 0;
    color: #170E10;
}
.container{
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
}
.url-list-content{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px 0px;
    align-items: center;
    
    font-size: 32px;
}
.url-list-content button{
    padding: 30px 79px;
    font-size: 32px;
    color: #ffffff;
    border: 0;
    border-radius: 15px;

}
.event{
    width: 190px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 20px 0px;
}
.top-photo{
    height: 20px;
    background: url("/bitrix/templates/vocnt/assets/img/Mask\ group\ \(1\).png") repeat-x;
    background-size: auto 100%;
}
.contact-wrapper-phone img{
    width: 30px;
    height: 30px;
}
.bottom-photo{
    height: 20px;
    background: url("/bitrix/templates/vocnt/assets/img/Mask\ group\ \(3\).png") repeat-x;
    background-size: auto 100%;
}

.header{
    display: flex;
    justify-content: space-between;
}
.right{
    display: flex;
    gap: 0px 18px;
    padding: 17px;
}
.creature-item-title-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    display: flex;
    font-size:15px;
}
.logo-photo{
    height: 70px;
}
.header-title{
    color: #303A97;
}
.footer-container img{
    width: 174px;
    height: 100%;
}
.menu-btn-mobile{
    height: 57%;
    border: 0;
    background-color: #B21F2F;
    color: #ffffff;
    border-radius: 10px;
    width: 22%;
    margin-top: 25px;
    padding: 10px;
}

.header-text{
    text-align: center;
    display: flex;
    flex-direction: column;
    color: #B21F2F;
    font-size: 19px;
    justify-content: center;
}
.header-bottom-text{
    font-family: 'TDVolshebstvo', sans-serif;
    color: #A91F21;
    font-size: 18px;
}
.header-subtitle{
    font-weight: 700;
}
.left{
    width: 415px;
    display: flex;
    gap: 13px 13px;
    padding-top: 12px;
    justify-content: space-between;
}
.left-btn-menu-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-top{
    width: 100%;
}
.vsv img{
    width: 25px;
}
.vsv{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 0;
    background-color: #0000;
    font-size: 14px;
    border-radius: 10px;
    padding: 5px;
}
.header-menu{
    width: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.header-bottom{
    display: flex;
    justify-content: space-between;
    font-size: 100%;
    padding: 5px;
}
.header-search{
    display: flex;
    align-items: end;
    padding-right: 13px;
    gap: 12px;
}
.main-photo{
    margin-top: 10px;
}
.main-photo img{
    width:100%;
}
.header-search-input {
    width: 160px;
    border: 0;
    border-bottom: 1px solid;
    text-indent: 2px;
    background-color: #00000000;
}
.left-panel{
    bottom: 35px;
    right: 35px;
    position: fixed;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 10px 0px;
    justify-content: end;
    align-items: end;
}
.contact-wrapper{
    min-width: 251px;
    min-height: 86px;
    border-radius: 15px;
    background-color: #303A97;
    padding: 12px 28px;
    gap: 12px 0px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.buy-bilets{
    position: fixed;
    bottom: 35px;
    left: 35px;
    z-index: 100;
    display: none;
/*
    width: 195px;
    height: 59px;
    border-radius: 15px;
    position: fixed;
    background-color: #A91F21;
    bottom: 35px;
    left: 35px;
    padding: 12px 12px;
    gap: 12px 0px;
    display: flex;
    z-index: 100;
    align-items: center;
    justify-content: center;
    */
}
.buy-bilets-text-container{
    
    font-size: 25px;
}
.buy-bilets-text{
    color: #ffffff;
    font-family: 'TDVolshebstvo';
    border: 0;
    min-width: 195px;
    min-height: 59px;
    border-radius: 15px;
    background-color: #A91F21;
    padding: 12px 12px;
    gap: 12px 0px;
    font-size:100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.left-btn-menu-wrapper .buy-bilets-text{
    width: 120px;
}
.left-r{
    display: flex;
    flex-direction: column;
    gap: 15px 0px;
    justify-content: center;
}
#eventsContainer{
    overflow:auto;
    margin-top: 20px;
    display: flex;
    min-height: 260px;
    gap: 0px 20px;
}
.event-photo{
    width: 190px;
    height: 182px;
}
.btn-all-news{
    background-color: #A91F21;
    color: #ffffff;
    border-radius: 15px;
    border: 0;
    min-width: 193px;
    min-height: 38px;    
    font-size: 20px;
}
.btn-all-news-container{
    width: 100%;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-form-title{
    font-size: 25px;
}
.footer-form-wrapper{
    background-color: #8386b8;
    border-radius: 20px;
    display: flex;
    gap:0px 60px;
    color:#ffffff;
}
.news-title{
    font-size: 18px;
    font-weight: 100;
    margin-top: 11px;
}
.footer-form{
    width:552px;
    border-radius: 20px;
    padding: 32px;
    gap:20px 0px;
    display: flex;
    flex-direction: column;
}
.footer-input{
    height: 38px;
    border: 0;
    border-radius: 15px;
    background-color: #bba2bd;
    padding: 10px;
}
.footer-form-textarea{
    border: 0;
    border-radius: 15px;
    background-color: #bba2bd;
    height: 87px;
}
.footer-form-container-input{
    display: flex;
    gap: 0px 50px;
}
.map-info{    
    font-size: 26px;
    color: #303A97;
    gap: 15px 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 70%;
    margin: 54px auto;
}
.url-item img{
    min-width: 100%;
    height: 100%;
    border-radius: 15px;
}
.url-item-blue{
	background-color:#303A97;
}
.url-list-color a{
    background-color: #a91f21;
    padding: 30px 79px;
    color: #ffffff;    
    box-sizing: border-box;
    border: 0;
    border-radius: 15px;
    font-size:100%;
}
.url-list-color > *:first-child,
.url-list-color > *:last-child {
    background-color: #303A97;
}
.url-list a{
	max-width:406px;
}
.url-item-red{
    background-color: #a91f21;
}
.url-item{
    width: 33%;
    height: 197px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: #ffffff;
    text-align: center;
}
.social-list img{
    width: 38px;
    height: 38px;
}
.social-list  svg{
    width: 38px;
    height: 38px;
}
.social-list {
    display: flex;
    gap: 0px 5px;
    margin-top: 10px;
}
.url-list-wrapper{
    margin: 50px auto;    
    overflow: hidden;
}
.next{
    right: 10px;
}
.police a{
    text-decoration: underline;
}
.prev{
    left: 10px;
}
.not-events{
    width: 100%;
    text-align: center;
    font-size: 20px;
}
.url-list{
    display: flex;
    gap: 0px 20px;
    margin-top: 50px;
    transition: all 0.5s ease-in-out;
    width: 100%;
}
.url-list-container{
    position: relative;
    transition: all 0.5s ease-in-out;
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: white;
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.arrow:hover {
    background: #A91F21;
    color: #fff;
}
.arrow:hover svg {
    filter: brightness(0) invert(1);
}
.map{
    margin-top: 100px;
}
.map-container{
    display: flex;
    justify-content: space-between;    
    gap: 0px 70px;
}
.map-container svg{
    height: 100%;
    width: 100%;
}
.map-region{
    font-size: 34px;
}
.map-region-container{
    display: flex;
    gap: 24px 0px;
    flex-direction: column;
}
.footer-info{
    line-height: 25px;
}
.creature{
    margin-top: 100px;
    margin-bottom: 40px;
}
.map-info-region{
    width: 487px;
    border-radius: 15px;
    background-color: #9d9ede;
    height: 650px;
    color:#ffffff;
    padding: 40px 25px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 20px 0px;
}
.footer-form-input{
    display: flex;
    flex-direction: column;
    gap: 8px 0px;
    width: 100%;
}
.footer-map-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 51%;
}
.footer-police-container{
    display: flex;
    gap: 0px 20px;
}
.footer-pushkin{
    margin: 40px auto;
}
footer{
    background-color: #303a97;
}
.footer{
        padding: 43px 43px 62px 43px;
}
.police{
    font-size: 11px;
}
.footer-container{
    display: flex;
    justify-content: space-between;
    color: #ffffff;
}
.footer-urls{
    display: flex;
    flex-direction: column;
    gap: 14px 0px;
    align-items: end;
    text-align: end;
}
.creature-container{
        display: grid;
    grid-template-areas:
        "a b b c"
        "a b b e"
        "d d d e"
        "f f g i";
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 28px;
    margin: 37px auto;
}
.months > div{
	cursor:pointer;
}
.days > div{
	cursor:pointer;
}
 .search-page{
            margin: 60px 0 120px 0;
        }
        .search-page-header{
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .search-page-title{
            font-size: 34px;
            color: #303A97;
        }
        .search-page-query{
            font-size: 18px;
            color: #A91F21;
        }
        .search-page-query span{
            font-weight: 700;
        }
        .search-page-stats{
            margin-top: 25px;
            font-size: 16px;
        }
        .search-page-stats span{
            font-weight: 700;
        }

        /* ===== Результаты ===== */
        .search-results-list{
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .search-result-card{
            padding: 25px;
            background-color: #ffffff !important;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: all .3s ease;
        }
        .search-result-card:hover{
            box-shadow: 0 10px 25px rgba(0,0,0,.08);
            transform: translateY(-2px);
        }
        .search-result-type{
            width: fit-content;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 14px;
            background-color: #303A97;
            color: #ffffff;
        }
        .search-result-type.news{
            background-color: #A91F21;
        }
        .search-result-title{
            font-size: 22px;
            font-weight: 700;
            color: #303A97;
        }
        .search-result-text{
            font-size: 16px;
            line-height: 22px;
        }
        .search-page-empty{
            margin-top: 80px;
            text-align: center;
            font-size: 22px;
            color: #A0A0A0;
        }

        @media(max-width:768px){
            .search-page-title{font-size:26px}
            .search-result-title{font-size:20px}
            .url-list-content button{
                padding: 30px 40px;
            }
        }
.months-not-events {
    background-color: #f4f4f4;
    border-radius: 10px;
    color: #a0a0a0;
}
.creature-item img{
    border-radius: 15px;
	
    transition: filter 0.4s ease;
}
.creature-item{
    width: 100%;
    height: 100%;
    position: relative;
    color: #ffffff;
    font-size: 25px;
    cursor: pointer;
	
}
.bl{
    align-items: end;
}
.br{
    align-items: end;
    justify-content: end;
    text-align: end;
}
.tl{
    align-items: start;
    justify-content: start;
}
.tr{
    justify-content: end;
}
.footer-map{
    border-radius: 20px;
}
.news-list{   
     margin-top: 33px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 33px;
}
.footer-urls .header-search-input {
    border-bottom: 1px solid #ffffff;
	color:#fff;
}
.news-data{
    margin-top: 10px;
    display: block;
    font-size: 14px;
}
.news{
    margin-top: 100px;
}
.news-photo{
    border-radius: 15px;
    width: 100%;
    height: 279px;
    object-fit: cover;
}
.poster{
    margin-top: 100px;
}
.heading{
    font-size: 40px;
    text-align: center;    
    display: block;
}
.contact-close{
    position: absolute;
    top: 5px;
    right: 7px;    
    cursor: pointer;
}
.contact-wrapper-phone{
    display: flex;
    gap: 0px 12px;
}
.contact-text{
    color: #ffffff;
    font-size: 14px;
}
#months{
    overflow: auto; 
    display: flex;
    justify-content: space-between;   
    margin-top: 30px;
    gap:0px 10px;
}
.element-animation {
    opacity: 0;
    transition: all 0.5s ease-in-out;
    transform: translateY(50px);
}
button:hover{
	background-color:#871113;
	transition: background-color 0.2s ease, filter 0.2s ease;
	color:#fff;
}
.element-animation.element-show {
    transform: translateY(0);
    opacity: 1;
}
#daysContainer{
    overflow: auto;
}
.month{
    padding: 8px 14px;
    border-radius: 10px;
	cursor:pointer;
	font-size:17px;
}
.month.active{
    color: #ffffff;
    background-color: #A91F21;
}
.days{
    display: flex;
    margin-top: 10px;
    gap: 0px 10px;
    justify-content: space-between;
}
input:focus {
  outline: none;
  box-shadow: none;
}
.day{
    padding: 4px 8px;
    border-radius: 10px;
    height: 100%;
	cursor:pointer;
}
.day-not-events{
    background-color: #f4f4f4;
    padding: 4px 8px;
    border-radius: 10px;
    color: #a0a0a0;
	cursor:pointer;
}
.close-info-map{
    position: absolute;
    top: 20px;
    right: 20px;
}
.region-info-title{
    text-align: center;
    display: block;
    font-size: 35px;
}
.region-info-content{
    width: 100%;
    height: 100%;
    overflow: auto;
}








        /* Стили, специфичные только для этого документа */
        .olhov-doc {
            font-family: Verdana, Geneva, sans-serif;
            line-height: 1.4;
            color: #222;
            max-width: 700px;
            margin: 10px;
            padding: 15px;
            background-color: #fefefe;
        }
        
.olhov-doc h1 {
    font-size: 22px;
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 8px;
    /* border-bottom: 1px solid #ccc; */
    color: #444;
}
        .olhov-doc h2 {
            /*
            font-size: 18px;
            margin-top: 20px;
            margin-bottom: 12px;
            color: #666;
            */
        }
        
        .olhov-doc h3 {
            font-size: 16px;
            margin-top: 15px;
            margin-bottom: 8px;
            color: #666;
        }
        
        .olhov-doc .stats-section {
            /*
            margin: 15px 0;
            padding: 10px;
            background-color: #f8f8f8;
            border-left: 3px solid #999;
            */
        }
        
        .olhov-doc .stats-row {
            margin: 6px 0;
        }
        
        .olhov-doc .highlight {
            font-weight: normal;
            color: #333;
        }
        .info-content img{
            max-width: 100%;
        }
        .olhov-doc p{
            margin: 20px 0;
        }
        
        .olhov-doc .event-date {
            font-weight: bold;
            color: #555;
            margin-bottom: 6px;
            font-size: 15px;
        }
        
        .olhov-doc .event-text {
            text-align: left;
            text-indent: 0;
        }
        
        .olhov-doc .summary-section {
            margin-top: 25px;
            padding: 15px;
            background-color: #f5f5f5;
            border-top: 1px solid #ccc;
            border-bottom: 1px solid #ccc;
        }
        
        .olhov-doc .summary-title {
            font-weight: bold;
            font-size: 16px;
            color: #444;
            margin-bottom: 10px;
            text-align: left;
        }
        
        .olhov-doc .summary-text {
            text-align: left;
            line-height: 1.5;
        }
.info-wrapper{
    font-size: 18px;
}
        @media (max-width: 480px) {
            .olhov-doc {
                margin: 0px;
                padding: 0px;
                font-size: 14px;
            }
            
            .olhov-doc h1 {
              /*  font-size: 20px;*/
            }
            
            .olhov-doc h2 {
                font-size: 17px;
            }
            
            .olhov-doc h3 {
                font-size: 15px;
            }
            
            .olhov-doc .event-item,
            .olhov-doc .stats-section,
            .olhov-doc .summary-section {
                padding: 8px;
                margin: 12px 0;
            }
            
            .olhov-doc .event-date {
                font-size: 14px;
            }
        }
    










.region-info-wrapper {
    height: 95%;
    background-color: #fff;
    border-radius: 15px;
    position: relative;
    padding: 35px;
    gap: 15px 0px;
    display: flex;
    flex-direction: column;
}
.region-info-container{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #303a97ba;
    z-index: 100;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    padding: 26px 16px;
    display: none;
    flex-direction: column;
    gap: 13px 0px;
    justify-content: center;
    align-items: center;
}
.day.active{
    color: #ffffff;
    background-color: #A91F21;
}
.day-not-events.active{
    color: #ffffff;
    background-color: #A91F21;

}
.menu-btn-mobile{
    display: none;
}

              .obshaya-container {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            padding: 50px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Заголовок страницы */
        .obshaya-title {
            font-family: 'TDVolshebstvo', sans-serif;
            font-size: 48px;
            color: #A91F21;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            padding-bottom: 20px;
        }

        .obshaya-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 3px;
            background-color: #303A97;
        }

        /* Контейнер кнопок - 2 колонки */
        .obshaya-buttons-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            width: 100%;
            max-width: 900px;
            margin-bottom: 40px;
        }

        /* Кнопка безопасности - комбинированный дизайн */
        .obshaya-button {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 40px 30px;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            min-height: 160px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        /* Внутренняя рамка */
        .obshaya-button::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 15px;
            border: 2px solid #A91F21;
            border-radius: 8px;
            transition: all 0.3s ease;
            z-index: 1;
        }

        /* Номер в углу */
        .obshaya-button::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 50px;
            height: 50px;
            background-color: #A91F21;
            border-radius: 0 0 12px 0;
            font-family: 'Golos Text', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            transition: all 0.3s ease;
        }



        /* Эффект при наведении */
        .obshaya-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(48, 58, 151, 0.15);
        }

        .obshaya-button:hover::before {
            top: 8px;
            left: 8px;
            right: 8px;
            bottom: 8px;
            border-color: #303A97;
            border-width: 3px;
        }

        .obshaya-button:hover::after {
            background-color: #303A97;
            width: 55px;
            height: 55px;
            font-size: 20px;
        }

        /* Текст кнопки */
        .obshaya-button-text {
            font-family: 'Golos Text', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: #303A97;
            line-height: 1.4;
            margin: 0;
            padding: 0 10px;
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .obshaya-button:hover .obshaya-button-text {
            color: #A91F21;
        }

        /* Декоративный элемент */
        .obshaya-decorative {
            margin-top: 40px;
            text-align: center;
            width: 100%;
            max-width: 800px;
        }

        .obshaya-decorative-line {
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, #A91F21 50%, transparent 100%);
            width: 100%;
            margin-bottom: 20px;
        }

        .obshaya-decorative-text {
            font-family: 'Golos Text', sans-serif;
            font-size: 18px;
            color: #303A97;
            font-weight: 500;
            padding: 0 20px;
        }

 
        /* Адаптивность */
        @media (max-width: 768px) {
            .obshaya-container {
                padding: 40px 15px;
            }
            
            .obshaya-title {
                font-size: 36px;
                margin-bottom: 50px;
                padding-bottom: 15px;
            }
            
            .obshaya-title::after {
                width: 150px;
            }
            
            .obshaya-buttons-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                gap: 25px;
            }
            
            .obshaya-button {
                padding: 35px 25px;
                min-height: 140px;
            }
            
  
            
            .obshaya-button-text {
                font-size: 19px;
            }
            
            .obshaya-button::after {
                width: 45px;
                height: 45px;
                font-size: 16px;
            }
            
            .obshaya-button:hover::after {
                width: 48px;
                height: 48px;
            }
            
            .obshaya-decorative-text {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .obshaya-title {
                font-size: 32px;
            }
            
            .obshaya-button{
                padding: 30px 20px;
            }
            
 
            
            .obshaya-button-text {
                font-size: 18px;
            }
            
            .obshaya-button::after {
                width: 40px;
                height: 40px;
                font-size: 15px;
            }
        }
    
   
        /* Контейнер страницы */
        .info-container {
            width: 100%;
            max-width: 1000px;
            margin: 30px auto;
            padding: 0 20px;
        }
  .error-404-container {
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            text-align: center;
        }
        .error-404-number {
            font-size: 100px;
            font-weight: 700;
            color: #A91F21;
            margin: 0;
            line-height: 1;
        }
        .error-404-title {
            font-size: 30px;
            font-weight: 600;
            color: #303A97;
            margin: 20px 0 15px 0;
        }
        .detail-img img{
            width: 100%;
        }
        .error-404-description {
            font-size: 18px;
            color: #170E10;
            max-width: 500px;
            margin: 0 auto 30px;
            line-height: 1.5;
        }
        .error-404-btn {
            background-color: #A91F21;
            color: #ffffff;
            border: none;
            border-radius: 15px;
            padding: 12px 40px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
        }
        .error-404-btn:hover {
            background-color: #303A97;
        }
        @media (max-width: 768px) {
            .error-404-number {
                font-size: 80px;
            }
            .error-404-title {
                font-size: 24px;
            }
            .error-404-description {
                font-size: 16px;
                padding: 0 15px;
            }
            .error-404-btn {
                padding: 12px 30px;
                font-size: 16px;
            }
        }
        /* Заголовок страницы */
        .info-title {
            font-family: 'TDVolshebstvo', sans-serif;
            font-size: 36px;
            color: #c20724;;
            text-align: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid #A91F21;
			display:block;
            width: 100%;
		}
		 .collektivi-container {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            padding: 50px 20px;
        }

        /* Заголовок страницы */
        .collektivi-title {
            font-family: 'TDVolshebstvo', sans-serif;
            font-size: 48px;
            color: #A91F21;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 20px;
			display:block;
        }

      .cnt-container {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Шапка */
        .cnt-header {
            background: linear-gradient(to right, var(--cnt-primary), var(--cnt-secondary));
            color: white;
            padding: 25px 0;
            box-shadow: var(--cnt-shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .cnt-header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cnt-logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .cnt-logo-icon {
            font-size: 2.8rem;
            color: var(--cnt-accent);
        }

        .cnt-logo-text {
            font-family: 'PT Serif', serif;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .cnt-logo-subtitle {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-top: 5px;
        }

        .cnt-nav {
            display: flex;
            gap: 30px;
        }

        .cnt-nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            padding: 8px 0;
            position: relative;
            transition: color 0.3s;
        }

        .cnt-nav-link:hover {
            color: var(--cnt-accent);
        }

        .cnt-nav-link.active {
            color: var(--cnt-accent);
        }

        .cnt-nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--cnt-accent);
        }

        /* Основной контент */
        .cnt-main-title {
            font-family: 'PT Serif', serif;
            font-size: 2.5rem;
            color: var(--cnt-dark);
            text-align: center;
            margin: 40px 0 30px;
            position: relative;
        }

        .cnt-main-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 3px;
            background-color: var(--cnt-secondary);
        }

        /* Новости в один столбец */
        .cnt-news-list {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin-bottom: 60px;
        }

        .cnt-news-item {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--cnt-shadow);
            border: var(--cnt-border);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }

        .cnt-news-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .cnt-news-img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .cnt-news-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .cnt-news-title {
            font-family: 'PT Serif', serif;
            font-size: 1.6rem;
            color: var(--cnt-dark);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .cnt-news-date {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--cnt-secondary);
            font-size: 0.95rem;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .cnt-news-date i {
            color: var(--cnt-secondary);
        }

        .cnt-news-text {
            color: var(--cnt-text);
            margin-bottom: 25px;
            line-height: 1.7;
            font-size: 1.05rem;
            flex-grow: 1;
        }

        .cnt-news-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: var(--cnt-primary);
            text-decoration: none;
            font-weight: 600;
            padding: 12px 25px;
            border: 2px solid var(--cnt-primary);
            border-radius: 30px;
            transition: all 0.3s;
            width: fit-content;
            margin-top: 10px;
        }

        .cnt-news-link:hover {
            background-color: var(--cnt-primary);
            color: white;
            gap: 15px;
        }

        /* Выделенная новость */
        .cnt-featured-news {
            border: 3px solid var(--cnt-accent);
            position: relative;
        }

        .cnt-featured-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--cnt-secondary);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            z-index: 2;
        }

        /* Пагинация */
        .cnt-pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 60px;
        }

        .cnt-page-btn {
            padding: 12px 20px;
            background-color: white;
            border: 2px solid var(--cnt-accent);
            border-radius: 5px;
            color: var(--cnt-dark);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            min-width: 45px;
            text-align: center;
        }

        .cnt-page-btn:hover {
            background-color: var(--cnt-accent);
            color: white;
        }

        .cnt-page-btn.active {
            background-color: var(--cnt-secondary);
            color: white;
            border-color: var(--cnt-secondary);
        }

        /* Подвал */
        .cnt-footer {
            background-color: var(--cnt-dark);
            color: white;
            padding: 50px 0 30px;
            margin-top: 50px;
        }

        .cnt-footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .cnt-footer-section h3 {
            font-family: 'PT Serif', serif;
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--cnt-accent);
        }

        .cnt-footer-links {
            list-style: none;
        }

        .cnt-footer-links li {
            margin-bottom: 12px;
        }

        .cnt-footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }

        .cnt-footer-links a:hover {
            color: var(--cnt-accent);
        }

        .cnt-footer-contact {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .cnt-footer-contact i {
            color: var(--cnt-accent);
        }

        .cnt-copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .cnt-header-content {
                flex-direction: column;
                gap: 20px;
            }
            
            .cnt-nav {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .cnt-main-title {
                font-size: 2rem;
            }
            
            .cnt-news-img {
                height: 250px;
            }
            
            .cnt-news-content {
                padding: 20px;
            }
            
            .cnt-news-title {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 480px) {
            .cnt-container {
                padding: 0 15px;
            }
            
            .cnt-main-title {
                font-size: 1.8rem;
            }
            
            .cnt-news-img {
                height: 200px;
            }
            
            .cnt-news-title {
                font-size: 1.3rem;
            }
            
            .cnt-news-text {
                font-size: 1rem;
            }
            
            .cnt-news-link {
                width: 100%;
                justify-content: center;
            }
        }
    
        .collektivi-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 3px;
            background-color: #303A97;
        }

        /* Сетка карточек - 1 в ряд */
        .collektivi-grid {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-bottom: 40px;
        }

        /* Карточка преподавателя - стиль как кнопки безопасности */
        .collektivi-teacher-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 40px 30px;
            text-decoration: none;
            display: flex;
            gap: 30px;
            align-items: flex-start;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            min-height: 240px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        /* Внутренняя рамка */
        .collektivi-teacher-card::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 15px;
            border: 2px solid #A91F21;
            border-radius: 8px;
            transition: all 0.3s ease;
            z-index: 1;
        }

        /* Эффект при наведении */
        .collektivi-teacher-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(48, 58, 151, 0.15);
        }

        .collektivi-teacher-card:hover::before {
            top: 8px;
            left: 8px;
            right: 8px;
            bottom: 8px;
            border-color: #303A97;
            border-width: 3px;
        }

        /* Фото преподавателя - фиксированный размер */
        .collektivi-teacher-photo-container {
            width: 180px;
            height: 220px;
            flex-shrink: 0;
            position: relative;
            z-index: 2;
        }

        .collektivi-teacher-photo {
            width: 180px;
            height: 220px;
            object-fit: cover;
            border-radius: 8px;
            border: 2px solid #303A97;
            transition: border-color 0.3s ease;
        }

        .collektivi-teacher-card:hover .collektivi-teacher-photo {
            border-color: #A91F21;
        }

        /* Контент карточки */
        .collektivi-teacher-content {
            flex: 1;
            position: relative;
            z-index: 2;
        }

        /* Имя преподавателя */
        .collektivi-teacher-name {
            font-family: 'Golos Text', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: #303A97;
            margin-bottom: 20px;
            padding-bottom: 15px;
            position: relative;
            transition: color 0.3s ease;
			display:block;
        }

        .collektivi-teacher-name::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 2px;
            background-color: #A91F21;
            transition: width 0.3s ease;
        }

        .collektivi-teacher-card:hover .collektivi-teacher-name {
            color: #A91F21;
        }

        .collektivi-teacher-card:hover .collektivi-teacher-name::after {
            width: 100px;
        }

        /* Список кружков - без margin-top */
        .collektivi-circles-list {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }

        .collektivi-circle-item {
            font-size: 18px;
            color: #333333;
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            line-height: 1.5;
        }

        .collektivi-circle-item::before {
            content: "•";
            color: #A91F21;
            font-size: 24px;
            position: absolute;
            left: 0;
            top: -4px;
        }

        /* Декоративный элемент - как в безопасности */
        .collektivi-decorative {
            text-align: center;
            width: 100%;
            max-width: 800px;
        }

        .collektivi-decorative-line {
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, #A91F21 50%, transparent 100%);
            width: 100%;
            margin-bottom: 20px;
        }

        .collektivi-decorative-text {
            font-family: 'Golos Text', sans-serif;
            font-size: 18px;
            color: #303A97;
            font-weight: 500;
            padding: 0 20px;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .collektivi-container {
                padding: 40px 15px;
            }
            
            .collektivi-title {
                font-size: 36px;
                margin-bottom: 40px;
                padding-bottom: 15px;
            }
            
            .collektivi-title::after {
                width: 150px;
            }
            
            .collektivi-grid {
                gap: 25px;
            }
            
            .collektivi-teacher-card {
                flex-direction: column;
                padding: 35px 25px;
                min-height: auto;
                gap: 25px;
                text-align: center;
            }
            
            .collektivi-teacher-photo-container {
                width: 160px;
                height: 200px;
                margin: 0 auto;
            }
            
            .collektivi-teacher-photo {
                width: 160px;
                height: 200px;
            }
            
            .collektivi-teacher-name {
                font-size: 22px;
            }
            
            .collektivi-teacher-name::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .collektivi-circle-item {
                font-size: 17px;
                text-align: left;
            }
            
            .collektivi-decorative-text {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .collektivi-title {
                font-size: 32px;
            }
            
            .collektivi-teacher-card {
                padding: 30px 20px;
                gap: 20px;
            }
            
            .collektivi-teacher-photo-container {
                width: 140px;
                height: 180px;
            }
            
            .collektivi-teacher-photo {
                width: 140px;
                height: 180px;
            }
            
            .collektivi-teacher-name {
                font-size: 20px;
            }
            
            .collektivi-circle-item {
                font-size: 16px;
            }
        }
        /* Блок с контентом */
        .info-content {
			background-color: #ffffff;
			border-radius: 10px;
			padding: 40px;
			box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
			margin: 30px auto;
        }
        .news-content {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 30px;
        }
        #finevision_banner{
            display: none !important;
        }
        /* Параграфы текста */
        .info-text {
            font-size: 20px;
            color: #000000;
            margin-bottom: 25px;
            line-height: 1.7;
            text-align: justify;
        }

        .info-text-bold {
            font-weight: bold;
            text-align: center;
            margin-bottom: 30px;
        }

        /* Изображения */
        .info-image {
            display: block;
            max-width: 650px;
            width: 100%;
            height: auto;
            margin: 25px auto;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        /* Блок с соцсетями */
        .info-share {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            margin-top: 30px;
            border: 1px solid #E8E8E8;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .info-container {
                padding: 0 15px;
                margin: 20px auto;
            }
            
            .info-title {
                font-size: 28px;
            }
            
            .info-content {
                padding: 25px 20px;
            }
            
            .info-text {
                font-size: 18px;
            }
            
            .info-image {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .info-container {
                padding: 0 10px;
            }
            
            .info-content {
                padding: 20px 15px;
            }
            
            .info-title {
                font-size: 24px;
            }
            
            .info-text {
                font-size: 16px;
            }
        }
    
@media (min-width: 768px) and (max-width: 1260px) {
.container{
    padding: 0px 20px;
}
.map-region-container{
    display: none;
}
.footer-map {
    width: 337px;
}
.creature-item-title{
    font-size:100%;
}
.creature-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-form {
    width: 552px;
    border-radius: 20px;
    padding: 40px 0px;
    gap: 20px 0px;
    display: flex;
    flex-direction: column;
}
.footer-container{
    gap: 0px 40px;
}
}
@media (max-width: 767px) {
.container{
    padding: 0px 20px;
}
.region-info-wrapper{
    border-radius: 0px;
    width: auto;
    height: 100%;
    padding: 50px 20px 20px;
}
.region-info-container{
    padding: 0px;
}
.map-region-container{
    display: none;
}
.news-list{
    grid-template-columns: auto;
}
.main-photo img{
	width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: 20%;
}
#eventsContainer{
    overflow: scroll;
}
.map-info-region{
    width: 100%;
}
  .url-list{
    display: flex;
    flex-direction: column;
    gap: 20px 0px;
  }
  .url-item{
      width: 100%;
  }
  .footer-container{
    flex-direction: column-reverse;
    text-align: center;
  }
  .footer-urls {
    align-items: center;
  }
  .footer-info {
    padding: 25px;
  }
  .footer-map-container{
    width: 100%;
    margin-top: 30px;
  }
  .left{
    display: none;
  }
  .right {
    padding: 10px;
 }
 .menu-btn-mobile{
    display: block;
 }
 .header-text{
    font-size: 11px;
 }
 .logo-photo {
    width: 77px;
 }
 #months{       
    gap: 0px 10px;
 }
 .days{
    overflow: scroll;
 }
 .map-info{
    flex-direction: column;
    font-size: 14px;
 }
 .map-container {
    flex-direction: column;
}
.creature-container{
    display: flex;
    flex-direction: column;
}
.creature-item img {
    border-radius: 15px;
    width: 100%;
    height: 457px;
    object-fit: cover;
}
.footer-form-wrapper{
    flex-direction: column;
}
.footer-form{
    width: 100%;
    padding: 0px;
}
.footer {
    padding: 35px 0px 0px 0px;
}
.footer-form-wrapper {
    background-color: #00000000;
}
.footer-form-container-input {
    display: flex;
    gap: 25px 0px;
    flex-direction: column;
}
.footer-police-container {
    gap: 0px 20px;
    flex-direction: column;
}
.footer-form button{
    margin: 0 auto;
}
.footer-container img{
    display: none;
}

.url-list-container .arrow{
    display: none;
}
}
