@charset "UTF-8";

/*───────────────────────────────────────────────────────────
	Navigation
───────────────────────────────────────────────────────────*/





/*─────────── Header ───────────*/
.header { position: fixed; z-index: 2002; top: 0; left: 0; width: 100%; height: 100px; transition-property: height, background-color, box-shadow; transition-duration: 0.3s;}

.header.sub { background: transparent;}

.header.on { background: #fff; box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);}
.header.floating { background: #fff; box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);}
.header.open { background: #fff;}
.header.basic { background: #fff;}

.header__wrap { position: relative; z-index: 2003; height: 100px; transition: background-color 0.2s;}
/* .header__wrap.sub { box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);} */
.header.floating .header__wrap { background: #fff; }
.header.on .header__wrap { background: #fff; }
.header__wrap::after { content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: rgba(255, 255, 255, 0.2);}
.header.floating .header__wrap::after, .header.on .header__wrap::after { background: var(--light-gray-five);}

.header__branding { flex-shrink: 0; width: 192px;}



.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 0 50px; width: 100%; max-width: 1840px; height: 100%; padding: 0 20px; margin: 0 auto; }
.header__inner .nav { max-width: 800px; }
.header__inner .nav__list { display: flex; justify-content: space-between; }
.header__inner .nav__item { height: 100%; }
.header__inner .nav__item.on .nav__link { color: var(--primary-color) !important; }
.header__inner .nav__item.on .nav__link::after { visibility: visible; background: var(--primary-color) !important; opacity: 1;}
.header__inner .nav__item.on > .nav__sub.depth2 { visibility: visible; opacity: 1;}
.header.floating .header__inner .nav__item.active .nav__link, .header.on .header__inner .nav__item.active .nav__link { color: var(--primary-color);}
.header__inner .nav__link { position: relative; color: #fff; font-size: 20px; font-weight: 600; text-align: center; transition-property: color, background-color; transition-duration: 0.3s;}
.header.floating .header__inner .nav__link, .header.open .header__inner .nav__link, .header.basic .header__inner .nav__link, .header.on .header__inner .nav__link { color: #222;}
.header__inner .nav__link::after { content: ""; position: absolute; top: 20px; left: 50%; width: 6px; height: 6px; border-radius: 50%; background: #fff; opacity: 0; transition-property: opacity, background-color; transition-duration: 0.3s;}
.header__inner .nav__sr-button { top: 50%; color: rgba(255, 255, 255, 0.7); opacity: 0; pointer-events: none; translate: 150% -50%; transition-property: visibility, opacity; transition-duration: 0.3s;}
.header__inner .nav__sr-button:focus { opacity: 1;}
.header.floating .header__inner .nav__sr-button:focus, .sub .header__inner .nav__sr-button:focus { color: rgba(0, 0, 0, 0.7);}

.home .on:not(.floating) .header__inner .nav__sr-button:focus { color: rgba(255, 255, 255, 0.7);}
.header__inner .nav__sub.depth2 { overflow: hidden; position: absolute; top: 100%; left: 50%; width: 100%; height: 0; transform: translateX(-50%); transition-property: height, visibility, opacity, background-color, transform; transition-duration: 0.3s;}
.header__inner .nav__sub.depth2 > .nav__sub-list { padding: 25px 15px 50px;}
.header__inner .nav__sub.depth2 > .nav__sub-list > .nav__sub-item { text-align: center;}
.header__inner .nav__sub.depth2 > .nav__sub-list > .nav__sub-item + .nav__sub-item { margin-top: 20px;}
.header__inner .nav__sub.depth2 > .nav__sub-list > .nav__sub-item > .nav__sub-link { display: inline-block; position: relative; color: #666; font-size: 18px; text-align: center;}
.header__inner .nav__sub.depth2 > .nav__sub-list > .nav__sub-item.active > .nav__sub-link { color: var(--primary-color);}
.header__inner .nav__sub.depth2 > .nav__sub-list > .nav__sub-item.active > .nav__sub-link::after { width: 100%;}

.header__quick { display: flex; flex-shrink: 0; align-items: center; justify-content: flex-end; gap: 0 20px; width: 192px; height: 100%;}
.header__btn { color: var(--primary-color); font-size: 18px; font-weight: 600; }

/* .header.floating .header__btn,.header.open .header__btn,.header.on .header__btn { background: #222;} */
.header__toggle-menu { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 7px 0; position: relative; height: 44px; border: 0; background: transparent;}

@keyframes toggleMenuBeforeAnimation {
	0% {
		transform: translateX(calc(-100% - 10px));
	}
	100% {
		transform: translateX(0);
	}
}
@keyframes toggleMenuAfterAnimation {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(100% + 10px));
	}
}




.header__lines { overflow: hidden; position: relative; width: 30px; height: 2px; transition-property: background-color, transform; transition-duration: 0.3s;}
.header__lines::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 2px; background: #fff; transition: background-color 0.3s;} 
.header__lines::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 2px; background: #fff; transition: background-color 0.3s;}
.header.floating .header__lines::before { background: #222;}
.header.open .header__lines::before { background: #222;}
.header.basic .header__lines::before { background: #222;}
.header.floating .header__lines::after { background: #222;} 
.header.open .header__lines::after { background: #222;} 
.header.basic .header__lines::after { background: #222;}
.header__lines::before { transform: translateX(calc(-100% - 10px));}
.close .header__lines:not(.second) { position: absolute; top: 50%; left: 0;}
.close .header__lines.first { transform: rotate(45deg);}
.close .header__lines.second::before { background: transparent;}
.close .header__lines.second::after { background: transparent;}
.close .header__lines.third { transform: rotate(-45deg);}


@media (min-width: 1025px) {
	.home .header.floating { box-shadow: none;}
	.header__inner .nav__link:focus { color: var(--primary-color) !important;}
	.header__inner .nav__link:hover { color: var(--primary-color) !important;}
	.header__inner .nav__link:focus::after { opacity: 1; }
	.header__inner .nav__link:hover::after { opacity: 1; }
	.header__inner .nav__sub.depth2 > .nav__sub-list > .nav__sub-item > .nav__sub-link:focus { color: var(--primary-color);}
	.header__inner .nav__sub.depth2 > .nav__sub-list > .nav__sub-item > .nav__sub-link:hover { color: var(--primary-color);}
	/* .header__btn:focus,.header__btn:hover { background: var(--primary-color) !important; color: #fff !important;} */
	.header__toggle-menu:not(.close):focus .header__lines::before { animation: toggleMenuBeforeAnimation 1s linear infinite;}
	.header__toggle-menu:not(.close):hover .header__lines::before { animation: toggleMenuBeforeAnimation 1s linear infinite;}
	.header__toggle-menu:not(.close):focus .header__lines::after { animation: toggleMenuAfterAnimation 1s linear infinite; }
	.header__toggle-menu:not(.close):hover .header__lines::after { animation: toggleMenuAfterAnimation 1s linear infinite; }
	.header__toggle-menu:not(.close):focus .header__lines.second::before { animation-direction: reverse; }
	.header__toggle-menu:not(.close):focus .header__lines.second::after { animation-direction: reverse; }
	.header__toggle-menu:not(.close):hover .header__lines.second::before { animation-direction: reverse; }
	.header__toggle-menu:not(.close):hover .header__lines.second::after { animation-direction: reverse; }
}

@media (max-width: 1024px) {
	.header { height: auto !important;}
	.header__wrap { height: 80px; }
	.header__branding { flex-shrink: 1; width: auto;}
	.header__inner { gap: 0 40px; }
	.header__inner.m { background: #333;}
	.header__inner .nav { display: none;}
	.header__inner .hide_m { display: none;}
	.header__quick { flex-shrink: 1; width: auto;}
	.header__toggle-menu { display: flex; }
}

@media (max-width: 800px) {
	.header__inner .nav__link { font-size: 18.1818181818px;}
	.header__inner .nav__sub.depth2 > .nav__sub-list > .nav__sub-item > .nav__sub-link { font-size: 16px;}
	.header__inner .nav__sub.depth3 > .nav__sub-list > .nav__sub-item > .nav__sub-link { font-size: 15px;}
	.header__btn { width: 100px; height: 35px; font-size: 18px;}
	.header__lines { width: 26px; }
	.header__wrap{ height: 70px;}
}

@media (max-width: 445px) {
	.header__inner.m { background: #333;}
	.header.floating .header__lines::after { background: #fff;} 
	.header.open .header__lines::after { background: #fff;} 
	.header.basic .header__lines::after { background: #fff;}
	/* .close .header__lines.second::before { background: transparent;} */
	.close .header__lines.second::after { background: none;}
	.header__inner .nav__link { font-size: 16px; }
	.header__inner .nav__sub.depth2 > .nav__sub-list > .nav__sub-item > .nav__sub-link { font-size: 15px; }
	.header__btn { width: 90px; height: 30px; }
	.header__wrap{ height: 60px;}
}


















/*─────────── Navigation ───────────*/

.nav { width: 100%; height: 100%;}
.nav__list { height: 100%;}
.nav__item { flex: 1 0 0; position: relative;}
.nav__item.on > .nav__sr-button { rotate: 180deg;}
.nav__link { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; transition: color 0.3s;}
.nav__text { position: relative;}
.nav__sr-button { position: absolute; right: 0; border: 0; background: transparent; transition: rotate 0.3s; }
.nav__sub.depth2 > .nav__sub-list > .nav__sub-item > .nav__sub-link { transition: color 0.3s; }
.nav__sub.depth3 > .nav__sub-list > .nav__sub-item > .nav__sub-link { transition: color 0.3s; }








/*─────────── Toggle Menu ───────────*/

.toggle-menu { overflow: visible; visibility: hidden; position: fixed; z-index: 2002; top: 100px; right: 0; width: 100%; height: calc(100% - 100px); background: rgba(0, 0, 0, 0.7); opacity: 0; transform: translateX(100%); transition-property: top, height, visibility, opacity, transform; transition-duration: 0.3s; }
.toggle-menu.show { visibility: visible; opacity: 1; transform: translateX(0);}
.header:has(.header__top-bar) .toggle-menu,
.header.open:has(.header__top-bar) .toggle-menu { top: 140px; height: calc(100% - 140px);}
.header.floating .toggle-menu { top: 100px; height: calc(100% - 100px);}

.toggle-menu__wrap { display: flex; flex-direction: column; width: 100%; height: 100%; background: #fff;}
.toggle-menu__header { display: flex; flex-shrink: 0; align-items: center; height: 80px; padding: 0 20px;}
.toggle-menu__header .language.type-select { width: 100%;}
.toggle-menu__header .language.type-select.on { background: #aaa;}
.toggle-menu__header .language.type-select.on .language__current { background: #aaa;}
.toggle-menu__header .language.type-select .language__current { background: #aaa;}
.toggle-menu__header .language.type-select .language__list { background: #aaa;}
.toggle-menu__header .language.type-select .language__list::before { max-width: none;}

.toggle-menu__nav-wrap { position: relative; width: 100%; max-width: 1840px; height: calc(100% - 60px); padding: 0 20px 100px; margin: 0 auto;}
.toggle-menu .nav { overflow-x: hidden; overflow-y: auto; display: flex; align-items: center; position: relative; height: 100%;}
.toggle-menu .nav__list { display: flex; width: 100%; height: auto; max-height: 100%;}
.toggle-menu .nav__item.active .nav__link { color: var(--primary-color);}
.toggle-menu .nav__item > .nav__sr-button { width: 90px; height: 70px;}
.toggle-menu .nav__link { font-family: "Poppins"; font-size: 24px; font-weight: 700;}
.toggle-menu .nav__sr-button { display: none; align-items: center; justify-content: center; top: 0; font-size: 28px; pointer-events: all; transition: rotate 0.3s;}

.toggle-menu .nav__sub.depth2 > .nav__sub-list { margin-top: 20px; }
.toggle-menu .nav__sub.depth2 > .nav__sub-list > .nav__sub-item { text-align: center;}
.toggle-menu .nav__sub.depth2 > .nav__sub-list > .nav__sub-item.on > .nav__sr-button { rotate: 180deg;}
.toggle-menu .nav__sub.depth2 > .nav__sub-list > .nav__sub-item.active > .nav__sub-link { color: var(--primary-color);}
.toggle-menu .nav__sub.depth2 > .nav__sub-list > .nav__sub-item + .nav__sub-item { margin-top: 10px;}
.toggle-menu .nav__sub.depth2 > .nav__sub-list > .nav__sub-item > .nav__sub-link { color: #555; font-size: 18px;}
.toggle-menu .nav__sub.depth2 > .nav__sub-list > .nav__sub-item > .nav__sr-button { width: auto; height: 18px;}
.toggle-menu .nav__sub-item { position: relative;}

.toggle-menu__footer { display: flex; align-items: center; justify-content: center; height: 60px; border-top: 1px solid var(--light-gray-five);}
.toggle-menu__close { position: absolute; z-index: 10; top: -50px; right: 20px; border: 0; background: transparent; font-size: 30px; pointer-events: none; opacity: 0; transform: translateY(-50%); transition-property: visibility, opacity; transition-duration: 0.3s;}
.toggle-menu__close:focus { opacity: 1;}

.toggle_menu_quick { position: absolute; bottom: -40px; left: 0; right: 0; padding: 0 20px;}
.toggle_menu_quick .header__btn { width: 100%; height: 50px;}


@media (min-width: 1025px) {
	.toggle-menu .nav::-webkit-scrollbar { width: 6px; scroll-behavior: smooth;}
	.toggle-menu .nav::-webkit-scrollbar-thumb { border-radius: 3px; background: var(--primary-color); }
	.toggle-menu .nav::-webkit-scrollbar-track { background: #e5e5e5; }
	.toggle-menu .nav__link { width: auto; height: auto; text-align: center;}
	.toggle-menu .nav__link:focus,
	.toggle-menu .nav__link:hover { color: var(--primary-color);}
	.toggle-menu .nav__sub { display: block !important;}
	.toggle-menu .nav__sub.depth2 > .nav__sub-list > .nav__sub-item > .nav__sub-link:focus,
	.toggle-menu .nav__sub.depth2 > .nav__sub-list > .nav__sub-item > .nav__sub-link:hover { color: var(--primary-color);}
}

@media (max-width: 1024px) {
	.toggle-menu { top: 80px; height: calc(100% - 80px); }
	.header:has(.header__top-bar) .toggle-menu,
	.header.open:has(.header__top-bar) .toggle-menu { top: 120px; height: calc(100% - 120px);}
	.header.floating .toggle-menu { top: 80px; height: calc(100% - 80px); }
	.toggle-menu__wrap { max-width: 640px; margin-left: auto; box-shadow: 0 20px 20px rgba(0, 0, 0, 0.1); transform: translateX(100%); transition: transform 0.3s;}
	.show .toggle-menu__wrap { transform: translateX(0);}
	.toggle-menu__nav-wrap { max-width: none; padding: 0; margin: 0;}
	.toggle-menu__nav-wrap::after,
	.toggle-menu__nav-wrap::before { content: ""; visibility: hidden; position: absolute; z-index: 10; left: 0; width: 100%; height: 50px; opacity: 0; transition-property: visibility, opacity; transition-duration: 0.3s;}
	.toggle-menu__nav-wrap::before { top: 0; background: linear-gradient(#fff, transparent);}
	.toggle-menu__nav-wrap::after { bottom: 0; background: linear-gradient(transparent, #fff);}
	.toggle-menu__nav-wrap.start::before { visibility: visible; opacity: 1;}
	.toggle-menu__nav-wrap.has-scroll::after { visibility: visible; opacity: 1;}

	.toggle-menu .nav { display: block; padding-bottom: 0;}
	.toggle-menu .nav__list { flex-direction: column; height: 100%;}
	.toggle-menu .nav__item { flex: none; }
	.toggle-menu .nav__link { justify-content: flex-start; max-width: calc(100% - 45px); height: 60px; padding: 15px 40px; border-bottom: 1px solid #f5f5f5; text-align: left;}
	.toggle-menu .nav__sr-button { display: flex; }
	.toggle-menu .nav__sub.depth2 { display: none; background: #f5f5f5; }
	.toggle-menu .nav__sub.depth2 > .nav__sub-list { padding: 20px 40px; margin-top: 0;}
	.toggle-menu .nav__sub.depth2 > .nav__sub-list > .nav__sub-item { text-align: left;}

	.toggle-menu__close { top: -40px; }
}

@media (max-width: 800px) {
	.toggle-menu .nav__sr-button { font-size: 25.4545454545px; }
	.toggle-menu .nav__sub.depth2 > .nav__sub-list > .nav__sub-item > .nav__sub-link { font-size: 17px; }
	.toggle-menu{ top: 70px; height: calc(100% - 70px);}
	.header.floating .toggle-menu { top: 70px; height: calc(100% - 70px);}
	.toggle-menu .nav__link { font-size: 22px;}
}
@media (max-width: 445px) {
	.toggle-menu .nav__sub.depth2 > .nav__sub-list > .nav__sub-item + .nav__sub-item { margin-top: 5px;}
		.toggle-menu .nav__sub.depth2 > .nav__sub-list > .nav__sub-item > .nav__sub-link { font-size: 16px; }
	.toggle-menu .nav__sr-button { font-size: 21.5384615385px; }
	.toggle-menu{ top: 60px; height: calc(60% - 60px); }
	.toggle-menu .nav__link { font-size: 18px; }
	.header.floating .toggle-menu { top: 60px; height: calc(100% - 60px); }
}




/* 메뉴 텍스트 색상 변경 */
.header.on .header__inner .nav__link {
  color: #222 !important;
}

/* 메뉴 텍스트 호버 시 색상 변경 */
.header.on .header__inner .nav__link:hover {
  color: var(--primary-color) !important;
}


/* 로고 이미지 필터 적용 */
.header.on .header__branding img {
  filter: brightness(0) invert(1) !important;
}