@charset "UTF-8";

.container{
    max-width: 2560px;
    margin: 0 auto;
}
.inner{
    padding: 0 clamp(32px,3.15vw,60px);
    margin: 0 auto;
}
.flex-inner{
    display: flex;
}

@media(max-width: 1023px){
    .inner{
        padding: 0 20px;
    }
}

body{
    background: #1e1e1e;
    color: #fff;

    /* transition: background-color .4s; */
    /* transition: color .65s cubic-bezier(0.72, 0, 0.28, 1), background .65s cubic-bezier(0.72, 0, 0.28, 1); 
    will-change: color, background; */
}
/* body.theme-dark{
    background: #1e1e1e;
}
body.theme-white{
    background: #fff;
    color: #1e1e1e;
}
body.theme-gray{
    background: #f5f5f5;
} */

body.theme-white .header{
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
}
body.theme-white .header .ham-menu-area .btn-ham-menu{
    filter: invert(1);
}
body.theme-white .header .logo svg{
    filter: invert(1);
}
body.theme-white .header .lang-box .link-lang.active{
    color: #1e1e1e;
}
body.theme-white .header .nav-item a{
    color: #1e1e1e;
}

body.theme-gray .header{
    /* background: #f5f5f5; */
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
}
body.theme-gray .header .ham-menu-area .btn-ham-menu{
    filter: invert(1);
}
body.theme-gray .header .logo svg{
    filter: invert(1);
}
body.theme-gray .header .lang-box .link-lang.active{
    color: #1e1e1e;
}
body.theme-gray .header .nav-item a{
    color: #1e1e1e;
}


/* ========== header ========== */
.header{
    z-index: 999;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 90px;
    border-bottom: 1px solid #4b4b4b;
    background: #1e1e1e;

    will-change: transform;
    transition: transform .65s cubic-bezier(0.72, 0, 0.28, 1);;
}
.header.hide{
    transform: translateY(-100%);
}
.header .hd-inner{
    padding: 0 clamp(32px, 3.15vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 2560px;
    margin: 0 auto;
}
.header .logo{
    width: 48px;
    height: auto;
}
.header .logo svg{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header .right{
    display: flex;
    gap: 30px;
}
.header .nav{}
.header .nav-list{
    display: flex;
    gap: 30px;
}
.header .nav-item{}
.header .nav-item a{
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
.header .lang-box{
    display: flex;
    gap: 15px;
}
.header .lang-box .link-lang{
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #8E8E8E;
}
.header .lang-box .link-lang + .link-lang::before{
    content: '/';
    position: absolute;
    left: -10px;
}
.header .lang-box .link-lang.active{
    color: #fff;
}

@media(max-width:1023px){
    .header{
        height: 54px;
    }
    .header .hd-inner{
        padding: 0 20px;
    }
    .header .logo{
        width: 40px;
    }
    .header .right{
        display: none;
    }
}


/* ========== 모바일 햄버거 메뉴 ========== */
/* 햄버거버튼 */
.ham-menu-area{
    display: none;
}

/* aside */
.aside{
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: #1e1e1e;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    user-select: none;
    transition: .3s ease-in-out;
}
.aside.show{
    opacity: 1;
    visibility: visible;
    user-select: inherit;
    pointer-events: all;
}

.aside .aside-scroll-wrap{
    height: 100%;
    overflow-y: auto;
}
.aside .aside-scroll{
    width: 100%;
    height: 100%;
    /* min-height: 100%; */
}
.aside .aside-cont{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.aside .aside-header{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 54px;
    border-bottom: 1px solid #4b4b4b;
}
.aside .aside-header .aside-hd-inner{
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}
.aside .aside-header .logo{
    width: 40px;
    height: auto;
}
.aside .aside-header .logo svg{
    width: 100%;
    height: 100%;
}
.aside .ham-menu-area{
    display: block;
    position: relative;
    width: 24px;
    height: 24px;
}
.aside .ham-menu-area .btn-ham-close{
    width: 100%;
    height: 100%;
    background: url('../img/header/btn_ham_close.png') no-repeat center / cover;
}

.aside .aside-menu-area{}
.aside .aside-menu-area .aside-list{
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.aside .aside-menu-area .aside-item{
    display: block;
    overflow: hidden;
}
.aside .aside-menu-area .link-aside{
    display: block; 
    overflow: hidden;

    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.aside .lang-area{
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 40px;

    display: flex;
    justify-content: center;
    gap: 15px;
}
.aside .lang-area .link-lang{
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #8E8E8E;
}
.aside .lang-area .link-lang + .link-lang::before{
    content: '/';
    position: absolute;
    left: -10px;
} 
.aside .lang-area .link-lang.active{
    color: #fff;
}


@media(max-width:1023px){
    /* 햄버거 버튼 */
    .ham-menu-area{
        display: block;
        position: relative;
        width: 24px;
        height: 24px;
    }
    .ham-menu-area .btn-ham-menu{
        width: 100%;
        height: 100%;
        background: url('../img/header/btn_ham_menu.png') no-repeat center / cover;
    }

    /* aside */
}



/* ========== footer ========== */
.footer{
    height: clamp(60px,4.25vw,80px);
    background: #fff;
    color: #bbb; 
    border-top: 1px solid #d2d2d2;
}
.footer .ft-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}
.footer .copyright{
    font-size: 14px;
    font-weight: 500;
    /* font-family: "Neue Haas Grotesk Display Pro"; */
    /* font-family: "neue-haas-grotesk-display", sans-serif; */
}