/*header*/
#header{
	position:fixed;
	z-index:200;
	width:100%;
}
#header .pc_only{}
#header .mobile_only{display:none !important;}
@media(max-width:991.98px){
	#header .pc_only{display:none !important;}
	#header .mobile_only{display:block !important;}
}
#header h1{
	position:absolute;
	top:0;
	left:0;
	z-index:30;
	font-size:11rem;
	color:#fff;
	font-family: 'RiaSans';
	padding:5rem;
	transition:all .5s;
}
#header h1 > a{
	display:block;
	color:inherit;
	white-space: nowrap;
}
#header  .lan{
	text-align:right;
	display:flex;
	gap:0 1rem;
	justify-content: flex-end;
}
#header  .lan a{
	color:#fff;
	font-size:1.6rem;
	margin-top:3.5rem;
	line-height:1.7rem;
}
#header  .lan a:hover,
#header  .lan a.is-active{
	border-bottom:1px solid #fff;
}


#header.header_scroll h1{
	padding:3rem;
	font-size:3rem;
}
.subWrap #header h1{
	padding:3rem !important;
	font-size:3rem !important;
}
@media(max-width:1680px){
	#header h1{
		font-size:7rem;
	}
}
@media(max-width:1199.98px){
	#header h1{
		font-size:5rem;
	}
}
@media(max-width:991.98px){
	#header h1{
		font-size:4rem;
		padding:3rem;
	}
}
@media(max-width:767.98px){
	#header h1{
		font-size:3rem;
		padding:3rem;
	}
}
@media(max-width:576.98px){
	#header h1,
	.subWrap #header h1{
		font-size:2.1rem !important;
	}
}





/*gnb*/
#header .menu_inner{
	position:absolute;
	right:0;
	top:0;
	padding:5rem;
	transition:all .3s;
}

.gnb{
	text-align:center;
	z-index:15;
	position:relative;
	left:0;
	top:0;
	width:100%;
	box-shadow:0px 0px 2px rgba(0,0,0,.2);
}
.gnb > .gnb_container{
	display:inline-block;
	vertical-align:top;
}
.gnb > .gnb_container > ul{
	text-align:right;
}
.gnb > .gnb_container > ul > li + li{
	margin-top:1rem;
}
.gnb > .gnb_container > ul > li > a{
	display:block;
	font-size:2rem;
	color:#fff;
	font-weight:600;
}
.gnb > .gnb_container > ul > li:hover > a,
.gnb > .gnb_container > ul > li > a.is-active{
	color:#fec734;
}

.gnb > .gnb_container > ul > li > ul{
	position:relative;
	display:none;
}
.gnb > .gnb_container > ul > li > ul > li{}
.gnb > .gnb_container > ul > li > ul > li:first-child{
	padding-top:.5rem;
}
.gnb > .gnb_container > ul > li > ul > li:last-child{
	padding-bottom:1rem;
}
.gnb > .gnb_container > ul > li > ul > li > a{
	display:block;
	padding:.6rem 0;
	font-size:1.7rem;
	color:#222;
	font-weight:300;
	color:#fff;
	font-weight:500;
}
.gnb > .gnb_container > ul > li > ul > li > a:hover{
	color:#fec734;
}
@media(max-width:991.98px){
	.gnb{
		text-align:right;
	}
	
	#header .menu_inner{
		position:fixed;
		height:100%;
		width:30rem;
		background:rgba(0,0,0,.8);
		padding:3rem;
		padding-top:10rem !important;
		border-left:1px solid rgba(255,255,255,.1);
	}
	.gnb > .gnb_container{	}
}
@media(max-width:767.98px){
	#header .menu_inner{
		padding:3rem;
	}
}
.gnb .dp2-box.hide{
	display:none !important
}


#header.header_scroll .menu_inner{
	padding:3rem;
}


/*모바일 메뉴*/
.gnb_burger{
	position:absolute;
	right:3rem;
	top:2.5rem;
}
div.burger {
	height: 34px;
	width: 34px;
	position: relative;
	cursor: pointer;
	z-index:10;
}
div.x, div.y{ 
	height: 2px; 
	width: 34px; 
	background:#fff;
	position:absolute;
}
div.x{
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	margin-top:-8px
}
div.y{
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	margin-top:8px
}

div.coll{
	-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;
}
div.coll.y{
	transform: translate(-50%,-50%)  rotate(45deg);
	margin-top:0;
}
div.coll.x{
	transform: translate(-50%,-50%)  rotate(-45deg);
	margin-top:0;
}


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;
}
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;
}

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;
}
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;
}
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);
}
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(max-width:991.98px){
	#header .menu_inner{
		right:-31rem;
		transition:all .5s;
	}
	#header .menu_inner.open{
		right:0;
	}
	#header .gnb_side{
		position:absolute;
		top:2.1rem;
		right:3rem;
		z-index:30;
	}
	.gnb{

	}
	.gnb.open{

	}

}
@media(max-width:576.98px){
	.gnb_burger{
		top:2.1rem;
	}
}