/* ===== 1. Base/Global ===== */
@font-face {
    font-family: 'GOTHIC';
    src: url('../fonts/GOTHIC_0.TTF');
}

@font-face {
    font-family: 'GOTHIC';
    src: url('../fonts/GOTHICB_0.TTF');
    font-weight: bold;
}

:root {
    /*ui-scale-factor*/
    /* desktop (960~1920): linear scaling */
    --rpx-75: clamp(0.75px, calc(0.026042vw + 0.5px), 1px);
    --rpx-67: clamp(0.667px, calc(0.034688vw + 0.334px), 1px);
    --rpx-50: clamp(0.5px, calc(0.052083vw), 1px);

    /*font-size-scale-factor*/
    --fpx-87: clamp(0.875px, calc(0.013021vw + 0.75px), 1px);
    --fpx-75: var(--rpx-75);
    --fpx-67: var(--rpx-67);
    --fpx-50: var(--rpx-50);

    /*
    * 1px at 1920
    * 0.667px at 960
    */
    --rpx: var(--rpx-67);
    --fpx: var(--fpx-87);

    --wrapper-width: calc(1600 * var(--rpx-50));
    --wrapper-margin: calc((100vw - var(--wrapper-width)) / 2);

    --wrapper-width-thin: calc(1400 * var(--rpx-50));

    --wrapper-width-min: calc(1200 * var(--rpx-50));

    --serif-font: "Times New Roman", serif;
    --sans-serif-font: 'GOTHIC', "Source Han Sans CN", OpenSans, Arial, sans-serif;

    font-family: var(--sans-serif-font), serif;

    --theme-green: #31B845;
    --theme-navy: #004795;
    --theme-gradient-green: linear-gradient(to bottom, #04B140, #6AC24A);

    --header-height-min: calc(80 * var(--rpx-50));
    --header-height-max: calc(120 * var(--rpx-50));
    --breadcrumbs-height: calc(50 * var(--rpx-50));

    --header-height: var(--header-height-max);
    --page-padding-top: calc(var(--header-height-max) + var(--breadcrumbs-height));

    --inner-nav-max: calc(72 * var(--rpx-50));
    --inner-nav-min: calc(60 * var(--rpx-50));

    --no-header-100vh: calc(100vh - var(--header-height-max));

    --box-shadow: 0px 0px 10px 0px rgba(71, 52, 26, 0.1);
}

* {
    box-sizing: border-box;
    /*transition-timing-function: cubic-bezier(0.15, 1, 0.336, 1) !important;*/
    transition-timing-function: cubic-bezier(0.15, 1, 0.336, 1);
    font-family: inherit;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}


p {
    margin-top: 0;
    margin-bottom: 0;
}

.desc p+p {
    margin-top: 1.25em;
}

html {
    color: #272727;
    /*
    *16px at 1920
    *14px at 960
    */
    font-size: calc(16 * var(--fpx-50));
}

body {
    font-size: calc(16 * var(--fpx-50));
    margin: 0;
    padding-right: 0 !important;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: stretch;
}

sup {
    font-size: .5em;
    line-height: 1em;
    vertical-align: 0;
    transform: translateY(-80%);
    display: inline-block;
}

br.mobile {
    display: none;
}

@media (max-width: 750px) {
    br.mobile {
        display: block;
    }
}

.anchor {
    position: relative;
    display: none;
}

.wrapper {
    width: var(--wrapper-width);
    margin-left: auto;
    margin-right: auto;
}

.wrapper-thin {
    width: var(--wrapper-width-thin);
    margin-left: auto;
    margin-right: auto;
}

.wrapper-min {
    width: var(--wrapper-width-min);
    margin-left: auto;
    margin-right: auto;
}

section .wrapper {
    position: relative;
}

/*.page-content {
    padding-top: var(--header-height-max);
}*/

/* ===== 2. layer-mask ===== */
.layer-mask {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
}

body.masked .layer-mask {
    opacity: 1;
    visibility: visible;
    transition: .4s;
}

/* ===== 3. site-header region ===== */
body.scrolled {
    --header-height: var(--header-height-min);
}

.site-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 600;
    transition: transform .35s ease, opacity .35s ease, height .3s, background-color .3s, color .3s, border-color .3s;
}

.site-header.is-immersive-video-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* 默认与原先 hover 顶栏一致：白底深色字（内页 wireframe 另覆写为透明顶栏） */
.site-header:not(.wireframe) {
    background-color: #fff;
    color: #000;
}

.site-header::before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(160 * var(--rpx-50));
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, #0003, #0000);
    pointer-events: none;
    transition: .3s;
    opacity: 0;
}

.site-header-sample,
.inner-nav-sample {
    position: absolute;
    left: 0;
    width: 0;
    top: 0;
    z-index: 601;
}

.site-header-sample.min {
    height: var(--header-height-min);
}

.site-header-sample.max {
    height: var(--header-height-max);
}

.site-header-sample.diff {
    height: calc(var(--header-height-max) - var(--header-height-min));
}

.inner-nav-sample.min {
    height: var(--inner-nav-min);
}

.site-header.wireframe::before,
.site-header.solid::before {
    display: none;
}

.site-header.wireframe {
    background-color: transparent;
    color: #fff;
    border-bottom: calc(1 * var(--rpx-50)) solid rgba(255, 255, 255, .3);
}

.site-header.solid,
.scrolled .site-header,
.scrolled .nav-bar {
    color: #000;
    background-color: #fff;
}

.site-header:not(.wireframe) .nav-bar {
    background-color: #fff;
    border-bottom-color: #eee;
}

.site-header:not(.wireframe) .site-logo img {
    filter: none;
}

.site-header:not(.wireframe) .top-nav-link {
    /* color: rgba(0, 0, 0, .85); */
    color: #666;
    font-weight: bold;
}

.site-header.wireframe .top-nav-link {
    color: rgba(255, 255, 255, .9);
}

.site-header:not(.wireframe) .icon-search,
.site-header:not(.wireframe) .icon-lang {
    filter: brightness(0);
}

.site-header:not(.wireframe) .icon-btn:hover {
    background-color: rgba(0, 0, 0, .08);
}

.site-header.wireframe .nav-bar {
    background-color: #fff0;
    border-bottom-color: #eee0;
}

.site-header.wireframe .site-logo img {
    filter: url(#white-overlay);
}

/* ===== 4. nav-bar, top-nav, top-nav-item, top-nav-link ===== */
.nav-bar {
    z-index: 620;
    position: relative;
    transition: .3s;
    border-bottom: calc(1 * var(--rpx-50)) solid #eee;
    background-color: #fff;
}

.nav-bar .wrapper {
    width: 100%;
    height: var(--header-height-min);
    padding-left: calc(72 * var(--rpx-50));
    padding-right: calc(60 * var(--rpx-50));
    /* height: 100%; */
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav-right-group {
    margin-left: auto;
    height: 100%;
    display: flex;
    align-items: center;
    gap: calc(60 * var(--rpx-50));
}

.top-nav {
    position: relative;
    width: max-content;
    height: 100%;
    display: flex;
    font-weight: normal;
    margin-left: 0;
    z-index: 615;
}

.top-nav-item {
    flex: 0 0 auto;
    position: relative;
}

.top-nav-link {
    padding-left: calc(18 * var(--rpx-50));
    padding-right: calc(18 * var(--rpx-50));
    font-size: calc(20 * var(--fpx-50));
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;

    position: relative;
    box-sizing: content-box;
    /* text-transform: uppercase; */
    z-index: 620;
    overflow: hidden;
    transition: background-color .22s ease-out, color .22s ease-out;
}

.top-nav-link .link-text {
    position: relative;
    z-index: 2;
}

.light-beam-effect-canvas {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.top-nav-link:hover,
.top-nav-link.nav-beam-hover-active,
.top-nav-item.active .top-nav-link {
    color: var(--theme-green);
}

.site-header.wireframe .top-nav-link:hover,
.site-header.wireframe .top-nav-link.nav-beam-hover-active,
.site-header.wireframe .top-nav-item.active .top-nav-link {
    color: var(--theme-green);
}

.top-nav:hover {
    z-index: 640;
}

/* ===== 5. site-logo ===== */
.site-logo {
    position: absolute;
    left: calc(72 * var(--rpx-50));
    top: 50%;
    z-index: 625;
    height: calc(60 * var(--rpx-50));
    width: auto;
    transition: .3s;
    transform: translateY(-50%);
}

.scrolled .site-logo {
    /* height: calc(45 * var(--rpx-50)); */
    transform: translateY(-50%) scale(.8);
}

.site-logo img {
    display: block;
    height: 100%;
    width: auto;
    filter: none;
}

.scrolled .site-logo img {
    filter: none;
}

/* ===== 6. right-nav, right-nav-item, right-nav-sub ===== */
.right-nav {
    position: relative;
    z-index: 625;
    height: 100%;
    right: 0;
    top: 0;

    justify-self: flex-end;
    margin-left: 0;
    margin-right: 0;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: calc(10 * var(--rpx-50));
}

.right-nav:hover {
    z-index: 640;
}

.right-nav-item {
    display: flex;
    justify-content: center;
    position: relative;
    padding-bottom: calc(1 * var(--rpx-50));
}

.right-nav-item>* {
    position: relative;
}

.right-nav-item.active .icon-btn {
    filter: url(#crimson-overlay);
}

.right-nav-item.active .icon-btn {
    background-color: transparent;
    transition: .2s;
}

.right-nav-item.active .icon-btn::after {
    opacity: 0;
    animation: none;
    transition: .2s;
}

.btn-buy.btn-more {
    height: calc(50 * var(--rpx-50));
    display: flex;
    align-items: center;
    border-radius: calc(25 * var(--rpx-50));
    padding-left: calc(26 * var(--rpx-50));
    padding-right: calc(8 * var(--rpx-50));
}

.btn-buy.btn-more:hover {
    color: var(--theme-green);
}

.btn-buy.btn-more .icon-cart {
    width: calc(36 * var(--rpx-50));
    height: calc(36 * var(--rpx-50));
    border-radius: 50%;
    background: url("../images/icon_cart.svg") center/contain no-repeat;
}

@media (min-width: 829px) {
    .nav-bar .btn-buy.btn-more {
        height: calc(50 * var(--rpx-50));
        border-radius: calc(25 * var(--rpx-50));
        padding-left: calc(26 * var(--rpx-50));
        padding-right: 0;
        font-size: calc(16 * var(--fpx-50));
        background: unset;
        color: #666;
    }

    .nav-bar .btn-buy.btn-more .icon-cart {
        width: calc(36 * var(--rpx-50));
        height: calc(36 * var(--rpx-50));
    }
}

.icon-btn {
    position: relative;
    z-index: 620;
}

.nav-bar .icon-search {
    width: calc(46 * var(--rpx-50));
    height: calc(46 * var(--rpx-50));
    border-radius: calc(23 * var(--rpx-50));
    background: url("../images/icon_search.svg") center/calc(24 * var(--rpx-50)) no-repeat;
    cursor: pointer;
    transition: .2s;
}

.nav-bar .icon-lang {
    width: calc(46 * var(--rpx-50));
    height: calc(46 * var(--rpx-50));
    border-radius: calc(23 * var(--rpx-50));
    background: url("../images/icon_lang.svg") center/calc(24 * var(--rpx-50)) no-repeat;
    cursor: pointer;
    transition: .2s;
}

.right-nav .lang-dropdown {
    width: calc(80 * var(--rpx-50));
    height: calc(50 * var(--rpx-50));
    border: calc(1 * var(--rpx-50)) solid rgba(0, 0, 0, .4);
    border-radius: calc(25 * var(--rpx-50));
    justify-content: center;
    padding: 0;
    font-size: calc(14 * var(--fpx-50));
}

.right-nav .lang-dropdown:hover,
.right-nav .lang-dropdown.active {
    background-color: #f7f7f7;
}

.right-nav .lang-dropdown::after {
    content: "";
    width: calc(12 * var(--rpx-50));
    height: calc(6 * var(--rpx-50));
    background: url("../images/icon_angle_down.svg") center/contain no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: calc(16 * var(--rpx-50));
    transition: .3s;
}

.right-nav .lang-dropdown.active::after {
    transform: rotate(-180deg);
}

.right-nav .lang-dropdown .dropdown-current {
    min-height: auto;
    width: 100%;
    height: 100%;
    padding: 0 calc(18 * var(--rpx-50));
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #333;
    font-size: calc(14 * var(--fpx-50));
    line-height: 1;
    white-space: nowrap;
}

.right-nav .lang-dropdown .dropdown-options {
    top: 100%;
    border-radius: calc(12 * var(--rpx-50));
    box-shadow: 0 calc(8 * var(--rpx-50)) calc(20 * var(--rpx-50)) rgba(0, 0, 0, .08);
    background-color: #fff;
    padding: calc(6 * var(--rpx-50)) 0;
    overflow: hidden;
}

.right-nav .lang-dropdown .dropdown-option {
    display: block;
    text-align: left;
    color: #333;
    font-size: calc(14 * var(--fpx-50));
    line-height: calc(22 * var(--rpx-50));
    padding: calc(8 * var(--rpx-50)) calc(20 * var(--rpx-50));
}

.right-nav .lang-dropdown .dropdown-option.is-disabled {
    color: rgba(51, 51, 51, .35);
    background-color: #f5f5f5;
    cursor: not-allowed;
    pointer-events: none;
}

.tablet-right-nav-toggle {
    display: none;
    position: relative;
    z-index: 625;
    width: calc(80 * var(--rpx-50));
    height: calc(80 * var(--rpx-50));
    border: none;
    background: transparent;
    padding: 0;
    margin-left: 0;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.tablet-right-nav-toggle::before {
    content: "";
    z-index: 620;
    width: calc(60 * var(--rpx-50));
    height: calc(60 * var(--rpx-50));
    border-radius: 50%;
    opacity: 0;
    background-color: #f7f7f7;
    transition: .4s cubic-bezier(0.15, 1, 0.336, 1);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transform: scale(1.1);
}

.tablet-right-nav-toggle.active::before {
    transform: none;
    opacity: 1;
}

.tablet-right-nav-toggle:hover::before {
    transform: scale(1.1);
    opacity: 1;
}

.tablet-right-nav-toggle:active::before {
    background-color: #e7e7e7;
    transition: 0s;
}

.tablet-right-nav-toggle .icon {
    width: calc(32 * var(--rpx-50));
    height: calc(22 * var(--rpx-50));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 670;
}

.tablet-right-nav-toggle .icon i {
    flex: 0 0 calc(2.5 * var(--rpx-50));
    width: 100%;
    background-color: #333;
    border-radius: calc(1 * var(--rpx-50));
    transition: transform .3s ease, opacity .3s ease;
}

.tablet-right-nav-toggle.active .icon i:first-of-type {
    transform: translateY(calc(9.5 * var(--rpx-50))) rotate(45deg);
}

.tablet-right-nav-toggle.active .icon i:nth-of-type(2) {
    opacity: 0;
}

.tablet-right-nav-toggle.active .icon i:last-of-type {
    transform: translateY(calc(-9.5 * var(--rpx-50))) rotate(-45deg);
}

@media (max-width: 960px) and (min-width: 829px) {
    .mobile-icons {
        display: none !important;
    }

    .tablet-right-nav-toggle {
        display: flex;
    }

    .site-header:not(.tablet-right-nav-open) .tablet-right-nav-toggle {
        margin-left: auto;
    }

    .site-header.tablet-right-nav-open .tablet-right-nav-toggle {
        margin-left: calc(10 * var(--rpx-50));
    }

    .site-header .top-nav {
        display: flex !important;
    }

    .site-header .right-nav {
        display: none !important;
    }

    .site-header.tablet-right-nav-open .top-nav {
        display: none !important;
    }

    .site-header.tablet-right-nav-open .right-nav {
        display: flex !important;
    }
}

.right-nav .split {
    width: calc(1 * var(--rpx-50));
    height: calc(32 * var(--rpx-50));
    background-color: #0007;
    margin-left: calc(10 * var(--rpx-50));
    margin-right: calc(10 * var(--rpx-50));
}

.icon-btn:hover {
    background-color: rgba(255, 255, 255, .25);
    cursor: pointer;
    transition: 1.2s cubic-bezier(0.15, 1, 0.336, 1);
}

.right-nav-sub {
    z-index: 590;
    position: fixed;
    left: 0;
    top: var(--header-height);
    width: 100%;
    background-color: #1C1C1C;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(.8) translateY(-10%);
    transition: .2s;
    color: #fff;
    box-shadow: 0 0 0 100vh rgba(0, 0, 0, .4);
}

.right-nav-item.active .right-nav-sub {
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: top .3s, transform .4s cubic-bezier(0.15, 1, 0.336, 1), opacity .3s;
}

.right-nav-sub.search {
    height: calc(380 * var(--rpx-50));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.right-nav-sub .search-ctn {
    flex: 0 0 auto;
    height: calc(80 * var(--rpx-50));
    width: calc(720 * var(--rpx-50));
    border-radius: calc(80 * var(--rpx-50));
    position: relative;
}

.right-nav-sub .search-ctn input {
    border-radius: calc(40 * var(--rpx-50));
}

.right-nav-sub .search-ctn button {
    --gap: calc(17 * var(--rpx-50));
}

.btn-search {
    width: calc(50 * var(--rpx-50));
    height: calc(50 * var(--rpx-50));
    border-radius: calc(25 * var(--rpx-50));
    border: calc(1 * var(--rpx-50)) solid rgba(0, 0, 0, .4);
    font-size: calc(14 * var(--fpx-50));
    position: relative;
    cursor: pointer;
}

.btn-search::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: calc(16.67 * var(--rpx-50));
    height: calc(16 * var(--rpx-50));
    background: url("../images/icon_search.svg") center/contain no-repeat;
}

.btn-search:hover {
    background-color: #f7f7f7;
}

.jinko-solar {
    width: calc(132 * var(--rpx-50));
    height: calc(50 * var(--rpx-50));
    border-radius: calc(25 * var(--rpx-50));
    border: calc(1 * var(--rpx-50)) solid rgba(0, 0, 0, .4);
    font-size: calc(14 * var(--fpx-50));

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 calc(18 * var(--rpx-50));
}

.jinko-solar img {
    width: calc(70 * var(--rpx-50));
    margin-bottom: calc(3 * var(--rpx-50));
}

.jinko-solar i.arr {
    width: calc(8 * var(--rpx-50));
    height: 1em;
    background: url("../images/icon_angle_right.svg") center/contain no-repeat;
    filter: url(#dark-overlay);
}

.jinko-solar:hover {
    background-color: #f7f7f7;
}

@media (min-width: 829px) {
    .nav-bar .btn-search {
        width: calc(50 * var(--rpx-50));
        height: calc(50 * var(--rpx-50));
        border-radius: calc(25 * var(--rpx-50));
        border: calc(1 * var(--rpx-50)) solid rgba(0, 0, 0, .4);
        font-size: calc(14 * var(--fpx-50));
    }

    .nav-bar .btn-search::before {
        width: calc(16.67 * var(--rpx-50));
        height: calc(16 * var(--rpx-50));
    }

    .nav-bar .jinko-solar {
        width: calc(132 * var(--rpx-50));
        height: calc(50 * var(--rpx-50));
        border-radius: calc(25 * var(--rpx-50));
        border: calc(1 * var(--rpx-50)) solid rgba(0, 0, 0, .4);
        font-size: calc(14 * var(--fpx-50));
        padding: 0 calc(18 * var(--rpx-50));
    }

    .nav-bar .jinko-solar img {
        width: calc(70 * var(--rpx-50));
        margin-bottom: calc(3 * var(--rpx-50));
    }

}

.search .search-type {
    position: absolute;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: calc(17 * var(--rpx-50));
    width: calc(160 * var(--rpx-50));
    z-index: 680;
    font-size: 1rem;
    top: 0;
}

.right-nav-sub .search-ctn input {
    padding-left: calc(175 * var(--rpx-50) + 17 * var(--rpx-50));
    color: #fff;
}

.right-nav-sub .search-ctn input::placeholder {
    color: #fff6;
}

.right-nav-sub .search-ctn input:focus {
    outline: calc(2 * var(--rpx-50)) solid var(--theme-red);
    background-color: rgba(0, 0, 0, .5);
}

.right-nav-sub .search-type .dropdown-ctn:not(.active)::after {
    filter: url(#white-overlay);
}

.right-nav-sub.search .popular-keywords {
    display: flex;
    flex-direction: column;
    width: calc(720 * var(--rpx-50));
    margin-top: calc(40 * var(--rpx-50));
    color: rgba(255, 255, 255, .7);
    font-size: calc(14 * var(--fpx-50));
}

.right-nav-sub.search .keywords-title {
    text-align: center;
}

.right-nav-sub.search .keywords-ctn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: calc(5 * var(--rpx-50));
    margin-top: calc(16 * var(--rpx-50));
}

.right-nav-sub.search .keyword {
    cursor: pointer;
    color: #fff;
    padding: calc(10 * var(--rpx-50));
    background-color: rgba(255, 255, 255, .1);
    border-radius: calc(5 * var(--rpx-50));
}

.right-nav-sub.search .keyword:hover {
    background-color: rgba(255, 255, 255, .2);
}

.right-nav-sub.lang {
    height: calc(80 * var(--rpx-50));
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: calc(48 * var(--rpx-50));
    padding-right: calc(var(--wrapper-margin) + calc(138 * var(--rpx-50)));
}

.right-nav-sub.lang .active {
    color: var(--theme-crimson);
}

.right-nav-item.search-item::before {
    content: "";
    position: absolute;
    width: calc(120 * var(--rpx-50));
    height: 100%;
    top: 0;
    right: 100%;
}

/* btn-more, nav-btn-style, icon-btn (header buttons) */
.btn-more {
    cursor: pointer;
    background: var(--theme-gradient-green);
    color: #fff;
    height: calc(46 * var(--rpx-50));
    border-radius: calc(23 * var(--rpx-50));
    padding: 0 calc(30 * var(--rpx-50)) calc(1 * var(--rpx-50));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: none;
    transition: color .3s, background-color .3s, padding .6s cubic-bezier(0.15, 1, 0.336, 1), .2s filter;
    outline: none;

    font-size: calc(14 * var(--fpx-50));
    font-weight: 500;
    white-space: nowrap;
}

.btn-more.stroke {
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background: #fff2;
    border: calc(1 * var(--rpx-50)) solid #fff;
}

.btn-more:not(.no-expand):hover {
    padding: 0 calc(36 * var(--rpx-50)) calc(2 * var(--rpx-50));
}

.btn-more:hover,
.btn-more:focus {
    filter: brightness(1.05);
}


.btn-more i.arr {
    width: calc(16.5 * var(--rpx-50));
    height: calc(13 * var(--rpx-50));
    flex: 0 0 auto;
    background: url("../images/icon_btn_more_arr.svg") center/contain no-repeat;
    margin-left: calc(10 * var(--rpx-50));
    transition: filter .3s ease;
}

.btn-more .text {
    transition: color .3s ease;
}

.nav-btn-style {
    position: relative;
}

.nav-btn-style::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: calc(23 * var(--rpx-50));
    visibility: hidden;
    opacity: 0;
    --glow-color: rgba(255, 255, 255, .25);
}

.btn-contact::after {
    --glow-color: var(--theme-crimson);
}

@keyframes navBtnHover {
    0% {
        opacity: 0;
        /*top: calc(-15 * var(--rpx-50));
        left: calc(-15 * var(--rpx-50));
        width: calc(100% + 30 * var(--rpx-50));
        height: calc(100% + 30 * var(--rpx-50));*/

        box-shadow: 0 0 0 calc(20 * var(--rpx-50)) var(--glow-color);
    }

    100% {
        opacity: 1;
        /*top: 0;
        left: 0;*/
        box-shadow: 0 0 0 calc(0 * var(--rpx-50)) var(--glow-color);
    }
}

.icon-btn:hover::after,
.nav-btn-style:focus::after,
.nav-btn-style:hover::after {
    visibility: visible;
    animation: navBtnHover forwards 1.2s cubic-bezier(0.15, 1, 0.336, 1);
}

.site-header .btn-more.btn-contact {
    margin-left: calc(10 * var(--rpx-50));
    font-weight: 500;
    transition: color .3s, background-color .3s, padding .6s cubic-bezier(0.15, 1, 0.336, 1), font-size .6s cubic-bezier(0.15, 1, 0.336, 1);
}

/* ===== 7. nav-sub-mask-layer ===== */
.nav-sub-mask-layer {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .4);
    pointer-events: none;
    z-index: 589;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}

.nav-sub-mask-layer.active {
    opacity: 1;
    visibility: visible;
}

/* ===== 8. nav-sub-bar ===== */
.nav-sub-bar {
    position: fixed;
    left: 0;
    top: var(--header-height);
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    z-index: 590;
    background-color: #f7f7f7;
    color: #fff;
    transform: translateY(-12%);
    opacity: 0;
    visibility: hidden;
    transition: transform .4s cubic-bezier(0.15, 1, 0.336, 1), opacity .3s, visibility .3s;
    pointer-events: none;
}

.nav-sub-bar.active {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* ===== 9. nav-sub-panel, col-single, col-link ===== */
.nav-sub-panel {
    display: none;
    width: 100%;
    background-color: #fff;
}

.nav-sub-panel.current {
    display: flex;
}

.col-links {
    max-height: calc(100vh - var(--header-height) - 140 * var(--rpx-50));
    overflow: auto;
}

.col-links::-webkit-scrollbar {
    width: calc(4 * var(--rpx-50));
    background: rgba(0, 0, 0, .08);
    border-radius: calc(2 * var(--rpx-50));
}

.col-links::-webkit-scrollbar-thumb {
    border-radius: calc(2 * var(--rpx-50));
    background-color: rgba(0, 0, 0, .3);
}

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

.nav-sub-bar .col-single {
    padding-top: calc(40 * var(--rpx-50));
    padding-bottom: calc(40 * var(--rpx-50));
    /*border-left: 1px solid rgba(0, 0, 0, .08);
    border-right: 1px solid rgba(0, 0, 0, .08);*/
    background-color: #ffffff;
    width: max-content;
    max-width: calc(100vw - calc(40 * var(--rpx-50)));
}

.nav-sub-bar .col-single.nav-col-multi {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.nav-sub-grid {
    --nav-sub-grid-gap: calc(40 * var(--rpx-50));
    --nav-sub-col-width: calc(200 * var(--rpx-50));
    display: grid;
    gap: var(--nav-sub-grid-gap);
    justify-content: center;
}

.nav-sub-grid.cols-2 {
    grid-template-columns: repeat(2, var(--nav-sub-col-width));
}

.nav-sub-grid.cols-3 {
    grid-template-columns: repeat(3, var(--nav-sub-col-width));
}

.nav-sub-grid.cols-4 {
    grid-template-columns: repeat(4, var(--nav-sub-col-width));
}

.nav-sub-grid.cols-5 {
    grid-template-columns: repeat(5, var(--nav-sub-col-width));
}

.nav-sub-grid.cols-4-first-wide {
    grid-template-columns: calc(260 * var(--rpx-50)) repeat(3, var(--nav-sub-col-width));
}

.nav-sub-grid.cols-4-first-wide .nav-sub-col-wide {
    width: calc(260 * var(--rpx-50));
}

.nav-sub-grid.cols-4-first-wide .col-link-l3 {
    white-space: nowrap;
}

.nav-sub-col {
    min-width: 0;
    width: var(--nav-sub-col-width);
}

.nav-sub-col .col-title {
    display: block;
    --col-title-line-height: calc(26 * var(--rpx-50));
    font-size: calc(18 * var(--fpx-50));
    font-weight: 600;
    line-height: var(--col-title-line-height);
    color: rgba(0, 0, 0, 0.92);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    text-decoration: none;
    transition: color .2s;
    padding-right: calc(32 * var(--rpx-50));
}

.nav-sub-col .col-title::before {
    content: "";
    width: calc(15 * var(--rpx-50));
    height: calc(13 * var(--rpx-50));
    position: absolute;
    top: calc((var(--col-title-line-height) - 13 * var(--rpx-50)) / 2);
    right: 0;
    opacity: 0;
    transform: translateX(-100%);
    transition: .2s;
    background: url("../images/icon_arr_right.svg") center/contain no-repeat;
    filter: url(#black-overlay);
}

.nav-sub-col .col-title:hover::before {
    opacity: 1;
    transform: translateX(0);
    transition: opacity .3s, transform .4s cubic-bezier(0.15, 1, 0.336, 1);
    filter: url(#green-overlay);
}

/* .nav-sub-col .col-title:has(+ .col-sub-links) { */
.nav-sub-col .col-title {
    margin-bottom: calc(14 * var(--rpx-50));
    padding-bottom: calc(12 * var(--rpx-50));
}

/* .nav-sub-col .col-title:has(+ .col-sub-links)::after { */
.nav-sub-col .col-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.22);
}

.nav-sub-col .col-title:hover {
    color: var(--theme-green);
}

.nav-sub-col .col-sub-links {
    display: flex;
    flex-direction: column;
    gap: calc(2 * var(--rpx-50));
}

.nav-sub-bar .col-link {
    display: block;
    font-size: calc(16 * var(--fpx-50));
    line-height: calc(24 * var(--rpx-50));
    padding-top: calc(8 * var(--rpx-50));
    padding-bottom: calc(8 * var(--rpx-50));
    transition: .2s;
    position: relative;
    color: rgba(0, 0, 0, .75);
    font-weight: bold;
}

.nav-sub-bar .col-link::after {
    content: "";
    font-size: inherit;
    width: calc(15 * var(--rpx-50));
    height: calc(13 * var(--rpx-50));
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transform: translateX(-100%);
    transition: .2s;
    background: url("../images/icon_arr_right.svg") center/contain no-repeat;
    filter: url(#black-overlay);
    margin: auto;
}

.nav-sub-bar .col-link:hover::after {
    filter: url(#green-overlay);
}

.col-single .col-link {
    padding-right: calc(32 * var(--rpx-50));
}

.col-link.col-link-l3 {
    font-size: calc(16 * var(--fpx-50));
    line-height: calc(24 * var(--rpx-50));
    color: rgba(0, 0, 0, .72);
}

.col-single .col-link:hover,
.nav-sub-bar .col-link.active {
    color: var(--theme-green);
}

.col-single .col-link:hover::after,
.nav-sub-bar .col-link.active::after {
    opacity: 1;
    transform: none;
    transition: opacity .3s, transform .4s cubic-bezier(0.15, 1, 0.336, 1);
}

/* ===== 10. breadcrumbs-bar ===== */
.breadcrumbs-bar {
    position: relative;
    color: rgba(0, 0, 0, .75);
    z-index: 580;
    transition: .2s;
}

.breadcrumbs-bar a {
    color: rgba(0, 0, 0, .85);
}

.breadcrumbs-bar.collapsed {
    transform: translateY(-101%);
    transition: .6s cubic-bezier(0.15, 1, 0.336, 1);
}

.breadcrumbs-bar.wireframe {
    color: rgba(255, 255, 255, .7);
    border-bottom: calc(1 * var(--rpx-50)) solid rgba(255, 255, 255, .3);
}

.breadcrumbs-bar.wireframe a {
    color: rgba(255, 255, 255, .85);
}

.breadcrumbs-bar .wrapper {
    height: var(--breadcrumbs-height);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
}

.breadcrumbs-bar.solid,
.scrolled .breadcrumbs-bar {
    background-color: #1C1C1C;
    border-bottom-color: rgba(255, 255, 255, 0);
    color: rgba(255, 255, 255, .75);
}

.breadcrumbs-bar.solid a,
.scrolled .breadcrumbs-bar a {
    color: rgba(255, 255, 255, .85);
}

.breadcrumbs {
    font-size: calc(14 * var(--fpx-50));
    margin-bottom: 0;
    display: flex;
    padding-left: 0;
}

.breadcrumbs li {
    list-style: none;
    display: flex;
    align-items: center;
}

.breadcrumbs a.no-link {
    cursor: text;
}

.breadcrumbs a.no-link:hover {
    color: inherit;
}

.breadcrumbs li .next-level {
    width: calc(4 * var(--rpx-50));
    height: calc(8 * var(--rpx-50));
    padding-left: 1em;
    padding-right: 1em;
    background: url("../images/icon_angle_right_white.svg") center/contain no-repeat;
    opacity: .8;
}

.breadcrumbs li a:hover,
.breadcrumbs.light li a:hover {
    color: var(--theme-green);
}

/* ===== 11. site-footer ===== */
.site-footer {
    width: 100%;
    background-color: #F6F6F6;
    margin-top: auto;
    margin-bottom: 0;
    justify-self: flex-end;
    color: #000;
    font-size: calc(16 * var(--fpx-50));
}

.site-footer .part1 {
    color: rgba(0, 0, 0, .55);
}

.site-footer a:hover {
    color: var(--theme-green);
}

.site-footer .part1 .wrapper {
    padding-top: calc(80 * var(--rpx-50));
    padding-bottom: calc(68 * var(--rpx-50));
}

.site-footer .row1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer .row2 {
    margin-top: calc(60 * var(--rpx-50));
    display: flex;
    justify-content: space-between;
}

.footer-info,
.lang-switch {
    flex: 0 0 calc(240 * var(--rpx-50));
}

.footer-logo {
    display: block;
    height: calc(64 * var(--rpx-50));
    width: auto;
}

.footer-logo img {
    display: block;
    height: 100%;
    width: auto;
}

.site-footer .lang-switch {
    display: flex;
    align-items: center;
    gap: .5em;
    justify-content: flex-end;
    line-height: 1;
}

.site-footer .lang-switch i.icon-lang {
    width: calc(20 * var(--rpx-50));
    height: calc(20 * var(--rpx-50));
    background: url("../images/icon_lang.svg") center/contain no-repeat;
    opacity: .7;
    filter: url(#dark-overlay);
}

.site-footer .current {
    color: #000;
}

.contact-info {
    margin-top: calc(40 * var(--rpx-50));
    word-break: break-word;
}

.contact-info li {
    margin-bottom: calc(12 * var(--rpx-50));
    line-height: calc(24 * var(--rpx-50));
    position: relative;
    padding-left: calc(40 * var(--rpx-50));
    padding-top: calc(3 * var(--rpx-50));
    padding-bottom: calc(3 * var(--rpx-50));
}

.contact-info img {
    width: calc(24 * var(--rpx-50));
    height: calc(24 * var(--rpx-50));
    object-fit: contain;
    position: absolute;
    left: 0;
    top: calc(3 * var(--rpx-50));
}

.follow-hint {
    text-transform: uppercase;
    margin-bottom: 1em;
    font-size: calc(18 * var(--fpx-50));
    color: #000;
}

.follow-icons .layout-area {
    display: flex;
    gap: calc(10 * var(--rpx-50));
    margin: 0;
}

.follow-icons .layout-area a {
    border-radius: 50%;
    background-color: #fff1;
    transition: .2s;
}

.sec-title .follow-icons .layout-area a>img {
    display: block;
    width: calc(50 * var(--rpx-50));
    height: calc(50 * var(--rpx-50));
}

.follow-icons .layout-area a:hover {
    background-color: var(--theme-green);
    transform: scale(1.1);
    transition: transform .4s cubic-bezier(0.15, 1, 0.336, 1), background-color .2s ease-out;
}

.footer-nav {
    flex: 0 0 calc(1200 * var(--rpx-50));
    display: flex;
    gap: calc(40 * var(--rpx-50));
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-nav-col {
    width: calc((100% - 40 * var(--rpx-50) * 3) / 4);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

@media (max-width: 1366px) {
    .footer-nav {
        gap: calc(50 * var(--rpx-50)) calc(30 * var(--rpx-50));
        justify-content: flex-start;
        flex: 0 0 calc((100% - calc(20 * var(--rpx-50))) * .82);
    }

    .footer-info {
        flex: 0 0 calc((100% - calc(20 * var(--rpx-50))) * .18);
    }

    /* .footer-nav-col {
        width: calc(125 * var(--rpx-50));
    } */

}

.footer-link {
    display: flex;
    align-items: center;
    gap: calc(8 * var(--rpx-50));
    /* text-transform: uppercase; */
    color: #000;
    margin-bottom: calc(20 * var(--rpx-50));
    font-size: calc(18 * var(--fpx-50));
}

.footer-link-sub {
    line-height: calc(24 * var(--rpx-50));
    padding-top: calc(3 * var(--rpx-50));
    padding-bottom: calc(3 * var(--rpx-50));
    display: block;
}

.site-footer .part2 {
    border-top: calc(1 * var(--rpx-50)) solid #E1E1E1;
}

.site-footer .part2 .wrapper {
    height: calc(80 * var(--rpx-50));
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer .part2 .left {
    display: flex;
    gap: calc(40 * var(--rpx-50));
}

.site-footer .part2 .right {
    font-size: calc(14 * var(--fpx-50));
    gap: .5em;
    display: flex;
    font-weight: 300;
}

/* ===== 12. page-header, page-inner-nav ===== */
.page-header {
    height: calc(320 * var(--rpx-50));
    position: relative;
    color: #fff;
    overflow: hidden;
    background-color: #000;
}

.page-header.slim {
    height: calc(240 * var(--rpx-50));
}

.page-header .page-header-back {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    transform-origin: var(--wrapper-margin) 50%;
}

.page-header .page-header-back img {
    transform-origin: var(--wrapper-margin) 50%;
}

.page-header-back img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-back::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #0008, #0000);
    z-index: 210;
}

.page-header .wrapper {
    position: relative;
    z-index: 220;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-title {
    font-size: calc(88 * var(--fpx-50));
    font-weight: 500;
    line-height: 1em;
    transform-origin: left center;
}

.page-title-pre {
    font-size: calc(24 * var(--fpx-50));
    font-weight: 500;
    margin-bottom: calc(16 * var(--rpx-50));
    transform-origin: left center;
}

#page-main::before {
    content: "";
    width: 100%;
    height: 0;
    display: flow-root;
}

.page-inner-nav-placeholder {
    height: var(--inner-nav-max);
    position: relative;
    font-size: 1rem;
    font-weight: normal;
    z-index: 200;
}

.page-inner-nav-placeholder:has(.page-inner-nav.fixed) {
    z-index: 300;
}

.page-inner-nav {
    position: relative;
    width: 100%;
    will-change: transform;
    display: flex;
    justify-content: flex-start;
    height: var(--inner-nav-max);
    padding-left: 0;
    padding-right: 0;
    border-top: calc(2 * var(--rpx-50)) solid #e6e6e6;
    border-bottom: calc(2 * var(--rpx-50)) solid transparent;
}

.page-inner-nav.fixed {
    justify-content: flex-start;
    height: var(--inner-nav-min);
    position: fixed;
    left: 0;

    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 calc(48 * var(--rpx-50)) rgba(15, 15, 15, .05), 0 0 calc(12 * var(--rpx-50)) rgba(15, 15, 15, .075);

    padding-left: var(--wrapper-margin);
    z-index: 800;
}

.page-inner-nav .inner-nav-page-title {
    width: 0;
    overflow: hidden;
    font-weight: 500;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    padding-right: calc(64 * var(--rpx-50));
    position: relative;
    white-space: nowrap;
    pointer-events: none;

    opacity: 0;
}

.page-inner-nav.fixed .inner-nav-page-title {
    pointer-events: all;
}

.page-inner-nav .inner-nav-page-title::after {
    content: "";
    position: absolute;
    right: calc(32 * var(--rpx-50));
    width: calc(1 * var(--rpx-50));
    height: 1.6em;
    top: .25em;
    bottom: 0;
    margin: auto;
    background-color: #d8d8d8;
}

.page-inner-nav .inner-nav-link {
    font-weight: 400;
    flex: 0 0 auto;
    width: auto;
    padding-left: 1em;
    padding-right: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s border, .2s color;
    position: relative;
    margin-top: calc(-2 * var(--rpx-50));
    margin-bottom: calc(-2 * var(--rpx-50));
    margin-right: calc(40 * var(--rpx-50));
}

.page-inner-nav.fixed .inner-nav-link {}

.page-inner-nav .inner-nav-link .en {
    display: none;
}

.page-inner-nav .inner-nav-link.muted {
    display: none;
}

.page-inner-nav .inner-nav-link:hover {
    color: var(--theme-navy);
    border-top-color: var(--theme-navy);
}

.page-inner-nav:not(.fixed) .inner-nav-page-title+.inner-nav-link {
    margin-left: calc(-64 * var(--rpx-50));
}

.page-inner-nav .inner-nav-link.active {
    color: var(--theme-navy);
    font-weight: 500;
    border-top: calc(2 * var(--rpx-50)) solid var(--theme-navy);
}

/* ===== 13. content sections ===== */
.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: calc(40 * var(--rpx-50));
}

.section-title .text {
    text-transform: uppercase;
    font-size: calc(58 * var(--fpx-50));
    line-height: calc(68 * var(--rpx-50));
}

.section-title.tiny,
.section-title.tiny .text {
    font-size: calc(28 * var(--fpx-50));
    line-height: 1em;
    font-weight: normal;
    text-transform: none;
}

.tags {
    z-index: 240;
    display: flex;
    gap: calc(10 * var(--rpx-50));
    color: #fff;
    opacity: 1;
    transition: .2s;
    position: relative;
}

.tag {
    padding: calc(6 * var(--rpx-50)) calc(18 * var(--rpx-50));
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(35 * var(--rpx-50));
    border-radius: calc(17.5 * var(--rpx-50));
    background-color: rgba(255, 255, 255, .2);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.inquiries {
    margin-top: calc(100 * var(--rpx-50));
}

.inquiries:nth-of-type(1) {
    margin-top: 0;
}

.inquiries-ctn {
    position: relative;
    height: calc(320 * var(--rpx-50));
    overflow: hidden;
    color: #fff;
    transform: translateZ(0);
}

.inquiries-back {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    bottom: 0;
    z-index: 200;
}

.inquiries-info {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, #000f, #0003);
    z-index: 220;
    padding: calc(80 * var(--rpx-50));
}

.inquiries-info .left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(440 * var(--rpx-50));
    flex: 0 0 auto;
}

.inquiries-info .right {
    flex: 0 0 auto;
}

.inquiries-title {
    font-size: calc(28 * var(--fpx-50));
    margin-bottom: calc(20 * var(--rpx-50));
}

.inquiries-desc {
    color: rgba(255, 255, 255, .7);
    font-size: calc(18 * var(--fpx-50));
    line-height: 1.45em;
}

.inquiries .btn-more {
    width: calc(240 * var(--rpx-50));
    font-weight: 500;
    font-size: calc(14 * var(--fpx-50));
}

.content strong,
b {
    font-weight: bold;
}

.content h2 {
    font-weight: 500;
    font-size: calc(38 * var(--fpx-50));
    margin-bottom: 1em;
    margin-top: 1.5em;
}

.content h3 {
    font-weight: 500;
    font-size: calc(28 * var(--fpx-50));
}

.content *+p {
    margin-top: 1em;
}

/* ===== 14. utilities ===== */
.flex-box {
    display: flex;
    --gap: calc(48 * var(--rpx-50));
    --gap-x: var(--gap);
    --gap-y: var(--gap);
    --column: 3;
    --item-width: calc((100% - var(--gap-x) * (var(--column) - 1)) / var(--column));
    gap: var(--gap-y) var(--gap-x);
    flex-wrap: wrap;
    width: 100%;
}

.flex-box .list-item,
.flex-box .flex-item {
    width: var(--item-width);
    flex: 0 0 auto;
}

.flex-box .flex-item.fullwidth {
    width: 100%;
}

.page-margin-top {
    margin-top: var(--page-padding-top);
}

.page-pad-top {
    padding-top: var(--page-padding-top);
}

.editor-link-mockup {
    height: 1.3em;
    line-height: 1.3em;
    margin: 0;
    padding: 0 0.5em;
    background: white;
    color: #99ccff;
    position: absolute;
    right: 0;
    top: 0;
    visibility: hidden;
    z-index: 999;
    font-size: 1rem;
}

body.wfEditorMode .editor-link-mockup {
    visibility: visible;
}

/* ===== 15. forms ===== */
.search-ctn {
    font-size: calc(18 * var(--fpx-50));
    background-color: rgba(255, 255, 255, .2);
    height: calc(60 * var(--rpx-50));
    border-radius: calc(30 * var(--rpx-50));
    position: relative;
    flex: 0 0 calc(870% / 16 - 10 * var(--rpx-50));
}

.search-ctn input {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background-color: transparent;
    font-size: 1em;
    padding-left: calc(24 * var(--rpx-50));
    padding-right: calc(160 * var(--rpx-50));
    border-radius: calc(30 * var(--rpx-50));
    outline: none;
    color: #fff;
}

.search-ctn input::placeholder {
    color: rgba(255, 255, 255, .7);
}

.search-ctn input:focus {
    background-color: #fff;
    color: #000;
}

.search-ctn button {
    position: absolute;
    --gap: calc(10 * var(--rpx-50));
    top: var(--gap);
    right: var(--gap);
    height: calc(100% - 2 * var(--gap));
    font-family: inherit;
    outline: none;
}

.search-ctn button::after {
    --glow-color: #BE1D2380;
}

.form-contact {
    width: 100%;
    font-size: 1rem;
    position: relative;
    transition: opacity 0.3s;
}

.form-contact.loading {
    opacity: 0.6;
    pointer-events: none;
}

.form-contact.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(40 * var(--rpx-50));
    height: calc(40 * var(--rpx-50));
    border: calc(3 * var(--rpx-50)) solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 1000;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.form-error-message {
    margin-bottom: 1.5rem;
}

.form-error-message .errors {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #e31019;
    font-size: calc(18 * var(--fpx-50));
}

.form-error-message .errors li {
    padding: 0.25em 0;
}

.form-fields {
    display: flex;
    flex-wrap: wrap;
    gap: calc(10 * var(--rpx-50));
}

.form-field.col1 {
    width: 100%;
}

.form-field.col2 {
    width: calc((100% - 10 * var(--rpx-50)) / 2);
}

.form-field.col3 {
    width: calc((100% - 20 * var(--rpx-50)) / 3);
}

.form-field {
    position: relative;
    width: 100%;
}

.form-field.top-field {
    z-index: 240;
}

.form-field input[type=text],
.form-field textarea,
.form-field .dropdown-ctn {
    display: block;
    width: 100%;
    border: none;
    border-radius: calc(30 * var(--rpx-50));
    line-height: calc(30 * var(--rpx-50));
    padding: calc(9 * var(--rpx-50)) calc(20 * var(--rpx-50));
    font-size: inherit;
    outline: none;
    color: #fff;

    background: rgba(255, 255, 255, .1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.form-field .dropdown-ctn::after {
    content: "";
    width: calc(12 * var(--rpx-50));
    height: calc(14 * var(--rpx-50));
    background: url("/themes/basic/skin/images/icon_arr_down.svg") center/contain no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: calc(24 * var(--rpx-50));
    pointer-events: none;
}

.form-field .dropdown-ctn:hover {
    background-color: rgba(255, 255, 255, .2);
}

.form-field .dropdown-ctn.active {
    background-color: #fff;
    color: #000;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.form-field .dropdown-ctn {
    padding-right: calc(48 * var(--rpx-50));
}

input[type=checkbox] {
    display: none;
}

.agreement-field {
    cursor: pointer;
    margin-top: calc(20 * var(--rpx-50));
}

.agreement-field a {
    color: var(--theme-green);
    text-decoration: underline;
}

.submit-field {
    margin-top: calc(40 * var(--rpx-50));
}

input[type=checkbox]+i.checkbox-tick {
    width: calc(24 * var(--rpx-50));
    height: calc(24 * var(--rpx-50));
    background: rgba(255, 255, 255, .1);
    display: inline-block;
    vertical-align: middle;
    margin-right: .1em;
    cursor: pointer;
    border-radius: 50%;
}

input[type=checkbox]+i.checkbox-tick:hover {
    background: rgba(255, 255, 255, .2);
}

input[type=checkbox]:checked+i.checkbox-tick {
    background: url("/themes/basic/skin/images/icon_tick.svg") center/50% auto no-repeat var(--theme-green);
}

.form-field textarea {
    min-height: calc(160 * var(--rpx-50));
    resize: vertical;
}

.form-field input[type='text']:focus,
.form-field textarea:focus {
    outline: none;
    background-color: #fff;
    color: #000
}

.form-field input[type='text']::placeholder,
.form-field textarea::placeholder {
    color: #999;
}

.form-field.error input[type="text"],
.form-field.error textarea,
.form-field.error .dropdown-ctn {
    border-color: #e31019;
}

.verification-field {
    position: relative;
    gap: calc(10 * var(--rpx-50));
}

.verification-field .verification-captcha {
    position: absolute;
    left: 100%;
    top: 0;
    height: 100%;
    width: auto;
    border-radius: 0 calc(30 * var(--rpx-50)) calc(30 * var(--rpx-50)) 0;
    overflow: hidden;
    flex: 0 0 auto;
}

.verification-group {
    display: flex;
    gap: calc(20 * var(--rpx-50));
    align-items: flex-start;
}

.verification-input {
    flex: 1;
}

.form-field .verification-input input[type="text"] {
    border-radius: calc(30 * var(--rpx-50)) 0 0 calc(30 * var(--rpx-50));
}

.verification-captcha {
    flex: 0 0 auto;
}

.verification-captcha img {
    height: 100%;
    width: auto;
    display: block;
    cursor: pointer;
}

.btn-submit {
    width: calc(240 * var(--rpx-50));
    font-weight: 500;
}

.errors {
    margin-bottom: 1.5rem;
    color: #e31019;
}

@keyframes postedIn {
    0% {
        opacity: 0;
        transform: scale(.5);
    }

    0% {
        opacity: 1;
        transform: scale(1);
    }
}

.posted {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: calc(540 * var(--rpx-50));
    animation: postedIn 1.2s cubic-bezier(0.15, 1, 0.336, 1) forwards;
}

.posted-tick {
    width: calc(80 * var(--rpx-50));
    height: calc(80 * var(--rpx-50));
    border-radius: 50%;
    background: url("/themes/basic/skin/images/icon_tick.svg") center/50% auto no-repeat var(--theme-red);
    margin-bottom: calc(30 * var(--rpx-50));
}

.posted-text {
    font-size: calc(18 * var(--fpx-50));
}

input[type="radio"] {
    display: none;
}

.radio-list {
    display: flex;
    flex-wrap: wrap;
    gap: calc(20 * var(--rpx-50));
}

.field-list label.radio-item {
    width: auto;
    display: flex;
    align-items: center;
    cursor: pointer;

    gap: calc(8 * var(--rpx-50));
}

/*input[type="radio"] + i.radio-mock {
    width: calc(26em / 18);
    height: calc(26em / 18);
    border-radius: 50%;
    flex: 0 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.05);
}

input:checked[type="radio"] + i.radio-mock {
    border: none;
    background: url("/themes/basic/skin/images/icon_radio_check.svg") center/contain no-repeat;
}*/

/* ===== 16. other (dropdown, scroll-hint, etc.) ===== */
.dropdown-ctn {
    position: relative;
    cursor: pointer;
}

.dropdown-current {
    min-height: calc(30 * var(--rpx-50));
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    color: #fff;
    outline: none;
}

.dropdown-current:focus {
    box-shadow: 0 0 0 calc(2 * var(--rpx-50)) rgba(255, 255, 255, .3);
}

.dropdown-ctn.active .dropdown-current {
    color: #000;
}

.dropdown-current .pre-fixed {
    padding-right: .75em;
    border-right: calc(1 * var(--rpx-50)) solid rgba(255, 255, 255, 0.3);
    margin-right: .75em;
}

.dropdown-current .placeholder {
    color: rgba(255, 255, 255, .7);
}

.dropdown-ctn.active .dropdown-current .placeholder {
    color: rgba(0, 0, 0, .7);
}

.title-dropdown .selected {
    flex: 1 0 auto;
    text-align: center;
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border-radius: 0 0 calc(30 * var(--rpx-50)) calc(30 * var(--rpx-50));
    max-height: calc(200 * var(--rpx-50));
    overflow-y: auto;
    z-index: 300;
    display: none;
    padding: calc(20 * var(--rpx-50)) 0;
    background-color: #F6F6F6;
}

.dropdown-options::-webkit-scrollbar {
    width: calc(4 * var(--rpx-50));
}

.dropdown-options::-webkit-scrollbar-thumb {
    border-radius: calc(2 * var(--rpx-50));
    background: #0002;
}

.dropdown-options::-webkit-scrollbar-track {
    background: transparent;
}

.dropdown-ctn.active .dropdown-options {
    display: block;
}

.dropdown-option {
    padding: calc(8 * var(--rpx-50)) calc(20 * var(--rpx-50));
    cursor: pointer;
    transition: color 0.2s;
    line-height: calc(24 * var(--rpx-50));
}

.dropdown-option:hover {
    color: var(--theme-red);
    background-color: rgba(0, 0, 0, 0.02);
}

.dropdown-option:last-of-type {
    border-bottom: none;
}

@keyframes scrollHintAngleMove {
    0% {
        opacity: 0;
        transform: translateY(calc(-9 * var(--rpx-50)));
    }

    33% {
        opacity: 1;
        transform: translateY(calc(-3 * var(--rpx-50)));
    }

    67% {
        opacity: 1;
        transform: translateY(calc(3 * var(--rpx-50)));
    }

    100% {
        opacity: 0;
        transform: translateY(calc(9 * var(--rpx-50)));
    }
}

.scroll-hint {
    display: flex;
    align-items: center;
    gap: calc(15 * var(--rpx-50));
    color: #fff;
    padding: .5em;
    cursor: pointer;
    transition: transform .3s;
    transform-origin: left center;
}

.scroll-hint:hover {
    transform: scale(1.1);
    transition: transform .8s cubic-bezier(0.15, 1, 0.336, 1);
}

.scroll-hint-mouse {
    width: calc(24 * var(--rpx-50));
    height: calc(35.86 * var(--rpx-50));
    border-radius: calc(12 * var(--rpx-50));
    background-color: #fff;
    position: relative;
}

.scroll-hint-mouse i {
    width: calc(8 * var(--rpx-50));
    height: calc(4 * var(--rpx-50));
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url("../images/icon_angle_down.svg") center/contain no-repeat;
    animation: scrollHintAngleMove 1.5s linear infinite;
    opacity: 0;
}

.scroll-hint-mouse i:nth-of-type(2) {
    animation-delay: .5s;
}

.scroll-hint-mouse i:nth-of-type(3) {
    animation-delay: 1s;
}

.tab-progress {
    display: block;
    width: 100%;
    height: calc(6 * var(--rpx-50));
    border-radius: calc(3 * var(--rpx-50));
    background-color: rgba(255, 255, 255, .3);
    position: relative;
    overflow: hidden;
    transition: .2s;
}

.tab-progress .progress-value {
    height: 100%;
    width: 0;
    background-color: var(--theme-green);
    transition: width 0.1s linear;
}


.link-more {
    font-size: calc(20 * var(--fpx-50));
    margin-top: 1.5em;
    display: flex;
    align-items: center;
    transition: color .3s ease;
}

.link-more i.arr {
    width: calc(15 * var(--rpx-50));
    height: calc(13 * var(--rpx-50));
    margin-left: calc(12 * var(--rpx-50));
    background: url("../images/icon_arr_right.svg") center/contain no-repeat;
    transition: filter .3s ease;
}

.page-banner {
    height: calc(450 * var(--rpx-50));
    position: relative;
    overflow: hidden;
    margin-top: var(--header-height);
    background-repeat: no-repeat;
    background-size: cover;
}

.page-banner .title {
    font-size: calc(68 * var(--fpx-50));
    color: #fff;
}

.sec-title {
    font-size: max(24px, 46 * var(--fpx-50));
    font-weight: bold;
}

.sec-title-thin {
    font-size: max(22px, 36 * var(--fpx-50));
    font-weight: bold;
}

.sec-intro-max {
    font-size: max(18px, 28 * var(--fpx-50));
    color: #666666;
    margin-top: calc(20 * var(--rpx-50));
    line-height: 1.5;
}

.sec-intro {
    font-size: max(14px, 18 * var(--fpx-50));
    color: #666666;
    margin-top: calc(20 * var(--rpx-50));
    line-height: 1.5;
    text-align: justify;
}

.sec-intro strong {
    font-size: max(15px, 22 * var(--fpx-50));
    font-weight: bold;
    color: #000;
}

.sec-intro p+p {
    margin-top: calc(20 * var(--rpx-50));
}

:not(html, body, .el-scrollbar__wrap)::-webkit-scrollbar-button {
    display: none;
}

:not(html, body, .el-scrollbar__wrap)::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, .05);
}

:not(html, body, .el-scrollbar__wrap) .vertical-scrollbar::-webkit-scrollbar {
    height: 4px;
}

:not(html, body, .el-scrollbar__wrap)::-webkit-scrollbar-thumb {
    background-color: var(--theme-green);
    border-radius: 5px;
}

.read-more {
    width: max-content;
    border-radius: 300px;
    padding: 12px 35px;
    background-image: var(--theme-gradient-green);
    gap: 10px;
    font-size: max(12px, 16 * var(--fpx-50));
    color: #fff;
    cursor: pointer;
    transition: .3s;
    position: relative;
    font-weight: normal;
}

.read-more.lay1>* {
    position: relative;
    z-index: 1;
    color: var(--theme-green);
}

.read-more.lay1 img {
    filter: url(#green-overlay);
}

.read-more.lay1:hover>* {
    color: #fff;
}

.read-more.lay1:hover img {
    filter: url(#white-overlay);
}

.read-more.lay1::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 300px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    transition: .3s;
}

.read-more.lay1:hover::after {
    transform: translate(-50%, -50%) scale(0);
}

.read-more:hover,
.read-more:focus {
    filter: brightness(1.05);
    transform: scale(1.05);
}

.margin-t-60 {
    margin-top: calc(60 * var(--rpx-50));
}

.margin-t-40 {
    margin-top: calc(40 * var(--rpx-50));
}

.margin-t-20 {
    margin-top: calc(20 * var(--rpx-50));
}

.follow-icons .layout-area .qr-wrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, calc(-100% - 10px));
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    width: max(50px, 200 * var(--rpx-50));
}

.follow-icons .layout-area .item:hover .qr-wrap {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, calc(-100% - 5px));
}

.follow-icons .layout-area .item .qr-wrap img {
    width: 100%;
}

body:not(.wfEditorMode) object {
    display: none;
}

.nav-roof {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: calc(72 * var(--rpx-50));
    padding-right: calc(60 * var(--rpx-50));
    gap: 10px;
    height: calc(40 * var(--rpx-50));
    transition: .3s;
}

.scrolled .nav-roof {
    height: 0;
    opacity: 0;
}

.nav-roof .line {
    width: 1px;
    height: 20px;
    background-color: #666;
}

.nav-roof .lang-wrap {
    font-size: calc(16 * var(--fpx-50));
    color: #666;
    padding: 5px 0 5px 5px;
    cursor: pointer;
    position: relative;
}

.nav-roof .lang-cont {
    gap: 5px;
}

.nav-roof .lang-expand {
    position: absolute;
    top: 100%;
    right: 0;
    width: max-content;
    border-radius: 6px;
    padding: 18px 30px;
    z-index: 999;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
    text-align: center;
    gap: 10px;
    font-size: calc(20 * var(--fpx-50));
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.nav-roof .lang-expand a:hover {
    color: var(--theme-green);
}

.nav-roof .lang-wrap:hover .lang-expand {
    transform: unset;
    opacity: 1;
    visibility: visible;
}