

         .footer {
            display: block;
            width: 100%;
            background-color: #111111;
         }



         .footer_inner {
            display: block;
            max-width: 1024px;
            margin: 0 auto; /* Центрируем по горизонтали */
            box-sizing: border-box; /* Включаем отступы в расчет размера */
         }


         @media (max-width: 1024px) {
            .footer_inner {
            margin-left: 40px;
            margin-right: 40px;
         }
         }


         .footer_center {
            display: flex;
            flex-direction: column; /* Размещение элементов по вертикали */
            justify-content: flex-start; /* Выровнять элементы по верхнему краю */
            margin-top: 0px;
         }

         .footer_center_cont {
            display: block;
            align-items: flex-start; /* Выравнивание по верхнему краю */
            margin-top: 44px;
         }





    .footer_menu {
      margin-left: 0px;
      margin-top: 0px;
      max-width: 1024px;
      height: auto;
      display: flex;
      flex-direction: column;
    }




    .footer_menu_list {
      margin-top: 11px;
      padding-left: 0px;
      font-family: Helvetica, Arial, sans-serif;
      font-size: 18.5px;
      font-weight: bold;
      overflow-y: auto;
    }

    .footer_menu_list a {
      display: flex;
      align-items: center;
      color: #ffffff;
      text-decoration: none;
      margin-bottom: 18px; /* <<<<<<<<<<<< ОТСТУП ОТ ЛИНИИ (1) ======= */
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .footer_menu_list a:hover {
      color: #e31212;
    }

    .footer_menu_list a .ftr-menu-icon {
      margin-left: auto; /* Сдвигаем иконку вправо */
      margin-right: 3px; /* Интервал между иконкой и правым краем */
    }

    .footer_menu_list a img {
      width: 18px;
      height: 9.5px;
      object-fit: contain;
      margin-bottom: 0px; /* Сдвигаем иконку по вертикали */
    }

    .footer_sub_menu {
      display: none;
      padding-left: 0px;
      font-family: Helvetica, Arial, sans-serif;
      font-weight: normal;
      font-size: 16px;
      color: black;
      list-style: none;
      height: 0;
      overflow: hidden;
      transition: height 0.3s ease;
    }

    .footer_sub_menu.open {
      display: block;
      height: auto;
    }

    .footer_sub_menu a {
      color: #c2c4c5;
      text-decoration: none;
      display: block;
      padding: 0px 0px;
      transition: color 0.3s ease, transform 0.3s ease;
      margin-bottom: 14px;
    }

    .footer_sub_menu a:hover {
      color: #e31212;
      transform: translateX(4px);
    }

    .footer_sub_menu .first-item {
      margin-top: 3px; /* Отступ от материнского меню */
    }

    .footer_sub_menu .last-item {
      margin-bottom: 7px; /* Отступа после последнего пункта */
    }

    .ftr-active-icon {
      content: url('../img/menu_v_hover.png');
    }

    .ftr-default-icon {
      content: url('../img/menu_v.png');
    }



    /* ==========  Линии между элементами меню */

    .footer_menu_list a:not(:last-child) {
      position: relative;
      padding-bottom: 18px; /* <<<<<<<<<<<< ОТСТУП ОТ ЛИНИИ (2) ======= */
    }

    .footer_menu_list a:not(:last-child)::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 1024px;
      height: 1px;
      background-color: #585959; /* Цвет линии */
    }






         .footer_links_2 {
            font-family: 'Helios Antique Regular', sans-serif;
            font-size: 12px;
            font-weight: normal;
            color: #000000;
            display: flex;
            justify-content: left;
            gap: 16px;
            align-items: left;
            flex-wrap: wrap; /* Allows links to wrap onto the next line when space is tight */
            line-height: 15px;
            margin-top: 12px;
            margin-bottom: 6px;
         }

         .footer_links_2 a {
            text-decoration: none;
            color: #c2c4c5;
         }

         .footer_links_2 a:hover {
            text-decoration: underline;
         }





         .footer_cop {
            font-family: Helvetica, Arial, sans-serif;
            font-size: 12px;
            font-weight: normal;
            color: #ffffff;
            display: flex;
            justify-content: left;
            gap: 20px;
            align-items: left;
            flex-wrap: wrap; /* Allows links to wrap onto the next line when space is tight */
            line-height: 15px;
            margin-top: 39px;
         }

         .footer_tm {
            font-family: Helvetica, Arial, sans-serif;
            font-size: 12px;
            font-weight: normal;
            color: #9c9c9d;
            display: flex;
            justify-content: left;
            gap: 20px;
            align-items: left;
            flex-wrap: wrap; /* Allows links to wrap onto the next line when space is tight */
            line-height: 15px;
            margin-top: 12px;
         }





         .footer_blank_space {
            max-width: 200px;
            height: 38px;
         }


