/* header */
header{
    height: 90px;
    width: 100%;
    z-index: 99;
    position: sticky;
    position: -webkit-sticky;
    top: 0; left: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #aaaaaa;
}
header.main-header{
    height: 90px;
    width: 100%;
    z-index: 99;
    position: fixed;
    top: 0; left: 0;
    background-color: transparent;
    border-bottom: 0;
}
.header-inner{
    width: 100%; height: 100%;
    max-width: 1250px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}
.header-logo{
    width: 15%;
    max-width: 160px;
    min-width: 120px;
}
.main-menu > ul{
    display: flex;
    align-items: center;
}
.main-menu > ul > li{
    position: relative;
    margin-right: 15px;
}
.main-menu > ul > li > div{
    padding: 10px;
    display: block;
    cursor: pointer;
}
.main-header .main-menu > ul > li > div{
    color: #ffffff;
}

.main-menu > ul > li > div:hover,
.main-menu > ul > li > div.active{
    color: var(--color-blue);
}
/* header drop menu */
.main-menu .sub-menu{
    position: absolute;
    left: 50%; top: 100%;
    transform: translateX(-50%);
    background-color: #ffffff;
    width: max-content;
    border-top: 2px solid var(--color-blue);
}
.main-menu .sub-menu > li{
    width: 100%; height: 30px;
    margin-bottom: 5px;
    text-align: center;
}
.main-menu .sub-menu > li:last-of-type{
    margin-bottom: 0;
}
.main-menu .sub-menu > li > a{
    width: 100%; height: 100%;
    padding: 10px;
    display: block;
    font-size: 14px;
}
.main-menu .sub-menu > li > a:hover,
.main-menu .sub-menu > li > a.active{
    color: var(--color-blue);
}
.language{
    display: flex;
    align-items: center;
    font-size: 12px;
}
.language a{
    font-size: 12px;
    margin: 0 5px;
}
.main-header .language li{color: #ffffff;}
.main-header .language a{
    color: #ffffff;
}
/* 모바일 header */
.m-header{
    z-index: 99;
    height: 65px;
    padding: 0 30px;
    display: none;
    align-items: center;
    justify-content: space-between;
}
.m-menu-btn{
    width: 24px; height: 24px;
}
.m-menu-bg{
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    position: fixed;
    top: 0; left: 0;
    z-index: 100;
    display: none;
}
.m-menu-wrap{
    width: 0; height: 100%;
    position: fixed;
    right: 0; top: 0;
    z-index: 101;
    background: #ffffff;
}
.inner-logo{
    background: var(--color-navy);
    height: 65px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.inner-logo > img{
    width: auto;
    max-width: 120px;
    min-width: 100px;
}
.inner-logo .close{
    width: 24px;
    padding: 3px;
}
.m-menu > ul > li > div{
    display: block;
    padding: 20px;
    background: url(../images/arrow-down.png) no-repeat 95% 50%;
    background-size: 14px;
    cursor: pointer;
}
.m-menu > ul > li > div.active{
    display: block;
    padding: 20px;
    background: url(../images/arrow-up.png) no-repeat 95% 50%;
    background-size: 14px;
}
.m-menu > ul > li > div.on{
    color: var(--color-blue);
}
.m-menu .sub-menu{
    display: block;
    background-color: #F6F6F6;
}
.m-menu .sub-menu li{
    margin-bottom: 5px;
}
.m-menu .sub-menu li a{
    display: block;
    padding: 15px 20px;
}

/* footer */
footer{
    background: #101a43;
}
.footer-inner{
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 30px;
}
.footer-menu{
    border-bottom: 1px solid #707070;
}
.footer-menu ul{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}
.footer-menu ul li{
    margin-right: 60px;
}
.footer-menu ul li:last-of-type{
    margin-right: 0;
}
.footer-menu ul li a{
    display: block;
    width: 100%; height: 100%;
    color: #73788d;
    padding: 5px 20px;
}
.footer-menu ul li:nth-of-type(3) a{
    color: #bfc2cd;
}
.company-info{
    text-align: center;
}
.company-info .footer-logo{
    max-width: 120px;
    margin: 65px 0 20px;
    display: inline-block;
}
.company-info p{
    color: #c8c8c8;
    line-height: 25px;
    opacity: 0.5;
}
.footer-inner .copy{
    color: #c8c8c8;
    opacity: 0.5;
    padding: 68px 0 40px;
    text-align: center;
}
@media screen and (max-width: 1160px) {
    .main-menu > ul > li > a{
        font-size: 16px;
    }
    .main-menu > ul > li{
        margin-right: 5px;
    }
}
@media screen and (max-width: 960px) {
    header, header.main-header{height: 65px;}
    .header-inner{display: none;}
    .m-header{display: flex;}
    .footer-menu ul li{margin-right: 30px;}
}
@media screen and (max-width: 640px) {
    .footer-menu ul{height: 50px;}
    .footer-menu ul li a{padding: 5px 10px;}
    .footer-menu ul li{margin-right: 5px;}
    .company-info .footer-logo{margin: 40px 0 20px;}
    .footer-inner .copy{padding: 40px 0 20px;}
}
@media screen and (max-width: 415px) {
    .footer-menu ul li a{
        font-size: 12px;
        padding: 5px;
    }
}


/* 번역 비활성화 */
.language > li > a {
pointer-events: none;
cursor: default;
}
