@charset "UTF-8";

/* header */
.header{
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    font-family: 'Pretendard',sans-serif;
}
.header .hd-inner{
    position: relative;
    padding: 0 20px;
    max-width: 1160px;
    margin: 0 auto;    
    width: 100%;
    height: 100%;
}
.header .flex-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}
.header .hd-logo{
    width: 132px;
    height: 32px;
}
.header .hd-logo svg{
    width: 100%;
    height: auto;
}
.header .nav-area{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.header .nav-list{
    display: flex;
    gap: 50px;
}
.header .nav-item{}
.header .nav-item a{
    font-size: 20px;
    font-weight: 600;
    color: #AAA9A7;
}
.header .nav-item.on a{
    color: #000;
}
.header .lang-area{
    position: relative;
}
.header .lang-area .btn-lang{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 56px;
    height: auto;
    color: #666563;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Pretendard',sans-serif;
}
.header .lang-area .ico-lang-arrow{
    display: flex;
    align-items: center;
}
.header .lang-area .ico-lang-arrow svg{
    width: 20px;
    height: 20px;
}
.header .lang-list-box{
    z-index: 10;
    display: none;
    position: absolute;
    top: 100%;
    right: -12px;
    margin-top: 17px;
    padding: 14px 16px;
    text-align: center;
    width: 104px;
    border: 1px solid #E2E1E0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
}
.header .lang-list{}
.header .lang-item{
    margin: 2px 0;
}
.header .lang-item a{
    display: block;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 500;
    color: #666563;
    border-radius: 8px;
    transition: .3s background;
}
.header .lang-item a:hover{
    background: #F6F6F4;
}

.header .lang-area.on .ico-lang-arrow{
    transform: rotate(180deg);
}
.header .lang-area.on .lang-list-box{
    display: block;
}


@media(max-width: 1024px){
    /* header */
    .header{
        height: 116px;
        transition: .3s ease-in-out;
    }
    .header.hide{
        transform: translateY(-60px);
    }
    .header .flex-inner{
        height: 60px;
    }
    .header .hd-logo{
        width: 100px;
        height: 24px;
    }
    .header .nav-area{
        position: relative;
        transform: translate(0);
        top: 0;
        left: 0;
        height: 56px;
        display: flex;
        align-items: center;
    }
    .header .nav-list{
        gap: 20px;
    }
    .header .nav-item a{
        font-size: 17px;
    }

    .header .lang-area{}
    .header .lang-area .btn-lang-box{
        display: flex;
        justify-content: center;
        width: 70px;
        height: 36px;
        border-radius: 8px;
        border: 1px solid #E2E1E0;
    }
    .header .lang-area .btn-lang{
        justify-content: center;
        gap: 4px;
        width: 100%;
        height: 100%;
        font-size: 12px;
    }
    .header .lang-area .ico-lang-arrow svg{
        width: 14px;
        height: 14px;
    }
    .header .lang-list-box{
        margin-top: 10px;
        right: 0;
        padding: 12px 13px;
        width: 88px;
        border-radius: 8px;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
    }
    .header .lang-item a{
        padding: 10px 0;
        font-size: 14px;
        border-radius: 6px;
    }
}

/* footer */
.footer{
    padding: 80px 0;
    background: #222220;
    font-size: 16px;
    color: #AAA9A7;
    font-family: 'Pretendard',sans-serif;
}
.footer .ft-inner{
    position: relative;
    padding: 0 20px;
    max-width: 1160px;
    margin: 0 auto;
}
.footer .num-area{
    display: flex;
    gap: 40px;
}
.footer .num-item{
    display: flex;
    gap: 6px;
}
.footer .link-num{
    font-weight: 600;
}
.footer .adcheck-item{
    position: absolute;
    top: 0;
    right: 20px;
    display: flex;
    gap: 6px;
}
.footer .adcheck-item .num{}
.footer .btm-area{
    margin-top: 24px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer .btm-area .flex-inner{
    display: flex;
    justify-content: space-between;
}
.footer .btm-area .ft-logo{
    width: 138px;
    height: 36px;
}
.footer .btm-area .ft-logo svg{
    width: 100%;
    height: 100%;
}
.footer .btm-area .address-area{
    font-size: 14px;
    line-height: 1.5;
    color: #666563;
}
.footer .btm-area .address{}
.footer .btm-area .copyright{}

@media(max-width: 1024px){
    /* footer */
    .footer{
        padding: 60px 0 50px;
        font-size: 13px;
    }
    .footer .num-area{
        flex-direction: column;
        gap: 16px;
    }
    .footer .num-item{
        gap: 4px;
    }
    .footer .adcheck-item{
        position: static;
        margin-top: 16px;
        gap: 4px;
    }
    .footer .btm-area{
        margin-top: 30px;
        padding-top: 30px;
    }
    .footer .btm-area .flex-inner{
        flex-direction: column;
        gap: 16px;
    }
    .footer .btm-area .ft-logo{
        width: 92px;
        height: 25px;
    }
    .footer .btm-area .address-area{
        font-size: 10px;
    }
}