@font-face {
  font-family: Sentient;
  src: url('../fonts/Sentient-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sentient;
  src: url('../fonts/Sentient-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Tanker;
  src: url('../fonts/Tanker-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --background-color--background-primary: var(--base-color-neutral--white);
  --text-color--text-primary: var(--base-color-neutral--black);
  --link-color--link-primary: var(--base-color-neutral--black);
  --base-color-neutral--black: black;
  --base-color-neutral--white: white;
  --background-color--background-error: var(--base-color-system--error-red-light);
  --text-color--text-error: var(--base-color-system--error-red);
  --border-color--border-primary: var(--base-color-neutral--black);
  --_brand-colors--woo-black: #222116;
  --_brand-colors--woo-white: #f8f8f5;
  --_brand-colors--woo-yellow: #fbf85f;
  --base-color-brand--white: white;
  --base-color-neutral--neutral-light: #aaa;
  --black-opacity-20: #22211633;
  --base-color-brand--black: black;
  --base-color-neutral--neutral-lightest: #eee;
  --base-color-neutral--neutral-lighter: #ccc;
  --base-color-neutral--neutral: #666;
  --base-color-neutral--neutral-dark: #444;
  --base-color-neutral--neutral-darker: #222;
  --base-color-neutral--neutral-darkest: #111;
  --base-color-system--success-green: #027a48;
  --base-color-system--success-green-light: #ecfdf3;
  --base-color-system--error-red: #b42318;
  --base-color-system--error-red-light: #fef3f2;
  --background-color--background-secondary: var(--base-color-neutral--neutral-lightest);
  --background-color--background-tertiary: var(--base-color-neutral--neutral-light);
  --background-color--background-alternate: var(--base-color-neutral--black);
  --background-color--background-success: var(--base-color-system--success-green-light);
  --border-color--border-secondary: var(--base-color-neutral--neutral-light);
  --border-color--border-alternate: var(--base-color-neutral--white);
  --link-color--link-secondary: var(--base-color-neutral--neutral-light);
  --link-color--link-alternate: var(--base-color-neutral--white);
  --text-color--text-secondary: var(--base-color-neutral--black);
  --text-color--text-alternate: var(--base-color-neutral--white);
  --text-color--text-success: var(--base-color-system--success-green);
}

.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--background-primary);
  color: var(--text-color--text-primary);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--link-color--link-primary);
  text-decoration: underline;
}

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding-left: .5rem;
}

img {
  display: inline-block;
}

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .1875rem solid var(--text-color--text-primary);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.container-large {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.utility_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility_form-block {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.utility_image {
  margin-bottom: .5rem;
  margin-left: auto;
  margin-right: auto;
}

.main-wrapper {
  position: relative;
}

.padding-xxsmall {
  padding: .5rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-top {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-top.padding-medium {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.button {
  border: 1px solid var(--base-color-neutral--black);
  background-color: var(--base-color-neutral--black);
  color: var(--base-color-neutral--white);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.form_input {
  border: 1px solid var(--base-color-neutral--black);
  background-color: var(--base-color-neutral--white);
  color: var(--text-color--text-primary);
  border-radius: 0;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form_input:focus {
  border-color: #000;
}

.form_input::placeholder {
  color: #0009;
}

.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.text-size-small {
  font-size: .875rem;
}

.padding-global {
  flex: 1;
  padding-left: 5%;
  padding-right: 5%;
}

.form_message-error {
  background-color: var(--background-color--background-error);
  color: var(--text-color--text-error);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.form_message-error-wrapper {
  margin-top: 1rem;
  padding: 0;
}

.navbar6_component {
  z-index: 900;
  background-color: #ddd0;
  align-items: center;
  width: 100%;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar6_menu-lang {
  flex: 0 auto;
  display: flex;
}

.navbar6_dropdown-content-left {
  grid-column-gap: 2rem;
  grid-row-gap: 0px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 2rem 2rem 2rem 0;
  display: grid;
}

.navbar6_menu-dropdown {
  display: none;
  position: static;
}

.dropdown-chevron {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.navbar6_menu {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  margin-left: 3rem;
  display: flex;
  position: static;
}

.text-weight-semibold {
  font-weight: 600;
}

.navbar6_dropdown-toggle {
  grid-column-gap: .5rem;
  color: var(--link-color--link-primary);
  align-items: center;
  padding: 1.5rem 1rem;
  display: flex;
}

.navbar6_icon-wrapper {
  flex: none;
}

.navbar6_dropdown-link-list {
  grid-column-gap: 0px;
  grid-row-gap: 1rem;
  grid-template-rows: max-content;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.navbar6_menu-button {
  padding: 0;
}

.navbar6_dropdown-link {
  grid-column-gap: .75rem;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  padding-top: .5rem;
  padding-bottom: .5rem;
  text-decoration: none;
  display: flex;
}

.navbar6_item-right {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.navbar6_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
}

.navbar6_dropdown-list.w--open {
  border-bottom: 1px solid var(--border-color--border-primary);
  background-color: var(--background-color--background-primary);
  width: 50vw;
  max-width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
}

.navbar6_dropdown-content {
  width: 100%;
  display: flex;
}

.navbar6_logo-link {
  padding-left: 0;
}

.footer3_legal-link {
  color: var(--_brand-colors--woo-black);
  font-size: .875rem;
  text-decoration: underline;
}

.footer3_credit-text {
  font-family: Sentient, sans-serif;
  font-size: .875rem;
}

.footer3_component {
  z-index: 900;
  color: var(--_brand-colors--woo-black);
  width: 100%;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

.footer3_legal-list {
  grid-column-gap: 2rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto auto auto;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  font-family: Sentient, sans-serif;
  display: grid;
}

.footer3_bottom-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
}

.horizontal-scroll-container {
  background-color: var(--_brand-colors--woo-black);
  flex-flow: column;
  height: 630vh;
  position: relative;
  overflow: visible;
}

.sticky-iky {
  width: 100%;
  height: 100dvh;
  display: flex;
  position: sticky;
  top: 0;
  overflow: visible;
}

.content-mover {
  z-index: 3;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  position: relative;
}

.flex-offset {
  justify-content: flex-start;
  align-items: stretch;
  margin-right: -100vw;
  display: flex;
}

.h-section {
  justify-content: center;
  align-items: center;
  height: 100dvh;
  display: flex;
}

.h-section.is-horizontal-scroll {
  border: 2px solid #f836ff;
  width: 100vw;
}

.h-section.is-horizontal-scroll.s-1 {
  z-index: 20;
  background-color: var(--_brand-colors--woo-white);
  border-style: none;
  justify-content: space-between;
  align-items: center;
  width: 380vh;
  padding-left: 5vw;
}

.h-section.is-horizontal-scroll.s-2 {
  z-index: 20;
  background-color: var(--_brand-colors--woo-yellow);
  border-style: none;
  justify-content: space-between;
  align-items: center;
  width: 250vh;
}

.h-section.is-horizontal-scroll.s-3 {
  background-color: var(--_brand-colors--woo-black);
  border-style: none;
  justify-content: flex-start;
  align-items: center;
  width: 100vw;
  display: flex;
  position: fixed;
  right: 0%;
}

.flag {
  font-size: 2.2rem;
  line-height: 0;
}

.h-section_intro {
  width: 150vh;
  height: 100dvh;
  position: static;
}

.intro-profile-container {
  justify-content: space-between;
  align-items: flex-end;
  height: 40%;
  display: flex;
}

.intro-imgae-wrapper {
  cursor: pointer;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  justify-content: flex-start;
  align-items: flex-end;
  width: 491px;
  height: 187px;
  display: flex;
  position: relative;
}

.intro-heading {
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 25%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
}

.intro-heading-1 {
  color: var(--_brand-colors--woo-black);
  font-family: Tanker, sans-serif;
  font-size: 5rem;
  line-height: 1.2;
}

.intro-paragraph {
  overflow: hidden;
}

.proifle-image {
  display: block;
}

.emoji-mic {
  z-index: 3;
  opacity: 1;
  font-size: 3rem;
  position: absolute;
  inset: auto auto 0% 3%;
}

.smiley-wrapper {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 18% auto auto 22%;
}

.h-section-woo {
  width: 200vh;
  height: 100dvh;
}

.lang-toggle-wrapper {
  border: .3rem solid var(--base-color-brand--white);
  border-radius: 1.7rem;
  justify-content: space-between;
  align-items: center;
  width: 6rem;
  height: 3.5rem;
  display: flex;
  position: relative;
}

.lang-toggle-wrapper.kor {
  width: 10rem;
  height: 2.5rem;
  text-decoration: none;
}

.toggle-knob {
  background-color: var(--base-color-brand--white);
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-left: 5%;
  margin-right: 5%;
  display: none;
  transform: translate(123%);
}

.toggle-text-us {
  color: var(--_brand-colors--woo-black);
  font-family: Tanker, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  display: none;
}

.giant-text-wrapper {
  z-index: 1;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
  overflow: visible;
}

.woo {
  z-index: 20;
  background-image: url('../images/Heading-Woo.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 150vh;
  height: 80vh;
  font-family: Tanker, sans-serif;
  font-size: 50rem;
  line-height: 45rem;
  display: block;
  position: relative;
  left: -12vh;
}

.h-section-mv {
  justify-content: flex-start;
  align-items: flex-end;
  width: 80vh;
  height: 100dvh;
  display: flex;
}

.woo-img-1 {
  z-index: 1;
  height: 49vh;
  position: absolute;
  inset: 25vh 21.5vh 0% auto;
}

.woo-img-2 {
  z-index: 1;
  height: 48vh;
  position: absolute;
  inset: 26vh 62.7vh 0% auto;
}

.mv-wrapper {
  flex-flow: column;
  width: 50vh;
  margin-bottom: 15vh;
  display: flex;
}

.mv-heading {
  font-family: Tanker, sans-serif;
  font-size: 2.5rem;
}

.mv-link-list {
  display: none;
}

.mv-released-info {
  border: 2px solid #000;
  border-radius: 1rem;
  justify-content: flex-start;
  align-items: center;
  width: 15rem;
  height: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  display: flex;
  overflow: hidden;
}

.mv-paragraph {
  font-family: Sentient, sans-serif;
}

.mv-link-one, .mv-link-two {
  display: flex;
}

.link-text {
  margin-left: .5rem;
  font-family: Tanker, sans-serif;
  font-size: 1.2rem;
}

.mv-infinite-text {
  text-align: left;
  text-transform: uppercase;
  min-width: 98%;
  font-family: Sentient, sans-serif;
  font-size: .8rem;
  font-weight: 400;
  line-height: 1.3;
  overflow: visible;
}

.mv-infinite-text._2nd {
  min-width: 120%;
}

.mv-arrow {
  margin-bottom: .5rem;
}

.h-section-side {
  width: 200vh;
  height: 100dvh;
}

.side {
  background-image: url('../images/Heading-Side.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 150vh;
  height: 80vh;
  position: relative;
  left: -12vh;
}

.cta-wrapper {
  z-index: 3;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
  height: 50dvh;
  margin-left: 10vh;
  display: flex;
}

.cta-text {
  color: var(--base-color-brand--white);
  font-family: Tanker, sans-serif;
  font-size: 5.3rem;
}

.link {
  text-decoration: none;
}

.arrow-left-downward {
  transform-style: preserve-3d;
  margin-left: 1rem;
  transform: rotateX(0)rotateY(-180deg)rotateZ(0);
}

.intro-arrow-wrapper {
  z-index: 3;
  flex: 1;
  width: 25%;
  position: absolute;
  inset: 7% -1% auto auto;
}

.hero-video {
  z-index: 1;
  width: 491px;
  height: 187px;
  padding-bottom: 0;
  padding-right: 0;
  position: absolute;
  inset: 0%;
}

.x-script {
  margin-bottom: 0;
  display: none;
}

.woolala-wrapper {
  z-index: 1000;
  position: absolute;
  inset: auto auto 17% 18.3%;
}

.woolala-wrapper.sticker {
  cursor: grab;
  width: 200px;
  left: 31%;
}

.tacos-wrapper {
  z-index: 1000;
  position: absolute;
  inset: 6% auto auto 25%;
}

.tacos-wrapper.sticker {
  cursor: grab;
  width: 200px;
  top: 14%;
  left: 42%;
}

.mic-wrapper {
  z-index: 1000;
  position: absolute;
  inset: auto auto 19% 36%;
}

.mic-wrapper.sticker {
  cursor: grab;
  width: 200px;
  left: 53%;
}

.smiley-text {
  color: var(--_brand-colors--woo-black);
  text-align: center;
  text-transform: uppercase;
  flex: 0 auto;
  font-family: Sentient, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
  position: absolute;
  top: -2.2rem;
  left: 3.8rem;
}

.smiley-image {
  z-index: 1;
}

.smiley-fire {
  text-align: center;
  display: none;
  position: absolute;
  inset: 22% 0% auto;
}

.mv-cover-wrapper {
  cursor: pointer;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.mv-player {
  z-index: 2000;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.mv-player-wrapper {
  z-index: 2000;
  border: 1px solid var(--_brand-colors--woo-black);
  background-color: #fff;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 70vh;
  height: 50vh;
  display: flex;
  position: fixed;
  inset: 50% 0% auto 50%;
  transform: translate(-50%, 100%);
}

.mv-title {
  margin-left: 1rem;
  font-family: Sentient, sans-serif;
  font-weight: 700;
}

.mv-player-info {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.close-button {
  width: 45%;
}

.mv-button-wrapper {
  text-align: right;
  cursor: pointer;
  flex: 0 auto;
  height: 100%;
  margin-right: 1rem;
  padding: .5rem;
}

.lucky-wrapper.sticker {
  z-index: 1000;
  cursor: grab;
  width: 250px;
  height: 250px;
  position: absolute;
  inset: 51% 30% auto auto;
}

.sunglasses-wrapper.sticker {
  z-index: 1000;
  cursor: grab;
  width: 200px;
  height: auto;
  position: absolute;
  inset: 17% 39% auto auto;
}

.lang-text {
  justify-content: space-around;
  align-items: center;
  width: 100%;
  display: flex;
}

.toggle-text-kor {
  color: var(--_brand-colors--woo-black);
  font-family: Tanker, sans-serif;
  font-size: 1.3rem;
  display: block;
}

.language-link {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 0%;
  padding-bottom: 0%;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
}

.language-link.w--current {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.img-wrapper {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.img-position {
  justify-content: flex-end;
  align-items: center;
  width: auto;
  height: 40rem;
  padding-right: 5vw;
  display: flex;
}

.img {
  text-align: right;
}

.img._1, .img._2, .img._3, .img._4, .img._5, .img._6, .img._7, .img._8, .img._9, .img._10, .img._11, .img._12 {
  display: none;
}

.grid-wrapper {
  z-index: 5;
  position: absolute;
  inset: 0%;
}

.hover-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  height: 100%;
}

.hover-reveal {
  width: 100%;
  height: 100%;
}

.navbar6_component-kor {
  z-index: 100;
  background-color: #ddd0;
  align-items: center;
  width: 100%;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.toggle-text-korean {
  color: var(--_brand-colors--woo-black);
  font-family: Tanker, sans-serif;
  font-size: 1rem;
  display: block;
}

.toggle-text-korean.not-current {
  color: var(--base-color-neutral--neutral-light);
}

.toggle-text-english {
  color: var(--_brand-colors--woo-black);
  letter-spacing: 1.1px;
  width: 100%;
  font-family: Tanker, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  transition: color .3s;
  display: block;
}

.toggle-text-english.current {
  color: var(--_brand-colors--woo-black);
}

.paragraph-heading {
  width: 70%;
  margin-top: 0;
  font-family: Sentient, sans-serif;
  font-size: 1.2rem;
  line-height: 1.7;
}

.mobile-img-wrapper, .mobile-fire-wrapper {
  display: none;
}

.text-block {
  font-family: Tanker, sans-serif;
}

.text-block-2 {
  font-family: Tanker, sans-serif;
  display: block;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .navbar6_dropdown-content-left {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar6_menu-dropdown {
    width: 100%;
    display: block;
  }

  .dropdown-chevron {
    inset: auto 0% auto auto;
  }

  .menu-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar6_menu {
    border-bottom: 1px solid var(--border-color--border-primary);
    background-color: var(--background-color--background-primary);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    align-items: flex-start;
    height: 100dvh;
    margin-left: 0;
    padding: 1rem 5% 6.5rem;
    transition: height .5s;
    position: absolute;
    overflow: auto;
  }

  .navbar6_dropdown-toggle {
    align-items: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 0;
    font-size: 1.125rem;
    display: flex;
  }

  .menu-icon_line-middle {
    background-color: var(--base-color-neutral--black);
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon_line-bottom {
    background-color: var(--base-color-neutral--black);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar6_menu-button.w--open {
    background-color: #0000;
  }

  .menu-icon_line-top {
    background-color: var(--base-color-neutral--black);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar6_dropdown-list {
    inset: 0% 0% auto;
    overflow: hidden;
  }

  .navbar6_dropdown-list.w--open {
    border-style: none;
    align-items: flex-start;
    padding: 0 0 0;
    position: relative;
    top: 0;
  }

  .navbar6_dropdown-content {
    flex-direction: column;
  }

  .menu-icon_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .horizontal-scroll-container {
    background-color: #fff0;
    height: auto;
  }

  .sticky-iky {
    overflow: hidden;
  }

  .h-section.is-horizontal-scroll.s-1 {
    width: 380dvh;
    display: inline-flex;
  }

  .h-section.is-horizontal-scroll.s-2 {
    width: 250dvh;
    display: inline-flex;
  }

  .h-section.is-horizontal-scroll.s-3 {
    z-index: 1;
    width: 100vw;
    height: 100dvh;
    margin-top: 0;
    display: inline-flex;
    position: fixed;
    inset: 0% 0% 0% auto;
  }

  .h-section_intro {
    width: 100vh;
  }

  .intro-heading-1.first, .intro-heading-1.second {
    font-size: 4rem;
  }

  .smiley-wrapper {
    left: 17%;
  }

  .h-section-mv {
    width: 70vh;
  }

  .cta-wrapper {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100dvh;
    margin-left: 5vh;
  }

  .cta-text {
    font-size: 3.7rem;
  }

  .woolala-wrapper.sticker {
    left: 24%;
  }

  .tacos-wrapper.sticker {
    left: 35%;
  }

  .mic-wrapper.sticker {
    left: 44%;
  }

  .lucky-wrapper.sticker {
    right: 8%;
  }

  .sunglasses-wrapper.sticker {
    right: 9%;
  }

  .body {
    overflow: hidden;
  }

  .img-wrapper, .grid-wrapper {
    display: none;
  }

  .paragraph-heading {
    width: 50%;
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .navbar6_component {
    min-height: 4rem;
  }

  .navbar6_dropdown-content-left {
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
  }

  .navbar6_menu {
    padding-bottom: 6rem;
  }

  .navbar6_dropdown-link-list {
    grid-row-gap: .5rem;
    max-width: none;
  }

  .footer3_credit-text {
    margin-top: 2rem;
  }

  .footer3_legal-list {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-auto-flow: row;
  }

  .footer3_bottom-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .sticky-iky {
    overflow: scroll;
  }

  .h-section.is-horizontal-scroll.s-3 {
    width: 100vw;
    position: absolute;
    inset: 0% 0% 0% auto;
  }

  .navbar6_component-kor {
    min-height: 4rem;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.5rem;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-global {
    padding-left: 0%;
    padding-right: 0%;
  }

  .navbar6_menu-lang.kor {
    justify-content: flex-end;
    align-items: center;
  }

  .navbar6_dropdown-content-left {
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .navbar6_menu {
    flex: 1;
    height: auto;
  }

  .navbar6_dropdown-link-list {
    grid-row-gap: .5rem;
  }

  .navbar6_dropdown-link {
    padding-left: 0;
  }

  .footer3_legal-link {
    white-space: nowrap;
    font-size: .8rem;
  }

  .footer3_credit-text {
    display: none;
  }

  .footer3_legal-list {
    grid-column-gap: 4vw;
    width: 100%;
    margin-bottom: 2vw;
  }

  .footer3_bottom-wrapper {
    justify-content: space-between;
    align-items: center;
  }

  .sticky-iky {
    width: 100vw;
    height: auto;
    display: block;
    overflow: hidden;
  }

  .content-mover {
    display: block;
  }

  .flex-offset {
    margin-right: 0;
    display: block;
  }

  .h-section.is-horizontal-scroll.s-1 {
    flex-flow: column;
    width: 100vw;
    height: auto;
    padding-right: 5vw;
    display: flex;
  }

  .h-section.is-horizontal-scroll.s-2 {
    flex-flow: column;
    width: 100vw;
    height: auto;
    padding-left: 5vw;
    padding-right: 5vw;
    display: flex;
  }

  .h-section.is-horizontal-scroll.s-3 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100vw;
    height: 100vh;
    padding-left: 5vw;
    padding-right: 5vw;
    display: flex;
    position: relative;
    inset: 0% 0% 0% auto;
  }

  .h-section_intro {
    width: 100vw;
    height: auto;
    margin-top: 20vh;
  }

  .intro-profile-container {
    height: 30%;
  }

  .intro-imgae-wrapper {
    justify-content: center;
    align-items: stretch;
    width: 100vw;
    height: auto;
  }

  .intro-heading {
    height: 10%;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .intro-heading-1.first, .intro-heading-1.second {
    font-size: 2rem;
  }

  .intro-paragraph {
    width: 100vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .proifle-image {
    width: 90%;
  }

  .emoji-mic {
    inset: auto auto -5% 6%;
  }

  .smiley-wrapper {
    display: none;
    top: 14%;
    left: 60%;
  }

  .h-section-woo {
    width: 100vw;
    height: auto;
    margin-top: 30vh;
    position: relative;
  }

  .lang-toggle-wrapper.kor {
    display: block;
  }

  .giant-text-wrapper {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
  }

  .woo {
    width: 100vw;
    min-width: 38rem;
    height: 38vh;
    position: static;
    top: auto;
    left: auto;
    transform: rotate(90deg);
  }

  .h-section-mv {
    width: 100%;
    height: auto;
    margin-top: 25vh;
    display: block;
  }

  .woo-img-1 {
    height: 26vh;
    display: none;
    top: 28vw;
    right: 33vw;
    transform: rotate(90deg);
  }

  .woo-img-2 {
    height: 25vh;
    display: none;
    top: 90%;
    right: 33.5%;
    transform: rotate(90deg);
  }

  .mv-wrapper {
    width: 100%;
    margin-bottom: 10vh;
  }

  .h-section-side {
    width: 100%;
    height: auto;
    margin-top: 30vh;
  }

  .side {
    width: 100vw;
    min-width: 38rem;
    height: 38vh;
    position: static;
    left: auto;
    transform: rotate(90deg);
  }

  .cta-wrapper {
    justify-content: center;
    align-items: flex-start;
    height: auto;
    margin-top: 20vh;
    margin-left: 0;
  }

  .cta-text {
    color: var(--_brand-colors--woo-white);
    font-size: 7.8vw;
    line-height: 1.8;
  }

  .link {
    font-size: 2.3rem;
  }

  .arrow-left-downward {
    margin-left: .5rem;
  }

  .intro-arrow-wrapper {
    inset: 0% 2% auto auto;
  }

  .hero-video {
    width: 90%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .woolala-wrapper.sticker {
    width: 150px;
    inset: 120% 0% auto 50%;
  }

  .tacos-wrapper.sticker {
    width: 150px;
    top: -30%;
    left: 50%;
  }

  .mic-wrapper.sticker {
    width: 150px;
    inset: 60% 0% auto;
  }

  .mv-player-wrapper.its-time, .mv-player-wrapper.soul-mate {
    width: 95vw;
    height: auto;
    top: 0%;
    transform: translate(-50%, 400%);
  }

  .mv-button-wrapper {
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
  }

  .lucky-wrapper.sticker {
    width: 200px;
    height: auto;
    top: 60%;
    right: 40%;
  }

  .sunglasses-wrapper.sticker {
    width: 150px;
    top: 21%;
  }

  .cta-woolucky, .cta-hotter, .cta-jeju {
    color: var(--_brand-colors--woo-yellow);
    cursor: pointer;
  }

  .lang-text {
    justify-content: flex-end;
    align-items: center;
  }

  .paragraph-heading {
    width: 100%;
    font-size: 1rem;
  }

  .mobile-img-wrapper {
    margin-top: 5vh;
    display: block;
  }

  .mobile-fire-wrapper {
    width: 100vw;
    height: 100vh;
    display: none;
    position: static;
    inset: 0%;
  }

  .fire-one {
    z-index: 100;
    position: absolute;
    inset: 16% 82% auto auto;
  }

  .fire-two {
    z-index: 100;
    position: absolute;
    inset: 21% 43% auto auto;
  }

  .fire-three {
    z-index: 100;
    position: absolute;
    inset: 31% 12% auto auto;
  }

  .fire-four {
    z-index: 100;
    position: absolute;
    inset: 27% 67% auto auto;
  }

  .fire-five {
    z-index: 100;
    position: absolute;
    inset: 16% 10% auto auto;
  }

  .cta-lucky-img, .cta-fire-img {
    display: none;
  }

  .cta-jeju-img {
    object-fit: cover;
    object-position: 50% 0%;
    width: 100vw;
    height: 100vh;
    display: none;
    position: absolute;
    inset: 0%;
  }
}


@font-face {
  font-family: 'Sentient';
  src: url('../fonts/Sentient-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sentient';
  src: url('../fonts/Sentient-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Tanker';
  src: url('../fonts/Tanker-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}