@charset "UTF-8";
/* Mobile viewport height variables: Updated by JS */
:root {
  --vh: 1vh;
  --vh-fixed: 1vh;
}

body.resizing * {
  -webkit-transition: none !important;
  transition: none !important;
  -webkit-animation: none !important;
          animation: none !important;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFF12;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  position: absolute;
  top: 48px;
  left: 48px;
  width: 56px;
  height: 56px;
  opacity: 1; /* 즉시 표시 */
}

.loading-progress {
  width: 200px;
  height: 2px;
  background: #000080;
  border-radius: 1px;
  overflow: hidden;
  margin-bottom: 20px;
}

.loading-progress-bar {
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#000080), to(#1E1F23));
  background: linear-gradient(90deg, #000080, #1E1F23);
  width: 0%;
  -webkit-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
  border-radius: 1px;
}

.loading-text {
  color: #000080;
  font-size: 14px;
  font-weight: 300;
  opacity: 0;
  -webkit-animation: textFadeIn 0.8s ease-out 0.5s forwards;
          animation: textFadeIn 0.8s ease-out 0.5s forwards;
}

.loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top: 2px solid #000080;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin-top: 20px;
  opacity: 0;
  -webkit-animation: spinnerFadeIn 0.8s ease-out 1s forwards, spin 1s linear 1s infinite;
          animation: spinnerFadeIn 0.8s ease-out 1s forwards, spin 1s linear 1s infinite;
}

@-webkit-keyframes logoFadeIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes textFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes textFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes spinnerFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes spinnerFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* safari */
.service__item, .works__item {
  will-change: auto;
}

/* 모바일 최적화 */
@media (max-width: 768px) {
  .loading-logo {
    width: 40px;
    height: 40px;
    right: 22px;
    bottom: 22px;
    top: unset;
    left: unset;
  }
  .loading-progress {
    width: 160px;
  }
  .loading-text {
    font-size: 12px;
  }
}
/* loading screen only pc */
.only-pc {
  display: block;
}

.only-mo {
  display: none;
}

@media (max-width: 768px) {
  .only-pc {
    display: none;
  }
  .only-mo {
    display: block;
  }
}
/* Mobile Header */
@media screen and (max-width: 768px) {
  .header .header-nav-logo {
    width: calc(100svh - 44px);
    height: calc(100svh - 44px);
  }
  .header .header-nav-logo img {
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* elix Main Page */
.elix {
  position: relative;
  width: 100%;
  height: 100vh;
}
.elix::before {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #fff;
}
.elix::after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: #fff;
}
.elix__inner {
  width: calc(100% - 24px);
  margin: 0 auto;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 1200px) {
  .elix::before {
    height: 24px;
  }
  .elix::after {
    height: 24px;
  }
  .elix__inner {
    width: calc(100% - 48px);
    margin: 0 auto;
  }
}
.elix .visual {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
  contain: paint;
  position: relative;
  height: calc(100svh - 12px);
  min-height: calc(100svh - 12px);
  background: url("/ko/images/main/main-bg-pc.png") center/cover no-repeat;
  padding-top: 12px;
  padding-bottom: env(safe-area-inset-bottom);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .elix .visual {
    background: url("/ko/images/main/main-bg-mo.png") center/cover no-repeat;
  }
}
@media screen and (min-width: 1200px) {
  .elix .visual {
    height: calc(100vh - 24px);
    min-height: calc(100vh - 24px);
    padding-top: 24px;
  }
}
.elix .visual + .pin-spacer, .pin-spacer .elix .visual {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.elix .visual__video, .elix .visual__tit, .elix .visual__prompt {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform, opacity;
}
.elix .visual__video {
  position: relative;
  width: 100vw;
  height: 100svh;
  min-height: 500px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url("/ko/images/main/main-bg-pc.png") center/cover no-repeat;
}
@media screen and (max-width: 1023px) {
  .elix .visual__video {
    background: url("/ko/images/main/main-bg-mo.png") center/cover no-repeat !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .elix .visual__video video {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
.elix .visual__video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%) translateZ(0);
          transform: translate(-50%, -50%) translateZ(0);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: optimizeSpeed;
  image-rendering: -webkit-optimize-contrast;
}
@media screen and (min-width: 1024px) {
  .elix .visual__video video {
    -webkit-transform: translate(-50%, -50%) scale(1.1) translateZ(0);
            transform: translate(-50%, -50%) scale(1.1) translateZ(0);
  }
}
@media screen and (max-width: 1023px) {
  .elix .visual__video video {
    -webkit-transform: translate(-50%, -50%) scale(1.05) translateZ(0);
            transform: translate(-50%, -50%) scale(1.05) translateZ(0);
  }
}
.elix .visual__tit {
  position: absolute;
  width: 100%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .elix .visual__tit {
    width: 97svh;
    height: auto;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
    left: 0;
    bottom: env(safe-area-inset-bottom);
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .elix .visual__tit {
    padding: 20px 18px;
  }
}
@media screen and (min-width: 1024px) {
  .elix .visual__tit {
    padding: 1.563vw 1.302vw;
    bottom: 0px;
    left: 0;
  }
}
.elix .visual__tit-cl, .elix .visual__tit-ix {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.elix .visual__tit-cl {
  width: 36vw;
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .elix .visual__tit-cl {
    width: 210.7px;
  }
}
@media screen and (min-width: 1024px) {
  .elix .visual__tit-cl {
    width: 15.677vw;
  }
}
.elix .visual__tit-ix {
  width: 23.467vw;
  margin-left: 10px;
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .elix .visual__tit-ix {
    width: 130.4px;
    margin-left: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .elix .visual__tit-ix {
    width: 10.208vw;
    margin-left: 1.042vw;
  }
}
.elix .visual__tit-bar {
  background: #000080;
  width: 100%;
  height: 8px;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
@media screen and (min-width: 1024px) {
  .elix .visual__tit-bar {
    height: 0.833vw;
  }
}
.elix .visual__tit img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.elix .visual__prompt {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100vw - 72px);
  height: 100svh;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1023px) {
  .elix .visual__prompt {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .elix .visual__prompt {
    width: 70%;
  }
}
@media screen and (min-width: 1024px) {
  .elix .visual__prompt {
    width: calc(50% - 13.438vw);
    margin-left: 0.521vw;
    gap: 2.396vw;
  }
}
.elix .visual__prompt-input {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 52px;
  opacity: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: none;
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .elix .visual__prompt-input {
    height: 52px;
  }
}
@media screen and (min-width: 1024px) {
  .elix .visual__prompt-input {
    height: 3.125vw;
  }
}
.elix .visual__prompt-input span {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100svh;
  padding: 0 9px;
  opacity: 1;
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .elix .visual__prompt-input span {
    padding: 0 9px;
  }
}
@media screen and (min-width: 1024px) {
  .elix .visual__prompt-input span {
    padding: 0 0.469vw;
  }
}
.elix .visual__prompt-input span .icon-plus {
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 10px 0 10px;
  background: url(/ko/images/main/icon-plus.svg) center no-repeat;
  opacity: 0;
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .elix .visual__prompt-input span .icon-plus {
    width: 16px;
    height: 16px;
    margin: 0 10px 0 10px;
  }
}
@media screen and (min-width: 1024px) {
  .elix .visual__prompt-input span .icon-plus {
    width: 1.042vw;
    height: 1.042vw;
    margin: 0 1.563vw 0 0.521vw;
  }
}
.elix .visual__prompt-input span .icon-voice {
  display: none;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
  width: 16px;
  height: 16px;
  background: url(/ko/images/main/icon-voice.svg) center no-repeat;
  opacity: 0;
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .elix .visual__prompt-input span .icon-voice {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .elix .visual__prompt-input span .icon-voice {
    display: block;
    right: 1.563vw;
    top: 50%;
    -webkit-transform: translateY(-50%) !important;
            transform: translateY(-50%) !important;
    width: 1.094vw;
    height: 1.042vw;
  }
}
.elix .visual__prompt-input-txt {
  font-size: 16px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: -0.48px;
  color: #000080;
  white-space: nowrap;
  opacity: 0;
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .elix .visual__prompt-input-txt {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .elix .visual__prompt-input-txt {
    font-size: 1.042vw;
    letter-spacing: -0.6px;
  }
}
.elix .visual__prompt-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.elix .visual__prompt-svg--pc {
  display: block;
}
.elix .visual__prompt-svg--mo {
  display: none;
}
@media screen and (max-width: 768px) {
  .elix .visual__prompt-svg--pc {
    display: none;
  }
  .elix .visual__prompt-svg--mo {
    display: block;
  }
}
.elix .visual__prompt-path {
  clip-path: inset(0 100% 0 0);
}
.elix .visual__prompt-result {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.elix .visual__prompt-result [class^=visual__prompt-result-line] {
  width: 100%;
  font-size: 4vw;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: -0.24px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  color: #000080;
  word-break: keep-all;
  white-space: normal;
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .elix .visual__prompt-result [class^=visual__prompt-result-line] {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .elix .visual__prompt-result [class^=visual__prompt-result-line] {
    font-size: 1.042vw;
    line-height: 170%;
    letter-spacing: -0.6px;
    word-break: keep-all;
  }
}
.elix .visual__prompt-result [class^=visual__prompt-result-line] strong {
  font-weight: 700;
}
.elix .visual__prompt-result [class^=visual__prompt-result-line]:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (min-width: 1024px) {
  .elix .visual__prompt-result [class^=visual__prompt-result-line]:not(:last-child) {
    margin-bottom: 1.563vw;
  }
}
.elix .visual__prompt-result-line--pc {
  display: none;
}
.elix .visual__prompt-result-line--mo {
  display: block;
}
.elix .visual__prompt-result-line--mo p {
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  .elix .visual__prompt-result .visual__prompt-result-line--pc {
    display: block;
  }
  .elix .visual__prompt-result .visual__prompt-result-line--mo {
    display: none;
  }
}
.elix .visual__prompt-result::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  margin-top: 8vw;
  background: url("/ko/images/main/icon-twinkle.svg") center no-repeat;
  background-size: contain;
  overflow: visible;
  opacity: 0;
}
@media screen and (min-width: 1024px) {
  .elix .visual__prompt-result::after {
    width: 1.042vw;
    height: 1.042vw;
    margin-top: 1.198vw;
  }
}
.elix .visual__prompt-result.twinkle-on::after {
  opacity: 1;
  -webkit-animation: twinkleMove 2.5s ease-in-out infinite, twinkleFadeIn 0.5s ease-in-out 0s forwards;
          animation: twinkleMove 2.5s ease-in-out infinite, twinkleFadeIn 0.5s ease-in-out 0s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .elix .visual__prompt-input {
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
  .elix .visual__prompt-input span {
    -webkit-transition: none !important;
    transition: none !important;
  }
}
.elix .service {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .elix .service {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
  }
}
.elix .service .btn-service {
  position: absolute;
  bottom: 48px;
  right: 48px;
  width: 33px;
  height: 33px;
  z-index: 10;
  border: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .elix .service .btn-service {
    display: none;
  }
}
.elix .service .btn-restart {
  position: absolute;
  background: url(/ko/images/main/icon-restart.svg) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .elix .service .btn-restart {
    display: none;
  }
}
.elix .service .btn-next {
  opacity: 1;
  z-index: 20;
  background: url(/ko/images/main/icon-arrow.svg) center/contain no-repeat;
}
.elix .service__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}
@media screen and (max-width: 1023px) {
  .elix .service__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 120px;
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1024px) {
  .elix .service__inner {
    height: 100vh;
    gap: 10.417vw;
    padding-right: 10.417vw;
  }
}
.elix .service__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  /* 썸네일 이미지 배경 */
}
@media screen and (min-width: 1024px) {
  .elix .service__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100vw;
    min-height: 100vh;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.elix .service__item--ai {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .elix .service__item--ai {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.elix .service__item--ai .service__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 90px;
}
@media screen and (min-width: 1024px) {
  .elix .service__item--ai .service__text {
    gap: 2.5vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 36px;
    margin-top: unset;
  }
}
.elix .service__item--ai .service__text h2 img {
  width: auto;
  height: auto;
  max-width: none;
}
@media screen and (min-width: 1024px) {
  .elix .service__item--ai .service__text h2 img {
    width: 100%;
    max-width: 100%;
  }
}
.elix .service__item--ai .service__text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: -0.24px;
  color: #000080;
  margin-bottom: 114px;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .elix .service__item--ai .service__text p {
    font-size: 18px;
    margin-bottom: 70px;
  }
}
@media screen and (min-width: 1024px) {
  .elix .service__item--ai .service__text p {
    font-size: 1.042vw;
    letter-spacing: -0.3px;
    white-space: pre-line;
    margin-bottom: unset;
  }
}
@media screen and (max-width: 1023px) {
  .elix .service__item--ai .service__media .service__img--mo {
    display: block;
    width: 317px;
    margin: 0 auto;
  }
  .elix .service__item--ai .service__media .service__img--1, .elix .service__item--ai .service__media .service__img--2 {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .elix .service__item--ai .service__media .service__img--mo {
    width: 60%;
  }
}
@media screen and (min-width: 1024px) {
  .elix .service__item--ai .service__media {
    position: relative;
    width: calc(69.792vw - 24px);
    margin-right: 24px;
    -webkit-perspective: 1000px;
            perspective: 1000px;
  }
  .elix .service__item--ai .service__media .service__img {
    position: absolute;
    top: 8.2vh;
    left: 0;
    height: calc(100svh - 8.8vh - 8.2vh);
    width: auto;
    -webkit-transition: -webkit-transform 0.1s ease-out;
    transition: -webkit-transform 0.1s ease-out;
    transition: transform 0.1s ease-out;
    transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
  }
  .elix .service__item--ai .service__media .service__img--mo {
    display: none;
  }
  .elix .service__item--ai .service__media .service__img img {
    width: calc(100% - 4.583vw);
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
}
.elix .service__item--build, .elix .service__item--create, .elix .service__item--agent, .elix .service__item--craft {
  padding: 24px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1023px) {
  .elix .service__item--build .service__content-diagram, .elix .service__item--create .service__content-diagram, .elix .service__item--agent .service__content-diagram, .elix .service__item--craft .service__content-diagram {
    width: 85%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .elix .service__item--build .service__content-diagram, .elix .service__item--create .service__content-diagram, .elix .service__item--agent .service__content-diagram, .elix .service__item--craft .service__content-diagram {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .elix .service__item--build, .elix .service__item--create, .elix .service__item--agent, .elix .service__item--craft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
  }
}
.elix .service__item--build .service__thumb-tit {
  width: 30.156vw;
  margin-left: -1.563vw;
}
.elix .service__item--build .service__content-img {
  background: url("/ko/images/main/service-build-mo.png") center/cover no-repeat;
}
.elix .service__item--build .service__content-img strong {
  margin-left: -24px;
}
.elix .service__item--create .service__thumb-tit {
  width: 38.125vw;
  margin-left: -1.823vw;
}
.elix .service__item--create .service__content-img {
  background: url("/ko/images/main/service-create-mo.png") center/cover no-repeat;
}
.elix .service__item--create .service__content-img strong {
  margin-left: -24px;
}
.elix .service__item--agent .service__thumb-tit {
  width: 34.115vw;
  margin-left: -1.354vw;
}
.elix .service__item--agent .service__content-img {
  background: url("/ko/images/main/service-agent-mo.png") center/cover no-repeat;
}
.elix .service__item--agent .service__content-img strong {
  margin-left: -16px;
}
.elix .service__item--craft .service__thumb-tit {
  width: 33.177vw;
  margin-left: -2.76vw;
}
.elix .service__item--craft .service__content-img {
  background: url("/ko/images/main/service-craft-mo.png") center/cover no-repeat;
}
.elix .service__item--craft .service__content-img strong {
  margin-left: -42px;
}
.elix .service__thumb {
  position: relative;
  width: 49.271vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .elix .service__thumb {
    display: none;
  }
}
.elix .service__thumb-inner {
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% - 0px);
  width: 100%;
  z-index: 2;
}
.elix .service__thumb-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.elix .service__thumb-video-wrap {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  z-index: 2;
  background-color: #fff;
}
@media screen and (min-width: 1024px) {
  .elix .service__thumb-video-wrap {
    width: 0%;
    -webkit-transition: width 0.7s ease 0.4s;
    transition: width 0.7s ease 0.4s;
  }
}
.elix .service__thumb-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 34px;
}
@media screen and (min-width: 1024px) {
  .elix .service__thumb-count {
    opacity: 0;
    -webkit-transition: opacity 0.6s ease 1.2s;
    transition: opacity 0.6s ease 1.2s;
  }
}
.elix .service__thumb-count li {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.48px;
}
.elix .service__thumb-count li:first-child::after {
  content: "";
  display: block;
  width: 20px;
  height: 6px;
  margin: 2px 0;
  background: url("/ko/images/main/count-slash.png") center/cover no-repeat;
}
.elix .service__thumb-tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  margin-top: 0.469vw;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .elix .service__thumb-tit {
    opacity: 0;
  }
}
.elix .service__thumb-tit img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.elix .service__thumb-source {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: #FFF;
  font-size: 14px;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: 0.42px;
  opacity: 0;
}
@media screen and (min-width: 1024px) {
  .elix .service__thumb.is-visible .service__thumb-video-wrap {
    width: 100%;
  }
  .elix .service__thumb.is-visible .service__thumb-tit {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: opacity 0.6s ease 1s, -webkit-transform 0.6s ease 1s;
    transition: opacity 0.6s ease 1s, -webkit-transform 0.6s ease 1s;
    transition: transform 0.6s ease 1s, opacity 0.6s ease 1s;
    transition: transform 0.6s ease 1s, opacity 0.6s ease 1s, -webkit-transform 0.6s ease 1s;
  }
  .elix .service__thumb.is-visible .service__thumb-source,
  .elix .service__thumb.is-visible .service__thumb-count {
    opacity: 1;
    -webkit-transition: opacity 0.6s ease 1.2s;
    transition: opacity 0.6s ease 1.2s;
  }
}
.elix .service__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .elix .service__content {
    opacity: 0;
    -webkit-transition: opacity 0.8s ease 0.5s;
    transition: opacity 0.8s ease 0.5s;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 120px;
  }
  .elix .service__content.is-visible {
    opacity: 1;
  }
}
.elix .service__content-txt {
  min-width: 0;
  color: #000080;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 1023px) {
  .elix .service__content-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    padding: 0 12px;
  }
}
@media screen and (min-width: 1024px) {
  .elix .service__content-txt {
    width: 31.25vw;
    margin-top: 5.925vh;
  }
}
.elix .service__content-txt .tit {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.6px;
}
@media screen and (min-width: 1024px) {
  .elix .service__content-txt .tit {
    font-size: 2.083vw;
    line-height: 160%;
    margin-bottom: 1.458vw;
  }
}
.elix .service__content-txt .txt {
  font-size: 16px;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: -0.24px;
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .elix .service__content-txt .txt {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .elix .service__content-txt .txt {
    font-size: 1.042vw;
    letter-spacing: -0.3px;
  }
}
.elix .service__content-diagram {
  height: auto;
}
.elix .service__content-diagram img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1023px) {
  .elix .service__content-diagram {
    width: 88.267vw;
  }
}
@media screen and (min-width: 1024px) {
  .elix .service__content-diagram {
    width: calc(43.854vw - 24px);
    padding-right: 24px;
  }
}
.elix .service__content-img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 410px;
}
.elix .service__content-img strong {
  display: inline-block;
  margin-top: 9px;
}
.elix .service__content-img strong img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.elix .service__content-img span {
  position: absolute;
  bottom: 11px;
  right: 19px;
  color: #FFF;
  font-size: 11px;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: 0.33px;
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .elix .service__content-img {
    width: 100%;
    max-width: 1024px;
    aspect-ratio: 371/410;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 1024px) {
  .elix .service__content-img {
    display: none;
  }
}
.elix .spec {
  position: relative;
  z-index: 2;
  width: 100%;
  background: url("/ko/images/main/main-bg-pc.png") center/cover no-repeat;
  overflow: hidden;
}
.elix .spec__video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.elix .spec__prompt {
  min-height: 10rem;
}
.elix .spec__prompt-result {
  min-height: 8rem;
}
.elix .spec__feature-desc {
  min-height: 6rem;
  line-height: 1.6;
}
.elix .spec__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  z-index: -1;
  opacity: 0.8;
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.elix .spec__video-item--pc {
  display: block;
}
.elix .spec__video-item--mo {
  display: none;
}
@media screen and (max-width: 1023px) {
  .elix .spec__video {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
  }
  .elix .spec__video--pc {
    display: none;
  }
  .elix .spec__video--mo {
    display: block;
  }
}
.elix .spec__about, .elix .spec__feature {
  position: relative;
  will-change: opacity, transform;
  opacity: 0;
  visibility: hidden;
}
.elix .spec__about {
  height: calc(100vh + env(safe-area-inset-bottom));
  min-height: calc(100vh + env(safe-area-inset-bottom));
  overflow: hidden;
}
.elix .spec__prompt {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: calc(100% - 48px);
  gap: 48px;
  padding-top: 142px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
  .elix .spec__prompt {
    width: 34.792vw;
    gap: 2.396vw;
    padding: 6.458vw 0;
  }
}
.elix .spec__prompt-input {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 52px;
  opacity: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: none;
}
@media screen and (min-width: 1024px) {
  .elix .spec__prompt-input {
    height: 3.125vw;
  }
}
.elix .spec__prompt-input span {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100svh;
  padding: 0 9px;
  opacity: 1;
}
@media screen and (min-width: 1024px) {
  .elix .spec__prompt-input span {
    padding: 0 0.469vw;
  }
}
.elix .spec__prompt-input span .icon-plus {
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 10px 0 10px;
  background: url(/ko/images/main/icon-plus.svg) center no-repeat;
  opacity: 0;
}
@media screen and (min-width: 1024px) {
  .elix .spec__prompt-input span .icon-plus {
    width: 1.042vw;
    height: 1.042vw;
    margin: 0 1.563vw 0 0.521vw;
  }
}
.elix .spec__prompt-input span .icon-voice {
  display: none;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
  width: 16px;
  height: 16px;
  background: url(/ko/images/main/icon-voice.svg) center no-repeat;
  opacity: 0;
}
@media screen and (min-width: 1024px) {
  .elix .spec__prompt-input span .icon-voice {
    display: block;
    right: 1.563vw;
    top: 50%;
    -webkit-transform: translateY(-50%) !important;
            transform: translateY(-50%) !important;
    width: 1.094vw;
    height: 1.042vw;
  }
}
.elix .spec__prompt-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.elix .spec__prompt-svg--pc {
  display: block;
}
.elix .spec__prompt-svg--mo {
  display: none;
}
@media screen and (max-width: 768px) {
  .elix .spec__prompt-svg--pc {
    display: none;
  }
  .elix .spec__prompt-svg--mo {
    display: block;
  }
}
.elix .spec__prompt-path {
  clip-path: inset(0 100% 0 0);
}
.elix .spec__prompt-txt {
  font-size: 16px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: -0.48px;
  color: #000080;
  white-space: nowrap;
  opacity: 0;
}
@media screen and (min-width: 1024px) {
  .elix .spec__prompt-txt {
    font-size: 1.042vw;
    letter-spacing: -0.6px;
  }
}
.elix .spec__prompt-result {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.elix .spec__prompt-result::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  margin-top: 46px;
  margin-bottom: 100px;
  background: url("/ko/images/main/icon-twinkle.svg") center no-repeat;
  background-size: contain;
  overflow: visible;
  opacity: 0;
}
@media screen and (min-width: 1024px) {
  .elix .spec__prompt-result::after {
    width: 1.042vw;
    height: 1.042vw;
    margin-top: 1.198vw;
  }
}
.elix .spec__prompt-result.twinkle-on::after {
  opacity: 1;
  -webkit-animation: twinkleMove 2.5s ease-in-out infinite, twinkleFadeIn 0.5s ease-in-out 0s forwards;
          animation: twinkleMove 2.5s ease-in-out infinite, twinkleFadeIn 0.5s ease-in-out 0s forwards;
}
.elix .spec__prompt-result [class^=spec__prompt-result-line] {
  width: 100%;
  font-size: 16px;
  font-weight: 300;
  line-height: 170%;
  letter-spacing: -0.24px;
  color: #000080;
  word-break: keep-all;
  white-space: normal;
}
@media screen and (min-width: 1024px) {
  .elix .spec__prompt-result [class^=spec__prompt-result-line] {
    font-size: 1.042vw;
    line-height: 170%;
    letter-spacing: -0.6px;
    word-break: keep-all;
  }
}
.elix .spec__prompt-result [class^=spec__prompt-result-line] + .spec__prompt-result-line--img {
  width: 121px;
  height: 64px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform, opacity;
}
.elix .spec__prompt-result [class^=spec__prompt-result-line] + .spec__prompt-result-line--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  image-rendering: optimizeSpeed;
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  min-width: 121px;
  min-height: 64px;
}
@media screen and (min-width: 1024px) {
  .elix .spec__prompt-result [class^=spec__prompt-result-line] + .spec__prompt-result-line--img {
    width: 137px;
    height: 72px;
  }
  .elix .spec__prompt-result [class^=spec__prompt-result-line] + .spec__prompt-result-line--img img {
    min-width: 117px;
    min-height: 72px;
  }
}
.elix .spec__prompt-result [class^=spec__prompt-result-line] strong {
  font-weight: 700;
}
.elix .spec__prompt-result [class^=spec__prompt-result-line]:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (min-width: 1024px) {
  .elix .spec__prompt-result [class^=spec__prompt-result-line]:not(:last-child) {
    margin-bottom: 1.563vw;
  }
}
.elix .spec__feature {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100svh;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.elix .spec__feature-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 12px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
  .elix .spec__feature-inner {
    padding: 24px 0;
  }
}
.elix .spec__feature-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 164px;
  height: 150px;
  -webkit-transition: opacity 0.7s ease, visibility 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.7s ease, visibility 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.7s ease, visibility 0.8s ease, transform 0.8s ease;
  transition: opacity 0.7s ease, visibility 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
@media screen and (min-width: 1024px) {
  .elix .spec__feature-center {
    width: 17.969vw;
    height: 16.406vw;
  }
}
.elix .spec__feature-center img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.elix .spec__feature-center.hidden {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, -50%) scale(0.9);
          transform: translate(-50%, -50%) scale(0.9);
}
.elix .spec__feature-btn {
  all: unset;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%) translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.833vw;
  color: #000080;
  font-size: 1.458vw;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.56px;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: all 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px;
}
.elix .spec__feature-btn::before, .elix .spec__feature-btn::after {
  width: 1.875vw;
  height: 1.875vw;
  background: url(/ko/images/main/icon-arrow.svg) center/cover no-repeat;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.elix .spec__feature-btn:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.elix .spec__feature-btn.is-active {
  font-size: 2.083vw;
  font-weight: 700;
  letter-spacing: -0.6px;
}
.elix .spec__feature-btn.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.2s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.2s ease, visibility 0.4s ease, transform 0.4s ease;
  transition: opacity 0.2s ease, visibility 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}
.elix .spec__feature-btn--left {
  left: calc(1.458vw - 10px);
}
.elix .spec__feature-btn--left::before {
  content: "";
  display: inline-block;
}
.elix .spec__feature-btn--left.is-active {
  left: calc(100% - 2.083vw + 10px);
  -webkit-transform: translateY(-50%) translateX(-100%);
          transform: translateY(-50%) translateX(-100%);
}
.elix .spec__feature-btn--left.is-active::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.safari .elix .spec__feature-btn--left.is-active {
  -webkit-transition: left 0s, font-size 1.8s cubic-bezier(0.4, 0, 0.2, 1), font-weight 1.8s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 1.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0s !important;
  transition: left 0s, font-size 1.8s cubic-bezier(0.4, 0, 0.2, 1), font-weight 1.8s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 1.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0s !important;
  transition: left 0s, transform 0s, font-size 1.8s cubic-bezier(0.4, 0, 0.2, 1), font-weight 1.8s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 1.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition: left 0s, transform 0s, font-size 1.8s cubic-bezier(0.4, 0, 0.2, 1), font-weight 1.8s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 1.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0s !important;
  -webkit-transition: left 0s, transform 0s, font-size 1.8s cubic-bezier(0.4, 0, 0.2, 1), font-weight 1.8s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 1.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.elix .spec__feature-btn--left.hidden {
  -webkit-transform: translateY(-50%) translateX(-50px);
          transform: translateY(-50%) translateX(-50px);
}
.elix .spec__feature-btn--right {
  right: calc(1.458vw - 10px);
}
.elix .spec__feature-btn--right::after {
  content: "";
  display: inline-block;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.elix .spec__feature-btn--right.is-active {
  right: calc(100% - 1.667vw + 10px);
  -webkit-transform: translateY(-50%) translateX(100%);
          transform: translateY(-50%) translateX(100%);
}
.elix .spec__feature-btn--right.is-active::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.safari .elix .spec__feature-btn--right.is-active {
  -webkit-transition: right 0s, font-size 1.8s cubic-bezier(0.4, 0, 0.2, 1), font-weight 1.8s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 1.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0s !important;
  transition: right 0s, font-size 1.8s cubic-bezier(0.4, 0, 0.2, 1), font-weight 1.8s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 1.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0s !important;
  transition: right 0s, transform 0s, font-size 1.8s cubic-bezier(0.4, 0, 0.2, 1), font-weight 1.8s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 1.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition: right 0s, transform 0s, font-size 1.8s cubic-bezier(0.4, 0, 0.2, 1), font-weight 1.8s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 1.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0s !important;
  -webkit-transition: right 0s, transform 0s, font-size 1.8s cubic-bezier(0.4, 0, 0.2, 1), font-weight 1.8s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 1.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.elix .spec__feature-btn--right.hidden {
  -webkit-transform: translateY(-50%) translateX(50px);
          transform: translateY(-50%) translateX(50px);
}
@media screen and (max-width: 1023px) {
  .elix .spec__feature-btn {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .elix .spec__feature-side {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
  }
}
.elix .spec__feature-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  width: 100%;
  height: 100%;
  padding: 0 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
}
@media screen and (min-width: 1024px) {
  .elix .spec__feature-panel {
    position: absolute;
    top: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 50.521vw;
    height: 100%;
    padding: 2.5vw 1.25vw;
    -webkit-transition: -webkit-transform 1.7s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 1.7s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 1.7s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 1.7s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 1.7s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
  }
  .elix .spec__feature-panel--left {
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .elix .spec__feature-panel--left.is-active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .elix .spec__feature-panel--right {
    right: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .elix .spec__feature-panel--right.is-active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .elix .spec__feature-panel--right.hidden {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.elix .spec__feature-desc {
  width: 100%;
  color: #000080;
  font-size: 16px;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: -0.24px;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .elix .spec__feature-desc {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .elix .spec__feature-desc {
    width: 30.729vw;
    font-size: 0.938vw;
    letter-spacing: -0.27px;
  }
}
.elix .spec__feature-desc strong {
  font-weight: 700;
}
.elix .spec__feature-tit {
  display: block;
  color: #000080;
  line-height: 100%;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.6px;
  margin-bottom: 40px;
}
.elix .spec__feature-diagram {
  width: 100%;
}
.elix .spec__feature-diagram img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.elix .spec__feature-diagram--ao {
  max-height: 456px;
}
.elix .spec__feature-diagram--bi {
  max-height: 828px;
}
@media screen and (max-width: 768px) {
  .elix .spec__feature-diagram--ao, .elix .spec__feature-diagram--bi {
    max-height: unset;
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .elix .spec__feature-diagram--ao, .elix .spec__feature-diagram--bi {
    max-height: unset;
    width: 65%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .elix .spec__feature-diagram {
    width: 45.365vw;
    max-width: 45.365vw;
    height: calc(100vh - 200px);
    max-height: 31.875vw;
    min-height: 300px;
  }
}
.elix .spec__feature-side--mo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 45px;
  padding: 90px 0 75px;
  margin-top: -60vh;
}
@media screen and (min-width: 1024px) {
  .elix .spec__feature-side--mo {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .elix .works__inner {
    padding: 0 12px;
  }
}
.elix .works__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  width: 146px;
  height: 27px;
  padding: 88px 0 87px;
}
@media screen and (min-width: 1024px) {
  .elix .works__tit {
    gap: 2.083vw;
    width: 16.458vw;
    height: 3.021vw;
    padding: 8.542vw 0 8.75vw 10.677vw;
  }
}
.elix .works__tit img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.elix .works__tit::after {
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 27px;
  height: 24px;
  background: url(/ko/images/main/icon-arrow.svg) center no-repeat;
  background-size: contain;
  display: none;
}
@media screen and (min-width: 1024px) {
  .elix .works__tit::after {
    width: 4.375vw;
    height: 3.906vw;
    display: none;
  }
}
.elix .works__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .elix .works__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 8.854vw;
  }
  .elix .works__item .works__thumb--mo {
    display: none;
  }
}
.elix .works__item:not(:last-child) {
  padding-bottom: 100px;
}
@media screen and (min-width: 1024px) {
  .elix .works__item:not(:last-child) {
    padding-bottom: 9.323vw;
  }
}
.elix .works__item-tit {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.54px;
  color: #000080;
  white-space: pre-line;
  margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .elix .works__item-tit {
    font-size: 2.708vw;
    letter-spacing: -1.28px;
    margin-bottom: 1.25vw;
  }
}
.elix .works__item-summary {
  font-size: 14px;
  letter-spacing: 0.28px;
  color: #000080;
}
@media screen and (min-width: 1024px) {
  .elix .works__item-summary {
    font-size: 1.042vw;
    letter-spacing: 0.4px;
  }
}
@media screen and (min-width: 1024px) {
  .elix .works__item--1, .elix .works__item--2 {
    padding-left: 10.677vw;
  }
  .elix .works__item--1 .works__body, .elix .works__item--2 .works__body {
    width: 30.99vw;
  }
  .elix .works__item--1 .works__thumb, .elix .works__item--2 .works__thumb {
    width: 38.958vw;
  }
}
@media screen and (min-width: 1024px) {
  .elix .works__item--1 {
    background: url(/ko/images/main/works-bg-01.png) 0 0.521vw/47.604vw auto no-repeat;
  }
  .elix .works__item--1 .works__body {
    gap: 40.277vh;
  }
}
.elix .works__item--2 .works__thumb-source {
  display: none;
}
@media screen and (min-width: 1024px) {
  .elix .works__item--2 {
    background: url(/ko/images/main/works-bg-02.png) 0 calc(100% - 2.083vw)/48.385vw auto no-repeat;
  }
  .elix .works__item--2 .works__item-tit {
    white-space: nowrap;
  }
  .elix .works__item--2 .works__body {
    gap: 6.759vh;
  }
}
.elix .works__item--3 {
  padding-bottom: 180px;
}
.elix .works__item--3 .works__thumb-source {
  display: none;
}
@media screen and (min-width: 1024px) {
  .elix .works__item--3 {
    gap: 3.333vw;
    padding-bottom: 16.146vw;
    background: url(/ko/images/main/works-bg-03.png) right bottom/37.448vw auto no-repeat;
    padding-left: 4.896vw;
  }
  .elix .works__item--3 .works__body {
    gap: 9.444vh;
    width: 38.958vw;
  }
  .elix .works__item--3 .works__thumb {
    width: 42.188vw;
    height: auto;
  }
  .elix .works__item--3 .works__thumb-source {
    margin-left: 2.083vw;
  }
}
.elix .works__body, .elix .works__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.elix .works__body {
  width: 100%;
  gap: 60px;
}
.elix .works__head {
  border-top: 1px solid #000080;
  border-bottom: 1px solid #000080;
}
.elix .works__head-inner {
  gap: 12px;
  padding: 12px 0;
}
@media screen and (min-width: 1024px) {
  .elix .works__head {
    gap: 1.25vw;
    padding: 1.25vw 0;
  }
}
.elix .works__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  color: #000080;
}
@media screen and (min-width: 1024px) {
  .elix .works__desc {
    gap: 2.188vw;
  }
}
.elix .works__desc-tit {
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.3px;
}
@media screen and (min-width: 1024px) {
  .elix .works__desc-tit {
    font-size: 1.667vw;
    letter-spacing: -0.48px;
  }
}
.elix .works__desc-txt {
  font-size: 16px;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: -0.24px;
  white-space: normal;
  word-break: keep-all;
}
@media screen and (min-width: 1024px) {
  .elix .works__desc-txt {
    font-size: 1.042vw;
    line-height: 180%;
    letter-spacing: -0.3px;
  }
}
.elix .works__link {
  display: inline-block;
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 1024px) {
  .elix .works__link {
    width: 2.083vw;
    height: 2.083vw;
  }
}
.elix .works__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.elix .works__thumb {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .elix .works__thumb {
    display: none;
  }
  .elix .works__thumb--mo {
    display: block;
    margin: 32px 0;
  }
}
@media screen and (min-width: 1024px) {
  .elix .works__thumb + .works__desc-txt {
    margin-top: 2.188vw;
  }
}
.elix .works__thumb-item {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.elix .works__thumb-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.elix .works__thumb-item--1 {
  height: 274px;
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .elix .works__thumb-item--1 {
    width: 100%;
    max-width: 1024px;
    aspect-ratio: 4/3;
    height: auto;
    margin-bottom: 2px;
  }
}
@media screen and (min-width: 1024px) {
  .elix .works__thumb-item--1 {
    width: 38.958vw;
    height: 32.292vw;
    margin-bottom: 1.563vw;
  }
}
.elix .works__thumb-item--2 {
  height: 301px;
  margin-bottom: 2px;
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .elix .works__thumb-item--2 {
    width: 100%;
    max-width: 1024px;
    aspect-ratio: 3/2;
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .elix .works__thumb-item--2 {
    width: 26.25vw;
    height: 23.906vw;
  }
}
.elix .works__thumb-item--3 {
  height: 331px;
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .elix .works__thumb-item--3 {
    width: 100%;
    max-width: 1024px;
    aspect-ratio: 16/9;
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .elix .works__thumb-item--3 {
    width: 38.958vw;
    height: 29.948vw;
  }
}
.elix .works__thumb-item--4 {
  height: 290px;
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .elix .works__thumb-item--4 {
    width: 100%;
    max-width: 1024px;
    aspect-ratio: 4/3;
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .elix .works__thumb-item--4 {
    width: 42.188vw;
    height: 36.458vw;
  }
}
.elix .works__thumb-source {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 12px;
  font-weight: 100;
  line-height: 160%;
  letter-spacing: 0.36px;
  color: #FFF;
}
@media screen and (min-width: 1024px) {
  .elix .works__thumb-source {
    display: block;
    font-size: 14px;
    font-weight: 300;
    line-height: 160%;
    letter-spacing: 0.42px;
    bottom: 24px;
    left: 24px;
  }
}
.elix .works__meta {
  margin: 32px 0;
  border: 1px so;
}
@media screen and (min-width: 1024px) {
  .elix .works__meta {
    margin: 3.646vw 0 2.188vw;
  }
}
.elix .works__meta li {
  font-size: 14px;
  font-weight: 300;
  line-height: 170%;
  letter-spacing: 0.28px;
  color: #000080;
}
@media screen and (min-width: 1024px) {
  .elix .works__meta li {
    font-size: 0.833vw;
    line-height: 180%;
    letter-spacing: 0.32px;
  }
}
.elix .footer {
  background: url(/ko/images/main/footer-mo.png) center/cover no-repeat;
  width: 100%;
  margin: 22px 0 0 0;
}
@media screen and (min-width: 1024px) {
  .elix .footer {
    background: url(/ko/images/main/footer.png) center/cover no-repeat;
  }
}

/* 애니메이션 키프레임 */
@-webkit-keyframes twinkleMove {
  0%, 100% {
    -webkit-transform: translateY(0px) scale(1);
            transform: translateY(0px) scale(1);
  }
  50% {
    -webkit-transform: translateY(-2px) scale(1.05);
            transform: translateY(-2px) scale(1.05);
  }
}
@keyframes twinkleMove {
  0%, 100% {
    -webkit-transform: translateY(0px) scale(1);
            transform: translateY(0px) scale(1);
  }
  50% {
    -webkit-transform: translateY(-2px) scale(1.05);
            transform: translateY(-2px) scale(1.05);
  }
}
@-webkit-keyframes twinkleFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes twinkleFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@-webkit-keyframes safariFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes safariFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 1023px) {
  .works__thumb-item img {
    content: url("/ko/images/main/works-img-01-mo.png");
    width: 100%;
    height: 100%;
    -o-object-fit: fill;
       object-fit: fill;
    display: block;
  }
  .works__thumb-item--1 img {
    content: url("/ko/images/main/works-img-01-mo.png");
  }
  .works__thumb-item--2 img {
    content: url("/ko/images/main/works-img-02-mo.png");
  }
  .works__thumb-item--3 img {
    content: url("/ko/images/main/works-img-03-mo.png");
  }
  .works__thumb-item--4 img {
    content: url("/ko/images/main/works-img-04-mo.png");
  }
}
.mouse {
  position: fixed;
  bottom: 243px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .mouse {
    bottom: 125px;
  }
}

.mouse-icon {
  width: 31px;
  height: 57px;
  border: 3px solid #000080;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mouse-wheel {
  height: 18px;
  margin: 14px auto 0;
  display: block;
  width: 9px;
  border: 3px solid #000080;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-animation: 1.6s ease infinite wheel-up-down;
          animation: 1.6s ease infinite wheel-up-down;
}

@-webkit-keyframes wheel-up-down {
  0% {
    margin-top: 2px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    margin-top: 20px;
    opacity: 0;
  }
}

@keyframes wheel-up-down {
  0% {
    margin-top: 2px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    margin-top: 20px;
    opacity: 0;
  }
}/*# sourceMappingURL=main-elix.css.map */