*{
	-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;
}
.grpResult a {color: #01559b;
  text-decoration: none;
}
.small_search .form-group{display:block;width:200px;position:relative;}
.small_search input{background-color:rgba(255,255,255,1);display:block;width:200px;height:auto;min-height:2em;line-height:2em;padding:.3em 2.5em .3em 1em;font-size:16px;text-decoration:none;border: 2px solid rgba(1, 85, 155, 1);border-radius:12px;position:relative;}
.small_search input:focus{border: 2px solid rgba(20, 85, 225, 0.6);box-shadow:none}
.small_search button{position:absolute;display:block;height:calc(100% - 1em);width:2em;top:0.5em;right:1.1em;background:url(../i/search.svg) no-repeat 50% 50% !important;border:0px;}
/*Основное меню*/
/* ===== КЛАССИЧЕСКОЕ ВЫПАДАЮЩЕЕ МЕНЮ ===== */

/* Основное меню */
.main-menu ul{
    position: relative;
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-menu ul li ul {display:block;}
/* Пункты меню */
.menu-item {
    position: relative;
}

/* Ссылки меню */
.menu-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    position: relative;
}

/* Подчеркивание при наведении */
.menu-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b00;
    transition: width 0.3s ease;
}

.menu-link:hover::after {
    width: 100%;
}

/* Стрелочка для выпадающего */
.menu-link.has-dropdown::after {
    display: none; /* Убираем, т.к. используется для подчеркивания */
}
.current a {
  color: #ff6b00;
}
/* Стрелочка отдельно */
.menu-link.has-dropdown i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Выпадающее меню - КЛАССИЧЕСКОЕ */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e0e0e0;
    margin-top: 5px;
}
.level1 {position:relative;}
/* Треугольник-стрелочка сверху */
.dropdown::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 20px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent white transparent;
}

/* Показываем выпадающее при наведении */
.main-menu ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Список внутри выпадающего */
.dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Пункты выпадающего меню */
.dropdown li {
    position: relative;
}

/* Ссылки в выпадающем меню */
.dropdown a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

/* Иконки в выпадающем меню */
.dropdown a i {
    width: 18px;
    text-align: center;
    margin-right: 8px;
    color: #01559B;
    font-size: 14px;
}

/* Эффект при наведении на пункт */
.dropdown a:hover {
    background: #f5f9ff;
    color: #01559B;
    border-left-color: #01559B;
    padding-left: 25px;
}

/* Разделительная линия между пунктами */
.dropdown li:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

/* Активный пункт */
.dropdown a.active {
    background: #e8f2ff;
    color: #01559B;
    font-weight: 500;
    border-left-color: #01559B;
}

/* Анимация появления пунктов */
.dropdown li {
    opacity: 0;
    transform: translateX(-10px);
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Задержки для анимации */
.dropdown li:nth-child(1) { animation-delay: 0.05s; }
.dropdown li:nth-child(2) { animation-delay: 0.1s; }
.dropdown li:nth-child(3) { animation-delay: 0.15s; }
.dropdown li:nth-child(4) { animation-delay: 0.2s; }
.dropdown li:nth-child(5) { animation-delay: 0.25s; }
.dropdown li:nth-child(6) { animation-delay: 0.3s; }
.dropdown li:nth-child(7) { animation-delay: 0.35s; }
.dropdown li:nth-child(8) { animation-delay: 0.4s; }

/* Для последних пунктов меню - выравнивание вправо */
.menu-item:nth-last-child(2) .dropdown,
.menu-item:nth-last-child(1) .dropdown {
    left: auto;
    right: 0;
}

.menu-item:nth-last-child(2) .dropdown::before,
.menu-item:nth-last-child(1) .dropdown::before {
    left: auto;
    right: 20px;
}
 
/*левое меню*/

.breadcrumb {
  background-color:transparent;
  padding:10px 0 0;
  margin:0;
  font-family: "Inter", sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 30px;

}

.breadcrumb > li a {color:rgba(1, 85, 155, 1);}
.breadcrumb > li {
  position:relative;
  display:inline;rgba(255, 255, 255, 1);
}
.breadcrumb > li:first-child {
  padding:0 10px 0 0
}
.breadcrumb > li {
  padding:0 10px;
  font-weight: 400;
  font-size: 14px;
}
.breadcrumb > li + li::before {
  color:#6c757d;
  position:absolute;
  content:"/ ";
top: -6px;
  left: -2px;
  padding:0;
  display:inline-block
}
.breadcrumb > li {
  font-size:14px;
  font-weight:400;color:#6c757d
}
.breadcrumb > li a {
  color:rgba(1, 85, 155, 1);
  text-decoration:underline
}
.breadcrumb > li a:hover,
.breadcrumb > li a:focus {
  text-decoration:none
}

.grid-contents {
	 display: grid;
            grid-template-columns:260px 1fr;
            gap: 30px;
}
   /* Левое меню */
        .left-menu {
            width: 280px;
            background: #f8f9fa;
            border-right: 1px solid #dee2e6;
            padding: 20px;
            position: sticky;
            top: 0;
            height: 100vh;
            overflow-y: auto;
        }
        
        .left-menu-title {
            color: #01559B;
            font-size: 20px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e9ecef;
        }
        
        /* Список меню */
        .left-menu-list {
            list-style: none;
        }
        
        .left-menu-item {
            margin-bottom: 5px;
        }
        
        .left-menu-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 11px;
            color: #495057;
            text-decoration: none;
            background:#f8f9fa;
            border-radius: 6px;
            border-left: 3px solid transparent;
            transition: all 0.2s;
        }
        
        .left-menu-link:hover {
            background: #e9ecef;
            color: #01559B;
        }
        
        .left-menu-link.active {
            background: #e7f1ff;
            color: #01559B;
            border-left-color: #01559B;
            font-weight: 500;
        }
        
        .left-menu-arrow {
            font-size: 14px;
            transition: transform 0.3s;
            color: #6c757d;
        }
        
        .left-menu-item.active .left-menu-arrow {
            transform: rotate(90deg);
            color: #01559B;
        }
        
        /* Подменю */
        .left-submenu {
            list-style: none;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: #e6e6e6;
            margin: 2px 0 0 0;margin:0px;padding:0px;
            border-radius: 0 0 6px 6px;
        }
        
        .left-menu-item.active .left-submenu {
            max-height: 2000px;
        }
        
        .left-submenu-item {
            border-top: 1px solid #f8f9fa;
        }
        
        .left-submenu-link {
            display: block;
            padding: 10px 15px 10px 10px;
            color: #495057;
            text-decoration: none;
            transition: all 0.2s;
        }
        
        .left-submenu-link:hover {
            background: #f8f9fa;
            color: #01559B;
        }
        
        .left-submenu-link.active {
            color: #01559B;
            font-weight: 500;
            background: #f0f7ff;
        }
        
      
  /* Шапка для мобильной версии */
        .mobile-header {
            display: none;
            background: linear-gradient(135deg, #01559B 0%, #003366 100%);
            padding: 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(1, 85, 155, 0.2);
        }
        
        .mobile-header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .mobile-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            text-decoration: none;
        }
        
        .mobile-logo img {
            height: 40px;
            width: auto;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
            font-size: 12px;
            line-height: 1.2;
            text-transform: uppercase;
        }
        
        /* Гамбургер-меню */
        .hamburger {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 24px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }
        
        .hamburger-line {
            width: 100%;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        .hamburger.active .hamburger-line:nth-child(1) {
            transform: translateY(10px) rotate(45deg);
        }
        
        .hamburger.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active .hamburger-line:nth-child(3) {
            transform: translateY(-10px) rotate(-45deg);
        }
        
        /* Мобильное меню */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #01559B 0%, #003366 100%);
            z-index: 999;
            transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            overflow-y: auto;
            padding-top: 70px;
        }
        
        .mobile-menu.active {
            left: 0;
        }
        
        .mobile-menu-content {
            padding: 20px;
            padding-bottom: 100px;
        }
        
        /* Основная навигация с выпадающими меню */
        .mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 30px;
        }
        
        .mobile-nav-item {
            padding: 18px 20px;
            color: white;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            border-radius: 12px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            cursor: pointer;
            user-select: none;
        }
        
        .mobile-nav-item:hover,
        .mobile-nav-item.active {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .mobile-nav-item i {
            font-size: 20px;
            width: 24px;
            text-align: center;
        }
        
        .mobile-nav-item .chevron {
            font-size: 14px;
            transition: transform 0.3s ease;
        }
        
        .mobile-nav-item.active .chevron {
            transform: rotate(180deg);
        }
        
        /* Выпадающее подменю */
        .dropdown-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            margin-top: 5px;
        }
        
        .dropdown-menu.active {
            max-height: 500px;
        }
        
        .dropdown-item {
            padding: 15px 20px 15px 50px;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 16px;
            display: block;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }
        
        .dropdown-item:hover {
            color: white;
            background: rgba(255, 255, 255, 0.1);
            border-left-color: #ff6b00;
            padding-left: 55px;
        }
        
        .dropdown-item i {
            margin-right: 10px;
            font-size: 14px;
            width: 20px;
            text-align: center;
        }
        
        .mobile-menu-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.2);
            margin: 25px 0;
        }
        
        .mobile-menu-header {
            color: white;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.7;
            margin-bottom: 15px;
            padding-left: 20px;
        }
        
        .mobile-secondary-nav {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .mobile-secondary-item {
            padding: 15px 20px;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 16px;
            border-radius: 10px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .mobile-secondary-item:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }
        
        .mobile-secondary-item i {
            font-size: 16px;
            width: 20px;
            text-align: center;
        }
        
        .mobile-search {
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 20px;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(135deg, #01559B 0%, #003366 100%);
            z-index: 1000;
        }
        
        .mobile-search-input {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 16px;
            outline: none;
        }
        
        .mobile-search-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Нижняя панель навигации */
        .mobile-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
            z-index: 998;
            padding: 10px 0;
            display: none;
        }
        
        .bottom-nav-items {
            display: flex;
            justify-content: space-around;
            align-items: center;
        }
        
        .bottom-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #666;
            font-size: 11px;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 10px;
            flex: 1;text-align:center;
            position: relative;
        }
        
        .bottom-nav-item.active {
            color: #01559B;
        }
        
        .bottom-nav-item:hover {
            color: #01559B;
            background: rgba(1, 85, 155, 0.05);
        }
        
        .bottom-nav-icon {
            width: 24px;
            height: 24px;
            margin-bottom: 4px;
            fill: currentColor;
            stroke: currentColor;
        }

  /* Адаптивность */
        @media (max-width: 992px) {
            .mobile-header {
                display: block;
            }
            
            .mobile-bottom-nav {
                display: block;
            }
            
            .page-content {
                padding-bottom: 80px;
            }
  
        }
        
        /* Анимации */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .mobile-nav-item {
            animation: fadeIn 0.3s ease forwards;
            opacity: 0;
        }
        
        .mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
        .mobile-nav-item:nth-child(2) { animation-delay: 0.15s; }
        .mobile-nav-item:nth-child(3) { animation-delay: 0.2s; }
        .mobile-nav-item:nth-child(4) { animation-delay: 0.25s; }
        .mobile-nav-item:nth-child(5) { animation-delay: 0.3s; }
        
        /* Стили для иконок SVG */
        .icon-building {
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        
        .icon-education {
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        
        .icon-science {
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        
        .icon-services {
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        
        .icon-contacts {
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        
        /* Бэдж для уведомлений */
        .badge {
            position: absolute;
            top: -2px;
            right: 5px;
            background: #ff4757;
            color: white;
            font-size: 10px;
            padding: 2px 5px;
            border-radius: 10px;
            min-width: 18px;
            text-align: center;
        }
        
        /* Заголовок меню */
        .menu-header {
            padding: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 15px;
        }
        
        .menu-header-title {
            color: white;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .menu-header-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }
/*Конец меню моб*/
.grid-mezhd {
	 display: grid;border-radius: 18px; padding:50px 20px;
            grid-template-columns:1fr 400px;margin-top:80px;margin-bottom:80px;
            gap: 30px;background:rgba(1, 85, 155, 1);
	
}
.bg-hos {background:url(../i/bg-hos.png) no-repeat;width:100%; border-radius: 20px;padding:60px 30px;}
.custom-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;text-decoration:none;
margin-top:70px;
    background: rgba(255, 255, 255, 1);
    border: none;
    border-radius: 20px;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 32px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(1, 85, 155, 1);

    opacity: 1;
    cursor: pointer;
    box-sizing: border-box;
}


.custom-button:hover {
    box-shadow: 0 4px 12px rgba(1, 85, 155, 0.2);
}


.custom-button:active {
    transform: translateY(1px);
}
.max640 {max-width:640px;}
.title-test {
font-weight: 600;
font-size: 48px;
color:#fff;margin-bottom:20px;
}
.desc-test {
font-weight: 500;
font-style: Italic;
font-size: 24px;
color:#fff;
}
.test-blok {
border-radius: 18px; padding:50px 20px;
margin-top:80px;margin-bottom:80px;
background:url(./i/right-b.png) no-repeat right rgba(1, 85, 155, 1);
	
}
 .stats-container {

            max-width: 600px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 12px 20px;
            align-items: center;
        }
        .stat-label {

font-weight: 400;

font-size: 20px;
color:#fff;

            justify-self: start;
        }
        .stat-value {
font-weight: 600;
font-size: 36px;
color: #fff;
            justify-self: end;
        }
.kadr-numbers {max-width:500px;}
.title-kadrs {
font-weight: 600;
font-size: 32px;margin-bottom:20px;
color:#fff;}
.kadr-item a {text-decoration:none;}
.title-obrz-d{
font-weight: 600;
font-size: 36px;margin:0px;
color:rgba(1, 85, 155, 1);
text-transform: uppercase;
}
.w100 {width:100% !important;}
.achievements-section2 {margin-top:40px;}
.achievements-section2 h2 {
  font-weight: 600;
  font-size: 32px;
  text-transform: uppercase;
  color: rgba(1, 85, 155, 1);
  margin-bottom: 20px;
}

.orz-grid {
	       display: grid;
            grid-template-columns:1fr 1fr;
            gap: 30px;
}
.section-map {margin-top:60px;margin-bottom:60px;}
.section-map h2 {
  font-weight: 600;
  font-size: 32px;
  text-transform: uppercase;
  color: rgba(1, 85, 155, 1);
  margin-bottom: 20px;
}
 .university-text {
max-width:200px;
            font-weight: 400;
            font-size: 16px;
line-height: 1.3em;
            letter-spacing: 0%;
            text-transform: uppercase;
            color: white;
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
  
/*Наука*/
   /* Стили для слайдера */
        .kadr-nauk-image-section {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .kadr-nauk-slider {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .kadr-nauk-slide {
            min-width: 100%;height:400px;
            box-sizing: border-box;
        }
.mar-b50 {margin-bottom:50px;}

        
        /* Индикаторы (кружочки) */
        .kadr-nauk-indicators {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
			position: absolute; /* Абсолютное позиционирование */
        bottom: 20px; /* Отступ от нижнего края */
        left: 0;
        right: 0;
        z-index: 10; /* Чтобы индикаторы были поверх изображений */
        }
        
        .kadr-nauk-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        
        .kadr-nauk-indicator.active {
            background-color: #007bff;
            transform: scale(1.2);
        }
        
        .kadr-nauk-indicator:hover {
            background-color: #6c757d;
        }


  .kadr-nauk-container {
            display: flex;
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
        }
        
        .kadr-nauk-content-section {
            flex: 1;
            background: rgba(1, 85, 155, 1);
            padding: 40px;
            display: flex;
            flex-direction: column;
            min-height: 400px;
        }
        
        .kadr-nauk-tabs {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .kadr-nauk-tab {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 16px;
            line-height: 140%;
            letter-spacing: 0%;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            transition: all 0.3s ease;
        }
        
        .kadr-nauk-tab.kadr-nauk-active {
            color: #fff;
            border-bottom: 2px solid rgba(255, 255, 255, 1);
        }
        
        .kadr-nauk-tab:not(.kadr-nauk-active) {
            color: rgba(255, 255, 255, 0.5);
            border-bottom: 2px solid rgba(255, 255, 255, 0.5);
        }
        
        .kadr-nauk-tab-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .kadr-nauk-tab-pane {
            display: none;
            flex: 1;
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            line-height: 1.6;
        }
        
        .kadr-nauk-tab-pane.kadr-nauk-active {
            display: flex;
            flex-direction: column;
        }
        
        .kadr-nauk-tab-text {
            flex: 1;
            margin-bottom: 20px;
        }
        
        .kadr-nauk-more-link {
            color: #fff;
            text-decoration: none;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 16px;
            padding: 10px 0;
            border-bottom: 1px solid #fff;
            align-self: flex-start;
            transition: all 0.3s ease;
        }
        
        .kadr-nauk-more-link:hover {
            opacity: 0.8;
        }
        
        .kadr-nauk-image-section {
            flex: 0 0 582px;
            height: 400px;
        }
        
        .kadr-nauk-image-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-top-right-radius: 20px;
            border-bottom-right-radius: 20px;
            display: block;
        }
        
        @media (max-width: 768px) {
            .kadr-nauk-container {
                flex-direction: column;
            }
            
            .kadr-nauk-image-section {
                flex: none;
                width: 100%;
                order: -1;
            }
            
            .kadr-nauk-image-section img {
                border-radius: 20px 20px 0 0;
            }
            
            .kadr-nauk-content-section {
                border-radius: 0 0 20px 20px;
            }
        }
  .science-container {
            max-width: 1200px;
            width: 100%;
            position: relative;
            padding: 60px 40px;
            background: rgba(13, 27, 42, 0.7);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }
        
        /* Угловые рамки */
        .science-container::before, .science-container::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 60px;
            border: 2px solid rgba(255, 255, 255, 0.6);
            transition: all 0.3s ease;
        }
        .benefits__number {
    opacity: 0;
}
        .science-container::before {
            top: 20px;
            left: 20px;
            border-right: none;
            border-bottom: none;
        }
        
        .science-container::after {
            bottom: 20px;
            right: 20px;
            border-left: none;
            border-top: none;
        }
        
        .science-container:hover::before, .science-container:hover::after {
            width: 80px;
            height: 80px;
            border-color: rgba(255, 255, 255, 0.9);
        }
        
        .science-header {
            margin-bottom: 10px;
            text-align: center;
        }
.lingwhite { background:#fff;height:6px;width:100%;margin-bottom:50px;
}

 .logo-section a{
            display: flex;
            align-items: center;
            gap: 30px;text-decoration:none;
            flex-shrink: 0;
        }
        
        .logo {
            flex-shrink: 0;
        }
        .science-title {
            font-weight: 600;
            font-size: 48px;
            line-height: 100%;
            letter-spacing: 0%;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 1);
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }
        
        .science-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 10%;
            width: 80%;
            height: 3px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
        }
        
        .science-description {
            font-weight: 500;
            font-size: 20px;
            line-height: 140%;
            letter-spacing: 0%;
            color: rgba(255, 255, 255, 1);
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        
        .science-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top:50px;
        }
        
        .science-link {
            display: flex;
            flex-direction: column;
            text-decoration: none;
            color: white;
            border-radius: 8px;
            padding: 25px 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .science-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 1);
            transform: scaleX(0.9);
            transition: transform 0.3s ease;
        }
        
        .science-link:hover {
            transform: translateY(-5px);

        }
        
        .science-link:hover::before {
            transform: scaleX(1);
            background: linear-gradient(90deg, #4cc9f0, #4361ee);
        }
        
        .science-link-text {
            font-weight: 500;
            font-size: 20px;
            line-height: 140%;
            text-align: center;
            z-index: 1;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .science-container {
                padding: 40px 20px;
            }
            
            .science-title {
                font-size: 36px;
            }
            
            .science-description {
                font-size: 18px;
            }
            
            .science-links {
                grid-template-columns: 1fr;
            }
        }

.section-kadr {margin-top:50px;}
.section-kadr h2 {
  font-weight: 600;
  font-size: 32px;
  text-transform: uppercase;
  color: rgba(1, 85, 155, 1);
  margin-bottom: 20px;
}
   .kadr-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
        }
 .kadr-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 30px 20px;
            background: transparent;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .kadr-item:hover {
            transform: translateY(-5px);
        }

        .kadr-icon {
    
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .kadr-item:hover .kadr-icon {
            transform: rotate(5deg) scale(1.05);
        }

        .kadr-icon svg {
            width: 40px;
            height: 40px;
            fill: white;
        }

        .kadr-text {
font-weight: 500;
font-size: 20px;
color:rgba(1, 85, 155, 1);
text-align: center;

        }

        /* Адаптивность */
        @media (max-width: 1200px) {
            .kadr-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .kadr-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                padding: 30px 15px;
            }
            
            .kadr-item {
                padding: 25px 15px;
            }
            
            .kadr-icon {
                width: 70px;
                height: 70px;
            }
            
            .kadr-icon svg {
                width: 35px;
                height: 35px;
            }
        }

        @media (max-width: 480px) {
            .kadr-grid {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 20px 10px;
            }
            
            .kadr-icon {
                width: 60px;
                height: 60px;
            }
            
            .kadr-icon svg {
                width: 30px;
                height: 30px;
            }
            
            .kadr-text {
                font-size: 14px;
            }
        }

.achievements-section {
    background: rgba(1, 85, 155, 1);
    border-radius: 20px;
    padding: 80px;
    margin: 20px auto;
    max-width: 1280px;

    display: flex;
    align-items: center;
}

.achievements-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.achievements-content {
    flex: 1;
    color: white;
}

.achievements-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;margin-top:0px;
}

.achievements-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 90%;
}

.achievements-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.stats-row:first-child {
    justify-content: flex-start;
}

.stats-row:last-child {
    justify-content: center;
    gap: 60px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.stat-label {
    font-size: 20px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.achievements-logo {
    flex-shrink: 0;
    width: 300px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievements-logo svg {
    width: 100%;
    height: 100%;
    max-width: 300px;
    max-height: 400px;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .achievements-section {
        padding: 60px 40px;
        height: auto;
    }
    
    .achievements-container {
        flex-direction: column;
        text-align: center;
    }
    
    .achievements-description {
        max-width: 100%;
    }
    
    .stats-row:first-child {
        justify-content: center;
    }
    
    .achievements-logo {
        width: 200px;
        height: 250px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .achievements-section {
        padding: 40px 20px;
    }
    
    .achievements-title {
        font-size: 36px;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .stats-row:last-child {
        gap: 30px;
    }
    
    .stat-item {
        max-width: 100%;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .achievements-logo {
        width: 150px;
        height: 200px;
    }
}




.block-science {margin-top:40px;}
  .header-templ {
            text-align: center;
            margin-bottom: 60px;
            padding: 30px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(1, 85, 155, 0.1);
            border-left: 5px solid #01559b;
        }
        
        .header-templ h2 {
            color: #01559b;
            font-size: 28px;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .header-templ p {
            color: #444;
            line-height: 1.7;
            max-width: 1000px;
            margin: 0 auto;
            font-size: 17px;
        }
        
        .blocks-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            justify-content: center;
        }
        
        .block {
            background: rgba(1, 85, 155, 1);
            border-radius: 18px;
            padding: 30px 25px;
            color: white;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 8px 25px rgba(1, 85, 155, 0.2);
            height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .block:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 35px rgba(1, 85, 155, 0.35);
        }
        
        .block-content {
            z-index: 2;
            position: relative;
        }
        
        .block h3 {
            font-size:16px;
            margin-bottom: 15px;
            line-height: 1.4;
            font-weight: 600;
        }
        
        .block-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 20px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .block:hover .block-icon {
            transform: scale(1.15) rotate(5deg);
            background: rgba(255, 255, 255, 0.25);
        }
        
        .block-icon i {
            font-size: 28px;
            color: white;
        }
        
        .block-link {
            display: inline-flex;
            align-items: center;
            color: white;
            text-decoration: none;
            font-weight: 600;
            margin-top: 15px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            transition: all 0.3s ease;
            align-self: flex-start;
            font-size: 15px;
        }
        
        .block-link:hover {
            background: white;
            color: #01559b;
            transform: translateX(5px);
        }
        
        .block-link i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .block-link:hover i {
            transform: translateX(5px);
        }
        
        .block-bg {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 120px;
            height: 120px;
            opacity: 0.08;
            transition: all 0.5s ease;
        }
        
        .block:hover .block-bg {
            transform: scale(1.3);
            opacity: 0.12;
        }
        
        .accent-line {
            height: 4px;
            width: 50px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 2px;
            margin-bottom: 20px;
            transition: width 0.4s ease;
        }
        
        .block:hover .accent-line {
            width: 80px;
        }
        
        @media (max-width: 1100px) {
            .blocks-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .blocks-container {
                grid-template-columns: 1fr;
            }
            
            .block {
                height: auto;
                min-height: 250px;
            }
            

        }

/*Блок наука конец*/
/*Платные услуги*/
.paid-services-text {max-width:700px;margin-top:90px;}

.paid-services-title{
font-weight: 600;
font-size: 48px;
color:#fff;
text-transform: uppercase;
}
.paid-services-subtitle{
font-weight: 500;
color:#fff;
font-size: 36px;

}
.square-c {margin-top:80px;}
.paid-bg {background:url(../i/study.png) no-repeat right top;min-height: 85vh;}
.bg-lines {background:url(../i/bg-lines.png) no-repeat center;background-size:cover;height:111px;width:100%;}
  .portals {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: minmax(120px, auto);
            grid-gap: 1rem;
            position: relative;
        }
        
        .portal__item {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            border-radius: .25rem;
            text-decoration: none;
            box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
            background: linear-gradient(270deg, #003A74 0%, #366CA8 100%);
            background-size: cover;
            background-position: center;
            transition: all .5s ease-in-out;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        /* Классы для управления высотой */
        .height-1 { grid-row: span 1; }
        .height-2 { grid-row: span 2; }
        .height-3 { grid-row: span 3; }
        .height-4 { grid-row: span 4; }
        
        .portal__image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transform: scale(1.1);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 1;
            filter: brightness(0.8);
        }
        
        .portal__item:hover .portal__image {
            opacity: 1;
            transform: scale(1);
        }
        
        .portal__item:hover {
            background: transparent;
        }
        
        .portal__headings {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .portal__heading {
            font-family: "Inter", sans-serif;
            line-height: 1.2;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
            position: relative;
            padding: 0 20px;
            color: white;
        }
        
        .portal__item:hover .portal__heading {
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .heading--bold {
            font-weight: 700;
            font-size: 24px;
            margin-bottom: 8px;
            position: relative;
        }
        
        /* Уголки для заголовков */
        .heading--bold::before,
        .heading--bold::after {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            border: 2px solid white;
            transition: all 0.4s ease;
        }
        
        .heading--bold::before {
            top: -5px;
            left: -5px;
            border-right: none;
            border-bottom: none;
        }
        
        .heading--bold::after {
            bottom: -5px;
            right: -5px;
            border-left: none;
            border-top: none;
        }
        
        .portal__item:hover .heading--bold::before,
        .portal__item:hover .heading--bold::after {
            width: 20px;
            height: 20px;
            border-color: white;
        }
        
        /* Анимации */
        .portal__item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        /* Адаптивность */
        @media (max-width: 1200px) {
            .portals {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 900px) {
            .portals {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 600px) {
            .portals {
                grid-template-columns: 1fr;
            }
            
            .portal__item {
                min-height: 120px;
            }
            
            /* На мобильных все карточки становятся одинаковой высоты */
            .height-1,
            .height-2,
            .height-3,
            .height-4 {
                grid-row: span 1;
            }
            
           
        }

/*конец платных услуг*/
.video-background img{object-fit: cover;
  width: 100%;
}
.bg-color {background:rgba(0, 73, 140, 1);}
img {
  max-width: 100%;
  height: auto;
}
a {transition: all 0.5s ease;}
html, body {
  overflow-x: hidden !important;
}
body {
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
    margin: 0;
 font-family: "Inter", sans-serif;
}
.sections-block h2 {
font-weight: 600;font-size: 32px;
text-transform: uppercase;
color:rgba(1, 85, 155, 1);
margin-bottom:20px;
}
.section-slider {margin-top:50px;margin-bottom:50px;}
.section-slider h2 {
font-weight: 600;font-size: 32px;
text-transform: uppercase;
color:rgba(1, 85, 155, 1);
margin-bottom:20px;
}
.img-slider {padding:20px;}
 .subtitle {
            color: #555;
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .map-container {
            position: relative;
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            background: white;
            padding: 20px;
        }
        
        .map-image {
            position: relative;
            width: 100%;
            height:600px;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .map-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .campus-label {
            position: absolute;
            bottom: 0;
            right: 0;
            border-top-left-radius: 20px;
            border-bottom-right-radius: 0px;
            opacity: 1;
            background: rgba(218, 218, 218, 0.6);
            padding: 20px 40px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 40px;
            line-height: 140%;
            letter-spacing: 0%;
            text-transform: uppercase;
            color: rgba(1, 85, 155, 1);
            z-index: 5;
        }
        
        .circles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .circle-item {
            position: absolute;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            background: white;
            border: 3px solid;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }
        
        .circle-item:hover {
            transform: scale(1.1);
        }
        
        .circle-icon {
            width: 24px;
            height: 24px;
        }
        
        .circle-info {
            position: absolute;
            background: rgba(1, 85, 155, 0.95);
            color: white;
            padding: 15px;
            border-radius: 10px;
            width: 200px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 100;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }
        
        .circle-info::after {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            border-style: solid;
        }
        
        .circle-item:hover .circle-info {
            opacity: 1;
            visibility: visible;
        }
        
        .info-title {
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 16px;
        }
        
        .info-description {
            font-size: 14px;
            line-height: 1.4;
        }
        
        /* Позиционирование кружочков и их информации */
        .circle-1 {
top: 310px;
  left: 400px;
            border-color: #FF6B6B;
        }
        
        .circle-1 .circle-info {
            top: -10px;
            left: 70px;
        }
        
        .circle-1 .circle-info::after {
            top: 20px;
            left: -10px;
            border-width: 8px 10px 8px 0;
            border-color: transparent rgba(1, 85, 155, 0.95) transparent transparent;
        }
        
        .circle-2 {
            top: 310px;
      left: 775px;
            border-color: #4ECDC4;
        }
        
        .circle-2 .circle-info {
            top: -10px;
            right: 70px;
        }
        
        .circle-2 .circle-info::after {
            top: 20px;
            right: -10px;
            border-width: 8px 0 8px 10px;
            border-color: transparent transparent transparent rgba(1, 85, 155, 0.95);
        }
        
        /* Лабораторный корпус - исправлено позиционирование */
        .circle-3 {
            top: 140px;
            right: 215px;
            border-color: #FFD166;
        }
        
        .circle-3 .circle-info {
            bottom: -10px;
            right: 70px;
        }
        
        .circle-3 .circle-info::after {
            bottom: 20px;
            right: -10px;
            border-width: 8px 0 8px 10px;
            border-color: transparent transparent transparent rgba(1, 85, 155, 0.95);
        }
        
        .circle-4 {
    bottom:325px;
  left: 600px;
            border-color: #6A0572;
        }
        
        .circle-4 .circle-info {
            bottom: -10px;
            right: 70px;
        }
        
        .circle-4 .circle-info::after {
            bottom: 20px;
            right: -10px;
            border-width: 8px 0 8px 10px;
            border-color: transparent transparent transparent rgba(1, 85, 155, 0.95);
        }
        


 
        .circle-5 {
top: 30px;
  right: 300px;
            border-color: #118AB2;
        }
        
        .circle-5 .circle-info {
            top: -10px;
            right: 70px;
        }
        
        .circle-5 .circle-info::after {
            top: 20px;
            right: -10px;
            border-width: 8px 0 8px 10px;
            border-color: transparent transparent transparent rgba(1, 85, 155, 0.95);
        }
        
 
        .circle-6 {
top: 50px;
  right: 400px;
            border-color: #118AB2;
        }
        
        .circle-6 .circle-info {
            top: -10px;
            right: 70px;
        }
        
        .circle-6 .circle-info::after {
            top: 20px;
            right: -10px;
            border-width: 8px 0 8px 10px;
            border-color: transparent transparent transparent rgba(1, 85, 155, 0.95);
        }

        .circle-7 {
top: 110px;
  right: 550px;
            border-color: #118AB2;
        }
        
        .circle-7 .circle-info {
            top: -10px;
            right: 70px;
        }
        
        .circle-7 .circle-info::after {
            top: 20px;
            right: -10px;
            border-width: 8px 0 8px 10px;
            border-color: transparent transparent transparent rgba(1, 85, 155, 0.95);
        }
        /* Анимация пульсации */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(1, 85, 155, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(1, 85, 155, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(1, 85, 155, 0);
            }
        }
        
        .circle-item {
            animation: pulse 2s infinite;
        }
        
        .circle-1 { animation-delay: 0s; }
        .circle-2 { animation-delay: 0.4s; }
        .circle-3 { animation-delay: 0.8s; }
        .circle-4 { animation-delay: 1.2s; }
        .circle-5 { animation-delay: 1.6s; }
 .circle-6 { animation-delay: 1.3s; }
    .circle-7 { animation-delay: 1.5s; }     
        @media (max-width: 768px) {
            
            .map-image {
                height: 400px;
            }
            
            .campus-label {
                font-size: 30px;
                padding: 15px 30px;
            }
            
            .circle-item {
                width: 40px;
                height: 40px;
            }
            
            .circle-icon {
                width: 20px;
                height: 20px;
            }
            
            .circle-info {
                width: 160px;
                padding: 12px;
            }
            
            .info-title {
                font-size: 14px;
            }
            
            .info-description {
                font-size: 12px;
            }
        }
        
        @media (max-width: 480px) {
            
            .map-image {
                height: 350px;
            }
            
            .campus-label {
                font-size: 24px;
                padding: 12px 24px;
            }
            
            .circle-item {
                width: 35px;
                height: 35px;
            }
            
            .circle-icon {
                width: 18px;
                height: 18px;
            }
            
            .circle-info {
                width: 140px;
                padding: 10px;
            }
        }


.bg-line {background:rgba(1, 85, 155, 1);
padding:30px 0px 30px 0px;
}
.bg-line {
    background: rgba(1, 85, 155, 1);
    padding: 12px 0;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

/* Левое меню */
.left-menu2 {
    display: flex;
    gap: 30px;
}

.menu-item {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.menu-item:hover {
    color: #ffd700;
}


/* Правая секция */
.right-section {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Соцсети */
.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

/* Поиск */
.search-container {
    position: relative;
}

.search-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.search-box {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: none;
    align-items: center;
    gap: 10px;
    min-width: 250px;
    z-index: 1000;
}

.search-box.active {
    display: flex;
    animation: slideDown 0.3s ease;
}

.search-input {
    border: none;
    outline: none;
    padding: 8px 12px;
    border-radius: 4px;
    background: #f5f5f5;
    flex: 1;
    font-size: 14px;
}

.search-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close:hover {
    color: #333;
}

/* Личный кабинет */
.personal-cabinet {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.personal-cabinet:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffd700;
}

.personal-cabinet svg {
    transition: all 0.3s ease;
}

.personal-cabinet:hover svg {
    transform: translateX(2px);
}

/* Анимации */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .top-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .left-menu {
        gap: 20px;
    }
    
    .right-section {
        gap: 15px;
    }
    
    .menu-item {
        font-size: 13px;
    }
    
    .personal-cabinet span {
        display: none;
    }
    
    .search-box {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .left-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
    }
}

   /* Герой блок */
        .hero-section {
            position: relative;
            max-height: 650px;
            width: 100%;
            display: flex;padding-bottom:40px;
            flex-direction: column;
            color: white;
            overflow: hidden;
        }

        /* Видео фон */
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }

        .video-background video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Затемнение поверх видео */
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: -1;
        }

        /* Шапка */
.hero-header-fl {
         display: flex;
            justify-content: space-between;
            align-items: center;
    
}
        .hero-header {
       
            padding: 30px 50px;
            background: rgba(0, 0, 0, 0.3);
        }

        .logo img {
            height:120px;
            width: auto;
        }

        /* Основное меню - 4 пункта */
        .main-menu {
            display: flex;
            gap: 40px;
        }

        .menu-link {
            color: white;
            text-decoration: none;
            font-size: 17px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 10px 0;
            white-space: nowrap;
        }

        .menu-link:hover {
            color: #ff6b00;
        }

        .menu-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff6b00;
            transition: width 0.3s ease;
        }

        .menu-link:hover::after {
            width: 100%;
        }

        /* Основной контент */
        .hero-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
         
        }

        .hero-title {

font-weight: 400;
font-size: 20px;

            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subtitle {

font-weight: 600;
font-size: 48px;

text-transform: uppercase;

            margin-bottom: 40px;
            opacity: 0.9;
        }

        /* Кнопка */
        .hero-button {
            display: inline-block;
            padding: 15px 40px;
            border: 2px solid white;
            color: white;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-align: center;
            width: fit-content;
        }

        .hero-button:hover {
            background: white;
            color: #01559B;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
        }

        /* Мобильное меню */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        /* Адаптивность */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 36px;
            }
            
            .main-menu {
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .hero-header {
                padding: 20px;
                position: relative;
            }

            .main-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(0, 0, 0, 0.9);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                text-align: center;
            }

            .main-menu.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-content {
                padding: 0 20px;
                text-align: center;
                align-items: center;
            }

            .hero-title {
                font-size: 28px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .hero-button {
                padding: 12px 30px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 24px;
            }

            .hero-subtitle {
                font-size: 16px;
            }
            
            .logo img {
                height: 50px;
            }
        }



/*Блок новостей*/
.section-news {margin-bottom:60px;margin-top:80px;}
 .news-container {
            display: flex;
            gap: 20px;
            max-width: 1280px;
            margin: 0 auto;
        }
        
        .main-news {
            width: 702px;
            height: 702px;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
            cursor: pointer;
        }
        
        .main-news:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        }
        
        .main-news img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
            filter: brightness(0.7);
        }
        
        .main-news:hover img {
            transform: scale(1.05);
            filter: brightness(0.8);
        }
        
        .news-content {
            position: absolute;
            bottom: 30px;
            left: 30px;
            color: white;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
            z-index: 2;
            transition: all 0.4s ease;
        }
        
        .main-news:hover .news-content {
            transform: translateY(-10px);
        }
        
        .news-date {
            font-size: 16px;
            margin-bottom: 10px;
            opacity: 0.9;
            transition: all 0.4s ease;
        }
        
        .main-news:hover .news-date {
            opacity: 1;
        }
        
        .news-title {
            font-size: 28px;
            font-weight: bold;
            max-width: 90%;
            line-height: 1.3;
            transition: all 0.4s ease;
        }
        
        .main-news:hover .news-title {
            transform: scale(1.03);
        }
        
        .side-news {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 558px;
        }
        
        .news-item {
            width: 558px;
            height: 294px;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            transition: all 0.4s ease;
            cursor: pointer;
        }
        
        .news-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
        }
        
        .news-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
            filter: brightness(0.7);
        }
        
        .news-item:hover img {
            transform: scale(1.05);
            filter: brightness(0.8);
        }
        
        .news-item .news-content {
            bottom: 20px;
            left: 20px;
        }
        
        .news-item .news-title {
            font-size: 20px;
            max-width: 80%;
        }
        
        .news-item:hover .news-content {
            transform: translateY(-5px);
        }
        
        .all-news-link {
            display: flex;
            align-items: center;

            margin-top: 10px;
            color: #01559B;
            font-weight: bold;
            text-decoration: none;
            font-size: 18px;
            padding: 10px 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .all-news-link:hover {
            background-color: rgba(1, 85, 155, 0.1);
            transform: translateX(-5px);
        }
        
        .all-news-link svg {
            margin-left: 8px;
            transition: all 0.3s ease;
        }
        
        .all-news-link:hover svg {
            transform: translateX(5px);
        }
        
        /* Эффект наложения поверх изображения */
        .news-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
            z-index: 1;
            opacity: 0.8;
            transition: all 0.4s ease;
        }
        
        .main-news:hover .news-overlay,
        .news-item:hover .news-overlay {
            opacity: 0.9;
        }
        
        /* Адаптивность */
        @media (max-width: 1300px) {
            .news-container {
                flex-direction: column;
                align-items: center;
            }
            
            .side-news {
                width: 702px;
            }
            
            .news-item {
                width: 702px;
            }
        }
        
        @media (max-width: 768px) {
            .main-news, .news-item {
                width: 100%;
                height: auto;
                aspect-ratio: 1/1;
            }
            
            .side-news {
                width: 100%;
            }
            
            .news-title {
                font-size: 22px;
            }
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 30px;
            color: #01559B;
            font-size: 32px;
            font-weight: 700;
        }


/*Конец блока новостей*/


/*3 ссылки*/

   .activities-section {
            max-width: 1280px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: #01559B;
            font-size: 32px;
            font-weight: 700;
        }
        
        .activities-container {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }
        
        .activity-item {
            width: 413px;
            height: 413px;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
        }
        
        .activity-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        }
        
        .activity-link {
            display: block;
            width: 100%;
            height: 100%;
            text-decoration: none;
            color: inherit;
        }
        
        .activity-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
            filter: brightness(0.85);
        }
        
        .activity-item:hover .activity-img {
            transform: scale(1.08);
            filter: brightness(0.95);
        }
        
        .activity-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 25px;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
            color: white;
            z-index: 2;
            transition: all 0.4s ease;
        }
        
        .activity-item:hover .activity-content {
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
            padding-bottom: 30px;
        }
        
        .activity-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
            transition: all 0.4s ease;
        }
        
        .activity-item:hover .activity-title {
            transform: translateY(-5px);
        }
        
        .activity-desc {
            font-size: 16px;
            opacity: 0.9;
            max-width: 90%;
            line-height: 1.4;
            transition: all 0.4s ease;
        }
        
        .activity-item:hover .activity-desc {
            opacity: 1;
            transform: translateY(-3px);
        }
        
        /* Адаптивность */
        @media (max-width: 1300px) {
            .news-container {
                flex-direction: column;
                align-items: center;
            }
            
            .side-news {
                width: 702px;
            }
            
            .news-item {
                width: 702px;
            }
            
            .activities-container {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
        
        @media (max-width: 900px) {
            .activity-item {
                width: 100%;
                max-width: 413px;
                height: auto;
                aspect-ratio: 1/1;
            }
        }
        
        @media (max-width: 768px) {
            .main-news, .news-item {
                width: 100%;
                height: auto;
                aspect-ratio: 1/1;
            }
            
            .side-news {
                width: 100%;
            }
            
            .news-title {
                font-size: 22px;
            }
            
            .activity-title {
                font-size: 24px;
            }
        }
.container{
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}
.container-fluid{
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

.row{
	margin-right: -15px;
	margin-left: -15px;
}
.row-flex{
	display: flex;
	flex-flow: row wrap;
}



    /* Блок 2 - Основные разделы */
        .sections-block {
            margin: 50px auto;
            max-width: 1280px;
        }

        .sections-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .main-section, .side-section {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #f0f0f0;
            transition: box-shadow 0.3s ease;
        }

        .main-section:hover, .side-section:hover {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .main-section {
            flex: 1;
            min-height: 280px;
        }

        .side-section {
            width: 433px;
            min-height: 280px;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f0f0;
        }

        .section-title-small {
            font-family: Inter;
            font-weight: 600;
            font-size: 22px;
            color: rgba(1, 85, 155, 1);
            margin: 0;
        }

        .section-icon {
            color: rgba(1, 85, 155, 1);
            font-size: 20px;
            opacity: 0.7;
        }

        /* Улучшенные стили для ссылок */
        .section-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .section-link {
            font-family: Inter;
            font-weight: 500;
            font-size: 16px;
            color: rgba(1, 85, 155, 1);
            text-decoration: none;
            padding: 14px 18px;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 10px;
            background: #f8fafc;
            border: 1px solid rgba(1, 85, 155, 0.1);
            position: relative;
            overflow: hidden;
        }

        .section-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(1, 85, 155, 0.05), transparent);
            transition: left 0.5s ease;
        }

        .section-link:hover::before {
            left: 100%;
        }

        .section-link:hover {
            background: rgba(1, 85, 155, 0.05);
            color: rgba(1, 85, 155, 1);
            border-color: rgba(1, 85, 155, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(1, 85, 155, 0.15);
        }

        .section-link-arrow {
            color: rgba(1, 85, 155, 1);
            font-size: 16px;
            transition: all 0.3s ease;
            opacity: 0.7;
            transform: translateX(0);
        }

        .section-link:hover .section-link-arrow {
            opacity: 1;
            transform: translateX(5px);
        }

        /* Блок 3 - Нижние секции */
        .bottom-sections {
            display: flex;
            gap: 20px;
        }

        .services-section {
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #f0f0f0;
            transition: box-shadow 0.3s ease;
        }

        .services-section {
            flex: 1;
            background: white;
            min-height: 380px;
        }

        .services-section:hover {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .info-section {
            width: 701px;
            position: relative;
            overflow: hidden;
        }

        .info-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm1 1h38v38H1V1z'/%3E%3C/g%3E%3C/svg%3E");
        }

        .services-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .service-link {
            font-family: Inter;
            font-weight: 500;
            font-size: 16px;
            color: rgba(1, 85, 155, 1);
            text-decoration: none;
            padding: 14px 18px;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 10px;
            background: #f8fafc;
            border: 1px solid rgba(1, 85, 155, 0.1);
            position: relative;
            overflow: hidden;
        }

        .service-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(1, 85, 155, 0.05), transparent);
            transition: left 0.5s ease;
        }

        .service-link:hover::before {
            left: 100%;
        }

        .service-link:hover {
            background: rgba(1, 85, 155, 0.05);
            color: rgba(1, 85, 155, 1);
            border-color: rgba(1, 85, 155, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(1, 85, 155, 0.15);
        }

        .service-link-arrow {
            color: rgba(1, 85, 155, 1);
            font-size: 16px;
            transition: all 0.3s ease;
            opacity: 0.7;
            transform: translateX(0);
        }

        .service-link:hover .service-link-arrow {
            opacity: 1;
            transform: translateX(5px);
        }

        .info-content {
            color: white;
            height: 100%;
 
            position: relative;
            z-index: 2;
        }

        .info-title {
            font-size: 20px;
            margin-bottom: 16px;
            font-weight: 600;
        }

        .info-text {
            font-size: 16px;
            line-height: 1.6;
            opacity: 0.9;
            max-width: 80%;
        }

        /* Адаптивность */
        @media (max-width: 1300px) {
            .sections-row, .bottom-sections {
                flex-direction: column;
            }
            
            .main-section, .side-section, .services-section, .info-section {
                width: 100% !important;
            }
        }

        @media (max-width: 768px) {
            .slide-img {
                height: 300px;
            }
            
            .section-title-small {
                font-size: 20px;
            }
            
            .section-link, .service-link {
                font-size: 15px;
                padding: 12px 16px;
            }
            
            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .main-section, .side-section, .services-section, .info-section {
                padding: 24px;
            }
            
            .section-header {
                margin-bottom: 20px;
                padding-bottom: 12px;
            }
        }

        @media (max-width: 480px) {
            .section-header {
                flex-direction: column;
                gap: 10px;
            }
            
            .section-icon {
                align-self: flex-end;
            }
        }



  /* Стили для формы */
        .form-section {
            max-width: 800px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .form-container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            position: relative;
            animation: fadeIn 0.8s ease;
        }

        .form-header {
            background: linear-gradient(135deg, rgba(1, 85, 155, 1), #0178D4);
            padding: 30px;
            color: white;
            text-align: center;
        }

        .form-title {
            font-size: 32px;
            font-weight: 700;
            margin: 0;
            animation: fadeInDown 0.8s ease;
        }

        .form-subtitle {
            font-size: 16px;
            opacity: 0.9;
            margin-top: 10px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .form-body {
            padding: 40px;
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .form-group {
            flex: 1 0 50%;margin-bottom:15px;
            position: relative;padding:0px 10px;
            animation: fadeInUp 0.6s ease both;
        }

        .form-group:nth-child(1) { animation-delay: 0.3s; }
        .form-group:nth-child(2) { animation-delay: 0.4s; }
        .form-group:nth-child(3) { animation-delay: 0.5s; }
        .form-group:nth-child(4) { animation-delay: 0.6s; }
        .form-group:nth-child(5) { animation-delay: 0.7s; }

        .form-input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e6e6e6;
            border-radius: 10px;
            font-size: 16px;
            font-family: "Inter", sans-serif;
            transition: all 0.3s ease;
            background: #f8fafc;
        }

        .form-input::placeholder {
            color: #999;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #01559B;
            background: white;
            box-shadow: 0 0 0 4px rgba(1, 85, 155, 0.1);
        }

        .form-input:focus::placeholder {
            color: #01559B;
            transform: translateY(-5px);
            font-size: 14px;
        }

        .file-input-wrapper {
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .file-input {
            position: absolute;
            left: -9999px;
        }

        .file-label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 20px;
            border: 2px dashed #e6e6e6;
            border-radius: 10px;
            background: #f8fafc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .file-label:hover {
            border-color: #01559B;
            background: rgba(1, 85, 155, 0.05);
        }

        .file-text {
            color: #666;
        }

        .file-button {
            background: #01559B;
            color: white;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .file-label:hover .file-button {
            background: #003366;
            transform: scale(1.05);
        }

        .form-submit {
            display: block;
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, rgba(1, 85, 155, 1), #0178D4);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            margin-top: 20px;
            animation: fadeInUp 0.8s ease 0.8s both;
            position: relative;
            overflow: hidden;
        }

        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(1, 85, 155, 0.3);
        }

        .form-submit:active {
            transform: translateY(0);
        }

        .form-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .form-submit:hover::before {
            left: 100%;
        }

        /* Анимации */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(1, 85, 155, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(1, 85, 155, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(1, 85, 155, 0);
            }
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .form-group {
                flex: 1 0 100%;
            }
            
            .form-body {
                padding: 30px 20px;
            }
            
            .form-title {
                font-size: 26px;
            }
        }

        /* Дополнительные эффекты */
        .form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #01559B, #0178D4, #01559B);
            background-size: 200% 100%;
            animation: gradientShift 3s ease infinite;
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        .success-message {
            display: none;
            text-align: center;
            padding: 40px;
            background: #f0f9ff;
            border-radius: 10px;
            margin-top: 20px;
            animation: fadeInUp 0.6s ease;
        }

        .success-icon {
            font-size: 60px;
            color: #01559B;
            margin-bottom: 20px;
            animation: bounce 0.6s ease;
        }

        .success-text {
            font-size: 18px;
            color: #01559B;
            font-weight: 600;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }
.img-ll {width:220px;position: absolute;bottom:0px;right:0px;}
        /* Стили для плавающих placeholder */
        .floating-label {
            position: relative;
            margin-bottom: 25px;
        }

        .floating-input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e6e6e6;
            border-radius: 10px;
            font-size: 16px;
            font-family: "Inter", sans-serif;
            transition: all 0.3s ease;
            background: #f8fafc;
        }

        .floating-input:focus {
            outline: none;
            border-color: #01559B;
            background: white;
            box-shadow: 0 0 0 4px rgba(1, 85, 155, 0.1);
        }

        .floating-label-text {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 16px;
            pointer-events: none;
            transition: all 0.3s ease;
            background: #f8fafc;
            padding: 0 5px;
        }

        .floating-input:focus + .floating-label-text,
        .floating-input:not(:placeholder-shown) + .floating-label-text {
            top: 0;
            font-size: 12px;
            color: #01559B;
            background: white;
        }


 .footer-container {
            background: linear-gradient(135deg, #01559B 0%, #003366 100%);
            color: white;
            padding: 50px 0 0;
            margin-top: 70px;
        }

        .footer-content {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
        }

        .footer-logo {
            max-width: 200px;
            margin-bottom: 20px;

        }

        .footer-column p {
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .footer-column img {
            border-radius: 8px;
            padding: 10px;
        }

        .footer-heading {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #ff6b00;
        }

        .footer-links {
            list-style: none;padding: 0px;

        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            padding: 5px 0;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-links i {
            font-size: 14px;
            opacity: 0.7;
        }

        .footer-address {
            font-style: normal;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-address a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-address a:hover {
            color: white;
            text-decoration: underline;
        }

        .footer-image {
            text-align: center;
            margin-top: 15px;
        }

        .footer-image img {
            border-radius: 10px;
            transition: all 0.3s ease;
            max-width: 100%;
        }

        .footer-image img:hover {
            transform: scale(1.03);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-links-row {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-links-row p {
            text-align: center;
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 15px;
        }

        .footer-links-row a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin: 0 5px;
            transition: all 0.3s ease;
        }

        .footer-links-row a:hover {
            color: white;
            text-decoration: underline;
        }

        .footer-credits {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }

        .footer-credits a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-credits a:hover {
            color: white;
        }

        /* Адаптивность */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-container {
                padding: 30px 0 0;
            }
            
            .footer-credits {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }

        /* Дополнительные стили для улучшения внешнего вида */
        .contact-highlight {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 8px;
            margin-top: 10px;
        }

        .logo-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

footer {margin-top:70px;padding-bottom:15px;}

.dev {
    text-align:right;
}
.dev a {
    display: block;

}

.dev a img {
    display: inline-block;
    vertical-align: middle;
}

.dev a span {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;line-height: 1.2em;
    text-align: left;
font-weight: 400;
font-size: 16px;
color:rgba(55, 45, 44, 1);
    position: relative;
    transition: .3s color;
}
 .dev a:hover {text-decoration:none;}
 .dev a:hover span {
    color: rgba(55, 45, 44, 1);
}




.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;
}

.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
}