  /* ===== Burger button ===== */

  .mnav-burger {
      position: relative;
      width: 30px;
      height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      border: none;
      padding: 0;
      cursor: pointer;
      transition: opacity .2s ease;
  }

  .mnav-burger:hover {
      opacity: .7;
  }

  /* Центральная линия */

  .mnav-burger span,
  .mnav-burger::before,
  .mnav-burger::after {
      left: 5px;
      content: "";
      position: absolute;
      width: 24px;
      height: 3px;
      background: var(--main-blue);
      transition: transform .3s ease, opacity .3s ease, top .3s ease;
  }

  /* Центральная */

  .mnav-burger span {
      top: 50%;
      transform: translateY(-50%);
  }

  /* Верхняя */

  .mnav-burger::before {
      top: 14px;
  }

  /* Нижняя */

  .mnav-burger::after {
      bottom: 14px;
  }

  /* offcanvas */

  .mnav {
      position: fixed;
      inset: 0;
      z-index: 9999;
      pointer-events: none;
  }

  .mnav__overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .25);
      opacity: 0;
      transition: opacity .25s ease;
  }

  .mnav__panel {
      height: 100vh;
      position: absolute;
      top: 0;
      right: 0;
      width: 74vw;
      /*  height: calc(100% - 10vw);*/
      background: var(--main-blue);
      transform: translateX(100%);
      transition: transform .32s ease;
      display: flex;
      flex-direction: column;
      padding: 5vw;
  }

  .mnav.is-open {
      pointer-events: auto;
  }

  .mnav.is-open .mnav__overlay {
      opacity: 1;
  }

  .mnav.is-open .mnav__panel {
      transform: translateX(0);
  }

  /* header */

  .mnav__head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      padding-bottom: 10px;
  }

  .mnav__brand {
      display: flex;
      gap: 12px;
      align-items: flex-start;
  }

  .mnav__brand-num {
      font-weight: 900;
      font-size: 56px;
      line-height: 1;
      color: #ff7a00;
  }

  .mnav__brand-text {
      font-weight: 800;
      font-size: 18px;
      line-height: 1.05;
      color: #1f4f8a;
  }

  .mnav__close {
      border: 0;
      background: none;
      /* width: 44px; */
      /* height: 44px; */
      border-radius: 14px;
      font-size: 25px;
      cursor: pointer;
      color: white;
      font-weight: 900;
  }

  /* sections */

  .mnav__body {
      overflow: auto;
      padding: 12px 4px 6px;
      -webkit-overflow-scrolling: touch;
  }

  .mnav__section {
      margin: 10px 0;
  }

  .mnav__section-title {
      width: 100%;
      border: 0;
      background: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 10px 6px;
      cursor: pointer;
      line-height: 1.05;
      text-align: left;
  }

  .mnav__chev {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      position: relative;
  }

  .mnav__chev::before {
      content: "";
      position: absolute;
      inset: 0;
      margin: auto;
      width: 10px;
      height: 10px;
      border-right: 3px solid white;
      border-bottom: 3px solid white;
      transform: rotate(45deg);
      transition: transform .2s ease;
  }

  .mnav__section.is-open .mnav__chev::before {
      transform: rotate(-135deg);
  }

  .mnav__section-body {
      display: none;
      padding: 4px 6px 12px 18px;
  }

  .mnav__section.is-open .mnav__section-body {
      display: block;
  }

  .mnav__link {
      display: block;
      padding: 7px 0;
      line-height: 1.1;
      text-decoration: none;
  }

  .mnav__link.is-current {
      text-decoration: underline;
      text-underline-offset: 4px;
  }

  /* footer */

  .mnav__footer {
      margin-top: 40px;
      padding-top: 10px;
      margin-bottom: auto;
  }

  .mnav__footer-block {
      color: rgba(255, 255, 255, .9);
      font-weight: 700;
      padding: 6px 6px 10px;
  }

  .mnav__footer-title {
      font-weight: 800;
      margin-bottom: 6px;
  }

  .mnav__footer-text {
      line-height: 1.2;
  }

  .mnav__phone {
      display: block;
      margin: 10px 6px 14px;
      background: white;
      color: var(--main-blue);
      text-align: center;
      padding: 14px 16px;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 900;
      font-size: 18px;
  }

  .mnav__social {
      padding: 0 6px;
      color: rgba(255, 255, 255, .95);
      text-align: center;
      font-weight: 800;
  }

  .mnav__social-title {
      margin-bottom: 10px;
  }

  .mnav__social-row {
      display: flex;
      justify-content: center;
      gap: 14px;
      background: white;
      padding: 14px;
      border-radius: 999px;
  }

  .mnav__social-btn {
      border-radius: 999px;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-weight: 900;
  }

  .mnav__social-btn img {
      height: 24px;
  }

  @media (max-width: 768px) {
      .top-menu {
          display: none !important;
      }

      .mnav-burger {
          display: block;
      }
  }

  @media (min-width: 769px) {

      .mnav,
      .mnav-burger {
          display: none !important;
      }
  }