:root{
    --page-padding-top: var(--header-height-min);
}

.breadcrumbs-bar{
    display: none;
}

.section-title .text{
    font-size: calc(58 * var(--rpx-50));
}

.site-header.solid, .scrolled .site-header{
    border-bottom-color: #000;
}

section{
    position: relative;
    height: 100vh;
    color: #fff;
    background-color: #000;
    overflow: hidden;
}

section .wrapper{
    position: relative;
    z-index: 210;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.section-back{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 200;
}

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

.sec1 .back-mask{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 201;

    background: linear-gradient(to top, #0000 70%, #000f 100%),
        linear-gradient(to right, #0000 50%, #000f 100%),
        linear-gradient(to bottom, #0000 75%, #000f 100%),
        linear-gradient(to left, #0000 50%, #000f 100%);

    transform: scale(1.01);
}

.sec1{
    --page-padding-top: var(--header-height-max);
    padding-bottom: calc(80 * var(--rpx-50));
}

.sec1 .wrapper{
    gap: calc(50 * var(--rpx));
}

.sec1 .line1{
    font-size: calc(88 * var(--rpx-50));
    line-height: 1em;
    font-weight: 500;
    margin-top: auto;
}

.sec1 .btn-play-toggle{
    border-radius: 50%;
    width: calc(60rem / 16);
    height: calc(60rem / 16);
    background-color: rgba(255, 255, 255, .2);
    cursor: pointer;
    position: relative;
    transition: .2s;
    overflow: hidden;
}

.sec1 .btn-play-toggle:hover{
    transition: .2s background-color, .4s cubic-bezier(0.15, 1, 0.336, 1) transform;
    background-color: rgba(255, 255, 255, .3);
    transform: scale(1.05);
}

.sec1 .btn-play-toggle:active{
    transition: 0s;
    transform: scale(.95);
    background-color: rgba(255, 255, 255, .5);
}

.sec1 .btn-play-toggle i{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.btn-play-toggle .icon-play{
    background: url("../images/btn_play.svg") center/contain no-repeat;
    visibility: hidden;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.btn-play-toggle .icon-pause{
    background: url("../images/btn_pause.svg") center/contain no-repeat;
}

.sec1 .btn-play-toggle.paused .icon-play{
    visibility: visible;
}

.sec1 .btn-play-toggle.paused .icon-pause{
    visibility: hidden;
}

.sec1 .scroll-hint{
    justify-self: flex-start;
    margin-bottom: 0;
    margin-top: auto;
}

.sec2 .section-back::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, #0008, #0000);
    z-index: 205;
}

.sec2 .sec2-back-transition{
    z-index: 203;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.sec2 .section-title{
    margin-bottom: calc(60 * var(--rpx-50));
}

.sec2 .cat-list{
    background-color: rgba(255, 255, 255, .1);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);

    display: flex;
    padding: calc(40 * var(--rpx-50)) calc(60 * var(--rpx-50));
    --cat-list-height: min(calc(640 * var(--rpx-50)), calc(100vh - var(--header-height-min) - 240 * var(--rpx-50)));
    height: var(--cat-list-height);
    --gap: calc(40 * var(--rpx-50));

    --column: 4;
}

.sec2 .cat-list .cat{
    position: relative;
    display: flex;
    flex-direction: column;
    border-bottom: calc(4 * var(--rpx)) solid rgba(255, 255, 255, .3);
    transition: .2s;
}

.sec2 .cat-list .cat.active{
    border-bottom-color: #fff;
}

.cat a.wfEditorMode{
    position: absolute;
    margin-top: 0;
    top: unset;
    bottom: 100%;
    right: 0;
}

.cat-link{
    position: relative;
    flex: 0 0 auto;
    overflow: hidden;
}

.cat-link-text{
    padding: calc(20 * var(--rpx)) calc(10 * var(--rpx-50)) calc(20 * var(--rpx)) calc(16 * var(--rpx-50));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: calc(28 * var(--rpx-50));
    line-height: calc(40em / 28);
    background: rgba(0, 0, 0, .1);
    position: relative;
    display: block;
    z-index: 220;
}

.cat-link::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    aspect-ratio: 1/1;
    transform: scale(.04, .04);
    background-color: var(--theme-crimson);
    transform-origin: left top;
    transition: .4s cubic-bezier(0.15, 1, 0.336, 1);
}

.cat-link::after{
    content: "";
    background-color: #fff;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    aspect-ratio: 1/1;
    transform: scale(0);
    transform-origin: right bottom;
    transition: .4s cubic-bezier(0.15, 1, 0.336, 1);
    z-index: 205;
}

.cat-link:hover::before{
    transform: none;
}

.cat-link:hover::after{
    transform: scale(.04, .04);
}

.sec2 .cat-icon{
    height: calc(160 * var(--rpx-50));
    width: 100%;
    display: flex;
    justify-content: center;
}

.sec2 .cat-icon img{
    height: 100%;
    width: auto;
}

.sec2 .lineup-links{
    margin-top: calc(16 * var(--rpx-50));
    flex: 0 0 calc(var(--cat-list-height) - 340 * var(--rpx-50));
    overflow: auto;
}

.sec2 .lineup-links::-webkit-scrollbar {
    width: calc(6 * var(--rpx));
    background: #0003;
    border-radius: calc(3 * var(--rpx));
}

.sec2 .lineup-links::-webkit-scrollbar-thumb {
    border-radius: calc(3 * var(--rpx));
    background-color: rgb(255, 255, 255, .4);
}

.sec2 .lineup-links::-webkit-scrollbar-track {
    background: transparent;
}

.lineup-link{
    font-size: calc(18 * var(--rpx));
    display: block;
    line-height: calc(28em / 18);
    padding: calc(6em / 18) calc(20em / 18) calc(6em / 18) calc(32em / 18);
    position: relative;
    color: rgba(255, 255, 255, .7);
    transition: .2s;
}

.lineup-link::before{
    content: "";
    font-size: inherit;
    position: absolute;
    width: calc(8em / 18);
    height: calc(16em / 18);
    top: calc(12em / 18);
    left: calc(15em / 18);
    background: url("../images/icon_angle_right_white.svg") center/contain no-repeat;
    filter: url(#white-overlay);
    transition: .2s;
    opacity: .7;
}

.lineup-link:hover{
    padding-left: calc(40em / 18);
    color: #fff;
    transition: .4s cubic-bezier(0.15, 1, 0.336, 1);
}
.lineup-link:hover::before{
    left: calc(22em / 18);
    opacity: 1;
    transition: .4s cubic-bezier(0.15, 1, 0.336, 1);
}

.lineup-link::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle farthest-side at center, #fff4, #fff0 );
    pointer-events: none;
    opacity: 0;
    transition: .2s;
}

.lineup-link:hover::after{
    opacity: 1;
    transition: .3s;
}

.sec3 .wrapper{
    padding-top: clamp(30px, calc(23.2143vh + -118.5714px), 160px);
    padding-bottom: clamp(20px, calc(16.6667vh + -80px), 120px);
}

.sec3 .section-title{
    justify-self: flex-start;
    margin-top: 0;
    margin-bottom: auto;
}

.sec3 .app-tab-ctn{
    justify-self: flex-end;
    margin-top: auto;
    margin-bottom: 0;
    position: relative;

    --gap: calc(26 * var(--rpx));
    --column: 4;

    align-items: stretch;
    height: calc(280 * var(--rpx-50));
}

.sec3 .app-tab-ctn a.wfEditorMode{
    position: absolute;
    top: 100%;
    margin-top: 0;
    left: 0;
}

.sec3 .app-info{
    margin-top: auto;
    margin-bottom: auto;

    width: clamp(540px, calc(10.4167vw + 440px), 640px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.app-info .app-name{
    font-size: calc(28 * var(--rpx));
    width: 100%;
}

.app-info .app-desc{
    font-size: calc(18 * var(--rpx));
    line-height: 1.45em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 4.35em;
    width: 100%;
    color: rgba(255, 255, 255, .7);
    margin-top: calc(18 * var(--rpx));
}

.app-info .btn-more{
    font-size: calc(14em / 16);
    margin-top: calc(48 * var(--rpx-50));
    font-weight: 500;
    width: calc(240 * var(--rpx-50))
}

.sec3 .section-back::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #0008 0%, #0000 100%);
    z-index: 203;
}

.sec3 .sec3-back-transition{
    z-index: 203;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.app-tab{
    font-size: calc(18 * var(--rpx));

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    position: relative;
}

.app-tab .app-name{
    color: rgba(255, 255, 255, .7);
    line-height: calc(28em / 18);
    padding-top: calc(12em / 18);
    padding-bottom: calc(12em / 18);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    height: calc(80em / 18);
    transition: .2s;
}

.app-tab .split{
    height: calc(4 * var(--rpx));
    width: 100%;
    background-color: rgba(255, 255, 255, .3);
    transition: .2s;
}

.app-icon{
    display: flex;
    justify-content: center;
    height: 0;
    overflow: hidden;
    background-color: var(--theme-crimson);
    transition: .2s;
    margin-bottom: calc(10 * var(--rpx));
    opacity: 0;
}

.app-icon img{
    display: block;
    height: 100%;
    width: auto;
}

.active .split{
    background-color: rgba(255, 255, 255, 1);
    transition: .4s;
}

.active .app-icon{
    height: calc(150 * var(--rpx-50));
    opacity: 1;
    transition: .5s cubic-bezier(0.15, 1, 0.336, 1);
}

.active .app-name{
    color: #fff;
}

.sec4{
    padding-bottom: clamp(40px, calc(20vh + -80px), 120px);
}

.sec4 .section-back::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 201;

    background: linear-gradient(to top, #0000 80%, #000a 100%),
    linear-gradient(to right, #0000 60%, #000a 100%),
    linear-gradient(to bottom, #0000 80%, #000a 100%),
    linear-gradient(to left, #0000 60%, #000a 100%) #0008;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);

    transform: scale(1.01);
}

.sec4 .data-list{
    justify-self: flex-end;
    margin-top: auto;
    margin-bottom: 0;

    --column: 4;
    --gap: calc(30 * var(--rpx-50));
}

.sec4 .info-ctn{
    margin-top: auto;
    margin-bottom: auto;
    position: relative;
}

.sec4 .info-ctn .curve-back{
    width: 100vw;
    aspect-ratio: 1920/345;
    background: url("../images/home_curve_back.svg") center/cover no-repeat;
    position: absolute;
    left: calc(var(--wrapper-margin) * -1);
    top: calc(98 * var(--rpx-50));
    transform-origin: 0 38%;
}

@media (min-width: 1921px) {
    .sec4 .info-ctn .curve-back{
        /*left: calc((2240px - 100vw) / 2);*/
        left: calc(var(--wrapper-margin) * -1);
        top: calc(-6.25vw + 218px);
    }
}

.sec4 .line1{
    font-size: calc(58 * var(--rpx-50));
    line-height: calc(68em / 58);
    position: relative;
    z-index: 220;
    transform-origin: left bottom;
}

.sec4 .line2{
    margin-top: calc(44 * var(--rpx-50));
    color: rgba(255, 255, 255, .7);
    font-size: calc(18 * var(--rpx));
    line-height: 1.45em;
    width: calc(480 * var(--rpx));
    position: relative;
    z-index: 220;
    transform-origin: left top;
}

.sec4 .data-value{
    font-size: calc(68 * var(--rpx-50));
    line-height: 1em;
    display: flex;
    align-items: flex-start;
}

.sec4 .data-value .value{
    display: flex;
}

.sec4 .data .sup{
    font-size: calc(24 * var(--rpx));
    line-height: 1.4em;
}
.sec4 .data-title{
    font-size: calc(18 * var(--rpx));
    color: rgba(255, 255, 255, .7);
    margin-top: calc(4 * var(--rpx));
}

.sec5{
    background-color: #fff;
    color: #000;
    height: unset;
    padding-bottom: calc(120 * var(--rpx-50));
    padding-top: calc(180 * var(--rpx-50));
}

.sec5 .section-title{
    width: 100%;
}

.sec5 .btn-more{
    font-size: calc(14em / 16);
    font-weight: 500;
    width: calc(240 * var(--rpx));
}

.sec5 .news-ctn{
    width: 100%;
    height: clamp(390px, calc(31.25vw + 90px), 690px);
    position: relative;
}

.sec5 .news{
    visibility: hidden;
}

.sec5 .news.pos1,
.sec5 .news.pos2,
.sec5 .news.pos3,
.sec5 .news.pos4,
.sec5 .news.pos5{
    visibility: visible;
    position: absolute;
    top: 0;
    width: calc(480 * var(--rpx-50));
    transition: .6s cubic-bezier(0.15, 1, 0.336, 1);
}

.sec5 .news.pos1{
    width: calc(800 * var(--rpx-50));
    left: 0;
}

.sec5 .news.pos2{
    left: calc(860 * var(--rpx-50));
}

.sec5 .news.pos3{
    left: calc(1400 * var(--rpx-50));
}

.sec5 .news.pos4{
    left: calc(1940 * var(--rpx-50));
}

.forward .news.pos4{
    transition: 0s;
}

.sec5 .news.pos5{
    left: calc(-540 * var(--rpx-50));
    visibility: hidden;
    opacity: 0;
}
.backward .news.pos5{
    transition: 0s;
}

.news .info{
    transition: .4s cubic-bezier(0.15, 1, 0.336, 1);
}

.news:not(.pos1) .info{
    display: block;
    height: calc(72 * var(--rpx));
}

.news:not(.pos1){
    border-bottom: none;
}

.news .title{
    height: calc(30em / 24);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.news .desc{
    width: calc(800 * var(--rpx-50));
    margin-top: calc(18 * var(--rpx));
    margin-bottom: calc(18 * var(--rpx));
}

.news.pos1 .info{
    height: calc(240 * var(--rpx));
}

.news .cover{
    aspect-ratio: 16/9;
}

.news-ctn .btn-prev,
.news-ctn .btn-next{
    position: absolute;
    width: calc(60 * var(--rpx));
    height: calc(60 * var(--rpx));
    border-radius: 50%;
    cursor: pointer;
    transition: .2s;
    bottom: 0;
    background-color: #f2f2f2;
}
.news-ctn .btn-prev{
    left: calc(860 * var(--rpx-50));
}
.news-ctn .btn-next{
    left: calc(940 * var(--rpx-50));
}

.news-ctn .btn-prev:hover,
.news-ctn .btn-next:hover{
    transition: .4s cubic-bezier(0.15, 1, 0.336, 1);
    transform: scale(1.05);
    background-color: var(--theme-crimson);
}

.news-ctn .btn-prev:active,
.news-ctn .btn-next:active{
    transition: 0s;
    transform: scale(.95);
    background-color: var(--theme-crimson);
}

.news-ctn .btn-prev::before,
.news-ctn .btn-next::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 33%;
    height: 33%;
    background: url("../images/icon_arr_right.svg") center/contain no-repeat;
    filter: url(#dark-overlay);
    pointer-events: none;
}

.news-ctn .btn-prev::before{
    transform: rotate(180deg);
}

.news-ctn .btn-prev:hover::before,
.news-ctn .btn-next:hover::before,
.news-ctn .btn-prev:active::before,
.news-ctn .btn-next:active::before{
    filter: url(#white-overlay);
}

.sec6{
    background: linear-gradient(to bottom, #C4C4C42f 0%, #FFF 20%) #fff;
    color: #000;
    height: unset;
    padding-top: calc(50 * var(--rpx));
    padding-bottom: calc(90 * var(--rpx-50));
}

.client-ctn{
    display: flex;
}
.client-list{
    display: flex;
    align-items: stretch;
}
.client-list .client{
    height: calc(96 * var(--rpx));
    width: auto;
    position: relative;
    margin-left: calc(70 * var(--rpx-50));
    margin-right: calc(70 * var(--rpx-50));
}

.client-list .client img{
    height: 100%;
    width: auto;
}

.client-list .client a.wfEditorMode{
    position: absolute;
    z-index: 240;
    right: 0;
    top: 0;
}

.sec7{
    height: auto;
}

.sec7 .section-title{
    display: none;
}

.sec7 .inquiries-info{
    padding-left: calc((100% - var(--wrapper-width)) / 2);
    padding-right: calc((100% - var(--wrapper-width)) / 2);
}
