/*header*/
#header{
	position:fixed;
	z-index:200;
	width:100%;
}
#header .h_inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 3rem;
	background: rgba(0, 0, 0, 0);
	backdrop-filter: blur(0px);
	transition: all .3s;
}
#header.header_scroll .h_inner{
	background: rgba(0, 0, 0, .3);
	backdrop-filter: blur(30px);
}


/* 로고 */
#header h1,
#header .gnb_side{
	position:relative;
	z-index:30;
}
#header h1 > a{display:block;}


/* 언어 */
#header .lan{position: relative;}
#header .lan > a{
	display: flex;
	align-items: center;
}
#header .lan > a span{
	display: inline-block;
	margin: 0 6px 0 8px;
	line-height: 1.4;
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
}
#header .lan > a img:first-of-type{width: 2.4rem;}
#header .lan > a img:last-of-type{width: 2rem;}
#header .lan > div{
	position:absolute;
	width:100%;
	left:50%; top: 6.2rem;
	padding:2.4rem 3rem;
	background:#fff;
	transform: translateX(-50%);
	display:none;
}
#header .lan > div > a{
	display:block;
	padding: 6px 0;
	font-size:1.6rem;
	line-height: 1.4;
	font-weight: 700;
	color:#000;
	text-align:center;
	border-bottom: 2px solid rgba(23, 23, 23, 0);
	transition: all .3s;
}
#header .lan > div > a:hover{
	border-bottom: 2px solid rgba(23, 23, 23, 1);
}
#header .lan > div > a + a{margin-top: 1.5rem;}



/* 메뉴 */
.gnb{
	z-index:15;
	position:relative;
}
.gnb > .gnb_container{
	display:inline-block;
	vertical-align:top;
}
.gnb > .gnb_container > ul > li{
	position: relative;
	float:left;
}
.gnb > .gnb_container > ul > li > a{
	display:block;
	padding:3.6rem 3rem;
	font-size:2rem;
	font-weight: 700;
	color:#fff;
}
.gnb > .gnb_container > ul > li > ul{display:none;}
.gnb > .gnb_container > ul > li:nth-child(3) > ul,
.gnb > .gnb_container > ul > li:nth-child(4) > ul{display: none !important;}
.gnb > .gnb_container > ul > li > ul > li + li{margin-top: 2.4rem;}
.gnb > .gnb_container > ul > li > ul > li > a{
	display:inline-block;
	padding:6px 0;
	line-height: 1.4;
	font-size:1.6rem;
	font-weight:700;
	color:#fff;
	border-bottom: 2px solid rgba(23, 23, 23, 0);
	transition: all .3s;
}
.gnb > .gnb_container > ul > li > ul > li > a:hover{
	border-bottom: 2px solid rgba(23, 23, 23, 1);
}


/*모바일 메뉴*/
div.burger {
	height: 30px;
	width: 26px;
	position: relative;
	cursor: pointer;
	z-index:10;
}
#header div.x,
#header div.y,
#header div.z {
	position: absolute; margin: auto;
	top: 4px;
	background: #fff;
	border-radius:2px;
	-webkit-transition: all 200ms ease-out;
	   -moz-transition: all 200ms ease-out;
		-ms-transition: all 200ms ease-out;
		 -o-transition: all 200ms ease-out;
			transition: all 200ms ease-out;
}
#header div.x, #header div.y, #header div.z { height: 3px; width: 26px; }
#header div.y{top: 14px;}
#header div.z{top: 24px;}
#header div.coll{
	top: 15px;
	background:#fff;
	-webkit-transition: all 70ms ease-out;
	   -moz-transition: all 70ms ease-out;
		-ms-transition: all 70ms ease-out;
		 -o-transition: all 70ms ease-out;
			transition: all 70ms ease-out;
}
#header div.rotate30{
	-ms-transform: rotate(30deg);
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
	-webkit-transition: all 50ms ease-out;
	   -moz-transition: all 50ms ease-out;
		-ms-transition: all 50ms ease-out;
		 -o-transition: all 50ms ease-out;
			transition: all 50ms ease-out;
}
#header div.rotate150{
	-ms-transform: rotate(150deg);
	-webkit-transform: rotate(150deg);
	transform: rotate(150deg);
	-webkit-transition: all 50ms ease-out;
	   -moz-transition: all 50ms ease-out;
		-ms-transition: all 50ms ease-out;
		 -o-transition: all 50ms ease-out;
			transition: all 50ms ease-out;
}
#header div.rotate45{
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 100ms ease-out;
	   -moz-transition: all 100ms ease-out;
		-ms-transition: all 100ms ease-out;
		 -o-transition: all 100ms ease-out;
			transition: all 100ms ease-out;
}
#header div.rotate135{
	-ms-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	-webkit-transition: all 100ms ease-out;
	   -moz-transition: all 100ms ease-out;
		-ms-transition: all 100ms ease-out;
		 -o-transition: all 100ms ease-out;
			transition: all 100ms ease-out;
}
#header div.circle{
	border-radius: 50%;
	width: 0px;
	height: 0px;
	position:absolute;
	top: 36px;
	right: 36px;
	background:#000;
	opacity:1;
	z-index:10;
	-webkit-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	   -moz-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	    -ms-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	     -o-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	        transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
#header div.circle.expand{
	width:3000px;
	height:3000px;
	top: -1500px;
	right: -1500px;
	-webkit-transition: all 1400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	   -moz-transition: all 1400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	    -ms-transition: all 1400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	     -o-transition: all 1400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	        transition: all 1400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);

}
@media(min-width:1920px){
	#header .h_inner{padding: 0 6rem;}
}
@media(min-width:992px){
	.gnb{display:block !important;}
	.gnb > .gnb_container > ul > li > ul{
		position:absolute;
		top:10rem; left: 50%;
		width: 18rem;
		padding: 3.2rem 1rem;
		text-align: center;
		background: #fff;
		transform: translateX(-50%);
	}
	.gnb > .gnb_container > ul > li > ul > li > a{color:#171717;}
	div.circle.expand{display:none !important;}
}
@media(max-width:991.98px){
	#header .h_inner{
		position: relative;
		height: 8rem; 
		padding: 0 2rem;
	}
	#header h1 img{max-width: 150px !important;}
	#header .side{
		display: flex;
		align-items: center;
		gap: 2rem;
	}
	#header .lan > div{top: 5.2rem;}
	.gnb{
		position: absolute;
		top: 10rem; left: 0;
		width: 100%;
		visibility:hidden;
		height:0;
		overflow:hidden;
	}
	.gnb.open{
		visibility:visible;
		height:auto;
	}
	.gnb > .gnb_container{width: 100%; text-align: center;}
	.gnb > .gnb_container >  ul >  li {
		float:none;
		width:100%;
		margin:0;
		opacity:0;
		-webkit-transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		-moz-transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		-ms-transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		-o-transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	}
	.gnb > .gnb_container >  ul > li.animate{
		opacity:1;
		-webkit-transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		-moz-transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		-ms-transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		-o-transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	}
	.gnb > .gnb_container > ul > li.animate:nth-of-type(1){transition-delay: 0.5s;}
	.gnb > .gnb_container > ul > li.animate:nth-of-type(2){transition-delay: 0.55s;}
	.gnb > .gnb_container > ul > li.animate:nth-of-type(3){transition-delay: 0.60s;}
	.gnb > .gnb_container > ul > li.animate:nth-of-type(4){transition-delay: 0.65s;}
	.gnb > .gnb_container > ul > li + li{margin-top: 2rem;}
	.gnb > .gnb_container > ul > li > a{
		padding: 6px;
		font-size:2.5rem;
	}
	.gnb > .gnb_container > ul > li > ul > li + li {margin-top: 1rem;}
	.gnb > .gnb_container > ul > li > ul > li > a{font-size:2rem}
}
@media(max-width:575.98px){
	#header .h_inner{padding: 0 15px;}
}