*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*:before,
*:after{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/* ===== НОВОСТИ И СОБЫТИЯ С ФИЛЬТРОМ ПО ГОРОДАМ ===== */
.news-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff 0%, #fefaf5 100%);
}

.news-header {
    margin-bottom: 40px;
}

.news-title-wrapper {
    max-width: 700px;
}

.news-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #1C2F64;
    margin: 0 0 15px 0;
    letter-spacing: -0.02em;
}

.news-title .highlight {
    color: #FB5607;
}

.news-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Контейнер фильтра */
.news-filters-container {
    background: white;
    border-radius: 60px;
    padding: 8px 20px;
    margin-bottom: 45px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1C2F64;
    padding-right: 15px;
    border-right: 2px solid #eee;
}

/* Фильтры */
.news-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    background: #f0f0f0;
    color: #555;
    cursor: pointer;
}

.filter-btn:hover {
    background: #FB5607;
    color: white;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #FB5607;
    color: white;
    box-shadow: 0 4px 12px rgba(251, 86, 7, 0.3);
}

/* Сетка новостей */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Карточка новости */
.news-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.news-card.hide {
    display: none;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(251, 86, 7, 0.12);
}

.news-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

/* Изображение */
.news-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f0f0f0;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(28, 47, 100, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.news-card:hover .news-overlay {
    opacity: 1;
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(251, 86, 7, 0.95);
    color: white;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(4px);
}

/* Бейдж города */
.news-city-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(28, 47, 100, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(4px);
}

/* Контент карточки */
.news-content {
    padding: 20px;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
}

.news-date svg {
    flex-shrink: 0;
}
/* ===== СТИЛИ ДЛЯ БЛОКА "СПАСИБО" (ТУРИСТИЧЕСКАЯ ТЕМАТИКА) ===== */

.thankyou {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #E8F0F7 0%, #FFFFFF 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    animation: thankyouFadeIn 0.6s ease forwards;
    box-shadow: 0 15px 35px rgba(28, 47, 100, 0.15);
    border: 1px solid rgba(251, 86, 7, 0.2);
}

/* Иконка-путешественник */
.thankyou::before {
    content: "✈️";
    position: absolute;
    font-size: 120px;
    opacity: 0.08;
    bottom: -20px;
    right: -20px;
    transform: rotate(-15deg);
    pointer-events: none;
}

.thankyou::after {
    content: "🗺️";
    position: absolute;
    font-size: 100px;
    opacity: 0.08;
    top: -20px;
    left: -20px;
    transform: rotate(10deg);
    pointer-events: none;
}

/* Основной текст благодарности */
.thankyou > div:first-child {
    font-size: 64px;
    margin-bottom: 20px;
    animation: thankyouBounce 0.8s ease;
    display: inline-block;
}

/* Заголовок "Спасибо!" */
.thankyou > div:nth-child(2) {
    font-size: 32px;
    font-weight: 800;
    color: #1C2F64;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FB5607, #DE6100);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: thankyouSlideUp 0.5s ease 0.2s both;
}

/* Текст "Мы свяжемся с Вами..." */
.thankyou > div:last-child {
    font-size: 18px;
    color: #4A5568;
    line-height: 1.5;
    animation: thankyouSlideUp 0.5s ease 0.4s both;
}

/* Декоративные элементы */
.thankyou .travel-icon {
    display: inline-block;
    margin: 0 5px;
    animation: thankyouFloat 2s ease-in-out infinite;
}

/* Анимации */
@keyframes thankyouFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes thankyouBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes thankyouSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes thankyouFloat {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Эффект волн (как море/озеро) */
.thankyou .waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23FB5607' fill-opacity='0.1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x bottom;
    background-size: 200px;
    animation: thankyouWave 3s linear infinite;
    pointer-events: none;
}

@keyframes thankyouWave {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 200px;
    }
}

/* Конфетти-частицы */
.thankyou .confetti {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #FB5607;
    border-radius: 2px;
    opacity: 0;
    animation: thankyouConfetti 1.5s ease-out forwards;
}

@keyframes thankyouConfetti {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(360deg);
    }
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    .thankyou {
        padding: 35px 20px;
    }
    
    .thankyou > div:first-child {
        font-size: 48px;
    }
    
    .thankyou > div:nth-child(2) {
        font-size: 26px;
    }
    
    .thankyou > div:last-child {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .thankyou {
        padding: 25px 15px;
    }
    
    .thankyou > div:first-child {
        font-size: 40px;
    }
    
    .thankyou > div:nth-child(2) {
        font-size: 22px;
    }
    
    .thankyou > div:last-child {
        font-size: 14px;
    }
}
.news-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1C2F64;
    margin: 0 0 12px 0;
    line-height: 1.4;
    transition: color 0.3s;
}

.news-card:hover .news-card-title {
    color: #FB5607;
}

.news-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #FB5607;
    transition: gap 0.3s;
}

.news-read-more svg {
    transition: transform 0.2s;
}

.news-card:hover .news-read-more svg {
    transform: translateX(4px);
}

/* Кнопка "Посмотреть все" */
.news-footer {
    text-align: center;
}

.news-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid #FB5607;
    color: #FB5607;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.news-all-btn:hover {
    background: #FB5607;
    color: white;
    transform: translateX(5px);
}

.news-all-btn svg {
    transition: transform 0.2s;
}

.news-all-btn:hover svg {
    transform: translateX(4px);
}

/* Сообщение "Новостей нет" */
.no-news-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 24px;
    color: #1C2F64;
}

.no-news-message h4 {
    margin: 15px 0 10px;
    font-size: 20px;
    font-weight: 600;
}

.no-news-message p {
    color: #666;
    font-size: 14px;
}

/* Анимация появления */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card:not(.hide) {
    animation: fadeIn 0.5s ease forwards;
}

/* Адаптив */
@media (max-width: 992px) {
    .news-filters-container {
        border-radius: 24px;
        padding: 15px 20px;
    }
    
    .filter-label {
        border-right: none;
        border-bottom: 2px solid #eee;
        padding-bottom: 8px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 40px 0;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .filter-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .news-title {
        font-size: 28px;
    }
    
    .news-card-title {
        font-size: 16px;
    }
}
  /* Слайдер секция */
        .hero-slider-section {
            width: 100%;
            position: relative;
            background: #0a1a2a;
            margin-bottom: 3rem;
            overflow: hidden;
        }

        /* Стили slick слайдера */
        .hero-slider {
            margin: 0;
            padding: 0;
        }

        .hero-slider .slick-list {
            overflow: hidden;
        }

        /* Каждый слайд */
        .hero-slide {
            position: relative;
            min-height: 85vh;
            max-height: 90vh;
            display: flex !important;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            outline: none;
        }

        /* Оверлей */
        .hero-slide::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.55) 100%);
            z-index: 1;
        }

        /* Контент внутри слайда */
        .slide-content-new {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            width: 90%;
            margin: 0 auto;
            padding: 2rem;
            color: white;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .slide-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(251, 86, 7, 0.9);
            backdrop-filter: blur(6px);
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .badge-icon {
            width: 16px;
            height: 16px;
            fill: white;
        }

        .slide-title {
            font-size: clamp(2rem, 7vw, 4.8rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .slide-highlight {
            background: linear-gradient(120deg, #FB5607, #FF8C42);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            display: inline-block;
        }

        .slide-desc {
            font-size: clamp(1rem, 4vw, 1.35rem);
            font-weight: 500;
            max-width: 650px;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .slide-offer {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(8px);
           padding:1rem 1.2rem;
  border-radius: 100px;
  font-weight: 500;
  margin-right: 20px;
        }

        .offer-icon {
            width: 20px;
            height: 20px;
            fill: #FB5607;
        }

        .btn-modern {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #FB5607;
            border: none;
            padding: 0.9rem 2.2rem;
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            border-radius: 60px;
            cursor: pointer;
            transition: all 0.25s ease;
            box-shadow: 0 10px 20px -5px rgba(251,86,7,0.3);
        }

        .btn-modern:hover {
            background: #e04e06;
            transform: translateY(-3px);
            box-shadow: 0 20px 25px -8px rgba(0,0,0,0.2);
        }

        .btn-icon {
            width: 20px;
            height: 20px;
            fill: white;
            transition: transform 0.2s;
        }

        .btn-modern:hover .btn-icon {
            transform: translateX(4px);
        }

        /* Кастомные стрелки как в предыдущей версии */
        .custom-arrows {
            position: absolute;
            bottom: 5%;
            right: 5%;
            z-index: 20;
            display: flex;
            gap: 1rem;
        }

        .custom-prev,
        .custom-next {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(12px);
            border: none;
            width: 52px;
            height: 52px;
            border-radius: 60px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            color: white;
            font-size: 28px;
            font-weight: 300;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .custom-prev:hover,
        .custom-next:hover {
            background: #FB5607;
            transform: scale(1.05);
            border-color: transparent;
        }

        /* Кастомная пагинация — ПОЛОСКИ как в предыдущей версии */
        .custom-pagination {
            position: absolute;
            bottom: 5%;
            left: 5%;
            z-index: 20;
            display: flex;
            gap: 10px;
        }

        .pagination-dot {
            width: 44px;
            height: 4px;
            background: rgba(255,255,255,0.4);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .pagination-dot.active {
            background: #FB5607;
            width: 70px;
            box-shadow: 0 0 6px #FB5607;
        }

        /* Адаптив */
        @media (max-width: 768px) {
            .hero-slide {
                min-height: 70vh;
            }
            .slide-offer {
				margin-bottom: 30px !important; }
            .custom-prev,
            .custom-next {
                width: 42px;
                height: 42px;
                font-size: 22px;
            }
            
            .custom-arrows {
                bottom: 3%;
                right: 4%;
                gap: 0.7rem;
            }
            
            .custom-pagination {
                left: 4%;
                bottom: 3%;
            }
            
            .pagination-dot {
                width: 28px;
            }
            
            .pagination-dot.active {
                width: 48px;
            }
            
            .slide-content-new {
                padding: 1.2rem;
            }
            
            .btn-modern {
                padding: 0.7rem 1.6rem;
                font-size: 0.95rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero-slide {
                min-height: 65vh;
            }
            
            .custom-prev,
            .custom-next {
                width: 38px;
                height: 38px;
                font-size: 18px;
            }
        }

        /* Шапка */
        .demo-header {
            background: white;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            border-bottom: 1px solid #eee;
        }
        
        .logo-demo {
            font-weight: 800;
            font-size: 1.6rem;
            color: #FB5607;
        }
        
        .nav-demo a {
            margin-left: 2rem;
            text-decoration: none;
            color: #222;
            font-weight: 500;
        }
        
        @media (max-width: 680px) {
            .demo-header {
                flex-direction: column;
                gap: 1rem;
            }
            .nav-demo a {
                margin: 0 1rem;
            }
        }
       
        
        /* Скрываем стандартные стрелки и точки Slick */
        .hero-slider .slick-prev,
        .hero-slider .slick-next,
        .hero-slider .slick-dots {
            display: none !important;
        }



.modal-title-f {
font-weight: 700;margin-bottom:30px;
font-size: 28px;text-align:center;
color:#1C2F64;    
    text-transform: uppercase;
}
.zakaz-ff {background:#DE6100;
font-size: 16px;text-align: center;
font-weight: 600;display:block;
padding:12px 0px 12px 0px;width:100%;border:0;
color:#fff;-webkit-border-radius: 10px;-moz-border-radius: 10px;border-radius: 10px;
}
.zakaz-ff:hover {background:#e05d00;text-decoration:none;color:#fff;}
.zakaz-ff:focus {color:#fff;text-decoration:none;}



  /* ===== НОВЫЙ БЛОК "ТОП МЕСТ РОССИИ" - СОВРЕМЕННЫЕ КАРТОЧКИ ===== */
        .top-places-section {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #fff 0%, #fef7f0 100%);
        }

        .places-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .places-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .places-header h2 {
            font-size: clamp(1.8rem, 5vw, 2.8rem);
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .places-header .subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .places-header .highlight {
            color: #FB5607;
        }

      /* ===== СТИЛИ ДЛЯ СТРАНИЦЫ "НАПРАВЛЕНИЯ" ===== */
.section-content-city {
    margin: 50px 0 70px;
}

.text-content-about {
    margin-top: 0;
}

/* Сетка карточек */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* КАРТОЧКА - ОСНОВНЫЕ СТИЛИ */
.place-card-modern {
    position: relative;
    display: block;
    border-radius: 24px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    text-decoration: none;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.place-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
}

/* Обертка для изображения */
.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.place-card-modern:hover .card-image {
    transform: scale(1.08);
}

/* Затемнение поверх изображения */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    opacity: 0.8;
    transition: opacity 0.3s;
    z-index: 1;
}

.place-card-modern:hover .card-overlay {
    opacity: 0.95;
}

/* КОНТЕНТ ВНИЗУ КАРТОЧКИ (всегда виден) */
.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
    z-index: 5;
}

.place-name-modern {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    line-height: 1.2;
}

.place-badge {
    display: inline-block;
    background: rgba(251, 86, 7, 0.9);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ===== HOVER-БЛОК (ПОЯВЛЯЕТСЯ ПРИ НАВЕДЕНИИ) ===== */
.card-hover-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(251, 86, 7, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    text-align: center;
    color: white;
    z-index: 10;
    border-radius: 24px;
}

/* Появляется при наведении */
.place-card-modern:hover .card-hover-info {
    opacity: 1;
    visibility: visible;
}

.hover-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hover-desc {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.hover-link {
    display: inline-block;
    background: white;
    color: #FB5607;
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s;
}

.hover-link:hover {
    transform: scale(1.05);
    background: #1a1a2e;
    color: white;
}

/* Адаптив для карточек */
@media (max-width: 768px) {
    .places-grid {
        gap: 20px;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .place-name-modern {
        font-size: 20px;
    }
    
    .hover-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .places-grid {
        gap: 15px;
    }
}

 /* Кнопка "Смотреть все" */
        .view-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: transparent;
            border: 2px solid #FB5607;
            color: #FB5607;
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 60px;
            cursor: pointer;
            transition: all 0.3s;
            margin: 0 auto;
            text-decoration: none;
        }

        .view-all-btn:hover {
            background: #FB5607;
            color: white;
            transform: translateX(5px);
        }
  /* Дополнительные стили для страницы "О проекте" */

.about-caption {
    font-style: italic;
    color: #1C2F64;
    text-align: center;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding: 10px 20px;
    display: inline-block;
}

.about-caption::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #FB5607, transparent);
    transform: translateY(-50%);
}

.about-caption::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(270deg, #FB5607, transparent);
    transform: translateY(-50%);
}

.about-caption span {
    background: linear-gradient(135deg, #1C2F64 0%, #1766A7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 10px;
}

/* Альтернативный вариант с фоном */
.caption-variant {
    background: linear-gradient(135deg, #E8F0F7 0%, #ffffff 100%);
    border: 2px solid #FB5607;
    border-radius: 25px;
    padding: 12px 30px;
    box-shadow: 0 4px 15px rgba(251, 86, 7, 0.1);
}

.caption-variant::before,
.caption-variant::after {
    display: none;
}

/* Еще один вариант с иконками */
.caption-with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.caption-with-icon svg {
    width: 20px;
    height: 20px;
    fill: #FB5607;
}

/* Анимация при наведении */
.about-caption:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.about-caption:hover::before,
.about-caption:hover::after {
    width: 40px;
    transition: all 0.3s ease;
}
        .about-project-hero {
            position: relative;
            min-height:100px;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 40px;
            background: linear-gradient(135deg, #FB5607 0%, #FFF 100%);;
        }
        
        .about-project-hero::before {
            content: "";
            display: block;
            width: 100%;
            height: 100%;
            position: absolute;
            bottom: 0;
            border-radius: 12px;
            left: 0;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23FB5607' fill-opacity='0.1' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
            background-size: 100% auto;
        }
        
        .about-project-hero h1 {
            color: #fff;
            font-weight: 800;
            font-size: 48px;
            padding: 8px 12px;
            display: table;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 50;
            margin: 0;
            text-align: center;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .about-content {
            margin: 50px 0;
        }
        
        .about-section {
            margin-bottom: 60px;
            position: relative;
        }
        
        .about-section h2 {
            color: #1C2F64;
            font-weight: 800;
            font-size: 36px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .about-section h2:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: #FB5607;
            border-radius: 2px;
        }
        
        .about-section h2 svg {
            margin-right: 15px;
            width: 36px;
            height: 36px;
            fill: #FB5607;
        }
        
        .about-section p {
            color: #1C2F64;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin: 40px 0;
        }
        
        .feature-item {
            background: #E8F0F7;
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border-left: 4px solid #FB5607;
        }
        
        .feature-item::before {
            content: "";
            position: absolute;
            top: -20px;
            right: -20px;
            width: 60px;
            height: 60px;
            background: rgba(251, 86, 7, 0.1);
            border-radius: 50%;
            transition: all 0.5s ease;
        }
        
        .feature-item:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 30px rgba(28, 47, 100, 0.15);
        }
        
        .feature-item:hover::before {
            transform: scale(1.5);
            opacity: 0;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: #fff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            box-shadow: 0 4px 10px rgba(28, 47, 100, 0.1);
        }
        
        .feature-icon svg {
            width: 28px;
            height: 28px;
            fill: #FB5607;
        }
        
        .feature-item h3 {
            color: #1C2F64;
            font-weight: 700;
            font-size: 20px;
            margin-top: 0;
            margin-bottom: 15px;
        }
        
        .feature-item p {
            color: #1C2F64;
            font-size: 16px;
            margin: 0;
        }
        
        .about-image {
            border-radius: 12px;
            overflow: hidden;
            margin: 30px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .about-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-image::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40%;
            background: linear-gradient(to top, rgba(28, 47, 100, 0.7), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .about-image:hover::after {
            opacity: 1;
        }
        
        .about-caption {
            font-style: italic;
            color: #666;
            text-align: center;
            margin-top: 10px;
            font-size: 14px;
        }
        
        .about-list {
            padding-left: 20px;
            margin: 20px 0;
        }
        
        .about-list li {
            color: #1C2F64;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 10px;
            position: relative;
            display: flex;
            align-items: flex-start;
        }
        
        .about-list li:before {
            content: "";
            background: #FB5607;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 12px;
            margin-top: 10px;
            flex-shrink: 0;
        }
        
        .mission-statement {
            background: linear-gradient(135deg, #1C2F64 0%, #1766A7 100%);
            border-radius: 12px;
            padding: 40px;
            text-align: center;
            margin: 50px 0;
            position: relative;
            overflow: hidden;
            color: #fff;
        }
        
        .mission-statement::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
            background-size: 100% auto;
            animation: wave 10s linear infinite;
        }
        
        @keyframes wave {
            0% { transform: translateX(0) translateY(0); }
            50% { transform: translateX(-25%) translateY(-10%); }
            100% { transform: translateX(-50%) translateY(0); }
        }
        
        .mission-statement p {
            font-size: 24px;
            font-weight: 600;
            color: #fff;
            margin: 0;
            font-style: italic;
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .travel-decoration {
            position: absolute;
            opacity: 0.1;
            z-index: 0;
        }
        
        .decoration-1 {
            top: 20px;
            right: 5%;
            width: 80px;
            height: 80px;
        }
        
        .decoration-2 {
            bottom: 20px;
            left: 5%;
            width: 60px;
            height: 60px;
        }
        
        @media (max-width: 992px) {
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .about-project-hero h1 {
                font-size: 36px;
            }
            
            .about-section h2 {
                font-size: 28px;
            }
        }
        
        @media (max-width: 768px) {
            .about-project-hero h1 {
                font-size: 28px;
                width: 90%;
            }
            
            .mission-statement {
                padding: 25px;
            }
            
            .mission-statement p {
                font-size: 20px;
            }
            
            .about-section h2 {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .about-section h2 svg {
                margin-bottom: 10px;
            }
        }
/* Стили для кастомного чекбокса */




.custom-checkbox input.error + .checkbox {
  background: red;
  border: 2px solid red;
}
.title-city-left ul {padding:0px;}
.title-city-left ul li a {color:rgba(28, 47, 100, 1);}
.title-city-left ul li {
font-weight: 600;list-style:none;margin-bottom:20px;
font-size: 18px;color:rgba(28, 47, 100, 1);
}
.title-city-left ul li a ul {margin-top:20px;}
.title-city-left ul li ul {margin-top:20px !important;}
.title-city-left ul li ul li{
font-weight: 400;margin-bottom:0px;
font-size: 16px;
}
.title-city-left ul li {
font-weight: 600;
font-size: 18px;color:rgba(28, 47, 100, 1);
}
.custom-checkbox {
  position: relative;
margin-top:20px;
  cursor: pointer;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(69, 53, 47, 1);
  padding-left: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.formss-grid {margin-bottom:20px;display:table;}
.error input[placeholder]          {-o-text-overflow:ellipsis;text-overflow:ellipsis; font-style:italic; color:#ff0048 !important}
.error::-webkit-input-placeholder {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important}
.error::-moz-placeholder     {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important} 
.error:-moz-placeholder      {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important} 
.error:-ms-input-placeholder {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important}
.custom-checkbox:hover {
  color: rgba(29, 26, 25, 1);
}

.hidden-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox {
  position: absolute;
  top: -5px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: white;
  border: 2px solid rgba(255, 81, 0, 1);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.map.footer{width: 100%;height: 560px;margin-top:40px;position: relative;margin-bottom:20px;}
.map.footer .container{	position: relative;}
.map.footer .contacts{	background: #fff;	color: #000;
  	height: 380px;width:390px;	font-size: 15px;padding:30px 40px 40px 30px;	position: absolute;	top: 40px;	right: 55px;	left: 55px;
    	z-index: 100;	 -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;}

.yandex-map {  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;margin-bottom:40px;margin-top:40px;
  border-radius: 24px;overflow: hidden;}
.map.footer .contacts span{	text-transform: uppercase;	font-size: 13px;}
.map.footer .contacts .item{	display: inline-block;	line-height: 102px;padding: 0 50px;	position: relative;}
.map.footer .contacts .item + .item:before{	content: '';	background: #5c5c5c;	width: 1px;	height: 35px;	position: absolute;	top: 50%;	left: 0;	transform: translateY(-50%);}
.map.footer .contacts .item > a{	display: inline-block;	line-height: 1.4;	vertical-align: middle;}
.map.footer .contacts .icon{	background-repeat: no-repeat;	background-position: left center;	text-decoration: none;}
.custom-checkbox:hover .checkbox {
  border-color: rgba(225, 51, 0, 1);
}

.checkmark {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 20px;
  height: 20px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
  background-color: rgba(255, 81, 0, 1);
  border-radius: 2px;
}

.hidden-checkbox:checked ~ .checkbox {
  background-color: rgba(255, 81, 0, 1);
  border-color: rgba(255, 81, 0, 1);
}

.hidden-checkbox:checked ~ .checkbox .checkmark {
  opacity: 1;
  transform: scale(1);
}

.custom-checkbox a {
  color: rgba(255, 81, 0, 1);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.custom-checkbox a:hover {
  color: rgba(225, 51, 0, 1);
  text-decoration: none;
}

/* Стиль для неактивного состояния */
.custom-checkbox.error .checkbox {
  border-color: #ff0048;
}

.custom-checkbox.error {
  color: #ff0048;
}
.buttom-all2 {display: table;
background: rgba(23, 102, 167, 1);
border: 1px solid rgba(23, 102, 167, 1);
font-weight: 600;margin-top: 40px;
font-size: 16px;
padding:16px 40px;
    -webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px; 
    color:#fff;text-decoration: none;
}

.buttom-all2:hover {background:rgba(28, 47, 100, 1);}


.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 30px;
}
.buttom-flex {
  display: flex;
  justify-content: flex-end;
}
.buttom-all-l {
  display: block;
  margin-left: auto;
  margin-right: 0;
  margin-top: 40px;
  background: rgba(23, 102, 167, 1);
  border: 1px solid rgba(23, 102, 167, 1);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 40px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  width: fit-content; /* чтобы кнопка занимала только необходимую ширину */
}
.place-card img {
	  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}
.text-content-about {margin-top:60px;}
.text-content-about h2 {margin-top:0px;}
.section-content-city {margin-top:50px;margin-bottom:50px;}
.title-city-left{color:rgba(28, 47, 100, 1);
font-weight: 600;
font-size: 18px;
}
.main-fotos-p h1{
color:#fff;
font-weight: 800;margin-top:0px;margin-bottom:0px;
font-size: 60px;
padding:8px 12px;
display: table;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 50;
}

.places-list-news-in {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 30px;
}
.main-fotos-p {height: 200px;}
.main-fotos-p::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
  left: 0;  transition: all 0.3s ease;
background:rgba(28, 47, 100, 0.59);
}
.main-fotos-p {position:relative;}
.main-fotos-p img{-webkit-border-radius: 12px;
  -moz-border-radius: 12px;object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 12px;}
.breadcrumb {
  background-color:transparent;
padding:20px 0px 40px 0px;
  margin:0
}
.breadcrumb > li a {color:rgba(28, 47, 100, 1);}
.breadcrumb > li {
  position:relative;
  display:inline;color:rgba(28, 47, 100, 1);
}
.breadcrumb > li:first-child {
  padding:0 10px 0 0
}
.breadcrumb > li {
  padding:0 10px;
  font-weight: 700;
  font-size: 28px;
}
.breadcrumb > li + li::before {
  color:rgba(110,110,110,.6);
  position:absolute;
  content:"/ ";
  top:0;
  left:-4px;
  padding:0;
  display:inline-block
}
.form-supject {
  opacity: 0;
  display: none;
  pointer-events: none;
}
.breadcrumb > li {
  font-size:14px;
  font-weight:400
}
.breadcrumb > li a {
  color:rgba(28, 47, 100, 1);
  text-decoration:underline
}
.breadcrumb > li a:hover,
.breadcrumb > li a:focus {
  text-decoration:none
}
.input-c:focus {outline:none;}
.input-c {
height:56px;color:rgba(71, 81, 100, 1);
font-family: "Inter Tight", serif;
font-weight: 400;
font-size: 18px;
width:100%;
background:#fff;padding-left:20px;margin-bottom:12px;
border: 2px solid rgba(10, 42, 106, 0.1);
-webkit-border-radius: 12px;-moz-border-radius: 12px;border-radius: 12px;
}


img {
  max-width: 100%;
  height: auto;
}

html, body {
  overflow-x: hidden !important;
}
body {
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
    margin: 0;
font-family: "Manrope", sans-serif;
}
.left-email-f{text-align:left !important;}
.bg-corporate {background:url(../i/corp-bg.webp) no-repeat;width:100%;background-size:cover;padding:40px 0px 40px 0px;}
.services {
	flex-wrap: inherit !important;
	margin-bottom:25px;
}

.grid-city-inside {
  display: grid;
  grid-template-columns:280px 1fr;
  gap: 15px;
	
}
.place-card a {display:block;width:100%;height:100%;color:#1C2F64;text-decoration:none;}
.bg-link-corp {background: rgba(255, 255, 255, 0.7);
-webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
	padding:20px 40px;
}
.desc-corpp {
font-weight: 300;
font-size: 20px;max-width: 600px;
  line-height: 1.1em;
color:rgba(253, 253, 255, 1);
}
.gplaces-corppp {
  display: grid;
  grid-template-columns:1fr 1fr;
  gap: 15px;
}
.corptgriid {display: grid;
  grid-template-columns:1fr 1fr;
  gap: 15px;}
.h2-corpp {
font-weight: 800;max-width: 600px;
  line-height: 1.1em;
font-size: 48px;margin-bottom:40px;
color:#fff;}
.title-corrp {
font-weight: 800;
font-size: 24px;
color:rgba(28, 47, 100, 1);
}
.corp-send {background:rgba(234, 115, 23, 1);color:#fff;
font-weight: 700;
padding:20px 30px;float: right;
  margin-top: 30px;-webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
font-size: 16px;
}
.desc-corpp2 {
font-weight: 400;
font-size: 16px;
color:rgba(28, 47, 100, 1);
}
.search-g{padding-top:20px;margin-bottom:30px;text-align:center;}
.small_search .form-group{display:block;position:relative;margin-top:20px;}
.small_search input{background-color:rgba(255,255,255,1);display:block;width:100%;height:auto;min-height:3em;line-height:2em;padding:.3em 1em .3em 3em;font-size:1em;text-decoration:none;border:#DE6100 solid 1px;border-radius:12px;position:relative;}
.small_search input:focus{border:rgba(0,0,0,1) solid 1px;box-shadow:none}
.small_search button{position:absolute;display:block;height:calc(100% - 1em);width:2em;top:0.5em;left:1.1em;background:url(../i/search.png) no-repeat 50% 50% !important;border:0px;}


 .slider-container {
            position: relative;
            max-width: 1280px;
            margin: 0 auto;margin-top:50px;
            overflow: hidden;
        }
        
        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
.slider-t1 {
font-weight: 600;
color:#fff;
font-size: 48px;
text-align: center;
}

.slider-t2 {
font-weight: 800;
font-size: 60px;
color:#fff;
text-align: center;
}
.buttom-slider {margin-top:40px;}
.slider-t3 {
font-weight: 400;
font-size: 24px;
color:#fff;margin-top:50px;
text-align: center;
}
        .slide {
            min-width: 100%; -webkit-border-radius: 40px;
-moz-border-radius: 40px;
border-radius: 40px;
            position: relative;
        }
        
        .slide img {
            width: 100%;max-height:500px;
            display: block; -webkit-border-radius: 40px;
-moz-border-radius: 40px;
border-radius: 40px;
        }


.slide::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; -webkit-border-radius: 40px;
-moz-border-radius: 40px;
border-radius: 40px;
    left: 0;
    background: rgba(28, 47, 100, 0.59);
    transition: all 0.5s ease;
    border-radius: 40px;
}
        
        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            padding: 20px;
            border-radius: 10px;
            max-width: 80%;z-index:100;
        }
        
        .slide-content h2 {
            font-size: 2rem;
            margin-bottom: 10px;
        }
        
        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        .slide-content ul {
            list-style-type: none;
            margin-bottom: 15px;
        }
        
        .slide-content li {
            margin-bottom: 5px;
        }
        
        .btn {
            background-color: #ff6b00;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #e05d00;
        }
        
        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            z-index: 10;
        }
        
        .slider-nav button {
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.5rem;
            color: #333;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 15px;
        }
        
        .slider-nav button:hover {
            background-color: rgba(255, 255, 255, 0.8);
        }
        
        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .slider-dots button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: none;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .slider-dots button.active {
            background-color: white;
        }
        
        @media (max-width: 768px) {
            .slide-content h2 {
                font-size: 1.5rem;
            }
            
            .slide-content p {
                font-size: 1rem;
            }
            
            .slide-content {
                padding: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .slide-content h2 {
                font-size: 1.2rem;
            }
            
            .slide-content p, .slide-content li {
                font-size: 0.9rem;
            }
            
            .btn {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
            
            .slider-nav button {
                width: 30px;
                height: 30px;
                font-size: 1.2rem;
                margin: 0 10px;
            }
        }



header {padding:20px 0px 20px 0px;box-shadow: 0px 0px 15px 0px rgba(251, 86, 7, 0.05);
}
.header-grid {
	
	display: grid;
  grid-template-columns: 250px 1fr;
  gap: 15px;
           
        }
.email-block svg {margin-bottom:-4px;}

.email-block{
font-weight: 500;
font-size: 16px;
}

.phone-block {font-weight: 500;
font-size: 16px;}
.phone-block svg {margin-bottom:-4px;}
.phone-block a{color:rgba(28, 47, 100, 1);text-decoration:none;}

.email-block a{color:rgba(28, 47, 100, 1);text-decoration:none;}
.header-in0 {display: grid;
  grid-template-columns:1fr 180px;
  gap: 15px;}
.content-header-in {
 display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;

            gap: 15px;
	
}
        .logo-city {
            display: flex;
            align-items: center;
            gap: 15px;
            flex: 2 1 200px; /* Больше места для логотипа */
            min-width: 250px;
        }
         .social-icons {
            display: flex;
            gap: 20px;
            padding: 0px 20px 0px 20px;
        }
        .social-icon {
            width: 24px;
            height: 24px;
            transition: fill 0.3s ease;
            fill:rgba(251, 86, 7, 1);
        }
        
        .social-icon:hover {
            fill: #4285F4; /* Можно изменить на любой другой цвет */
        }
        .logo-city img {
            max-height: 50px;
            width: auto;
        }
        
        .h3-footer-logo {
            font-weight: bold;
            font-size: 18px;
        }
        
        .city-button {
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 5px 0;
            font-size: 14px;
        }
 .city-button2 {
            background: none;
            border: none;
            color: rgba(10, 21, 29, 1);
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            padding: 0;
        }
        
        .city-button2 svg {
            margin-left: 5px;
            width: 16px;
            height: 16px;
            fill: rgba(23, 102, 167, 1);
        }
.header-logo {
  font-weight: 600;
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 5px;
  color:rgba(0, 0, 0, 1);
}
.header-logo a{color:rgba(0, 0, 0, 1); text-decoration:none;}
.address-block {
font-weight: 700;
font-size: 16px;display: flex;
    
color:rgba(28, 47, 100, 1);
}

   .menu-container {

  
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }
        
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 24px;
        }
        
        .nav-list {
            display: flex;
            list-style: none;
            transition: all 0.3s ease;
       padding:0px;margin: 0px;
   
        }
        
        .nav-item {
            position: relative;

        }
        
        .nav-link {
  
font-weight: 500;
font-size: 15px;
color:rgba(28, 47, 100, 1);

            text-decoration: none;
            padding: 10px 15px;
            display: block;
            transition: all 0.3s ease;
            border-radius: 4px;
        }
        
        .nav-link:hover {
            background: rgba(255, 255, 255, 0.2);
			color:#ff6b00;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            list-style: none;
            width: 200px;
            border-radius: 4px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-item {
            padding: 0;
        }
        
        .dropdown-link {
            color: #333;
            padding: 10px 15px;
            display: block;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        
        .dropdown-link:hover {
            background: #f5f5f5;
            color: #2989d8;
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-list {
                display: none;
                width: 100%;
                flex-direction: column;
                margin-top: 20px;
            }
            
            .nav-list.active {
                display: flex;
            }
            
            .nav-item {
                margin: 5px 0;
            }
            
            .dropdown-menu {
                position: static;
                width: 100%;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
                background: rgba(255, 255, 255, 0.1);
                box-shadow: none;
                margin-top: 5px;
                padding-left: 15px;
            }
            
            .nav-item:hover .dropdown-menu {
                transform: none;
            }
            
            .dropdown-link {
                color: white;
            }
            
            .dropdown-link:hover {
                background: rgba(255, 255, 255, 0.2);
                color: white;
            }
        }
        .city-button svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }
.phone-block {font-weight: 700;
font-size: 20px;text-decoration: none;
color:rgba(28, 47, 100, 1);
}
.email-block {
font-weight: 600;
font-size: 20px;
color:rgba(28, 47, 100, 1);
}
        .header-block {
            flex: 1 1 150px; /* Равномерное распределение остальных блоков */
            text-align: center;
            padding: 5px 10px;
            white-space: nowrap;
            font-size: 14px;
        }
        
        .soc-header {
            flex: 0 0 50px; /* Фиксированная ширина для соц. иконок */
            text-align: center;
        }
        
        .callback-block {
background: #DE6100;
            color: white;
            border-radius: 4px;
            cursor: pointer;
text-decoration: none;
font-weight: 700;

font-size: 16px;


            padding: 12px 24px;
            transition: background 0.3s;
        }



        
        .callback-block:hover {
            background: #e55c00;
        }
        
        @media (max-width: 1024px) {
            .header-grid {
                gap: 10px;
            }
            
            .logo-city {
                flex: 1 1 100%;
                justify-content: center;
                margin-bottom: 10px;
            }
            
            .header-block, .soc-header {
                flex: 1 1 calc(25% - 10px);
                font-size: 13px;
            }
        }
        
        @media (max-width: 768px) {
            .header-block, .soc-header {
                flex: 1 1 calc(50% - 10px);
                margin-bottom: 10px;
            }
            
            .callback-block {
                order: 1;
            }
        }
        
        @media (max-width: 480px) {
            .header-block, .soc-header {
                flex: 1 1 100%;
                text-align: center;
            }
        }
/* Блок */
.block-inside-t h2 {
    max-width: 700px;display:table;margin:0 auto;
font-weight: 800;
font-size: 60px;
color:#1C2F64;margin-bottom:0px;

}
.block-inside-t {text-align: center;margin-bottom:20px;}
.t2 {
font-weight: 500;
font-size: 32px;
color:#1C2F64;
}
.t3 {margin-top:15px;
font-weight: 300;
font-size: 24px;
color:#1C2F64;
text-align: center;
}
.section-block-blue {background: #E8F0F7;-webkit-border-radius: 40px;
-moz-border-radius: 40px;
border-radius: 40px;margin-top:60px;margin-bottom:60px;padding-bottom:40px;}
.lign-b {align-content: flex-end}
.desc-contt{
font-weight: 300;margin-left:20px;
font-size: 20px;max-width:700px;
color:#1C2F64;
}
.desc-contt2{
font-weight: 300;margin-left:20px;
font-size: 20px;
color:#1C2F64;
}
.grid-contt h2{
font-weight: 800;line-height: 1.1em;
font-size: 48px;margin:0px;
color:#1C2F64;}
 .grid-contt {
            display: grid;
            grid-template-columns:400px 1fr;
            gap: 15px;
            margin-top: 30px;
        }
        .header {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px 0;
            background: linear-gradient(135deg, #1e5799 0%, #207cca 100%);
            color: white;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        /* Список мест */
        .places-list {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            margin-top: 30px;
        }
        
        .place-card {

            transition: transform 0.3s ease, box-shadow 0.3s ease;

        }
        
        .place-card:hover {
            transform: translateY(-5px);

        }
        
        .place-name {
font-weight: 600;
font-size: 24px;
color:#1C2F64;margin-top: 0px;

        }

 .places-list3 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-top: 30px;
        }



/*Блок туров*/
.tour-block {background:#fff;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px; 
}
 .content-row {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 20px;
        }
.buttom-all {display: table;margin:0 auto;
background: rgba(23, 102, 167, 1);
border: 1px solid rgba(23, 102, 167, 1);
font-weight: 600;margin-top: 40px;
font-size: 16px;
padding:16px 40px;
    -webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px; 
    color:#fff;text-decoration: none;
}

.buttom-all:hover {background:rgba(28, 47, 100, 1);}
        .services {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            flex-grow: 1;
        }
        a {
  transition: all 0.5s ease;
}
        .service-item {
border: 1px solid rgba(23, 102, 167, 1);
            padding: 20px 40px;
            border-radius: 12px;text-decoration: none;
font-weight: 500;
font-size: 16px;background: #fff;
text-align: center;
        color:rgba(28, 47, 100, 0.5);
        }
              .service-item:hover {
 background:  rgba(28, 47, 100, 1);
                  color:#fff;
}
.desc-tour {padding:20px 16px;}
.price {
font-weight: 800;
font-size: 24px;margin-bottom: 10px;
color:rgba(10, 21, 29, 1);
}
.addres-tours-m {
font-weight: 600;margin-bottom: 10px;
font-size: 16px;display: flex;
  align-items: center;
color:rgba(28, 47, 100, 1);}
.title-tours-m {
font-weight: 600;
font-size: 18px;
color:rgba(28, 47, 100, 1);
}
.days {display: flex;
font-weight: 500;
font-size: 16px;margin-bottom:10px;
color:rgba(10, 21, 29, 1);
  align-items: center;}
.nights {display: flex;
font-weight: 500;
font-size: 16px;
color:rgba(10, 21, 29, 1);
  align-items: center;}
 .title-row {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 8px;
        }
.tour-title-bl-d {
font-weight: 600;
font-size: 22px;min-height:62px;
color:rgba(28, 47, 100, 1);}
.tour-title-bl-d a{color:rgba(28, 47, 100, 1);text-decoration: none;}
.desc-news {
font-weight: 300;margin-top:15px;
font-size: 14px;
color:rgba(28, 47, 100, 1);}
.date-meta:first-child {color:rgba(28, 47, 100, 1);}
.date-meta {
color:rgba(10, 21, 29, 1);
font-weight: 400;margin-top:15px;
font-size: 12px;
  display: flex;
  gap: 8px;  align-items: center;
}
.date-meta div {  display: flex;
  gap: 8px;  align-items: center;margin-right:10px;}
 .dates-container {
            display: flex;margin-top:20px;
            align-items: center;
            gap: 8px;
        }
        
        .main-date {
            background-color:rgba(28, 47, 100, 0.1);
            color: rgba(10, 21, 29, 1);
            padding: 10px;  display: flex;
            align-items: center;
            border-radius: 4px;
            font-size: 13px;   -webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px; 

font-weight: 600;

font-size: 14px;


            white-space: nowrap;
        }
.img-corp a {position:relative;width:100%;height:100%;display: block;}
.tour-meta {
    position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex; gap: 8px;
}
.tour-type{background:rgba(255, 255, 255, 0.7);backdrop-filter: blur(15px); 
font-weight: 600;
font-size: 14px;-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;padding:7px 15px; 
color:rgba(35, 38, 37, 1);
}
.rating  svg {margin-right:5px;}
.rating {background:rgba(255, 255, 255, 0.7);backdrop-filter: blur(15px); 
font-weight: 600;
font-size: 14px;-webkit-border-radius: 12px;
-moz-border-radius: 12px;  display: flex;   align-items: center;
border-radius: 12px;padding:7px 15px; 
color:rgba(35, 38, 37, 1);
}
        .more-dates {
                    background-color:rgba(28, 47, 100, 0.1);
            color: rgba(10, 21, 29, 1);
            font-size: 14px;
            font-weight: 600;    
            
            -webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px; 
            padding: 10px;
            white-space: nowrap;
        }
.filters:hover path {fill:#fff;}
.filters:hover {color:#fff;background:rgba(28, 47, 100, 1);}
    .filters {
border: 1px solid rgba(23, 102, 167, 1);
            padding: 20px 40px;
        display: flex;
  align-items: center;
  gap: 8px;
            border-radius: 12px;text-decoration: none;
font-weight: 500;
font-size: 16px;background: #fff;
text-align: center;
        color:rgba(28, 47, 100, 0.5);
        }



/*Календарь блок*/
.section-block {margin:40px 0px 40px 0px;}



        /* Адаптивность */
        @media (max-width: 1200px) {
            .places-list {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .header p {
                font-size: 1rem;
            }
            
            .places-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .header {
                padding: 20px 0;
            }
            
            .header h1 {
                font-size: 1.8rem;
            }
            
            .place-name {
                font-size: 1.3rem;
            }
            
            .container {
                padding: 10px;
            }
            
            .places-list {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .place-card {
                padding: 15px;
                min-height: 80px;
            }
        }

/*Блок 1 конец*/














/*Корпоративным клиентам*/

.section-corporat {background:#E8F0F7;padding:40px 0px 40px 0px;}
.grid-corporate {
grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 24px;display: grid;
  margin-bottom: 24px;
  
}

.title-corp a {color:#1C2F64;text-decoration: none;}
.title-corp{
color:#1C2F64;
font-weight: 800;
font-size: 24px;
}

.desc-corp{

font-weight: 400;margin-top:10px;
font-size: 16px;
color:#1C2F64;
}

.img-corp img {-webkit-border-radius: 12px;-moz-border-radius: 12px;border-radius: 12px;}






/*Регионы*/
.section-regions {background:url(../i/map.svg) center / contain no-repeat;min-height:1000px;padding-top:70px;}


 .regions-grid {
            display: grid;
            grid-template-columns: 150px 1fr 1fr 1fr 1fr 1fr;
            gap: 20px;
        }
        
        .regions-column {
            padding: 10px;
        }
        
        .title-column {
            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
            padding-right: 20px;
        }
        
        .regions-title {
font-weight: 800;
font-size: 48px;

            color: rgba(28, 47, 100, 1);
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            border-left: 2px solid #1766A7;
            padding-left: 10px;
        }
        
        .letter-group {
            margin-bottom: 20px;
        }
        
        .letter-header {

font-weight: 800;
font-size: 28px;
            margin-bottom: 8px;
            color: rgba(28, 47, 100, 1);

        }
        
        .region-item {

font-weight: 400;

font-size: 18px;

            padding: 3px 0;
            line-height: 1.4;
        }
        
        .region-item a {
            color: rgba(28, 47, 100, 1);
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            padding: 2px 0;
        }
        
        .region-item a:hover {
            color: #1766A7;
        }
        
        @media (max-width: 1200px) {
            .regions-grid {
                grid-template-columns: 100px 1fr 1fr 1fr;
            }
        }
        
        @media (max-width: 992px) {
            .regions-grid {
                grid-template-columns: 80px 1fr 1fr;
            }
			.gplaces-corppp {display:block !important;}
			.corptgriid{display:block !important;}
			.bg-link-corp {margin-bottom:25px;}
			.desc-corpp {margin-bottom:30px;}
			.section-regions {display:none;}
			footer {margin-top:40px !important;}
			
        }
        
        @media (max-width: 768px) {
            .regions-grid {
                grid-template-columns: 60px 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .regions-grid {
                grid-template-columns: 1fr;
            }
            
            .title-column {
                display: none;
            }
        }


.logo-city {
     display: flex;
  align-items: center;
  gap: 8px;
    
}
.h3-footer-logo {
font-weight: 600;
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 5px;
  color: white;
}


.banners-new {
       -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
}
.banners-new img{
       -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;object-fit: cover;height:100%;width:100%;
 }
.banner-about {background: rgba(234, 115, 23, 1);
display: table;padding:21px 43px;
font-weight: 700;
font-size: 16px;
color:#fff;
      -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;text-decoration: none;
}


.banner-about:hover {background:#ff6b00;}
.banner-image-wrapper img {
    width: 100%;
    height: auto;
    display: block; /* убирает лишний отступ снизу у inline-элементов */
}


.section-banner2 {}
.banner-image-wrapper2{
    position: relative;min-height:260px;
    display: inline-block; /* или block, в зависимости от вашей верстки */
    border-radius: 40px;
    overflow: hidden; /* чтобы градиент не выходил за скругленные углы */
}
.banner-image-wrapper2 img {object-fit: cover;height:100%;width:100%;}
.banners-new2 {display: grid;
  grid-template-columns:1fr 1fr;
  gap: 15px;}
.section-banner {margin-bottom:60px;}
.banner-image-wrapper {
    position: relative;
    display: inline-block; /* или block, в зависимости от вашей верстки */
    border-radius: 40px;
    overflow: hidden; /* чтобы градиент не выходил за скругленные углы */
}
.banners-absl2 {position: absolute;width:100%;padding:45px 20px;z-index: 100;}
.banners-absl {position: absolute;width:100%;padding:45px 60px;z-index: 100;}
.banner-title {
font-weight: 600;
font-size: 48px;
color:#fff;}
.banner-title2 {
font-weight: 600;
font-size: 32px;
color:#fff;}
.banner-row div:last-child {justify-content: end; display: grid;}
.banner-row div:first-child {
font-weight: 600;
font-size: 28px;color:#fff;
}
.insi-banner-row {
display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;justify-content: end;    
         justify-content: space-between;
}

.banner-row {
display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;justify-content: end;

  margin-top: 20px;
}
.insi-banner-row div:first-child{margin-right: 30px;}
.banner-row2 {
    display: flex;margin-top:70px;
  justify-content: space-between;
  align-items: start;font-weight: 600;
font-size: 28px;color:#fff;
}
.banner-desc {
font-weight: 400;
font-size: 20px;
color:#fff;
}
.banner-image-wrapper::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(23, 102, 167, 0.216) 0%, rgba(52, 51, 72, 0.024) 100%);
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    border-radius: 40px;
}

  /* Стили для блока преимуществ */
   .advantages-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(232, 240, 247, 1) 0%, rgba(255, 237, 227, 0.8) 100%);
            -webkit-border-radius: 40px;
            -moz-border-radius: 40px;
            border-radius: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .advantages-section::before {
            content: "";
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23DE6100' fill-opacity='0.1' d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z'/%3E%3C/svg%3E") no-repeat center/contain;
            animation: rotate 30s linear infinite;
            z-index: 0;
        }
        
        .advantages-section::after {
            content: "";
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 200px;
            height: 200px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23FB5607' fill-opacity='0.1' d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z'/%3E%3C/svg%3E") no-repeat center/contain;
            animation: rotateReverse 25s linear infinite;
            z-index: 0;
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes rotateReverse {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(-360deg); }
        }
        
  .advantages-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 70px;
            position: relative;
            z-index: 2;
        }
        
     .advantage-card {
            background: rgba(255, 255, 255, 0.95);
            -webkit-border-radius: 20px;
            -moz-border-radius: 20px;
            border-radius: 20px;
            padding: 40px 30px 30px;
            height: 100%;
            position: relative;
            transition: all 0.4s ease;
            box-shadow: 0 15px 35px rgba(222, 97, 0, 0.15);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            border: 2px solid transparent;
        }
        
        .advantage-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #FB5607, #DE6100);
            transform: scaleX(1);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        
        .advantage-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 45px rgba(222, 97, 0, 0.25);
            border-color: rgba(251, 86, 7, 0.2);
        }
        
        .advantage-card:hover::before {
            background: linear-gradient(90deg, #DE6100, #FB5607);
            height: 6px;
        }
  
        .advantage-title {
            font-weight: 800;
            font-size: 24px;
            line-height: 1.1em;margin-top:0px;
            margin-bottom: 15px;max-width:220px;
            color: #1C2F64;
        }
.absl-icon {position: absolute;right: 0px;
  top: -40px;}
        .advantage-text {
            font-weight: 400;
            font-size: 16px;
            line-height: 1.5;
            color: #1C2F64;
        }
        
        .section-title {
  margin:0;
            font-weight: 800;
            font-size: 48px;
            color: rgba(28, 47, 100, 1);
        }
         .advantage-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #FFE4D0 0%, #FFD1B3 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            box-shadow: 0 10px 20px rgba(222, 97, 0, 0.2);
            transition: all 0.4s ease;
            position: relative;
            border: 2px solid rgba(251, 86, 7, 0.1);
        }
        
        .advantage-card:hover .advantage-icon {
            transform: scale(1.15) rotate(5deg);
            background: linear-gradient(135deg, #FB5607 0%, #DE6100 100%);
            box-shadow: 0 15px 25px rgba(222, 97, 0, 0.3);
        }
        
        .advantage-card:hover .advantage-icon svg {
            fill: white;
            transform: scale(1.1);
        }
        
        .advantage-title {
            font-weight: 800;
            font-size: 24px;
            line-height: 1.2;
            margin-top: 0;
            margin-bottom: 15px;
            color: #DE6100;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .advantage-card:hover .advantage-title {
            color: #FB5607;
        }
        
        .advantage-text {
            font-weight: 400;
            font-size: 16px;
            line-height: 1.6;
            color: #1C2F64;
            margin: 0;
        }
        
        .section-title {
            margin: 0;
            font-weight: 800;
            font-size: 48px;
            background: linear-gradient(135deg, #DE6100 0%, #FB5607 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            position: relative;
            z-index: 2;
            text-shadow: 0 5px 15px rgba(222, 97, 0, 0.2);
        }
        
        /* Анимация появления карточек */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .advantage-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }
        
        .advantage-card:nth-child(1) { animation-delay: 0.1s; }
        .advantage-card:nth-child(2) { animation-delay: 0.2s; }
        .advantage-card:nth-child(3) { animation-delay: 0.3s; }
        .advantage-card:nth-child(4) { animation-delay: 0.4s; }


        /* Адаптивность */
            @media (max-width: 1200px) {
            .advantages-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .section-title {
                font-size: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .advantages-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .advantage-card {
                padding: 30px 20px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .advantages-section {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 28px;
            }
            
            .advantage-title {
                font-size: 20px;
            }
            
            .advantage-text {
                font-size: 15px;
            }
            
            .advantage-icon {
                width: 60px;
                height: 60px;
            }
        }
  /* Стили для подвала */
footer {
    background: linear-gradient(135deg, #1C2F64 0%, #1766A7 100%);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: 80px;padding-top:80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}
        
        .footer-container {
            width: 100%;
            max-width: 1620px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
			position: relative;
  z-index: 100;
        }
        
        .footer-column h3 {
            font-weight: 600;
            font-size: 24px;
            margin-top: 0;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 300;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: white;
        }
        
        .footer-contacts {
            margin-top: 0;
        }
        
        .footer-contacts p {
            margin: 8px 0;
            font-weight: 300;
            font-size: 16px;
            color: white;
        }
        
        .footer-contacts a {
            color: white;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
        }
        
        .footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-weight: 300;position: relative;
  z-index: 100;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Стили для формы поиска */
        .search-form {
            margin: 15px 0 20px 0;
            position: relative;
        }
        
        .search-input {
            width: 100%;
            padding: 12px 45px 12px 15px;
            border-radius: 30px;
            border: none;
            font-size: 14px;
            background: rgba(255, 255, 255, 0.9);
        }
        
        .search-button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }
        
        .search-button svg {
            width: 20px;
            height: 20px;
            fill: rgba(28, 47, 100, 1);
        }
        
        /* Стили для выбора города */
        .city-selector {
            margin-bottom: 15px;
        }
        
        .city-button {
            background: none;
            border: none;
            color: white;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            padding: 0;
        }
        
        .city-button svg {
            margin-left: 5px;
            width: 16px;
            height: 16px;
            fill: white;
        }
        
        /* Модальное окно городов */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background: white;
            border-radius: 20px;
            width: 90%;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            padding: 30px;
            color: #333;
        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .modal-title {
            font-size: 24px;
            font-weight: 600;
            margin: 0;
        }
        
        .close-modal {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
        }
        
        .cities-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }
        
        .city-item {
            padding: 8px 12px;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        
        .city-item:hover {
            background: #f0f0f0;
        }
        
      
        
        /* Адаптивные стили */
        @media (max-width: 1200px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .cities-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            footer {
                padding: 40px 0px 20px 0px;
                border-top-left-radius: 30px;
                border-top-right-radius: 30px;
            }
            
            .footer-column {
                margin-bottom: 20px;
            }
            
            .footer-column h3 {
                margin-bottom: 15px;
                font-size: 20px;
            }
            
            .cities-grid {
                grid-template-columns: 1fr;
            }
        }

@media (min-width: 992px) {

  .navbar-top {background-color:#004385}
  .navbar-toggle {display:none}
  .navbar-collapse.collapse {display:block !important; padding:0; border:0; -webkit-box-shadow:none; box-shadow:none}
  .navbar-nav > li > a {
font-size: 14px;
font-weight: 500;
color:#fff;

    }
  .site-nav .navbar-nav {text-align:center}
  .site-nav > .navbar-nav {margin:0 1.5rem 0 0; position:relative}
  .site-nav > .navbar-nav > li {display:inline-block; margin:0 10px; position:relative}
  .site-nav > .navbar-nav > li::before, .site-nav > .navbar-nav > li > a::before, .site-nav > .navbar-nav > li:first-child::after {position:absolute; content:''}
  .site-nav > .navbar-nav > li:first-child::after {top:0; left:-30px; width:1px; height:100%;}
	  .site-nav > .navbar-nav > li:last-child::before {top:0; left:-30px; width:1px; height:100%;}

  .site-nav > .navbar-nav > li > a {margin:0; position:relative; display:inline-block}
  .site-nav > .navbar-nav > li > a::before {bottom:0; left:0; width:0; height:1px; background-color:rgba(135,191,215,1); -webkit-transition:all .25s ease-out 0s; -o-transition:all .25s ease-out 0s; transition:all .25s ease-out 0s}
  .site-nav > .navbar-nav > li.active > a::before,
  .site-nav > .navbar-nav > li:hover > a::before,
  .site-nav > .navbar-nav > li > a:hover::before,
  .site-nav > .navbar-nav > li > a:focus::before {width:100%; left:0}
  .site-nav .navbar-nav > li > a {padding:5px 0; color:rgba(55, 45, 44, 1);  
font-weight: 500;
font-size: 16px;

}
  .site-nav .navbar-nav > li > a:hover, .site-nav .navbar-nav > li > a:focus, .site-nav .navbar-nav > li.active > a {color:#000;text-decoration: none;}

  .nav > li > a:hover, .nav > li > a:focus {background-color:transparent}
  /*** DropDown Menu ***/
  ul.dropdown {background-color:rgba(255,255,255,1); position:absolute; z-index:100; left:auto; top:auto; list-style:none; padding:0; width:20rem; opacity:0; visibility:hidden; z-index:3; -webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.25); box-shadow:0 2px 2px 0 rgba(0,0,0,.25); -webkit-transform:translateY(2em); -ms-transform:translateY(2em); transform:translateY(2em); -webkit-transition:opacity .2s ease 0s, -webkit-transform .2s ease 0s; transition:opacity .2s ease 0s, -webkit-transform .2s ease 0s; -o-transition:transform .2s ease 0s, opacity .2s ease 0s; transition:transform .2s ease 0s, opacity .2s ease 0s; transition:transform .2s ease 0s, opacity .2s ease 0s, -webkit-transform .2s ease 0s}
  ul.dropdown li ul {left:100%; top:0}
  ul.dropdown li {width:100%; padding:0; display:block; position:relative; text-align:left}
  ul.dropdown li:last-child {border:0}
  ul.dropdown li a {padding:10px; display:block; font-size:1.4rem; color:rgba(0,0,0,.9)}
  ul.dropdown li a:hover, ul.dropdown li a:focus, ul.dropdown > li.active > a {color:rgba(217,48,44,1); background-color:rgba(238,238,238,1); text-decoration:none}

  .navbar-nav > li:hover > ul.dropdown {opacity:1; visibility:visible; z-index:99; -webkit-transform:translateY(0); -ms-transform:translateY(0); transform:translateY(0)}
  ul.dropdown li:hover > ul {opacity:1; visibility:visible; -webkit-transform:translateY(0); -ms-transform:translateY(0); transform:translateY(0)}
  ul.dropdown li > ul > li > ul {display:none}

  .navbar-top .social {margin:0 0 0 3rem}
  .navbar-top .flex-col:first-child {width:auto}
  .navbar-top .flex-col:nth-child(2) {width:auto}
  .navbar-top .flex-col:last-child {width:auto}

  .flex-row {display:-webkit-box;display:-ms-flexbox;display:flex; -ms-flex-wrap:nowrap; flex-wrap:nowrap; -webkit-box-pack:end; -ms-flex-pack:end; justify-content:flex-end}
  .flex-col {display:-webkit-box;display:-ms-flexbox;display:flex; -webkit-box-orient:vertical; -webkit-box-direction:normal; -ms-flex-direction:column; flex-direction:column; -webkit-box-pack:center; -ms-flex-pack:center; justify-content:center}
  .flex-row .flex-col:nth-child(2) {-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}

  .navbar-top .navbar-brand {padding:10px 0}
  .navbar-top .navbar-brand .tbl-cell {height:85px}
  .navbar-brand .tbl-cell:first-child {width:70px}
  .navbar-brand .tbl-cell img.brand-name {margin-left:30px}



  .navbar-top .site-nav > .navbar-nav {display:flex !important; flex-direction:row; justify-content:center!important; width:100%; margin:0 !important}
  .navbar-top .site-nav > .navbar-nav > li {flex:1 1 auto !important}
}
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{
	float: left;
}
.col-xs-12{
	width: 100%;
}
.col-xs-11{
	width: 91.66666667%;
}
.col-xs-10{
	width: 83.33333333%;
}
.col-xs-9{
	width: 75%;
}
.col-xs-8{
	width: 66.66666667%;
}
.col-xs-7{
	width: 58.33333333%;
}
.col-xs-6{
	width: 50%;
}
.col-xs-5{
	width: 41.66666667%;
}
.col-xs-4{
	width: 33.33333333%;
}
.col-xs-3{
	width: 25%;
}
.col-xs-2{
	width: 16.66666667%;
}
.col-xs-1{
	width: 8.33333333%;
}
.col-xs-offset-12{
	margin-left: 100%;
}
.col-xs-offset-11{
	margin-left: 91.66666667%;
}
.col-xs-offset-10{
	margin-left: 83.33333333%;
}
.col-xs-offset-9{
	margin-left: 75%;
}
.col-xs-offset-8{
	margin-left: 66.66666667%;
}
.col-xs-offset-7{
	margin-left: 58.33333333%;
}
.col-xs-offset-6{
	margin-left: 50%;
}
.col-xs-offset-5{
	margin-left: 41.66666667%;
}
.col-xs-offset-4{
	margin-left: 33.33333333%;
}
.col-xs-offset-3{
	margin-left: 25%;
}
.col-xs-offset-2{
	margin-left: 16.66666667%;
}
.col-xs-offset-1{
	margin-left: 8.33333333%;
}
.col-xs-offset-0{
	margin-left: 0;
}
.col-xs-tac{
	text-align: center;
}
.col-xs-tar{
	text-align: right;
}
.col-xs-tal{
	text-align: left;
}
.col-xs-taj{
	text-align: justify;
}

@media (min-width: 768px){
	.container{
		width: 750px;
	}
	.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{
		float: left;
	}
	.col-sm-12{
		width: 100%;
	}
	.col-sm-11{
		width: 91.66666667%;
	}
	.col-sm-10{
		width: 83.33333333%;
	}
	.col-sm-9{
		width: 75%;
	}
	.col-sm-8{
		width: 66.66666667%;
	}
	.col-sm-7{
		width: 58.33333333%;
	}
	.col-sm-6{
		width: 50%;
	}
	.col-sm-5{
		width: 41.66666667%;
	}
	.col-sm-4{
		width: 33.33333333%;
	}
	.col-sm-3{
		width: 25%;
	}
	.col-sm-2{
		width: 16.66666667%;
	}
	.col-sm-1{
		width: 8.33333333%;
	}
	.col-sm-offset-12{
		margin-left: 100%;
	}
	.col-sm-offset-11{
		margin-left: 91.66666667%;
	}
	.col-sm-offset-10{
		margin-left: 83.33333333%;
	}
	.col-sm-offset-9{
		margin-left: 75%;
	}
	.col-sm-offset-8{
		margin-left: 66.66666667%;
	}
	.col-sm-offset-7{
		margin-left: 58.33333333%;
	}
	.col-sm-offset-6{
		margin-left: 50%;
	}
	.col-sm-offset-5{
		margin-left: 41.66666667%;
	}
	.col-sm-offset-4{
		margin-left: 33.33333333%;
	}
	.col-sm-offset-3{
		margin-left: 25%;
	}
	.col-sm-offset-2{
		margin-left: 16.66666667%;
	}
	.col-sm-offset-1{
		margin-left: 8.33333333%;
	}
	.col-sm-offset-0{
		margin-left: 0;
	}
	.col-sm-tac{
		text-align: center;
	}
	.col-sm-tar{
		text-align: right;
	}
	.col-sm-tal{
		text-align: left;
	}
	.col-sm-taj{
		text-align: justify;
	}
}

@media (min-width: 992px){
	.container{
		width: 970px;
	}
	.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{
		float: left;
	}
	.col-md-12{
		width: 100%;
	}
	.col-md-11{
		width: 91.66666667%;
	}
	.col-md-10{
		width: 83.33333333%;
	}
	.col-md-9{
		width: 75%;
	}
	.col-md-8{
		width: 66.66666667%;
	}
	.col-md-7{
		width: 58.33333333%;
	}
	.col-md-6{
		width: 50%;
	}
	.col-md-5{
		width: 41.66666667%;
	}
	.col-md-4{
		width: 33.33333333%;
	}
	.col-md-3{
		width: 25%;
	}
	.col-md-2{
		width: 16.66666667%;
	}
	.col-md-1{
		width: 8.33333333%;
	}
	.col-md-offset-12{
		margin-left: 100%;
	}
	.col-md-offset-11{
		margin-left: 91.66666667%;
	}
	.col-md-offset-10{
		margin-left: 83.33333333%;
	}
	.col-md-offset-9{
		margin-left: 75%;
	}
	.col-md-offset-8{
		margin-left: 66.66666667%;
	}
	.col-md-offset-7{
		margin-left: 58.33333333%;
	}
	.col-md-offset-6{
		margin-left: 50%;
	}
	.col-md-offset-5{
		margin-left: 41.66666667%;
	}
	.col-md-offset-4{
		margin-left: 33.33333333%;
	}
	.col-md-offset-3{
		margin-left: 25%;
	}
	.col-md-offset-2{
		margin-left: 16.66666667%;
	}
	.col-md-offset-1{
		margin-left: 8.33333333%;
	}
	.col-md-offset-0{
		margin-left: 0;
	}
	.col-md-tac{
		text-align: center;
	}
	.col-md-tar{
		text-align: right;
	}
	.col-md-tal{
		text-align: left;
	}
	.col-md-taj{
		text-align: justify;
	}
}

@media (min-width: 1200px){
	.container{
		width: 1620px;
	}
	.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{
		float: left;
	}
	.col-lg-12{
		width: 100%;
	}
	.col-lg-11{
		width: 91.66666667%;
	}
	.col-lg-10{
		width: 83.33333333%;
	}
	.col-lg-9{
		width: 75%;
	}
	.col-lg-8{
		width: 66.66666667%;
	}
	.col-lg-7{
		width: 58.33333333%;
	}
	.col-lg-6{
		width: 50%;
	}
	.col-lg-5{
		width: 41.66666667%;
	}
	.col-lg-4{
		width: 33.33333333%;
	}
	.col-lg-3{
		width: 25%;
	}
	.col-lg-2{
		width: 16.66666667%;
	}
	.col-lg-1{
		width: 8.33333333%;
	}
	.col-lg-offset-12{
		margin-left: 100%;
	}
	.col-lg-offset-11{
		margin-left: 91.66666667%;
	}
	.col-lg-offset-10{
		margin-left: 83.33333333%;
	}
	.col-lg-offset-9{
		margin-left: 75%;
	}
	.col-lg-offset-8{
		margin-left: 66.66666667%;
	}
	.col-lg-offset-7{
		margin-left: 58.33333333%;
	}
	.col-lg-offset-6{
		margin-left: 50%;
	}
	.col-lg-offset-5{
		margin-left: 41.66666667%;
	}
	.col-lg-offset-4{
		margin-left: 33.33333333%;
	}
	.col-lg-offset-3{
		margin-left: 25%;
	}
	.col-lg-offset-2{
		margin-left: 16.66666667%;
	}
	.col-lg-offset-1{
		margin-left: 8.33333333%;
	}
	.col-lg-offset-0{
		margin-left: 0;
	}
	.col-lg-tac{
		text-align: center;
	}
	.col-lg-tar{
		text-align: right;
	}
	.col-lg-tal{
		text-align: left;
	}
	.col-lg-taj{
		text-align: justify;
	}
}
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after{
	display: table;
	content: " ";
}
.container:after,
.container-fluid:after,
.row:after{
	clear: both;
}
.container {
  margin-right:auto;
  margin-left:auto;
  padding-left:15px;
  padding-right:15px
}
.switcher {
  position: absolute;
  visibility: hidden;
  left: -9999px;
}
@media (min-width: 993px) {
  .menu-mob {
    display: none;
  }
	.disp-nope  {
    display: none;
  }
}
.content-views h3 {

font-weight: 700;
font-size: 32px;
color:rgba(3, 9, 24, 1);

}
@media (min-width:993px){ 
  .menu-mob {
    display: none;
  }

}

.switcher {
  position: absolute;
  visibility: hidden;
  left: -9999px;
}
@media (max-width: 1200px){ .title-utp-absl {max-width: 100% !important;}}
@media (max-width: 992px){
.grid-about {display:block !important;padding: 20px;}
.grid-preim {display:block !important;padding: 20px;}
	.pr {margin-bottom:45px;}
	.desc-contt2 {margin-left:0px !important;}
	.header-in0 {display:none;}
	.grid-contt {display: block !important; }
.mobile-none-g {display:none;}
	.grid-contt h2 {font-size:32px !important;margin-bottom:30px;}
.mob-menus {
  position: absolute;
top: 25px;
    right: 20px;
color: rgba(234, 115, 23, 1);
font-size: 2em;
}
.menu-mob .open,
.menu-mob .close2 {
    display: block !important;
    max-width: 800px;
  }
	.menus ul {margin:0px;padding:0px;}
.menus ul li {list-style:none;text-align:left;}
.menus ul li a {
	display: block;
	padding: 10px 15px;
	color: #fff;
	text-decoration: none;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	-ms-transition: 0.2s linear;
	-o-transition: 0.2s linear;
	transition: 0.2s linear;
}
.menus  ul li a:hover {
	background:rgba(67, 125, 240, 1);
	color: #fff;
}
.menus ul li a .fa {
	width: 16px;
	text-align: center;
	margin-right: 5px;
	float:right;
}
.menus ul ul {
	background: rgba(0, 0, 0, 0.2);
}
.menus ul li ul li a {
	border-left: 4px solid transparent;
	padding: 10px 20px;
}
.menus ul li ul li a:hover {

	border-left: 4px solid #3498db;
}

.close2{
position: absolute;
top: 40px;
right: 40px;
	font-size: 2em;
    color: #fff;
}
	
.switcher:checked ~ nav{
right: 0;
}
nav a{color:#fff;font-size: 25px;}
nav{
position: fixed;
width: 100%;
height: 100vh;
background:#002060;
top: 0;
right: -100%;
text-align: center;
padding: 100px 0;
transition: .7s;
	z-index:100;
}
		
	
	.price-item2 {text-align:center !important;margin-bottom:8px;}
	.grid-price-n {display:block !important;}
	.category-tpl33 {margin-bottom:20px;}
	.bg-slider {margin-bottom:50px;}
	.mar-inp {margin-bottom:15px;}
	.price-block {text-align:center;}
	.grid-t3 {display:block !important;}
	.grid-33 {display:block !important;}
	.grid-pl {display:block !important;}
	.logo-f {margin-bottom:20px !important;}
	
	.viewed-products-list {grid-template-columns:1fr 1fr !important; }
	.grid-pl3 {display:block !important;}
	.pdf-grid {margin-bottom:25px;}
	.small_search {
		margin-top: 20px !important; }
	.menu-footer {
		display: table; }
	.nalich-main {
  display: table;
		margin: 0 auto;}
	.grid-items-cat {
		display: block !important;}
	.grid-insidet-items-n {
		display: block !important; }
	.disp-noo {display:none !important;}
	.bg-filtr {margin-bottom:40px;}
	.category-tpl {margin-bottom:20px;}
	.catalog-grid {display: block !important; }
	.grid-t2 {display:block !important;}
	.zakaz-form {padding: 42px 10px 40px 10px !important;}
	.img-about-s {margin-top:40px;}
	.callback-f {display:table !important;width:auto !important;padding:8px 20px;}
	.grid-form {width:100% !important;}
	.logo-f {width:150px;margin-bottom:15px;display:table;margin:0 auto;}
	.dev {
  text-align: center !important;
}
	.filtr-grid-item {
  display: grid;
		grid-template-columns: 1fr 1fr !important; }
	
	.mob-menus {
  position: absolute;
top: 24px;
    right: 20px;
color: #010101;
font-size: 2em;
}
.menu-mob .open,
.menu-mob .close2 {
    display: block !important;
    max-width: 800px;
  }
	.menus ul {margin:0px;padding:0px;}
.menus ul li {list-style:none;text-align:left;}
.menus ul li a {
	display: block;
	padding: 10px 15px;
	color: #000;
	text-decoration: none;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	-ms-transition: 0.2s linear;
	-o-transition: 0.2s linear;
	transition: 0.2s linear;
}
.menus  ul li a:hover {
	background:rgba(67, 125, 240, 1);
	color: #fff;
}
.menus ul li a .fa {
	width: 16px;
	text-align: center;
	margin-right: 5px;
	float:right;
}
.menus ul ul {
	background: rgba(0, 0, 0, 0.2);
}
	.line-border-m {background:#8B181A;width:100%;height:2px;margin-left:15px;margin-right:15px;margin-top:10px;margin-bottom:10px;}
.menus ul li ul li a {
	border-left: 4px solid transparent;
	padding: 10px 20px;
}
.menus ul li ul li a:hover {

	border-left: 4px solid #3498db;
}
.close2{
position: absolute;
top: 40px;
right: 40px;
	font-size: 2em;
    color: #010101;
}
.switcher:checked ~ nav{
right: 0;
}
	.price-block {margin-bottom:30px;}
nav a{color:#fff;font-size: 25px;}
nav{
position: fixed;
width: 100%;
height: 100vh;
background:#fff;
top: 0;
right: -100%;
text-align: center;
padding: 40px 0;
transition: .7s;
	z-index:100;
}	
	
	.title-foot {margin-top:15px;}
	.copyright-grid div {margin-bottom:8px;text-align: center;}
	.copyright-grid {display:block !important;}
	.grid-footer-contacts {display:block !important;}
	.grid-header {display:block !important;}
	.logo {display:table;margin:0 auto;width: 100px;}
	.block-r-h {display:none !important;}
	.grid-form {display:block !important;}
	.input{width:100%;margin-bottom:10px;}
	.footer-grid {display:block !important;}
	.categor-main {display:block !important;padding: 20px;}
	.text-about-mains {padding-bottom:40px;}
	.cat-main-block {margin-bottom:15px;}
}
@media (min-width:768px) {
  .container {
    width:750px
  }
}
@media (min-width:992px) {
  .container {
    width:970px
  }
}
@media (min-width:1200px) {
  .container {
    width:1170px
  }
}
@media (min-width: 1280px) {
  .container {
    width: 1280px;
  }
}

@media (max-width: 767px){
	.hidden-xs{
		display: none !important;
	}
}
@media (min-width: 768px) and (max-width: 991px){
	.hidden-sm{
		display: none !important;
	}
}
@media (min-width: 992px) and (max-width: 1199px){
	.hidden-md{
		display: none !important;
	}
}
@media (min-width: 1200px){
	.hidden-lg{
		display: none !important;
	}
}

@media (min-width: 992px) {
/*** DropDown Menu ***/
 .navbar-nav {display:flex !important; flex-direction:row; justify-content:center!important; width:100%; margin:0 !important;padding:0px;}
 .navbar-nav > li {flex:1 1 auto !important}
  ul.dropdown {background-color:rgba(255,255,255,1); position:absolute; z-index:100; left:auto; top:auto; list-style:none; padding:0; width:15rem; opacity:0; visibility:hidden; z-index:3; -webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.25); box-shadow:0 2px 2px 0 rgba(0,0,0,.25); -webkit-transform:translateY(2em); -ms-transform:translateY(2em); transform:translateY(2em); -webkit-transition:opacity .2s ease 0s, -webkit-transform .2s ease 0s; transition:opacity .2s ease 0s, -webkit-transform .2s ease 0s; -o-transition:transform .2s ease 0s, opacity .2s ease 0s; transition:transform .2s ease 0s, opacity .2s ease 0s; transition:transform .2s ease 0s, opacity .2s ease 0s, -webkit-transform .2s ease 0s}
  ul.dropdown li ul {left:100%; top:0}
  ul.dropdown li {width:100%; padding:0; display:block; position:relative; text-align:left}
  ul.dropdown li:last-child {border:0}
  ul.dropdown li a {padding:10px; display:block; 
font-weight: 400;
font-size: 16px;
    }
  ul.dropdown li a:hover, ul.dropdown li a:focus, ul.dropdown > li.active > a {color:rgba(217,48,44,1); background-color:rgba(238,238,238,1); text-decoration:none}

  .navbar-nav > li:hover > ul.dropdown {opacity:1; visibility:visible; z-index:99; -webkit-transform:translateY(0); -ms-transform:translateY(0); transform:translateY(0)}
  ul.dropdown li:hover > ul {opacity:1; visibility:visible; -webkit-transform:translateY(0); -ms-transform:translateY(0); transform:translateY(0)}
  ul.dropdown li > ul > li > ul {display:none}

  .navbar-top .social {margin:0 0 0 3rem}
  .navbar-top .flex-col:first-child {width:auto}
  .navbar-top .flex-col:nth-child(2) {width:auto}
  .navbar-top .flex-col:last-child {width:auto}

  .flex-row {display:-webkit-box;display:-ms-flexbox;display:flex; -ms-flex-wrap:nowrap; flex-wrap:nowrap; -webkit-box-pack:end; -ms-flex-pack:end; justify-content:flex-end}
  .flex-col {display:-webkit-box;display:-ms-flexbox;display:flex; -webkit-box-orient:vertical; -webkit-box-direction:normal; -ms-flex-direction:column; flex-direction:column; -webkit-box-pack:center; -ms-flex-pack:center; justify-content:center}
  .flex-row .flex-col:nth-child(2) {-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}
}