#header{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    transition: background-color .5s;
}

#header.show{
    background-color: rgba(0, 0, 0, 0.65);
}

.h01{
    width: 100%;
    height: 80px;
    position: relative;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.h01>a{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    width: 13.75vw;
}

.h01>a img{
    width: 100%;
}

ul.main_menu{
    width: 45%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
}

ul.main_menu li{
    width: 165px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #fff;
    font-family: 'Pretendard-Regular', sans-serif;
    cursor: pointer;
}

.header_more{
    position: absolute;
    display: flex;
    align-items: center;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}

.lang{
    margin-right: 30px;
}

.lang ul{
    display: flex;
    align-items: center;
}

.lang ul li{
    font-size: 16px;
    line-height: 14px;
    color: #ccc;
    font-family: 'Pretendard-Regular', sans-serif;
    cursor: pointer;
}

.lang ul li.ver_on{
    color: #fff;
}

.lang ul li:first-child{
    padding-right: 12px;
    border-right: 1px solid #fff;
}

.lang ul li:last-child{
    padding-left: 12px;
}

.lang i{
    display: none;
}

.download,
.search{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    cursor: pointer;
}

.download i,
.search i{
    font-size: 32px;
    color: #fff;
}

.menu_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.h02{
    width: 100%;
    display: flex;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: opacity .5s, visibility .5s;
}

#header.show .h02{
    opacity: 1;
    visibility: visible;
    height: 100%;
}

.submenu_box{
    width: 45%;
    display: flex;
    justify-content: space-between;
    padding: 30px 0 50px;
}

ul.sub_menu{
    width: 165px;
}

ul.sub_menu li{
    font-size: 18px;
    color: #fff;
    font-family: 'Pretendard-Light', sans-serif;
    margin-bottom: 25px;
    cursor: pointer;
}

ul.sub_menu li:last-child{
    margin-bottom: 0;
}

ul.sub_menu li:hover{
    text-decoration: underline;
}





























/* mobile */
@media screen and (max-width: 767px){

    .h01{
        height: 65px;
    }

    .h01>a{
        width: 130px;
    }

    ul.main_menu{
        display: none;
    }

    .lang{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 8px;
    }

    .lang ul{
        display: none;
    }

    .lang i{
        display: block;
        font-size: 22px;
        color: #fff;
    }

    .download,
    .search{
        margin-right: 8px;
        cursor: inherit;
    }

    .download i,
    .search i{
        font-size: 24px;
    }

    .menu_btn{
        width: 20px;
        cursor: inherit;
    }

    .menu_btn img{
        width: 100%;
    }

    .h02{
        display: none;
    }

}























/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){

    .h01{
        height: 70px;
    }

    .h01>a{
        width: 200px;
    }

    ul.main_menu{
        display: none;
    }

    .lang{
        margin-right: 20px;
    }

    .lang ul li{
        font-size: 14px;
        line-height: 10px;
        cursor: inherit;
    }

    .download,
    .search{
        margin-right: 15px;
        cursor: inherit;
    }

    .download i,
    .search i{
        font-size: 26px;
    }

    .menu_btn{
        width: 24px;
        cursor: inherit;
    }

    .menu_btn img{
        width: 100%;
    }

    .h02{
        display: none;
    }

}

























/* pc_s */
@media screen and (min-width: 1025px) and (max-width: 1400px){

    .h01>a{
        left: 3%;
    }

    ul.main_menu{
        width: 50%;
    }

    ul.main_menu li{
        width: 150px;
        font-size: 18px;
    }

    .header_more{
        right: 3%;
    }

    .lang{
        margin-right: 20px;
    }

    .lang ul li{
        font-size: 14px;
        line-height: 10px;
    }

    .download,
    .search{
        margin-right: 15px;
    }

    .download i,
    .search i{
        font-size: 26px;
    }

    .menu_btn{
        width: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .menu_btn img{
        width: 100%;
    }

    .submenu_box{
        width: 50%;
    }

    ul.sub_menu{
        width: 150px;
    }

    ul.sub_menu li{
        font-size: 16px;
    }
}
