@charset "utf-8";

/*header*/
body {
    position: relative;
}

header {
    position: fixed;
    left: 0;
    top: 0;
    width: 848px;
    height: 104px;
    z-index: 10;
    background: url(../images/image1.jpg) no-repeat bottom;
}


header #gnb {
    width: 100%;
    box-sizing: border-box;
    background: #325298;
}



header #gnb > ul {
    display: flex;
    justify-content: center;
}

header #gnb > ul > li {
    width: 110px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1)
}

header #gnb > ul > li:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1)
}


header #gnb > ul > li > a {
    height: 17px;
    line-height: 17px;
    display: block;
    font-size: 13px;
    padding: 4px 0;
}

header #gnb > ul > li:hover {
    background-color:  #5179d0;
}



header #gnb > ul > li:hover .submenu {
    display: block;
}


.member {
    position: absolute;
    font-size: 11px;
    width: 75px;
    height: 17px;
    right: 40px;
    text-align: center;
    top: 4px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    color: #325298;
}


.submenu {
    position: absolute;
    left: 0;
    top: 25px;
    background-color: #f5f5f5;
    height: 30px;
    line-height: 30px;
    width: 100%;
    display: none;
}


.submenu li {
    display: inline;
    /*    padding: 0 8px;*/
    height: 30px;
}



.submenu a {
    display: inline-block;
    color: #666;
    font-size: 12px;
    padding: 0 8px;
}



.submenu li a:hover {
    font-weight: 500;
    color: #222;
    background-color: #fff;
}










/*글자*/
.text {
    position: absolute;
    right: 25%;
    top: 45%;
    color: #fff;
    font-weight: lighter;
    line-height: 17px;
    font-size: 14px;
}

