#header{
    width: 100%;
    background-color: #fff;
    position: fixed;
    z-index: 99;
}

.header01{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    box-sizing: border-box;
    border-bottom: 1px solid #e5e5e5;
}

.header01 a{
    display: flex;
    align-items: center;
    justify-content: center;
}

#gnb{
    width: 680px;
}

#gnb ul{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#gnb ul li{
    text-align: center;
}

#gnb ul li:first-child,
#gnb ul li:nth-child(2),
#gnb ul li:nth-child(3),
#gnb ul li:nth-child(4){
    width: 22%;
}

#gnb ul li:last-child{
    width: 65px;
}

#gnb ul li a{
    font-family: 'paybooc-Bold', sans-serif;
    font-size: 20px;
    color: #333;
    display: inline-block;
    padding: 25px 15px;
    position: relative;
}

#gnb ul li a:after,
#gnb ul li a:before {
    transition: all .5s;
}

#gnb ul li a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto -2px;
    width: 0%;
    content: '.';
    color: transparent;
    background: #144f92;
    height: 2px;
}

#gnb ul li a:hover:after {
    width: 100%;
}

#gnb ul li a:hover{
    color: #144f92;
}

.ver{
    cursor: pointer;
    border: 1px solid #00529b;
    padding: 3px 15px;
    font-size: 16px;
    color: #144f92;
    display: inline-block;
    border-radius: 50px;
}

.header02{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 20px 5%;
    box-sizing: border-box;
}

#lnb{
    width: 680px;
    display: flex;
    justify-content: space-between;
}

#lnb ul:first-child,
#lnb ul:nth-child(2),
#lnb ul:nth-child(3),
#lnb ul:nth-child(4){
    width: 22%;
    text-align: center;
}

#lnb ul:last-child{
    width: 65px;
}

#lnb ul li{
    padding: 7px 0;
}

#lnb ul li a{
    font-family: 'paybooc-Medium', sans-serif;
    font-size: 14px;
    letter-spacing: -1px;
    color: #333;
}

#lnb ul li:hover a{
    color: #144f92;
}
