/**
 * Content
 */

body {
  background-color: #fff;
  color: #000;
}

a:active {
  opacity: 0.7;
}

.page a.active {
  color: #ff4a00;
}

i,
em {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

sub,
sup {
  position: relative;
  vertical-align: baseline;
}

sub {
  top: 0.3em;
}

sup {
  top: -0.4em;
}

s {
  text-decoration: line-through;
}

img {
  width: 100%;
  border: 0;
  padding: 0;
  margin-bottom: 1px !important;
  box-sizing: border-box;
  transition: filter 0.6s ease;
}

img.blur-loading {
  filter: blur(8px);
}

img.blur-loading.loaded {
  filter: blur(0px);
}

/* 로고 예외 */
.left-nav .nav-logo img,
.left-nav .image-link img {
  filter: none !important;
  transition: none !important;
}

/* 네비게이션 로고는 블러 제외 */
.left-nav .nav-logo img,
.left-nav .image-link img {
  filter: none !important;
  opacity: 1 !important;
  transition: none !important;
}

.two-col-wrap .img-left {
  padding-right: 5px;
  box-sizing: border-box;
}

.two-col-wrap .img-right {
  padding-left: 5px;
  box-sizing: border-box;
}

ul,
ol {
  margin: 0;
  padding: 0 0 0 2.5em;
}

blockquote {
  margin-block-start: 0em;
  margin-block-end: -1.5em;
  margin-inline-start: 44px;
  margin-inline-end: 0px;
}

hr {
  background: rgba(0, 0, 0, 1);
  border: 0;
  height: 1px;
  display: block;
}

.content img {
  float: none;
  margin-bottom: 0;
}

.work-full {
  width: 100%;
  margin-bottom: 0;
}

/* ------------------------------
   About Animation
------------------------------ */

.about-section div[grid-col="4"] {
  display: block;
  margin-bottom: 14px !important;
}


.about-body {
  padding-top: 1em;
}

.capability-body {
  padding-top: 3em;
}


.about-sequence {
  width: 100%;
}

.about-step {
   opacity: 0;
  transform: translateY(14px);
  animation: aboutFadeUp 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.about-line-wrap {
  margin: 18px 0;
}

.about-line {
  display: block;
  width: 0;
  height: 1px;
  background: #000;
  animation: aboutDrawLine 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}


.about-sequence .intro-text {
  margin: 0 0 24px 0;
  line-height: 1.5;
}

.about-sequence .about-section {
  margin: 0;
}

.about-sequence a {
  text-decoration: none;
}

/* 순서 */
.step-1 {
  animation-delay: 0s;
}

.step-2 .about-line {
  animation-delay: 0.1s;
}

.step-3 {
  animation-delay: 0.27s;
}

.step-4 .about-line {
  animation-delay: 0.44s;
}

.step-5 {
  animation-delay: 0.61s;
}

.step-6 .about-line {
  animation-delay: 0.78s;
}

.step-7 {
  animation-delay: 0.95s;
}

@keyframes aboutFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutDrawLine {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}




/* ------------------------------
   Left Navigation
------------------------------ */

.left-nav {
  display: flex;
  flex-direction: column;
  height: 100vh;
  border-right: 1px solid #000;
  padding-right: 0;
  margin-right: 0;
  box-sizing: border-box;
}

.left-nav a {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.left-nav a:hover {
  transform: translateX(10px);
}

.nav-logo,
.nav-logo:hover,
.image-link.nav-logo,
.image-link.nav-logo:hover {
  transform: none !important;
  transition: none !important;
}

.nav-logo {
  display: block;
  width: auto !important;
  max-width: none !important;
}

.left-nav .nav-logo img,
.left-nav .image-link img {
  display: block;
  width: 250px !important;
  max-width: none !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  margin-bottom: 0 !important;
  box-sizing: content-box !important;
  /* 로고는 블러 효과 제외 */
  filter: none !important;
  opacity: 1 !important;
  transition: none !important;
}

.nav-label,
.nav-section-label {
  display: block;
}

.nav-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

.bottom-links {
  margin-top: auto;
  flex-shrink: 0;
}

.left-nav hr {
  display: block;
  width: 100%;
  height: 1px;
  border: 0;
  background: #000;
  padding: 0;
  opacity: 1;
  flex-shrink: 0;
  margin: 7px 0;
}

.nav-list .nav-item a,
.bottom-links a:not(.image-link):not(.nav-logo) {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-list .nav-item a {
  display: inline-block;
  color: #111;
  transition:
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.25s ease,
    opacity 0.25s ease;
}

.nav-list:hover .nav-item a {
  opacity: 0.6;
  color: rgba(0, 0, 0, 0.66);
}

.nav-list .nav-item a:hover,
.bottom-links a:not(.image-link):not(.nav-logo):hover {
  transform: translateX(10px);
}

.nav-list .nav-item:hover a {
  opacity: 1;
  color: #111;
}

/* grid */

[grid-pad="1"] {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

[grid-col] {
  max-width: 100%;
  box-sizing: border-box;
}

/**
 * Loading Animation
 */

.loading[data-loading] {
  position: fixed;
  bottom: 8px;
  left: 8px;
}

/**
 * Editor styles
 */

[data-predefined-style="true"] bodycopy {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
  font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Roman", Icons;
  font-style: normal;
  line-height: 1.6;
}

[data-predefined-style="true"] bodycopy a {
  color: rgba(0, 0, 0, 0.85);
  padding-bottom: 0.1em;
  border-bottom: 0em solid rgba(127, 127, 127, 0.2);
  text-decoration: none;
}

bodycopy a.image-link,
bodycopy a.icon-link,
bodycopy a.image-link:hover,
bodycopy a.icon-link:hover {
  border-bottom: 0;
  padding-bottom: 0;
}

[data-predefined-style="true"] h1 {
  font-family: "Neue Haas Grotesk", Icons;
  font-style: normal;
  font-weight: 500;
  padding: 0;
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.85);
}

[data-predefined-style="true"] h1 a {
  color: rgba(0, 0, 0, 0.85);
}

[data-predefined-style="true"] h2 {
  font-family: Wremena, Icons;
  font-style: normal;
  font-weight: 200;
  padding: 0;
  margin: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 6.2rem;
  line-height: 0.9;
}

[data-predefined-style="true"] h2 a {
  color: rgba(0, 0, 0, 0.85);
}

[data-predefined-style="true"] small {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.3;
  font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Roman", Icons;
  font-style: normal;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
}

[data-predefined-style="true"] small a {
  color: rgba(0, 0, 0, 0.85);
  border-bottom-width: 0em;
}

/**
 * Breakpoints
 */

[data-css-preset] .page {
  background-color: initial;
}

.mobile .page,
[data-css-preset].mobile .page {
  position: relative;
  min-height: 10px;
  max-width: 100%;
  width: 100%;
  background-color: transparent;
}

[data-css-preset] .container {
  margin-left: auto;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
}

[data-css-preset] body {
  background-color: rgb(255, 255, 255);
}

[data-css-preset] .container_width {
  width: 56%;
}

[data-css-preset] .content_padding {
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 0rem;
  padding-right: 0rem;
}

[data-css-preset] text-limit {
  display: inline-block;
  max-width: 66rem;
}


/* ------------------------------
   Page Transition
------------------------------ */

.page_content.page-enter {
  animation: pageSlideUp 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@keyframes pageSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vimeo-wrap {
  padding-bottom: 1px;
}



@keyframes fadeScaleDown {
  from {
    opacity: 0;
    transform: scale(1.08);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

.left-nav [class*="fade-"] {
  opacity: 0;
  transform: scale(1.08);
  filter: blur(5px);
  animation-name: fadeScaleDown;
  animation-duration: 0.65s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: forwards;
  will-change: transform, opacity, filter;
}

.fade-1  { animation-delay: 0.05s; }
.fade-2  { animation-delay: 0.10s; }
.fade-3  { animation-delay: 0.15s; }
.fade-4  { animation-delay: 0.20s; }
.fade-5  { animation-delay: 0.25s; }
.fade-6  { animation-delay: 0.30s; }
.fade-7  { animation-delay: 0.35s; }
.fade-8  { animation-delay: 0.40s; }
.fade-9  { animation-delay: 0.45s; }
.fade-10 { animation-delay: 0.50s; }
.fade-11 { animation-delay: 0.55s; }
.fade-12 { animation-delay: 0.60s; }
.fade-13 { animation-delay: 0.65s; }
.fade-14 { animation-delay: 0.70s; }
.fade-15 { animation-delay: 0.75s; }
.fade-16 { animation-delay: 0.80s; }



/* Mobile */

@media (max-width: 768px) {
  .two-col-wrap .img-left,
  .two-col-wrap .img-right {
    padding-left: 0;
    padding-right: 0;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
  }

  .left-nav {
    height: auto;
    min-height: 100vh;
  }

  .nav-list {
    overflow-y: visible;
  }
}