@font-face {
  font-family: Kanit-Black;
  src: url("../css/font/Kanit-Black.ttf");
}

.menucontainer {
  width: 80%;
  height: 40px;
  position: relative;
  top: 40px;
  margin: 0 auto;
}

.menuicon {
  /* width: 35px; */
  height: 5px;
  background-color: #616b7a;
  margin: 6px 0;
}

.m1 {
  width: 35px;
}
.m2 {
  width: 25px;
}
.m3 {
  width: 30px;
}

.navigation-wrapper {
  position: relative;
}

.navigation-button {
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: fixed;
  z-index: 1;
  top: 40px;
  right: 40px;
  background: transparent;
  cursor: pointer;
}

.navigation-button .fa {
  border: 2px solid #616b7a;
  border-radius: 3px;
  padding: 10px;
  color: #616b7a;
}

.navigation-menu ul li {
  list-style: none;
  font-family: Kanit-Black;
  font-weight: 300;
  color: hsl(0, 0%, 70%);
}

.navigation-menu a:hover {
  text-decoration: underline;
  color: #240906;
}

.navigation-menu {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  min-width: 150px;
  max-width: 250px;
  background: #4f698c;
  height: 100%;
  transform: skewX(0deg) translate(100%, 0);
  transform-origin: top right;
  transition: all 0.2s ease-in;
  z-index: 999;
}

.navigation-menu ul {
  transform: skewX(-8deg);
  transform-origin: top left;
  position: fixed;
  right: 40px;
  top: 80px;
  width: 400px;
  text-align: right;
}

.navigation-menu ul li {
  position: relative;
  z-index: 999;
  font-size: 32px;
  color: hsl(0, 0%, 10%);
  line-height: 64px;
}

.navigation-menu ul li a {
  border: none;
  color: hsl(0, 0%, 10%);
  text-decoration: none;
}

.navigation-menu.active {
  transform: skewX(8deg) translate(0, 0);
}

.navigation-menu li {
  opacity: 0;
  transform: translate(0, 10px);
  transition: all 0s ease-in 0.3s;
}

.navigation-menu.active li {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 0.2s ease-in 0s;
}

.navigation-menu.active li:nth-child(1) {
  transition-delay: 0.3s;
}

.navigation-menu.active li:nth-child(2) {
  transition-delay: 0.4s;
}

.navigation-menu.active li:nth-child(3) {
  transition-delay: 0.5s;
}

.navigation-menu.active li:nth-child(4) {
  transition-delay: 0.6s;
}

.navigation-menu.active li:nth-child(5) {
  transition-delay: 0.7s;
}

.navigation-menu.active li:nth-child(6) {
  transition-delay: 0.8s;
}
