body {
    font-family: 'Exo 2', sans-serif; /* Применяем шрифт Roboto */
    font-weight:300;
    color:#30478E;
}
 
img, div {
    width:100%;
    transition:0.5s ease;
    box-sizing: border-box;
    
}

.single_img {
    border-radius:10px;
}
    
/* Контейнер, занимающий 100vh и 100vw, с переливающимся градиентом */
.container-full {
  display: flex;
  justify-content: flex-start; /* Выровнять по левому краю */
  align-items: center; /* Выровнять по центру по вертикали */
  width: 100vw;
  height: 100vh;
  position: relative;
  background: linear-gradient(45deg, #4D80C0, #1A315F);

 
}

.form-small {
    margin-top:0.5rem;
    font-size:0.8rem;
}

    /* Изображение, которое будет выровнено по центру */
    .centered-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain; /* Чтобы изображение сохранило пропорции и не выходило за пределы */
    }
    
/* Исходное состояние: элемент полностью прозрачен */
.map_el {
  opacity: 0;
  transition: opacity 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease; /* Плавное изменение прозрачности, подсветки и затемнения */
}

.map_el g image{
  
}

/* При наведении: элемент становится видимым, появляется подсветка и затемнение нижних элементов */
.map_el:hover {
  opacity: 1;
  box-shadow: 0 0 5px rgba(255, 165, 0, 1); /* Добавляем подсветку оранжевым цветом */
  cursor:pointer;
  border:2px solid #ff0000;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8)); /* Плавное появление подсветки */
}

.map_el:hover g image{

//  box-shadow: 0 0 5px rgba(255, 165, 0, 1); /* Добавляем подсветку оранжевым цветом */

}
   
   g #base {
       filter: grayscale(100%);
   }

.navbar1 ul{
    list-style:none;
    color:#fff;
    padding-right:2rem;
    font-size:0.8rem;
    
}

.navbar1 ul li{
    margin-bottom:1rem;
    cursor:pointer;
    opacity:0.6;
}

.navbar1 ul li:hover{
    opacity:1;
}

.hovered {
    //outline: 2px solid #007bff; /* Голубая рамка для визуализации */
    opacity: 1; /* Лёгкая прозрачность */
    cursor: pointer;
    font-weight:700;
}

.navbar1 ul .hovered {
    //outline: 2px solid #007bff; /* Голубая рамка для визуализации */
    opacity: 1; /* Лёгкая прозрачность */
    cursor: pointer;
    font-weight:700;
}

.navbar1 li:before {
    position: absolute;
    margin: 4px 0 0 -1.4rem;
    content: "";
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 1px solid #fff;
}

/* Цвета кружочков по порядку */
.navbar1 li:nth-child(1)::before {
  background-color: #008c75; /* Зеленый */
}

.navbar1 li:nth-child(2)::before {
  background-color: #0099cc; /* Голубой */
}

.navbar1 li:nth-child(3)::before {
  background-color: #f0f0f0; /* Белый */
}

.navbar1 li:nth-child(4)::before {
  background-color: #cb5c9e; /* Розовый */
}

.navbar1 li:nth-child(5)::before {
  background-color: #0099cc; /* Голубой */
}

.navbar1 li:nth-child(6)::before {
  background-color: #6a42a0; /* Фиолетовый */
}

.navbar1 li:nth-child(7)::before {
  background-color: #008c75; /* Зеленый */
}

.navbar1 li:nth-child(8)::before {
  background-color: #ff4f5c; /* Красный */
}

.navbar1 li:nth-child(9)::before {
  background-color: #8b8b8b; /* Серый */
}

.navbar1 li:nth-child(10)::before {
  background-color: #ffb61b; /* Желтый */
}

.navbar1 li:nth-child(11)::before {
  background-color: #f24242; /* Красный */
}

.navbar1 li:nth-child(12)::before {
  background-color: #f0f0f0; /* Белый */
}

.navbar1 li:nth-child(13)::before {
  background-color: #ffb61b; /* Белый */
}





.navbar1 li:hover {
    font-weight:700;
    opacity:1;
}





  .sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(45deg, #4D80C0f0, #1A315Fff);
    color: #fff;
    padding: 20px;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    overflow-y: auto; /* Добавляем прокрутку */
    z-index:9999;
  }
  
.mapinfo_img {
    width:100%;
    max-width:700px;
    border-radius:5px;
}

#children {
    display: grid; /* Включаем Grid */
    grid-template-columns: 1fr 1fr; /* Две равные колонки */
    gap: 10px; /* Расстояние между колонками */
  //  max-width: 800px; /* Максимальная ширина контейнера */
    margin: 0 auto; /* Центрируем контейнер */
    padding: 10px; /* Внутренние отступы */
    box-sizing: border-box; /* Включаем padding в общую ширину */
    
}

  .sidebar a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin: 0rem 0;
    padding: 5px;
    border-radius: 4px;
    text-decoration: underline;
  }

  .sidebar a:hover {
    background-color: #4d80c0;
  }

  .btn-collapse {
    margin-top: 20px;
    background-color: #ff4c4c;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
  }

  .btn-collapse:hover {
    background-color: #ff0000;
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  
a {
    color:#30478E;
    text-decoration:none;
    transition:0.5s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo 2';
    font-weight:900;
}

h1 {
    font-size:4rem;
}

h2 {
    text-transform:uppercase;
    font-size:3rem;
    
}

h4 {
    font-size:1.4rem;
}

h4 {
    font-size:1.2rem;
}

h5 {
    font-size:1rem;
    font-weight:700;
}

.header-inner {
    display:flex;
    padding:0.5rem 2rem;
    width: 100%;
    justify-content: space-between;
}

.header_right {
    width:max-content;
    display:flex;
    flex-direction: column;
}

.menu-logo {
    width:10rem;
    margin-top:-0.45rem;
    margin-right:2rem;
}

.headmenu {
    display:flex;
    list-style:none;
    width:max-content;
    margin:auto;
    gap: 2rem;
    padding: 0;
}

.vcenter {
    display: flex;
    align-items: center;
}

.headmenu .active {
    font-weight:700;
}

.headmenu li a:hover {
    font-weight:700;
    transition:0.5s ease;
}


  
footer {
    background: linear-gradient(45deg, #F4F4F4, #eee);
    font-size:0.7rem;
    color:#30478E;
}

footer a{
    color:#30478E;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    
    margin:0rem auto;
    padding:2rem 2rem;
}

footer h5 {
    font-size:0.9rem;
    
}

.footer_menu {
    list-style:none;
    padding:0;
    margin:0rem 0 0.5rem 0;
}

.footer_logo {
    max-width:10rem;
    margin:0 0 1rem 0;
}

.block img{
    border-radius:5px;
}

  
.block {
    padding: 2rem 2rem;
    
}  

.block-inner {
    max-width:800px;
    margin:2rem auto;

}

.block_single {
    max-width:800px;
    margin:2rem auto;

}

.about {
    background: linear-gradient(45deg, #4D80C0, #1A315F);
    color:#fff;
}


  
.container-3 {
    margin:1rem 0 2rem 0;
}
  
.block_filters {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3 колонки на десктопе */
    gap: 2rem; /* промежуток между колонками */
}

.features_ {
    background: linear-gradient(45deg, #F4F4F4, #eee);
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 колонки на десктопе */
    gap: 2rem; /* промежуток между колонками */
    list-style:none;
    padding:0;
    margin:1rem 0;
}

.features h3{
    font-size:1.2rem;
}

.block_2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.purposes {
    background: linear-gradient(45deg, #1A315F, #0F264C);
    color:#fff;
}

.services_wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 колонки на десктопе */
    gap: 2rem; /* промежуток между колонками */
    margin:2rem 0;
}

.projects_wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 колонки на десктопе */
    gap: 2rem; /* промежуток между колонками */
    margin:2rem 0;
}

.services {
    background: linear-gradient(45deg, #1A315F, #0F264C);
    color:#fff;
}

.about a, .features a, .purposes a, .services h2 a {
    color:#fff!important;
}

.contacttable{
    border:none;
}

.contact-info {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.contact-item {
  margin-bottom: 15px;
}

.contact-item strong {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-item p {
  margin: 0;
}

.contact-item a {
  color: #0066cc;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}




.menu-content {
    text-align:center;
}

.menu-content .headmenu {
    display: flex;
    gap: 0.0rem;
    flex-direction: column;
    margin-bottom:2rem;
} 

.menu-content a {
    display: block;
    text-decoration: none;
    color: white;
    font-size: 24px;
    margin: 4px 0;
    transition: color 0.3s ease;
}

/* Кнопка прокрутки вверх */
        .scroll-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: none; /* По умолчанию скрыта */
            z-index: 1000;
            width: 50px;
            height: 50px;
            border: none;
            background-color: #30478E; /* Цвет кнопки */
            color: #fff;
            border-radius: 50%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .scroll-to-top:hover {
            background-color: #0056b3; /* Цвет при наведении */
            transform: scale(1.1); /* Увеличение кнопки */
        }

        /* Иконка внутри кнопки */
        .scroll-to-top i {
            font-size: 24px;
            line-height: 50px;
        }



/* Логотип белый */
.navbar .menu-logo {
  width: 250px;
  filter: brightness(0) invert(1); /* Делает логотип белым */
  
}

.navbar .sk-logo {
  width: 120px;
  filter: brightness(0) invert(1); /* Делает логотип белым */
  margin-top:-0.5rem;
}

/* Фиксированное меню сверху */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  background: transparent;
  padding: 10px 15px;
}

/* Всплывающее меню */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9); /* Темный полупрозрачный фон */
  z-index: 1040;
  display: none; /* Скрыто по умолчанию */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  opacity: 0; /* Начальное состояние - прозрачное */
}

/* Показ меню */
.fullscreen-menu.active {
  display: flex;
  opacity: 1; /* Видимое меню */
}

/* Кнопка закрытия меню */
.closebtn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 36px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.closebtn:hover {
  color: #0d6efd;
}

/* Контент меню */
.menu-content a {
  display: block;
  text-decoration: none;
  color: white;
  font-size: 24px;
  margin: 15px 0;
  transition: color 0.3s ease;
}

.menu-content a:hover {
  color: #0d6efd;
}

.menu-content .btn {
  margin-top: 20px;
}

.navbar-toggler {
  display: block !important;
}

/* Сделать иконку гамбургера белой */
.navbar-toggler {
  color: white; /* Цвет иконки */
  border: none; /* Цвет границы */
  background:#1A315F22;
}

/* Сделать иконку гамбургера белой с использованием изображения SVG */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  filter: brightness(0) invert(1); /* Если нужно использовать CSS-фильтры */
}

.project_announce, .filter_announce{
    //box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    border:#30478E 2px solid;
    border-radius:7px;
}

.project_announce:hover, .filter_announce:hover{
    box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.2);
    border:#df514a 2px solid;
}

.project_announce_info {
    padding:0.5rem 1rem;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #30478E!important;
    --bs-btn-border-color: #30478E!important;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #30478E!important;
    --bs-btn-hover-border-color: #30478E!important;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #30478E!important;
    --bs-btn-active-border-color: #30478E!important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #30478E!important;
    --bs-btn-disabled-border-color: #30478E!important;
}

.block_single a {
    text-decoration:underline;
}

.company-card {
            width: 200px;
            height: 160px;
            background-color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            border: none;
            border-radius: 0px;
            overflow: hidden;
            margin: auto;
        }
        .company-card img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain; /* Сохраняет пропорции логотипа */
        }
        

.sk-logo {
    width:100px;
} 

.navbar-brand {
    width:260px;
}

.maps-nav {
    color: #fff;
    position: absolute;
    margin: 5rem 0 0 2rem;
    z-index: 9;
    list-style: none;
    padding: 0;
    display:flex;
    font-size:0.9rem;
    
}

.maps-nav li{
    margin-right:1rem;
    cursor:pointer;
    opacity:0.4;
}

.maps-nav li:hover{
    opacity:1;
}

    .hidden {
        display: none;
    }
    .maps-nav .active {
        opacity:1;
    }

@media (max-width: 768px) {
    .container-3 {
        grid-template-columns: repeat(2, 1fr); /* 2 колонки на мобильных устройствах */
    }
}






















