    /* Menu idea is inspired by https://web-revenue.ru */

    /* ============================================
       CSS ПЕРЕМЕННЫЕ
       ============================================ */
    :root {
      /* Цвета */
      --primary-color: rgb(241, 110, 49);
      --primary-hover: rgb(236, 102, 40);
      --text-color: #ffffff;
      --text-hover: #fafafa;
      --dropdown-bg: #ffffff;
      --dropdown-text: #333333;
      --overlay-bg: rgba(0, 0, 0, 0.7);

      /* Размеры */
      --header-height: 60px;
      --container-width: 1200px;

      /* Анимация */
      --transition-speed: 0.3s;
    }

    @keyframes ani {
      0% {opacity: 0;}
      100% {opacity: 1;}
    }

    /* ============================================
       RESET
       ============================================ */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
      line-height: 1.6;
      color: #333;
      background: #eeeeee;
      top: 0px !important;
      display: flex;
      flex-direction: column;
      height: 100%;
      
    }

    /* .wrapper {
      height: 100%;
    } */

    .main_ {
      /* min-height: 100%; */
      flex: 1;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: color var(--transition-speed);
    }

    ul {
      list-style: none;
    }

    .a_on_white {
      text-decoration: underline;
      color: var(--primary-color);
      transition: color var(--transition-speed);
    }
    
  /* Google Translate */
  
  .language {
    display:inline-block;
  }

  .language__img {
    margin: 2px;
    cursor: pointer;
    opacity: .5;
  }

  .language__img:hover,
  .language__img_active {
    opacity: 1;
    font-weight: bold;
  }

  /* Прячем панель гугла */
  .skiptranslate {
    display: none !important;
  }

  /* Фиксируем позицию body, которую меняет панель гугла*/
  .page_fix {
    top: 0 !important;
    position: static !important;
  }

    /* ============================================
       HEADER
       ============================================ */
    .header {
      /* background-color: var(--primary-color); */
      position: sticky;
      top: 0;
      z-index: 1000;
      /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
      /* max-width: var(--container-width); */
      margin: 0 auto;
    }

    .container {
      background-color: var(--primary-color);
      /* max-width: var(--container-width); */
      margin: 0 auto;
      padding: 0 5px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      /* height: var(--header-height); */
    }

    .flex_left {
      background-color: var(--primary-color);
      /* max-width: var(--container-width); */
      /* margin: 0 auto; */
      /* padding: 0 20px; */
      display: flex;
      align-items: center;
      justify-content: left;
      height: var(--header-height);
    }

    .flex_left_footer {
      background-color: var(--primary-color);
      /* max-width: var(--container-width); */
      /* margin: 0 auto; */
      /* padding: 0 20px; */
      display: flex;
      align-items: center;
      justify-content: left;
      white-space: nowrap;
      /* height: var(--header-height); */
    }

    .flex_left_white {
      display: flex;
      align-items: center;
      justify-content: left;
      padding: 10px 0px;
    }

    .header_info {
      color: #ffffff;
      font-size: 16px;
      display: inline-block;
    }

    .div_logo {
      /* margin: 0 5px; */
      /* padding: 0 20px; */
      display: inline-block;
    }
    /* ============================================
       LOGO
       ============================================ */
    .logo {
      font-size: 20px;
      font-weight: 700;
      /* color: var(--text-color); */
      color:rgba(0, 0, 0, 0.9);
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: color var(--transition-speed);
    }

    .logo:hover {
      color: var(--text-hover);
    }

    /* ============================================
       СКРЫВАЕМ CHECKBOX
       ============================================ */
    .menu-toggle,
    .dropdown-toggle {
      display: none;
    }

    /* ============================================
       ГАМБУРГЕР ИКОНКА (скрыта на desktop)
       ============================================ */
    .menu-icon {
      display: none;
      cursor: pointer;
      width: 30px;
      height: 30px;
      position: relative;
      z-index: 1001;
    }

    .menu-icon-line,
    .menu-icon-line::before,
    .menu-icon-line::after {
      display: block;
      width: 100%;
      height: 3px;
      background: var(--text-color);
      border-radius: 3px;
      transition: all var(--transition-speed);
    }

    .menu-icon-line {
      position: relative;
      top: 50%;
      transform: translateY(-50%);
    }

    .menu-icon-line::before,
    .menu-icon-line::after {
      content: '';
      position: absolute;
      left: 0;
    }

    .menu-icon-line::before {
      top: -8px;
    }

    .menu-icon-line::after {
      top: 8px;
    }

    /* Анимация в крестик */
    .menu-toggle:checked ~ .menu-icon .menu-icon-line {
      background: transparent;
    }

    .menu-toggle:checked ~ .menu-icon .menu-icon-line::before {
      top: 0;
      transform: rotate(45deg);
    }

    .menu-toggle:checked ~ .menu-icon .menu-icon-line::after {
      top: 0;
      transform: rotate(-45deg);
    }

    /* ============================================
       ОСНОВНОЕ МЕНЮ (DESKTOP)
       ============================================ */
    .menu {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .logo_img {
      display: block;
    }

    .menu > li {
      position: relative;
    }

    .menu > li > a,
    .dropdown-label {
      display: flex;
      align-items: center;
      padding: 10px 18px;
      color: var(--text-color);
      font-size: 16px;
      font-weight: 500;
      border-radius: 6px;
      transition: all var(--transition-speed);
      cursor: pointer;
      white-space: nowrap;
    }

    .menu > li > a:hover,
    .menu > li:hover .dropdown-label {
      background-color: var(--primary-hover);
      color: var(--text-hover);
    }

    /* Стрелка dropdown */
    .dropdown-arrow {
      margin-left: 5px;
      font-size: 12px;
      transition: transform var(--transition-speed);
    }

    /* ============================================
       DROPDOWN ПОДМЕНЮ (DESKTOP)
       ============================================ */
    .submenu {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 220px;
      background: var(--dropdown-bg);
      border-radius: 8px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
      padding: 0px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all var(--transition-speed);
      z-index: 100;
    }
   .dropdown > .submenu > .dropdown > .dropdown-label {
	background: var(--dropdown-bg);
	color: var(--dropdown-text);
   }
   .dropdown > .submenu > .dropdown:hover > .dropdown-label {
      background-color: rgba(65, 84, 241, 0.1);
      color: var(--primary-color);
   }
    /* Показываем при hover */
    .dropdown:hover > .submenu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    /* Поворачиваем стрелку */
    .dropdown:hover > .dropdown-label .dropdown-arrow {
      transform: rotate(180deg);
    }

    /* Стили ссылок в подменю */
    .submenu li {
      position: relative;
    }

    .submenu li a,
    .submenu .dropdown-label {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 5px 20px;
      color: var(--dropdown-text);
      font-size: 15px;
      transition: all var(--transition-speed);
      cursor: pointer;
    }

    .submenu li a:hover,
    .submenu li:hover > .dropdown-label {
      background-color: rgba(65, 84, 241, 0.1);
      color: var(--primary-color);
      padding-left: 10px;
    }

    /* ============================================
       ВЛОЖЕННЫЙ DROPDOWN (3-Й УРОВЕНЬ)
       ============================================ */
    .submenu .dropdown .submenu {
      top: 0;
      left: 100%;
      margin-left: 5px;
    }

    .submenu .dropdown:hover > .submenu {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
    }

    .submenu .dropdown:hover > .dropdown-label .dropdown-arrow {
      transform: rotate(-90deg);
    }

    /* Стрелка вправо для 3-го уровня */
    .submenu .dropdown > .dropdown-label .dropdown-arrow {
      transform: rotate(-90deg);
    }

    /* ============================================
       МОБИЛЬНАЯ ВЕРСИЯ
       ============================================ */
    @media (max-width: 1110px) {
      /* Показываем гамбургер */
      .menu-icon {
        display: block;
      }

      
      /* Скрываем меню по умолчанию */
      .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--primary-color);
        padding: 80px 0 20px;
        overflow-y: auto;
        transition: right var(--transition-speed);
        z-index: 999;
      }

      /* Показываем при checked */
      .menu-toggle:checked ~ .nav {
        right: 0;
      }

      /* Overlay фон */
      .menu-toggle:checked ~ .nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 300px;
        bottom: 0;
        background: var(--overlay-bg);
        backdrop-filter: blur(3px);
        z-index: -1;
      }

      /* Меню вертикальное */
      .menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
      }

      .menu > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .menu > li > a,
      .dropdown-label {
        padding: 15px 20px;
        justify-content: space-between;
      }

      /* Dropdown на мобиле */
      .submenu {
        position: static;
        background: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height var(--transition-speed);
      }

      /* Открываем через checkbox */
      .dropdown-toggle:checked ~ .submenu {
        max-height: 2000px;
      }

      .dropdown-toggle:checked ~ .dropdown-label .dropdown-arrow {
        transform: rotate(180deg);
      }

      /* Вложенные dropdown на мобиле */
      .submenu .submenu {
        background: rgba(0, 0, 0, 0.3);
        margin-left: 0;
      }

      .submenu li a,
      .submenu .dropdown-label {
        padding: 12px 20px 12px 40px;
        color: var(--text-color);
      }

      .submenu .submenu li a,
      .submenu .submenu .dropdown-label {
        padding-left: 60px;
      }

      .submenu .dropdown > .dropdown-label .dropdown-arrow {
        transform: none;
      }

      .content-section_fixed {
        position: relative;
        top: 0px;
      }

    }

    /* ============================================
       КОНТЕНТ ДЛЯ ДЕМО
       ============================================ */
    .hero {
      background: rgb(170, 170, 170);
      background-image:url('../images/asphalt11.jpg');
      background-size:cover;
      background-position: center center;
      background-repeat: no-repeat;
      
      /* border-radius: 10px;
      /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); */
      color: white;
      padding: 20px 20px;
      text-align: center;
      /* max-width: var(--container-width); */
      /* height: 300px; */
      /* margin: 30px auto; */
      opacity: 0;
      animation: ani 1s forwards;
    }

    .hero h1 {
      font-size: 26px;
      margin-bottom: 10px;
      font-weight: 800;
      text-shadow: 1px 1px 2px #333;
    }

    .h1_badge {
      display: inline-block;
      padding: 8px 20px;
      text-shadow: 2px 1px 2px #000;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      border-radius: 20px;
    }

    .hero p {
      font-size: 22px;
      opacity: 0.95;
      max-width: 700px;
      margin: 0 auto 30px;
      text-shadow: 1px 1px 2px #333;
    }

    .badge {
      display: inline-block;
      background: rgba(255, 255, 255, 0.2);
      padding: 8px 20px;
      border-radius: 20px;
      font-size: 18px;
      /* text-shadow: 1px 1px 2px #000; */
      margin: 5px;
      backdrop-filter: blur(10px);
    }

    .content-section {
      max-width: 1200px;
      margin: 20px auto;
      padding: 0 20px;
      
      opacity: 0;
      animation: ani 1s forwards;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .grid_small {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 30px;
      margin-top: 0px;
    }

    /* --- card ---*/

    .card {
      background: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .card h2 {
      color: var(--primary-color);
      margin-bottom: 15px;
      font-size: 24px;
      text-align: center;
    }

    .card h3 {
      color: var(--primary-color);
      margin-bottom: 15px;
      font-size: 24px;
    }

    .card p {
      color: #666;
      line-height: 1.8;
    }

    .card .icon {
      font-size: 36px;
      /* margin-bottom: 1px; */
    }

    .content-section_fixed {
      position: fixed;
      top: 80px;
      right: 20px;
    }

    .content-section2 {
      /* max-width: 1200px; */
      margin: 20px auto;
      padding: 0 20px;
    }

    /* --- card2 ---*/

    .card2 {
      background: white;
      padding: 10px;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s, box-shadow 0.3s;
      text-align: center;
      margin: auto;
      align-items: center;
      /* display: grid; */
    }

    .card2 p {
      color: #666;
    }

    .card2 h3 {
      color: var(--primary-color);
      margin-bottom: 15px;
      font-size: 24px;
      text-align: center;
    }

    .card2 a {
      color: var(--primary-color);
      line-height: 1.8;
    }

    .card2 select {
      color: #666;
      border: none;
    }

    .card2 option {
      color: #666;
      
    }

    /* --- card_about ---*/

    .card_about {
      background: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s, box-shadow 0.3s;
      /* scroll-margin-top: var(--header-height); */
    }

    .card_about p {
      color: #666;
      line-height: 1.8;
    }

    .card_about a {
      color: var(--primary-color);
      line-height: 1.8;
    }

    .card_about .bold {
      color: var(--primary-color);
      margin-bottom: 15px;
      font-size: 24px;
    }

    .card_about .bold20 {
      color: var(--primary-color);
      margin-bottom: 15px;
      font-size: 16px;
    }

    .card_about ul {
      color: #666;
      padding: 0 20px;
    }

  .card_about li {
    list-style-type: disc;
    padding-bottom: 20px;
  }

  /* .card_about li:before {
    content: "\2705";
  } */

  .card_about table {
    color: #666;
    line-height: 1.8;
    width: 100%;
    border-style: none;
  }

  .card_about hr {
    color: var(--primary-color);
  }

  .card_about tr {
    /* display:block; */
    padding-bottom: 5px;
  }

  .card_about tr:nth-child(even) {
  background-color: #f4f4f4;
  border:none;
  }

  /* --- card_header ---*/

  .card_header {
      background: rgb(244, 244, 244);
      padding: 0 30px;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .card_header p {
      color: #666;
      line-height: 1.8;
    }

    footer {
      background: var(--primary-color);
      color: white;
      padding: 20px 10px;
      text-align: center;
      /* margin-top: 60px; */
      margin: 1 auto;
      margin-top: auto;
      
    }

    .footer_no_wrap {
      white-space: nowrap;
    }

    footer p {
      opacity: 0.9;
      font-size: 14px;
    }

    footer a {
      text-decoration: underline;
    }

    h2 {
      color: var(--primary-color);
      font-size: 36px;
      margin-bottom: 20px;
      text-align: center;
    }

    /* Скролл для якорей филиалов */

    #f110 {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }

    #f142 {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }

    #f143 {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }

    #f144 {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }

    #f145 {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }

    #f106 {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }

    #f180 {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }

    #f108 {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }

    #f202 {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }

    #f107 {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }
    
    #f203 {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }

    #f181 {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }

    #f182 {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }

    #f132 {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }

    #f109 {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }

    #f146 {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }

    #f147 {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }

    #f105 {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }

    #f183 {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }

    #f131 {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }

    #f204 {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }

    #fdp {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }

    #fuptk {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }

    #fsf {
      scroll-margin-top: calc(var(--header-height) + 20px);
    }

    /* Мобильники */

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 28px;
      }

      .hero p {
        font-size: 24px;
      }

      h2 {
        font-size: 28px;
      }

      .grid {
        grid-template-columns: 1fr;
      }

    

    }

    @media (max-width: 1768px) {
       
      .content-section_fixed {
        position: relative;
        top: 0px;
      }
    }