@import 'normalize.css';
@import url("https://fonts.googleapis.com/css2?family=Nanum+Myeongjo&display=swap");
@import 'ui_common.css';
@import 'font.css';
:root {
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --pink-400: #CD1433;
  --pink-500: #CD1433;
  --pink-600: #DB2777;
  --red-50: #FEF2F2;
  --red-400: #DC2626;
  --yellow-50: #FEFCE8;
  --yellow-400: #FFB800;
  --tight: -0.025em;
  --tighter: -0.035em;
  --mq-xxl: 1440px;
  --mq-xl: 1280px;
  --mq-md: 1024px;
  --mq-sm: 768px;
  --mq-xs: 480px;
}

a {
  cursor: pointer;
}

button {
  background-color: transparent;
  cursor: pointer;
}

input {
  outline: none;
  border: none;
}

figure {
  margin: 0;
}

hr {
  border: 1px solid var(--gray-200);
}

hr.dark {
  border: 1px solid var(--gray-800);
}

.p-none {
  padding: 0 !important;
}

.max-img {
  max-width: 100%;
}

.mt-0 {
  margin-top: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-48 {
  margin-top: 48px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-56 {
  margin-top: 56px !important;
}

.mt-64 {
  margin-top: 64px !important;
}

.mt-72 {
  margin-top: 72px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mb-48 {
  margin-bottom: 48px !important;
}

.mb-72 {
  margin-bottom: 72px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-300 {
  margin-bottom: 300px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.inline {
  display: inline;
}

.hidden {
  display: none !important;
}

.ir {
  position: absolute;
  margin: -1px;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
}

@media (max-width: 1024px) {
  .mt-48 {
    margin-top: 32px !important;
  }
  .mt-72 {
    margin-top: 56px !important;
  }
  .mt-80 {
    margin-top: 56px !important;
  }
  .mb-48 {
    margin-bottom: 32px !important;
  }
  .mb-72 {
    margin-bottom: 56px !important;
  }
  .mb-80 {
    margin-bottom: 64px !important;
  }
}
/*--------------------*/
body {
  font-family: "Pretendard", "Malgun Gothic", "Dotum", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.03em;
  line-height: 1.3em;
  font-weight: bold;
}

.page-wrap {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Title, Text Size Scale -----------*/
/* Layout Common -----------*/
.spacer-150 {
  display: block;
  position: relative;
  height: 150px;
}

@media (max-width: 1024px) {
  .spacer-150 {
    height: 72px;
  }
}
.container-wrap {
  position: relative;
  width: 100%;
  max-width: 1498px;
  margin: auto;
  padding: 0 24px 0 24px;
}
.container-wrap.max-width {
  max-width: 100%;
  padding: 0 100px 0 100px;
}
.container-wrap.col-10 {
  max-width: 1126px;
}
.container-wrap.col-8 {
  max-width: 1008px;
}
.container-wrap.col-6 {
  max-width: 749px;
}
.container-wrap.cards-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.container-wrap.container-grid {
  display: grid;
  grid-template-columns: 12fr;
  grid-gap: 38px;
}
.container-wrap.container-grid > .col-1 {
  column-span: 1;
}
.container-wrap.container-grid > .col-2 {
  column-span: 2;
}
.container-wrap.container-grid > .col-3 {
  column-span: 3;
}
.container-wrap.container-grid > .col-4 {
  column-span: 4;
}
.container-wrap.container-grid > .col-5 {
  column-span: 5;
}
.container-wrap.container-grid > .col-6 {
  column-span: 6;
}
.container-wrap.container-grid > .col-7 {
  column-span: 7;
}
.container-wrap.container-grid > .col-8 {
  column-span: 8;
}
.container-wrap.container-grid > .col-9 {
  column-span: 9;
}
.container-wrap.container-grid > .col-10 {
  column-span: 10;
}

@media (max-width: 1440px) {
  .container-wrap {
    padding: 0 40px;
  }
}
@media (max-width: 1024px) {
  .container-wrap {
    padding: 0 20px;
  }
}
.with-pict-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.with-pict-wrap.to-right {
  justify-content: end;
}
.with-pict-wrap .pict-wrap {
  position: relative;
  min-width: 30%;
  height: 500px;
  overflow: hidden;
  top: 0;
  left: 0;
  background-color: var(--gray-200);
}
.with-pict-wrap .pict-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.with-pict-wrap .pict-wrap.w-30 {
  width: 30%;
}
.with-pict-wrap .pict-wrap.w-40 {
  width: 40%;
}
.with-pict-wrap .pict-wrap.w-50 {
  width: 50%;
}
.with-pict-wrap .pict-wrap.w-55 {
  width: 55%;
}
.with-pict-wrap .pict-wrap.w-60 {
  width: 60%;
}
.with-pict-wrap .pict-wrap.w-65 {
  width: 65%;
}
.with-pict-wrap .pict-wrap.w-70 {
  width: 70%;
}
.with-pict-wrap .pict-wrap.h-480 {
  height: 480px;
}
.with-pict-wrap .pict-wrap.h-540 {
  height: 540px;
}
.with-pict-wrap .pict-wrap.h-640 {
  height: 640px;
}

@media (max-width: 1024px) {
  .with-pict-wrap {
    margin-top: 24px;
    flex-direction: column;
  }
  .with-pict-wrap .pict-wrap {
    max-width: 100%;
    margin: auto;
  }
  .with-pict-wrap .pict-wrap.w-30 {
    width: 50%;
  }
  .with-pict-wrap .pict-wrap.w-40 {
    width: 100%;
  }
  .with-pict-wrap .pict-wrap.w-50 {
    width: 100%;
  }
  .with-pict-wrap .pict-wrap.w-55 {
    width: 100%;
  }
  .with-pict-wrap .pict-wrap.w-60 {
    width: 100%;
  }
  .with-pict-wrap .pict-wrap.w-65 {
    width: 100%;
    height: 320px;
  }
  .with-pict-wrap .pict-wrap.w-70 {
    width: 100%;
  }
  .with-pict-wrap .pict-wrap.h-480 {
    height: 320px;
  }
  .with-pict-wrap .pict-wrap.h-540 {
    height: 320px;
  }
  .with-pict-wrap .pict-wrap.h-640 {
    height: 320px;
  }
  .with-pict-wrap.to-right {
    flex-direction: column-reverse;
  }
  .with-pict-wrap.mb-300 {
    margin-bottom: 100px !important;
  }
}
.full-slide-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  padding-left: calc(50% - 725px);
}
.full-slide-wrap .slide {
  position: relative;
  flex-shrink: 0;
  margin-right: 38px;
}

.page-divider {
  display: block;
  position: relative;
  width: 100%;
  height: 1px;
  border-top: 1px solid var(--gray-200);
}
.page-divider.dark {
  border-top: 1px solid var(--gray-800);
}

/* Page Layout ------------*/
.page-head-wrap {
  padding-top: 140px;
}
.page-head-wrap h1, .page-head-wrap h2, .page-head-wrap h3, .page-head-wrap h4, .page-head-wrap h5, .page-head-wrap p {
  margin: 0;
}
.page-head-wrap .page-headline-wrap {
  position: relative;
  width: 100%;
  margin-top: 80px;
}
.page-head-wrap .page-headline-wrap .page-headline {
  font-weight: bold;
  font-size: 52px;
  margin: 0;
  width: 100%;
  max-width: 80%;
  line-height: 1.33em;
  word-break: keep-all;
}
.page-head-wrap .page-headline-wrap .page-headline.small {
  font-size: 52px;
  margin-bottom: 0;
}
.page-head-wrap .page-headline-wrap .sub-title {
  display: block;
  width: 100%;
  font-size: 28px;
  font-weight: normal;
  color: var(--gray-700);
  margin-top: 12px;
}
.page-head-wrap .page-headline-wrap .recommend-title {
  display: block;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.03em;
  color: var(--gray-800);
  margin-top: 32px;
  display: flex;
  align-items: center;
}
.page-head-wrap .page-headline-wrap .recommend-title > .bullet {
  display: block;
  width: 8px;
  height: 15px;
  background-color: white;
  margin-left: 12px;
  margin-top: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.page-head-wrap .page-headline-wrap .recommend-title:hover {
  text-decoration: underline;
}
.page-head-wrap .page-headline-wrap .reveal-text {
  display: block;
  width: 100%;
  overflow: hidden;
}
.page-head-wrap .page-headline-wrap .reveal-text > h1, .page-head-wrap .page-headline-wrap .reveal-text > h2, .page-head-wrap .page-headline-wrap .reveal-text > h3, .page-head-wrap .page-headline-wrap .reveal-text > h4, .page-head-wrap .page-headline-wrap .reveal-text > h5, .page-head-wrap .page-headline-wrap .reveal-text > p {
  transform: translateY(100%);
  animation: headlineRevealUp 1s;
  animation-fill-mode: forwards;
}
.page-head-wrap .search-small-wrap {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1024px) {
  .page-head-wrap {
    padding-top: 24px;
  }
  .page-head-wrap .search-small-wrap {
    margin-top: 32px;
  }
}
@media (max-width: 1024px) {
  .page-head-wrap .page-headline-wrap {
    position: relative;
    width: 100%;
    margin-top: 112px;
  }
  .page-head-wrap .page-headline-wrap > .reveal-text > .page-headline {
    font-size: 28px;
    max-width: 95%;
  }
  .page-head-wrap .page-headline-wrap > .reveal-text > .page-headline.small {
    font-size: 28px;
  }
  .page-head-wrap .page-headline-wrap .sub-title {
    font-size: 16px;
  }
  .page-head-wrap .page-headline-wrap .recommend-title {
    margin-top: 16px;
    margin-bottom: 84px;
    font-size: 16px;
    word-break: keep-all;
  }
}
.headline-wrap {
  width: 100%;
  margin-top: 80px;
}
.headline-wrap > .headline-line {
  position: relative;
  width: 100%;
  display: flex;
  overflow: hidden;
}
.headline-wrap > .headline-line > h3 {
  width: 100%;
  display: block;
  position: relative;
  font-weight: bold;
  font-size: 52px;
  margin: 0 auto;
  padding: 0 auto;
  line-height: 1.33em;
  word-break: keep-all;
}
.headline-wrap > .headline-line > p {
  position: relative;
  width: 100%;
  max-width: 1000px;
  font-size: 32px;
  word-break: keep-all;
  line-height: 1.3em;
  color: var(--gray-500);
}
.headline-wrap.reveal-text > .headline-line > h3 {
  transform: translateY(100%);
  animation: headlineRevealUp 1s;
  animation-fill-mode: forwards;
}
.headline-wrap.reveal-text > .headline-line > h3:nth-child(2) {
  animation-delay: 0.3s;
}
.headline-wrap.reveal-text > .headline-line > p {
  transform: translateY(100%);
  animation: headlineRevealUp 1s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
.headline-wrap .headline-sub {
  width: 100%;
  font-size: 28px;
  color: var(--gray-500);
}

@keyframes headlineRevealUp {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@media (max-width: 1024px) {
  .headline-wrap {
    margin-top: 0;
  }
  .headline-wrap > .headline-line > h3 {
    font-size: 28px;
  }
  .headline-wrap > .headline-line.big > h3 {
    font-size: 9vw;
  }
}
/*-------------------*/
.text-con-block {
  padding: 0 auto 48px auto;
  width: 100%;
  max-width: 560px;
  word-break: keep-all;
}
.text-con-block.pl {
  padding-left: 64px;
}
.text-con-block.pr {
  padding-right: 64px;
}
.text-con-block h4 {
  margin-bottom: 40px !important;
  font-weight: bold;
  font-size: 32px;
  line-height: 1.33em;
  letter-spacing: -0.03em;
  word-break: keep-all;
  margin: 0;
}
.text-con-block dl {
  margin-bottom: 40px;
}
.text-con-block dt {
  font-size: 24px;
  color: var(--gray-800);
  margin: 40px auto 16px auto;
  font-weight: normal;
}
.text-con-block dd {
  color: var(--gray-500);
  font-size: 20px;
  margin: 16px auto 16px auto;
  line-height: 1.33em;
}
.text-con-block .desc {
  font-size: 18px;
  margin: 20px auto 40px auto;
}
.text-con-block .desc.big {
  font-size: 24px;
  color: var(--gray-600);
}

@media (max-width: 1024px) {
  .text-con-block {
    max-width: 100%;
    padding: 24px 0 8px 0;
    margin: 0 auto;
  }
  .text-con-block.pl {
    padding-right: 12px;
    padding-left: 12px;
  }
  .text-con-block.pr {
    padding-right: 12px;
    padding-left: 12px;
  }
  .text-con-block h4 {
    margin-bottom: 32px !important;
    font-size: 22px;
  }
  .text-con-block h4.big {
    font-size: 22px;
  }
  .text-con-block dt {
    font-size: 18px;
    margin: 32px auto 16px auto;
  }
  .text-con-block dd {
    font-size: 16px;
    margin: 16px auto 16px auto;
  }
}
/*-------------------*/
.title-wrap {
  width: 100%;
  margin-top: 120px;
  margin-bottom: 56px;
}
.title-wrap h3 {
  font-weight: bold;
  font-size: 48px;
  letter-spacing: -0.03em;
}

/*-------------------*/
.content-wrap {
  position: relative;
  width: 100%;
  max-width: 1450px;
  margin: auto;
  word-break: keep-all;
}
.content-wrap.content__intro, .content-wrap.page-head {
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  padding-top: 140px;
}

@media (max-width: 1024px) {
  .content-wrap.content__intro, .content-wrap.page-head {
    padding-top: 132px;
  }
}
.col-4-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.col-4-wrap > .col {
  width: 25%;
}

.insight-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.insight-wrap > .article-wrap {
  width: 100%;
  max-width: 954px;
  flex-shrink: 0;
}
.insight-wrap > .article-wrap .img-full {
  width: 100%;
}
.insight-wrap > .article-right {
  width: 100%;
  max-width: 376px;
  overflow: hidden;
}

.dark-wrap {
  position: relative;
  width: 100%;
  background-color: #17181A;
}
.dark-wrap.related-wrap {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-800);
}

.insight-search-img {
  position: absolute;
  width: 375px;
  right: 0;
  bottom: 16px;
}

.insight-hero-wrap {
  width: 100%;
  height: 570px;
  background-color: #0056B3;
  text-align: center;
  overflow: hidden;
  margin-top: 50px;
}
.insight-hero-wrap img {
  position: absolute;
  max-width: 1920px;
  margin: auto;
  left: calc(50% - 960px);
}

/*-------------------*/
.case-page-wrap {
  width: 100%;
  position: relative;
  padding-top: 194px;
}

.case-header {
  position: absolute;
  width: 100%;
  height: 90px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 38;
  border-bottom: 1px solid var(--gray-300);
  padding: 0 calc(50% - 725px) 0 calc(50% - 725px);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(32px);
  top: 104px;
}
.case-header.active {
  position: fixed;
  top: 0;
}
.case-header > .btn-list-back {
  height: 40px;
  display: flex;
  align-items: center;
  color: var(--gray-500);
  margin-right: 32px;
}
.case-header > .btn-list-back > .text {
  display: block;
  padding-left: 8px;
  font-weight: bold;
}
.case-header .case-header-item {
  position: relative;
  display: flex;
  align-items: center;
  width: 180px;
  height: 90px;
  color: var(--gray-500);
  transition: all 0.75;
  line-height: 1.2em;
  letter-spacing: -0.03em;
  font-weight: bold;
  word-break: keep-all;
  margin-right: 8px;
}
.case-header .case-header-item:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  width: 0;
  height: 3px;
  background-color: #E826C9;
  transition: all 0.3s;
}
.case-header .case-header-item:hover {
  color: var(--gray-900);
}
.case-header .case-header-item:hover:after {
  width: 100%;
}
.case-header .case-header-item.active {
  color: var(--gray-900);
}
.case-header .case-header-item.active:after {
  width: 100%;
}

.case-project-wrap {
  width: 100%;
  padding: 150px auto;
  background-color: #F2F3F4;
}
.case-project-wrap > .container-wrap {
  max-width: 1680px;
}

/*-----------------*/
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}