/* ***************************** 상단 메뉴 */
.head-2 {
	/* position: absolute; */
	position: relative;
	z-index: 1000;
	position: fixed;
	top: 0px;
	width: 100%;
	padding: 15px 0;
	background-color: rgb(255, 255, 255);
	box-shadow: 0px 3px 5px 0px rgb(0, 0, 0, 0.1);
	transition: all 1s ease-in-out;
	/* border-bottom: 1px solid #e4e3e3; */
}

.head-2.show {
	color: rgb(32, 30, 30);
	background-color: rgb(255, 255, 255);
	padding: 10px 0;
	transition: all 1s ease-in-out;
}

.cont {
	display: flex;
	justify-content: flex-end;
}

.menu>li a {
	display: block;
	text-align: center;

	height: 55px;
	line-height: 55px;
	font-size: 18px;
	font-weight: 400;
	color: rgb(0, 0, 0);
	font-family: 'Noto Sans KR', serif;
}

.menu>li.member a {
	display: inline-block;
	text-align: right;

	height: 55px;
	line-height: 55px;
	padding-left: 10px;
	padding-top: 4px;
}

.menu>li.member a:first-child {
	padding-left: 0;
}

ul.menu {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 70%;
	justify-content: flex-end;
}

.menu>li {
	overflow: hidden;
	padding-left: 65px;
}

.menu>li:nth-of-type(1) {
	padding-left: 0;
}

.menu>li.member {
	overflow: hidden;
	width: 8%;
}

.menu>li>a:hover {
	color: #0a357d;
}

.menu>li>a:before {
	position: relative;
	display: block;
	content: '';
	width: 50px;
	height: 2px;
	transform: translateX(0px);
	top: 10px;
	opacity: 0;
	left: 0;
	background-color: black;
	transition: all 0.5s ease-in-out;
	display: none;
}

.menu>li:hover a::before {
	opacity: 1;
	transform: translateX(50px);
	transition: all 0.5s ease-in-out;
}

.menu>li.member>a:before {
	display: none;
}

.menu>li.member:hover a::before {
	display: none;
}

.logo {
	position: absolute;
	top: -8px;
	left: 0;
}

.logo>img {
	width: calc(141px * 1);
	height: calc(71px * 1);
}

@media (max-width: 1199.99px) and (min-width: 992px) {
	.logo {
		left: 10px;
		width: 20%;
		top: 0;
	}

    .logo>img {
		width: calc(117px * 0.85);
		height: calc(58px * 0.85);
	}

	.menu>li {
		padding-left: 55px;
	}

	.menu>li a {	
		height: 50px;
		line-height: 50px;
		font-size: 16px;
	}
}

@media (max-width:992px) {
	.logo {
		left: 0;
		top: 11px;
	}

    .logo>img {
		width: calc(117px * 0.5);
		height: calc(58px * 0.5);
	}

	.menu>li {
		padding-left: 55px;
	}

	.menu>li a {	
		height: 50px;
		line-height: 50px;
		font-size: 16px;
	}
}

@media (max-width: 769px) {
.logo {
    left: 0;
    top: 11px;
	}
}

.head-fix {
	position: fixed;
	visibility: hidden;
	z-index: 100;
	width: 100%;
	margin: 0;
	background-color: rgb(50, 50, 83);
	transform: translateY(-80px);
	transition: all 0.5s ease-in;
}

.head-fix.show {
	visibility: visible;
	transform: translateY(0px);
	transition: all 1s ease-in;
}

/* 드롭메뉴 */
.m-submenu {}

.s-submenu {
	position: absolute;
	overflow: hidden;
	top: 55px;
	opacity: 0;
	transform: translateX(-1300px);
	background-color: transparent;
	transition: all 0.5s ease-in-out;
}

.m-submenu:hover .s-submenu {
	opacity: 1;
	transform: translateX(0px);
	transition: all 0.5s ease-in-out;
}

.s-submenu>ul {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	padding: 0px 0px;
}

.s-submenu>ul>li>a {
	text-align: center;
	display: block;
	padding: 0 0px;
	margin: 0 1px 0 0;
	width: 150px;
	height: 35px;
	font-size: 13px;
	line-height: 35px;
	color: #ffffff;
	background-color: rgb(44, 44, 44);
	transition: all 0.3s ease-in;
}

.s-submenu>ul>li:hover a {
	background-color:#05367b;
}

.smenu1 {
	left: 0%;
}

.smenu2 {
    left: 23.5%;
}

.smenu3 {
	left: 30%;
}

.smenu4 {
    left: 27.7%;
}

.smenu5 {
	left: 55%;
}

.smenu6 {
	left: 70%;
}

/* 미디어 쿼리 */
@media screen and (max-width: 991.99px) {
	nav {
		display: none;
		transition: all 0.5s ease-in;
	}
}

.s-submenu>ul>li>a {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 13px;
	font-weight: 300;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
	ul.menu {
		width: 80%;
	}
	.smenu1 {
		left: 0%;
	}
	
	.smenu2 {
		left: 17.5%;
	}
	
	.smenu3 {
		left: 33%;
	}
	
	.smenu4 {
		left: 23%;
	}
	
	.smenu5 {
		left: 42%;
	}

	.smenu6 {
		left: 62%;
	}
}


/* ***************************** 상단 메뉴 끝 */


/* ***************************** 모바일 메뉴  */
.mo-menu {
	display: block;
	border: 0;
	width: 40px;
	height: 25px;
	background-color: transparent;
	cursor: pointer;
	position: absolute;
	top: 15px;
	right: 10px;
	z-index: 700;
}

.mo-menu .bar,
.mo-menu .bar:before,
.mo-menu .bar:after {
	display: block;
	position: absolute;
	width: 30px;
	height: 2px;
	background-color: rgb(0, 0, 0);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.mo-menu .bar {
	top: 10px;
	left: 0;
}

.mo-menu .bar:before {
	position: absolute;
	content: '';
	top: 7px;
	left: 0;
}

.mo-menu .bar:after {
	position: absolute;
	content: '';
	top: -7px;
	left: 0;
}

.top-bg {
	position: fixed;
	z-index: 700;
	background-color: rgb(255, 255, 255);
	width: 100%;
	height: 50px;
}

.top-bg>p {
	position: relative;
	display: flex;
	justify-content: flex-start;
	margin-left: 20px;
	font-size: 15px;
	font-weight: 300;
	line-height: 36px;
	color: rgb(34, 34, 34);
}

.show .mo-menu .bar {
	background-color: transparent;
}

.show .mo-menu .bar:before {
	top: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.show .mo-menu .bar:after {
	top: 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.overlay {
	width: 0;
	height: 100%;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	transition: width 0.3s ease-in;
	background-color: rgba(255, 255, 255, 0.8);
	z-index: 500;
	display: flex;
    justify-content: center;
    align-items: center;
}

.show .overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	display: flex;
    justify-content: center;
    align-items: center;
}

.monav ul {
	list-style-type: none;
	position: relative;
	/* top: 50px; */
	opacity: 0;
	transform: translateX(-100px);
	transition: all 0.5s 0.2s ease-out;
}

.show .monav ul {
	opacity: 1;
	transform: translateX(0);
}

.monav {
	width: 100%;
}

.monav a {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 14px;
	font-family: 'Noto Sans KR', serif;
	line-height: 42px;
	text-decoration: none;
	color: rgb(0, 0, 0);
}

.monav > ul > li > a:hover {
	background-color: #0a357d;
	color: #fff;
}

.mo-submenu>li>a {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 13px;
	font-weight: 300;
}

#sub-1,#sub-2,#sub-3,#sub-4,#sub-5,#sub-6 {
	position: relative;
    z-index: 20;
	transition: all 0.5s ease-in-out;
	margin: 0;
}

#sub-6 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#sub-6 div {
	width: 100px;
	height: 30px;
	margin-top: 10px;
	margin-bottom: 5px;
	background-color: #ccc;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#sub-6 div a {
	font-size: 14px;
	font-family: 'Noto Sans KR', serif;
	line-height: 30px;
	color: rgb(0, 0, 0);
}

#sub-6 div:last-child {
	margin-top: 0;
}

.mo-sub1,
.mo-sub2,
.mo-sub3,
.mo-sub4,
.mo-sub5,
.mo-sub6 {
	position: relative;
	z-index: 1;
	overflow: hidden;
    background-color: #f4f4f4;
    height: 0px;
    transition: all 0.5s ease-in-out;
}

.mo-sub1>li>a,
.mo-sub2>li>a,
.mo-sub3>li>a,
.mo-sub4>li>a,
.mo-sub5>li>a,
.mo-sub6>li>a {
	position: relative;
    line-height: 30px !important;
    font-size: 13px;
    font-weight: 400;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #666 !important;
}

.mo-sub1>li>a {
    top: -132px;
}

.mo-sub2>li>a {
    top: -71px;
}

.mo-sub3>li>a {
    top: -71px;
}

.mo-sub4>li>a {
    top: -132px;
}

.mo-sub5>li>a {
    top: -102px;
}

.mo-sub6>li>a {
    top: -71px;
}

#sub-1:hover .mo-sub1,
#sub-2:hover .mo-sub2,
#sub-3:hover .mo-sub3,
#sub-4:hover .mo-sub4,
#sub-5:hover .mo-sub5,
#sub-6:hover .mo-sub6 {
    padding-top: 5px;
    transition: all 0.5s ease-in-out;
}

#sub-1:hover .mo-sub1 {
    height: 132px;
}

#sub-2:hover .mo-sub2 {
    height: 71px;
}

#sub-3:hover .mo-sub3 {
    height: 71px;
}

#sub-4:hover .mo-sub4 {
    height: 132px;
}

#sub-5:hover .mo-sub5 {
    height: 102px;
}

#sub-6:hover .mo-sub6 {
    height: 71px;
	width: 100%;
}

#sub-1:hover .mo-sub1>li>a,
#sub-2:hover .mo-sub2>li>a,
#sub-3:hover .mo-sub3>li>a,
#sub-4:hover .mo-sub4>li>a,
#sub-5:hover .mo-sub5>li>a,
#sub-6:hover .mo-sub6>li>a {
	top: 0px;
    transition: all 0.5s ease-in-out;
}





@media screen and (min-width: 992.99px) {
	.mosec {
		display: none;
	}
}

/* ***************************** 모바일 메뉴 끝 */