@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

*{
    margin: 0;
    padding: 0;
}

header{
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    max-width: 170px;
    width: 100%;
}

.logo a{
    display: block;
    width: 100%;
}
.logo img{
    width: 100%;
}


.menu_wrap > ul{
    display: flex;
    padding: 5px 20px;
    border: 1px solid #0051bc;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,81,188,0.15);
}

.menu_wrap ul li{
    list-style: none;
   
}

.menu_wrap > ul > li > a{
    display: block;
    text-decoration: none;
    color: #3e3e3e;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 7px 20px;
    margin-left: -1px;
    /* border-right: 1px solid #7da2cd; */
}

.menu_wrap > ul > li > a::after{
    content: "";
    display: inline-block;
    width: 1px;
    height: 15px;
    background:  #0051bc;
    margin-top: 6px;
    margin-left: 19px;
    position: absolute;

}

#menu_6 a::after{
    display: none;
}

.menu_wrap > ul > li > a:hover,
.menu_wrap > ul > li > a:active{
    color: #fff;
    background: linear-gradient(to bottom, #5f8ac0 0%, #05499c 33%,#05499c 100%);
    border-radius: 5px;
}

.submenu-wrap ul{
    display: flex;
    padding: 5px;
    border: 1px solid #0051bc;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,81,188,0.15);
   
}

.submenu-wrap ul li a{
    text-decoration: none;
    color: #3e3e3e;
    font-size: 13px;
    letter-spacing: -2px;
    padding: 5px 8px;
    font-weight: 600;
}

.submenu-wrap ul li a:hover{
    color: #0051bc;
}

.balloon {
    position: absolute;  
    margin-top: 10px;
    background: #fff;
    display: none;

}

.balloon::after,
.balloon::before{
    content:''; 
    position:absolute; 
    width:0; 
    height:0; 
    border: solid transparent;
    pointer-events: none;
    border-color: rgba(194, 225, 245, 0);

}

.balloon::before{
	border-bottom-color: #0051bc;
	border-width: 8px;
    margin-left: -8px;
    top: -15px;
}
.balloon::after {
	border-bottom-color:#fff;
	border-width: 7px;
    margin-left: -7px;
    top: -13px;
}

.balloon_1::before,
.balloon_1::after{
    left:12%;
}

.balloon_2::before,
.balloon_2::after{
    left:57.5%;
}

.balloon_3::before,
.balloon_3::after{
    left:40.5%;
}

.balloon_5::before,
.balloon_5::after{
    left:81.5%;
}

