/* Media Queries */
@media (min-width: 769px) {
  .mobile-nav {
    display: none;
  }

  .hamburger, {
    display: none;
  }
}

/* Hamburger Menu Styles */
.hamburger {
  position: absolute;
  display: block;
  width: 35px;
  cursor: pointer;
  appearance: none;
  background: none;
  outline: none;
  border: none;
  z-index: 999;
  right: 15%;
  top: 15%;
}

.hamburger:before,
.hamburger:after,
.hamburger .bar {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1A232D;
  margin: 6px 0px;
  transition: 0.4s;
}

.hamburger.is-active:before {
  transform: rotate(-45deg) translate(-9px, 2px);
}

.hamburger.is-active:after {
  transform: rotate(45deg) translate(-9px, -2px);
}

.hamburger.is-active .bar {
  opacity: 0;
}

/* Mobile Navigation Styles */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  min-height: 100vh;
  display: block;
  z-index: 98;
  background-color: #D5D0CB;
  padding-top: 120px;
  transition: 0.4s;
}

.mobile-nav.is-active {
  left: 0;
}

.mobile-nav a {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto 16px
}
