.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.6);
    z-index: 999;
}

.header.at-top {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.3);
}

.header-logo {
    margin-left: 124px;
    margin-top: 16px;
    display: flex;
    height: 56px;
}

.header-logo a {
    display: flex;
}

.header-logo-img {
    width: 106px;
    height: 56px;
    align-self: flex-end;
}

.header-logo-text {
    margin-left: 20px;
    width: 286px;
    height: 44px;
}

.header-nav {
    display: flex;
    justify-content: right;
    width: 100%;
    padding: 0 60px;
}

.header-nav .header-nav-item {
    flex: auto;
    max-width: 200px;
    font-size: 22px;
    text-align: center;
    white-space: nowrap;
}

.header-nav .header-nav-item a {
    color: #383838;
}

.header-nav .header-nav-item.active a {
    color: #2A82E4;
}

.banner {
    position: relative;
    width: 100%;
    height: 650px;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .banner-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 650px;
    text-align: center;
    background-color: rgba(42, 130, 228, 0.33);
}

.banner .banner-title {
    margin-top: 262px;
    font-size: 100px;
    color: #FFFFFF;
    letter-spacing: 26px;
}

.banner .banner-title-en {
    font-size: 70px;
    color: #FFFFFF;
    font-weight: lighter;
}

.footer {
    padding: 50px 30px 40px;
    color: #FFFFFF;
    background-color: #122C7A;
}

.footer-logo {
    display: flex;
    margin-left: 94px;
}

.footer-logo-img {
    width: 106px;
    height: 61px;
}

.footer-logo-text {
    margin-left: 10px;
    width: 286px;
    height: 44px;
}

.footer-content {
    margin-left: 210px;
    line-height: 2em;
    font-size: 26px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    margin: 30px auto 0;
    font-size: 26px;
    white-space: nowrap;
    max-width: 1280px;
}

.footer-nav-item {
    flex: auto;
    text-align: center;
}

.footer-nav a {
    color: #FFFFFF;
}

.footer-nav-separator {
    height: 36px;
    width: 1px;
    background-color: #FFFFFF;
}

.footer-copyright {
    margin-top: 40px;
    font-size: 22px;
    text-align: center;
    color: #dddddd;
}

.footer-copyright .footer-copyright-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.footer-copyright .footer-copyright-separator {
    margin: 0 20px;
    height: 26px;
    width: 1px;
    background-color: #dddddd;
}

.footer-copyright a {
    color: #dddddd;
    text-decoration: underline;
}

@media only screen and (max-width: 992px) {
    .header {
        height: 100px;
    }

    .header-logo-text {
        display: none;
    }

    .header-nav {
        padding-right: 0;
    }

    .header-nav .header-nav-item {
        font-size: 32px;
    }

    .footer-content {
        font-size: 32px;
    }

    .footer-nav {
        font-size: 32px;
    }

    .footer-copyright {
        font-size: 28px;
    }
}

@media only screen and (max-width: 1280px) {
    .header-logo {
        margin-left: 30px;
    }

    .footer-logo {
        margin-left: 0;
    }

    .footer-content {
        margin-left: 116px;
    }
}