.hero-section {
    position: relative;
}

.hero-section .swiper-slide .pic img {
    display: block;
    width: 100%;
    min-height: 480px;
    object-fit: cover;
}

.hero-section .swiper-slide {
    position: relative;
}

.hero-section .swiper-slide .slideBox {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.hero-section .swiper-slide .slideBox h1 {
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.57;
}

.hero-section .swiper-slide .slideBox h2 {
    font-family: Montserrat-SemiBold;
    color: #FFFFFF;
    line-height: 1.293;
}

.hero-section .swiper-slide .slideBox .msg {
    padding-left: 1em;
    margin-top: 20px;
}

.hero-section .swiper-slide .slideBox .msg li {
    font-family: MontserratLight;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 36px;
    list-style: disc;
}

.hero-section .swiper-slide .slideBox li::marker {
    color: #fff;
    font-size: 16px;
}

.hero-section .swiper-slide .slideBox-buttons {
    margin-top: 40px;
}

.slideBox-buttons {
    display: flex;
    gap: 18px;
}

.cta-section .slideBox-buttons .btn,
.hero-section .slideBox-buttons .btn {
    border-color: #fff;
    background-color: transparent;
}

.cta-section .slideBox-buttons .btn:hover,
.hero-section .slideBox-buttons .btn:hover {
    background-color: #DF0515;
    border-color: #DF0515;
}

.hero-section .hero-section-pagination {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 60px;
    display: flex;
    justify-content: flex-end;
    z-index: 3;
    gap: 12px;
}

.hero-section .hero-section-pagination-item {
    opacity: .25;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.hero-section .hero-section-pagination-item.active {
    opacity: 1;
}

.hero-section .hero-section-pagination-item .number {
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 1;
}

.hero-section .hero-section-pagination-item .line {
    position: relative;
    width: 42px;
    height: 3px;
    background: #FFFFFF;
    margin-top: 13px;
    transition: all 0.3s ease-in-out;
}

.hero-section .hero-section-pagination-item .line::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: rgba(223, 5, 21, 1);
}

.hero-section .hero-section-pagination-item.active .line::before {
    width: 100%;
    transition: all .6s;
}

.hero-section .hero-section-pagination-item.active .line {
    width: 88px;
}

/* What can we do section */
.what-we-do-section {
    padding: 120px 0;
    background: url(../images/what-we-do-section-bg.jpg);
    background-size: cover;
}

.what-we-do-content {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: url(../images/index-1.jpg);
    background-size: cover;
    margin-top: 51px;
}

.what-we-do-overlay {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.what-we-do-section .service-column {
    color: #fff;
    padding: 65px 80px;
    border-radius: 24px 0 0 24px;
    transition: all 0.3s ease-in-out;
    min-height: 628px;
}

.what-we-do-section .service-column:hover {
    background-color: rgba(0, 0, 0, .4);
}

.what-we-do-section .service-column.right {
    border-radius: 0 24px 24px 0;
}

.what-we-do-section .ripple-icon {
    position: relative;
    margin-top: 54px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.what-we-do-section .ripple-icon span {
    width: 17px;
    height: 17px;
    background: #EDEEF1;
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

.what-we-do-section .service-column:hover .ripple-icon span {
    background-color: rgba(223, 5, 21, 1);
}

.what-we-do-section .ripple-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: ripple 2s infinite;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.what-we-do-section .service-column:hover .ripple-icon::after,
.what-we-do-section .service-column:hover .ripple-icon::before {
    border-color: rgba(223, 5, 21, .5);
}

.what-we-do-section .ripple-icon::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    left: calc(20% - 1px);
    top: calc(20% - 1px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: ripple 2s infinite;
    z-index: 1;
    box-sizing: border-box;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.what-we-do-section .service-column h3 {
    font-size: 28px;
    font-family: Montserrat-SemiBold;
    line-height: 1.37;
    color: #fff;
}

.what-we-do-section .service-column .list {
    margin-top: 19px;
}

.what-we-do-section .service-column .item {
    font-size: 14px;
    line-height: 34px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    font-family: MontserratLight;
    gap: 5px;
    transition: all 0.3s ease-in-out;

}

.what-we-do-section .service-column .item:hover {
    color: rgba(223, 5, 21, 1);
}

.what-we-do-section .service-column .item .iconfont {
    font-weight: bold;
}

.featured-products {
    padding: 120px 0;
}

.featured-products .fp-swiper-container {
    position: relative;
    width: 1736px;
    padding: 0 68px;
    margin: 45px auto 0;
    max-width: 94%;
}

.featured-products .swiper-slide {
    width: 23.62%;
    padding: 39px 37px;
    background: #F7F9FA;
    border-radius: 24px;
    height: auto;
}

.featured-products .swiper-slide:not(:last-child) {
    margin-right: 1.83%;
}

.featured-products .swiper-slide .picCover {
    padding-top: 69.73%;
}

.featured-products .swiper-slide .picCover img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.featured-products .swiper-slide .fp-title {
    margin-top: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* flex-wrap: wrap; */
    font-weight: 400;
    font-size: 20px;
    color: #222222;
    line-height: 32px;
    gap: 5px;
    transition: all 0.3s ease-in-out;
}

.featured-products .swiper-slide:hover .fp-title {
    color: rgba(223, 5, 21, 1);
}

.featured-products .swiper-slide .fp-title .iconfont {
    color: rgba(223, 5, 21, 1);
    font-weight: bold;
}

.featured-products .swiper-slide .fp-desc {
    font-weight: 400;
    font-size: 16px;
    color: #555555;
    line-height: 22px;
    opacity: 0.75;
    margin-top: 6px;
    font-family: MontserratLight;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-products .fp-swiper-container .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #DF0515;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .6s;
    cursor: pointer;
}

.featured-products .fp-swiper-container .btn.swiper-button-disabled {
    display: none;
}

.featured-products .fp-swiper-container .btn-prev {
    left: 0;
}

.featured-products .fp-swiper-container .btn-next {
    right: 0;
}

.featured-products .fp-swiper-container .btn:hover {
    background: #000;
}

.featured-products .slideBox-buttons {
    margin-top: 49px;
    justify-content: center;
}

/* .solutions .slideBox-buttons .btn,
.featured-products .slideBox-buttons .btn{
    background: #DF0515;
    border-color: #DF0515;
    color: #fff;
}
.solutions .slideBox-buttons .btn:hover,
.featured-products .slideBox-buttons .btn:hover{
    background: #000;
    border-color: #000;
} */
.solutions .solutions-content {
    position: relative;
    margin-top: 53px;
}

.solutions .solutions-content .sol-swiper .swiper-slide {
    background-size: cover;
    height: 840px;
    padding-top: 11.87vw;
}

.solutions .solutions-content .sol-swiper .sol-title {
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.23;
}

.solutions .solutions-content .sol-swiper .sol-desc {
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 26px;
    margin-top: 1.5em;
}

.solutions .solutions-content .sol-swiper .sol-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 30px;
    font-family: MontserratLight;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 30px;
    margin-top: 1.5em;
}

.solutions .solutions-content .sol-swiper .sol-list li {
    list-style: disc;
    margin-left: 1.3em;
}

.solutions .solutions-content .sol-swiper .sol-list li::marker {
    color: #fff;
    font-size: 20px;
}

.solutions .solutions-content .sol-swiper .slideBox-buttons {
    margin-top: 39px;
}

.solutions .sol-nav-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 3;
}

.solutions .sol-nav-wrapper .sol-nav-list {
    margin-top: 15px;
}

.solutions .sol-nav-wrapper .swiper-slide {
    position: relative;
    width: 14.43%;
    border-top: 3px solid rgba(255, 255, 255, 1);
    padding: 29px 0 54px;
    opacity: .3;
    transition: all .3s;
    cursor: pointer;
}

.solutions .sol-nav-wrapper .swiper-slide::before {
    position: absolute;
    left: 0;
    top: -3px;
    content: "";
    width: 0;
    height: 3px;
    background: rgba(223, 5, 21, 1);
    transition: all .6s;
}

.solutions .sol-nav-wrapper .swiper-slide:hover,
.solutions .sol-nav-wrapper .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
}

.solutions .sol-nav-wrapper .swiper-slide:hover::before,
.solutions .sol-nav-wrapper .swiper-slide.swiper-slide-thumb-active::before {
    width: 100%;
}

.solutions .sol-nav-wrapper .swiper-slide:not(:last-child) {
    margin-right: 2.68%;
}

.solutions .sol-nav-wrapper .swiper-slide .icon {
    height: 30px;
}

.solutions .sol-nav-wrapper .swiper-slide .icon img {
    max-height: 100%;
    display: block;
}

.solutions .sol-nav-wrapper .swiper-slide .text {
    display: block;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 26px;
    margin-top: 16px;
}

.solutions .sol-nav-wrapper .sol-pagination {
    text-align: right;
    font-weight: 600;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 1.5;
}

.about-section {
    padding: 140px 0 111px;
    background: url(../images/index-13.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom;
}

.about-section .about-desc {
    font-family: MontserratLight;
    font-weight: 400;
    font-size: 16px;
    color: #555555;
    line-height: 26px;
    margin-top: 20px;
    text-align: center;
}

.about-section .stats-grid {
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    margin-top: 40px;
}

.about-section .stats-grid h3 {
    font-weight: bold;
    color: #E40011;
    line-height: 1;
}

.about-section .stats-grid h3 .counter+span {
    vertical-align: top;
    padding-left: 4px;
}

.about-section .stats-grid .stat-text {
    font-family: MontserratLight;
    font-weight: 400;
    font-size: 16px;
    color: #555555;
    line-height: 24px;
    margin-top: 10px;
}

.updates-section .slideBox-buttons,
.about-section .slideBox-buttons {
    margin-top: 44px;
    justify-content: center;
}

.about-section .guowei-mask {
    margin-top: 61px;
}

.about-section .guowei-mask img {
    display: block;
    width: 100%;
}

.choosing-section {
    padding: 120px 0;
}

.choosing-section .choose-wrap {
    position: relative;
    margin-top: 55px;
    display: flex;
    justify-content: space-between;
}

.choosing-section .choose-wrap .choose-left {
    width: 47.75%;
}

.choosing-section .choose-wrap .choose-left img {
    display: block;
    max-width: 100%;
}

.choosing-section .choose-wrap .choose-right {
    position: relative;
    right: 0;
    top: 0;
    /* height: 100%; */
    width: 46.31%;

}

.choosing-section .choose-wrap .choose-right .choose-list {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 6.66vw 0;
}

.choosing-section .choose-wrap .choose-right .choose-list::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.choosing-section .choose-wrap .choose-right::after,
.choosing-section .choose-wrap .choose-right::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 194px;
    z-index: 3;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

.choosing-section .choose-wrap .choose-right::before {
    bottom: auto;
    top: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.choosing-section .choose-wrap .choose-list-item .cl-icon {
    width: 36px;
    height: 36px;
}

.choosing-section .choose-wrap .choose-list-item .cl-icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.choosing-section .choose-wrap .choose-list-item .cl-content {
    margin-top: 30px;
}

.choosing-section .choose-wrap .choose-list-item .cl-content .cl-content-title {
    font-weight: 400;
    font-size: 26px;
    color: #222222;
    line-height: 30px;
}

.choosing-section .choose-wrap .choose-list-item .cl-content .cl-content-desc {
    font-family: MontserratLight;
    font-weight: 400;
    font-size: 15px;
    color: #555555;
    line-height: 26px;
    margin-top: 1.1em;
}

.choosing-section .choose-wrap .choose-list-item:not(:first-child) {
    margin-top: 74px;
}

.choosing-section .partners {
    margin-top: 58px;
}

.choosing-section .partners-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    font-weight: 500;
    font-size: 20px;
    color: #222222;
    line-height: 1.5;
}

.choosing-section .partners-title .line {
    flex: 1;
    height: 1px;
    background: #E3E5E6;
}

.choosing-section .partners-logo {
    position: relative;
    margin-top: 60px;
    display: flex;
    white-space: nowrap;
    gap: 131px;
    overflow: hidden;
}

.choosing-section .partners-logo::before,
.choosing-section .partners-logo::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100px;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.choosing-section .partners-logo::after {
    left: auto;
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.choosing-section .partners-logo .logo-grid {
    display: flex;
    flex-shrink: 0;
    gap: 131px;
    align-items: center;
    animation: scroll 30s linear infinite;
}

.choosing-section .partners-logo:hover .logo-grid {
    animation-play-state: paused;
}

.choosing-section .partners-logo .logo-item {
    flex-shrink: 0;
}

.choosing-section .partners-logo .logo-item img {
    max-height: 49px;
    max-width: 194px;
    filter: grayscale(1) brightness(1.3) contrast(1.1);
    /* filter: brightness(0.5) sepia(1) hue-rotate(-50deg) saturate(5); */
    transition: filter 0.3s ease-in-out;
}

.choosing-section .partners-logo .logo-item:hover img {
    filter: grayscale(0) brightness(1) contrast(1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.updates-section {
    padding: 130px 0;
    background: rgba(247, 249, 250, 1);
}

.updates-section .update-grid {
    margin-top: 54px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.updates-section .update-grid .events-col {
    position: relative;
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
}
.updates-section .update-grid .tag-red {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 36px;
    background: #DF0515;
    padding: 0 19px;
    font-family: MontserratLight;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    border-radius: 24px 0 24px 0;
    z-index: 2;
}

.updates-section .update-grid .update-date {
    font-weight: 400;
    font-size: 15px;
    color: #888888;
    line-height: 1;
    opacity: 0.5;
}

.updates-section .update-grid .events-col {
    padding: 56px 34px 34px;
}

.updates-section .update-grid .events-col .event-item {
    display: block;
    padding: 18px 0;
}

.updates-section .update-grid .events-col .event-item:not(:last-child) {
    border-bottom: 1px solid rgba(227, 229, 230, 1);
}

.updates-section .update-grid .events-col .event-item:first-child {
    padding-top: 0;
}

.updates-section .update-grid .events-col .event-item:last-child {
    padding-bottom: 0;
}

.updates-section .update-grid .events-col .update-title {
    font-weight: 400;
    font-size: 18px;
    color: #222222;
    line-height: 28px;
    margin-top: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease-in-out;
}

.updates-section .update-grid .events-col .event-item:hover .update-title {
    color: #E40011;
}

.cta-section {
    padding: 77px 0;
    background-size: cover;
}

.cta-section .section-title {
    color: #fff;
}

.cta-section .cta-des {
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 26px;
    text-align: center;
    margin-top: .5em;
}

.cta-section .slideBox-buttons {
    margin-top: 20px;
    justify-content: center;
}

@media (max-width:1440px) {
    .solutions .sol-nav-wrapper .swiper-slide {
        width: 23.5%;
    }

    .solutions .sol-nav-wrapper .swiper-slide:not(:last-child) {
        margin-right: 2%;
    }

    .updates-section .update-grid .events-col .update-title {
        -webkit-line-clamp: 1;
    }
}

@media (max-width:1280px) {
    .featured-products .swiper-slide {
        padding: 25px;
    }
}

@media (max-width:1199px) {

    .updates-section .update-grid .events-col {
        padding: 40px 20px 20px;
    }

    .updates-section .update-grid {
        gap: 20px;
    }

    .solutions .solutions-content .sol-swiper .swiper-slide {
        height: 631px;
        padding-top: 8vw;
    }

    .solutions .sol-nav-wrapper .swiper-slide {
        width: 32%;
        padding-bottom: 29px;
    }

    .featured-products .swiper-slide:not(:last-child) {
        margin-right: 2%;
    }

    .featured-products .swiper-slide {
        width: 32%;
    }

    .hero-section .hero-section-pagination {
        bottom: 20px;
    }

    .cta-section,
    .updates-section,
    .choosing-section,
    .about-section,
    .featured-products,
    .what-we-do-section {
        padding: 75px 0;
    }

    .updates-section .update-grid,
    .choosing-section .partners-logo,
    .featured-products .slideBox-buttons,
    .choosing-section .choose-wrap,
    .about-section .guowei-mask,
    .solutions .solutions-content,
    .featured-products .fp-swiper-container,
    .what-we-do-content {
        margin-top: 45px;
    }

    .what-we-do-section .service-column {
        padding: 40px;
        min-height: 431px;
    }

    .what-we-do-section .service-column .list {
        margin-top: 9px;
    }

    .what-we-do-section .ripple-icon {
        margin-top: 30px;
    }

    .what-we-do-section .service-column h3 {
        font-size: 26px;
    }

    .choosing-section .choose-wrap .choose-right {
        width: 48.31%;
    }

    .choosing-section .choose-wrap .choose-right::after,
    .choosing-section .choose-wrap .choose-right::before {
        height: 49px;
    }

    .choosing-section .choose-wrap .choose-right .choose-list {
        padding: 49px 0;
    }

    .choosing-section .choose-wrap .choose-list-item .cl-content {
        margin-top: 15px;
    }

    .choosing-section .choose-wrap .choose-list-item .cl-content .cl-content-title {
        font-size: 24px;
    }

    .choosing-section .choose-wrap .choose-list-item:not(:first-child) {
        margin-top: 30px;
    }

    .choosing-section .choose-wrap .choose-list-item .cl-content .cl-content-desc {
        margin-top: .5em;
    }

    .choosing-section .partners {
        margin-top: 50px;
    }
}

@media (max-width:1024px) {
    .updates-section .update-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .updates-section .update-grid .events-col {
        grid-column: span 2;
    }

    .choosing-section .choose-wrap .choose-list-item .cl-icon {
        width: 30px;
        height: 30px;
    }

    .choosing-section .choose-wrap .choose-list-item .cl-content .cl-content-title {
        font-size: 22px;
    }

    .featured-products .swiper-slide {
        width: 49%;
    }

    .what-we-do-section .ripple-icon {
        margin-top: 20px;
        width: 50px;
        height: 50px;
    }

    .what-we-do-section .ripple-icon span {
        width: 10px;
        height: 10px;
    }

    .what-we-do-section .service-column h3 {
        font-size: 24px
    }

    .cta-section,
    .updates-section,
    .choosing-section,
    .about-section,
    .featured-products,
    .what-we-do-section {
        padding: 65px 0;
    }

    .updates-section .update-grid,
    .choosing-section .partners-logo,
    .featured-products .slideBox-buttons,
    .updates-section .slideBox-buttons,
    .about-section .slideBox-buttons,
    .choosing-section .choose-wrap,
    .about-section .guowei-mask,
    .solutions .solutions-content,
    .featured-products .fp-swiper-container,
    .what-we-do-content {
        margin-top: 40px;
    }

    .hero-section .swiper-slide .slideBox li {
        line-height: 30px;
    }

    .hero-section .swiper-slide .slideBox-buttons {
        margin-top: 25px;
    }

    .hero-section .swiper-slide .slideBox ul {
        margin-top: 10px;
    }

    .choosing-section .partners {
        margin-top: 40px;
    }

    .choosing-section .partners-logo .logo-grid {
        gap: 86px;
    }
}

@media (max-width:768px) {
    .choosing-section .partners-logo .logo-grid {
        gap: 49px;
    }

    .choosing-section .partners {
        margin-top: 35px;
    }

    .choosing-section .choose-wrap .choose-right::after,
    .choosing-section .choose-wrap .choose-right::before {
        display: none;
    }

    .choosing-section .choose-wrap .choose-right .choose-list {
        position: relative;
        padding: 0;
        margin-top: 30px;
    }

    .choosing-section .choose-wrap {
        flex-direction: column;
    }

    .choosing-section .choose-wrap .choose-left,
    .choosing-section .choose-wrap .choose-right {
        width: 100%;
    }

    .solutions .sol-nav-wrapper .swiper-slide .icon {
        height: 24px;
    }

    .solutions .sol-nav-wrapper .swiper-slide .text {
        margin-top: 8px;
    }

    .solutions .sol-nav-wrapper .swiper-slide {
        width: 48%;
        padding: 15px 0;
        border-width: 2px;
    }

    .solutions .sol-nav-wrapper .swiper-slide:not(:last-child) {
        margin-right: 4%;
    }

    .solutions .sol-nav-wrapper .swiper-slide::before {
        top: -2px;
    }

    .solutions .solutions-content .sol-swiper .swiper-slide {
        height: 513px;
    }

    .solutions .solutions-content .sol-swiper .sol-list,
    .solutions .solutions-content .sol-swiper .sol-desc {
        margin-top: .75em;
    }

    .featured-products .swiper-slide {
        width: 100%;
    }

    .what-we-do-section .service-column h3 {
        font-size: 22px;
    }

    .what-we-do-section .ripple-icon {
        margin-top: 15px;
    }

    .what-we-do-section .service-column .item {
        line-height: 30px;
    }

    .what-we-do-section .service-column:not(:last-child) {
        margin-bottom: 30px;
    }

    .what-we-do-section .service-column:hover {
        background: transparent;
    }

    .what-we-do-section .service-column {
        height: auto;
        min-height: 0;
        padding: 0;
    }

    .what-we-do-overlay {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .cta-section,
    .updates-section,
    .choosing-section,
    .about-section,
    .featured-products,
    .what-we-do-section {
        padding: 55px 0;
    }

    .updates-section .update-grid,
    .choosing-section .partners-logo,
    .about-section .stats-grid,
    .solutions .solutions-content .sol-swiper .slideBox-buttons,
    .featured-products .slideBox-buttons,
    .updates-section .slideBox-buttons,
    .about-section .slideBox-buttons,
    .choosing-section .choose-wrap,
    .about-section .guowei-mask,
    .solutions .solutions-content,
    .featured-products .fp-swiper-container,
    .what-we-do-content {
        margin-top: 30px;
    }

    .solutions .sol-nav-wrapper .sol-pagination {
        font-size: 20px;
    }

    .about-section .stats-grid {
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }

    .choosing-section .partners-title {
        font-size: 18px;
        gap: 15px;
    }

    .updates-section .update-grid {
        grid-template-columns: 1fr;
    }

    .updates-section .update-grid .events-col {
        grid-column: span 1;
    }

}

@media (max-width:500px) {
    .updates-section .update-grid .events-col .event-item {
        padding: 13px 0;
    }

    .updates-section .update-grid .events-col .update-title {
        margin-top: 7px;
    }


    .updates-section .update-grid .events-col .update-title{
        font-size: 16px;
        line-height: 1.4;
    }

    .updates-section .update-grid .update-date {
        font-size: 14px;
    }

    .choosing-section .partners-title {
        font-size: 16px;
    }

    .choosing-section .partners-title .line {
        display: none;
    }

    .choosing-section .partners-logo .logo-grid {
        gap: 31px;
    }

    .about-section .about-desc {
        font-size: 14px;
        line-height: 20px;
        margin-top: 15px;
    }

    .about-section .stats-grid .stat-text {
        margin-top: 5px;
    }

    .solutions .sol-nav-wrapper .sol-pagination {
        font-size: 18px;
    }

    .solutions .solutions-content .sol-swiper .swiper-slide {
        padding-top: 10vw;
    }

    .cta-section .cta-des,
    .about-section .stats-grid .stat-text,
    .solutions .sol-nav-wrapper .swiper-slide .text,
    .solutions .solutions-content .sol-swiper .sol-desc {
        font-size: 14px;
        line-height: 20px
    }

    .solutions .solutions-content .sol-swiper .sol-list {
        line-height: 24px;
        font-size: 14px;
    }

    .solutions .sol-nav-wrapper .swiper-slide {
        width: 100%;
    }

    .featured-products .fp-swiper-container {
        padding: 0 50px;
    }

    .featured-products .fp-swiper-container .btn {
        width: 36px;
        height: 36px;
    }

    .what-we-do-section .ripple-icon::before {
        left: 20%;
        top: 20%;
    }

    .what-we-do-section .ripple-icon span {
        width: 8px;
        height: 8px;
    }

    .what-we-do-section .ripple-icon {
        width: 40px;
        height: 40px;
    }

    .what-we-do-section .service-column .list {
        margin-top: 0;
    }

    .what-we-do-section .service-column .item {
        line-height: 24px;
    }

    .what-we-do-section .service-column h3 {
        font-size: 20px;
    }

    .cta-section,
    .updates-section,
    .choosing-section,
    .about-section,
    .featured-products,
    .what-we-do-section {
        padding: 45px 0;
    }

    .updates-section .update-grid,
    .choosing-section .partners-logo,
    .about-section .stats-grid,
    .solutions .solutions-content .sol-swiper .slideBox-buttons,
    .featured-products .slideBox-buttons,
    .updates-section .slideBox-buttons,
    .about-section .slideBox-buttons,
    .choosing-section .choose-wrap,
    .about-section .guowei-mask,
    .solutions .solutions-content,
    .featured-products .fp-swiper-container,
    .what-we-do-content {
        margin-top: 25px;
    }

    .hero-section .swiper-slide .slideBox li {
        font-size: 14px;
        line-height: 24px;
    }

    .hero-section .swiper-slide .slideBox li::marker {
        font-size: 14px;
    }

    .hero-section .hero-section-pagination-item .line {
        width: 30px;
        height: 2px;
    }

    .hero-section .hero-section-pagination-item.active .line {
        width: 50px;
    }

}