﻿@charset "UTF-8";
.header .gnb_wrap {
	width:100%;
	height:94px;
	border-bottom:1px solid rgba(255,255,255,0.2);
	background:rgba(0,0,0,0.05);
}
.header .gnb_wrap .mobile_tab {
	display: none;
}
.header .gnb_wrap .gnb {
	width:1400px;
	display: block;
	margin: 0 auto;
	display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.header .gnb_wrap .gnb > li {
	position: relative;
}
.header .gnb_wrap .gnb > li > a {
	display:inline-block;
	font-size:19px;
	color:#fff;
	font-weight:700;
	padding:34px 0;
}
.header .gnb_wrap .gnb .depth2 {
	display: none;
	position: absolute;
	left: -14px;
	top: 100%;
	width:100%;
	min-width:220px;
	height:auto;
	background:#f8f9fa;
	border:2px solid #bc1c55;
	border-bottom:7px solid #bc1c55;
	border-top:0;
	margin-top:-1px;
	padding:10px 20px;
	box-sizing:border-box;
}
.header .gnb_wrap .gnb .depth2 a {
	display: block;
	text-align: left;
	text-decoration: none;
	font-size: 17px;
	color: #000;
	font-weight:500;
	padding:10px 0;
	border-bottom:1px dotted #ccc;
	transition:all 0.2s;
	-webkit-transition:all 0.2s;
}
.header .gnb_wrap .gnb .depth2 li:last-child a{
	border-bottom:0;
}
.header .gnb_wrap .gnb .depth2 a:hover {
	color: #bc1c55;
	padding-left:3px;
}

.header .gnb_wrap .gnb .depth2 .depth3{
	display:none;
}
@media screen and (max-width: 1200px) {
	.header .gnb_wrap{
		border-bottom:0;
		background:none;
	}
	.header .gnb_wrap .gnb > li > a {
		padding: 0 20px;
	}
	.header .gnb_wrap .mobile_tab {
		display: block;
		position: absolute;
		right: 3%;
		top: 28px;
		width: 44px;
	}
	.fixed_header .header_wrap{
		border-bottom:0;
	}
	.header .gnb_wrap .gnb {
		display: none;
		position: absolute;
		left: 0;
		top: 96px;
		margin-top: 0;
		width: 100%;
		z-index:100;
		background:#5a75a0;
	}
	.header .gnb_wrap .gnb > li {
		float: none;
		width: 100%;
		height: auto;
		border-bottom:1px solid #46628e;
	}
	.header .gnb_wrap .gnb > li > a {
		font-size: 22px;
		color: #fff;
		padding:10px 0;
		font-weight:500;
	}
	.header .gnb_wrap .gnb .depth2 {
		position: relative;
		left: 0;
		top: 0;
		width: 100%;
		border: 0;
		font-weight:500;
	}
	.header .gnb_wrap .gnb .depth2 a {
		padding: 15px 5px;
		font-size: 18px;
		color: #333;
		text-align:center;
	}
	.header .gnb_wrap .gnb .depth2 a:hover {
		color: #000;
	}
	.header .gnb_wrap .gnb .depth2 .depth3{
		display:block;
	}
	.header .gnb_wrap .gnb .depth2 .depth3 a{
		background:#dfe9f9;
		border-bottom:1px solid #afc2df;
		padding:5px;
		font-size: 16px;
		font-weight:400;
	}
}