@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: #383838;
    font-family: "Noto Sans CJK KR", "Roboto", "나눔 돋움";
    text-align: center;
}

.hidden {
    width: 0;
    height: 0;
    visibility: hidden;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

li {
    list-style: none;
    float: left;
}

#wrap {
    width: 100%;
    margin: auto;
    text-align: center;
}

.header {
    width: 100%;
    height: 105px;
    background-color: #fff;
    position: relative;
    z-index: 1;

}

.lnb {
    width: 1024px;
    margin: 0 auto;
}

.logo {
    margin: 20px 30px 0 0;
    width: 98px;
    height: 50px;
    float: left;
    transform: scale(0.9);

}


.menu {
    display: block;
}

.menu > li {
    font-weight: 400;
    font-size: 16px;
    height: 105px;
    width: 130px;
    margin: 0 10px 0 10px
}

.menu > li > a {
    line-height: 105px;
}

.menu > li > a:hover {
    border-bottom: 3px solid #FED653;
}

.nav > ul > li {
    width: 130px;
    margin: 0 10px 0 10px;
    line-height: 50px;
    position: relative;
}

.gnb {
    margin: auto;
    line-height: 105px;
    float: right;
}

.gnb > ul > li {
    display: block;
    margin-right: 38px;
    transform: scale(0.8)
}

.sub {
    position: absolute;
    width: 160px;
    background-color: rgba(242, 242, 242, 0.9);
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.sub > li > a {
    display: block;
    font-weight: 400;
    font-size: 15px;
    width: 160px;
    border-bottom: 1px solid #006bd5;
}

.menu :hover .sub {
    height: 100px;
    opacity: 1;
}

.sub > li > a:hover {
    background-color: #FC584F;
    color: #fff;
}
