/* Fixes for defects inherited from the original Webflow build.
   Loaded after the Webflow stylesheet so these win. */

/* The mobile nav menu shares z-index:1 with .hero-v1-content, so page content
   painted over the open menu. Lift the header above page content while the
   collapsed nav is in use (<=991px, Webflow's "medium" collapse breakpoint). */
@media screen and (max-width: 991px) {
  .header-wrapper.w-nav {
    z-index: 100;
  }
}
