.page-header.fullscreen .wrapper-content {
    width: var(--wrapper-width-narrow);
    margin: 0 auto;
}

.page-header.fullscreen .page-desc {
    margin-bottom: calc(75 * var(--rpx));
}

.page-header.fullscreen .tags {
    justify-content: center;
}

.page-header.fullscreen .tag {
    color: #fff;
    background-color: rgba(255, 255, 255, .2);
}

section.main {
    padding-top: calc(72* var(--rpx));
    padding-bottom: calc(200* var(--rpx-50));
}

.main-top {
    width: 100%;
    /* height: var(--header-height); */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    background-color: #ECEDF1;
    transition: opacity .5s ease-in-out;
    will-change: transform;
}

.main-top.visible {
    z-index: 300;
    opacity: 1;
    visibility: visible;
}

.main-top .main-top__content {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(20 * var(--rpx)) 30px;
}

.main-top .view-progress {
    width: 0;
    height: 2px;
    background-color: #011A65;
    position: absolute;
    top: 100%;
    left: 0;
}

.side-icons {
    display: flex;
    gap: calc(30 * var(--rpx));
    justify-content: flex-end;
}

.side-icons .icon {
    font-weight: lighter;
    flex: 0 0 auto;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: color .5s linear;
}

.side-icons .icon:hover img {
    filter: url(#navy-overlay);
}

.side-icons .icon:hover {
    color: var(--theme-navy);
}

.side-icons .icon img {
    width: calc(50 * var(--rpx-75) * .6);
    height: calc(50 * var(--rpx-75) * .6);
    object-fit: contain;
    transition: all .5s linear;
}

.icon-hint {
    font-size: calc(12rem / 16);
    white-space: nowrap;
    pointer-events: none;
    padding-top: calc(12 * var(--rpx));
}

section.main {
    padding-top: var(--header-height);
    z-index: 300;
}

.sections {
    padding-top: var(--header-height);
}

.section-box {
    background-color: #fff;
    position: relative;
}

.section-box:nth-of-type(2n) {
    justify-content: flex-end;
}

.section-box .img,
.section-box .section-box-main {
    width: 50%;
    flex: 0 1 auto;
}

.section-box .section-box-main img {
    width: 100% !important;
}

.section-box .section-box-main .desc {
    text-align: justify;
}

.section-box .img {
    height: calc(100vh - var(--header-height));
    position: absolute;
    top: 0;
    will-change: transform;
}

.section-box:nth-of-type(odd) .section-box-main {
    margin-left: 50%;
}

.section-box:nth-of-type(odd) .img {
    left: 0;
}

.section-box:nth-child(even) .section-box-main {
    margin-right: 50%;
}

.section-box:nth-child(even) .img {
    right: 0;
}

.section-box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-box .section-box-main {
    max-width: var(--wrapper-width-narrow);
    /* padding-top: calc(calc(160 * var(--rpx) - var(--header-height))); */
    padding: calc(160 * var(--rpx)) 0;
}

.section-box .section-box-main .desc {
    text-align: justify;
}

.section-box:nth-of-type(odd) .section-box-main {
    padding-left: calc(80 * var(--rpx));
    padding-right: calc(40 * var(--rpx));
}

.section-box:nth-of-type(even) .section-box-main {
    padding-left: calc(40 * var(--rpx));
    padding-right: calc(80 * var(--rpx));
}

.section-box .section-box-main .label {
    font-size: calc(18 * var(--rpx));
    color: #C8B993;
    margin-bottom: calc(16 * var(--rpx));
}

.section-box.tech .section-box-main .label {
    color: var(--theme-navy);
}

.section-box.luxe .section-box-main .label {
    color: var(--theme-beige);
}

.section-box .section-box-main .section-title {
    margin-bottom: calc(14 * var(--rpx));
}

.desc a {
    text-decoration: underline;
    font-weight: bold;
    color: var(--theme-navy);
}

.desc a:hover {
    color: #fff;
    text-decoration-color: transparent;
    background-color: var(--theme-navy);
}

.wrapper.narrow {
    padding-bottom: calc(160* var(--rpx-50) - var(--header-height));
}

.wrapper.narrow .desc {
    padding-top: calc(60* var(--rpx-50));
}

.wrapper.narrow .description {
    font-size: calc(28 * var(--rpx));
}

.wrapper.narrow .description {
    font-size: calc(28 * var(--rpx));
}

.download {
    color: #000;
    width: calc(280 * var(--rpx));
    position: absolute;
    left: calc(100% + 80 * var(--rpx-50));
    top: calc(calc(80 * var(--rpx-50)) + var(--header-height));
}

.download::before {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #011A65;
    position: absolute;
}

.download .title {
    font-size: calc(16rem / 16);
    /* font-size: calc(16 * var(--rpx-50)); */
    padding: calc(18 * var(--rpx-50)) 0;
}

.download .files {
    --gap: 10;
    display: flex;
}

.download .files .item {
    /* font-size: calc(12 * var(--rpx-50)); */
    font-size: calc(14rem / 16);
    margin-bottom: calc(var(--gap) * var(--rpx-50));
}

.download .files .item .arr::before {
    filter: url(#white-overlay);
}

.download .files .item .name {
    display: flex;
    align-items: center;
    margin-top: calc(10 * var(--rpx-50));
    cursor: pointer;
}

.download .files .item .name .inner-text {
    /* flex: 1 0 0; */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.download .files .item .name.tech .inner-text {
    color: var(--theme-navy);
}
.download .files .item .name.tech .arr {
    background-color: var(--theme-navy);
}

.download .files .item .name.luxe .inner-text {
    color: var(--theme-beige);
}
.download .files .item .name.luxe .arr {
    color: var(--theme-beige);
}

.download .files .item .img {
    width: 50%;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, .1);
}

.download .files .item .img img {
    width: 100%;
    object-fit: cover;
}

.contact-us {
    width: var(--wrapper-width-narrow);
    padding-top: calc(60 * var(--rpx-50));
    margin: calc(120 * var(--rpx-50)) auto 0;
    display: flex;
    justify-content: center;
    position: relative;
}

.contact-us::before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, .2);
    position: absolute;
    top: 0;
    left: 0;
}

.contact-us .btn-ctn {
    border: 1px solid rgba(0, 0, 0, .2);
}

.contact-us .btn-ctn .link-more {
    padding-left: calc(24 * var(--rpx));
}

.contact-us .btn-ctn .arr {
    background-color: #021B64;
}

.contact-us .btn-ctn .arr::before {
    filter: url(#white-overlay);
}

section.insights {
    padding-top: calc(140 * var(--rpx-50));
    padding-bottom: calc(170 * var(--rpx-50));
    background-color: #fafbfd;
}

section.insights .news-list {
    overflow: visible;
}

#smooth-content>article {
    display: none;
}

.insights a.news {
    background-color: #fff;
}

.insights a.news .tags .date {
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 33%);
}

.insights .section-title {
    text-align: center;
}

.news-list.flex-box {
    gap: var(--gap);
}

.dialog {
    /* width: clamp(660px, calc(25vw + 480px), 760px); */
    max-width: 660px;
}

.btn-submit {
    margin: auto;
}

.form-item .form-item-content {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, .1);
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: calc(18 * var(--rpx)) 0;
}

.form-item .checkbox {
    --l: 30;
    font-size: calc(18 * var(--rpx));
    display: flex;
    gap: calc(14 * var(--rpx));
    align-items: center;
}

.form-item input[type="checkbox"] {
    appearance: none;
    width: calc(var(--l) * var(--rpx));
    height: calc(var(--l) * var(--rpx));
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, .2);
    padding: 0;
    border-radius: 50%;
    margin: 0;
    flex: 0 0 auto;
}

.form-item input[type="checkbox"]:checked {
    background-color: var(--theme-beige);
    border-color: transparent;
}

.form-item .checkbox+.checkbox {
    margin-top: calc(18 * var(--rpx));
}

body>article {
    display: none;
}

@media screen and (min-width: 1960px) {
    .section-box .section-box-main {
        max-width: 100%;
    }
}

@media screen and (max-width: 960px) {

    .section-box .img {
        height: auto;
        position: relative;
        width: 100%;
    }

    .section-box .section-box-main {
        width: 100%;
        flex: 0 1 auto;
        order: 2 !important;
        margin: 0 auto !important;
        padding: calc(100 * var(--rpx)) 0 !important;
    }

    .section-box .img img {
        height: auto;
        max-height: calc(700 * var(--rpx));
    }

    .download {
        margin-top: calc(20 * var(--rpx));
        position: relative;
        left: unset;
        top: unset;
    }

    .dialog-form {
        width: calc(100% - 60px);
    }
}

@media screen and (max-width: 750px) {
    .main-top .main-top__content {
        justify-content: center;
    }

    .main-top .inner-title {
        display: none;
    }

    .section-box .img img {
        max-height: calc(500 * var(--rpx));
    }

    .dialog-form {
        width: calc(100% - 40px);
    }

    section {
        overflow: visible;
    }
}

@media print {
    body {
        height: fit-content;
        min-height: unset;
        flex: 0 0 auto;
        display: inline !important;
    }

    .page-content {
        visibility: hidden;
    }

    body>* {
        display: none !important;
    }

    body>article {
        display: block !important;
        font-size: 12pt;
        font-family: var(--sans-serif-font);

    }

    body>article h1,
    body>article h3 {
        margin-top: 1em;
        margin-bottom: 1em;
        font-family: var(--serif-font);
    }

    body>article img {
        width: 50%;
        display: block;
        margin: 1em 0;
    }

    .btn-large-nav-expand {
        display: none;
    }
}