@media print, screen and (max-width: 999px) {
  .menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
}

@media print, screen and (max-width: 999px) {
  .menu > li {
    margin: 0 1rem;
    overflow: hidden;
  }
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle, #menu-toggle02 {
  display: none;
}

.menu-button {
  top: 6vw;
  right: 2vw;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #004098;
  position: absolute;
  height: 0.65vw;
  width: 4.3vw;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: "";
  margin-top: -2vw;
}

.menu-button::after {
  content: "";
  margin-top: 2vw;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (max-width: 999px) {
  .-drop {
    position: relative;
  }
  .menu-button-container {
    display: flex;
  }
  .menu-button-container02 {
    width: 100%;
    height: 45px;
    position: absolute;
    top: 0;
  }
  .menu {
    background: #004098;
    position: absolute;
    top: 0;
    margin-top: 12vw;
    left: 0;
    flex-direction: column;
    width: 100%;
    align-items: center;
    z-index: 500;
  }
  .menu a {
    color: #fff;
  }
  #menu-toggle ~ .menu, #menu-toggle02 ~ .menu02 {
    height: 0;
  }
  #menu-toggle ~ .menu li {
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu {
    height: 100vh;
  }
  #menu-toggle02:checked ~ .menu02 {
    height: 100%;
  }
  #menu-toggle:checked ~ .menu p {
    border-bottom: 1px solid #fff;
    padding: 0.5em;
    color: #e60014;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    width: 100%;
  }
  .menu > p {
    margin: 0;
    padding: 0.5em 0;
    color: white;
  }
}/*# sourceMappingURL=hamburger.css.map */