:root {
    --nav-left: 200px;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100vw;
    background: #040407;
    height: max-content;
    overflow-x: hidden;
    padding-right: calc(100vw - 100%);
}

.container {
    position: relative;
    overflow: hidden;
}

/* nav */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    padding: 40px 0;
    z-index: 100;
}
.nav-box {
    position: relative;
    width: 100%;
    max-width: 1920px;
    padding: 0 var(--nav-left);
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
    margin: 0 auto;
    gap: 20px;
}
.nav-box .logo_menu {
    width: 264px;
    min-width: 180px;
    text-decoration: none;
    cursor: pointer;
    pointer-events: initial;
}
.nav-box .logo-text {
    margin-top: 6px;
    text-align: justify;
    text-align-last: justify;
    font-family: "FZLTHJW";
    font-size: 14px;
    color: #cacaca;
    pointer-events: initial;
}
.nav-box .nav-menu {
    position: relative;
    display: flex;
    gap: 60px;
}
.nav-menu .route {
    position: relative;
    display: block;
    text-decoration: none;
    font-size: 26px;
    font-family: "BaiJamjureeMedium";
    color: #cacaca;
    height: min-content;
    pointer-events: initial;
}

.nav-box.blue .route {
    color: #0a0a4b;
}
.nav-box.grey .route {
    color: #cacaca;
}
.nav-box.blue .logo-text {
    color: #0a0a4b;
}
.nav-box.grey .logo-text {
    color: #cacaca;
}

.route.blue {
    color: #0a6bff;
}
.route.grey {
    color: #cacaca;
}

.btn-openNav {
    margin-left: 10px;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    background-color: rgb(255, 124, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.btn-openNav span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #0141b2;
}

.page {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    min-width: 800px;
    max-width: 1920px;
}

.footer {
    position: relative;
    min-height: 430px;
    overflow: hidden;
}
.footer_inner {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 150px var(--nav-left) 0 var(--nav-left);
    color: #cacaca;
}
.footer_inner .left {
    margin-right: 20px;
}
.footer_inner .right {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer_inner .logo_footer {
    width: 100px;
}
.footer_inner .company-box {
    margin-top: 20px;
    width: max-content;
}
.footer_inner div {
    font-size: 21px;
    line-height: 1.5;
    font-family: "BaiJamjureeMedium";
}
.footer_inner .company-name {
    font-size: 12px;
    text-align: justify;
    text-align-last: justify;
    font-family: "FZLTHJW";
}
.footer_inner .copyright {
    margin-top: 100px;
    font-size: 10px;
    font-family: "FZLTHJW";
}

.footer_inner .icons {
    display: flex;
    align-items: center;
    gap: 25px;
}
.footer_inner a.route {
    position: relative;
    width: max-content;
    text-decoration: none;
    font-size: 28px;
    font-family: "BaiJamjureeMedium";
    color: #cacaca;
    line-height: 1;
}

/* video */
.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    color: #fff;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 1px;
    white-space: nowrap;
    cursor: pointer;
    transition: opacity 0.15s linear;
    text-shadow: 1px 1px 2px #000;
    z-index: 10;
}
.video-btn {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #fff;
    margin-left: 5px;
    filter: drop-shadow(1px 1px 1px #000);
}
.video-btn.play:after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(50% + 1px);
    transform: translate(-50%, -50%);
    border-radius: 2px;
    /*background-color: #fff;*/
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #fff;
}
.video-btn.pause::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 6px;
    width: 2px;
    height: 8px;
    background-color: white;
}
.video-btn.pause::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 6px;
    width: 2px;
    height: 8px;
    background-color: white;
}
.hide {
    opacity: 0;
}

a {
    color: #fff;
}

/* fadeUp */
.fadeUp {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: all 0.6s ease-out;
}
.fadeUp.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
/* fadeLeft */
.fadeLeft {
    opacity: 0;
    transform: translate3d(-30%, 0, 0);
    transition: all 0.6s ease-out;
}
.fadeLeft.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
/* fadeRight */
.fadeRight {
    opacity: 0;
    transform: translate3d(30%, 0, 0);
    transition: all 0.6s ease-out;
}
.fadeRight.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
/* s2b */
.s2b {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.45s ease-out;
}
.s2b.active {
    opacity: 1;
    transform: scale(1);
}
/* delay */
.useAnimate.delay_150 {
    transition-delay: 0.15s;
}
.useAnimate.delay_300 {
    transition-delay: 0.3s;
}
.useAnimate.delay_450 {
    transition-delay: 0.45s;
}
.useAnimate.delay_600 {
    transition-delay: 0.6s;
}

@media screen and (max-width: 767px) {
    body {
        overflow-x: auto;
    }
    .container {
        --scale: calc(100vw / 1920);
        transform-origin: left top;
        transform: scale(var(--scale));
        width: 1920px;
    }
}
