@media screen and (max-width: 991px) {
  html.native-nav-ready body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0, 36, 56, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
  }

  html.native-nav-ready.native-nav-open body::before {
    opacity: 1;
    pointer-events: auto;
  }

  html.native-nav-ready.native-nav-open .cookie-banner {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate3d(0, 16px, 0) !important;
  }

  html.native-nav-lock,
  html.native-nav-lock body {
    overflow: hidden;
  }

  html.native-nav-ready .header-wrapper {
    z-index: 1000;
    opacity: 1 !important;
    transform: none !important;
  }

  html.native-nav-ready .menu-button {
    z-index: 1002;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
  }

  html.native-nav-ready .menu-button .hamburguer-line {
    transition:
      top 280ms ease,
      transform 280ms ease,
      opacity 180ms ease;
  }

  html.native-nav-ready.native-nav-open .menu-button .hamburguer-line.top {
    transform: translateY(7.5px) rotate(45deg);
  }

  html.native-nav-ready.native-nav-open .menu-button .hamburguer-line.center {
    opacity: 0;
    transform: translateX(8px);
  }

  html.native-nav-ready.native-nav-open .menu-button .hamburguer-line.bottom {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  html.native-nav-ready .header-menu-wrapper {
    position: fixed;
    z-index: 1001;
    left: 20px;
    right: 20px;
    bottom: 0;
    display: block !important;
    max-height: calc(100dvh - 112px);
    margin: 0 !important;
    padding: 24px 20px 20px;
    border-radius: 30px 30px 0 0;
    background: var(--colors--neutral--white);
    box-shadow: 0 -18px 42px rgba(12, 74, 97, .14);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transform: translate3d(0, calc(100% + 24px), 0);
    transition:
      opacity 260ms ease,
      visibility 260ms ease,
      transform 340ms ease;
  }

  html.native-nav-ready .header-menu-wrapper::before {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    margin: 0 auto 18px;
    border-radius: var(--border-radius--br-9);
    background: var(--colors--neutral--200);
  }

  html.native-nav-ready.native-nav-open .header-menu-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }

  html.native-nav-ready .header-menu {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    grid-column-gap: 0;
    grid-row-gap: 0;
  }

  html.native-nav-ready .header-menu .nav-link {
    width: 100%;
    min-height: 58px;
    padding: 0 2px;
    border-bottom: 1px solid rgba(228, 236, 243, .92);
    color: var(--font-color--text-title);
    font-family: DM Sans, sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: var(--line-height--small);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  html.native-nav-ready .header-menu .nav-link::after {
    content: "→";
    color: var(--colors--primary--600);
    font-family: Inter, sans-serif;
    font-size: 18px;
    line-height: 1;
  }

  html.native-nav-ready .header-menu .nav-link.is-current {
    color: var(--font-color--text-title);
  }

  html.native-nav-ready .nav-menu-button-wrapper {
    width: 100%;
    display: block;
    margin-top: 18px;
  }

  html.native-nav-ready .nav-menu-button-wrapper .button {
    width: 100%;
    min-height: 52px;
    text-align: center;
  }
}

@media screen and (max-width: 479px) {
  html.native-nav-ready .header-menu-wrapper {
    left: 16px;
    right: 16px;
    padding: 22px 18px 18px;
  }

  html.native-nav-ready .header-menu .nav-link {
    min-height: 56px;
    font-size: 24px;
  }
}
