ul#noah-menu, ul#noah-menu li {
  list-style-type: none !important;
  text-align: center !important;
}

ul#noah-menu li.noah_menu_item {
  transform: translate(-20px, 0px) !important;
  opacity: 0 !important;
  transition: transform 0.6s ease, opacity 0.6s ease;

}

ul#noah-menu li.noah_menu_item:nth-of-type(2) {
  transition-delay: 0.05s;
}

ul#noah-menu li.noah_menu_item:nth-of-type(3) {
  transition-delay: 0.1s;
}

ul#noah-menu li.noah_menu_item:nth-of-type(4) {
  transition-delay: 0.15s;
}

ul#noah-menu li.noah_menu_item:nth-of-type(5) {
  transition-delay: 0.2s;
}

ul#noah-menu li.noah_menu_item:nth-of-type(6) {
  transition-delay: 0.25s;
}

ul#noah-menu li.noah_menu_item:nth-of-type(7) {
  transition-delay: 0.3s;
}

.popup-section.open-anim ul#noah-menu li.noah_menu_item {
  transform: translate(0px, 0px) !important;
  opacity: 1 !important;
}

.popup-section {
  position: fixed;
  z-index: -10000;
  width: 100%;
  height: 100%;
  background: white;
  left: 0px !important;
  justify-content: center !important;
  align-items: center !important;
  display: flex !important;
  overflow-y: scroll;
}

.popup-section {
  top: -100% !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.popup-section.open {
  opacity: 1 !important;
}
.popup-section.high-z {
  top: 0% !important;
  z-index: 1000000000000;
}
.noscroll {
  overflow-y: hidden;
}

.popup-section .popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
}

@media only screen and (max-width: 600px) {
  .popup-menu .et-menu.nav li a {
    font-size: 1.6em;
  }
}
.burger {
  display: block !important;
}
.burger.spin.play-anim {
  animation-name: spin-anim;
  animation-duration: 800ms;
  animation-iteration-count: 1;
  animation-timing-function: ease;
}
.burger.slide.play-anim {
  animation-name: slide-anim;
  animation-duration: 800ms;
  animation-iteration-count: 1;
  animation-timing-function: ease;
}

.popup-section.open .popup-close.spin {
  animation-name: spin-anim2;
  animation-duration: 800ms;
  animation-iteration-count: 1;
  animation-timing-function: ease;
}

.popup-section.open .popup-close.slide {
  animation-name: slide-anim2;
  animation-duration: 800ms;
  animation-iteration-count: 1;
  animation-timing-function: ease;
}

.noah_menu_item {
  margin: 0px !important;
  padding: 0px !important;

}
.noah_menu_item a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  transition: color 0.3s ease;
  width: 100%;
  text-align: center;
  display: block;
  padding: 20px;
  font-size: 2.5em;
  line-height: 1.2em;
}
.noah_menu_item a:hover {
  color: #898989;
}
.noah_submenu {
  border: 1px solid #000;
}
#noah-menu .parent_menu_item:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 10%;
  width: 80%;
  height: 10px;
  background-color: white;
}
.noah_submenu .noah_menu_item a {
  font-size: 1.8em;
  padding: 10px;
}
.burger, .popup-close {
  cursor: pointer;
}
@keyframes spin-anim2 {
  from {
    transform: rotate(-180deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes spin-anim {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(180deg);
  }
}

@keyframes slide-anim {
  from {
    transform: translate(0px);
  }

  to {
    transform: translate(50px);
  }
}
@keyframes slide-anim2 {
  from {
    transform: translate(50px);
  }

  to {
    transform: translate(0px);
  }
}

.popup-section #noah-menu {
  position: absolute;
  top: 80px;
  padding-bottom: 100px;
  max-width: 80%;
  width: 400px;
}