/*header*/
#header{
	position:fixed;
	z-index:9990;
	width:100%;
	background:#fff;
	height:212px;
	left: 0;
	top: 0;
	transition: top 0.3s ease, border-bottom 0.3s ease;

}
#header.header_scroll{
	top: -120px;
	border-bottom: 1px solid #EEE;
}
#header.sub_header{
	border-bottom: 1px solid #EEE
}
#header .header_inner{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	padding-top: 30px;
	padding-bottom: 0;
	box-sizing: border-box;
	height: 100%;
}
#header nav.gnb>ul{
	display: flex;
	gap: 40px;
	padding: 0;
}
#header nav.gnb>ul>li{
	position: relative;
}
#header nav.gnb>ul>li>a{
	font-size: 2rem;
	font-weight: 400;
	line-height: 1;
	display: flex;
	align-items: center;
	gap: 5px;
	color: #000;
	padding-top: 30px;
	padding-bottom: 40px;
	font-family: 'novantique-serif', sans-serif;
	text-transform: uppercase;
}
#header nav.gnb>ul>li>a>i{
	font-size: 1.6rem;
}
#header nav.gnb>ul>li>.dep2_wrap{
	position: absolute;
	top: calc(100% - 20px);
	left: 0;
	z-index: 100;
	background: #fff;
	padding: 16px 20px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	width: max-content;
	display: none;
}
#header nav.gnb>ul>li:nth-child(1)>.dep2_wrap{
	left: -35px;
}
#header nav.gnb>ul>li:nth-child(2)>.dep2_wrap{
	left: 50%;
	transform: translateX(-50%);
}
#header nav.gnb>ul>li:nth-child(3)>.dep2_wrap{
	left: 50%;
	transform: translateX(-50%);
}
#header nav.gnb>ul>li:nth-child(4)>.dep2_wrap{
	left: 50%;
	transform: translateX(-50%);
}
#header nav.gnb>ul>li>.dep2_wrap>ul{
	padding: 0;
}
#header nav.gnb>ul>li>.dep2_wrap>ul>li>a{
	font-size: 16px;
	font-weight: 400;
	color: #000;
	line-height: 1;
	padding: 8px 0;
	display: block;
	text-align: center;
	width: 100%;
	text-transform: uppercase;
	
}
#header .gnb_side{
	display: flex;
	gap: 20px;
	align-items: center;
	position: absolute;
	right: 100px;
	top: 30px;
	z-index: 30;
}
#header .gnb_side.mobile_util{
	display: none;
}
#header .gnb_side.burger_wrap{
	display: none;
}

#header .gnb_side > a,
#header .gnb_side > .lan{
	position:relative;
	color:#555;
	font-size:1.4rem;
}
#header .gnb_side > a:first-child:after,
#header .gnb_side > .lan:first-child:after{
	display:none;
}
#header .gnb_side .lan,
#header .gnb_side a.search{
	font-size:14px;
	font-family:'Roboto',sans-serif;
	position: relative;
	color: #000;
}
#header .gnb_side .lan a{
	color:inherit;
	display: flex;
	align-items: center;
	gap: 6px;
}
#header .gnb_side .lan a span{
	position:relative;
	top: 2px;
}
#header .gnb_side .lan > p{
	position:absolute;
	width:80px;
	left:50%;
	margin-left:-40px;
	background:#000;
	padding:6px 0;
	display:none;
}
#header .gnb_side .lan > p > a{
	font-size:1.4rem;
	color:#fff;
	display:block;
	text-align:center;
}
#header .cart{
	position: relative;
}
#header .cart span{
	position: absolute;
	top: -5px;
	right: -5px;
	background: #FF2626;
	color: #fff;
	font-size: 10px;
	border-radius: 10px;
	font-family: 'Poppins', sans-serif;
	min-width: 16px;
	min-height: 16px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
}
#header .lnb.right_fixed>a{
	display: none;
}








/*search*/
#top_search{
	position:fixed;
	z-index:90;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,.6);
	display:none;
}
#top_search div{
	position:absolute;
	width:90%;
	max-width:600px;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%)
}
#top_search div input{
	border:0;
	border-radius:0;
	height:60px;
	font-size:2.2rem;
	padding:0px 2rem;
	width: 100%
}
#top_search div button{
	position:absolute;
	right:1rem;
	top:50%;
	transform:translatey(-50%);
	font-size:3rem;
	background:none;
	border:0;
}
#top_search .search_close{
	position:absolute;
	top:35%;
	left:50%;
	transform:translatex(-50%);
	color:#fff;
	font-size:4rem;
}

@media screen and (min-width: 500px){
	#header .gnb_side.util{display: flex !important;}
	/*div.circle.expand{display: none !important;}*/
	#header nav.gnb>ul>li>.dep2_wrap{display: none;}
}












/*모바일 메뉴*/
div.burger {
	height: 30px;
	width: 26px;
	position: relative;
	cursor: pointer;
	z-index:10;
}
div.x,
div.y,
div.z {
	position: absolute; margin: auto;
	top: 4px;
	background: #000;
	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;
}
div.x, div.y, div.z { height: 3px; width: 26px; }
div.y{top: 14px;}
div.z{top: 24px;}
div.coll{
	top: 15px;
	background:#000;
	-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.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:#FFF;
	opacity:1;
	z-index:1;
	-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 screen and (max-width: 1280px){
	#header .gnb_side{right: 20px; top: 20px;}
}








@media(max-width:768px){
	#header{height: unset; min-height: 70px; padding: 0;}
	#header.header_scroll{top: 0;}
	#header .header_inner{padding: 0; display: block; width: 100%;}
	#header .logo{display: block; position: absolute; top: 10px; left: 20px; z-index: 40;}
	#header .logo>a{display: block; width: 170px;}
	#header .logo>a>img{width: 100%;}
	#header .lnb{top: 17px; right: 20px;}
	
	#header .gnb_side.util{top:22px; right: 70px; z-index: 30;}
	#header .gnb_side.burger_wrap{display: block; z-index: 20;}
	#header .gnb_side.burger_wrap .burger{z-index: 50;}






	.gnb{
		visibility:hidden;
		height:0;
		overflow:hidden;
		position: absolute;
		top: 100%;
		z-index: 40;
		left: 0;
		box-sizing: border-box;
		padding-top: 20px;
		width: 100%;
	}
	.gnb.open{
		visibility:visible;
		height:auto;
	}

	#header nav.gnb>ul{
		flex-direction: column;
		text-align: center;
	}

	#header nav.gnb>ul>li>a{justify-content: center; padding: 15px 0; color:#000;font-size:2.6rem;}
	#header nav.gnb>ul>li>a>i{display: none;}
	#header nav.gnb>ul>li>.dep2_wrap{position: relative; left:unset !important; text-align: center; transform: unset !important; top: 0; box-shadow:none; padding: 0; margin: 0 auto}
	#header nav.gnb>ul>li>.dep2_wrap>ul{display:block}
	#header nav.gnb>ul>li>.dep2_wrap>ul>li>a{padding: 10px 0; color:#000;font-size:2rem;}


	#header nav.gnb>ul>li {
		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);
	}
	#header nav.gnb>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);
	}
	#header nav.gnb>ul>li.animate:nth-of-type(1){
		transition-delay: 0.5s;
	}
	#header nav.gnb>ul>li.animate:nth-of-type(2){
		transition-delay: 0.55s;
	}
	#header nav.gnb>ul>li.animate:nth-of-type(3){
		transition-delay: 0.60s;
	}
	#header nav.gnb>ul>li.animate:nth-of-type(4){
		transition-delay: 0.65s;
	}
	#header nav.gnb>ul>li.animate:nth-of-type(5){
		transition-delay: 0.70s;
	}
	#header nav.gnb>ul>li.animate:nth-of-type(6){
		transition-delay: 0.75s;
	}


}



@media screen and (max-width: 500px){
	#header .logo{top: 17px;}
	#header .logo>a{width: 130px;}
	.gnb{top: calc(100% + 60px); width: 100%}
	#header nav.gnb>ul{gap: 20px;}
	#header .gnb_side.util{right: unset; top: 70px; left: 50%; transform: translateX(-50%); position: fixed; width: 100%; justify-content: center; padding: 20px 0; border-top: 1px solid #DDD; border-bottom: 1px solid #DDD; z-index: 50; bottom: 0; height: max-content; display:none;}
	#header .gnb_side .lan a span{display: none;}
	#header .gnb_side.util>a:first-child,
	#header .gnb_side.util>a:nth-child(2){display: none;}
	#header nav.gnb>ul>li>.dep2_wrap{margin: 0 auto;}

	#header .lnb.right_fixed>a{display: block; position: absolute; top: 24px}
	#header .lnb.right_fixed>a.search{right: 100px}
	#header .lnb.right_fixed>a.cart{right: 65px}



}








