/*!
 * app.css for master
 * Author wzcoder.com
 * @Copyright 2005-2021 wzcoder.com (http://www.wzcoder.com)
 * @version 1.0
 * @date 2021-03-05-1:59 PM
 */

/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/
:root {
    --background-color: #f1f5f9;
    --default-color: #444444;
    --heading-color: #333333;
    --accent-color: #582c84;
    --surface-color: #ffffff;
    --contrast-color: #fa8c35;
    --logo-color-green: #4FBA90;
    --primary-color: #582c84;
    --primary-color-rgb: 88, 44, 132;
    --secondary-color: #745398;
    --secondary-color-rgb: 116, 83, 152;
    --dark-color: #16191e;
    --title-color: #582c84;
    --text-color-primary: #444444;
    --text-color-secondary: #999;
    --text-color-light: #dadbdf;
    --primary-light-bg: #cdbfd9;
    --light-bg-color: #f2f2f2;
    --dark-bg-color: #000000;
    --border-color: #dadada;
    --border-radius: 15px;
    --border-radius__mobile: 8px;
    --animate-delay: 0.5s;
    --focus-color: #745398;
    --btn-color: #582c84;
    --btn-color-rgb: 95, 15, 155;
    --btn-linear-gradient: 180deg, var(--primary-color) 0%, var(--secondary-color) 100%;
    --btn-linear-gradient-hover: 180deg, var(--secondary-color) 0%, var(--primary-color) 100%;
    --m-lf: 9.56634vw;
    --heading-font: 'Poppins', sans-serif;
}

::selection {
    color: #FFFFFF;
    background-color: var(--primary-color);
    text-shadow: none;
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    height: 100%;
}

body {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color-primary);
    background-color: #ffffff;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-font-feature-settings: "liga", "kern";
    text-rendering: optimizelegibility;
}

html[lang^=en-] h1,
html[lang^=en-] h2,
html[lang^=en-] h3,
html[lang^=en-] h4,
html[lang^=en-] h5,
html[lang^=en-] h6 {
    font-family: 'Poppins', sans-serif;
}

/*法语字体*/
html[lang^=fr-] body {
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

html[lang^=zh-] body {
    font-family: -apple-system, "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, "Heiti SC", sans-serif;
}


body a {
    color: var(--text-color-primary);
    text-decoration: none;
}

a:hover, a:focus {
    color: var(--primary-color);
    text-decoration: none;
}

.bg-white {
    background-color: #ffffff;
}

.color-primary {
    color: var(--primary-color) !important;
}


.wz-table {
    width: 100%;
}


.wz-table tr {
    box-sizing: border-box;
    outline: 0px;
    border-top: none;
    border-bottom: 1px solid var(--border-color);
    height: 18px;
}

.wz-table tr td,
.wz-table tr th {
    box-sizing: border-box;
    outline: 0px;
    padding: 12px 16px;
    display: table-cell;
    border: medium;
    vertical-align: middle;
    text-align: center;
}

/*--------------------------------------------------------------
# 默认button样式
--------------------------------------------------------------*/
.w-btn-default {
    background-color: color-mix(in srgb, var(--accent-color), transparent 0%);
    border: none;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 0.5673rem 2.378rem;
    border-radius: 5px;
    transition: 0.5s;

}

.w-btn-default:hover, .w-btn-default:focus, .w-btn-default:active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
    color: #ffffff;
}


.w-btn-default-outline {
    display: inline-flex;
    justify-content: center;
    background-color: #FFFFFF;
    letter-spacing: 1px;
    border: 1px solid var(--border-color);;
    border-radius: 5px;
    transition: 0.5s;
    padding: 0.5673rem 2.378rem;
}

.w-btn-default-outline:hover, .w-btn-default-outline:focus, .w-btn-default-outline:active {
    border-color: var(--accent-color) ；
}

.w-btn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
    color: var(--surface-color);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
    line-height: 1;
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
    border: none;
}

.w-btn-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 50%);
    color: var(--surface-color);
}

.w-btn-sm-more {
    display: inline-flex;
    align-items: center;
    padding: 10px 30px;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    background: color-mix(in srgb, var(--accent-color), transparent 0%);
    color: var(--surface-color);
}

.w-btn-sm-more:hover, .w-btn-sm-more:focus, .w-btn-sm-more:active {
    color: #ffffff;
    background: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.w-mask-bg {
    background-color: rgba(var(--primary-color-rgb), 0.3);
}

/*--------------------------------------------------------------
# 默认分页样式
--------------------------------------------------------------*/
.pagination .page-item .page-link {
    color: var(--default-color);
    line-height: 1.5;
}

.pagination li.active {
    background-color: var(--accent-color);
}

.pagination li.active .page-link {
    border-color: var(--accent-color);
    color: var(--accent-color);
    z-index: 10;
}

/*--------------------------------------------------------------
# 视频设置为16:9
--------------------------------------------------------------*/
.video {
    position: relative;
    /*padding-bottom: 56.25%;*/
    /*height: 0;*/
    overflow: hidden;
}

.video iframe,
.video object,
.video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*--------------------------------------------------------------
# 图片设置为16:10
--------------------------------------------------------------*/
.img-resize,
.flex-img-resize {
    position: relative;
    height: 0;
    overflow: hidden;
}

.img-resize__16x9 {
    padding-bottom: 56.25%;
}

.img-resize__16x10 {
    padding-bottom: 62.5%;
}

.img-resize__10x16 {
    padding-bottom: 160%;
}


.img-resize__1x1 {
    padding-bottom: 100%;
}

.img-resize__2x1 {
    padding-bottom: 45.385%;
}

.img-resize img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.flex-img-resize .item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

/*--------------------------------------------------------------
  # 图片经过放大...
--------------------------------------------------------------*/
.zoom {
    overflow: hidden;
    border-radius: 0;
}

.zoom img {
    transition: 0.3s ease-in-out;
}

.zoom:hover img {
    overflow: hidden;
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}

/*--------------------------------------------------------------
# hero Section
--------------------------------------------------------------*/
.hero {
    width: 100vw;
    /*height: 43.23vw;*/
    /*height: calc(100vh - 86px - 71px);*/
    height: calc(100vw * 9 / 16);
    /*background-color: #ffffff;*/
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    /*margin-top: 71px;*/
}

@media (min-width: 1600px) {
    .hero {
        height: 100vh;
    }
}

.hero .hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero .hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    background: color-mix(in srgb, var(--surface-color), transparent 10%);
    line-height: 1;
}

.hero .hero-buttons .btn i {
    background: color-mix(in srgb, var(--contrast-color), transparent 10%);
    width: 24px;
    height: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    color: var(--surface-color);
    font-size: 12px;
}

.hero .hero-buttons .btn:hover {
    box-shadow: 0 4px 6px color-mix(in srgb, var(--default-color), transparent 60%);
    transform: translateY(-2px);
}

.hero .hero-buttons .btn.btn-more i {
    background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.hero .hero-buttons .btn.btn-contact i {
    background: color-mix(in srgb, var(--accent-color), transparent 10%);
}

.after-hero-v {
    margin-top: calc(100vw * 9 / 16);
}


.hero .carousel, .hero .carousel-inner, .hero .carousel-item, .hero .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.carousel-inner {
    z-index: 99;
}

.hero .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
}

.hero .carousel-item:before {
    display: none;
    content: "";
    /*background: rgba(0, 0, 0, 0.2);*/
    /*background-image: url("../img/mask.png");*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
}

.hero .carousel-container {
    display: flex;
    justify-content: start;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 50px;
    right: 50px;
    z-index: 20;
}


.hero h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 60px;
    font-weight: 700;
    text-shadow: 0 2px 3px rgba(0, 0, 0, .2);
    font-family: var(--heading-font);
}

.hero p {
    font-size: 28px;
    margin: 0 auto 30px auto;
    text-shadow: 0 2px 3px rgba(0, 0, 0, .2);
    color: #fff;
}

.hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center center;
}

.hero .carousel-inner .carousel-item,
.hero .carousel-inner .active.carousel-item-start,
.hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

.hero .carousel-inner .active,
.hero .carousel-inner .carousel-item-next.carousel-item-start,
.hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

.hero .carousel-inner .carousel-item-next,
.hero .carousel-inner .carousel-item-prev,
.hero .carousel-inner .active.carousel-item-start,
.hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

.hero .carousel-control-next, .hero .carousel-control-prev {
    opacity: .2;
}

.slider:hover .carousel-control-next, .slider:hover .carousel-control-prev {
    opacity: 1;
}

.hero .carousel-control-next-icon, .hero .carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
}

.hero .carousel-control-next-icon:hover, .hero .carousel-control-prev-icon:hover {
    color: rgba(255, 255, 255, 0.8);
}

.hero .carousel-indicators {
    z-index: 999;
}

.hero .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 30px;
    height: 4px;
    opacity: .6;
    transition: 0.3s;

}

.hero .carousel-indicators li.active {
    opacity: 1;
    background: var(--primary-color);
}

@media (min-width: 1200px) {
    .hero .carousel-container {
        margin-top: 105px;
    }
}

@media (min-width: 768px)  and (max-width: 1199.98px) {
    .hero {
        margin-top: 66px;
    }

    .after-hero-v {
        margin-top: calc(100vw * 9 / 16 + 66px);
    }

}

@media (max-width: 992px) {
    .hero h2 {

        font-size: 30px;
    }

    .hero p {
        font-size: 18px;

    }
}

@media (max-width: 767.98px) {
    .hero {
        margin-top: 50px;
        height: calc(10vw * 16);
    }


    .after-hero-v {
        margin-top: calc(10vw * 16 + 50px);
    }

    .hero .carousel-container {
        margin-top: 50px;
        left: 15px;
        right: 15px;
    }

    .hero h2 {
        font-size: 26px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero .carousel-control-next-icon, .hero .carousel-control-prev-icon {
        font-size: 24px;
    }

    .hero .hero-buttons {
        gap: 8px;
    }

    .hero .hero-buttons .btn {
        font-size: 14px;
        padding: 8px 20px;
    }

    .hero .hero-buttons .btn i {
        width: 20px;
        height: 20px;
    }

}

@media (min-width: 1024px) {
    .hero .carousel-control-prev, .hero .carousel-control-next {
        width: 5%;
    }
}


.animate__delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: calc(var(--animate-delay) * 1);
    animation-delay: calc(var(--animate-delay) * 1);
}

.animate__delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-delay: calc(var(--animate-delay) * 2);
    animation-delay: calc(var(--animate-delay) * 2);
}

.animate__delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation-delay: calc(var(--animate-delay) * 3);
    animation-delay: calc(var(--animate-delay) * 3);
}


.banner-wrapper {
    height: 100%;
}

.banner-text {
    height: 100%;
    position: relative;
    z-index: 300;
}

.banner-text h2 {
    font-size: 48px;
    text-transform: uppercase;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    background: color-mix(in srgb, #FFFFFF, transparent 10%);
    transition: all 0.5s;
    z-index: 997;
    padding: 10px 0;
    /*box-shadow: 0 0 10px rgb(0 0 0 / 10%);*/
}

@media (min-width: 1400px) {
    .header .container-fluid {
        --bs-gutter-x: 120px !important;
    }
}

.header.header-scrolled {
    padding: 0;
    background: color-mix(in srgb, #FFFFFF, transparent 30%);
    box-shadow: 0px 2px 15px rgba(var(--primary-color-rgb), 0.2);
}

@media screen and (max-width: 991.98px) {
    .header.header-scrolled {
        padding: 10px 0;
    }
}


.header:hover {
    background: color-mix(in srgb, #FFFFFF, transparent 0%);
}

.header .logo {
    font-size: 26px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.header .logo {
    color: var(--primary-color)
}

.header .logo img {
    max-height: 51px;
}

.header .logo .logo-main {
    display: block;
    opacity: 1;
    transition: all 0.5s;
}

.header.header-scrolled .logo .logo-main {
    display: none;
    opacity: 0;
}

.header .logo .logo-white {
    display: none;
    opacity: 0;
    transition: all 0.5s;
}

.header.header-scrolled .logo .logo-white {
    display: block;
    opacity: 1;
}


.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--surface-color);
    background: var(--contrast-color);
    font-size: 14px;
    padding: 8px 20px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
    justify-content: center;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--surface-color);
    background: color-mix(in srgb, var(--contrast-color), transparent 15%);
}

@media (max-width: 768px) {
    .header .logo img {
        max-height: 30px;
    }

    .header .btn-getstarted.btn-mobile {
        font-size: 16px;
        margin: 30px 20px 0 20px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar > ul > li {
    position: relative;
    padding: 8px 0 8px 20px;
}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
    padding: 5px 2px;
    color: #000000;

}

.header.header-scrolled .navbar a {
    color: #000000;
}

.navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: var(--primary-color) !important;
}

.navbar > ul > li > a:before {
    content: "";
    position: absolute;
    left: 20px;
    height: 2px;
    bottom: 3px;
    background-color: var(--primary-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
    visibility: visible;
    width: 50%;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 15px);
    margin: 0;
    padding: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 210px;
    transition: 0.3s;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
    color: var(--text-color-primary);
    font-size: 13px;
}

.navbar .dropdown ul a:hover {
    color: #FFFFFF;
}

.navbar .dropdown ul li:hover {
    background: linear-gradient(var(--linear-gradient));
}

.navbar .dropdown ul li:hover a {
    color: #FFFFFF;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: #FFFFFF !important;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: var(--primary-color);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

/*.header-scrolled .mobile-nav-toggle {*/
/*    color: #ffffff;*/
/*}*/

.mobile-nav-toggle.bi-x {
    color: #FFFFFF;
    z-index: 999;
}

@media (max-width: 1199px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(var(--linear-gradient));
    transition: 0.5s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 30px;
    right: 12px;
}

.header.header-scrolled .navbar.navbar-mobile a {
    color: #ffffff;
}

.header-scrolled .navbar-mobile .mobile-nav-toggle {
    top: 25px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 0;
    bottom: 15px;
    left: 0;
    padding: 10px 0;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile ul li {
    padding: 0;
}

.navbar-mobile a, .navbar-mobile a:focus {
    justify-content: center !important;
    text-align: center;
    padding: 15px 20px;
    font-size: 22px;
    border: none;
    color: #FFFFFF;
}

.navbar.navbar-mobile a:hover, .navbar.navbar-mobile .active, .navbar.navbar-mobile li:hover > a {
    color: color-mix(in srgb, #FFFFFF, transparent 30%) !important;
}

.navbar.navbar-mobile a:hover::before, .navbar.navbar-mobile li:hover > a::before, .navbar.navbar-mobile .active::before {
    visibility: hidden;
    opacity: 0;
}


.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 0 20px;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 5px 0;
    font-size: 14px;
    color: #FFFFFF;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    color: var(--primary-color);
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

.language-dropdown {
    background: transparent;
    color: #333;
    list-style: none;
    display: inline-block;
    padding: 0px;
    margin: 0 0 0 8px;
    z-index: 10;
    position: relative;

}

.language-dropdown .dropdown {
    margin: 0px;
    display: flex;
    align-items: center;

}

.language-dropdown .dropdown-toggle {
    display: inline-flex;
    color: #333;
    font-size: 15px;
}

.language-dropdown .dropdown-toggle::after {
    content: "\f282";
    font-family: bootstrap-icons !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    position: relative;
    font-size: 14px;
    color: #080a10;
    z-index: -1;
    margin-left: 5px;
    margin-top: 5px;
    border: none;
}


.language-dropdown .dropdown-menu {
    top: 15px !important;
    background: #fff;
    box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
    transition: .3s;
    border-radius: unset;
    border: none;
    min-width: 4rem;
    padding: 0px;
}

.language-dropdown .dropdown-menu li .dropdown-item {
    padding: 8px 15px 8px 15px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    text-transform: none;
    color: var(--text-color-primary);
    font-size: 13px;
    justify-content: center;
}

.language-dropdown .dropdown-menu li a:hover {
    background: var(--accent-color);
    color: #FFFFFF;
}

.language-dropdown .dropdown-menu li a svg {
    width: 24px;
    height: 18px;
    display: inline-block;
    margin-left: 15px;
    position: absolute;
    left: 0;
    border: 1px solid #d0d3d4;
}

.language-dropdown .dropdown svg {
    width: 24px;
    height: 18px;
    display: inline-block;
    border: 1px solid #d0d3d4;
}


/*--------------------------------------------------------------
# Navigation Menu 2026
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--heading-color);
        padding: 15px 30px;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        font-weight: 600;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    /*.navmenu li:first-child a {*/
    /*    padding-left: 0;*/
    /*}*/
    /*.navmenu li:last-child a {*/
    /*    padding-right: 0;*/
    /*}*/
    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--accent-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--surface-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--heading-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--accent-color);
    }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--heading-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--surface-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--heading-color);
        padding: 10px 20px;
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--surface-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--accent-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--surface-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/* Products Mega Menu 1 - Desktop */
@media (min-width: 1200px) {
    .navmenu .products-megamenu {
        position: static;
        /*  Hide Desktop Mega Menu 1 in Desktop */
        /* Bootstrap Tabs Navigation */
        /* Tab Content */
    }

    .navmenu .products-megamenu .mobile-megamenu {
        display: none;
    }

    .navmenu .products-megamenu .desktop-megamenu,
    .navmenu .products-megamenu .active,
    .navmenu .products-megamenu .active:focus {
        background-color: var(--surface-color);
    }

    .navmenu .products-megamenu .desktop-megamenu {
        box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 130%;
        left: 0;
        right: 0;
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
        border-radius: 0 0 6px 6px;
        z-index: 99;
        padding: 20px;
        display: flex;
        flex-direction: column;
        max-height: 80vh;
        overflow: hidden;
    }

    .navmenu .products-megamenu:hover > .desktop-megamenu {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .products-megamenu .megamenu-tabs {
        margin-bottom: 15px;
    }

    .navmenu .products-megamenu .megamenu-tabs .nav-tabs {
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .navmenu .products-megamenu .megamenu-tabs .nav-tabs .nav-item {
        margin-bottom: 0;
    }

    .navmenu .products-megamenu .megamenu-tabs .nav-tabs .nav-link {
        border: none;
        padding: 10px 20px;
        color: var(--heading-color);
        font-weight: 500;
        font-size: 15px;
        transition: 0.3s;
        background-color: transparent;
        border-bottom: 2px solid transparent;
    }

    .navmenu .products-megamenu .megamenu-tabs .nav-tabs .nav-link:hover {
        color: var(--accent-color);
        border-color: transparent;
    }

    .navmenu .products-megamenu .megamenu-tabs .nav-tabs .nav-link.active {
        color: var(--accent-color);
        background-color: transparent;
        border-bottom: 2px solid var(--accent-color);
    }

    .navmenu .products-megamenu .megamenu-content {
        flex: 1;
        overflow-y: auto;
        padding-right: 5px;
        /* Hide scrollbar for Chrome, Safari and Opera */
        /* Category Grid */
        /* Product Grid */
    }

    .navmenu .products-megamenu .megamenu-content::-webkit-scrollbar {
        width: 5px;
    }

    .navmenu .products-megamenu .megamenu-content::-webkit-scrollbar-track {
        background: color-mix(in srgb, var(--default-color), transparent 95%);
        border-radius: 10px;
    }

    .navmenu .products-megamenu .megamenu-content::-webkit-scrollbar-thumb {
        background: color-mix(in srgb, var(--default-color), transparent 80%);
        border-radius: 10px;
    }

    .navmenu .products-megamenu .megamenu-content .tab-content {
        display: none;
    }

    .navmenu .products-megamenu .megamenu-content .tab-content.active {
        display: block;
    }

    .navmenu .products-megamenu .megamenu-content .category-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .navmenu .products-megamenu .megamenu-content .category-grid .category-column {
        background-color: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
        border-radius: 8px;
        padding: 15px;
        transition: 0.3s;
    }

    .navmenu .products-megamenu .megamenu-content .category-grid .category-column h4 {
        color: var(--heading-color);
        font-size: 16px;
        margin-bottom: 15px;
        font-weight: 600;
        padding-bottom: 10px;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        position: relative;
    }

    .navmenu .products-megamenu .megamenu-content .category-grid .category-column h4:after {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: var(--accent-color);
    }

    .navmenu .products-megamenu .megamenu-content .category-grid .category-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .navmenu .products-megamenu .megamenu-content .category-grid .category-column ul li {
        margin-bottom: 10px;
        background-color: none !important;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: start !important;
        width: 100%;
    }

    .navmenu .products-megamenu .megamenu-content .category-grid .category-column ul li:last-child {
        margin-bottom: 0;
    }

    .navmenu .products-megamenu .megamenu-content .category-grid .category-column ul li a {
        color: var(--heading-color);
        font-size: 14px;
        transition: 0.3s;
        padding: 0 0 0 20px;
        display: block;
        position: relative;
    }

    .navmenu .products-megamenu .megamenu-content .category-grid .category-column ul li a:before {
        content: "\f285";
        font-family: "bootstrap-icons";
        position: absolute;
        left: 0;
        top: 2px;
        font-size: 12px;
        color: var(--accent-color);
        opacity: 0.7;
    }

    .navmenu .products-megamenu .megamenu-content .category-grid .category-column ul li a:hover {
        color: var(--accent-color);
        transform: translateX(3px);
    }

    .navmenu .products-megamenu .megamenu-content .category-grid .category-column ul li a:hover:before {
        opacity: 1;
    }

    .navmenu .products-megamenu .megamenu-content .category-grid .category-column .active {
        background-color: none;
    }

    .navmenu .products-megamenu .megamenu-content .product-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 10px;
    }

    .navmenu .products-megamenu .megamenu-content .product-grid .product-card {
        background-color: var(--surface-color);
        overflow: hidden;
    }

    .navmenu .products-megamenu .megamenu-content .product-grid .product-card a {
        flex-direction: column;
        padding: 0;
    }

    .navmenu .products-megamenu .megamenu-content .product-grid .product-card:hover .product-image img {
        transform: scale(1.1);
    }

    .navmenu .products-megamenu .megamenu-content .product-grid .product-card .product-image {
        height: 160px;
        position: relative;
        overflow: hidden;
    }

    .navmenu .products-megamenu .megamenu-content .product-grid .product-card .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }

    .navmenu .products-megamenu .megamenu-content .product-grid .product-card .product-image .badge-new,
    .navmenu .products-megamenu .megamenu-content .product-grid .product-card .product-image .badge-sale {
        position: absolute;
        top: 10px;
        right: 10px;
        padding: 3px 8px;
        font-size: 11px;
        font-weight: 600;
        border-radius: 3px;
        z-index: 1;
    }

    .navmenu .products-megamenu .megamenu-content .product-grid .product-card .product-image .badge-new {
        background-color: #28a745;
        color: white;
    }

    .navmenu .products-megamenu .megamenu-content .product-grid .product-card .product-image .badge-sale {
        background-color: #dc3545;
        color: white;
    }

    .navmenu .products-megamenu .megamenu-content .product-grid .product-card .product-info {
        padding: 15px;
    }

    .navmenu .products-megamenu .megamenu-content .product-grid .product-card .product-info h5 {
        margin: 0 0 5px;
        font-size: 15px;
        font-weight: 600;
        color: var(--heading-color);
    }

    .navmenu .products-megamenu .megamenu-content .product-grid .product-card .product-info .price {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .navmenu .products-megamenu .megamenu-content .product-grid .product-card .product-info .price .original-price {
        text-decoration: line-through;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin-right: 5px;
        font-weight: normal;
    }

    .navmenu .products-megamenu .megamenu-content .product-grid .product-card .product-info .btn-view {
        display: inline-block;
        padding: 5px 12px;
        background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
        color: var(--accent-color);
        border-radius: 4px;
        font-size: 12px;
        font-weight: 500;
        transition: 0.3s;
    }

    .navmenu .products-megamenu .megamenu-content .product-grid .product-card .product-info .btn-view:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }
}

.navmenu .products-megamenu .megamenu-content .nav-intro {
    overflow: hidden;
    border-radius: var(--border-radius);
    padding: 0;
}

/* Products Mega Menu 1 - Mobile */
@media (max-width: 1199px) {
    .navmenu .products-megamenu {
        /* Hide Desktop Mega Menu 1 in Mobile */
    }

    .navmenu .products-megamenu .desktop-megamenu {
        display: none;
    }

    .navmenu .products-megamenu .mobile-megamenu {
        position: static;
        display: none;
        z-index: 99;
        padding: 0;
        margin: 10px 20px;
        background-color: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
        border-radius: 4px;
        overflow: hidden;
    }

    .navmenu .products-megamenu .mobile-megamenu li {
        position: relative;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .navmenu .products-megamenu .mobile-megamenu li:last-child {
        border-bottom: none;
    }

    .navmenu .products-megamenu .mobile-megamenu li a {
        padding: 12px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--heading-color);
        font-size: 15px;
        transition: 0.3s;
    }

    .navmenu .products-megamenu .mobile-megamenu li a:hover {
        color: var(--accent-color);
        background-color: color-mix(in srgb, var(--default-color), transparent 97%);
    }

    .navmenu .products-megamenu .mobile-megamenu li ul {
        padding: 0;
    }

    .navmenu .products-megamenu .mobile-megamenu.dropdown-active {
        display: block;
    }
}

/* Products Mega Menu 2 - Desktop */
@media (min-width: 1200px) {
    .navmenu .products-megamenu-2 {
        position: static;
        /* Hide Mobile Mega Menu in Desktop */
        /* Tabs Navigation */
        /* Tab Content */
    }

    .navmenu .products-megamenu-2 .mobile-megamenu {
        display: none;
    }

    .navmenu .products-megamenu-2 .desktop-megamenu,
    .navmenu .products-megamenu-2 .active,
    .navmenu .products-megamenu-2 .active:focus {
        background-color: var(--surface-color);
    }

    .navmenu .products-megamenu-2 .desktop-megamenu {
        box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 130%;
        left: 0;
        right: 0;
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
        border-radius: 6px;
        z-index: 99;
        padding: 10px 0 0 0;
        display: flex;
        flex-direction: column;
        max-height: 80vh;
        overflow: hidden;
    }

    .navmenu .products-megamenu-2:hover > .desktop-megamenu {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .products-megamenu-2 .megamenu-tabs {
        padding: 0;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs {
        border-bottom: none;
        display: flex;
        justify-content: center;
    }

    .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-item {
        margin: 0;
    }

    .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-link {
        border: none;
        padding: 15px 30px;
        color: var(--heading-color);
        font-weight: 600;
        font-size: 14px;
        transition: 0.3s;
        background-color: transparent;
        border-bottom: 2px solid transparent;
        letter-spacing: 0.5px;
    }

    .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-link:hover {
        color: var(--accent-color);
    }

    .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-link.active {
        color: var(--accent-color);
        background-color: transparent;
        border-bottom: 2px solid var(--accent-color);
    }

    .navmenu .products-megamenu-2 .megamenu-content {
        flex: 1;
        overflow-y: auto;
        /* Hide scrollbar for Chrome, Safari and Opera */
        /* Category Layout */
        /* Categories Section */
        /* Featured Section */
    }

    .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar {
        width: 5px;
    }

    .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar-track {
        background: color-mix(in srgb, var(--default-color), transparent 95%);
        border-radius: 10px;
    }

    .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar-thumb {
        background: color-mix(in srgb, var(--default-color), transparent 80%);
        border-radius: 10px;
    }

    .navmenu .products-megamenu-2 .megamenu-content .tab-pane {
        padding: 25px;
    }

    .navmenu .products-megamenu-2 .megamenu-content .category-layout {
        display: flex;
        gap: 30px;
    }

    .navmenu .products-megamenu-2 .megamenu-content .categories-section {
        flex: 1;
        /* Category Headers */
        /* Category Links */
    }

    .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-headers {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-bottom: 15px;
    }

    .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-headers h4 {
        color: var(--heading-color);
        font-size: 16px;
        font-weight: 600;
        position: relative;
        margin: 0;
        padding-bottom: 10px;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links .link-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links .link-row a {
        color: var(--heading-color);
        font-size: 14px;
        transition: 0.3s;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0;
    }

    .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links .link-row a:hover {
        color: var(--accent-color);
        transform: translateX(3px);
    }

    .navmenu .products-megamenu-2 .megamenu-content .featured-section {
        width: 300px;
    }

    .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image {
        position: relative;
        height: 100%;
        background-color: #f5f5f5;
        border-radius: 6px;
        overflow: hidden;
    }

    .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.9;
    }

    .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 30px;
    }

    .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content h3 {
        color: var(--heading-color);
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content .btn-shop {
        display: inline-block;
        padding: 8px 20px;
        background-color: var(--accent-color);
        color: var(--contrast-color);
        border-radius: 4px;
        font-size: 14px;
        font-weight: 500;
        transition: 0.3s;
        width: fit-content;
    }

    .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content .btn-shop:hover {
        background-color: color-mix(in srgb, var(--accent-color), black 15%);
        transform: translateY(-2px);
    }
}

/* Products Mega Menu 2 - Mobile */
@media (max-width: 1199px) {
    .navmenu .products-megamenu-2 {
        /* Hide Desktop Mega Menu in Mobile */
    }

    .navmenu .products-megamenu-2 .desktop-megamenu {
        display: none;
    }

    .navmenu .products-megamenu-2 .mobile-megamenu {
        position: static;
        display: none;
        z-index: 99;
        padding: 0;
        margin: 10px 20px;
        background-color: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
        border-radius: 4px;
        overflow: hidden;
    }

    .navmenu .products-megamenu-2 .mobile-megamenu li {
        position: relative;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .navmenu .products-megamenu-2 .mobile-megamenu li:last-child {
        border-bottom: none;
    }

    .navmenu .products-megamenu-2 .mobile-megamenu li a {
        padding: 12px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--heading-color);
        font-size: 15px;
        transition: 0.3s;
    }

    .navmenu .products-megamenu-2 .mobile-megamenu li a:hover {
        color: var(--accent-color);
        background-color: color-mix(in srgb, var(--default-color), transparent 97%);
    }

    .navmenu .products-megamenu-2 .mobile-megamenu li ul {
        padding: 0;
    }

    .navmenu .products-megamenu-2 .mobile-megamenu.dropdown-active {
        display: block;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    padding: 0;
    color: var(--text-color-secondary);
    font-size: 14px;
    background: var(--dark-color);
    position: relative;
}

.footer a:hover {
    color: var(--focus-color);
}

.footer .footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer .footer-top {
    padding: 60px 0 30px 0;
}

.footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

.footer .footer-top .footer-contact h3 {
    font-size: 24px;
    margin: 0 0 15px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    color: #FFFFFF;
}

.footer .footer-top .footer-contact h3 span {
    color: var(--focus-color);
}

.footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: var(--text-color-secondary);
}

.footer .footer-top h4,
.footer .footer-top h4 > a,
.footer .nav-title {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    padding-bottom: 1rem;
    display: flex;
}

.footer .footer-top .footer-links {
    margin-bottom: 30px;
}

.footer .footer-top .footer-links ul {
    list-style: none;
    padding-bottom: 0;
    margin: 0;
}

.footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: var(--focus-color);
    font-size: 12px;
    line-height: 1;
}

.footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    justify-content: start;
}

.footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-top .footer-links ul a {
    color: var(--text-color-secondary);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

.footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: var(--focus-color);
}

.footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #2b2b2b;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-left: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
    background: linear-gradient(var(--linear-gradient));
    color: #fff;
    text-decoration: none;
}

.footer .copyright {
    text-align: center;
    float: left;
}

.footer .poweredby {
    display: none;
    float: right;
    text-align: center;
    font-size: 13px;
    color: var(--text-color-secondary);
}


.ft-links a {
    color: var(--text-color-secondary);
    padding-right: 10px;
}

.ft-links a:last-child {
    padding-right: 0;
}

.foot-nav .dropdown-toggle.show .rotate-90 {
    transform: rotate(90deg);
}

.foot-nav .dropdown-menu {
    position: relative !important;
    background: none;
    border: none;
    min-width: auto;
    padding: 0;
    font-size: 14px;
    transform: none !important;
}

.foot-nav .dropdown-menu .dropdown-item {
    padding: 0;
    background: none !important;
}

.footer .footer-top .nav-title:after {
    display: none;
}


@media (min-width: 768px) {
    .foot-nav .dropdown-menu {
        display: block;
    }

    .footer .footer-top .footer-links {
        margin-bottom: 30px;
    }

    .nav-title i {
        visibility: hidden;
        opacity: 0;
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .nav-title {
        display: flex;
        justify-content: space-between;
    }

    .nav-title i.bi-chevron-down {
        visibility: visible;
        opacity: 1;
        display: inline-block;
    }

    .nav-title i.bi-chevron-up {
        visibility: hidden;
        opacity: 0;
        display: none;
    }

    .nav-title.show i.bi-chevron-up {
        visibility: visible;
        opacity: 1;
        display: inline-block;
    }

    .nav-title.show i.bi-chevron-down {
        visibility: hidden;
        opacity: 0;
        display: none;
    }

    .footer-links {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer .footer-top .footer-links ul {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

.nav-store a {
    display: flex;
}

.nav-store h4, .nav-store a {
    margin-bottom: 0;
    padding-bottom: 0 !important;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section, .py-se, .section {
    padding: 80px 0;
    position: relative;
    background: var(--surface-color);
}


.bgw {
    background: var(--surface-color);

}

.section-bg {
    background-color: var(--light-bg-color);
}

.section-dark {
    background-color: var(--dark-bg-color);
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-footer {
    padding-top: 30px;
}

.section-title h2, .section-title__v2 h2 {
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    color: var(--heading-color);
}

.section-title.accent h2, .section-title__v2.accent h2 {
    color: var(--accent-color);
}

.section-title h2::after, .section-title__v2 h2::after {
    content: "";
    position: absolute;
    display: none;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
    bottom: 0;
    left: calc(50% - 25px);
}


.section-title p {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.section-dark .section-title h2,
.section-dark .section-title p {
    color: #FFFFFF;
}

.section-title__v2 h2 {
    font-size: 24px;
}

.section-title__v2 h2::after {
    left: 0;
}

@media (max-width: 1199.98px) {
    .section-title h2, .section-title__v2 h2 {
        font-size: 30px;
    }
}

@media (max-width: 767.98px) {
    section, .py-se, .section {
        padding: 50px 0;
    }

    .section-title h2, .section-title__v2 h2 {
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# right action button
--------------------------------------------------------------*/
.right-action-btns {
    position: fixed;
    right: 15px;
    bottom: 5%;
    z-index: 996;
    gap: 10px;
    display: flex;
}

.ra-btn {
    background: linear-gradient(var(--btn-linear-gradient));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all ease-in-out 0.3s;
}

.ra-btn i {
    font-size: 26px;
    color: #fff;
    line-height: 0;
}

.ra-btn:hover {
    background: linear-gradient(var(--btn-linear-gradient-hover));
    color: #fff;
}

.back-to-top {
    visibility: hidden;
    opacity: 0;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
  # 文字超出用省略号...
--------------------------------------------------------------*/
.text-overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.bg-img-center {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.img-white {
    /*filter: brightness(1000%) grayscale(100%);*/
    filter: brightness(0) invert(1);

}

/*--------------------------------------------------------------
# App通用
--------------------------------------------------------------*/
/*解决AOS动画溢出*/
body {
    overflow-x: hidden;
    width: 100%;
}

.img-radius {
    border-radius: var(--border-radius);
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .img-radius {
        border-radius: var(--border-radius__mobile);
    }
}

.img-radius-larger {
    border-radius: 20px;
    overflow: hidden;
}

.fir-se {
    margin-top: calc(90 / 192 * 100vw);
}

@media screen and (max-width: 1199.98px) {
    .fir-se {
        margin-top: calc(100vw * 90 / 192 + 72px);
    }
}

@media screen and (max-width: 767px) {
    .fir-se {
        margin-top: calc(100vw * 90 / 192 + 50px);
    }

}

.no-banner {
    padding-top: calc(3.33333vw + 72px);
}


.zi-1 {
    z-index: 1 !important;
}

.left-0 {
    left: 0
}

.text-white {
    color: #FFFFFF !important;
}

.img-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.btn-def i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}

.btn-def:hover i {
    transform: translateX(5px);
}

.banner-inner {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: calc(90 / 192 * 100vw);
    background-color: #ffffff;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
}

.banner-inner-wrapper {
    position: relative;
    height: calc(90 / 192 * 100vw);
    z-index: 10;
    color: var(--heading-color);
}

.banner-inner-wrapper h2 {
    font-size: 64px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 45px;
}

.banner-inner-wrapper h2 small {
    font-size: 50%;
    font-weight: 400;
}

.banner-inner-wrapper p {
    font-size: 32px;
    color: color-mix(in srgb, var(--default-color), transparent 5%);
    line-height: 1.2;
}

.banner-inner-wrapper.text-white h2, .banner-inner-wrapper.text-white p {
    color: var(--surface-color);
    text-shadow: 0 2px 3px rgba(0, 0, 0, .2);
}

.banner-inner-wrapper .fe-list {
    font-size: 24px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.5;
}

.text-white .fe-list {

    color: var(--surface-color);

}


.btn-read-more {
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: linear-gradient(42deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.btn-read-more span {
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    font-size: 16px;
    letter-spacing: 1px;
}

.btn-read-more:hover, .btn-read-more:focus, .btn-read-more:visited {
    color: #FFFFFF;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.btn-links {
    position: absolute;
    bottom: 30px;
    z-index: 20;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

}

.btn-links .btn-read-more {
    width: 100%;
    height: 100%;
    padding: 10px 30px;
    border-radius: 4px;
    background: linear-gradient(42deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: 0.3s;
}

.btn-links .btn-read-more:hover {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.btn-links .btn-read-more.small span {
    font-size: 14px;

}

.btn-read-more.small {
    padding: 6px 20px;
}

.btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    color: var(--secondary-color);
    font-weight: 600;
}

.btn-watch-video i {
    color: var(--secondary-color-rgb);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.btn-watch-video:hover {
    color: rgba(var(--secondary-color-rgb), 0.8);
}

.gslide-inner-content img, .gslide-inner-content .gslide-image {
    background-color: #FFFFFF;
}

@media (max-width: 1199.98px) {
    .banner-inner {
        margin-top: 72px;
    }

    .banner-inner-wrapper h2 {
        font-size: 48px;
    }

    .banner-inner-wrapper p {
        font-size: 24px;
    }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-banner .banner-inner-wrapper h2 {
    font-size: 60px;
}

.about-banner .banner-inner-wrapper p {
    font-size: 28px;
}

.about-detail .article-content p {
    font-size: 24px;
}

.about-more {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--surface-color);
}

@media (min-width: 1600px) {
    .about-banner .banner-content {
        margin-top: -200px
    }

    .about-more {
        min-height: 800px;
    }
}

.about-more .post-img {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-more .post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-more .post-container {
    position: relative;
    z-index: 10;
    color: var(--surface-color);
}

.about-more .post-container h2 {
    font-size: 60px;
}

.about-more .post-container .article-content p {
    font-size: 28px;
}

.about .content {
    /*background-color: var(--primary-light-bg);*/
    padding: 40px;
}

.about h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.about h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--title-color);
}

.about p {
    margin: 15px 0 30px 0;
    line-height: 24px;
}


.about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--primary-color) 50%, rgba(var(--primary-color-rgb), 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.about .play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(var(--primary-color-rgb), 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

.about .play-btn:hover:after {
    border-left: 15px solid var(--primary-color);
    transform: scale(20);
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

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

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

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

/*--------------------------------------------------------------
# featured-services
--------------------------------------------------------------*/
.featured-services .icon-box:not(:last-child) {
    margin-bottom: 2rem;
}

.featured-services .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 0;
    color: var(--title-color);
}

.featured-services .icon-box .icon {
    width: 48px;
    height: 48px;
    float: left;
}

.featured-services .icon-box p {
    color: #848484;
}

.featured-services .image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}

.featured-services .content {
    margin-left: 60px;
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(to bottom, rgba(var(--primary-color-rgb), 0.6), rgba(var(--primary-color-rgb), 0.6)), url("../img/demo/img2.jpeg") fixed center center;
    background-size: cover;
}

.cta h3 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    transition: all 0.3s;
    background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 0%) 0%, color-mix(in srgb, var(--accent-color), transparent 30%) 100%);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.cta .cta-btn:hover {
    background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 30%) 0%, color-mix(in srgb, var(--accent-color), transparent 0%) 100%);
}

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

.cta .sidebar_form .card {
    background: transparent;
    border: none;
}


/*--------------------------------------------------------------
# cooperation
--------------------------------------------------------------*/
.cooperation .js-swiper {
    overflow: hidden;
}

.cooperation .js-swiper .swiper-pagination {
    position: relative;
    bottom: 0;

}

.cooperation .js-swiper .swiper-pagination .swiper-pagination-bullet {
    cursor: pointer;
    border-radius: 0;
    border: 0;
    display: inline-block;
    background: #000;
    opacity: .2;
    overflow: hidden;
    width: 30px;
    height: 4px;
    transition: 0.3s;
}

.cooperation .js-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
}

/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/
.recent-blog-posts .post-box {
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    transition: 0.3s;
    height: 100%;
    overflow: hidden;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.recent-blog-posts .post-box .post-img {
    overflow: hidden;
    margin: -30px -30px 15px -30px;
    position: relative;
}

.recent-blog-posts .post-box .post-img img {
    transition: 0.5s;
}

.recent-blog-posts .post-box .post-date {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color-secondary);
    display: block;
    margin-bottom: 10px;
}

.recent-blog-posts .post-box .post-title {
    font-size: 18px;
    color: var(--title-color);
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
    transition: 0.3s;
}

.recent-blog-posts .post-box .readmore {
    display: flex;
    align-items: center;
    font-weight: 400;
    line-height: 1;
    transition: 0.3s;
    font-size: 14px;
    text-transform: uppercase;
}

.recent-blog-posts .post-box .readmore i {
    line-height: 0;
    margin-right: 4px;
    font-size: 18px;
}

.recent-blog-posts .post-box:hover .post-title {
    color: var(--title-color);
}

.recent-blog-posts .post-box:hover .post-img img {
    transform: rotate(6deg) scale(1.2);
}

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.prod-list-banner h2 {
    margin-top: 200px;
}

.product-content {
    position: relative;
}

.prod-summary .prod-summary-title h2 {
    font-size: 2.2rem;
    font-weight: 600;
}

.prod-summary .prod-summary-title p {
    font-size: 1.8rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.prod-summary .prod-summary-cont > p:last-child {
    margin-bottom: 0;
}

.prod-summary .prod-summary-cont, .prod-summary .prod-summary-cont p {
    font-size: 1.2rem;
}

@media (max-width: 767.98px) {
    .prod-summary .prod-summary-title h2 {
        font-size: 1.5rem;
    }

    .prod-summary .prod-summary-title p {
        font-size: 1.25rem;
        color: color-mix(in srgb, var(--default-color), transparent 25%);
    }

    .prod-summary .prod-summary-cont, .prod-summary .prod-summary-cont p {
        font-size: 1rem;
    }

}

.products .product-info h1 {
    font-size: 24px;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 3px rgba(0, 0, 0, .6);
}

.products .product-info p {
    font-size: 16px;
}


.product-item.grid-small-item {
    background: var(--surface-color);
    padding: 50px;
    position: relative;
    display: block;
    text-align: center;
    transition: all ease-in-out 0.3s;
    box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: calc((744px - 3rem) / 2);
}

.product-item .item-info h3 {
    font-size: 36px;
}

.product-item .item-info .lead {
    font-size: 18px;
    font-weight: 300;
}

@media (max-width: 1599.98px) {
    .product-item.grid-small-item {
        height: calc((624px - 3rem) / 2);
    }
}

@media (max-width: 1399.98px) {
    .product-item.grid-small-item {
        padding: 20px;
        height: calc((534px - 3rem) / 2);
    }

    .product-item .item-info .lead {
        font-size: 16px;
    }
}

@media (max-width: 1199.98px) {
    .product-item.grid-small-item {
        padding: 20px;
        height: calc((456px - 1.25rem) / 2);
    }

    .product-item .item-info h3 {
        font-size: 18px;
    }

    .product-item .item-info .lead {
        font-size: 14px;
        line-height: 1.2;
    }

    .w-btn-sm-more {
        padding: 5px 12px;
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    .prod-list-banner h2 {
        margin-top: 20px;
    }

    .products .product-content {
        background-image: unset !important;
        background-color: #FFFFFF !important;
    }

}

@media (min-width: 992px) {


    .products .product-content {
        background-position: center center;
        background-size: cover;
    }

    .products .product-item {
        /*height: calc(100vh - 86px - 54px);*/
        height: 100%;
    }

    .products .product-info {
        position: absolute;
        z-index: 3;
        transition: all ease-in-out 0.3s;
        padding: 15px;
        color: #ffffff;
        bottom: 40px;
        width: 100%;
    }

    .products .product-item .small-poster {
        display: none;
    }

    .products .product-info h1 {
        font-size: 48px;
    }

    .products .product-info p {
        font-size: 20px;
    }

}

.grid-2_x .grid-item {
    position: relative;
    display: block;
    text-align: center;
    transition: all ease-in-out 0.3s;
    box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--surface-color);
}

.grid-2_x .grid-item .item {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all ease-in-out 0.5s;
}

.grid-2_x .grid-item .item.imga {
    opacity: 1;
    visibility: visible;
}

.grid-2_x .grid-item .item.imgb {
    opacity: 0;
    visibility: hidden;
}

.grid-2_x .grid-item:hover .imga {
    opacity: 0;
    visibility: hidden;
}

.grid-2_x .grid-item:hover .imgb {
    opacity: 1;
    visibility: visible;
}

.grid-2_x .grid-item.no-bg-switch .imga {
    opacity: 1 !important;
    visibility: visible !important;
}

.grid-2_x .grid-item.no-bg-switch .imgb {
    opacity: 0 !important;
    visibility: hidden !important;
}

.grid-2_x .grid-item::before {
    display: block;
    content: '';
    position: absolute;
    inset: 0;
    background: color-mix(in srgb, var(--accent-color), transparent 70%);
    opacity: 0;
    z-index: 5;
    transition: all ease-in-out 0.3s;
}

/*遮罩，如果要添加设置成1*/
.grid-2_x .grid-item:hover::before {
    opacity: 0;
}

.grid-2_x .grid-item:hover {
    box-shadow: 0 6px 25px 0px rgba(20, 45, 100, 0.2);
}

.grid-2_x .grid-item .item-info {
    position: absolute;
    inset: 0;
    padding: 15px 15px 50px 15px;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    z-index: 10;
    transition: all ease-in-out 0.3s;
}

.grid-2_x .grid-item .item-info h3,
.grid-2_x .grid-item .item-info p {
    margin-bottom: 0.5rem;
}


.grid-2_x .btn-links {
    z-index: 100;
}

.grid-2_x .btn-links:hover {
    background-color: rgba(var(--secondary-color-rgb), 0.8) !important;
}

@media screen and (max-width: 768px) {
    .grid-item .item-info h3 {
        font-size: 18px;
    }

    .grid-2_x .grid-item .item-info {
        padding: 15px;
    }
}

/*--------------------------------------------------------------
# Our Values
--------------------------------------------------------------*/
.our-values .card {
    border: 0;
    padding: 160px 20px 20px 20px;
    position: relative;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.our-values .card-body {
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: ease-in-out 0.3s;
    border-radius: 5px;
}

.our-values .card-title {
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}

.our-values .card-title a {
    color: var(--title-color);
}

.our-values .card-text {
    color: #5e5e5e;
}

.our-values .read-more a {
    color: #777777;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    transition: 0.4s;
}

.our-values .read-more a:hover {
    text-decoration: underline;
}

.our-values .card:hover .card-body {
    /*background: var(--primary-color);*/
    background-image: linear-gradient(var(--linear-gradient));
}

.our-values .card:hover .read-more a,
.our-values .card:hover .card-title,
.our-values .card:hover .card-title a,
.our-values .card:hover .card-text {
    color: #fff;
}

.article-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0;
}

.article-title .sub {
    color: var(--text-color-secondary);
}

.article-intro {
    font-size: 16px;
}

.article-intro img {
    max-width: 100% !important;
    height: auto !important;
}

/*--------------------------------------------------------------
# History
--------------------------------------------------------------*/
.history .resume-title {
    line-height: 18px;
    font-size: 18px;
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 0;
}

.history .resume-item {
    padding: 0 0 20px 20px;
    margin-top: -2px;
    border-left: 2px solid var(--primary-color);
    position: relative;
}


.history .resume-item h5 {
    font-size: 16px;
    background: #e4ebf3;
    padding: 5px 15px;
    display: inline-block;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}

.history .resume-item ul {
    padding-left: 20px;
}

.history .resume-item ul li {
    padding-bottom: 10px;
}

.history .resume-item:last-child {
    padding-bottom: 0;
}

.history .resume-item::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50px;
    left: -9px;
    top: 0;
    background: #fff;
    border: 2px solid var(--primary-color);
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-wrap {
    border-top: 1px solid #f1eeed;
    border-left: 1px solid #f1eeed;
}

.clients .client-logo {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #f1eeed;
    border-bottom: 1px solid #f1eeed;
    overflow: hidden;
    background: #fff;
    height: 100px;
}

.clients .client-logo img {
    transition: all 0.3s ease-in-out;
    height: 36px;
    filter: grayscale(100%);
}

.clients .client-logo:hover img {
    filter: none;
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/*.services .icon-box {*/
/*    padding: 30px;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    background: #fff;*/
/*    box-shadow: 0 0 29px 0 rgba(var(--primary-color-rgb), 0.12);*/
/*    transition: all 0.3s ease-in-out;*/
/*    border-radius: 8px;*/
/*    z-index: 1;*/
/*    width: 100%;*/
/*}*/

/*.services .icon-box::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    background: #e1f0fa;*/
/*    right: -60px;*/
/*    top: -40px;*/
/*    width: 100px;*/
/*    height: 100px;*/
/*    border-radius: 50px;*/
/*    transition: all 0.3s;*/
/*    z-index: -1;*/
/*}*/

/*.services .icon-box:hover::before {*/
/*    !*background: var(--primary-color);*!*/
/*    background-image: linear-gradient(var(--linear-gradient));*/
/*    right: 0;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    border-radius: 0px;*/
/*}*/

/*.services .icon {*/
/*    margin: 0 auto 20px auto;*/
/*    padding-top: 10px;*/
/*    display: inline-block;*/
/*    text-align: center;*/
/*    border-radius: 50%;*/
/*    width: 60px;*/
/*    height: 60px;*/
/*    background: var(--primary-color);*/
/*    transition: all 0.3s ease-in-out;*/
/*}*/

/*.services .icon i {*/
/*    font-size: 36px;*/
/*    line-height: 1;*/
/*    color: #fff;*/
/*}*/

/*.services .title {*/
/*    font-weight: 700;*/
/*    margin-bottom: 15px;*/
/*    font-size: 18px;*/
/*}*/

/*.services .title a {*/
/*    color: #111;*/
/*}*/

/*.services .description {*/
/*    font-size: 15px;*/
/*    line-height: 28px;*/
/*    margin-bottom: 0;*/
/*}*/

/*.services .icon-box:hover .title a,*/
/*.services .icon-box:hover .description {*/
/*    color: #fff;*/
/*}*/

/*.services .icon-box:hover .icon {*/
/*    background: #fff;*/
/*}*/

/*.services .icon-box:hover .icon i {*/
/*    color: var(--primary-color);*/
/*}*/

/*--------------------------------------------------------------
# Business owners
--------------------------------------------------------------*/
.business_owners-item {
    margin-bottom: 60px;
}

.business_owners-item .text h1 {
    font-size: 2rem;
    color: var(--title-color);
}

.business_owners-item .text p {
    padding-left: 15px;
    position: relative;
}

.business_owners-item .text p:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 62px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px 0 0 4px;
}

/*--------------------------------------------------------------
# Installers
--------------------------------------------------------------*/

.category-icon-box {
    padding: 50px 20px;
    box-shadow: 0 3px 20px -2px rgba(var(--primary-color-rgb), 0.2);
    transition: all ease-in-out 0.3s;
}

.category-icon-box:hover {
    box-shadow: 0 3px 20px -2px rgba(var(--primary-color-rgb), 0.4);
}

.category-icon-box .icon {
    width: 100px;
}

.category-icon-box h3 {
    font-size: 22px;
    height: 56px;
}

.nav-box {
    position: relative;
    display: block;
    text-align: center;
    transition: all ease-in-out 0.3s;
    box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.nav-box .item-info {
    position: absolute;
    inset: 0;
    padding: 15px;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10;
    transition: all ease-in-out 0.3s;
}

.nav-box .item-info h3 {
    font-size: 28px;
    color: #FFFFFF;
}

.nav-box > .item-img > .item {
    background-size: cover;
    background-position: center center;
}

.article-list {
    padding-top: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.article-list h3 {
    font-size: 16px;
    line-height: 30px;
    min-height: 60px;
}

.article-list .btn-download {
    font-size: 14px;
    color: #FFFFFF;
    background: linear-gradient(var(--btn-linear-gradient));
    transition: 0.3s all;
}


.docs-download .btn-download {
    opacity: 0;
    visibility: hidden;
}

.docs-download:hover .btn-download {
    background: linear-gradient(var(--btn-linear-gradient-hover));
    visibility: visible;
    opacity: 1;
}

.article-list .btns {
    min-width: 80px;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
}

.btn-icon i.bi {
    font-size: 14px;
    color: var(--border-color)
}

.btn-icon i.bi-eye {
    margin-top: 4px;
}

.btn-icon:hover {
    border-color: #FFFFFF;
    background: linear-gradient(var(--btn-linear-gradient));
}

.btn-icon:hover i {
    color: #FFFFFF;
}

.article-list .article-more {
    font-size: 12px;
    color: var(--text-color-secondary);
    margin-top: 5px;
}

/*--------------------------------------------------------------
# Video
--------------------------------------------------------------*/

.video-box h4 {
    font-size: 16px;
    line-height: 30px;
    min-height: 60px;
    margin: 10px 0;
}

.video .video-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(69, 80, 91, 0.8);
    border-radius: var(--border-radius);
}

.video .video-wrap::before {
    content: "";
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.video .video-wrap .video-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.video .video-wrap .video-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 3px solid #d7dce1;
    border-left: 3px solid #d7dce1;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.video .video-wrap .video-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 3px solid #d7dce1;
    border-right: 3px solid #d7dce1;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}


.video .video-wrap .video-links {
    text-align: center;
    z-index: 4;
}

.video .video-wrap .video-links a {
    margin: 0 2px;
    font-size: 60px;
    display: inline-block;
    transition: 0.3s;
    color: var(--focus-color);
}

.video .video-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.video .video-wrap:hover .video-info {
    opacity: 1;
}

.video .video-wrap:hover .video-info::before {
    top: 15px;
    left: 15px;
}

.video .video-wrap:hover .video-info::after {
    bottom: 15px;
    right: 15px;
}


.solution-box h1, .contact-box h3 {
    font-size: 2rem;
    color: var(--title-color)
}

/*--------------------------------------------------------------
# contact
--------------------------------------------------------------*/

.contact-box {
    margin-top: 20px;
}

.contact-box h3 {
    margin-bottom: 30px;
}

.contact-box p {
    display: flex;
    align-items: center;
    font-size: 18px;
}

@media (max-width: 768px) {
    .contact-box p {
        font-size: 14px;
    }
}

.contact-box em {
    font-size: 20px;
    color: #fff;
    float: left;
    width: 44px;
    height: 44px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact-box p:hover em {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}


/*--------------------------------------------------------------
# product gallery
--------------------------------------------------------------*/
.product-gallery {
    position: -webkit-sticky;
    position: sticky;
    top: calc(3.33333vw + 72px);
}

.product-gallery .swiper-thumbs {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.product-gallery .swiper-gallery .swiper-slide {
    background-color: #FFFFFF;
}

.product-gallery .swiper-thumbs .swiper-slide {
    padding: 0px;
    border: 1px var(--border-color) solid;
    background-color: #FFFFFF;
}

.show-big {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 100;
}

.show-big i {
    font-size: 20px;
    color: #000000;
    transition: 0.3s;
}

.show-big:hover i {
    color: var(--focus-color);
}

.product-gallery .swiper-slide-thumb-active {
    border-color: var(--primary-color) !important;
}

/*--------------------------------------------------------------
# product detail
--------------------------------------------------------------*/
.article .article-head h3 {
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px 4px 4px 4px;
    padding-left: 15px;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.article .article-body img {
    max-width: 100%;
    height: auto;
}

@media screen and (min-width: 992px) {
    .article .article-body img {
        max-width: 1000px;
        height: auto;
    }
}

.article-intro .article-title h2 {
    text-transform: none;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.service-item {
    padding: 20px;
    background: #fff;
    height: 100%;
}

.service-item .icon {
    width: 32px;
    height: 32px;
    position: relative;
    margin-bottom: 50px;
    border-radius: 16px;
    display: inline-block;
    overflow: hidden;
}

.service-item.color-p .icon {
    background-color: var(--accent-color);
}

.service-item.color-p h4 {
    color: var(--accent-color);
}

.service-item.color-o .icon {
    background-color: var(--contrast-color);
}

.service-item.color-o h4 {
    color: var(--contrast-color);
}

.service-item .icon i,
.service-item .icon em {
    color: var(--text-color-primary);
    font-size: 40px;
    transition: ease-in-out 0.3s;
    z-index: 2;
    position: relative;
    line-height: 1.8;
}

.service-item .icon:before {
    display: none !important;
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: #f0f1f2;
    border-radius: 50px;
    z-index: 1;
    top: 10px;
    right: -15px;
    transition: 0.3s;
}

.service-item h3 {
    color: var(--text-color-primary);
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    font-size: 22px;
    position: relative;
    display: inline-block;
    border-bottom: 4px solid #ebebed;
    transition: 0.3s;
}

.service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.service-item .readmore {
    margin-top: 15px;
    display: inline-block;
    color: var(--primary-color);
}

/*.service-item:hover .icon:before {*/
/*    background: var(--btn-color);*/
/*}*/

.service-item:hover h3 {
    border-color: var(--primary-color);
}

@media (max-width: 768px) {

    .featured-services .service-item {
        padding: 10px;
    }

    .featured-services .icon-box .icon {
        display: none;
    }

    .featured-services .icon-box .content {
        padding-left: var(--m-lf);
        padding-right: var(--m-lf);
        margin-left: 0;
    }

    .products .product-info h1,
    .solution-box h1, .contact-box h3,
    .business_owners-item .text h1,
    .list-products .product-item .item-info h3 {
        font-size: 22px;
        color: var(--title-color);
    }

    .cta h3 {
        font-size: 22px;
    }

    .nav-box .item-info h3 {
        font-size: 22px;
    }

    .solution-box p.lead, .list-products .product-item .item-info p {
        font-size: 16px;
        font-weight: normal;
    }

    .business_owners-item .text p {
        padding-left: 0;
        font-size: 16px;
        font-weight: normal;


    }

    .business_owners-item .text p:before {
        border: none;
        border-radius: 0;


    }

    .business_owners-item {
        margin-bottom: 1rem;
    }

    .article-title h2 {
        font-size: 22px;
        margin-bottom: 1rem;
    }

    .section-title h2, .section-title__v2 h2,
    .article .article-head h3 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
    }

    .navbar a, .navbar a:focus {
        justify-content: flex-start;
    }


    .category-icon-box h3 {
        font-size: 1rem;
        word-break: break-word;
        height: 40px;
    }

    .btn-links .btn-read-more {
        padding: 8px 15px;
    }

    .btn-links .btn-read-more span {
        font-size: 14px;
        letter-spacing: normal;
        word-break: break-word;
    }

    .btn-links .btn-read-more i {
        font-size: 13px;
    }

    .btn-read-more.small {
        padding: 6px 10px;
    }

    .btn-read-more.small span {
        font-size: 13px !important;
        word-break: break-word;
        letter-spacing: normal;
    }

    .btn-read-more.small i {
        font-size: 12px;
    }

    .article-body img {
        max-width: 100% !important;
        height: auto !important;
    }

    .business_owners-item .text {
        padding: var(--m-lf);
    }

    .about .content {
        padding: var(--m-lf);
    }
}

.partner-item {
    padding: 15px;
}


.feature-box h4.title {
    color: #111;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.feature-box p {
    font-size: 15px;
    margin-bottom: 0;
}


/*图片固定效果代码*/
.sticky-main {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}

.sticky-box {
    width: 100%;
    height: 75vh;
    position: sticky;
    left: 0;
    top: 10vh;
    bottom: 0;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.sticky-box .st-img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.st-content-box {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    width: 100%;
    align-items: center;
    text-align: left;
}


.st-content-box .content {
    width: 100%;
    margin-inline: auto;
    -webkit-box-pack: start;
    justify-content: start;
    -webkit-box-align: start;
    align-items: start;
    margin: 0px;
    min-height: 65vh;
}

.st-content-box .content .text h2 {
    font-size: 2rem;
    color: var(--title-color);
    margin-bottom: 25px;
}

.st-content-box .content .text {
    font-size: 1.25rem;
    font-weight: 300;
}

/*图片固定效果代码结束*/
/*.home-owner {*/
/*    min-height: 100vh;*/
/*}*/


@media screen and (min-width: 768px) {
    .home-owner.gird-col-2 {
        padding: 5.66667vw;
    }
}

.gird-col-2 .gird-img {
    display: flex;
    justify-content: center;
    max-height: calc(100vh - 80px - 20px);
    /*padding-top: 10px;*/
    /*padding-bottom: 10px;*/
    height: 100%;
    align-items: center;
    flex-direction: column;
    position: relative;
    transition: all ease-in-out 0.3s;
}


.gird-col-2 .gird-img .img {
    border-radius: var(--border-radius);
    max-height: 80vh;
    overflow: hidden;
}


@media screen and (max-width: 768px) {
    .gird-col-2 .gird-img .img {
        border-radius: var(--border-radius__mobile);
    }
}

.gird-col-2 .gird-content {
    margin-inline: auto;
    -webkit-box-pack: start;
    justify-content: center;
    -webkit-box-align: start;
    align-items: start;
    margin: 0px;
}

.gird-col-2 .gird-content .text h2 {
    font-size: 32px;
    color: var(--title-color);
    margin-bottom: 25px;
}

.gird-col-2 .gird-content .text {
    font-size: 1.25rem;
    font-weight: 300;
}

@media screen and (max-width: 768px) {
    .gird-col-2 .gird-content .text h2 {
        font-size: 24px;
    }

    .gird-col-2 .gird-content .text {
        font-size: 1rem;
    }
}

.case-item {
    border-radius: var(--border-radius);
    background: #FFFFFF;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all .2s linear;
}

.case-item:hover {
    transform: scale(1.05);
}

.case-item .item {
    border-radius: var(--border-radius);
}

.case-item .item-info {
    padding: 1.5rem;
    padding-top: 0.75rem;
}

.case-item .item-info h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    --chakra-line-clamp: 2;
}

.case-item .item-info .lead {
    color: var(--text-color-secondary);
    font-size: 16px;
    margin-bottom: 0;
}

.column-box_1 {
    position: relative;
    transition: all ease-in-out 0.3s;
}

.column-box_1 .summary {
    position: absolute;
    inset: 0;
    padding: 15px;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10;
    transition: all ease-in-out 0.3s;
}

.column-box_1:hover .summary {
    color: #FFFFFF;
}

.column-box_1 .summary h3 {
    font-size: 28px;
}

.column-box_1 .summary p {
    font-size: 18px;
}

.column-box_1:hover {
    box-shadow: 0 6px 25px 0px rgba(20, 45, 100, 0.2);
}

.column-box_1 img {
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
}

@media screen and (max-width: 768px) {
    .column-box_1 .summary {
        padding: 10px;
    }

    .column-box_1 .summary h3 {
        font-size: 22px;
    }

    .column-box_1 .summary p {
        font-size: 16px;
    }

}

.box-acc {
    position: relative;
    transition: all 0.3s ease-out;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/*.box-acc:hover,*/
/*.box-acc:has(.acc-body.show) {*/
/*    border-radius: var(--border-radius);*/
/*    box-shadow: 0 5px 47px 4px rgba(var(--primary-color-rgb), .1);*/

/*}*/


.box-acc .acc-header {
    padding: 20px 20px 10px 20px;
    position: relative;
    transition: all 0.3s ease-out;
    border-top-right-radius: var(--border-radius);
    border-top-left-radius: var(--border-radius);
}

.box-acc .acc-header h3 {
    font-size: 20px;
    font-weight: 600;
}

.box-acc .acc-header p {
    font-size: 14px;
    padding: 5px 0;
    color: var(--text-color-secondary);
    margin-bottom: 0;

}

.box-acc .acc-header p span b {
    font-weight: 600;
}

.box-acc .acc-header .accordion-icon {
    position: absolute;
    right: 30px;
    top: 18px;
}

.box-acc .acc-header .accordion-icon i {
    font-size: 30px;
    font-weight: 400;
}

.box-acc .acc-body {
    border-bottom-right-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
    padding: 20px 20px 10px 20px;
    transition: all 0.3s ease-out;
}

/*.box-acc:hover .acc-header,*/
/*.box-acc:hover .acc-body,*/
.box-acc:has(.acc-body.show) .acc-header,
.box-acc:has(.acc-body.show) .acc-body {
    background-color: #FFFFFF;
}

.box-acc .acc-body strong, .box-acc .acc-body b {
    font-weight: 600;
}

.box-acc .acc-body .content img {
    max-width: 100% !important;
    height: auto !important;
}

.box-acc .acc-body .content p {
    margin-bottom: 8px;
}

.box-acc .acc-body .content button {
    margin-top: 1.5rem;
}

#acc-wrap [aria-expanded="false"] .accordion-icon i:nth-child(1) {
    display: inline;
}

#acc-wrap [aria-expanded="false"] .accordion-icon i:nth-child(2) {
    display: none;
}

#acc-wrap [aria-expanded="true"] .accordion-icon i:nth-child(1) {
    display: none;
}

#acc-wrap [aria-expanded="true"] .accordion-icon i:nth-child(2) {
    display: inline;
    color: var(--primary-color);
}

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

    .box-acc .acc-header {
        padding: 10px 0 0 0;
        background-color: transparent;
    }

    .box-acc .acc-header h3 {
        font-size: 16px;
    }

    .box-acc .acc-header .accordion-icon {
        right: 0;
        top: 3px;
    }

    .box-acc .acc-body {
        background-color: transparent;
        padding: 20px 0 0 0;
    }

    .box-acc:has(.acc-body.show) .acc-header, .box-acc:has(.acc-body.show) .acc-body {
        background-color: transparent;
    }
}

.wz-form-search {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: var(--border-radius);
    border: .0625rem solid var(--border-color);
    background-color: #FFFFFF;
}

.wz-form-search input {
    border: 0;
    padding: 16px 32px;
}

.form-control:focus {
    outline: none;
    webkit-box-shadow: none;
    box-shadow: none;
}

.wz-form-search button {
    border: none;
    border-color: transparent !important;
}

.wz-form-search button:active {
    border: none;
}

.file-nav ul li {
    display: inline-block;
}

.file-nav ul li a {
    display: inline-block;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    background-color: #FFFFFF;
    transition: 0.3s all;
    font-size: 16px;
    font-weight: bold;
}

.file-nav ul li a:hover,
.file-nav ul li.active a {
    background-image: linear-gradient(var(--linear-gradient));
    color: #FFFFFF;
}

.file-nav ul li:not(:last-child) a {
    margin-right: 8px;
}

@media screen and (max-width: 768px) {
    .file-nav ul li a {
        padding: 5px 10px;
        font-size: 14px;
    }
}

/* 大事记 */
.client-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.03);
}

.history .swiper-box .swiper-history .title {
    font-size: 20px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .history .swiper-box .swiper-history .content {
        text-align: center;
    }
}

.self-svg {
    display: flex;
    align-items: center;
    justify-content: center;
}

.self-svg svg.icon {
    width: 100%;
    height: 100%;
    fill: #FFFFFF;
}

.swiper-btn-box {
    --s: 16px;
    --fill: var(--mcolor);
    --dc: rgba(var(--mcolor-rgb), 0.1);
    --hc: rgba(var(--mcolor-rgb), 0.5);
}

.swiper-btn-box .swiper-btn {
    display: flex;
    position: relative;
}

.swiper-btn-box .swiper-btn .self-svg {
    --size: 100%;
    position: relative;
    border-radius: 5px;
    width: var(--s);
    height: var(--s);
    background-color: transparent;
    transition: background 0.3s;
}

.swiper-btn-box .swiper-btn.prev svg {
    transform: scaleX(-1);
}

.swiper-box .swiper-other {
    padding-top: clamp(0.3rem, 3.645vw, 70px);
}

.swiper-box .swiper-other .swiper-btn {
    flex-shrink: 0;
}

.swiper-box .swiper-other .delay-box {
    width: calc(96.8% - var(--s) * 2);
}

.swiper-box .swiper-other .delay-box .delay-line {
    display: block;
    position: relative;
    background: #dcdcdc;
    height: 2px;
}

.swiper-box .swiper-other .delay-box .delay-line::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--btn-bg);
}

.swiper-box .swiper-other .delay-box.run .delay-line::before {
    animation: swiper-delay-ani var(--anitime) linear;
}

@keyframes cycle-ani {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pointrun1 {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    75% {
        transform: scale(4.5);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.history {
    --anitime: 9.3s;
    position: relative;
    overflow: hidden;
    padding-top: clamp(30px, 3.48vw, 67px);
    padding-bottom: clamp(0.5rem, 6.25vw, 150px);
    background-image: linear-gradient(90deg, var(--primary-color) 0%, #945AD0 50%, var(--primary-color) 100%);
}

.history .big-text {
    color: rgba(244, 244, 244, 0.03);
}

.history .auto-title-block .auto-title-des {
    color: #fff;
}

.history .img-cycle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1399px;
}

.history .img-cycle img {
    display: block;
    animation: cycle-ani var(--anitime) linear infinite;
}

.history .auto-title-block .auto-title-h2 {
    color: #ffffff;
}

.history .swiper-box {
    margin-top: clamp(0.35rem, 14.16vw, 160px);
    color: #ffffff;
}

.history .swiper-box .swiper-history .swiper-slide {
    opacity: 0.5;
}

.history .swiper-box .swiper-history .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.history .swiper-box .swiper-history .year {
    font-size: 48px;
    font-weight: bold;
    line-height: 1em;
    letter-spacing: 1px;
}

.history .swiper-box .swiper-history .title {
    font-size: 24px;
    margin: 1rem 0;
}

.history .swiper-box .swiper-history .content {
    --point: 6px;
    --lh: 1.7em;
    margin-top: 26px;
    font-size: 16px;
}

.history .swiper-box .swiper-history .content p {
    margin-bottom: 0;
    padding-left: 15px;
    position: relative;
}

.history .swiper-box .swiper-history .content p::before {
    content: '';
    position: absolute;
    display: block;
    margin-top: calc((var(--lh) - var(--point)) / 2);
    margin-right: 0.5em;
    border-radius: 50%;
    height: var(--point);
    width: var(--point);
    background: #ffffff;
    left: 0;
}

.history .swiper-box .swiper-history .content p + p {
    margin-top: 0.6em;
}

.history .swiper-box .swiper-other {
    margin-top: clamp(0.3rem, 4.76vw, 80px);
}

.history .swiper-box .swiper-thumb {
    --anstime: 3s;
    --pw: 12px;
    --pad: 45px;
    margin: calc(var(--pad) * -1) 0;
    width: calc(95% - var(--s) * 2);
    padding: var(--pad) 0;
}

.history .swiper-box .swiper-thumb::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    height: 1px;
    width: 100%;
    background: #ffffff;
}

.history .swiper-box .swiper-thumb .swiper-slide {
    position: relative;
    cursor: pointer;
    text-align: center;
}

.history .swiper-box .swiper-thumb .swiper-slide.swiper-slide-thumb-active .point {
    opacity: 0;
}

.history .swiper-box .swiper-thumb .swiper-slide.swiper-slide-thumb-active .logo {
    opacity: 1;
}

.history .swiper-box .swiper-thumb .swiper-slide.swiper-slide-thumb-active .year {
    opacity: 1;
}

.history .swiper-box .swiper-thumb .icon {
    display: block;
    position: relative;
}

.history .swiper-box .swiper-thumb .point {
    display: block;
    margin: 0 auto;
    position: relative;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    width: calc(var(--pw) * 1);
    height: calc(var(--pw) * 1);
    background-color: #e4eff5;
}

.history .swiper-box .swiper-thumb .point::before,
.history .swiper-box .swiper-thumb .point::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(31deg, #582c84 0%, #9f6ddd 65%, #582c84 100%), linear-gradient(#582c84, #9f6ddd);
    background-blend-mode: normal, normal, normal;
    animation: pointrun1 var(--anstime) infinite;
}


.history .swiper-box .swiper-thumb .point::after {
    animation-delay: 0.75s;
}

.history .swiper-box .swiper-thumb .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;

}

.history .swiper-box .swiper-thumb .logo img {
    display: block;
    /*filter: grayscale(100%) brightness(500%);*/
    height: auto;
    width: 48px;
}

.history .swiper-box .swiper-thumb .year {
    position: absolute;
    margin-top: 1em;
    width: 100%;
    font-size: 20px;
    line-height: 1.4em;
    opacity: 0.5;
}

.history .swiper-box .swiper-btn .self-svg {
    --fill: #ffffff;
}

@media (max-width: 1700px) {
    .history .swiper-box {
        margin-top: clamp(0.35rem, 10vw, 272px);
    }

    .history .swiper-box .swiper-history .year {
        font-size: 44px;
    }

    .history .swiper-box .swiper-history .p {
        margin-top: 22px;
    }

    .history .swiper-box .swiper-history .p p + p {
        margin-top: 0.5em;
    }

    .history .swiper-box .swiper-other {
        margin-top: clamp(0.3rem, 4vw, 80px);
    }
}

@media (max-width: 1600px) {
    .swiper-box .swiper-other {
        padding-top: clamp(0.3rem, 2.8vw, 70px);
    }

    .history .swiper-box {
        margin-top: clamp(0.35rem, 7vw, 272px);
    }

    .history .swiper-box .swiper-history .year {
        font-size: 40px;
    }

    .history .swiper-box .swiper-history .p {
        margin-top: 18px;
        font-size: 20px;
    }

    .history .swiper-box .swiper-other {
        margin-top: clamp(0.3rem, 3.6vw, 80px);
    }
}

@media (max-width: 1500px) {
    .history .swiper-box .swiper-history .year {
        font-size: 36px;
    }
}

@media (max-width: 1200px) {
    .swiper-box .swiper-other {
        padding-top: 0.3rem;
    }

    .history {
        padding-top: 47px;
        padding-bottom: 47px;
    }

    .history .swiper-box {
        margin-top: 22px;
        margin-bottom: 32px;
    }

    .history .swiper-box .swiper-history .year {
        text-align: center;
        font-size: 32px;
    }

    .history .swiper-box .swiper-history .p {
        margin-top: 12px;
        font-size: 18px;
    }

    .history .swiper-box .swiper-other {
        margin-top: 6px;
    }

    .history .swiper-box .swiper-thumb {
        --anstime: 3s;
        --pw: 12px;
        --pad: 42px;
    }

    .history .swiper-box .swiper-thumb .logo img {
        width: 22px;
    }

    .history .swiper-box .swiper-thumb .year {
        margin-top: 12px;
        font-size: 18px;
    }
}


.feature .icon-box {
    background-color: #fff;
    padding: 50px 40px;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    transition: all 0.3s ease-out 0s;
}

.feature .icon-box .icon {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 0;
    transition: all 0.4s ease-out 0s;
}

.feature .icon-box h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
}

.feature .icon-box .detail {
    min-height: 52px;
}

.feature .icon-box .detail p {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .feature .icon-box {
        padding: 20px 40px;
    }

    .feature .icon-box .icon {
        width: 64px;
        height: 64px;
    }

    .feature .icon-box .detail {
        min-height: auto;
    }
}

.post-box {
    overflow: hidden;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background: #FFFFFF;
}

.post-box .post-txt {
    padding: 1.5rem;
    padding-top: 1.5rem;
    padding-top: 0.75rem;
}

.post-box .post-txt h3 {
    color: #111;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    min-height: 44px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    --chakra-line-clamp: 2;
}

.post-box .post-txt time {
    font-size: 14px;
    color: var(--text-color-secondary)
}

/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/


.faqlist {
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background: #FFFFFF;
    overflow: hidden;
    padding: 30px;
}


.faqlist .card-title {
    margin-top: 5px;
}

.faq .accordion-item {
    border: 0;
    border-bottom: 1px solid var(--border-color);
}

.faq .accordion-item:last-child {
    margin-bottom: 0;
}

.faq .accordion-collapse {
    border: 0;
}

.faq .accordion-button {
    padding-left: 10px;
    border: 0;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    background: #fff;
    box-shadow: none;
    padding-right: 50px;
}

.faq .accordion-button .num {
    padding-right: 10px;
    font-size: 20px;
    line-height: 0;
    color: var(--accent-color);
}

.faq .accordion-button:not(.collapsed) {
    color: initial;
    border-bottom: 0;
    box-shadow: none;
}

.faq .accordion-button:after {
    position: absolute;
    right: 20px;
    top: 12px;
}

.faq .accordion-body {
    padding: 10px;
    border: 0;
    border-radius: 10px;
    background: #fff;
    box-shadow: none;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.faq .accordion-body .read-more,
.faq .accordion-body .read-more span {
    font-size: 14px;
    color: var(--accent-color);
}

@media screen and (max-width: 768px) {
    .faqlist {
        box-shadow: none;
        padding: 10px 0;
    }

    .faq .accordion-button::after {
        background-size: 1rem;
        right: 10px;
        top: 15px;
    }

    .faq .accordion-button .num {
        font-size: 16px;
    }
}

/*faqs 内容滚动 2025-10-27*/
.scrollable {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.scrollable::-webkit-scrollbar {
    width: 8px;
}

.scrollable::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.scrollable::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.scrollable::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/*--------------------------------------------------------------
# Jobs
--------------------------------------------------------------*/
.box-jobs {
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 20px 30px;
    background-color: #FFFFFF;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease-out;
    overflow: hidden;
}

.box-jobs:hover,
.box-jobs:has(.jobs-body.show) {
    box-shadow: 0 5px 47px 4px rgba(var(--primary-color-rgb), .2);
}

.box-jobs:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    bottom: 0;
    background-image: linear-gradient(var(--linear-gradient));
    width: 0;
    opacity: 0;
    transition: all 0.3s ease-out;
}

.box-jobs:hover:after,
.box-jobs:has(.jobs-body.show):after {
    width: 100%;
    opacity: 0;
}


.box-jobs .jobs-header {
    padding: 10px 0;
    position: relative;
}

.box-jobs .jobs-header h3 {
    font-size: 20px;
    font-weight: 600;
}

.box-jobs .jobs-header p {
    font-size: 14px;
    padding: 5px 0;
    color: var(--text-color-secondary);
    margin-bottom: 0;

}

.box-jobs .jobs-header p span b {
    font-weight: 600;
}

.box-jobs .jobs-header .accordion-icon {
    position: absolute;
    right: 0;
    top: 10px;
}

.box-jobs .jobs-header .accordion-icon i {
    font-size: 30px;
    font-weight: 400;
}

.box-jobs .jobs-body {
    margin: 1.5rem 0;
}

.box-jobs .jobs-body strong, .box-jobs .jobs-body b {
    font-weight: 600;
}

.box-jobs .jobs-body .content p {
    margin-bottom: 8px;
}

.box-jobs .jobs-body .content button {
    margin-top: 1.5rem;
}

#jobs [aria-expanded="false"] .accordion-icon i:nth-child(1) {
    display: inline;
}

#jobs [aria-expanded="false"] .accordion-icon i:nth-child(2) {
    display: none;
}

#jobs [aria-expanded="true"] .accordion-icon i:nth-child(1) {
    display: none;
}

#jobs [aria-expanded="true"] .accordion-icon i:nth-child(2) {
    display: inline;
    color: var(--primary-color);
}

#hr_contact .modal-body p {
    margin-bottom: 5px;
}

#hr_contact .modal-body input, #hr_contact .modal-body input:focus {
    border: none;
    outline: none !important;
}

#hr_contact .btn-clipboard {
    font-size: 12px;
    color: var(--text-color-secondary);
    border: none;
    background-color: transparent;
}

@media screen and (max-width: 768px) {
    .box-jobs {
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        border-bottom: 1px solid var(--border-color);
    }

    .box-jobs:hover, .box-jobs:has(.jobs-body.show) {
        box-shadow: none;
    }

    .box-jobs .jobs-header h3 {
        font-size: 18px;
    }
}

.testimonies-box {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 20px 30px;
    background-color: #FFFFFF;
    margin: 30px 15px;
}

.testimonies-box .tb-hd .name {
    font-size: 20px;
    font-weight: 600;
}

.testimonies-box .tb-hd p {
    color: var(--text-color-secondary);
}

.testimonies-box .tb-bd {
    min-height: 160px;
}

/*.testimonies-wrapper .owl-stage-outer {*/
/*    overflow: unset;*/
/*}*/
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
}

@media (max-width: 750px) {
    .feature > .row > [class*='col-']:last-child,
    .grid-2_x .row > [class*='col-']:last-child,
    .project-cases .row > [class*='col-']:last-child,
    .installers .container > .installers-item:last-child {
        margin-bottom: 0 !important;
    }

}

.services .service-item {
    box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    height: 100%;
    border-radius: var(--border-radius);
}

.services .service-item .icon {
    margin-bottom: 10px;
}

.services .service-item .icon i {
    color: var(--focus-color);
    font-size: 36px;
    transition: 0.3s;
}

.services .service-item h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 22px;
}

.services .service-item h4 a {
    color: var(--primary-color);
    transition: ease-in-out 0.3s;
}

.services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .service-item .cont {
    font-size: 16px;
}

.services .service-item:hover {
    transform: translateY(-10px);
}

.services .service-item:hover h4 a {
    color: var(--primary-color);
}

.appqr img {
    max-width: 128px;
    height: auto;
}

@media (max-width: 768px) {
    .services .service-item {
        padding: 30px;
    }

    .service-item .icon {
        width: 16px;
        height: 16px;
    }
}

/*
 * 2025.10.27 更新兼容微信视频自动播放
 * 视频处理，配合微信视频自动播放 js 使用
 */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 宽高比 */
    background: #000;
}

.video-container .video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-container .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    transition: opacity 0.3s;
}

.video-container .video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-container .play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.video-container .play-btn:hover {
    transform: scale(1.1);
    background: white;
}

.video-container .play-btn::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 15px solid var(--primary-color);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 5px;
}


/*--------------------------------------------------------------
# 2026 new theme
--------------------------------------------------------------*/


.home-about {
    padding: 100px 0;
}

.home-about .title {
    font-size: 40px;
    color: color-mix(in srgb, var(--contrast-color), transparent 0%);
    font-weight: 600;
}

.home-about .summary {
    font-size: 28px;
    color: color-mix(in srgb, var(--contrast-color), transparent 0%);
}


.home-about .content,
.home-about .content p {
    font-size: 24px;
}

.home-features .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, color-mix(in srgb, var(--accent-color), transparent 20%), color-mix(in srgb, var(--accent-color), transparent 20%)), url("../img/fe-bg.jpg") fixed center center;
    background-size: cover;
}

.home-features .value-card {
    background: transparent;
    padding: 32px;
    border-radius: 12px;
    /*border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);*/
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.home-features .value-card:hover {
    transform: translateY(-4px);
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
    /*border-color: color-mix(in srgb, var(--accent-color), transparent 70%);*/
}


.home-features .value-card .icon-box {
    width: 64px;
    height: 64px;
    /*background: var(--contrast-color);*/
    /*border-radius: 50%;*/
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.home-features .value-card .icon-box i {
    font-size: 32px;
    color: var(--surface-color);
}

.home-features .value-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--surface-color);
    display: inline-flex;
    align-items: first baseline;
    gap: 10px;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .home-features .value-card {
        padding: 20px;
    }

    .home-features .value-card h4 {
        font-size: 20px;
    }
}


.tag-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--surface-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.block-section {
    position: relative;
    overflow: hidden;
}

.block-section .block-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.block-section .block-container {
    display: flex;
    justify-content: start;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    z-index: 20;
}

.block-section.text-ltr .block-container {
    bottom: 0;
    top: auto;
}

.block-section .block-container .block-content {
    padding: 54px 40px 40px 40px;
}

.block-section .block-container .block-content .tit {
    font-size: 48px;
    font-weight: 600;
    color: var(--heading-color);

}

.block-content.text-white {
    text-shadow: 0 2px 3px rgba(0, 0, 0, .2);
}

.block-section .block-container .block-content .summary {
    font-size: 22px;
}

.block-section .block-container .block-content.text-white .tit {
    color: var(--surface-color);
}

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

.block-section .block-tabs {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 20px;
    z-index: 20;
}

.block-section .block-tabs .nav-tabs {
    border-width: 2px;
}

.block-section .block-tabs .nav-item .nav-link {
    position: relative;
    font-size: 1.5rem;
    font-weight: 600;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-transform: uppercase;
    border: none !important;
}

.block-section .block-tabs .nav-item .nav-link.active {
    color: var(--default-color);
    background: none;
}

.block-section .block-tabs .nav-item .nav-link.active:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: var(--default-color);
}

.block-section .block-tabs .tab-content {
    font-size: 20px;
}

.block-section .block-tabs.text-white .nav-item .nav-link {
    color: color-mix(in srgb, var(--surface-color), transparent 40%);
}

.block-section .block-tabs.text-white .nav-item .nav-link.active,
.block-section .block-tabs.text-white .tab-content {
    color: var(--surface-color);
}

.block-section .block-tabs.text-white .nav-item .nav-link.active:after {
    background: var(--surface-color);
}

.block-float {
    position: absolute;
    z-index: 20;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.block-float .float-content {
    padding: 50px;
}

.block-float .float-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

.mask-light {
    background: color-mix(in srgb, var(--surface-color), transparent 30%);
}

.mask-dark {
    background: color-mix(in srgb, var(--dark-color), transparent 40%);
}

.block-section_2x {
    position: relative;
    overflow: hidden;
}

.block-section_2x .block-img {
    width: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.block-section_2x .block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-section_2x .block-cont {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    flex-direction: column;
    padding: 50px;
}

.block-section_2x .block-cont h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

.nav-block-content {
    position: relative;
}

.nav-block-content img {
    border-radius: var(--border-radius);
    overflow: hidden;
}


.float-text {
    padding: 40px;
    position: absolute;
    z-index: 10;
}

.float-text.float-top {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
}

.float-text.float-bottom {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
}

.float-text.float-left {
    top: 30%;
    left: 0;
    width: 50%;
    bottom: auto;
}

.float-text.float-right {
    top: 30%;
    right: 0;
    width: 50%;
    bottom: auto;
}

.nav-block-content .float-text h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--surface-color);
}

.text-block {
    background: var(--surface-color);
}

.text-block .text-content h2 {
    color: var(--accent-color);
    font-size: 48px;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .text-block .text-content h2,
    .block-section .block-container .block-content .tit {
        font-size: 30px;
    }

    .block-section .block-container .block-content .summary,
    .block-section .block-container .block-content p {
        font-size: 1rem;
    }

}

.nav-block-more {
    background: var(--dark-color);
}


.rec-block .rec-block-content {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.rec-block .rec-block-content .block-img {
    height: 480px;
}

.rec-block .rec-block-content .block-img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.rec-block .rec-block-content .block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rec-block .rec-block-content .float-text h2 {
    font-size: 28px;
}

.rec-block .rec-block-content .float-text p {
    font-size: 18px;
}

.rec-block .rec-block-content .btn-actions {
    position: absolute;
    width: 100%;
    bottom: 30px;
    left: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whyus-block .block-container {
    bottom: 0;
}

.whyus-block .whyus-more {
    margin-bottom: 100px;
}

.whyus-block .whyus-pebox {
    background: var(--surface-color);
    padding: 80px 70px;
    border-radius: var(--border-radius);
    height: 100%;
}

.whyus-block .whyus-pebox.contrast {
    background: var(--contrast-color);
    color: var(--surface-color);
}

.whyus-block .whyus-pebox h3 {
    font-size: 32px;
}

.whyus-block .whyus-pebox .pecont {
    font-size: 26px;
}

.whyus-block .whyus-pebox .pecont p {
    margin-bottom: 0;
}

@media (max-width: 1199.98px) {
    .whyus-block .whyus-pebox {
        padding: 25px;
    }

    .whyus-block .whyus-pebox h3 {
        font-size: 24px;
    }

    .whyus-block .whyus-pebox .pecont {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .whyus-block .whyus-more {
        margin-bottom: 15px;
    }

    .whyus-block .whyus-pebox {
        margin-bottom: 1rem;
    }

    .whyus-block .whyus-pebox.contrast {
        color: var(--default-color);
        background: var(--surface-color);
    }

    .whyus-block .whyus-pebox {
        padding: 5px 10px;
    }

    .whyus-block .whyus-pebox h3 {
        font-size: 16px;
        margin-bottom: 0;
    }

    .whyus-block .whyus-pebox .pecont {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# solution page
--------------------------------------------------------------*/
.solu-banner h2 {
    margin-top: 200px;
}

.solutions h2.tit {
    margin-bottom: 0;
    font-size: 24px;
}

.solution-box_wrapper {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    cursor: default;
}

.solution-box__index {
    position: relative;
    width: 50%;
    transition: all .5s ease-in-out;
}

@media (min-width: 992px) {
    .solution-box_wrapper:hover .solution-box__index {
        width: 40%;
    }

    .solution-box_wrapper .solution-box__index:hover {
        width: 60%;
    }
}

.solution-box__index {
    height: calc(100vw / 2);
    overflow: hidden;
}

.solution-box__index .box-img img {
    width: 100%;
    height: calc(100vw / 2);
    object-fit: cover;
}

.solution-box__index .box-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.solution-box .title,
.solution-box__index .box-cont .title {
    font-size: 48px;
    font-weight: 600;
}

.solution-box__index .box-cont .summary {
    font-size: 22px;
}

.solution-box .float-text.float-top {
    top: 30%;

}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .solution-box__index,
    .solution-box__index .box-img img {
        height: calc(100vw / 2);
    }

    .solution-box .title, .solution-box__index .box-cont .title {
        font-size: 24px;
    }

    .solution-box__index .box-cont .summary {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .solu-banner h2 {
        margin-top: 35px;
    }

    .solution-box_wrapper {
        flex-direction: column;
    }

    .solution-box__index {
        width: 100%;
        height: 100vw;
    }

    .solution-box__index .box-img img {
        height: 100vw;
    }

    .solution-box .title, .solution-box__index .box-cont .title {
        font-size: 20px;
    }

    .solution-box__index .box-cont .summary {
        font-size: 14px;
        line-height: 1.4;
    }

}

/*--------------------------------------------------------------
# about advantages section
--------------------------------------------------------------*/

.advantages {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;

    min-height: 900px;
}

@media (min-width: 1600px) {
    .advantages {
        padding: 120px 0;
    }

    .advantages .section-title {
        padding-bottom: 150px;
    }

}

.advantages .advantages-content {
    box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
    padding: 50px 40px;
    background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    min-height: 100%;
}

.advantages .advantages-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.advantages .advantages-content p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 18px;
}

.advantages .advantages-content .content > p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# partners page
--------------------------------------------------------------*/

.partners .partner-title h2 {
    font-size: 48px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0;
}

.partners .partner .gird-img .img {
    border-radius: 0;
    min-height: 800px;
}

.partners .partner .gird-img .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partners .partner .gird-content {
    display: flex;
    align-items: center;
    min-height: 100%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.partners .partner .gird-content .text h2,
.partners .partner .gird-content .text p {
    color: var(--surface-color);
}

.partners .partner .gird-content .text h2 {
    font-weight: 600;
}

.benefits .row [class*=" col-"] {
    margin-top: 80px;
}

.benefits .benefits-box {
    padding: 70px 30px 30px 30px;
    border-radius: var(--border-radius);
    background-color: var(--surface-color);
    box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.01), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
    min-height: 100%;
    transition: all ease-in-out 0.4s;
}

.benefits .benefits-box:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.benefits .box-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--surface-color);
    box-shadow: 0 0px 0px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50px;
    top: -30px;
    z-index: 20;
    transition: all ease-in-out 0.4s;
}


.benefits .box-icon img {
    width: 55px;
    height: 55px;
}

.benefits .box-icon i {
    font-size: 2rem;
}

.benefits .benefits-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.benefits .w-btn-default-outline {
    background: transparent;
    border-radius: 50px;
    border-color: #929292;
}

@media (max-width: 767.98px) {
    .partners .partner-title h2 {
        font-size: 24px;
    }

    .partners .partner .gird-img .img {
        min-height: unset;
        min-height: calc(100vw * 90 / 192);
    }

    .partners .partner .gird-content {
        padding: 15px;
        justify-content: start;
    }

    .partners .partner .gird-content .text h2 {
        font-size: 20px;
        margin-bottom: 1rem;
    }

    .partners .partner .gird-content .text p {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .benefits .benefits-box h3 {
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# installers page
--------------------------------------------------------------*/

.installers-intro .installers-container .head .title {
    font-size: 48px;
    font-weight: 600;
    text-transform: uppercase;
}

.installers-intro .installers-container .head .lead {
    color: var(--contrast-color);
    font-size: 32px;
    text-transform: uppercase;
    font-weight: normal;
}

.installers-intro .installers-container .content p {
    font-size: 22px;
}

.installer .gird-img .img {
    border-radius: 0;
    min-height: 800px;
}

.installer .gird-img .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.installer .gird-content {
    display: flex;
    align-items: center;
    min-height: 100%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 25%);
    padding: 100px;
}

.installer .gird-content .text h2 {
    font-size: 48px;
    /*text-transform: uppercase;*/
}

.installer .gird-content .text h2,
.installer .gird-content .text p {
    color: var(--surface-color);
}

.installer .gird-content .text h3 {
    font-size: 32px;
    color: var(--surface-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.installer .gird-content .text ul li p {
    margin-bottom: 0;
}

.installer .gird-content .text ul {
    color: var(--surface-color);
}

@media (max-width: 767.98px) {
    .installer .gird-content {
        padding: 15px;
        justify-content: start;
    }

    .installers-intro .installers-container .head .title {
        font-size: 1.5rem;
    }

    .installers-intro .installers-container .head .lead {
        font-size: 1.2rem;
    }

    .installers-intro .installers-container .content p {
        font-size: 16px;
        text-align: center !important;
    }

    .installer .gird-img .img {
        min-height: unset;
    }

    .installer .gird-content {
        padding: 15px;
    }

    .installer .gird-content .text h3 {
        font-size: 20px;
        margin-bottom: 1rem;
    }

}

/*--------------------------------------------------------------
# products page
--------------------------------------------------------------*/

.prod-home-banner h2 {
    margin-top: 227px;
}

.list-category-nav {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    flex-wrap: wrap;
    border: none;

}

.list-category-nav.nav-tabs {
    margin-bottom: 60px;
}

.list-category-nav a,
.list-category-nav button.nav-link {
    display: inline-flex;
    background-color: color-mix(in srgb, var(--surface-color), transparent 0%);
    color: var(--default-color);
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    line-height: 1;
    border: none;
}

.list-category-nav a:hover,
.list-category-nav a.active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 0%);
    color: var(--surface-color);
}

.list-category-nav .nav-link:hover,
.list-category-nav .nav-link.active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 0%);
    color: var(--surface-color);
}

.grid-1_x .product-item {
    position: relative;
    display: block;
    text-align: center;
    transition: all ease-in-out 0.3s;
    box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 60px;
    background: var(--surface-color);
}

.grid-1_x .grid-item:hover {
    box-shadow: 0 6px 25px 0px rgba(20, 45, 100, 0.2);
}

.grid-1_x .product-item .item-info {
    min-height: 100%;
    padding: 46px;
}

.grid-1_x .product-item .item-info .summary {
    color: var(--accent-color);
}

@media (max-width: 767.98px) {
    .prod-home-banner h2 {
        margin-top: 15px;
    }

    .list-category-nav.nav-tabs {
        margin-bottom: 50px;
    }

    .list-category-nav a, .list-category-nav button.nav-link {
        font-size: 16px;
        padding: 5px 12px;
    }

    .grid-1_x .product-item {
        padding: 0;
    }

    .grid-1_x .product-item .item-info {
        padding: 15px;
    }

    .grid-1_x .product-item .item-info .summary {
        margin-bottom: 50px;
    }

    .grid-1_x .product-item .item-info .summary p {
        margin-bottom: 5px !important;
        font-size: 16px !important;
    }

    .grid-1_x .product-item .item-info .summary p span {
        font-size: 16px !important;
    }

    .list-category-nav {
        justify-content: start;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        /* 隐藏滚动条 */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
        gap: 5px;
    }

    .list-category-nav::-webkit-scrollbar {
        display: none;
    }

    .list-category-nav a {
        white-space: nowrap;
        padding: 8px 16px;
        -webkit-overflow-scrolling: touch;
    }
}

/*--------------------------------------------------------------
# contact page
--------------------------------------------------------------*/

.feedback.no-banner {
    padding-top: 200px;
}

.feedback .card {
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background: #FFFFFF;
    border: none;
    padding: 15px;
}

.feedback .card .card-header {
    padding-top: 20px;
    background: #FFFFFF;
    border: none;
}

@media screen and (max-width: 768px) {
    .feedback .card {
        box-shadow: none;
        padding: 0;
    }

    .feedback .form-control::placeholder {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
#  Data Download page
--------------------------------------------------------------*/

.docs-nav.no-banner,
.docs.no-banner {
    padding-top: 160px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.file-lists li {
    padding: 10px 0;
}

.file-item .tit i {
    color: var(--contrast-color);
}

.file-item .meta .date {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.file-lists {
    margin-bottom: 30px;
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 30px;
    border-radius: var(--border-radius);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/

.widgets-container {
    position: sticky;
    top: 100px;
}

.widget-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 600;
    padding: 0 0 0 10px;
    margin: 0 0 20px 0;
    border-left: 4px solid var(--accent-color);
}

.widget-item {
    margin-bottom: 30px;
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 30px;
    border-radius: var(--border-radius);
}

.widget-item:last-child {
    margin-bottom: 0;
}

.product-categories-widget .category-tree {
    margin-top: 1rem;
}

.product-categories-widget .category-tree .category-item {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 0.75rem 0;
}

.product-categories-widget .category-tree .category-item:last-child {
    border-bottom: none;
}

.product-categories-widget .category-tree .category-item .category-header {
    cursor: pointer;
    transition: all 0.3s;

}

.product-categories-widget .category-tree .category-item .category-header:hover .category-link {
    color: var(--accent-color);
}


.product-categories-widget .category-tree .category-item .category-link {
    color: var(--default-color);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.product-categories-widget .category-tree .category-item.active .category-link,
.product-categories-widget .category-tree .category-item.active i {
    color: var(--accent-color);
}

@media (max-width: 767.98px) {
    .product-categories-widget .category-tree .category-item {
        padding: 0.625rem 0;
    }

    .product-categories-widget .category-tree .category-item .subcategory-list li {
        padding: 0.4rem 0;
    }
}

.parameters {
    background-color: #000000;
}

.parameters .prod-param-box {
    background-color: #171717;
    padding: 30px;
    border-radius: var(--border-radius);
    height: 100%;
    gap: 20px;
    overflow: hidden;
}

.parameters .prod-param-box .icon {
    width: 180px;
    padding: 10px;
}

.parameters .prod-param-box .txt {
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(106.88deg, #ed8d4d 11.92%, var(--accent-color) 89.49%);
    color: transparent;
}

.parameters .prod-param-box .txt p {
    margin-bottom: 0;
}

.parameters .prod-param-box .txt h3 {
    font-size: 3rem;
    font-weight: 600;
}

/*--------------------------------------------------------------
# vh series
--------------------------------------------------------------*/

.vh-series .float-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 完全居中 */
    width: 50%;
    padding: 40px;
    text-align: center;
    z-index: 10;
    box-sizing: border-box;
    color: var(--surface-color);
}

.vh-series .float-text.left-txt {
    left: 25%; /* 左半区的中心点：0% + 50%/2 = 25% */
    transform: translate(-50%, -50%);
}

.vh-series .float-text.right-txt {
    left: 75%; /* 右半区的中心点：50% + 50%/2 = 75% */
    transform: translate(-50%, -50%);
}

.vh-series .float-text h3 {
    font-size: 2.5rem;
}

.vh-series .float-text p {
    font-size: 5rem;
    font-weight: 700;
}

.vh-series .performance {
    background-color: var(--dark-color);
}

.vh-series .performance .p-2500 {
    position: relative;
}


.vh-series .performance .p-2500 h3 {
    font-size: 15rem;
    color: color-mix(in srgb, var(--surface-color), transparent 30%);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.warranty .p-warranty {
    color: #ffffff;
}

.warranty .p-warranty h3 {
    font-size: 5rem;
}

.warranty .p-warranty p {
    font-size: 2.5rem;
}

.warranty .p-more .title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--surface-color);
}


.p-more-box {
    position: relative;
}

.p-more-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to top, color-mix(in srgb, var(--accent-color), transparent 30%), color-mix(in srgb, var(--accent-color), transparent 100%));
    pointer-events: none; /* 让渐变层不干扰文字点击 */
    z-index: 1;
}

.p-more-box .text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #FFFFFF;
    padding: 20px;
    z-index: 33;
}

.p-more-box .text p {
    margin: 0;
    font-size: 1.5rem;
    text-align: center;
}

.vh-series .silent .float-text.right-txt {
    left: 65%;
}

.vh-series .silent p {
    font-size: 1.2rem;
    font-weight: normal;
}

.pro-detail {
    color: var(--surface-color);
}

.pro-detail .pro-detail-tit h3 {
    font-size: 56px;
}

.pro-detail .pro-detail-tit p {
    font-size: 32px;
    font-weight: normal;
}

.vc-series .pro-detail .pro-detail-tit p {
    font-size: 20px;
}

@media (min-width: 1400px) {
    .vc-series .pro-detail .container-fluid {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}

.pro-detail .pro-detail-img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.pro-detail .param-box {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: first baseline;
}

.pro-detail .param-box .icon {
    margin-right: 15px;
}

.pro-detail .param-box h4 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
}

.pro-detail .param-box p {
    font-size: 16px;
}

.pro-detail .param-box .tag-dot {
    background: var(--contrast-color);
}

.pro-detail .btn-actions {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-actions .btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    color: var(--surface-color);
    border: 1px solid var(--surface-color);
    background: transparent;
}

.btn-actions .btn:hover {
    border: 1px solid var(--contrast-color);
    background: var(--contrast-color);
}


/*--------------------------------------------------------------
# vm series
--------------------------------------------------------------*/

.vm-series .parameters, .vm-series .compatible {
    background-color: #010101;
}


.vm-series .compatible .p-more h3 {
    color: var(--surface-color);
    text-align: center;
}

.vm-series .compatible .p-more .p-more-box .box-img {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.vm-series .compatible .p-more .p-more-box::after {
    display: none;
}

.vm-series .compatible .compatible-logo {
    position: relative;
    z-index: 150;
    margin-top: -30px;
}

.vm-series .compatible .compatible-logo .logo {
    position: relative;
    z-index: 160;
    margin-top: -10px;
}

.vm-series .grid-connection .phone {
    position: absolute;
    right: 12.5%;
    top: 21.5%;
    width: 250px;
}


.vm-series .grid-connection.vm-p1 .phone {
    position: absolute;
    left: 180px;
    top: 15%;
    width: 200px;
}

.vm-p2 .prod-param-box .icon, .vm-p4 .prod-param-box .icon, .vm-p1 .prod-param-box .icon {
    max-width: 80px;
}

.prod-param-box.mh-245 {
    min-height: 245px;
}

.prod-param-box .img_h120 img {
    max-height: 120px;
}

.prod-param-box .img_h150 img {
    max-height: 150px;
}

.prod-param-box .row-2 .txt2 p {
    color: var(--surface-color);
    margin-bottom: 0;
    font-size: 1.2rem;
}

.prod-param-box .f15 {
    font-size: 1.5rem !important;
}

.prod-param-box .f22 {
    font-size: 2.2rem !important;
}

.prod-param-box .f32 {
    font-size: 32px !important;
}

.prod-param-box .fb30 {
    font-size: 3rem;
    font-weight: 600;
}

.prod-param-box .bg {
    position: absolute;
    left: 0;
    bottom: -30px;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: bottom center !important;
    background-repeat: no-repeat !important;
}

.pro-detail .vm-p2 .btn-actions {
    margin-left: 50px;
}

.pro-detail .vm-p4 .btn-actions {
    margin-left: 150px;
}

.pro-detail .vm-p1 .btn-actions {
    margin-left: 220px;
}

.pro-detail .vs-p1 .btn-actions {
    margin-left: -180px;
}

/*--------------------------------------------------------------
# vc series
--------------------------------------------------------------*/

.pro-detail-img.evchanger img {
    max-width: 240px;
}

/*--------------------------------------------------------------
# vfsk
--------------------------------------------------------------*/

.vfsk-banner .banner-content {
    margin-top: -200px;
}


/*--------------------------------------------------------------
# gateway
--------------------------------------------------------------*/

.block-float .float-content .more-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.block-float .float-content .more-meta .item {
    flex: 0 0 calc(50% - 10px);
}

.block-float .float-content .more-meta .item p {
    margin-bottom: 0;
}

.block-float .float-content .more-meta .item h3 {
    font-size: 1.8rem;
}

.block-float .float-content .s1g-signal .g {
    color: var(--logo-color-green);
}

.block-float .float-content .s1g-signal .o {
    color: var(--contrast-color);
}

.block-float .float-content .s1g-signal h3, .block-float .float-content .s1g-signal p {
    margin-bottom: 0;
}

.block-float .float-content .float-img img {
    max-width: 380px;
}

/*--------------------------------------------------------------
# vip
--------------------------------------------------------------*/
.vip-banner .banner-content,
.vipp-banner .banner-content {
    margin-top: -250px;
}

.pro-vip .text2 h2 {
    font-size: 3.2rem;
}

.pro-vip .s20 {
    font-size: 16rem;
    font-weight: 700;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(162deg, #ffffff 14.56%, #ffdd7f 55.33%, #3d2a26 85.3%);
    color: transparent;
}

.pro-vip .block-img-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
}


.vip-app .block-content {
    padding: 140px 0 0 0;
}

.vip-app .tit-sub {
    font-size: 32px;
}

.vip-app .block-content .text2 {
    padding-top: 100px;
}

.vip-app .block-content {
    margin-top: 140px;
}

.pro-vipp .imgs-group {
    margin-top: 140px;
}

.pro-vipp .imgs-group .txt {
    color: var(--surface-color);
    font-size: 1.5rem;
}

@media (max-width: 1399.98px) {
    .pro-vip .block-img-2 {
        max-width: 600px;
    }

}

@media (max-width: 1199.98px) {
    .pro-vip .block-img-2 {
        max-width: 400px;
    }

    .pro-vipp .imgs-group {
        margin-top: 100px;
    }

    .pro-vipp .imgs-group .txt {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .pro-vipp .imgs-group {
        margin-top: 0;
    }

    .pro-vip .block-img-2 {
        max-width: 250px;
    }
}


/*--------------------------------------------------------------
# Accessories
--------------------------------------------------------------*/
.acc-banner .banner-content {
    margin-top: -240px;
}

.prod-feature .icon {
    margin-top: 3px;
}

.prod-feature .tag-dot {
    background: var(--contrast-color);
}

.prod-feature .tag-dot.color-primary {
    background: var(--accent-color);
}

.prod-feature .param-box h4 {
    font-size: 28px;
}

.prod-feature .param-box p {
    font-size: 20px;
}

.acc-lists {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../img/products/accessories/acc-lists-bg.jpg');
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: unset;


}

.acc-lists .acc-lists-block {
    padding-bottom: 60px;
}

.acc-lists .acc-lists-block h2 {
    color: var(--surface-color);
    font-size: 48px;
    margin-bottom: 30px;
}

.acc-lists .acc-lists-block .acc-box {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
}

.acc-lists .acc-lists-block .acc-box h3 {
    font-size: 28px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
    padding: 10px 0
}

.acc-lists .acc-lists-block .acc-box .cont ul {
    padding-top: 15px;
    margin-left: -15px;
}

.acc-lists .acc-lists-block .acc-box .cont p {
    margin-bottom: 0;
    font-size: 18px;
}

.all-prod-block {
    position: relative;
}

/*.all-prod-block .block-img {*/
/*    max-height: calc(9 / 16 * 100vw);*/
/*}*/

.all-prod-block .btn-prod-tag {
    display: inline-flex;
    align-items: center;
    background: var(--accent-color);
    border-radius: 50px;
    padding: 5px 15px;
    position: absolute;
    z-index: 3;
    color: var(--surface-color);
    font-size: 20px;
    line-height: 1;
    transition: all 0.3s ease;
}

.all-prod-block .btn-prod-tag:hover {
    transform: translateY(-1px);
    background: color-mix(in srgb, var(--accent-color), transparent 10%);
}

.btn-prod-tag.tag-vm-p1 {
    left: 50%;
    top: 40%;
}

.btn-prod-tag.tag-vm-p2 {
    left: 62%;
    top: 55%;
}

.btn-prod-tag.tag-vm-p4 {
    left: 38%;
    top: 43%;
}

.btn-prod-tag.tag-vh2500 {
    left: 41%;
    top: 70%;
}

.btn-prod-tag.tag-va2500 {
    left: 38%;
    top: 83%;
}

.btn-prod-tag.tag-vip {
    left: 50%;
    top: 84%;
}

.btn-prod-tag.tag-vdg {
    left: 80%;
    top: 68%;
}

.btn-prod-tag.tag-vfsk {
    left: 21%;
    top: 65%;
}

.btn-prod-tag.tag-ev-charger {
    left: 65%;
    top: 69%;
}

@media (max-width: 1599.98px) {
    .vip-banner .banner-content,
    .vipp-banner .banner-content {
        margin-top: 0;
    }
}

@media (max-width: 1399.98px) {
    .vfsk-banner .banner-content {
        margin-top: 0;
    }

    .w-btn-sm-more {
        font-size: 1rem;
    }

    .grid-2_x .grid-item .item-info {
        padding: 15px 15px 20px 15px;
    }

    .product-item .item-info h3 {
        font-size: 30px;
    }
}

@media (max-width: 1199.98px) {
    .vm-p2 .prod-param-box .icon, .vm-p4 .prod-param-box .icon, .vm-p1 .prod-param-box .icon {
        max-width: 50px;
        min-width: 50px;
    }

    .parameters .prod-param-box .txt h3 {
        font-size: 24px;
    }

    .prod-param-box .f32 {
        font-size: 24px !important;
    }

    .prod-param-box .fb30 {
        font-size: 32px !important;
    }

    .prod-param-box .f15 {
        font-size: 1rem !important;
    }

    .prod-param-box .row-2 .txt2 p {
        font-size: 1rem;
    }

    .warranty .p-warranty h3 {
        font-size: 3rem;
    }

    .warranty .p-more .title {
        font-size: 30px;
    }

    .block-float.gw-s1g .float-content {
        padding: 25px;
        text-align: center;
    }

    .block-float.gw-s1g .float-content h2 {
        font-size: 30px;
    }

    .block-float.gw-s1g .float-content .float-img img {
        max-width: 280px;
    }

    .block-float.gw-s1g .float-content .more-meta .item h3,
    .block-float.gw-s1g .float-content .s1g-signal-item h3 {
        font-size: 22px;
    }

    .vip-banner .banner-content {
        margin-top: 0;
    }

    .block-section_2x .block-cont {
        padding: 25px;
    }

    .block-section_2x .block-cont h2 {
        font-size: 30px;
    }

    .block-section_2x .block-r-imgs img {
        max-width: 200px;
    }

    .pro-vip .text2 h2 {
        font-size: 28px;
    }

    .pro-vip .s20 {
        font-size: 7rem;
    }

    .vip-app .block-content {
        margin-top: 0;
    }

    .block-section.vip-app .block-container .block-content {
        padding: 25px 0;
    }

    .vip-app .block-content .text2 h3,
    .vip-app .tit-sub {
        font-size: 20px;
    }

    .vip-app .block-content .text2 {
        padding-top: 20px;
    }

    .vip-app .block-content .qr img {
        max-height: 100px;
    }

    .prod-feature .param-box h4 {
        font-size: 24px;
    }

    .prod-feature .param-box p {
        font-size: 1rem;
    }

    .acc-banner .banner-content {
        margin-top: 0;
    }

    .acc-lists .acc-lists-block h2 {
        font-size: 30px;
    }

    .acc-lists .acc-lists-block .acc-box h3 {
        font-size: 24px;
    }

    .acc-lists .acc-lists-block .acc-box .cont p {
        font-size: 1rem;
    }

    .file-lists li:not(:last-child) {
        border-bottom: 1px dashed var(--border-color);
    }

    .file-item {
        align-items: flex-start;
        justify-content: start;
        flex-direction: column;
    }

    .prod-home-banner h2 {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .solu-banner h2 {
        margin-top: 80px;
    }

    .pro-detail .vm-p4 .btn-actions,
    .pro-detail .vm-p1 .btn-actions, .pro-detail .vs-p1 .btn-actions {
        margin-left: 0;
    }

    .prod-summary .prod-summary-title h2 {
        font-size: 30px;
    }

    .prod-summary .prod-summary-title p {
        font-size: 24px;
    }

    .prod-summary .prod-summary-cont, .prod-summary .prod-summary-cont p {
        font-size: 18px;
    }

    .about-detail .article-content p {
        font-size: 18px;
    }

    .about-detail .article-content p:last-child {
        margin-bottom: 0;
    }

    .about-more .post-container {
        padding: 80px 0
    }

    .about-more .post-container h2 {
        font-size: 30px;
    }

    .about-more .post-container .article-content p {
        font-size: 18px;
    }

    .about-more .post-container .article-content p:last-child,
    .about-detail .article-content p:last-child {
        margin-bottom: 0;
    }

}

@media (max-width: 991.98px) {
    .w-btn-more {
        font-size: 1rem;
    }

    .home-about .title {
        font-size: 30px;
    }

    .home-about .summary {
        font-size: 20px;
    }

    .home-about .content, .home-about .content p {
        font-size: 18px;
    }

    .grid-1_x .product-item {
        padding: 20px;
    }

    .grid-1_x .product-item .item-info {
        padding: 15px;
    }

    .grid-1_x .product-item .item-info .summary {
        margin-bottom: 30px;
    }

    .grid-1_x .product-item .item-info .summary p {
        margin-bottom: 5px !important;
        font-size: 16px !important;
    }

    .grid-1_x .product-item .item-info .summary p span {
        font-size: 16px !important;
    }

    .block-section .block-container .block-content {
        padding: 30px;
    }

    .installer .gird-img .img,
    .partners .partner .gird-img .img {
        min-height: calc(100vw * 90 / 192);
    }

    .partners .partner-title h2 {
        font-size: 30px;
    }

    .installer .gird-content .text h3,
    .partners .partner .gird-content .text h2 {
        font-size: 24px;
    }

    .gird-col-2 .gird-content .text p {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .benefits .benefits-box h3 {
        font-size: 20px;
    }

    .installer .gird-content {
        padding: 1.5rem;
    }

    .installers-intro .installers-container .head .title {
        font-size: 30px;
    }

    .installers-intro .installers-container .head .lead {
        font-size: 20px;
    }

    .installers-intro .installers-container .content p {
        font-size: 18px;
    }

    .vh-series .float-text h3 {
        font-size: 30px;
    }

    .prod-param-box .f22 {
        font-size: 1.6rem !important;
    }

    .vm-series .grid-connection.vm-p1 .phone {
        left: 10%;
        top: 25%;
        width: 120px;
    }

    .pro-detail .pro-detail-tit h3 {
        font-size: 38px;
    }

    .pro-detail .pro-detail-tit p {
        font-size: 24px;
    }

    .block-section .block-tabs .nav-item .nav-link {
        font-size: 18px;
    }

    .block-section .block-tabs .tab-content {
        font-size: 14px;
    }

    .rec-block .rec-block-content .float-text h2,
    .advantages .advantages-content h2, .services .service-item h4 {
        font-size: 20px;
    }

    .rec-block .rec-block-content .float-text p,
    .advantages .advantages-content p {
        font-size: 1rem;
    }

    .rec-block .rec-block-content .block-img {
        height: 320px;
    }
}

@media (max-width: 767.98px) {
    .w-btn-more {
        letter-spacing: 0;
        padding: 6px 12px;
        font-size: 14px;
        line-height: 1;
        box-shadow: 0 3px 5px color-mix(in srgb, var(--accent-color), transparent 60%);
    }

    .position-md-absolute {
        position: absolute !important;
    }

    .content-space-md-1 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }


    .banner-inner {
        height: calc(100vw * 90 / 192);
        margin-top: 50px;
    }

    .banner-inner-wrapper {
        position: relative;
        height: calc(100vw * 90 / 192);
        z-index: 10;
    }

    /*.banner-inner-wrapper .banner-content {*/
    /*    margin-top: 50px;*/
    /*}*/
    .about-banner .banner-inner-wrapper h2,
    .banner-inner-wrapper h2 {
        font-size: 30px;
        margin-bottom: 0.5rem;
    }

    .about-banner .banner-inner-wrapper p,
    .banner-inner-wrapper p,
    .banner-inner-wrapper .fe-list {
        font-size: 16px;
    }

    .home-about {
        padding: 50px 0;
    }

    .home-about .title {
        font-size: 1.5rem;
    }

    .home-about .summary,
    .home-about .content,
    .home-about .content p {
        font-size: 1rem;
    }

    .home-features .value-card {
        padding: 15px;
    }

    .home-features .value-card .icon-box {
        width: 32px;
        height: 32px;
        margin-bottom: 1rem;
    }

    .home-features .value-card h4 {
        font-size: 1rem;
    }

    .block-section .block-container {
        position: relative;
    }

    .block-section .block-container .block-content {
        padding: 20px 0;
    }

    .block-section .block-container .block-content .tit {
        font-size: 20px;
        color: var(--default-color) !important;
        text-shadow: none;
    }

    .block-section .block-container .block-content .summary,
    .block-section .block-container .block-content p {
        font-size: 14px;
        line-height: 1.4;
        color: var(--default-color) !important;
        text-shadow: none;
    }


    .block-float .float-content {
        padding: 30px;
    }

    .block-float .float-content h2 {
        font-size: 20px;
    }

    .block-float .float-content .more-meta {
        gap: 10px;
    }

    .block-float .float-content .more-meta .item h3 {
        font-size: 1.2rem;
    }

    .block-float .float-content .more-meta .item p {
        font-size: 14px;
    }

    .nav-block-content .float-text {
        padding: 15px;
    }

    .nav-block-content .float-text h2 {
        font-size: 20px;
    }

    .text-block .text-content h2 {
        font-size: 24px;
    }

    .vh-series .performance .p-2500 {
        padding: 15px 15px 30px 15px;
    }

    .warranty .p-more .title,
    .warranty .p-warranty h3 {
        font-size: 48px;
        margin-top: 1rem;
    }

    .warranty .p-warranty p {
        font-size: 24px;
    }

    .performance .p-more .title {
        font-size: 20px;
    }

    .vh-series .float-text h3 {
        font-size: 1.5rem;
    }

    .vh-series .silent .float-text.right-txt {
        width: 100%;
        left: 50%;
    }

    .vh-series .silent p {
        font-size: 1rem;
    }

    .vh-series .performance .p-2500 h3 {
        font-size: 6rem;
    }

    .p-more-box .text p {
        font-size: 1rem;
    }

    .performance .pro-img img,
    .pro-detail .pro-detail-img img {
        max-width: 260px;
    }

    .pro-detail .pro-detail-tit h3 {
        font-size: 30px;
    }

    .pro-detail .pro-detail-tit p {
        font-size: 18px !important;
    }

    .pro-detail .param-box h4 {
        font-size: 20px;
    }

    .vm-series .compatible .compatible-logo {
        margin-top: 30px;
    }

    .compatible-logo .pw,
    .compatible-logo .logo {
        text-align: center;
    }

    .compatible-logo .pw img {
        max-width: 85%;
    }


    .compatible-logo .logo img {
        max-width: 260px;
    }

    .vm-series .grid-connection .phone {
        top: 20%;
        right: 10%;
        bottom: 20px;
        width: auto;
    }

    .vm-series .grid-connection .phone img {
        max-width: 60px;
    }

    .vm-series .grid-connection.vm-p1 .phone {
        left: 10%;
        top: 20%;
        bottom: 20px;
        width: auto;
    }

    .pro-detail .vm-p2 .btn-actions {
        margin-left: 10px;
    }


    .imgs-group .img {
        padding: 60px;
    }

    .pro-vipp .img {
        padding: 0;
    }

    .pro-detail-vc .pro-detail-img img {
        max-width: 160px;
    }

    .block-float.gw-s1g .float-content {
        padding: 15px;
    }

    .block-float.gw-s1g .float-content h2 {
        font-size: 20px;
    }

    .block-float.gw-s1g .float-content p {
        font-size: 14px;
        line-height: 1.2;
    }

    .block-float.gw-s1g .float-content .float-img {
        position: absolute;
        bottom: 10px;
        right: 10px;
        z-index: -1;
    }

    .block-float.gw-s1g .float-content .float-img img {
        max-width: 160px;
    }

    .block-float.gw-s1g .float-content .more-meta .item h3,
    .block-float.gw-s1g .float-content .s1g-signal-item h3 {
        font-size: 18px;
    }

    .scs .col-right {
        margin-top: -100%;
    }

    .scs .col-right .section-dark {
        background-color: color-mix(in srgb, var(--dark-bg-color), transparent 30%);
    }

    .scs .col-right .summary {
        margin-bottom: 0;
    }

    .ai-po .block-container {
        position: static;
    }

    .ai-po .text2 {
        position: absolute;
        top: 15px;
        width: 100%;
        left: 0;
        right: 0;
        margin: 0 auto !important;
    }

    .ai-po .s20 {
        position: absolute;
        width: 100%;
        left: 0;
        right: 0;
        margin: 0 auto !important;
        top: 30%;
        font-size: 5rem
    }

    .vip-app .block-container {
        margin-top: 0;
    }

    .vip-app .block-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .vip-app .block-content .text2 {
        padding-top: 0;
    }

    .block-section_2x .block-r-imgs img {
        max-width: 260px;
    }

    .block-section.vip-app .block-container .block-content .tit,
    .block-section.vip-app .block-container .block-content .summary,
    .block-section.vip-app .block-container .block-content p,
    .block-section.pro-vipp .block-container .block-content .tit,
    .block-section.pro-vipp .block-container .block-content .summary {
        color: var(--surface-color) !important;
    }

    .prod-feature .param-box h4 {
        font-size: 20px;
    }

    .prod-feature .param-box p {
        font-size: 16px;
    }

    .acc-lists .acc-lists-block h2 {
        font-size: 24px;
    }

    .acc-lists .acc-lists-block .acc-box h3 {
        font-size: 20px;
    }

    .docs-nav.no-banner, .docs.no-banner {
        padding-top: 100px;
    }

    .block-section .block-tabs {
        position: relative;
    }

    .block-section .block-tabs .nav-item .nav-link {
        font-size: 14px;
        color: var(--default-color) !important;
        padding: 5px 10px;
        text-transform: unset;
    }

    .block-section .block-tabs .tab-content {
        font-size: 14px;
        color: var(--default-color) !important;
    }

    .block-section .block-tabs.text-white .nav-item .nav-link.active::after {
        background: var(--dark-color);
    }


}
