.nav-mobile__bg {
  position: fixed !important;
  inset: 0 !important;
  z-index: 998 !important;
  display: none;
  background: rgba(5, 0, 51, 0.45) !important;
}

.nav-mobile__bg.active {
  display: block !important;
}

.nav-mobile {
  position: fixed !important;
  top: 0 !important;
  right: auto !important;
  bottom: auto !important;
  left: 50% !important;
  z-index: 999 !important;
  width: 100% !important;
  max-width: 575px !important;
  height: 100vh !important;
  height: 100dvh !important;
  min-height: 100vh !important;
  padding: 0 16px !important;
  overflow-y: auto !important;
  background: #050033 !important;
  border: 0 !important;
  opacity: 0;
  visibility: hidden;
  transform: translate(50%, 0) !important;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    visibility 0.3s ease !important;
}

.nav-mobile.active {
  right: auto !important;
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) !important;
}

.nav-mobile__head {
  height: 60px !important;
  padding: 0 !important;
  border: 0 !important;
}

.nav-mobile__head .logo-bx {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  height: 100% !important;
}

.nav-mobile__head .logo {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  height: 22px !important;
}

.nav-mobile__head .logo img {
  display: block !important;
  width: 143px !important;
  max-width: none !important;
  height: 22px !important;
}

.nav-mobile .nav-mobile__btn {
  position: relative !important;
  flex: 0 0 24px !important;
  width: 24px !important;
  height: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

.nav-mobile .nav-mobile__btn::before,
.nav-mobile .nav-mobile__btn::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 1.5px;
  background: #fff;
  border-radius: 999px;
  content: "";
}

.nav-mobile .nav-mobile__btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-mobile .nav-mobile__btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-mobile__body {
  padding: 40px 0 0 !important;
}

.nav-mobile .nav-list {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.nav-mobile .nav-list--depth1 {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.nav-mobile .nav-list__item {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.nav-mobile .depth-1 > .link,
.nav-mobile .depth-2 > .link {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  line-height: normal !important;
  text-decoration: none !important;
}

.nav-mobile .depth-1 > .link {
  height: 60px !important;
  color: #fff !important;
  font-family: "Montserrat", "Noto Sans KR", sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  letter-spacing: -0.8px !important;
}

.nav-mobile .depth-2 > .link {
  height: 56px !important;
  color: #c0c0c9 !important;
  font-family: "Montserrat", "Noto Sans KR", sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: -0.64px !important;
}

.nav-mobile .depth-1._down > .link::before,
.nav-mobile .depth-2._down > .link::before {
  display: none !important;
  content: none !important;
}

.nav-mobile .depth-1._down > .link::after {
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin: -5px 4px 0 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
  transform: rotate(45deg);
  transition: transform 0.2s ease, margin 0.2s ease;
}

.nav-mobile .depth-1._down > .link.active::after {
  margin-top: 4px;
  transform: rotate(225deg);
}

.nav-mobile .nav-list--depth2 {
  display: block !important;
  height: 0;
  overflow: hidden;
}
