/* https://alvarotrigo.com/blog/hamburger-menu-css/ */

.hamburger-menu {
    z-index: 999;
    width: 100%;
    height: 55px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  @media screen and (max-width: 400px) {
    .hamburger-menu {
      justify-content: space-around;
    }
  }
  
  .opaque-blue {
    background-color: #ff713d;
    opacity: 1 !important;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .navbar-title {
    display: none;
    font-size: 1.7em;
    color: #eaeaea;
    font-weight: 600;
  }
  
  .active {
    display: block;
  }
  
  #menu__toggle {
    opacity: 0;
  }
  #menu__toggle:checked + .menu__btn > span {
    transform: rotate(45deg);
  }
  #menu__toggle:checked + .menu__btn > span::before {
    top: 0;
    transform: rotate(0deg);
  }
  #menu__toggle:checked + .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
  }
  #menu__toggle:checked ~ .menu__box {
    left: 0 !important;
  }
  .menu__btn {
    display: flex;
    align-items: center;
    position: fixed;
    left: 24px;
    width: 30px;
    height: 32px;
    cursor: pointer;
    z-index: 1;
  }
  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition-duration: .25s;
  }
  .menu__btn > span::before {
    content: '';
    top: -10px;
  }
  .menu__btn > span::after {
    content: '';
    top: 10px;
  }
  .menu__box {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    margin: 0;
    padding: 80px 0;
    list-style: none;
    background-color: #161616;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
    transition-duration: .25s;
  }
  
  @media screen and (max-width: 300px) {
    /* Galaxy Fold */
    .menu__box {
      width: 200px;
    }
    .navbar-title {
      font-size: 1.2em;
    }
  }
  
  /* .nav-push-bottom {
    position: fixed;
    bottom: 10px;
    padding: 12px 24px;
    color: #062023;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition-duration: .25s;
    margin-top: 0;
    margin-bottom: 0;
  } */
  .menu__item {
    display: block;
    padding: 12px 24px;
    color: #eaeaea;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    transition-duration: .25s;
    margin-top: 0;
    margin-bottom: 0;
  }
  .menu__item:hover {
    background-color: #ff713d;
  }
  
  .current-page, .current-page:hover {
    background-color: #fc5b20;
    color: #eaeaea;
    cursor: default;
  }
  