@font-face {
  font-family: "simplifica";
  src: url(../font/SIMPLIFICA-Typeface.ttf);
}
@font-face {
  font-family: "din";
  src: url(../font/DINNextLTPro-Light.otf);
}
.nav {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: #595858;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.nav .inner {
  padding-top: 20vh;
}
.nav .nav__link {
  color: #ffffff;
  font-size: 3vw;
  letter-spacing: 0.2em;
  display: block;
  text-align: center;
  margin-bottom: 2.8vh;
}
@media screen and (max-width:480px), screen and (max-width:767px) {
  .nav .nav__link {
    font-size: 6vw;
  }
}
@media screen and (max-width:480px) {
  .nav .nav__link {
    font-size: 6.8vw;
  }
}

.nav.open {
  opacity: 1;
  pointer-events: auto;
}