body {
  font-family: "Spoqa Han Sans Neo", "sans-serif";
}

div._wsaicon img {
  display: none !important;
}

/* header */

.nav__container {
  width: 100%;
  background-color: transparent;
  position: absolute;
  top: 38px;
  padding: 8px 20px;
  z-index: 21;
}

.nav_inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  position: relative;
  margin: 0;
}

.headerBtnTab {
  color: #fff;
  cursor: pointer;
}

.logoLayout {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__hambuger {
  cursor: pointer;
}

.nav__menu__mobile {
  display: none;
}

.nav__menu__langBtn svg {
  display: block;
}

.menu-open-button svg {
  display: none;
}

.nav__menu li {
  font-size: 16px;
  padding: 8px 12px;
  align-items: center;
}

.nav__menu .btn_FAQ {
  border-radius: 50px;
  background-color: #46ab66;
  font-weight: 800;
  color: white;
  width: 94px;
  height: 30px;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
}

.nav__menu .btn_FAQ:hover {
  background-color: #fff;
  color: #46ab66;
  border: 1px solid #46ab66;
}

.nav__menu .btn_login {
  border-radius: 50px;
  background-color: transparent;
  padding: 12px 24px;
  color: #333;
  width: 100%;
  height: 40px;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 16px;
  justify-content: center;
  font-weight: 500;
}

.signUp_btn {
  color: #fff !important;
  background-color: #22c17e !important;
  font-weight: 400 !important;
}

.nav__menu .header__btn_color {
  color: #fff;
  background-color: #395893;
  font-family: "Spoqa Han Sans Neo";
}

/* .nav__menu .btn_login:hover {
  color: #fff;
  background-color: #333;
} */

.nav__menu__mobile__container {
  display: none;
}

.menu-close-button {
  display: none;
}

@media screen and (max-width: 768px) {
  .nav_inner {
    justify-content: space-between;
  }

  .nav__menu {
    /* padding: 0; */
    display: none;
  }

  .nav__menu__langBtn svg {
    display: flex;
  }

  .nav__menu .btn_login {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    width: 100%;
    height: 12px;
    padding: 15px 4px;
    background: transparent;
    color: #fff;
    gap: 12px;
  }

  /* 모바일 메뉴 바 */
  /* Menu container */
  .nav__menu__mobile__container {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden by default */
    width: 60%; /* Adjust for the width of the menu */
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    overflow-y: visible;
  }

  /* Menu open */
  .nav__menu__mobile__container.open {
    right: 0; /* Slide in from the left */
  }

  /* Close button */
  .menu-close-button {
    position: absolute;
    top: 20px; /* nav__menu__mobile__container의 상단에 배치 */
    left: -40px; /* nav__menu__mobile__container 왼쪽으로 이동 */
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 9999;
    display: none;
    transition: right 0.3s ease-in-out;
  }

  .menu-close-button.open {
    display: flex;
  }

  /* Menu list */
  .nav__menu__mobile {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav__menu__mobile li a {
    width: 100%;
    display: flex;
    padding: 20px;
  }
  .nav__menu__mobile li a:hover {
    background-color: #46ab66;
    color: #fff;
    width: 100%;
    display: flex;
    padding: 20px;
  }

  .nav__menu__mobile a {
    color: #424242;
    text-decoration: none;
    font-size: 1.2rem;
  }

  /* Menu overlay */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
  }

  .menu-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  /* Open button */
  .menu-open-button {
    position: absolute;
    z-index: 1100;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #424242;
  }

  .menu-open-button svg {
    position: relative;
    right: 23px;
  }
}

@media screen and (max-width: 500px) {
  .nav__container {
    padding: 8px 16px;
  }

  .nav__menu .btn_login {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    width: 100%;
    height: 12px;
    padding: 15px 4px;
    background: transparent;
    color: #fff;
  }
  .nav_inner {
    justify-content: space-between;
  }

  .nav__logo img {
    width: 130px;
  }
}

.nav__menu .menu:hover {
  color: #46ab66;
  cursor: pointer;
}

.guide-sub {
  position: fixed;
  padding-top: 10px;
  padding-left: 5px;
  margin-top: 8px;
  margin-left: -31px;
  background-color: #fff;
  border: 1px solid rgb(53, 53, 53);
  border-radius: 10px;
  width: 130px;
  height: 84px;
  display: none;
  cursor: pointer;
}

.guide-container:hover > .guide-sub {
  display: block;
}

.guide-page:hover {
  color: #46ab66;
  display: block;
}

.toggle {
  font-size: 30px;
  position: absolute;
  right: 20px;
  top: 18px;
  display: none;
}

@media screen and (max-width: 1400px) {
  /* .nav__menu {
    display: none;
  } */

  /* .toggle {
    display: block;
    cursor: pointer;
  } */
}

.DrawerTab {
  width: 100%;
  height: 100vh;
  max-width: 320px;
  background-color: #fff;
  position: fixed;
  right: -320px;
  overflow: auto;
  z-index: 2001;
}

.DrawerTab.active {
  right: 0;
  transition: 0.3s ease-in-out;
}

.Draw__menu {
  padding-left: 0px;
}

.layerBlur__bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  display: none;
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  transition: 0.3s ease-in-out;
  z-index: 2000;
}

.layerBlur__bg.active {
  display: block;
}

.MobileLayerBlur {
  width: 100vw;
  height: 100vh;
  position: fixed;
  display: none;
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  transition: 0.3s ease-in-out;
  z-index: 2000;
}

.stickyStyles {
  z-index: 999;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: sticky;
  top: 14px;
  right: 14px;
  cursor: pointer;
  margin: 10px 0;
}

.TabStyled {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  user-select: none;
  transition: 0.3s ease-in-out;
  border: none;
  background-color: transparent;
  margin-right: 15px;
  margin-top: 10px;
}

.MenuStyledMobile {
  transition: 0.3s ease-in-out;
  padding: 30px 15px 0;
}

.MenuStyledMobile li {
  margin-bottom: 10px;
}

.MenuStyledMobile li a {
  width: 92%;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn_login_slide {
  border-radius: 50px;
  background-color: #fff;
  padding: 10px 20px;
  color: #333;
  width: 94px;
  height: 30px;
  border: 1px solid #333;
  cursor: pointer;
}

.tabBtnStyled {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding: 15px 20px;
}

.tabBtnStyled button {
  font-size: 14px;
  padding: 12px 14px;
  color: #46ab66;
  border-radius: 100px;
  margin-left: 10px;
  font-size: 15px;
  border: none;
  background-color: transparent;
}

.tabBtnStyled .info {
  color: #fff;
  background-color: #46ab66;
}

.guideItem {
  display: none;
  transition: 0.3s;
}

.guideItem.active {
  display: block;
}

.arrow.on {
  transform: rotate(90deg);
  transition: 0.2s ease-in-out;
}
/* 한영번역 */
.language {
  width: 24px;
  cursor: pointer;
}

.language svg path {
  fill: #fff;
}

.languageBtn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.languageMenu {
  width: 100px;
  height: 89px;
  display: flex;
  margin: 0 auto;
  align-items: center;
  gap: 12px;
  flex-direction: column;
  left: 0;
  top: 48px;
  justify-content: center;
  padding: 12px 4px;
  z-index: 9999;
  text-align: center;
  border-radius: 10px;
  background-color: #2d2d2d;
  position: absolute;
  cursor: pointer;
}

.languageMenu > button {
  width: 74px;
  height: 14px;
  font-weight: 400;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  display: flex;
  border: none;
  color: #fff;
  background-color: transparent;
  cursor: pointer;
}

.languageLayout {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.languageLayout svg {
  cursor: pointer;
}

.languageLayout:hover {
  background-color: #2d2d2d;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
}

#ko:hover {
  border-radius: 5px;
  color: #dadada;
}

#en:hover {
  border-radius: 5px;
  color: #dadada;
}

.nav__menu__langBtn {
  display: flex;
  align-items: center;
}

.currentLang {
  color: #fff;
}

@media screen and (max-width: 1350px) {
  .languageMenu {
    right: 0;
    left: inherit;
  }
}

@media screen and (max-width: 768px) {
  .nav__menu__langBtn {
    padding: 0 0 2px 12px;
  }

  .languageMenu {
    right: 0;
    left: auto;
    width: 66px;
    gap: 0;
    padding: 0;
    height: auto;
  }

  /* 모바일 언어 셀렉트 */

  .languageMenu > button > svg {
    display: none;
  }

  .languageMenu > button {
    width: 100%;
    height: 36px;
    font-size: 12px;
    justify-content: center;
  }

  .languageBtn {
    position: absolute;
    right: 50px;
  }
}
