* {
    margin: 0;
    padding: 0;
}

.n-project-page img {
    width: 100%;
}

.n-page-info {
    position: relative;
    margin-top: 120px;
}

.n-banner {
    position: relative;
}

.n-banner-content {
    position: absolute;
    top: 0;
    width: 1400px;
    left: calc((100% - 1400px)/2);
    height: calc(100% - 60px);
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.n-banner-content h1 {
    position: relative;
    color: #292929;
    font-size: 52px;
    font-weight: 700;
    line-height: 150%;
}

.n-banner-content h1::before {
    left: -50px;
    top: -10px;
    background-image: url(../RJ-img/marks-prev.svg);
}

.n-banner-content h1::after {
    left: 562px;
    bottom: 6px;
    background-image: url(../RJ-img/marks-next.svg);
}

.n-banner-content h1::before,
.n-banner-content h1::after {
    position: absolute;
    display: block;
    content: '';
    width: 43px;
    height: 38px;
    background-size: cover;
    background-repeat: no-repeat;
}

.n-banner-content p {
    margin-top: 24px;
    color: #292929;
    font-size: 24px;
    font-weight: 400;
}

.projectBtn {
    display: inline-block;
    padding: 12px 36px;
    margin-right: 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px 4px 4px 4px;
    cursor: pointer;
    transition: border-radius .36s ease;
    box-sizing: border-box;
}

@media screen and (min-width:768px) {
    .projectBtn:hover {
        border-radius: 4px 25px 4px 4px;
    }
    .redBtn:hover {
        color: #FFFFFF;
    }
    .transparentBtn:hover {
        color: #E60039;
    }
}

.n-btns {
    margin-top: 48px;
}

.n-btns .projectBtn:last-child {
    margin-right: 0;
}

.redBtn {
    background: #E60039!important;
    backdrop-filter: blur(2.5px);
    -webkit-backdrop-filter: blur(2.5px);
    color: #FFFFFF;
}

.transparentBtn {
    color: #E60039;
    border: 1px solid #E60039;
}

.whiteBtn {
    background-color: #FFFFFF!important;
    color: #E60039;
}

.n-nav {
    position: relative;
    top: 0;
    height: 60px;
    display: flex;
    align-items: center;
    background: #333333;
}

.n-nav-content {
    display: flex;
    justify-content: space-between;
    width: 1400px;
    margin: 0 auto;
}

.n-breadcrumb {
    display: flex;
}

.n-nav-content a {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
}

.n-breadcrumb a:hover {
    color: #FFFFFF;
}

.n-breadcrumb a::after {
    content: '>';
    display: block;
    margin: 2px 6px 0 6px;
}

.n-breadcrumb a:last-child:after {
    content: '';
}

.n-breadcrumb a:last-child {
    pointer-events: none;
}

.n-nav-content ul {
    display: flex;
}

.n-nav-content ul li {
    margin-right: 24px;
}

.n-nav-content ul li:last-child {
    margin-right: 0;
}

.n-nav-content ul li:last-child {
    margin-right: 0;
}

.n-nav-content .n-nav-active {
    color: #FFFFFF;
    font-weight: 700;
    border-bottom: 2px solid #DA0030;
}

.nav-show {
    display: none;
}

.n-page-content {
    position: relative;
    width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.n-contact {
    margin-top: 0;
    background: #E60039;
    padding: 70px 0;
}

.n-contact h3 {
    color: #FFFFFF;
    text-align: center;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 24px;
}

.n-trust .n-page-content {
    position: absolute;
    left: calc((100% - 1400px)/2);
    text-align: left;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.n-trust h3 {
    color: #292929;
    font-size: 36px;
    font-weight: 600;
    line-height: 150%;
}

.n-trust p {
    margin-top: 12px;
    margin-bottom: 36px;
    color: #7D7D7D;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    width: 500px;
    text-transform: capitalize;
}

.n-overview .n-page-content {
    display: flex;
    text-align: left;
    align-items: center;
}

.n-overview img {
    width: 700px;
    margin-right: 48px;
}

.text-line {
    position: relative;
    padding-bottom: 24px;
}

.text-line::after {
    content: '';
    width: 50px;
    height: 2px;
    background: #E60039;
    position: absolute;
    bottom: 0;
    left: 0;
}

.n-overview p {
    margin-top: 24px;
    color: #7D7D7D;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.n-page-title {
    color: #292929;
    font-size: 48px;
    font-weight: 400;
    position: relative;
    text-align: center;
}

.chanllengeContent {
    padding: 100px 0;
}

.n-chanllenges {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 688px);
    grid-template-rows: repeat(2, 412px);
    gap: 24px;
}

.n-overview .n-page-title {
    text-align: left;
}

.n-chanllenge {
    position: relative;
    border: 1px solid #F6F6F6;
    transition: all .36s ease;
}

@media screen and (min-width:768px) {
    .n-chanllenge:hover {
        background-color: #FFFFFF;
        filter: drop-shadow(0px 20px 60px rgba(0, 0, 0, 0.10));
        -webkit-filter: drop-shadow(0px 20px 60px rgba(0, 0, 0, 0.10));
    }
    .n-chanllenge:hover li {
        color: #292929;
    }
}

.n-chanllenge-desc {
    padding: 24px 24px 0 24px;
}

.n-chanllenge h5 {
    text-align: left;
    color: #292929;
    font-size: 20px;
    font-weight: 700;
}

.n-chanllenge ul {
    margin-top: 12px;
}

.n-chanllenge ul li {
    color: #7D7D7D;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    text-align: left;
    list-style: disc;
    margin-left: 24px;
}

.n-page-desc {
    color: #292929;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
}

.productContent {
    background: #F7F9FA;
    padding: 100px 0;
    margin-top: 0;
}

.n-products {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 450px);
    grid-template-rows: repeat(2, 400px);
    grid-gap: 24px;
}

.n-product {
    width: 450px;
    height: 400px;
    background-color: #FFFFFF!important;
    text-align: center;
    color: #292929;
    font-size: 14px;
    font-weight: 400;
}

.n-product img {
    width: 250px;
}

.n-product h6 {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 700;
}

.n-product p {
    margin-top: 12px;
    line-height: 125%;
    padding: 0 24px;
}

.n-product span {
    display: block;
    margin-top: 24px;
    color: #E60039;
}

.n-more {
    display: flex;
    align-items: center;
    color: #E60039;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
}

#link1,
#link3,
#link1 p,
#link3 p {
    text-align: right;
}

#link1 {
    top: 3.5%;
    left: -1%;
}

#link2 {
    top: 4.4%;
    left: 84.6%;
}

#link3 {
    top: 39.7%;
    left: -2%;
}

#link4 {
    top: 33%;
    left: 84.6%;
}

.full-video {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .8);
    z-index: 9999;
}

.full-video div {
    width: 1200px;
    text-align: right;
}

.full-video div img {
    width: 48px;
}

.full-video div video {
    width: 100%;
}

.clickVideo {
    cursor: pointer;
}

.closeBtn {
    cursor: pointer;
}

.iframe-container {
    width: 100%;
    height: 600px;
    background-color: #000;
}

.n-trust {
    margin-top: 0;
}

.swiper-button-prev {
    left: 2%;
}

.swiper-button-next {
    right: 2%;
}


/* 轮播部分 */

.swiperSection {
    padding: 100px 0 80px 0;
    background-color: #f7f9fa;
}

.swiperSection .swiper-slide {
    display: unset;
}

.n-value-title {
    color: #292929;
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    line-height: 150%;
    text-transform: capitalize;
}

.n-reshape {
    display: flex;
    justify-content: space-between;
}

.n-reshape-img {
    width: 780px;
}

.n-reshape-main {
    border: 10px solid #FFFFFF;
    border-left: none;
    width: 333px;
    height: 100%;
    box-sizing: border-box;
    background: linear-gradient(185deg, #EEF8FF -13.92%, #FDFEFD 51.05%, #EEF8FF 124.69%);
    padding: 14px 0;
}

.n-reshape-desc {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(52, 67, 97, 0.10);
    margin: 0 16px;
    padding: 27px 0;
}

.n-reshape-desc:last-child {
    border-bottom: none;
}

.n-reshape-desc img {
    display: none;
    width: 74px;
    margin-right: 50px;
}

.n-reshape-desc h5 {
    text-align: left;
    color: #292929;
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
}

.n-reshape-desc p {
    margin-top: 4px;
    text-align: left;
    color: #7D7D7D;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    text-transform: capitalize;
}

.n-smarts {
    display: flex;
    justify-content: space-between;
}

.n-smart {
    width: 25%;
    height: 628px;
    background-color: #FFFFFF;
}

.n-smart h5 {
    display: inline-block;
    color: #292929;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 34px;
    padding: 0 0 10px 0;
    border-bottom: 2px solid #E60039;
}

.n-smart img {
    margin-top: 76px;
    width: 250px;
}

.n-smart p {
    min-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 292px;
    margin: 48px auto 0 auto;
    color: #292929;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    text-transform: capitalize;
}

.n-smart ul {
    margin-top: 12px;
}

.n-smart ul li {
    list-style: disc;
    color: #7D7D7D;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    text-transform: capitalize;
    text-align: left;
    margin-left: 48px;
    padding-right: 24px;
}

.n-redefines {
    background-color: #FFFFFF;
    padding: 46px 0;
}

.n-redefine h5 {
    display: inline-block;
    color: #292929;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    border-bottom: 2px solid #E60039;
}

.n-redefine p {
    margin-top: 28px;
    color: #292929;
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    line-height: 150%;
    text-transform: capitalize;
}

.n-redefine span {
    color: #E60039;
}

.n-redefine-img {
    width: 1005px;
    margin: 54px auto 0 auto;
}

.n-redefine-desc {
    margin-top: 42px;
    display: flex;
    justify-content: center;
}

.n-redefine-desc div {
    display: inline-block;
    padding: 12px 48px;
    margin-right: 40px;
    border-radius: 10px;
    border: 1px solid #D5D5D5;
    color: #7D7D7D;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
}

.n-redefine-desc div:last-child {
    margin-right: 0;
}

.n-value {
    margin-top: 70px;
}

.value-prev,
.value-next {
    position: absolute;
    top: 40%;
    cursor: pointer;
}

.value-prev {
    left: -10%;
}

.value-next {
    right: -10%;
}

.swiperSection .swiper-button-disabled {
    opacity: .4;
    pointer-events: none;
}

.valueContent {
    margin-top: 72px;
    display: flex;
}

.valueTabs {
    margin-right: 12px;
}

.valueTab {
    position: relative;
    width: 286px;
    height: 148px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    text-align: left;
    box-sizing: border-box;
    padding: 24px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
}

.valueTab::before {
    content: '';
    width: 2px;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #E60039;
}

.valueTab-active {
    font-weight: 700;
    pointer-events: none;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.10);
}

@media screen and (max-width:1714px) {
    .value-prev,
    .value-next {
        top: 110%;
    }
    .value-next {
        right: 40%;
    }
    .value-prev {
        left: 40%;
    }
}

@media screen and (max-width:1440px) {
    .n-nav-content {
        width: 1200px;
    }
    .n-banner-content {
        width: 1200px;
        left: calc((100% - 1200px)/2);
    }
    .n-page-content {
        width: 1200px;
    }
    .n-page-title {
        font-size: 42px;
    }
    .text-line {
        padding-bottom: 20px;
    }
    .n-page-info {
        margin-top: 104px;
    }
    .n-banner-content h1 {
        font-size: 44px;
    }
    .n-banner-content h1::before {
        left: -42px;
        top: -4px;
    }
    .n-banner-content h1::after {
        left: 474px;
        bottom: 4px;
    }
    .n-banner-content h1::before,
    .n-banner-content h1::after {
        width: 37px;
        height: 32px;
    }
    .n-banner-content p {
        font-size: 20px;
        margin-top: 20px;
    }
    .n-btns {
        margin-top: 42px;
    }
    .projectBtn {
        padding: 10px 30px;
        margin-right: 20px;
        font-size: 14px;
    }
    .n-overview img {
        width: 602px;
        margin-right: 42px;
    }
    .n-overview p {
        font-size: 14px;
        margin-top: 20px;
    }
    .n-chanllenges {
        margin-top: 52px;
        grid-template-columns: repeat(2, 592px);
        grid-template-rows: repeat(2, 354px);
        gap: 20px;
    }
    .n-chanllenge h5 {
        font-size: 18px;
    }
    .n-chanllenge ul li {
        font-size: 14px;
        margin-left: 20px;
    }
    .n-chanllenge ul {
        margin-top: 10px;
    }
    .n-chanllenge-desc {
        padding: 20px 20px 0 20px;
    }
    .chanllengeContent {
        padding: 86px 0;
    }
    .swiperSection {
        margin-top: 0;
    }
    .value-prev,
    .value-next {
        top: 102%;
    }
    .n-reshape-main {
        width: 286px;
    }
    .n-reshape-desc {
        padding: 22px 0;
        margin: 0 12px;
    }
    .n-reshape-desc img {
        width: 64px;
        margin-right: 42px;
    }
    .n-reshape-desc h5 {
        font-size: 20px;
    }
    .n-reshape-desc p {
        font-size: 14px;
    }
    .valueTab {
        width: 245px;
        height: 124.5px;
    }
    .n-smart {
        height: 536px;
    }
    .n-smart h5 {
        font-size: 14px;
        margin-top: 28px;
        padding: 0 0 8px 0;
    }
    .n-smart img {
        margin-top: 64px;
        width: 212px;
    }
    .n-smart p {
        width: unset;
        padding: 0 4px;
        margin: 16px auto 0 auto;
        font-size: 14px;
    }
    .n-smart ul li {
        font-size: 12px;
        margin-left: 24px;
        padding-right: 20px;
    }
    .n-redefines {
        padding: 40px 0;
    }
    .n-redefine h5 {
        font-size: 20px;
    }
    .n-redefine-img {
        width: 854px;
        margin: 46px auto 0 auto;
    }
    .n-redefine p {
        margin-top: 24px;
        font-size: 24px;
    }
    .n-redefine-desc {
        margin-top: 36px;
    }
    .n-redefine-desc div {
        padding: 10px 42px;
        margin-right: 34px;
        font-size: 16px;
    }
    .n-reshape-img {
        width: 670px;
    }
    .productContent {
        margin-top: 0;
    }
    .n-more {
        font-size: 14px;
    }
    .n-products {
        margin-top: 52px;
        grid-template-columns: repeat(3, 386px);
        grid-template-rows: repeat(2, 344px);
    }
    .n-product {
        width: 386px;
        height: 344px;
    }
    .n-product img {
        width: 214px;
    }
    .n-product h6 {
        margin-top: 6px;
        font-size: 14px;
    }
    .n-product p {
        margin-top: 10px;
        padding: 0 20px;
    }
    .n-product span {
        margin-top: 20px;
    }
    .n-trust .n-page-content {
        left: calc((100% - 1200px)/2);
    }
    .n-trust h3 {
        font-size: 30px;
    }
    .n-trust p {
        margin-top: 10px;
        font-size: 14px;
        width: 430px;
    }
    .n-contact h3 {
        font-size: 42px;
        margin-bottom: 20px;
    }
    .n-project-page .n-contact,
    .n-trust {
        margin-top: 0;
    }
    .full-video div {
        width: 1000px;
    }
    .iframe-container {
        height: 500px;
    }
}

@media screen and (max-width:1280px) {
    .n-nav {
        height: 48px;
    }
    .n-nav-content a {
        font-size: 14px;
    }
    .n-nav-content {
        width: 1068px;
    }
    .n-banner-content h1 {
        font-size: 36px;
        line-height: 120%;
    }
    .n-banner-content h1::before {
        left: -36px;
        top: -8px;
    }
    .n-banner-content h1::after {
        left: 388px;
        bottom: -5px;
    }
    .n-banner-content h1::before,
    .n-banner-content h1::after {
        width: 32px;
        height: 27px;
    }
    .n-banner-content p {
        font-size: 16px;
        margin-top: 16px;
    }
    .n-btns {
        margin-top: 36px;
    }
    .projectBtn {
        padding: 8px 24px;
        font-size: 12px;
        margin-right: 16px;
    }
    .n-page-content {
        width: 1040px;
    }
    .n-page-info {
        margin-top: 88px;
    }
    .text-line {
        padding-bottom: 16px;
    }
    .n-page-title {
        font-size: 34px;
    }
    .n-overview p {
        margin-top: 16px;
    }
    .n-overview img {
        width: 510px;
        margin-right: 34px;
    }
    .chanllengeContent {
        padding: 74px 0;
    }
    .n-chanllenges {
        margin-top: 44px;
        grid-template-columns: repeat(2, 504px);
        grid-template-rows: repeat(2, 300px);
        gap: 16px;
    }
    .n-chanllenge-desc {
        padding: 16px 16px 0 16px;
    }
    .n-chanllenge h5 {
        font-size: 16px;
    }
    .n-chanllenge ul {
        margin-top: 8px;
    }
    .n-chanllenge ul li {
        font-size: 12px;
        margin-left: 16px;
    }
    .chanllengeContent {
        margin-top: 0;
    }
    .swiperSection {
        margin-top: 0;
    }
    .n-products {
        margin-top: 44px;
        grid-gap: 20px;
        grid-template-columns: repeat(3, 328px);
        grid-template-rows: repeat(2, 292px);
    }
    .productContent {
        padding: 72px 0;
    }
    .n-product {
        width: 328px;
        height: 292px;
    }
    .n-product p {
        margin-top: 6px;
        padding: 0 16px;
        font-size: 12px;
    }
    .n-product img {
        width: 180px;
    }
    .n-product span {
        margin-top: 12px;
        font-size: 12px;
    }
    .n-trust .n-page-content {
        left: calc((100% - 1040px)/2);
    }
    .n-trust {
        font-size: 26px;
        line-height: 120%;
    }
    .n-trust p {
        margin-top: 6px;
        margin-bottom: 20px;
    }
    .n-trust .redBtn {
        padding: 0 24px;
    }
    .n-contact h3 {
        font-size: 36px;
    }
    .n-banner-content {
        left: calc((100% - 1040px)/2);
    }
    .n-project-page .n-contact,
    .n-trust {
        margin-top: 0;
    }
    .full-video div {
        width: 750px;
    }
    .iframe-container {
        height: 400px;
    }
    .full-video div img {
        width: 36px;
    }
    .n-reshape-img {
        width: 606px;
    }
    .n-reshape-main {
        width: 244px;
        padding: 10px 0;
    }
    .valueTab {
        width: 178px;
        height: 113px;
        padding: 20px;
        font-size: 12px;
    }
    .n-reshape-desc {
        padding: 23px 0;
    }
    .n-reshape-desc img {
        width: 54px;
        margin-right: 36px;
    }
    .n-reshape-desc h5 {
        font-size: 16px;
    }
    .n-reshape-desc p {
        font-size: 12px;
    }
    .n-smart {
        height: 489px;
    }
    .n-smart h5 {
        font-size: 12px;
    }
    .n-smart img {
        margin-top: 24px;
        width: 160px;
    }
    .n-smart p {
        width: 214px;
        font-size: 14px;
        margin-top: 24px;
    }
    .n-smart ul li {
        font-size: 12px;
        margin-left: 36px;
        margin-right: 0px;
    }
    .n-value-title {
        font-size: 32px;
    }
    .productContent {
        margin-top: 0;
    }
    .n-redefine h5 {
        font-size: 16px;
    }
    .n-redefines {
        padding: 34px 0 40px 0;
    }
    .n-redefine-img {
        width: 796px;
        margin: 40px auto 0 auto;
    }
    .n-redefine p {
        margin-top: 20px;
        font-size: 20px;
    }
    .n-redefine-desc {
        margin-top: 30px;
    }
    .n-redefine-desc div {
        padding: 8px 36px;
        font-size: 16px;
    }
    .value-prev,
    .value-next {
        width: 48px;
    }
    .value-prev,
    .value-next {
        top: 104%;
    }
    .value-prev {
        left: 44%;
    }
    .value-next {
        right: 44%;
    }
    .swiperSection {
        padding-bottom: 140px;
    }
}

@media screen and (max-width:1068px) {
    .valueTabs {
        display: none;
    }
    .valueContent {
        display: block;
        margin-top: 0;
    }
    .n-banner-content {
        left: calc((100% - 750px)/2);
        width: 750px;
    }
    .n-banner-content p {
        margin-top: 12px;
        font-size: 14px;
    }
    .n-banner-content h1 {
        font-size: 24px;
    }
    .n-banner-content h1::before {
        left: -26px;
        top: -8px;
    }
    .n-banner-content h1::after {
        left: 260px;
        bottom: -4px;
    }
    .n-banner-content h1::before,
    .n-banner-content h1::after {
        width: 23px;
        height: 19px;
    }
    .n-btns {
        margin-top: 24px;
    }
    .n-page-content {
        width: 750px;
    }
    .n-overview img {
        width: 100%;
        margin-right: 0;
    }
    .n-page-info {
        margin-top: 64px;
    }
    .n-overview .n-page-content {
        flex-direction: column;
    }
    .n-page-title {
        font-size: 24px;
    }
    .text-line {
        padding-bottom: 14px;
    }
    .n-overview p {
        margin-top: 14px;
    }
    .n-overview h3 {
        margin-top: 24px;
    }
    .n-chanllenges {
        margin-top: 38px;
        grid-template-columns: repeat(2, 368px);
        grid-template-rows: repeat(2, 280px);
    }
    .chanllengeContent {
        margin-top: 0;
    }
    .n-page-desc {
        font-size: 16px;
    }
    .n-products {
        margin-top: 36px;
        grid-gap: 24px;
        grid-template-columns: repeat(2, 363px);
        grid-template-rows: repeat(3, 292px);
    }
    .productContent {
        margin-top: 0;
        padding-top: 0;
    }
    .n-product {
        width: 363px;
        height: 292px;
    }
    .n-trust .n-page-content {
        justify-content: start;
        left: calc((100% - 750px)/2);
    }
    .n-project-page .n-contact,
    .n-trust {
        margin-top: 0;
    }
    .n-trust h3 {
        margin-top: 36px;
    }
    .n-nav {
        height: 40px;
    }
    .n-nav-content {
        width: 750px;
    }
    .n-nav-content a {
        font-size: 12px;
    }
    .swiperSection {
        margin-top: 0;
    }
    .n-value-title {
        margin: 68px auto 0 auto;
        font-size: 28px;
        width: 80%;
    }
    .n-value-main {
        margin-top: 36px;
    }
    .swiperSection {
        padding: 48px 0 140px 0;
    }
    .n-reshape {
        flex-wrap: wrap;
    }
    .n-reshape-img {
        width: 100%;
    }
    .n-reshape-main {
        width: 100%;
        margin: 24px 0 0 0;
        border-left: 10px solid #FFFFFF;
    }
    .n-smarts {
        flex-wrap: wrap;
    }
    .n-smart {
        padding: 24px;
        box-sizing: border-box;
        margin-top: 12px;
        width: 100%;
        height: auto;
        text-align: left;
        border-right: 2px solid #E60039;
    }
    .n-smart img {
        display: none;
    }
    .n-smart p {
        width: unset;
        text-align: left;
    }
    .n-smart h5 {
        margin-top: 0;
        font-size: 20px;
        border-bottom: none;
    }
    .n-smart p {
        min-height: unset;
        justify-content: start;
        margin-top: 12px;
    }
    .n-smart ul li {
        font-size: 14px;
    }
    .n-redefine h5 {
        font-size: 20px;
    }
    .n-redefine-img {
        margin-top: 24px;
        width: 80%;
    }
    .n-redefine-desc {
        flex-wrap: wrap;
    }
    .n-redefine-desc div {
        margin-top: 12px;
        width: 100%;
        margin: 12px 34px 0 34px;
    }
    .n-redefine-desc div:last-child {
        margin-right: 34px;
    }
}

@media screen and (max-width:768px) {
    .n-banner-content {
        width: 19.6875rem;
        left: calc((100% - 19.6875rem)/2);
        justify-content: start;
    }
    .n-banner-content h1 {
        margin-top: 2.5rem;
        font-size: 1.625rem;
    }
    .n-banner-content h1::before {
        left: -1.3rem;
        top: -0.2rem;
    }
    .n-banner-content h1::after {
        left: 18.5rem;
        bottom: 0;
    }
    .n-banner-content h1::before,
    .n-banner-content h1::after {
        width: 1.125rem;
        height: 1rem;
    }
    .n-banner-content p {
        font-size: 1rem;
        margin-top: .375rem;
    }
    .n-btns {
        margin-top: 1.4375rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .projectBtn {
        padding: .75rem 1.125rem;
        font-size: .875rem;
        margin-right: 0;
        margin-top: .75rem;
        border-radius: .25rem 1.875rem .25rem .25rem;
    }
    .n-btns .projectBtn:nth-child(1) {
        margin-top: 0;
    }
    .n-breadcrumb {
        display: none;
    }
    .n-nav {
        flex-direction: column;
        height: unset;
        align-items: flex-start;
        background: #000;
    }
    .n-nav-content {
        display: none;
        width: 100%;
        position: absolute;
        background: #dfe5eb;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        margin-top: 50px;
    }
    .n-nav-content ul {
        flex-direction: column;
        width: 100%;
    }
    .nav-show {
        width: 100%;
        display: flex;
        height: 50px;
        align-items: center;
        padding: 0 1.25rem;
        justify-content: space-between;
        box-sizing: border-box;
    }
    .nav-show span {
        font-weight: 400;
        font-size: 14px;
        color: #FFFFFF;
    }
    .nav-show div {
        display: flex;
        align-items: center;
    }
    .nav-show img {
        margin-left: 8px;
        width: 12px;
    }
    .n-nav-content ul li {
        padding: 10px 0 10px 1.25rem;
        width: 100%;
    }
    .n-nav .n-nav-content .n-nav-active {
        display: unset;
        border-bottom: 1px solid #DA0030;
        padding-bottom: 4px;
        color: #292929;
    }
    .arrow-active {
        transform: rotate(180deg);
    }
    .nav-show .whiteBtn {
        font-size: 14px;
        color: #DA0030;
        background: #FFFFFF;
        backdrop-filter: blur(2.5px);
        -webkit-backdrop-filter: blur(2.5px);
        border-radius: 4px;
        display: inline-block;
        padding: 6px 18px;
    }
    .n-page-info {
        margin-top: 3.75rem;
    }
    .n-page-content {
        width: 20.4375rem;
    }
    .n-overview .n-page-content {
        flex-direction: column-reverse;
    }
    .n-overview .n-page-title,
    .chanllengeContent .n-page-title {
        text-align: center;
    }
    .text-line::after {
        content: '';
        width: 1.5625rem;
        height: 2px;
        background: #E60039;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .n-overview h3 {
        margin-top: 0;
    }
    .text-line {
        padding-bottom: .75rem;
    }
    .n-page-title {
        font-size: 1.5rem;
    }
    .n-overview p {
        margin-top: .75rem;
        font-size: .875rem;
    }
    .n-overview img {
        margin-top: 1.5rem;
    }
    .chanllengeContent {
        padding: 2.1875rem 0;
    }
    .n-chanllenges {
        margin-top: 1.875rem;
        grid-template-columns: repeat(1, 100%);
        grid-template-rows: repeat(4, auto);
    }
    .n-chanllenge {
        width: 100%;
        margin-top: .75rem;
        border: none;
    }
    .n-chanllenge:first-child {
        margin-top: 0;
    }
    .n-chanllenge h5 {
        font-size: 1.125rem;
        width: unset;
    }
    .n-chanllenge-desc {
        padding: 1.25rem 0 .75rem 0;
    }
    .n-chanllenge img {
        width: 100%;
    }
    .n-chanllenge ul li {
        font-size: .8125rem;
        margin-left: 1.125rem;
    }
    .n-more::after {
        width: 1.5rem;
        height: 1.5rem;
        margin-left: .125rem;
    }
    .n-more {
        font-size: .875rem;
    }
    .productContent {
        padding: 3.75rem 0;
    }
    .n-products {
        margin-top: 1.875rem;
        grid-gap: .75rem;
        grid-template-columns: repeat(2, 10.0625rem);
        grid-template-rows: repeat(3, 17.9375rem);
    }
    .n-product {
        width: 10.0625rem;
        height: 17.9375rem;
    }
    .n-product img {
        margin-top: 1.25rem;
        width: 7.5625rem;
    }
    .n-product h6 {
        margin-top: 1.125rem;
        font-size: .8125rem;
    }
    .n-product p {
        margin-top: .375rem;
        font-size: .75rem;
        padding: 0 .625rem;
        min-height: 3.375rem;
    }
    .n-product:last-child p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }
    .n-trust .n-page-content {
        left: calc((100% - 20.4375rem)/2);
    }
    .n-project-page .n-contact,
    .n-trust {
        margin-top: 0;
    }
    .n-trust h3 {
        margin-top: 1.5rem;
        font-size: 1.125rem;
    }
    .n-trust p {
        width: 100%;
        margin-top: .375rem;
        font-size: .75rem;
        margin-bottom: 5.5rem;
    }
    .n-trust .redBtn {
        margin-top: 0;
        padding: .375rem 1.125rem;
    }
    .n-contact h3 {
        font-size: 1.5rem;
        margin-bottom: .75rem;
    }
    .full-video div {
        width: 20.4375rem;
    }
    .iframe-container {
        height: 15rem;
    }
    .full-video div img {
        width: 1.5rem;
    }
    .swiperSection {
        padding-top: 2.5rem!important;
        padding: 0;
    }
    .n-value-title {
        margin-top: 3.75rem;
        font-size: 1.5rem;
        width: 20.4375rem;
    }
    .swiperSection .n-page-content {
        width: 100%;
    }
    .n-reshape-main {
        margin: 1.875rem 1.5rem 0 1.5rem;
        border: .3125rem solid #FFFFFF;
        padding: 0 .625rem;
    }
    .n-reshape-desc img {
        width: 2.3125rem;
        margin-right: 1.9375rem;
    }
    .n-reshape-desc h5 {
        font-size: .875rem;
    }
    .n-reshape-desc p {
        font-size: .75rem;
    }
    .n-value-main {
        margin-top: 1.875rem;
        padding: 0 1.5rem;
    }
    .n-smarts {
        margin: 0;
    }
    .n-smart {
        padding: .75rem;
        margin-top: .75rem;
    }
    .n-smart h5 {
        font-size: 1rem;
        padding-bottom: 0;
    }
    .n-smart p {
        margin-top: 1.125rem;
        font-size: .875rem;
    }
    .n-smart ul {
        margin-top: .375rem;
    }
    .n-smart ul li {
        font-size: .75rem;
        margin-left: 1.125rem;
    }
    .n-redefine h5 {
        font-size: 1rem;
    }
    .n-redefines {
        padding: 2.1875rem 0 3.75rem 0;
    }
    .n-redefine-img {
        margin-top: 2.125rem;
        width: 18.5625rem;
    }
    .n-redefine p {
        margin-top: 1.5625rem;
        font-size: .875rem;
        margin: 1.5625rem 1.5rem 0 1.5rem;
    }
    .n-redefine-desc div {
        margin: .75rem 1.5rem 0 1.5rem;
    }
    .n-redefine-desc {
        margin-top: 1.125rem;
    }
    .n-redefine-desc div {
        padding: .375rem .375rem;
        font-size: .875rem;
    }
    .productContent {
        margin-top: 0;
    }
    .n-redefine-desc div:last-child {
        margin-right: 1.5rem;
    }
}