:root {
  --background: #e8e4df;
  --maintxt: #201d1d;
  --primary: #4c4038;
  --white: white;
  --subtxt: #4c4038;
  --placeholder: #4c403859;
  --subpagebg: #dbd5ca;
  --black: #0d0d0d;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  background-color: var(--background);
  color: var(--maintxt);
  word-break: keep-all;
  text-wrap: balance;
  font-family: Noto Serif KR, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

h1 {
  color: var(--maintxt);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3em;
  font-weight: 800;
  line-height: 1.3em;
}

h2 {
  color: var(--maintxt);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2em;
  font-weight: 800;
  line-height: 1.3em;
}

h3 {
  color: var(--maintxt);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5em;
  font-weight: 800;
  line-height: 1.3em;
}

a {
  text-decoration: underline;
}

.nav {
  z-index: 30;
  width: 100%;
  padding-top: 1em;
  padding-bottom: 1em;
  position: fixed;
  inset: 0% 0% auto;
}

.container {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.horizontal {
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.horizontal-between {
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.vertical {
  flex-flow: column;
  align-items: stretch;
  text-decoration: none;
  display: flex;
}

.vertical-center {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.gap-1em {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
}

.gap-2em {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
}

.gap-3em {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
}

.gap-05em {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
}

.grid-2 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: start;
  display: grid;
}

.grid-2.gap-2em {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
}

.grid-3 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-4 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.text {
  color: var(--maintxt);
  font-size: 1.25em;
  line-height: 1.3em;
}

.text-big {
  color: var(--maintxt);
  font-size: 1.5em;
  line-height: 1.3em;
}

.text-small {
  color: var(--maintxt);
  font-size: 1em;
  line-height: 1.3em;
  text-decoration: none;
}

.gutter-1em {
  width: 100%;
  height: 1em;
}

.gutter-2em {
  width: 100%;
  height: 2em;
}

.gutter-3em {
  width: 100%;
  height: 3em;
}

.gutter-4em {
  width: 100%;
  height: 4em;
}

.gutter-5em {
  width: 100%;
  height: 5em;
}

.section {
  grid-column-gap: 10vw;
  grid-row-gap: 10vw;
  flex-flow: column;
  padding: 10vw 12vw;
  display: flex;
}

.section._1 {
  grid-column-gap: 5vw;
  grid-row-gap: 5vw;
}

.section._2 {
  grid-column-gap: 10vw;
  grid-row-gap: 10vw;
  padding-top: 10vw;
}

.vertical-left {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.vertical-right {
  flex-flow: column;
  display: flex;
}

.horizontal-left {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.horizontal-left.gap-05em.none {
  display: none;
}

.horizontal-right {
  flex-flow: row;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.horizontal-middle {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.horizontal-between-middle {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.horizontal-between-bottom {
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.horizontal-bottom {
  flex-flow: row;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.section-nobtm {
  padding-top: 5em;
}

.section-big {
  padding-top: 11em;
  padding-bottom: 11em;
}

.section-big-nobtm {
  padding-top: 7em;
}

.slide {
  width: 100%;
  height: auto;
}

.link-block {
  color: #222;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  font-size: 1em;
  line-height: 1.3em;
  text-decoration: none;
  display: flex;
}

.whitetxt {
  color: var(--background);
}

.en {
  font-family: Poppins;
  font-weight: 300;
}

.width100 {
  width: 100%;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.height100 {
  height: 100%;
}

.vertical-center-between {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.herotop {
  z-index: 2;
  width: 100%;
  height: 100dvh;
  padding-top: 2em;
  padding-bottom: 2em;
  position: relative;
}

.texthuge {
  font-size: 2em;
  line-height: 1.5em;
}

.btn {
  color: #051328;
  cursor: pointer;
  background-color: #e7e7e7;
  border: 1px #000;
  justify-content: center;
  align-items: center;
  padding: 1em 2em;
  font-family: Poppins;
  font-size: 1em;
  line-height: 1.3em;
  text-decoration: none;
  display: flex;
  position: relative;
}

.swiper-content {
  background-color: var(--primary);
  text-align: left;
  border-radius: 18px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 3em;
  padding: 3em;
  position: relative;
  overflow: hidden;
}

.photobox {
  border-radius: 1em;
  width: 90%;
  max-width: 30em;
  position: relative;
  overflow: hidden;
  box-shadow: 6px 6px 12px #0003;
}

.navbar-button-container {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.viraltitle {
  color: var(--maintxt);
  text-align: center;
  text-transform: uppercase;
  margin-top: .1em;
  font-family: Sb Aggro;
  font-size: 5em;
  font-weight: 500;
  line-height: 1em;
}

.card {
  background-color: #fff;
  border-radius: 2em;
  width: 100%;
  padding: 2.5em;
}

.horizontal-left-middle {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.gap-4em {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
}

.gap-5em {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
}

.horizontal-between-stretch {
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.vertical-left-between {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.vertical-left-center {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.horizontal-left-bottom {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.sugessbtn {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: -.5em;
  padding-top: .5em;
  padding-bottom: .5em;
  display: flex;
}

.card1 {
  color: #fff;
  background-color: #5208b9;
  background-image: url('../images/section4-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 33.34%;
  height: 100%;
  padding: 1.5em;
  display: flex;
}

.bold {
  font-weight: 800;
}

.box {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  background-color: var(--white);
  border-radius: 1.5em;
  flex-flow: column;
  padding: 1.5em;
  transition: color .2s, background-color .2s;
  display: flex;
  position: relative;
}

.box.gap-1em {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
}

.graytxt {
  color: var(--subtxt);
}

.gap-025em {
  grid-column-gap: .25em;
  grid-row-gap: .25em;
}

.width33 {
  width: 33.3333%;
}

.width50 {
  width: 50%;
}

.openbtn {
  background-color: var(--placeholder);
  width: 2em;
  height: 2em;
  color: var(--white);
  border-radius: 20em;
  justify-content: center;
  align-items: center;
  transition: background-color .2s;
  display: flex;
}

.openbtn:hover {
  background-color: var(--subtxt);
}

.sugessbtn-2 {
  grid-column-gap: .25em;
  grid-row-gap: .25em;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: -.5em;
  padding-top: .5em;
  padding-bottom: .5em;
  display: flex;
}

.controller {
  z-index: 25;
  border-top: 1px solid var(--subpagebg);
  background-color: #fff;
  padding-top: .75em;
  padding-bottom: 1em;
  display: none;
  position: fixed;
  inset: auto 0% 0%;
}

.controller-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.controller-box {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  color: var(--subtxt);
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-size: .75em;
  line-height: 1em;
  text-decoration: none;
  display: flex;
}

.controller-box.w--current {
  color: var(--primary);
}

.code-embed {
  width: 2em;
  height: 2em;
}

.gap-1-5em {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
}

.image-3 {
  height: 3.5em;
}

.container-nav {
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  height: 3.5em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.navbg {
  z-index: 1;
  background-color: var(--background);
  position: absolute;
  inset: 0%;
}

.div-block-1 {
  flex-flow: column;
  justify-content: space-between;
  width: 2em;
  height: .6em;
  display: flex;
}

.div-block-2 {
  background-color: var(--primary);
  width: 100%;
  height: 1px;
}

.hamburger {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.txt-hamburger {
  letter-spacing: .1em;
  margin-top: -.05em;
  font-family: Cormorant Garamond, sans-serif;
  font-size: .9em;
  font-weight: 500;
  line-height: 1;
}

.button {
  border-top: 1px solid var(--subtxt);
  border-bottom: 1px solid var(--subtxt);
  background-color: var(--background);
  height: 1.25em;
  color: var(--primary);
  letter-spacing: .1em;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding: 0 0 0 .1em;
  font-family: Cormorant Garamond, sans-serif;
  font-size: .9em;
  line-height: 1;
  transition: color .4s, background-color .4s;
  display: flex;
}

.button:hover {
  background-color: var(--primary);
  color: var(--background);
}

.footer {
  grid-column-gap: 4vw;
  grid-row-gap: 4vw;
  background-color: var(--white);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 3vw 12vw 4vw;
  display: flex;
}

.hero {
  width: 100%;
  height: calc(95svh - 5.5em);
  margin-top: 5.5em;
  position: relative;
  overflow: hidden;
}

.img-hero {
  pointer-events: none;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.img-hero.mo {
  display: none;
}

.div-block-3 {
  z-index: 2;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  background-color: #0003;
  background-image: radial-gradient(circle, #00000080, #0d0d0d1a);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.text-block-1 {
  color: var(--white);
  text-align: center;
  font-family: Cormorant Garamond, sans-serif;
  font-size: 3em;
  font-weight: 300;
  line-height: 1.2;
}

.div-block-4 {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 22.5% 22.5% 55%;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 1.5em;
  display: grid;
}

.div-block-4._1 {
  grid-template-columns: 30% 70%;
}

.image-5 {
  height: 1.25em;
}

.div-block-5 {
  grid-column-gap: .25em;
  grid-row-gap: .25em;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-5.gap-05em {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
}

.div-block-5.gap-05em.none {
  display: none;
}

.txt-footer {
  width: 3.7em;
  min-width: 3.7em;
  color: var(--black);
  text-align: justify;
  word-break: normal;
  text-align-last: justify;
  text-justify: inter-character;
  text-wrap: auto;
  font-family: Noto Sans KR, sans-serif;
  font-size: .65em;
  font-weight: 500;
  line-height: 1.25;
  display: block;
}

.txt-footer._1 {
  width: 2.75em;
}

.txt-footer1 {
  color: var(--black);
  text-align: justify;
  font-family: Noto Sans KR, sans-serif;
  font-size: .65em;
  font-weight: 500;
  line-height: 1.25;
}

.txt-footer1._1, .txt-footer1._2 {
  text-align: left;
}

.vertical-left-bottom {
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.text-block-2 {
  font-family: Noto Sans KR, sans-serif;
  font-size: .65em;
  font-weight: 300;
  line-height: 1.25;
}

.background-video {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  padding-bottom: 56.25%;
}

.background-video > video {
  z-index: 0;
}

.navguide {
  width: 1px;
  height: 20em;
  margin-top: 100svh;
  position: absolute;
  inset: 0% auto auto 0%;
}

.txt-desc {
  color: var(--subtxt);
  text-align: center;
  font-size: 1em;
  line-height: 1.7em;
}

.txt-desc.bold {
  font-weight: 500;
}

.txt-desc.mo {
  display: none;
}

.txt-title-en {
  text-align: center;
  font-family: Cormorant Garamond, sans-serif;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1;
}

.txt-title-en.kr {
  color: var(--maintxt);
  font-family: Noto Serif KR, sans-serif;
  font-weight: 500;
  line-height: 1.3;
}

.txt-title-en.mo {
  display: none;
}

.div-block-6 {
  background-color: #4c40384d;
  width: 100%;
  height: 1px;
  display: flex;
  position: relative;
}

.text-block-3 {
  background-color: var(--background);
  color: #4c4038;
  text-align: center;
  letter-spacing: .2em;
  justify-content: center;
  align-items: center;
  height: 1.5em;
  min-height: 1.5em;
  padding-left: 1em;
  padding-right: 1em;
  font-family: Noto Sans KR, sans-serif;
  font-size: .6em;
  font-weight: 300;
  line-height: 1;
  display: flex;
  position: absolute;
  inset: -.75em auto auto 50%;
  transform: translate(-50%);
}

.body {
  font-weight: 300;
}

.div-block-7 {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.txt-title {
  text-align: center;
  font-family: Cormorant Garamond, sans-serif;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.3;
}

.txt-title._1 {
  line-height: 1.2;
}

.txt-small-en {
  color: var(--subtxt);
  text-align: center;
  font-family: Noto Serif KR, sans-serif;
  font-size: .9em;
  font-weight: 500;
  line-height: 1.5;
}

.txt-small-en.whitetxt {
  color: var(--background);
}

.txt-small {
  color: var(--subtxt);
  text-align: center;
  font-size: .9em;
  line-height: 1.5;
}

.txt-small.whitetxt {
  color: var(--background);
}

.subpage {
  background-color: var(--subpagebg);
}

.txt-small1 {
  opacity: .75;
  text-align: center;
  width: fit-content;
  font-family: Noto Sans KR, sans-serif;
  font-size: .8em;
  font-weight: 400;
  line-height: 1.5;
}

.div-block-8 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.devide-vertical {
  background-color: #4c40384d;
  width: 1px;
  height: 60%;
}

.devide-vertical.none {
  display: none;
}

.map {
  width: 100%;
  overflow: hidden;
}

.img-map {
  aspect-ratio: 48 / 25;
  pointer-events: none;
}

.map1 {
  aspect-ratio: 48 / 25;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.img-map1 {
  z-index: 2;
  aspect-ratio: 48 / 25;
  pointer-events: none;
  position: absolute;
  inset: 0%;
}

.scroll-block {
  width: 100%;
  height: auto;
  overflow: auto;
}

.img-sub {
  width: 100%;
  height: auto;
}

.img-sub._1 {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.section-1 {
  grid-column-gap: 5vw;
  grid-row-gap: 5vw;
  flex-flow: column;
  margin-top: 5.5em;
  padding: 10vw 12vw;
  display: flex;
}

.section-1._1 {
  grid-column-gap: 5vw;
  grid-row-gap: 5vw;
}

.section-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-9 {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  aspect-ratio: 5 / 4;
  background-color: #6d5e53;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 5em;
  padding-bottom: 8em;
  display: flex;
  position: relative;
}

.div-block-10 {
  aspect-ratio: 5 / 4;
  position: relative;
}

.image-6 {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.sidebar {
  z-index: 51;
  background-color: #0d0b0980;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  display: none;
  position: fixed;
  inset: 0%;
}

.menu {
  grid-column-gap: 5svh;
  grid-row-gap: 5svh;
  background-color: var(--background);
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 1em;
  padding-bottom: 3svh;
  display: flex;
  position: relative;
}

.image-4 {
  width: auto;
  height: 3.5em;
}

.div-block-11 {
  grid-column-gap: 4vw;
  grid-row-gap: 4vw;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  padding-left: 12vw;
  padding-right: 12vw;
  display: flex;
}

.link {
  color: var(--black);
  text-align: center;
  font-family: Cormorant Garamond, sans-serif;
  font-size: 1.75em;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: color .4s;
}

.link:hover, .link.w--current {
  color: #b2a298;
}

.img-x {
  width: 1em;
  height: 1em;
  position: absolute;
  inset: 3svh 3svh auto auto;
}

.sidebar-close {
  width: 50%;
  height: 100%;
}

.logo {
  position: absolute;
  inset: 0% auto auto 50%;
  transform: translate(-50%);
}

.div-block-12 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-flow: column;
  display: flex;
}

.div-block-13 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 0% 2.5em;
}

.overflow {
  z-index: 4;
  color: var(--background);
  display: none;
  position: absolute;
  top: 29.8%;
  left: 4.3%;
  overflow: hidden;
}

.overflow._1 {
  top: 36%;
  left: 8.3%;
}

.overflow._2 {
  top: 44.4%;
  left: 17.1%;
}

.overflow._3 {
  top: 47.3%;
  left: 21.5%;
}

.overflow._4 {
  top: 55.5%;
  left: 25.2%;
}

.overflow._5 {
  top: 61%;
  left: 21.5%;
}

.overflow._6 {
  top: 64.5%;
  left: 31.5%;
}

.overflow._7 {
  top: 69.1%;
  left: 38.8%;
}

.overflow._8 {
  top: 52.5%;
  left: 38.8%;
}

.overflow._9 {
  top: 32%;
  left: 42.4%;
}

.overflow._10 {
  top: 64.5%;
  left: 44.9%;
}

.overflow._11 {
  top: 52.5%;
  left: 50.6%;
}

.overflow._12 {
  top: 44.7%;
  left: 54.2%;
}

.overflow._13 {
  top: 44%;
  left: 59.2%;
}

.overflow._14 {
  top: 37.5%;
  left: 60.6%;
}

.overflow._15 {
  top: 50.5%;
  left: 67.2%;
}

.overflow._16 {
  top: 54%;
  left: 69.9%;
}

.overflow._17 {
  top: 55.5%;
  left: 81.1%;
}

.overflow._18 {
  top: 47.7%;
  left: 84.9%;
}

.overflow._19 {
  top: 40.7%;
  left: 87.7%;
}

.overflow._20 {
  top: 36.5%;
  left: 89.2%;
}

.overflow._21 {
  top: 60.5%;
  left: 90.8%;
}

.overflow._22 {
  top: 29.9%;
  left: 13.5%;
}

.overflow._23 {
  top: 55.1%;
  left: 16.2%;
}

.overflow._24 {
  top: 45.5%;
  left: 41.4%;
}

.overflow._25, .overflow._26 {
  top: 59.3%;
  left: 57.6%;
}

.txtmap {
  font-size: clamp(.35em, .49cqw, .75em);
  line-height: 1.5;
}

.txtmap._1 {
  font-size: clamp(.5em, 1cqw, 1em);
}

.overflow-none {
  overflow: hidden;
}

.overflow-none._1 {
  top: 36%;
  left: 8.3%;
}

.overflow-none._2 {
  top: 44.4%;
  left: 17.1%;
}

.overflow-none._3 {
  top: 47.3%;
  left: 21.5%;
}

.overflow-none._4 {
  top: 55.5%;
  left: 25.2%;
}

.overflow-none._5 {
  top: 61%;
  left: 21.5%;
}

.overflow-none._6 {
  top: 64.5%;
  left: 31.5%;
}

.overflow-none._7 {
  top: 69.1%;
  left: 38.8%;
}

.overflow-none._8 {
  top: 52.5%;
  left: 38.8%;
}

.overflow-none._9 {
  top: 32%;
  left: 42.4%;
}

.overflow-none._10 {
  top: 64.5%;
  left: 44.9%;
}

.overflow-none._11 {
  top: 52.5%;
  left: 50.6%;
}

.overflow-none._12 {
  top: 44.7%;
  left: 54.2%;
}

.overflow-none._13 {
  top: 44%;
  left: 59.2%;
}

.overflow-none._14 {
  top: 37.5%;
  left: 60.6%;
}

.overflow-none._15 {
  top: 50.5%;
  left: 67.2%;
}

.overflow-none._16 {
  top: 54%;
  left: 69.9%;
}

.overflow-none._17 {
  top: 55.5%;
  left: 81.1%;
}

.overflow-none._18 {
  top: 47.7%;
  left: 84.9%;
}

.overflow-none._19 {
  top: 40.7%;
  left: 87.7%;
}

.overflow-none._20 {
  top: 36.5%;
  left: 89.2%;
}

.overflow-none._21 {
  top: 60.5%;
  left: 90.8%;
}

.overflow-none._22 {
  top: 29.9%;
  left: 13.5%;
}

.overflow-none._23 {
  top: 55.1%;
  left: 16.2%;
}

.overflow-none._24 {
  top: 45.5%;
  left: 41.4%;
}

.overflow-none._25, .overflow-none._26 {
  top: 59.3%;
  left: 57.6%;
}

.img-map2, .img-map3 {
  z-index: 2;
  aspect-ratio: 48 / 25;
  pointer-events: none;
  position: absolute;
  inset: 0%;
}

.slider {
  background-color: var(--background);
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 3em;
}

.slidecard {
  background-color: #0d0d0dbf;
  position: relative;
}

.slide-nav {
  justify-content: center;
  align-items: center;
  height: 5em;
  padding-top: 0;
  font-size: .5em;
  display: flex;
}

.image-2 {
  pointer-events: none;
  object-fit: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.right-arrow {
  width: 2.5em;
  height: 2.5em;
  color: var(--subtxt);
  font-size: 1em;
  line-height: 1;
  display: flex;
  top: auto;
  bottom: 0;
  right: 0;
}

.right-arrow._1 {
  left: 0;
  right: auto;
}

.code-embed-2 {
  display: none;
}

.register {
  z-index: 52;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #0d0d0dbf;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.field-label {
  letter-spacing: 0;
  margin-bottom: 0;
  font-family: Cormorant Garamond, sans-serif;
  font-size: .8em;
  line-height: 1.2;
}

.form-block-2 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  width: 100%;
  max-width: 500px;
  margin-bottom: 0;
}

.checkbox-field-3 {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.checkbox-field-2 {
  margin-bottom: 0;
}

.txt-prologue1 {
  color: #aa9564;
  letter-spacing: 0;
  margin-left: .2em;
  margin-right: .2em;
  font-size: 1.3em;
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
}

.div-block-14 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  margin-bottom: 1em;
  display: flex;
}

.text-field-2 {
  background-color: var(--background);
  border: 1px #000;
  border-bottom: 1px solid #413d37;
  height: 2.5em;
  margin-bottom: 1em;
  padding: 0;
  font-size: 1em;
  line-height: 1.3;
}

.text-field-2:focus, .text-field-2:focus-visible, .text-field-2[data-wf-focus-visible] {
  border-style: none none solid;
  border-color: #000 #000 #aa9564;
  box-shadow: 0 0 #0000;
}

.text-field-2::placeholder, .span-gray {
  color: var(--placeholder);
}

.submit-button {
  border: 1px solid var(--primary);
  height: 3em;
  color: var(--maintxt);
  background-color: #4c403800;
  font-size: 1em;
  line-height: 1;
  transition: color .4s, background-color .4s;
}

.submit-button:hover {
  background-color: var(--primary);
  color: #fff;
}

.text-small-2 {
  color: #413d37;
  max-width: 25em;
  font-size: 1.1em;
  line-height: 1.5em;
  text-decoration: none;
}

.container-subpage {
  width: 95%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.overflow-2 {
  overflow: hidden;
}

.form-2 {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  flex-flow: column;
  margin-top: 1em;
  display: flex;
}

.checkbox-label-3 {
  margin-bottom: 0;
  font-size: .8em;
  line-height: 1.5;
}

.div-block-15 {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  flex-flow: column;
  margin-bottom: 1.5em;
  display: flex;
}

.checkbox-2 {
  border: 1px solid var(--placeholder);
  border-radius: 20em;
  width: 1.3em;
  height: 1.3em;
  margin-top: 0;
  margin-right: .5em;
  box-shadow: 0 0 #0000;
}

.checkbox-2:active {
  box-shadow: 0 0 #0000;
}

.checkbox-2.w--redirected-checked {
  border-color: var(--primary);
  background-color: var(--primary);
  background-image: url('../images/custom-checkbox-checkmark.svg');
  background-position: 50%;
  background-size: contain;
  box-shadow: 0 0 #0000;
}

.checkbox-2.w--redirected-focus, .checkbox-2.w--redirected-focus-visible {
  box-shadow: 0 0 #0000;
}

.txt-form {
  text-align: center;
  font-size: 1.75em;
  font-weight: 600;
  line-height: 1.3;
}

.select-field {
  height: 2.5em;
  color: var(--maintxt);
  background-color: #fff0;
  border: 1px #000;
  border-bottom: 1px solid #413d37;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
  font-size: 1em;
  line-height: 1.3;
}

.registercard {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  background-color: var(--background);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 5vw 4vw;
  display: flex;
  position: relative;
}

.txt-form1 {
  max-width: 25em;
  color: var(--subtxt);
  text-align: center;
  font-size: .9em;
  line-height: 1.5em;
  text-decoration: none;
}

.image-1 {
  cursor: pointer;
  width: 1em;
  height: 1em;
  position: absolute;
  inset: 1em 1em auto auto;
}

.image-7 {
  width: 100%;
  max-width: 60em;
  margin-left: auto;
  margin-right: auto;
}

.txt-contact {
  color: var(--background);
  text-align: center;
  font-family: Cormorant Garamond, sans-serif;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.3;
}

.txt-contact._1 {
  line-height: 1.2;
}

.txt-contact1 {
  color: var(--background);
  text-align: center;
  font-family: Noto Serif KR, sans-serif;
  font-size: .9em;
  font-weight: 500;
  line-height: 1.5;
}

.txt-contact1.whitetxt {
  color: var(--background);
}

.txt-contact2 {
  color: var(--background);
  text-align: center;
  font-size: .9em;
  line-height: 1.5;
}

.txt-contact2.whitetxt {
  color: var(--background);
}

.div-block-16 {
  background-color: var(--placeholder);
  width: 100%;
  height: 1px;
}

.image-8 {
  width: auto;
  height: 2.75em;
}

.hero-txtbox {
  z-index: 2;
  grid-column-gap: 7.5vw;
  grid-row-gap: 7.5vw;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 4em 5% 5%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.hero-txtbox._1 {
  grid-column-gap: 5vw;
  grid-row-gap: 5vw;
}

.hero-txtbox._2 {
  grid-column-gap: 10vw;
  grid-row-gap: 10vw;
  padding-top: 10vw;
}

.div-block-17 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 1vw;
  margin-left: 1vw;
  font-size: 1em;
  display: flex;
}

.text-block-4 {
  margin-bottom: .75em;
  font-size: 1.1em;
  line-height: 1.6;
}

.text-block-5 {
  color: var(--subtxt);
  font-size: .75em;
  line-height: 1.7;
}

.image-9 {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 991px) {
  body {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 12px;
  }

  .horizontal-between {
    flex-flow: column;
  }

  .vertical-center.width100.gap-2em {
    grid-column-gap: 2.5em;
    grid-row-gap: 2.5em;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding-left: 2%;
    padding-right: 2%;
  }

  .horizontal-between-bottom {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .swiper-content {
    width: 100%;
    margin-bottom: 0;
  }

  .navbar-button-container {
    justify-content: space-between;
    align-items: flex-end;
    width: 3em;
    height: 2em;
  }

  .viraltitle {
    font-size: 3em;
  }

  .horizontal-between-stretch {
    flex-flow: column;
  }

  .vertical-left-center._1 {
    display: none;
  }

  .card1 {
    width: 100%;
    height: auto;
    padding-top: 8em;
    padding-bottom: 8em;
  }

  .controller {
    display: block;
  }

  .txt-hamburger {
    display: none;
  }

  .footer {
    grid-column-gap: 7.5vw;
    grid-row-gap: 7.5vw;
    padding: 10vw 5%;
  }

  .hero {
    aspect-ratio: 3 / 4;
    height: auto;
  }

  .hero._1 {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .hero._2 {
    height: calc(55svh - 5.5em);
    min-height: 35em;
  }

  .hero._3 {
    aspect-ratio: 3.2 / 2;
    height: auto;
  }

  .img-hero._1 {
    object-position: 30% 50%;
  }

  .img-hero._2 {
    object-position: 75% 50%;
  }

  .img-hero.mo {
    display: inline-block;
  }

  .img-hero.pc {
    display: none;
  }

  .text-block-1 {
    font-size: 2em;
  }

  .div-block-4 {
    grid-column-gap: 1em;
    grid-row-gap: 4em;
    grid-template-columns: 1fr 1fr;
    margin-top: 1em;
  }

  .txt-footer1._1 {
    text-align: justify;
    word-break: break-all;
    text-wrap: auto;
    font-size: .5em;
  }

  .txt-desc {
    font-size: .9em;
  }

  .txt-desc.pc {
    display: none;
  }

  .txt-desc.mo {
    display: block;
  }

  .txt-title-en {
    line-height: 1.2;
  }

  .txt-title-en.pc {
    display: none;
  }

  .txt-title-en.mo {
    display: flex;
  }

  .div-block-6 {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-7 {
    grid-column-gap: 17.5vw;
    grid-row-gap: 17.5vw;
    grid-template-columns: 1fr;
  }

  .txt-title {
    font-size: 1.5em;
  }

  .div-block-8 {
    grid-column-gap: 17.5vw;
    grid-row-gap: 17.5vw;
    flex-flow: column;
  }

  .devide-vertical {
    width: 100%;
    height: 1px;
  }

  .map1 {
    width: 225%;
    margin-left: -7vw;
  }

  .scroll-block {
    overflow: hidden;
  }

  .img-sub._1 {
    width: 100%;
  }

  .section-1 {
    padding: 15vw 5%;
  }

  .section-2 {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .menu {
    width: 100%;
  }

  .div-block-11 {
    grid-column-gap: 3.5vw;
    grid-row-gap: 3.5vw;
    flex-flow: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    overflow: auto;
  }

  .link {
    height: 1.1em;
    font-size: 2em;
  }

  .sidebar-close {
    width: 0%;
  }

  .slider {
    padding-left: 2.5%;
    padding-right: 2.5%;
  }

  .right-arrow {
    width: 2em;
    right: 2.5%;
  }

  .right-arrow._1 {
    left: 2.5%;
  }

  .txt-prologue1 {
    font-size: 1em;
  }

  .txt-form {
    font-size: 2em;
  }

  .image-7 {
    width: 95%;
  }

  .txt-contact {
    font-size: 1.75em;
  }

  .hero-txtbox {
    grid-column-gap: 12vw;
    grid-row-gap: 12vw;
    padding-top: 2em;
  }

  .div-block-17 {
    font-size: .9em;
  }

  .text-block-4 {
    font-size: 1em;
  }
}

@media screen and (max-width: 479px) {
  .section._1, .section._2 {
    grid-column-gap: 10vw;
    grid-row-gap: 10vw;
  }

  .viraltitle {
    font-size: 2.5em;
  }

  .hero-txtbox._1, .hero-txtbox._2 {
    grid-column-gap: 10vw;
    grid-row-gap: 10vw;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_40d20571-2d62-147f-fad3-36fc5506fc4f-5506fc27 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

