#header{
    width: 90%;
    height: 90px;
    position: fixed;
    top: 40px;
    left: 100px;
    z-index: 99999;
}
#header.hide{
    opacity: 0;
}
#header.hover,
#header.scroll{
    background-color: #fff;
}
.h02{
    width: 100%;
    height: 250px;
    background-color: #fff;
    border-radius: 0 0 20px 20px;
    display: none;
    position: relative;
    z-index: 2;
}
.h01{
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 20px;
}
.header_center{
    width: 100%;
    min-width: 1200px;
    margin: 0 auto;
    height: 100%;
    position: relative;
}
.header_center>a{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 300px;
}
.header_center>a img{
    width: 100%;
}
ul.main_menu{
    width: max-content;
    height: 100%;
    position: absolute;
    top: 0;
    left: 52%;
    transform: translateX(-50%);
    display: flex;
    gap: 0 6vw;
    align-items: center;
    z-index: 3;
}
ul.main_menu>li{
    position: relative;
    height: 100%;
}
ul.main_menu>li:last-child{
    margin-right: 0;
}
ul.main_menu>li>a{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-family: 'SUIT-Bold', sans-serif;
    color: #111111;
    position: relative;
    transition: color .5s;
}
ul.main_menu>li:hover>a{
    border-bottom: 2pt solid #48aac8;
}
ul.sub_menu{
    width: max-content;
    position: absolute;
    top: 100px;
    left: 52%;
    transform: translateX(-50%);
    padding-top: 10px;
    display: none;
}
ul.sub_menu li{
    text-align: center;
    margin-top: 17px;
    cursor: pointer;
}
ul.sub_menu li a{
    font-size: 18px;
    font-family: 'SUIT-Regular', sans-serif;
    color: #555555;
}
ul.sub_menu li:hover a{
    color: #48aac8;
}
ul.sub_menu li:first-child{
    margin-top: 0;
}
.menu_icon{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    transition: color .5s;
    cursor: pointer;
    width: 180px;
    padding: 13px 0;
    gap: 0 15px;
    border-radius: 10px;
    background: linear-gradient(129deg, #48aac8, #7064ad);
}
.menu_icon a{
    font-size: 23px;
    font-family: 'SUIT-Bold', sans-serif;
    color: #fff;
}
.menu_icon2{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 150%;
    right: 30px;
    transform: translateY(-50%);
    transition: color .5s;
    cursor: pointer;
    width: 180px;
    padding: 13px 0;
    gap: 0 15px;
    border-radius: 10px;
    background: linear-gradient(129deg, #48aac8, #7064ad);
}
.menu_icon2 a{
    font-size: 18px;
    font-family: 'SUIT-Bold', sans-serif;
    color: #fff;
}
.menu_icon3{
     display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 150%;
    right: 225px;
    transform: translateY(-50%);
    transition: color .5s;
    padding: 13px 15px;
    gap: 0 15px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #236ba5;
    box-sizing: border-box;
}
.menu_icon3 p{
    color: transparent;
	background: linear-gradient(129deg, #48aac8, #7064ad);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'SUIT-Bold', sans-serif;
    font-size: 18px;
}
#m_header, #sitemap{
    display: none;
}

/* mobile */
@media screen and (max-width: 767px){ 
    #header{
        display: none;
    }
    #m_header{
        display: block;
        width: 100%;
        height: 70px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99999;
        background-color: #fff;
    }
    #m_header .center1{
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #m_header .center1>a{
        display: block;
        width: 250px;
        margin: 0 auto;
    }
    #m_header .center1>a img{
        width: 100%;
    }
    #m_header i{
        font-size: 24px;
        color: #111111;
    }
    .menu_icon{
        top: 100px;
        right: 15px;
        width: 100px;
        padding: 7px 0;
        gap: 0 7px;
    }
    .menu_icon a {
        font-size: 12px;
    }
    .menu_icon2{
        top: 140px;
        right: 15px;
        width: 100px;
        padding: 7px 0;
        gap: 0 7px;
    }
    .menu_icon2 a {
        font-size: 12px;
    }
    .menu_icon3{
        top: 190px;
        right: 15px;
        padding: 7px 10px;
    }
    .menu_icon3 p{
        font-size: 12px;
    }
    
    /* site_map */
    #sitemap{
        display: block;
        width: 100%;
        height: 100vh;
        background-color: rgba(63, 92, 139, 0.9);
        position: fixed;
        top: 0;
        right: 0;
        z-index: 999999; 
        transform: translateX(100%);
        transition: transform .8s;
    }
    #sitemap.show{
        transform: translateX(0);
    }
    .close_btn{
        display: flex;
        justify-content: flex-end;
        padding-right: 18px;
        padding-top: 25px;
    }
    #sitemap i{
        font-size: 24px;
        color: #fff;
    }
    .st_box{
        padding: 12vh 15% 0;
        overflow: auto;
        width: 100%;
        height: 100%;
    }
    .st_menu ul{
        width: 100%;
        display: none;
    }
    .st_menu p{
        font-size: 18px;
        color: #fff;
        font-family: 'Pretendard-Bold', sans-serif;
        padding: 15px 0;
    }
    .st_menu li{
        padding: 10px 0;
    }
    .st_menu a{
        font-size: 16px;
        color: #fff;
        font-family: 'Pretendard-Regular', sans-serif;
    }

}

/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){
    #header{
        display: none;
    }
    #m_header{
        display: block;
        width: 100%;
        height: 90px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99999;
        background-color: #fff;
    }
    #m_header .center1{
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #m_header .center1>a{
        display: block;
        width: 300px;
        margin: 0 auto;
    }
    #m_header .center1>a img{
        width: 100%;
    }
    #m_header i{
        font-size: 28px;
        color: #111111;
    }
    .menu_icon{
        top: 150px;
        right: 50px;
        width: 120px;
        padding: 12px 0;
        gap: 0 12px;
    }
    .menu_icon a {
        font-size: 14px;
    }
    .menu_icon2{
        top: 200px;
        right: 50px;
        width: 120px;
        padding: 12px 0;
        gap: 0 12px;
    }
    .menu_icon2 a {
        font-size: 14px;
    }
    
     .menu_icon3{
        top: 250px;
        right: 50px;
        padding: 12px 10px;
    }
    .menu_icon3 p{
        font-size: 14px;
    }

    /* site_map */
    #sitemap{
        display: block;
        width: 100%;
        height: 100vh;
        background-color: rgba(63, 92, 139, 0.9);
        position: fixed;
        top: 0;
        right: 0;
        z-index: 999999; 
        transform: translateX(100%);
        transition: transform .8s;
    }
    #sitemap.show{
        transform: translateX(0);
    }
    .close_btn{
        display: flex;
        justify-content: flex-end;
        padding-right: 45px;
        padding-top: 30px;
    }
    #sitemap i{
        font-size: 28px;
        color: #fff;
    }
    .st_box{
        padding: 12vh 15% 0;
        overflow: auto;
        width: 100%;
        height: 100%;
    }
    .st_menu ul{
        width: 100%;
        display: none;
    }
    .st_menu p{
        font-size: 20px;
        color: #fff;
        font-family: 'Pretendard-Bold', sans-serif;
        padding: 15px 0;
    }
    .st_menu li{
        padding: 15px 0;
    }
    .st_menu a{
        font-size: 18px;
        color: #fff;
        font-family: 'Pretendard-Regular', sans-serif;
    }

}