/* nav */

header {
    width: 100%;
    border-bottom: 1px solid rgba(2, 2, 2, .4);
}

nav {
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    z-index: 100;
    font-size: 1.7rem;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-sizing: border-box;
}

.nav_hover {
    font-size: 1.7rem;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    background-color: white;
    width: 100%;
    height: 330px;
    top: 0;
    left: 0px;
    z-index: 1000;
    box-sizing: border-box;
}

.logo {
    padding: 0px 50px;
}

.menu>li {
    float: left;
    width: 25rem;
    height: 100px;
    text-align: center;
    line-height: 100px;
    cursor: pointer;
    font-family: 'S-CoreDream-6Bold';
}

.sub_menu>li>a {
    display: block;
    width: 25rem;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-family: 'S-CoreDream-4Regular';
    font-size: 1.6rem;
}

.sub_menu>li>a:hover {
    background-color: #fcb017;
    color: white;
}

/* -----nav_popup--------- */

.nav_popup{
    display: none;
    width: 50%;
    height: 100%;
    background-color: #fff;
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 100000;
    padding: 50px 100px;
    text-align: right;
}

.nav_pop_main{
    margin-top: 150px;
}

.nav_pop_main li{
    font-family: 'S-CoreDream-5Medium';
    font-size: 5rem;
    margin: 50px 0px;
}

.nav_pop_sub{
    display: none;
}

.nav_pop_main .nav_pop_sub li{
    font-family: 'S-CoreDream-3Light';
    font-size: 2.7rem;
    margin: 20px 0px;
    transition: all .5s;
}

.nav_m{
    cursor: pointer;
    position: relative;
}

.nav_m.on>span{
    color: #fcb017;
}

.nav_pop_sub li:hover{
    color: #fcb017;
}

/* nav_btn */

.nav_btn{
    display: inline-block;
    width: 50px;
    height: 40px;
    position: fixed;
    top: 50px;
    right: 100px;
    cursor: pointer;
    z-index: 99999999;
}

.nav_btn span{
    display: inline-block;
    width: 50px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    right: 0px;
}

.bar1{
    top: 0px;
}

.bar2{
    top: 15px;
}

.bar3{
    top: 30px;
}

.nav_hover_btn span{
    background-color: #222;
}

.nav_pop_exit{
    width: 50px;
    height: 50px;
    position: fixed;
    top: 65px;
    right: 100px;
    cursor: pointer;
}

.nav_pop_exit span{
    display: inline-block;
    width: 50px;
    height: 3px;
    background-color: #222;
    position: absolute;
    top: 0px;
    right: 0px;
}

.nav_pop_exit .bar1{
    transform: rotate(0deg);
    transition: all 1s;
}

.nav_pop_exit .bar3{
    transform: rotate(0deg);
    transition: all 1s;
}

/* -------footer------- */

footer {
    margin-top: 50px;
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid #aaa;
}

.foot {
    display: flex;
}

footer ul{
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0px;
    box-sizing: border-box;
}

footer ul li span{
    display: inline-block;
    width: 1px;
    height: 13px;
    background-color: #777;
}

footer ul li {
    color: #777;
    font-size: 1.4rem;
    margin-right: 2rem;
}


/* 반응형 */

.s1_menu_business_786{
    display: none;
}