/* Drawer nav */
.drawer-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 344px;
  height: 100vh;
  background: rgba(15, 15, 15, 0.7);
  transform: translateX(100%);
  opacity: 0;
  visibility: visible;
  z-index: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all .4s ease;
}
.drawer-nav.is-open {
  transform: translateX(0);
  opacity: 1;
}
.drawer-nav-wrap {
  width: 100%;
  height: 100%;
  padding: 203px 96px 205px 0;
  overflow-y: scroll;
}
.drawer-nav__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.drawer-nav__list a {
  position: relative;
  display: block;
  margin-left: auto;
  width: fit-content;
  cursor: pointer;
  overflow: hidden;
  padding-bottom: 9px;
}
.drawer-nav__list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease;
}
.drawer-nav__list a:hover::after {
  left: 0;
  opacity: 1;
  visibility: visible;
}
.drawer-nav__list a p {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  text-align: right;
}


@media screen and (max-width: 1024px) {
  .drawer-nav {
    width: 100%;
  }

  .drawer-nav-wrap {
        padding: 180px 0 123px 0;
  }

  .drawer-nav__list {
    text-align: center;
  }

  .drawer-nav__list a p {
    text-align: center;
  }

  .drawer-nav__list a {
    margin-right: auto;
  }
}