.menu-overlay__overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.3s ease, display 0.3s allow-discrete;
  opacity: 0;
  background: #0056d7;
  width: calc(100vw - var(--gin-toolbar-x-offset, 0px));
  min-height: 100vh;
}
.menu-overlay__overlay.is-active {
  display: flex;
  opacity: 1;
}
@starting-style {
  .menu-overlay__overlay.is-active {
    opacity: 0;
  }
}
.menu-overlay__logo {
  flex: 0 0 auto;
  margin-top: 1.5rem;
  height: 3.5rem;
}
.menu-overlay__menus-wrapper {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 3rem;
}
.menu-overlay__menus {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1rem;
}
@media screen and (min-width: 576px) {
  .menu-overlay__menus {
    flex-direction: row;
    width: 26rem;
  }
}
@media screen and (min-width: 768px) {
  .menu-overlay__menus {
    flex-direction: row;
    width: 34rem;
  }
}
@media screen and (min-width: 576px) {
  .menu-overlay__primary-menu {
    width: 60%;
  }
}
.menu-overlay__secondary-menu {
  padding-right: 5rem;
  width: auto;
}
.menu-overlay__hamburger {
  display: block;
  position: relative;
}

/*# sourceMappingURL=menu_overlay.css.map */
