@charset "utf-8";
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap'); */
/* NotoSans 쓸 경우 주석 풀고, body 적용 */

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}


* {
  word-break: keep-all !important;
  box-sizing: border-box;
}

body {
  font-family: "Pretendard", "Noto Emoji", "Segoe UI Emoji", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
}

/* 초기화 */


html,
body {
  overscroll-behavior-y: none;
}

@media (min-width:1024px) {

  html,
  body {
    overscroll-behavior-y: initial;
  }
}

html,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img {
  margin: 0;
  padding: 0;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-family: inherit !important;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

legend {
  position: absolute;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -9999em;
  overflow: hidden;
}

label,
input,
button,
select,
img {
  vertical-align: middle;
  font-size: 1em;
}

input,
button {
  margin: 0;
  padding: 0;
  font-family: inherit !important;
}

input[type="submit"] {
  cursor: pointer;
}

button {
  cursor: pointer;
}

textarea,
select {
  font-family: inherit !important;
}

select {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
  word-break: break-all;
}

pre {
  overflow-x: scroll;
  font-size: 1.1em;
}

a {
  color: inherit;
  text-decoration: none;
}

/*head.sub.php로 셋팅하는 값 = full-h, full-w*/
:root {
  --primary: #1DAC86;
  --seconday: #666;
  --ca-color: #333;
  --full-h: calc(var(--vh, 1vh) * 100);
  --full-w: calc(var(--vw, 1vw) * 100);
  --header-h: 60px;
  --lnb-h: 48px;
  --title-leading: 1.25;
}

.overlay {
  position: relative;
}

.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

#header.active {
  background-color: #fff;
  color: #000 !important;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

#header.active #logo,
#header.open #logo {
  background-image: url("../img/logo.png") !important;
}

#header.toggle {
  background-color: #1a1a1a;
}

#header.toggle .menu-icon span {
  background-color: var(--primary) !important;
}

#header.toggle #logo {
  background-image: url("../img/w_logo.png") !important;
}

#header.open {
  background-color: #fff !important;
  color: #000 !important;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  max-height: none !important;
  height: 21rem !important;
  overflow: visible !important;
}

#header.open:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  border-bottom: 1px solid #f0f0f0;
}

#header {
  overflow: visible;
}

#header.open .depth2-list {
  opacity: 1;
  visibility: visible;
  height: auto;
  padding: 1rem 0;


}


/* 아이콘 있는 경우 header.active * {color: #000 !important;} 해주시면 됩니다. */

/* 애니메이션 관련 */


/* 버튼 */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-primary:hover{
  background: #fff;
  color: var(--primary);
  outline: 1px solid var(--primary);
  box-shadow: 0 2px 8px rgba(96, 165, 250, 0.15);
}

.btn-primary.no-hover,
.btn-primary.no-hover:hover {
  background-color: var(--primary);
  color: #fff;
  outline: none;
  box-shadow: none;
}

.btn-primary:active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 4px rgba(96, 165, 250, 0.1);
}

.btn-secondary {
  background-color: var(--seconday);
  color: #fff;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #fff;
  color: var(--seconday);
  outline: 1px solid var(--seconday);
  box-shadow: 0 2px 8px rgba(156, 163, 175, 0.15);
}

.btn-secondary:active {
  background: var(--seconday);
  color: #fff;
  box-shadow: 0 1px 4px rgba(156, 163, 175, 0.1);
}

.btn-primary-outline {
  background-color: #fff;
  color: var(--primary);
  outline: 1px solid var(--primary);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(96, 165, 250, 0.15);
  outline: 1px solid #fff;
}

.btn-primary-outline:active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 1px 4px rgba(96, 165, 250, 0.1);
}

.btn-secondary-outline {
  background-color: transparent;
  color: var(--seconday);
  outline: 1px solid var(--seconday);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  background: var(--seconday);
  color: #fff;
  box-shadow: 0 2px 8px rgba(156, 163, 175, 0.15);
  outline: none;
}

.btn-secondary-outline:active {
  background: #fff;
  color: var(--seconday);
  box-shadow: 0 1px 4px rgba(156, 163, 175, 0.1);
}

.btn-animation {
  position: relative;
  overflow: hidden;
  color: var(--primary);
  outline: 1px solid var(--primary);
}

.btn-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--primary);
  z-index: -1;
  transition: all 0.3s ease;
}

.btn-animation:hover {
  color: #fff;
  outline: 0;
}

.btn-animation:hover::before {
  width: 100%;
}

.button:disabled,
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-primary-outline:disabled,
.btn-secondary-outline:disabled,
.btn-animation:disabled {
  background: #e5e7eb !important;
  /* Tailwind gray-200 */
  color: #b0b0b0 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  opacity: 0.6;
  pointer-events: none;
  filter: grayscale(0.2);
}

.sit_icon {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.editor-content img {
  display: initial;
}

#sev_himg * {
  font-family: "Pretendard", "Noto Emoji", "Segoe UI Emoji", sans-serif !important;
}

.sev_admin {
  display: none;
}

/* Lnb 관련  */
/* lnb  */
.lnb_wrap {
  position: relative;
}

.lnb {
  background: #fff;

}

.lnb .lnb_map {
  height: var(--lnb-h);
  display: flex;
  align-items: center;
  border-left: 1px solid #f1f1f1;
  border-right: 1px solid #f1f1f1;
  max-width: 1600px;
  margin: 0 auto;
}

.lnb .lnb_map .home {
  width: var(--lnb-h);
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lnb .lnb_map .home a {
  color: #333;
}


.lnb .lnb_map>li {

  height: 100%;
  border-right: 1px solid #ddd;

  position: relative;
}

.lnb .lnb_map li.dep a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

}

.lnb .lnb_map li.dep a span {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #333;
}


.lnb .lnb_map li.dep ul {
  display: none;
  position: absolute;
  left: 0;
  top: var(--lnb-h);
  width: 100%;
  z-index: 9999;
}

.lnb .lnb_map li.dep ul li {
  width: 100%;
  background: #f9f9f9;
  border-bottom: 1px solid #fff;
}



.lnb .lnb_map li.dep ul li a:hover {
  background: var(--primary);
  color: #fff;
  transition: 0.3s all;
}

.lnb .lnb_map li.dep ul li a.on {
  background: var(--primary);
  color: #fff;
}

.menu-icon span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  max-height: 5px;

  transition: all ease 200ms;

}

.menu-icon .first {
  top: 0%;
  transition: transform 100ms;
}

.menu-icon .second {
  top: 50%;
}

.menu-icon .third {
  top: 100%;
}

#header.active .menu-icon span {
  background-color: #000;
}

.menu-icon.active span {
  background-color: var(--primary);
}

.menu-icon.active .first {
  transform: translateY(13px) translateX(0) rotate(45deg);
  transition: all ease 200ms;
}

.menu-icon.active .second {
  opacity: 0;
  transition: all ease 200ms;
}

.menu-icon.active .third {
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  transition: all ease 200ms;
}

.main-nav {
  position: fixed;
  left: 0;
  top: var(--header-h);
  z-index: 0;
  height: calc(var(--full-h) - var(--header-h));
  width: 100%;
  padding: 1.5em 2em;
  opacity: 0;
  transform: scale(0.85);
  transition: 0.5s;
  visibility: hidden;
  background-image: url(../img/mobile_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.main-nav.active {
  visibility: visible;
  z-index: 100;
  transform: scale(1);
  opacity: 1;
  transition: 0.5s;
}




.main-nav>ul>li>a {

  color: #fff;
  font-weight: 300;
  display: block;
  transition: 0.5s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 500;
}

.main-nav>ul>li:last-child>a {
  border-bottom: none;
}


#depth-2 {
  overflow: visible;
  transition: all 1s ease-in-out;
  /* max-height: 0; */

}

#depth-2.active {
  height: 100%;
  max-height: calc(var(--header-h) * 10);
  visibility: visible !important;
}

.nav-item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 1.5px;
  background-color: var(--primary);
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-item:hover:after {
  width: 100%;
  opacity: 1;
}

body.lock {
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
}

/* 텍스트 그라데이션 */
.text-gradient {
  background: linear-gradient(180deg, #1DAC86 0%, #A9FFC6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-wrap {
  line-height: 1.5;
}

.text-wrap .inline-icon {
  height: 1em;
  width: auto;
  vertical-align: 0;
  display: inline-block;
}

.text-wrap .nowrap {
  white-space: nowrap;
}

.logo-swiper .swiper-wrapper,
.logo-swiper2 .swiper-wrapper {
  transition-timing-function: linear;
}

/* AOS 커스텀 애니메이션 */
[data-aos="fade-scale-up"] {
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-aos="fade-scale-up"].aos-animate {
  opacity: 1;
  transform: scale(1) translateY(0);
}

[data-aos="blur"] {
  filter: blur(10px);
  transition: filter 0.8s ease-out;
}

[data-aos="blur"].aos-animate {
  filter: blur(0);
}

.mobile-mockup-overlay {
  object-fit: contain;
  padding: 4% 6%;
}

[data-aos="blur"] {
  filter: blur(10px);
  transition: filter 0.8s ease-out;
}

[data-aos="blur"].aos-animate {
  filter: blur(0);
}

.speech-bubble {
  position: relative;
}

.speech-bubble-tail {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid;
}

.plan_text .char,
.plan_text .word {
  display: inline-block;
}

.plan_text .char {
  transform-style: preserve-3d;
}

/* 메인 섹션별 반응형 height 설정 */
/* 모바일 기본값 - auto height */
/* #main section {
  min-height: auto;
  height: auto;
  position: relative;
} */

/* 1024px 이상 - 화면에 맞춤 시작 */
@media (min-width: 1024px) {
  #main>section.section1 {
    min-height: 100vh;
    height: 100vh;
  }
}

/* 1280px (xl) */
@media (min-width: 1280px) {
  #main>section.section1 {
    min-height: 100vh;
    height: 100vh;
  }
}

/* 1440px - 750px height 기준 */
@media (min-width: 1440px) {
  #main>section {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #main>section.section1 {
    min-height: 100vh;
    height: 100vh;
  } */

  /* 콘텐츠가 많은 섹션은 height auto 유지 */
   #main>section.section3 {
    overflow: hidden;
  }

  #main>section.section5,
  #main>section.section6,
  #main>section.section8 {
    height: auto;
    min-height: 750px;
  }
}

/* 1600px 이상 */
@media (min-width: 1600px) {
  #main>section.section1 {
    min-height: 100vh;
    height: 100vh;
  }
}

/* 1920px 이상 */
@media (min-width: 1920px) {
  #main>section {
    min-height: 100vh;
    height: 100vh;
  }

  #main>section.section1 {
    min-height: 100vh;
    height: 100vh;
  }

  #main>section.section3 {
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
  }
}

/* 2560px 이상 (2K/QHD) */
@media (min-width: 2560px) {
  #main>section {
    min-height: 100vh;
    height: 100vh;
  }

  #main>section.section1 {
    min-height: 100vh;
    height: 100vh;
  }

  #main>section.section3 {
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
  }

  #main>section.section5,
  #main>section.section6,
  #main>section.section8 {
    height: auto;
    min-height: 1260px;
  }
}

/* section {
  min-height: 100vh !important;
} */

/* 김주연 커스텀 */
.main-section-1 {
  background-image: url('../img/main/main_section_bg.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

/* Section 3 - Step Tab Menu */
.step-label {
  background-color: #F5F5F5;
  color: #666666;
  transition: all 0.3s ease;
}

.step-label.active {
  background-color: #1dac86;
  color: #ffffff;
}

.custom-step-btn {
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-step-btn.active {
  opacity: 1;
}

.step-box {
  display: none;
}

.step-box:first-child {
  display: flex;
}