@charset "UTF-8";



header#header{
    box-sizing:border-box;
    margin:0 auto;
    max-width:;
    height: ;
    background-color:#;
    text-align:;
    padding:25px; margin-left:20%; /* 메뉴 위치 */
}
a#title{
    display: none;
    font-size:15px; 
}
div#wrap{
    position: relative;
}

div#slide_bg{
    display: none;
    position: fixed;
    top: 0;
    left: -50%;
    height:100%; 
    width: 50%;
    background-color: rgba(0,0,0,0.5); /* 모바일 배경 */
    z-index: 1;
}

div#slide_menu{ /* 모바일 메뉴 펼쳐짐*/
    display: none;
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    height:100%; 
    padding-top: 60px;
    background-color: #fff;
    z-index: 2;
}

   div#burgerbtn{ /* 모바일 삼선메뉴*/
   display: none;
}

ul.nav_main, ul.m_nav, ul.m_nav_sub{
    text-align: ;
    list-style: none;
    padding-left: 0;
}

ul.nav_main>li{
    display: inline-block;
    font-size: 0;
    margin: -2.9px;
}

.nav_title a{ /* 메인메뉴 */
    display: inline-block; font-size:18px; font-weight:500; color:#111; text-align:center;
    padding: 15px 0;
    width: 160px;
    transition: 0.3s;
    border-radius:;
}
.nav_title a:hover{ /* 메인메뉴 오버 상태 지속은 js/nav_main.js 수정 */
    background-color: #0b1f91; color:#fff;
}

.nav_sub a{ /* 서브메뉴 */
    display: inline-block; font-size:15px; font-weight:300; color:#fff;
    padding: 3px 0;
    width: 160px;
    transition: 0.3s;
    border-radius: ;
}
.nav_sub a:hover { color:#afe3ff; text-decoration:underline; }
 
ul.nav_sub{
    display: none;
    list-style: none;
    padding-left: 0;
    position: absolute;
    background-color: #0b1f91;
    border-radius: ;
}

ul.m_nav_sub{
    display: none;
}



div#content{
    max-width: ;
    height: ;
    background-color: #;
}



@media (min-width:768px) and (max-width:1499px){
	
	header#header{
    box-sizing:border-box;
    margin: 0 auto;
    max-width:;
    height: ;
    background-color:#;
    text-align: ;
    padding:5px; margin-left:18%; /* 메뉴 위치 */
}
	
	ul.nav_main>li{
    display: inline-block;
    font-size: 0;
    margin: -2.9px;
}
	
.nav_title a{ /* 메인메뉴 */
    display: inline-block; font-size:15px; font-weight:500; color:#222;
    padding: 20px 0;
    width: 130px;
    transition: 0.3s;
    border-radius: ;
}
.nav_title a:hover{ /* 메인메뉴 오버 상태 지속은 js/nav_main.js 수정 */
    background-color: #0b1f91; color:#fff;
}

.nav_sub a{ /* 서브메뉴 */
    display: inline-block; font-size:13px; font-weight:400; color:#fff;
    padding: 2px 0;
    width: 130px;
    transition: 0.3s;
    border-radius: ;
}
.nav_sub a:hover { color:#afe3ff; text-decoration:underline; }
 
ul.nav_sub{
    display: none;
    list-style: none;
    padding-left: 0;
    position: absolute;
    background-color: #0b1f91;
    border-radius: ;
}

ul.m_nav_sub{
    display: none;
}


}

@media screen and (max-width: 767px){
    ul.nav_main{
      display: none;  
    }
    a#title{
        display: none;
    }
   div#burgerbtn{ /* 모바일 삼선메뉴*/
    display: block;
    position: absolute;
    top:20px;
    right: 5%;
    width: 25px;
    height: 25px;
    cursor: pointer; color:#222;
}


div#slide_bg{
    display: block;
    position: fixed;
    top: 0;
    left: -50%;
    height:100%; 
    width: 50%;
    background-color: rgba(0,0,0,0.5); /* 모바일 배경 */
    z-index: 1;
}

div#slide_menu{ /* 모바일 메뉴 펼쳐짐*/
    display: block;
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    height:100%; 
    padding-top: 60px;
    background-color: #fff;
    z-index: 2;
}
a#close_btn{ /* 모바일 닫기 버튼 */
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
}
   
    
.m_nav_title a{
    display: inline-block;
    width: 100%;
    padding:10px 20px; font-size:16px; font-weight:500; text-align:left;
}

.m_nav_sub a{ font-size:14px; padding:10px 20px; border-bottom:1px solid #fff; 
    background-color: #ededed;  text-align:left; /* 모바일 2차 서브메뉴 */
}

    
}