:root {
  --white: #fff;
  --black: #383838;
  --primary: #a166ff;
  --sub: #724cfe;
  --baby-blue: #549ef7;
  --french-blue: #2a8afd;
  --cobalt: #1d83fe;
  --cont-mg: 100px;
  --bg-light: #f9f9f9;
  --light-gray: #dcdcdc;
  --middle-gray: #c9c9c9;
  --charcoal-gray: #838383;
  --steel-gray: #777b7e;
  --dark-gray: #5c5c61;
  --swiper-theme-color: #a166ff !important;
  --swiper-navigation-size: 34px !important;
}
#root {
  width: 100vw;
  overflow-x: hidden;
}
.left {
  float: left;
}
.right {
  float: right;
}
.wh100 {
  width: 100%;
  position: relative;
}
.hidden {
  display: none !important;
}
.block {
  display: block;
}
.modal {
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.modal.popup {
  z-index: 101;
}
.modal__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
}
.modal__wrapper {
  background-color: #fefefe;
  width: 50%;
  height: 80%;
  overflow: hidden;
  max-width: 120rem;
  max-height: 80rem;
  z-index: 1;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.modal__wrapper.small,
.modal__wrapper.small-ex {
  min-width: 400px;
  height: auto;
  box-shadow: 2px 1.5px 10px 0 rgba(35, 24, 21, 0.1);
}
.modal__wrapper.small-ex {
  max-width: 500px;
  max-height: 50rem;
}
.modal__wrapper.small {
  max-width: 400px;
  max-height: 60%;
}
.modal__header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding: 3rem 3rem 0;
  box-sizing: border-box;
  background-color: #fefefe;
  color: #383838;
}
.modal__header .close {
  position: absolute;
  top: 2.5rem;
  right: 2.4rem;
  font-size: 3.2rem;
  transition: all 0.3s ease-in;
  color: #383838;
}
.modal__header .close:hover {
  color: #a5a5a5;
}
.modal__header .back {
  position: absolute;
  top: 2.5rem;
  left: 2.4rem;
  font-size: 3rem;
  transition: all 0.3s ease-in;
  color: #383838;
}
.modal__header .back:hover {
  color: #a5a5a5;
}
.modal__tit {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}
.modal__tit h2 {
  padding: 0 4rem;
  box-sizing: border-box;
  font-size: 2.4rem;
  justify-content: center;
  align-items: center;
  display: flex;
  word-break: keep-all;
}
.modal__tit p {
  padding: 0 1rem;
  box-sizing: border-box;
}
.modal__tit h2 .prev {
  justify-content: center;
  align-items: center;
  display: flex;
  color: #383838;
  padding: 0 2rem;
}
.modal__tit h2 .prev:hover {
  color: #a5a5a5;
}
.modal__content {
  width: 100%;
  height: calc(100% - 7.8rem);
  background-color: #fefefe;
  overflow-y: auto;
  padding: 2rem 3rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}
.modal__content--img {
  width: 100%;
  box-sizing: border-box;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  overflow: hidden;
}
.modal__content--img img {
  display: block;
  width: 100%;
}
.modal__details {
  width: 100%;
  padding: 2rem 2.5rem;
  box-sizing: border-box;
  border-radius: 2px;
  background-color: #f1f1f1;
  font-size: 1.4rem;
  line-height: 2rem;
  display: grid;
  grid-template-columns: 30% 70%;
  grid-auto-rows: minmax(2.25rem, auto);
}
.modal__details--tit {
  color: #868e96;
  font-size: 1.2rem;
}
.modal__tit p {
  margin-top: 1rem;
  color: #a5a5a5;
  font-size: 1.4rem;
  line-height: 1.8rem;
}
ion-icon {
  --ionicon-stroke-width: 42px;
}
.zoomIn {
  animation-duration: 0.3s;
  animation-fill-mode: both;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.bounce {
  animation: bounce 1s infinite;
  -webkit-animation: bounce 1s infinite;
}
@keyframes bounce {
  0% {
    top: -2px;
  }
  50% {
    top: 2px;
  }
  100% {
    top: -2px;
  }
}
@keyframes slideLeft {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1758px * 2));
    -webkit-transform: translateX(calc(-1758px * 2));
    -moz-transform: translateX(calc(-1758px * 2));
    -ms-transform: translateX(calc(-1758px * 2));
    -o-transform: translateX(calc(-1758px * 2));
  }
}
@keyframes slideRight {
  0% {
    transform: translateX(calc(-1758px * 2));
    -webkit-transform: translateX(calc(-1758px * 2));
    -moz-transform: translateX(calc(-1758px * 2));
    -ms-transform: translateX(calc(-1758px * 2));
    -o-transform: translateX(calc(-1758px * 2));
  }
  100% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}
.fade-up {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
}
.fade-up.inview {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.fade-up.inview:nth-child(1) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.fade-up.inview:nth-child(2) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.fade-up.inview:nth-child(3) {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.fade-up.inview:nth-child(4) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.fade-up.inview:nth-child(5) {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}
.fade-up.inview:nth-child(6) {
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
}
.fade-up.inview:nth-child(7) {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.fade-up.inview:nth-child(8) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.swiper-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.btn-next-ev,
.btn-next-mb,
.btn-next-pc,
.btn-next-vr,
.btn-prev-ev,
.btn-prev-mb,
.btn-prev-pc,
.btn-prev-vr {
  font-size: 3.4rem;
  color: var(--light-gray);
  display: inline-block;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.btn-next-ev:hover,
.btn-next-mb:hover,
.btn-next-pc:hover,
.btn-next-vr:hover,
.btn-next-vsp:hover,
.btn-prev-ev:hover,
.btn-prev-mb:hover,
.btn-prev-pc:hover,
.btn-prev-vr:hover,
.btn-prev-vsp:hover {
  color: var(--dark-gray) !important;
  text-shadow: 0 24px 30px 0 rgb(20 20 20 / 3%);
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}
.main {
  width: 100%;
  position: relative;
  padding-top: 8rem;
  box-sizing: border-box;
  z-index: 1;
}
.container {
  width: 100%;
  position: relative;
  display: grid;
  justify-items: center;
}
.inner {
  width: 1000px;
  padding: 10rem 0;
  box-sizing: border-box;
  position: relative;
}
.banner-main {
  width: 100%;
  height: 54rem;
  padding: 6rem 0;
  box-sizing: border-box;
  position: relative;
}
.banner-main h2 {
  font-size: 3.2rem;
  line-height: 4.8rem;
  text-align: center;
}
.dim {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  background-color: rgba(27, 19, 58, 0.6);
}
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.bg-video .bg-default {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-tit {
  font-size: 4.2rem;
  line-height: 5.6rem;
  margin-bottom: 4rem;
  font-weight: 800;
}
.main-tit.md {
  font-weight: 600;
}
.main-tit em {
  color: var(--primary);
  margin-bottom: 0.2em;
  display: inline-block;
}
.sub-tit {
  font-size: 2.4rem;
  line-height: 3.6rem;
  font-weight: 800;
}
.sub-txt {
  font-size: 2.4rem;
  line-height: 3.6rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 4rem;
}
.tooltip {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  padding: 1rem 1.4rem;
  white-space: nowrap;
  background-color: rgba(161, 102, 255, 1);
  color: var(--white);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.65rem;
  box-shadow: 0 24px 30px 0 rgb(20 20 20 / 3%);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 2rem;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: rgba(161, 102, 255, 1) transparent transparent transparent;
}
.tooltip .icon-download,
.tooltip .icon-link {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.6rem;
}
.tooltip ion-icon {
  margin-bottom: 0.25em;
}
.btn-main {
  z-index: 1;
  cursor: pointer;
  position: relative;
  width: fit-content;
  height: fit-content;
  display: block;
  box-sizing: border-box;
  padding: 1.4rem 2rem;
  background-color: #a166ff !important;
  color: #fff !important;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: all 0.2s cubic-bezier(0.25, 0.6, 0.45, 0.54);
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.6, 0.45, 0.54);
  -moz-transition: all 0.2s cubic-bezier(0.25, 0.6, 0.45, 0.54);
  -ms-transition: all 0.2s cubic-bezier(0.25, 0.6, 0.45, 0.54);
  -o-transition: all 0.2s cubic-bezier(0.25, 0.6, 0.45, 0.54);
}
.btn-main.disabled {
  background-color: var(--charcoal-gray) !important;
  cursor: default;
  pointer-events: none;
}
.btn-main:hover {
  background-color: var(--sub);
  box-shadow: 2px 6px 8px rgba(0, 0, 0, 0.2);
}
.btn-full {
  margin: 6rem 0;
  width: 100%;
  display: block;
  padding: 1.6rem 2rem;
  background-color: var(--primary) !important;
  color: var(--white) !important;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.2s cubic-bezier(0.25, 0.6, 0.45, 0.54);
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.6, 0.45, 0.54);
  -moz-transition: all 0.2s cubic-bezier(0.25, 0.6, 0.45, 0.54);
  -ms-transition: all 0.2s cubic-bezier(0.25, 0.6, 0.45, 0.54);
  -o-transition: all 0.2s cubic-bezier(0.25, 0.6, 0.45, 0.54);
}
.btn-full:hover {
  background-color: var(--sub);
  box-shadow: 2px 6px 8px rgba(0, 0, 0, 0.2);
}
.scrollToTopBtn {
  z-index: 100;
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  font-size: 2rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: var(--middle-gray);
  color: var(--white);
  box-shadow: 2px 6px 8px rgba(20, 20, 20, 0.1);
  opacity: 0;
  transform: translateY(100px);
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transition: all 0.5s ease-in;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
}
.scrollToTopBtn:hover {
  opacity: 0.7;
  box-shadow: 2px 6px 10px rgba(20, 20, 20, 0.3);
}
.showBtn {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.icon-download {
  display: inline-block;
  background: url(/assets/icon/icon_download.png) no-repeat center center;
  background-size: contain;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.2em;
  margin-right: 1rem;
}
.icon-link {
  display: inline-block;
  background: url(/assets/icon/icon_link.png) no-repeat center center;
  background-size: contain;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.2em;
  margin-right: 1rem;
}
ion-icon.icon-check,
ion-icon.icon-close {
  --ionicon-stroke-width: 48px;
  font-size: 2.2rem;
  color: var(--primary);
}
.qr-download {
  width: 30rem;
  height: 30rem;
  display: block;
  border-top: solid 1px #e5e5e5;
}
.top-bar {
  position: fixed;
  width: 100%;
  height: 4rem;
  box-shadow: 0 4px 8px rgba(20, 20, 20, 0.1);
  background-color: var(--primary);
  z-index: 99;
}
.top-bar a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
}
.top-bar ion-icon {
  margin: 0 0 0.4rem 0.8rem;
}
.top-bar img {
  width: 2rem;
  margin-right: 0.8rem;
}
/* 2022.06.07 - heade 상단 정부 바우처 bar 숨김, nav-menu top 위치값 위로 이동*/
.header {
  position: fixed; /*top:4rem;*/
  top: 0;
  left: 0;
  display: grid;
  align-items: center;
  border-bottom: solid 1px #e5e5e5;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 1);
  z-index: 99;
}
.header .logo {
  width: 30rem;
  height: 8rem;
  background: url(/assets/logo/logo_bk.png) no-repeat center center;
  background-size: 16rem auto;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}
.nav__menu {
  display: none;
  width: fit-content;
  z-index: 3;
  position: fixed;
  right: 2rem;
  top: 3rem;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
}
.nav__menu .hamburger {
  width: 3rem;
  height: 3rem;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  transition: transform 0.1s cubic-bezier(0.77, 0.2, 0.05, 1);
  -webkit-transition: transform 0.1s cubic-bezier(0.77, 0.2, 0.05, 1);
  -moz-transition: transform 0.1s cubic-bezier(0.77, 0.2, 0.05, 1);
  -ms-transition: transform 0.1s cubic-bezier(0.77, 0.2, 0.05, 1);
  -o-transition: transform 0.1s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.nav__menu .hamburger:hover span {
  background-color: var(--sub);
}
.nav__menu .hamburger span {
  width: 90%;
  height: 3px;
  position: absolute;
  background-color: var(--primary);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: transform 0.3s ease-in;
  -webkit-transition: transform 0.3s ease-in;
  -moz-transition: transform 0.3s ease-in;
  -ms-transition: transform 0.3s ease-in;
  -o-transition: transform 0.3s ease-in;
}
.nav__menu .hamburger span:nth-child(1) {
  top: 20%;
}
.nav__menu .hamburger span:nth-child(2) {
  top: 50%;
}
.nav__menu .hamburger span:nth-child(3) {
  top: 80%;
}
.nav__menu .hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
}
.nav__menu .hamburger.active span:nth-child(2) {
  opacity: 0;
  left: -100%;
}
.nav__menu .hamburger.active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -moz-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  -o-transform: translateY(-50%) rotate(-45deg);
}
.nav {
  width: 100vw;
  height: 8rem;
  padding: 0 8rem 0 30rem;
  box-sizing: border-box;
  white-space: nowrap;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__list {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav__item {
  height: 100%;
}
.nav__item.mobile {
  display: none;
}
.nav__item a {
  display: block;
  line-height: 8rem;
  padding: 0 4rem;
  margin: 0 2rem;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 600;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}
.nav__item a .arrow {
  display: inline-block;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}
.nav__item a:focus,
.nav__item a:hover {
  color: var(--primary);
}
.nav__item a:focus .arrow,
.nav__item a:hover .arrow {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.footer {
  width: 100%;
  display: grid;
  justify-items: center;
  background: var(--bg-light);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--steel-gray);
}
.footer .inner {
  width: 1000px;
  padding: 6rem 0 8rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer a {
  color: var(--steel-gray);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.footer a:hover {
  color: var(--dark-gray);
}
.footer__logo {
  width: 6.375rem;
  height: 2.775rem;
  background: url(/assets/logo/logo_salin.png) no-repeat center center;
  background-size: contain;
  margin-bottom: 1.8rem;
}
.footer__logo--mobile {
  display: none;
  width: 6.375rem;
  height: 2.775rem;
  background: url(/assets/logo/logo_salin_wh.png) no-repeat center center;
  background-size: contain;
}
.footer__copy {
  width: 100%;
  padding-bottom: 1rem;
  border-bottom: solid 1px var(--light-gray);
}
.footer__info address {
  margin-top: 1rem;
}
.footer__info address span {
  display: inline-block;
}
.footer__info address span:last-child {
  margin-left: 1rem;
}
.footer__info address span:first-child::after {
  display: inline-block;
  content: '';
  width: 1px;
  height: 8px;
  margin-left: 1rem;
  background-color: var(--steel-gray);
}
.lang-select {
  position: relative;
}
.selected {
  cursor: pointer;
  width: 20rem;
  border: solid 1px var(--light-gray);
  color: var(--black);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  position: relative;
  height: 100%;
  order: 0;
}
.selected:hover {
  border-color: var(--primary);
  box-shadow: 0 24px 30px 0 rgb(20 20 20 / 4%);
}
.selected::after {
  content: '';
  background: url(/assets/icon/icon_chevron_down.png) no-repeat center center;
  background-size: 2rem auto;
  position: absolute;
  width: 16px;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  transition: all 0.4s;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.selected.active::after {
  transform: translateY(-50%) rotate(180deg);
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
}
.select-box {
  display: flex;
  width: 20rem;
  flex-direction: column;
  position: absolute;
}
.select-box .options-container {
  max-height: 0;
  opacity: 0;
  color: var(--black);
  background: #fcfcfc;
  width: 100%;
  overflow: hidden;
  transition: all 0.3s;
  border: solid 1px var(--middle-gray);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  order: 1;
}
.select-box .options-container.active {
  max-height: 240px;
  opacity: 1;
}
.select-box .options-container::-webkit-scrollbar {
  width: 6px;
  background-color: var(--charcoal-gray);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.select-box .options-container::-webkit-scrollbar-thumb {
  background: var(--middle-gray);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.select-box .select-list {
  cursor: pointer;
}
.select-box .select-list:hover {
  background: #eee;
}
.select-box .select-option,
.selected {
  display: block;
  cursor: pointer;
  padding: 1rem 1.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--charcoal-gray);
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}
.select-box .flags {
  width: 2rem;
  height: 2rem;
  background-size: 2rem auto;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 1rem;
  display: inline-block;
}
.select-box .flags.en {
  background-image: url(/assets/icon/flags/united-states.png);
}
.select-box .flags.kr {
  background-image: url(/assets/icon/flags/south-korea.png);
}
.table-wrapper {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 12rem auto;
  border-top: solid 1px #e5e5e5;
  text-align: center;
}
.table-wrapper section {
  border-right: solid 1px #e5e5e5;
}
.table-wrapper .column {
  display: grid;
  grid-auto-flow: dense;
}
.table-wrapper .column:not(:last-child) {
  border-right: solid 1px #e5e5e5;
}
.table-wrapper .column .tit {
  background-color: #f8f8f8;
}
.table-wrapper .column div {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: solid 1px #e5e5e5;
  box-sizing: border-box;
}
.table-grid__body {
  display: grid;
}
.home .banner-main .downloadAppPc {
  display: flex;
  gap: 1.5rem;
}
.home .banner-main .downloadAppPc .btn-main {
  min-width: 17.2rem;
}
.home .banner-main .downloadAppMobile {
  display: none;
  gap: 1.5rem;
}
.home .banner-main .downloadAppGuide {
  text-align: center;
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 500;
  margin-top: 2rem;
}
.home .banner-main .content-txt {
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.home .banner-main .content-txt .logo {
  display: block;
  width: 37rem;
  margin-bottom: 4rem;
}
.home .banner-main .content-txt .description {
  text-shadow: 0 0 8px rgb(0 0 0 / 20%);
  margin-bottom: 6rem;
  letter-spacing: 1px;
}
.home .promotion-video {
  position: relative;
  width: 100%;
  height: 48rem;
  overflow: hidden;
}
.home .event {
  width: 100%;
  padding: 4rem 0;
  background: var(--bg-light);
}
.home .event .swiper-box {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: solid 1px #e5e5e5;
  padding: 4rem;
  position: relative;
  box-shadow: 0 24px 30px 0 rgb(20 20 20 / 4%);
}
.home .event .swiper-wrapper {
  width: 100%;
}
.home .event .pagination-ev {
  bottom: -50px;
  position: absolute;
  text-align: center;
}
.home .event .btn-prev-ev {
  left: -100px;
  font-size: 4.4rem;
}
.home .event .btn-next-ev {
  right: -100px;
  font-size: 4.4rem;
}
.home .event .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: flex-start;
}
.home .event .event__link {
  cursor: pointer;
  text-align: left;
  z-index: 9;
}
.home .event .event__link:hover .event__img img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.home .event .event__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home .event .event__img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}
.home .event .event__title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2.2rem;
}
.home .event .event__name {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--dark-gray);
}
.home .event .event__desc {
  width: 100%;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--charcoal-gray);
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.home .event .event__date {
  font-size: 1.4rem;
  color: var(--charcoal-gray);
}
.home .promotion-video .main-tit {
  width: 100%;
  box-sizing: border-box;
  font-size: 5.4rem;
  line-height: 6.8rem;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9;
  color: var(--white);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.home .service {
  background-color: var(--bg-light);
}
.home .service__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  row-gap: 2rem;
  column-gap: 2rem;
  margin-top: 6rem;
}
.home .service__item {
  max-width: 32rem;
  min-height: 36.7rem;
  background-color: var(--white);
  padding: 4rem 3rem 3rem;
  box-sizing: border-box;
  box-shadow: 0 20px 30px 0 rgb(0 0 0 / 10%);
  text-align: center;
  display: grid;
  justify-items: center;
  grid-template-rows: 12rem minmax(auto, 6rem) auto;
  row-gap: 0.6rem;
  border: solid 1px #f1f1f1;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.home .service__img {
  width: 10rem;
  height: 10rem;
}
.home .service__tit {
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: relative;
}
.home .option {
  display: inline-block;
  width: fit-content;
  color: var(--white);
  font-size: 1.25rem;
  padding: 0.4em 0.8em;
  background-color: var(--steel-gray);
  font-weight: 600;
  margin: 0 0 0.2em 0.8rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.home .service__desc {
  font-size: 1.6rem;
  line-height: 2.4rem;
  position: relative;
  font-weight: 500;
  margin-top: 1.5rem;
}
.home .devices .main-tit {
  margin-bottom: 5rem;
}
.home .devices .sub-tit,
.home .devices__desc {
  margin: 0 10rem;
}
.home .devices .sub-tit {
  margin: 5rem 10rem 3rem;
}
.home .devices__desc {
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: 500;
  margin-top: 1.5rem;
  position: relative;
}
.home .devices__desc::before {
  content: '';
  width: 2rem;
  height: 2px;
  background-color: #383838;
  position: absolute;
  top: -1.5rem;
  left: 0;
}
.home .devices article {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #fff;
  border: solid 1px #e5e5e5;
  box-shadow: 0 20px 30px 0 rgb(0 0 0 / 8%);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin-bottom: 5rem;
}
.home .devices .vr {
  margin-bottom: 0;
}
.home .devices .dev__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #e5e5e5;
}
.home .devices .dev__img img {
  width: 100%;
  height: auto;
}
.home .devices .swiper-box {
  padding: 3rem 10rem;
  margin-bottom: 2rem;
  position: relative;
}
.home .devices .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: flex-start;
}
.home .devices .btn-prev-mb,
.home .devices .btn-prev-pc,
.home .devices .btn-prev-vr {
  left: 30px;
}
.home .devices .btn-next-mb,
.home .devices .btn-next-pc,
.home .devices .btn-next-vr {
  right: 30px;
}
.home .devices .table-wrapper {
  padding: 0 10rem;
  grid-template-columns: repeat(3, auto);
  border-top: none;
}
.home .devices .table-wrapper .column {
  border-top: solid 1px var(--light-gray);
  grid-template-rows: repeat(7, minmax(5rem, auto));
}
.home .devices .table-wrapper .column:first-child {
  font-weight: 500;
}
.home .devices .table-wrapper .column div {
  padding: 0 1em;
  box-sizing: border-box;
}
.help .banner-main {
  display: grid;
  justify-items: center;
  background: url(/assets/img/banner_help.png) no-repeat center center;
  background-size: auto 100%;
  box-shadow: 0 24px 30px 0 rgb(20 20 20 / 3%);
}
.help .banner-main .inner {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.help .banner-main .logo {
  display: block;
  width: 37rem;
}
.help .banner-main .btn-group {
  display: flex;
  gap: 1.5rem;
}
.qa__list {
  border-top: solid 1px var(--light-gray);
}
.qa__label {
  width: 100%;
  position: relative;
  padding: 3rem 2rem;
  box-sizing: border-box;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: left;
  line-height: 3rem;
  align-items: center;
  color: var(--black);
  border-bottom: solid 1px var(--light-gray);
  display: grid;
  grid-template-columns: 4rem auto 3rem;
}
.qa__label::after {
  content: '';
  width: 2.2rem;
  height: 0.88rem;
  background: url(/assets/icon/icon_chevron_down.png) no-repeat center center;
  background-size: 2rem auto;
  position: absolute;
  top: 50%;
  right: 2rem;
  display: inline-block;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transition: transform 0.2s ease-in;
  -webkit-transition: transform 0.2s ease-in;
  -moz-transition: transform 0.2s ease-in;
  -ms-transition: transform 0.2s ease-in;
  -o-transition: transform 0.2s ease-in;
}
.qa__label.active::after {
  display: inline-block;
  transform: translateY(-50%) rotate(-180deg);
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
}
.qa__label::before {
  content: '';
  width: 2rem;
  height: 2rem;
  display: inline-block;
  margin-right: 2rem;
  background: url(/assets/icon/icon_question.png) no-repeat center center;
  background-size: 2rem auto;
}
.qa__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  background-color: var(--bg-light);
}
.qa__content p {
  padding: 2.8rem 2rem 2.8rem 6rem;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.8rem;
  text-align: justify;
  border-bottom: solid 1px var(--light-gray);
}
.qa__content a {
  color: var(--primary);
  display: inline-block;
  margin-bottom: 0.2em;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}
.qa__content a:hover {
  color: var(--sub);
}
.alliance .banner-main {
  display: grid;
  justify-items: center;
  box-shadow: 0 24px 30px 0 rgb(20 20 20 / 3%);
  background-image: linear-gradient(
    360deg,
    #f3ebff -19.25%,
    rgba(243, 235, 255, 0.322353) 100%,
    rgba(48, 44, 55, 0) 100%
  );
}
.alliance .banner-main .inner {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.alliance .banner-main .inner .buttons {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
}
.alliance .banner-main .logo {
  display: block;
  width: 37rem;
  margin-bottom: 3rem;
}
.alliance .banner-main .sub-tit {
  text-align: left;
}
.alliance .banner-main .notice {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6rem;
  padding-left: 1rem;
}
.v-space {
  margin-bottom: 10rem;
}
.v-space .inner {
  padding: 10rem 0 5rem;
}
.v-space .inner,
.v-space .sub-txt {
  margin: 0;
}
.v-space .swiper-box {
  width: 100vw;
  display: grid;
  justify-items: center;
  overflow: hidden;
}
.v-space .swiper-container {
  overflow: visible;
  box-sizing: border-box;
  width: 1000px;
}
.v-space .swiper-slide {
  opacity: 0.7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}
.v-space .swiper-slide-active {
  margin-right: 5%;
  margin-left: 5%;
  opacity: 1;
  box-shadow: 0 24px 30px 0 rgb(20 20 20 / 7%);
}
.v-space .swiper-slide img {
  width: 80%;
}
.v-space .swiper-slide-active img {
  width: 100%;
}
.v-space .swiper-slide-prev {
  margin-left: -5%;
}
.v-space .swiper-buttons {
  width: 145px;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-top: 5rem;
}
.v-space .btn-next-vsp,
.v-space .btn-prev-vsp {
  font-size: 3rem;
  color: var(--light-gray);
  display: inline-block;
  cursor: pointer;
}
.v-space .swiper-bullet {
  font-size: 1.8rem;
  font-weight: 600;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: fit-content;
  height: fit-content;
}
.v-space .swiper-bullet::after {
  content: '/ 8';
  font-weight: 400;
  display: inline-block;
  font-size: 1.4rem;
  margin: 0 0.2rem 0 0.6rem;
  color: var(--dark-gray);
}
.v-space .swiper-pagination-bullet {
  display: none;
  position: absolute;
}
.v-space .swiper-pagination-bullet-active {
  display: block;
  border: none !important;
  background: 0 0 !important;
}
.v-confer {
  margin: 4rem 0;
}
.v-confer .inner {
  max-width: 1200px;
  padding: 10rem;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 2px 20px 25px 0 rgba(35, 24, 21, 0.1);
}
.v-confer__inner {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
.v-confer__img {
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0 24px 30px 0 rgb(20 20 20 / 5%);
}
.v-confer__img img {
  width: 100%;
}
.avatar.container {
  margin-bottom: 10rem;
}
.avatar .inner {
  padding-bottom: 2rem;
}
.avatar .slider {
  width: 100%;
  overflow-x: hidden;
}
.avatar .slider .slide-box {
  display: flex;
  flex-direction: row;
  width: calc(1758px * 4);
  margin-bottom: 2rem;
  gap: 26px;
}
.avatar .slider .slide-box:nth-child(1) {
  animation-delay: 0.5s;
  animation: slideLeft 60s linear infinite;
  -webkit-animation: slideLeft 60s linear infinite;
}
.avatar .slider .slide-box:nth-child(2) {
  animation: slideRight 60s linear infinite;
  -webkit-animation: slideRight 60s linear infinite;
}
.avatar .slider .slide-box:nth-child(3) {
  animation-delay: 0.5s;
  animation: slideLeft 60s linear infinite;
  -webkit-animation: slideLeft 60s linear infinite;
}
.avatar .slider .slide-item {
  width: 1758px;
  height: 12rem;
  background-size: 100% auto;
}
.avatar .slider .slide-item.first {
  background: url(/assets/img/avatar_01.png) no-repeat left center;
}
.avatar .slider .slide-item.second {
  background: url(/assets/img/avatar_02.png) no-repeat left center;
}
.avatar .slider .slide-item.third {
  background: url(/assets/img/avatar_03.png) no-repeat left center;
}
.proposal.container {
  width: 100%;
  display: grid;
  justify-content: center;
  background-image: linear-gradient(
    360deg,
    #f3ebff -19.25%,
    rgba(243, 235, 255, 0.322353) 100%,
    rgba(48, 44, 55, 0) 100%
  );
}
.proposal .inner {
  display: flex;
  flex-direction: column;
}
.proposal .inner .main-tit {
  padding-bottom: 1rem;
  margin-bottom: 0;
  color: var(--primary);
  border-bottom: solid 1px var(--light-gray);
  box-sizing: border-box;
}
.proposal .inner .desc {
  margin: 2rem 0;
  font-size: 1.6rem;
  line-height: 2.2rem;
  font-weight: 500;
}
.proposal .inner .desc b {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.proposal .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.proposal .contact-form .col {
  margin-bottom: 1rem;
}
.proposal .contact-form label {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  position: relative;
}
.proposal .contact-form label::after {
  content: '';
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  background-color: var(--primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 4px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.proposal .contact-form input,
.proposal .contact-form textarea {
  width: 100%;
  background-color: #fff;
  padding: 0.6em 0.8em;
  font-size: 1.6rem;
  line-height: 2.2rem;
  border: solid 1px var(--light-gray);
  box-sizing: border-box;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}
.proposal .contact-form input:focus,
.proposal .contact-form textarea:focus {
  border-color: var(--primary);
}
.proposal .btn-full {
  margin: 2rem 0 0 0;
  font-size: 1.8rem;
  cursor: pointer;
}
.pricing .banner-main {
  display: grid;
  justify-items: center;
  box-shadow: 0 24px 30px 0 rgb(20 20 20 / 3%);
}
.pricing .banner-main .inner {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.pricing .banner-main .logo {
  display: block;
  width: 37rem;
  margin-bottom: 3rem;
}
.pricing .banner-main .sub-tit {
  text-align: left;
}
.pricing .plan .main-tit {
  margin-bottom: 0;
}
.pricing .plan .desc {
  font-size: 1.6rem;
  line-height: 1.8rem;
}
.pricing .plan .desc:nth-child(2) {
  color: var(--charcoal-gray);
}
.pricing .plan .desc small {
  font-size: 1.4rem;
}
.pricing .plan .table-grid__body {
  grid-template-columns: 20rem auto 22rem;
}
.pricing .plan .standard .column {
  grid-template-rows: repeat(20, minmax(4.5rem, auto));
}
.pricing .plan .standard .column .col-7 {
  grid-row: 3/7;
}
.pricing .plan .standard .column .col-8 {
  grid-row: 3/8;
}
.pricing .plan .standard .column .col-14 {
  grid-row: 8/14;
}
.pricing .plan .standard .column .col-16 {
  grid-row: 8/16;
}
.pricing .plan .standard .column .col-18 {
  grid-row: 16/18;
}
.pricing .plan .standard .col-20 {
  grid-row: 2/21;
}
.pricing .plan .optional {
  background-color: #fdfbff;
}
.pricing .plan .optional .column {
  grid-template-rows: repeat(4, minmax(4.5rem, auto));
}
.pricing .plan .optional .column .col-1 {
  grid-row: 1/5;
}
.pricing .plan .optional .column .col-2 {
  grid-row: 3/5;
}
.pricing .plan .notice {
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--charcoal-gray);
  margin-top: 2rem;
}
@media only screen and (max-width: 1024px) {
  .inner {
    padding: 8rem 10rem;
    width: 100vw;
  }
  .banner-main {
    height: 48rem;
    padding: 6rem 10rem;
  }
  .banner-main .inner {
    width: 100%;
  }
  .header .logo {
    width: 22rem;
  }
  .nav {
    padding: 0 3rem 0 22rem;
  }
  .nav__item a {
    padding: 0 1.6rem;
  }
  .select-box,
  .selected {
    width: 12.5rem;
  }
  .footer .inner {
    width: 100%;
    padding: 4rem 10rem 6rem;
  }
  .home .banner-main .content-txt .description {
    margin-bottom: 6rem;
  }
  .home .event .btn-prev-ev {
    left: -75px;
  }
  .home .event .btn-next-ev {
    right: -75px;
  }
  .home .promotion-video {
    height: 42rem;
  }
  .home .service__wrapper {
    row-gap: 3rem;
    column-gap: 3rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .home .service__item {
    max-width: inherit;
  }
  .home .devices .main-tit {
    margin: 0 10rem 5rem 0;
  }
  .help .banner-main {
    background-size: auto 90%;
    background-position: bottom;
  }
  .v-space .inner {
    padding: 8rem 10rem 5rem;
  }
  .v-space .swiper-container {
    width: 100vw;
    padding: 0 10rem;
  }
  .v-space .swiper-slide {
    margin: inherit;
  }
  .v-confer .inner {
    width: 100%;
    box-shadow: none;
  }
  .pricing .plan .table-grid__body {
    grid-template-columns: 14rem auto 22rem;
  }
  .pricing .plan .standard .column {
    grid-template-rows: repeat(20, minmax(7.5rem, auto));
  }
}
/* 2022.04.01 - header 상단에 정부바우처 bar 추가 : .main padding 추가 */
/* 2022.04.14 - mobile navigation 레이아웃 변경 : width style 추가 */
/* 2022.06.07 - header 상단에 정부바우처 bar 추가 : .main padding(4rem) 삭제*/
@media only screen and (max-width: 769px) {
  .main {
    padding-top: 0;
  }
  .banner-main {
    height: 34rem;
    padding: 6rem 10rem 4rem;
  }
  .banner-main h2 {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
  .main-tit {
    font-size: 3.6rem;
    line-height: 4.2rem;
    margin-bottom: 4rem;
  }
  .btn-main {
    font-size: 1.75rem;
  }
  .btn-full {
    margin: 2rem 0;
  }
  .bounce {
    animation: none;
    -webkit-animation: none;
  }
  .header .logo {
    display: none;
  }
  .nav__menu {
    display: inline-block;
  }
  .nav {
    opacity: 0;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    padding: 0;
    background-color: var(--white);
    box-shadow: 2px 1.5px 10px 0 rgba(35, 24, 21, 0.1);
    transition: right 0.3s ease-in, opacity 0.2s ease-in;
    -webkit-transition: right 0.3s ease-in, opacity 0.2s ease-in;
    -moz-transition: right 0.3s ease-in, opacity 0.2s ease-in;
    -ms-transition: right 0.3s ease-in, opacity 0.2s ease-in;
    -o-transition: right 0.3s ease-in, opacity 0.2s ease-in;
  }
  .nav.active {
    right: 0;
    opacity: 1;
    flex-direction: column;
  }
  .lang-select {
    width: 100%;
    padding: constant(safe-area-inset-top) constant(safe-area-inset-right)
      constant(safe-area-inset-bottom) constant(safe-area-inset-left);
    padding: env(safe-area-inset-top) env(safe-area-inset-right)
      env(safe-area-inset-bottom) env(safe-area-inset-left);
  }
  .selected {
    width: 100%;
    border-radius: 0;
    border: none;
    background-color: #fcfcfc;
    padding: 1.5rem 4rem;
    text-align: center;
    border-top: solid 1px var(--light-gray);
  }
  .selected:hover {
    border-color: var(--light-gray);
  }
  .selected::after {
    right: 3rem;
  }
  .select-box {
    width: 100%;
    top: -8.8rem;
  }
  .select-box .select-option {
    padding: 1rem 3rem;
    text-align: center;
  }
  .nav__list {
    padding-top: 5rem;
    flex-direction: column;
  }
  .nav__item {
    width: 100%;
    height: auto;
    text-align: left;
  }
  .nav__item.mobile {
    display: block;
  }
  .nav__item a {
    font-size: 2rem;
    padding: 3rem 4rem;
    box-sizing: border-box;
    margin: 0;
    line-height: inherit;
    text-align: center;
  }
  .home .banner-main .downloadAppPc {
    display: none;
  }
  .home .banner-main .downloadAppMobile {
    display: flex;
  }
  .home .banner-main .downloadAppMobile .btn-main {
    min-width: 13.5rem; /*margin-top:3rem*/
  }
  .home .banner-main .downloadAppGuide {
    font-size: 1.25rem;
    margin-top: 1.4rem;
    line-height: 1.6rem;
  }
  .home .banner-main .content-txt .logo {
    width: 24rem;
    margin-bottom: 2rem;
  }
  .home .banner-main .content-txt .description {
    font-size: 2.6rem;
    line-height: 3.4rem;
    margin-bottom: 2rem;
  }
  .home .event {
    padding: 0;
  }
  .home .event .swiper-box {
    padding: 3rem;
  }
  .home .event .pagination-ev {
    bottom: -40px;
  }
  .home .promotion-video {
    height: 32rem;
  }
  .home .promotion-video .main-tit {
    width: 90%;
    font-size: 4.2rem;
    line-height: 5.4rem;
  }
  .home .service__wrapper {
    margin-top: 4rem;
  }
  .home .service__tit {
    font-size: 1.8rem;
  }
  .home .service__desc {
    margin-top: 0;
  }
  .home .devices .main-tit {
    margin: 0 0 6rem 0;
  }
  .home .devices .sub-tit {
    margin: 5rem 6rem 3rem;
  }
  .home .devices__desc {
    margin: 0 6rem;
  }
  .home .devices .table-wrapper {
    padding: 0 6rem;
  }
  .home .devices .swiper-box {
    padding: 3rem 6rem;
  }
  .home .devices .btn-prev-mb,
  .home .devices .btn-prev-pc,
  .home .devices .btn-prev-vr {
    left: 15px;
  }
  .home .devices .btn-next-mb,
  .home .devices .btn-next-pc,
  .home .devices .btn-next-vr {
    right: 15px;
  }
  .help .banner-main {
    background-size: auto 86%;
  }
  .help .banner-main .logo {
    width: 24rem;
  }
  .alliance .banner-main .logo {
    width: 24rem;
    margin-bottom: 2rem;
  }
  .v-space .swiper-container {
    padding: 0 10rem;
  }
  .v-space .swiper-buttons {
    margin-top: 1rem;
    width: 130px;
  }
  .pricing .banner-main .tooltip {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 12rem;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
  .pricing .banner-main .tooltip::after {
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-color: transparent rgba(161, 102, 255, 1) transparent transparent;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
  .pricing .banner-main .logo {
    width: 24rem;
    margin-bottom: 2rem;
  }
  .pricing .plan .table {
    font-size: 1.4rem;
  }
  .pricing .plan .table-wrapper {
    grid-template-columns: auto;
    font-size: 1.4rem;
  }
  .pricing .plan .table-grid__header {
    display: none;
  }
  .pricing .plan .table-grid__body {
    grid-template-columns: 10rem auto 12rem;
  }
  .pricing .plan .table-grid__body .mb {
    width: 96%;
  }
  .pricing .plan .table-wrapper section {
    border: none;
  }
  .pricing .plan .standard .column {
    grid-template-rows: repeat(20, minmax(6rem, auto));
  }
  .pricing .plan .optional .column:first-child {
    grid-template-rows: repeat(1, minmax(4.5rem, auto));
  }
  .pricing .plan .notice {
    font-size: 1.25rem;
    line-height: 1.6rem;
  }
}
@media only screen and (max-width: 501px) {
  .inner {
    padding: 6rem 4rem;
  }
  .footer .inner {
    padding: 4rem 4rem 6rem;
  }
  .banner-main {
    height: 30rem;
    padding: 5.5rem 4rem 4rem;
  }
  .banner-main h2 {
    font-size: 2rem;
    line-height: 2.6rem;
  }
  .main-tit {
    font-size: 2.6rem;
    line-height: 3.2rem;
    margin-bottom: 2rem !important;
  }
  .sub-txt {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
  .btn-main {
    font-size: 1.6rem;
  }
  .btn-full {
    margin: 3rem 0 0 0;
    font-size: 1.65rem;
  }
  .scrollToTopBtn {
    bottom: 2rem;
    right: 2rem;
    width: 4.5rem;
    height: 4.5rem;
  }
  .tooltip {
    font-size: 1rem;
  }
  .home .banner-main .downloadAppGuide small {
    display: none;
  }
  .home .banner-main .content-txt .description {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
  .home .event {
    padding: 2rem 0;
  }
  .home .event .inner {
    padding: 6rem 5rem;
  }
  .home .event .btn-prev-ev {
    left: -45px;
    font-size: 4rem;
  }
  .home .event .btn-next-ev {
    right: -45px;
    font-size: 4rem;
  }
  .home .event .pagination-ev {
    bottom: -30px;
  }
  .home .event .event__name {
    font-size: 1.7rem;
    line-height: 2.1rem;
  }
  .home .event .event__desc {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
  .home .promotion-video {
    height: 22rem;
  }
  .home .promotion-video .main-tit {
    font-size: 2.8rem;
    line-height: 3.6rem;
    margin-bottom: 0;
  }
  .home .service__wrapper {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 3rem;
  }
  .home .service__item {
    min-height: auto;
    grid-template-rows: auto;
    gap: 1.5rem;
  }
  .home .service__img {
    width: 8rem;
    height: 8rem;
  }
  .home .service__desc {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
  .home .service__desc::before {
    top: -0.75rem;
  }
  .home .option {
    margin: 0.6rem 0 0 0;
  }
  .home .devices .sub-tit {
    margin: 4rem 4rem 2.5rem;
    font-size: 2rem;
  }
  .home .devices__desc {
    margin: 0 4rem;
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
  .home .devices .table-wrapper {
    padding: 0 2rem;
    font-size: 1.2rem;
    grid-template-columns: 7.6rem auto auto;
    margin-top: 2rem;
  }
  .home .devices .table-wrapper .column {
    grid-template-rows: repeat(7, minmax(5.4rem, auto));
    line-height: 96%;
  }
  .home .devices .swiper-box {
    padding: 2rem 4rem;
    margin-bottom: 2rem;
  }
  .home .devices .btn-prev-mb,
  .home .devices .btn-prev-pc,
  .home .devices .btn-prev-vr {
    left: 5px;
  }
  .home .devices .btn-next-mb,
  .home .devices .btn-next-pc,
  .home .devices .btn-next-vr {
    right: 5px;
  }
  .help .banner-main {
    background: none;
  }
  .help .banner-main .logo {
    margin-top: 2rem;
  }
  .qa__label {
    padding: 2rem 1rem;
    font-size: 1.6rem;
    line-height: 2.2rem;
    grid-template-columns: 3.5rem auto 3rem;
  }
  .qa__content p {
    padding: 2rem 2.6rem 2rem 4.5rem;
    line-height: 2rem;
    font-size: 1.25rem;
    text-align: left;
  }
  .qa__label::before {
    margin-right: 1.5rem;
  }
  .qa__label::after {
    right: 1rem;
    width: 1.8rem;
    background-size: 1.65rem;
  }
  .v-space {
    margin-bottom: 6rem;
  }
  .v-space .inner {
    padding: 6rem 4rem 4rem;
  }
  .v-space .swiper-container {
    padding: 0 4rem;
  }
  .v-space .swiper-slide-active {
    margin: inherit;
  }
  .v-confer {
    margin: 0;
  }
  .v-confer .inner {
    padding: 6rem 4rem;
  }
  .v-confer__inner {
    flex-direction: column;
  }
  .avatar .slider .slide-box:nth-child(3) {
    display: none;
  }
  .alliance .banner-main .logo {
    width: 20rem;
  }
  .alliance .banner-main .mb {
    display: none;
  }
  .alliance .banner-main .tooltip {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 11rem;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
  .alliance .banner-main .tooltip::after {
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-color: transparent rgba(161, 102, 255, 1) transparent transparent;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
  .alliance .contact {
    margin-top: 6rem;
  }
  .alliance .contact .inner {
    padding: 6rem 4rem;
  }
  .alliance .contact .inner .sub-tit {
    margin-bottom: 2rem;
    line-height: 2.6rem;
    font-size: 2rem;
  }
  .pricing .banner-main .tooltip {
    left: 11rem;
  }
  .pricing .main-tit {
    margin-bottom: 1rem !important;
  }
  .pricing .main-tit span {
    float: inherit;
    display: block;
    font-size: 2.4rem;
  }
  .pricing .desc small {
    float: inherit;
  }
  .pricing .plan .table-wrapper {
    margin-top: 2rem;
    font-size: 1.25rem;
  }
  .pricing .plan .table-grid__body {
    grid-template-columns: 8rem auto 10rem;
  }
  .pricing .plan .table-grid__body .mb {
    font-size: 90%;
  }
  .pricing .plan .standard .column {
    grid-template-rows: repeat(20, minmax(5.4rem, auto));
  }
  .proposal .inner .desc {
    margin: 1rem 0;
    font-size: 1.4rem;
    line-height: 2rem;
  }
  .proposal .contact-form label {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
}
@media only screen and (max-width: 428px) {
  .modal__wrapper.small,
  .modal__wrapper.small-ex {
    max-width: 360px;
    min-width: 360px;
    height: auto;
  }
  .tooltip {
    display: none;
  }
  .home .banner-main .content-txt .description {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
  .home .promotion-video .main-tit {
    font-size: 2.4rem;
  }
  .pricing .desc {
    padding-left: 0.5rem;
  }
  .pricing .desc small.right {
    display: block;
  }
  .pricing .plan .table-grid__body .col-1 b {
    word-break: break-all;
  }
}
