#header{
    width: 100%;
    background-color: transparent;
    /* position: fixed; */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 991;
    transition-duration: 1s;
}

#header.hover{
    background-color: #fff;
}

#header.hover ul.main_menu>li a{
    color: #111;
    font-family: 'Pretendard-Medium', sans-serif;
}

#header.hover .language a{
    border: 1px solid #111;
    color: #333;
    font-family: 'Pretendard-Regular', sans-serif;
}

.h01{
    width: 100%;
    height: 100px;
    padding: 0 5%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.h01>a{
    display: flex;
    align-items: center;
    justify-content: center;   
}

.mainmenu_lang{
    display: flex;
    align-items: center;
}

ul.main_menu{
    height: 100%;
    display: flex;
}

ul.main_menu>li{
    width: 180px;
    position: relative;
}

ul.main_menu>li a{
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    font-family: 'Pretendard-Regular', sans-serif;
    position: relative;
}

ul.main_menu>li a span{
    position: absolute;
    left: 76px;
    width: 0%;
    height: 4px;
    bottom: 0px;
    display: block;
    position: absolute;
    transition: all 0.3s ease-out;
    background-color: #004ca2;
}

ul.main_menu>li a span.motion{
    width: 100%;
    left: 0;
}

ul.sub_menu{
    width: 100%;
    position: absolute;
    top: 100px;
    left: 0;
    padding: 20px 0;
    display: none;
}

ul.sub_menu li{
    width: 100%;
    text-align: center;
    padding: 8px 0;
    font-size: 18px;
    color: #111;
    font-family: 'Pretendard-Light', sans-serif;
    cursor: pointer;
}

ul.sub_menu li:hover{
    font-family: 'Pretendard-SemiBold', sans-serif;
}

.language{
    margin-left: 200px;
}

.language a{
    width: 65px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid #fff;
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Pretendard-Light', sans-serif;
}

.h02{
    width: 100%;
    height: 200px;
    border-top: 1px solid #ccc;
    box-sizing: border-box;
    display: none;
}