.nav-menu a {
  color: white;
  text-decoration: none;
  position: relative;
  margin: 0 15px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.nav-menu a::after {
  content: "";
  background: white;
  mix-blend-mode: exclusion;
  width: calc(100% + 20px);
  height: 0;
  position: absolute;
  bottom: -4px;
  left: -10px;
  -webkit-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.nav-menu a:hover::after {
  height: calc(100% + 8px);
}

@-webkit-keyframes fade-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes fade-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

#mobile-menu {
  background: #3d3d3d;
  height: 8vh;
}

.mobile-menu-wrapper {
  position: fixed;
  bottom: 15px;
  width: 100%;
  margin: 0 auto;
  -webkit-animation: fade-up 1s ease;
          animation: fade-up 1s ease;
}

.mobile-menu-container {
  background: #6e6e6e;
  height: 8vh;
  width: 95%;
  border-radius: 30px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation: fade-up 1s ease;
          animation: fade-up 1s ease;
}

.mobile-link {
  color: #fff;
  font-size: 1.5rem;
  padding: 0 24px;
}

@media screen and (max-width: 1030px) {
  #mobile-menu {
    display: block;
  }
}

@media screen and (max-width: 320px) {
  .mobile-link {
    padding: 0 18px;
  }
}
/*# sourceMappingURL=nav-menu.css.map */