#mobileMenu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .25s ease, opacity .25s ease;
  }
  #mobileMenu.open {
    max-height: 420px;
    opacity: 1;
  }
