/* --------------- header --------------- */
#header{
	z-index:200;
	position:fixed;
	width:100%;
	height:10rem;
	background: rgba(0, 0, 0, 0);
	border-bottom: 1px solid rgba(255, 255, 255, .2);
	transition: all .3s;
}
#header.header_scroll{
	background: rgba(0, 0, 0, .6);
}
#header .header_inner{
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}
#header h1{
	position:absolute;
	z-index:30;
	top:50%; left:3rem;
	transform: translateY(-50%);
}
#header h1 > a{display:block;}
#header h1 img{filter: brightness(1) invert(1);}
.mainHeader#header h1 img{filter: brightness(0) invert(1);}
@media (max-width:991.98px) {
	#header{height: 7.5rem;}
}



/*gnb*/
.gnb{
	z-index:15;
	position:relative;
	left:0; top:0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-right: 6rem;
	gap: 10rem;
	width:100%;
}
.gnb > ul{gap: 7rem;}
.gnb > ul > li > a{
	font-size:2rem;
	font-weight: 500;
	color:#000;
}
.mainHeader .gnb > ul > li > a{color:#fff;}
.gnb > a{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 15rem; height: 4.8rem;
	font-size: 1.8rem;
	font-weight: bold;
	color:#fff;
	background: #ff6633;
	border-radius: 2.4rem;
}

#header .all_menu_btn{
	z-index: 30;
	position: relative;
	padding-right: 3rem;
}
#header .all_menu_btn button{
	position:relative;
	padding:0;
	width:40px;
	height:40px;
	border:0;
	outline:none;
	background:none;
}
#header .all_menu_btn button > span{
	position:absolute;
	left:50%;
	top:50%;
	transform: translate(-50%, -50%);
	height:3px;
	width:40px;
	background:#000 !important;
	transition:all .3s
}
#header.mainHeader .all_menu_btn button > span{background:#fff !important;}
#header .all_menu_btn button > span:nth-child(1){
	margin-top: -6px;
}
#header .all_menu_btn button > span:nth-child(2){
	margin-top:5px;
}
#header .all_menu_btn button.is-open > span:nth-child(1){
	transform: translate(-50%,-50%) rotate(45deg);
	margin-top:0;
}
#header .all_menu_btn button.is-open > span:nth-child(2){
	transform: translate(-50%,-50%) rotate(-45deg);
	margin-top:0;
}
header:hover #header .all_menu_btn button > span,
header.header_scroll #header .all_menu_btn button > span{
	background:#000;
}
#header .all_menu_btn button.is-open > span{background:#fff !important;}
@media(max-width:1300px){
	.gnb {
    margin-right: 3rem;
    gap: 4rem;
	}
	.gnb > ul {gap: 4rem;}
}
@media(max-width:1199.98px){
	.gnb {gap: 3rem;  margin-right: 2rem;}
	.gnb > ul > li > a {font-size: 1.8rem;}
}
@media(max-width:991.98px){
	#header h1 img{width: 140px !important;}
	.gnb > a {
    width: 13rem;
    height: 4rem;
    font-size: 1.6rem;
	}
	.gnb > ul{display: none !important;}
	#header .all_menu_btn button {width: 35px; height: 35px;}
	#header .all_menu_btn button > span {width: 35px;}
	#header .all_menu_btn button > span:nth-child(1) {margin-top: -5px;}
	#header .all_menu_btn button > span:nth-child(2) {margin-top: 4px;}
}
@media(max-width:575.98px){
	#header h1{left: 2rem;}
	#header h1 img{width: 130px !important;}
	#header .all_menu_btn{padding-right: 2rem;}
	#header .all_menu_btn button {width: 30px; height: 30px;}
	#header .all_menu_btn button > span {width: 30px;}
}




/*all_menu*/
#gnb_all_menu{
	z-index:16;
	position:fixed;
	top:0;
	width:100%;
	height:100%;
	background:#000;
	display:none;
	overflow:hidden;
}
#gnb_all_menu .all_menu_hide{
	position:absolute;
	left:50%;
	top:-10rem;
	transform:translateX(-50%);
	background:none;
	border:none;
	outline: none;
	color:#fff;
	font-size:4rem;
	transition: all .8s ease .7s;
}
#header.all-menu-open #gnb_all_menu .all_menu_hide{
	top:3rem;
}
#gnb_all_menu .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%; height: 100%;
}
#gnb_all_menu .container > ul > li{
	width:100%;
	opacity:0;
	transform: translateY(-5rem);
	-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_all_menu .container > ul > li + li{margin-top: 5rem;}
#header.all-menu-open #gnb_all_menu .container > ul > li{
	opacity:1;
	transform: translateY(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.all-menu-open #gnb_all_menu .container > ul > li:nth-of-type(1){
	transition-delay: 0.2s;
}
#header.all-menu-open #gnb_all_menu .container > ul > li:nth-of-type(2){
	transition-delay: 0.3s;
}
#header.all-menu-open #gnb_all_menu .container > ul > li:nth-of-type(3){
	transition-delay: 0.4s;
}
#header.all-menu-open #gnb_all_menu .container > ul > li:nth-of-type(4){
	transition-delay: 0.5s;
}
#header.all-menu-open #gnb_all_menu .container > ul > li:nth-of-type(5){
	transition-delay: 0.6s;
}
#gnb_all_menu .container > ul > li > a{
	position: relative;
	display: inline-block;
	line-height: 1.2;
	font-size:5rem;
	font-weight:800;
	color:#fff;
	transition: all .3s;
}
#gnb_all_menu .container > ul > li > a::after{
	content: '';
	position: absolute;
	bottom: 0; left: 0;
	width: 0; height: 3px;
	background: #ff6633;
	transition: all .7s;
}
#gnb_all_menu .container > ul > li:hover > a{color: #ff6633;}
#gnb_all_menu .container > ul > li:hover > a::after{width: 100%;}

#gnb_all_menu .container > div{
	opacity:0;
	transform: translateY(-5rem);
	-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.all-menu-open #gnb_all_menu .container > div{
	opacity:1;
	transform: translateY(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);
	transition-delay: 0.2s;
}
#gnb_all_menu .container > div *{color: #fff;}
#gnb_all_menu .container > div dl{font-size: 2rem;}
#gnb_all_menu .container > div dt{
	margin-bottom: 5px;
	font-weight: 900;
	color: #ff6633;
}
#gnb_all_menu .container > div > div > a{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 7px;
	width: 24rem;
	height: 5.4rem;
	font-size: 1.6rem;
	font-weight: 500;
	border-radius: 1rem;
	border: 1px solid #808080;
}
#gnb_all_menu .container > div > div > a:first-child{
	background: #ff6633;
	border-color: #ff6633;
}
@media(max-width:991.98px){	
	#gnb_all_menu .container{justify-content: center;}
	#gnb_all_menu .container > ul > li{text-align: center;}
	#gnb_all_menu .container > ul > li > a{font-size:4rem;}
}
@media(max-width:767.98px){	
	#gnb_all_menu .container > ul > li > a{font-size:3rem;}
}