/* ***************************** 모바일 메뉴  */
.mo-menu {
	display: block;
	border: 0;
	width: 40px;
	height: 25px;
	background-color: transparent;
	cursor: pointer;
	position: absolute;
	top: 7px;
	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: 44px;
}

.top-bg>p {
	position: relative;
	display: flex;
	justify-content: flex-start;
	margin-left: 20px;
	margin-top: 5px;
	font-size: 15px;
	font-weight: 300;
	line-height: 36px;
	color: rgb(34, 34, 34);
}

.mo-logo>img {
	width: 220px;
}

.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;
}

.show .overlay {
	position: fixed;
	width: 100%;
	height: 100%;
}

.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 {
	margin-top: 50px;
}

.monav a {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 14px;
	font-family: 'Noto Sans KR', sans-serif;
	line-height: 42px;
	text-decoration: none;
	color: rgb(0, 0, 0);
}

.monav a:hover {
	background-color: rgba(255, 255, 255, 0.8);
}

.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 {
	position: relative;
    z-index: 20;
	transition: all 0.5s ease-in-out;
	margin: 4% 0;
    font-family: "Noto Sans KR", sans-serif !important;
	font-size: 16px;
	font-weight: 300;
}

.mo-sub1,
.mo-sub2,
.mo-sub3,
.mo-sub4,
.mo-sub5 {
	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 {
	position: relative;
    line-height: 26px !important;
    font-size: 13px;
    font-weight: 400;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #666 !important;
}

.mo-sub1>li>a {
    top: -95px;
}

.mo-sub2>li>a {
    top: -126px;
}

.mo-sub3>li>a {
    top: -122px;
}

.mo-sub4>li>a {
    top: -95px;
}

.mo-sub5>li>a {
    top: -115px;
}

#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 {
    padding-top: 8px;
    margin-top: 10px;
    transition: all 0.5s ease-in-out;
}

#sub-1:hover .mo-sub1 {
    height: 95px;
}

#sub-2:hover .mo-sub2 {
    height: 126px;
}

#sub-3:hover .mo-sub3 {
    height: 122px;
}

#sub-4:hover .mo-sub4 {
    height: 95px;
}

#sub-5:hover .mo-sub5 {
    height: 115px;
}

#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  {
	top: 0px;
    transition: all 0.5s ease-in-out;
}
