*{
    -webkit-font-smoothing: antialiased;
}
:root {
    /* CTA button */
    --shiny-cta-bg: #00000;
    --shiny-cta-bg-subtle: #fff;
    --shiny-cta-fg: #fff;
    --shiny-cta-highlight: #fff;
    --shiny-cta-highlight-subtle: #ddd;
    /* gradient bg */
    
    --color-bg1: rgb(230, 240, 253);
    --color-bg2: rgb(230, 240, 253);
    --color1: 227, 238, 255;
    --color2: 232, 227, 255;
    --color3: 221, 221, 255;
    --color4: 255, 253, 255;
    --color5: 255, 249, 239;
    --color-interactive: 255, 255, 255;
    --circle-size: 80%;
    --blending: hard-light;
}

@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@property --gradient-angle-offset {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@property --gradient-percent {
    syntax: "<percentage>";
    initial-value: 5%;
    inherits: false;
}

@property --gradient-shine {
    syntax: "<color>";
    initial-value: white;
    inherits: false;
}
.shiny-cta {
    display: inline-block;
    overflow: hidden;
    --animation: gradient-angle linear infinite;
    --duration: 3s;
    --shadow-size: 2px;
    isolation: isolate;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    outline-offset: 4px;
    padding: 12px 40px;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid transparent;
    border-radius: 360px;
    color: var(--shiny-cta-fg);
    background: linear-gradient(var(--shiny-cta-bg), var(--shiny-cta-bg))
        padding-box,
        conic-gradient(
            from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
            transparent,
            var(--shiny-cta-highlight) var(--gradient-percent),
            var(--gradient-shine) calc(var(--gradient-percent) * 2),
            var(--shiny-cta-highlight) calc(var(--gradient-percent) * 3),
            transparent calc(var(--gradient-percent) * 4)
        )
        border-box;
    box-shadow: inset 0 0 0 1px var(--shiny-cta-bg-subtle);

    &::before,
    &::after,
    span::before {
        content: "";
        pointer-events: none;
        position: absolute;
        inset-inline-start: 50%;
        inset-block-start: 50%;
        translate: -50% -50%;
        z-index: -1;
    }

    &:active {
        translate: 0 1px;
    }
    &:hover{
        color:#fff;
        font-weight: 600;
    }
}
@media (max-width: 768px) { 
    .shiny-cta {
        padding: 12px 32px;
        font-size: 16px;
    }
}
/* Dots pattern */
.shiny-cta::before {
    --size: calc(100% - var(--shadow-size) * 3);
    --position: 2px;
    --space: calc(var(--position) * 2);
    width: var(--size);
    height: var(--size);
    background: radial-gradient(
        circle at var(--position) var(--position),
        white calc(var(--position) / 4),
        transparent 0
        )
        padding-box;
    background-size: var(--space) var(--space);
    background-repeat: space;
    mask-image: conic-gradient(
        from calc(var(--gradient-angle) + 45deg),
        black,
        transparent 10% 90%,
        black
    );
    border-radius: inherit;
    opacity: 0.4;
    z-index: -1;
}
  
  /* Inner shimmer */
.shiny-cta::after {
    --animation: shimmer linear infinite;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(
      -50deg,
      transparent,
      var(--shiny-cta-highlight),
      transparent
    );
    mask-image: radial-gradient(circle at bottom, transparent 40%, black);
    opacity: 0.6;
}
.shiny-cta span {
    z-index: 1;  
    &::before {
      --size: calc(100% + 1rem);
      width: var(--size);
      height: var(--size);
      box-shadow: inset 0 -1ex 2rem 4px var(--shiny-cta-highlight);
      opacity: 0;
    }
}

  /* Animate */
.shiny-cta {
    --transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);
    transition: var(--transition);
    transition-property: --gradient-angle-offset, --gradient-percent,
      --gradient-shine;
  
    &,
    &::before,
    &::after {
      animation: var(--animation) var(--duration),
        var(--animation) calc(var(--duration) / 0.4) reverse paused;
      animation-composition: add;
    }
  
    span::before {
      transition: opacity var(--transition);
      animation: calc(var(--duration) * 1.5) breathe linear infinite;
    }
}
  
.shiny-cta:is(:hover, :focus-visible) {
    --gradient-percent: 20%;
    --gradient-angle-offset: 95deg;
    --gradient-shine: var(--shiny-cta-highlight-subtle);
  
    &,
    &::before,
    &::after {
      animation-play-state: running;
    }
  
    span::before {
      opacity: 1;
    }
}
  
@keyframes gradient-angle {
    to {
      --gradient-angle: 360deg;
    }
}
  
@keyframes shimmer {
    to {
      rotate: 360deg;
    }
}
  
@keyframes breathe {
    from,
    to {
      scale: 1;
    }
    50% {
      scale: 1.2;
    }
}

/* gradient bg */
@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes moveVertical {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes moveHorizontal {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }
  50% {
    transform: translateX(50%) translateY(10%);
  }
  100% {
    transform: translateX(-50%) translateY(-10%);
  }
}
.gradient-bg {
  position: absolute;
  z-index: -2;
  overflow: hidden;
  background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.gradient-bg .gradients-container {
  filter: url(#goo) blur(40px); 
  width: 100%;
  height: 100%;
}
.gradient-bg .g1 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: center center;
  /* animation: moveVertical 30s ease infinite; */
  opacity: 1;
}
.gradient-bg .g2 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 400px);
  /* animation: moveInCircle 20s reverse infinite; */
  opacity: 1;
}
.gradient-bg .g3 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2 + 200px);
  left: calc(50% - var(--circle-size) / 2 - 500px);
  transform-origin: calc(50% + 400px);
  /* animation: moveInCircle 40s linear infinite; */
  opacity: 1;
}
.gradient-bg .g4 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 200px);
  /* animation: moveHorizontal 40s ease infinite; */
  opacity: 0.7;
}
.gradient-bg .g5 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: calc(var(--circle-size) * 2);
  height: calc(var(--circle-size) * 2);
  top: calc(50% - var(--circle-size));
  left: calc(50% - var(--circle-size));
  transform-origin: calc(50% - 800px) calc(50% + 200px);
  /* animation: moveInCircle 20s ease infinite; */
  opacity: 1;
}
/* End of gradient BG */


body {
    color: #222;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans SC', 'Microsoft YaHei', '微软雅黑', 'sans-serif';   
    /*font-family: 'Open Sans', sans-serif;*/
    padding: 0px !important;
    margin: 0px !important;
    font-size: 18px;
    letter-spacing: -0.48px;
    background-color: #fff;
    overflow-x: hidden;    
}
.wrapper{
    min-height: 100vh;
}
a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none;    
}
a:hover span.icon-arrow-next{
    transform:translateX(4px);
    -ms-transform:translateX(4px);	/* IE 9 */
    -moz-transform:translateX(4px);  /* Firefox */
    -webkit-transform:translateX(4px); /* Safari 和 Chrome */
    -o-transform:translateX(4px);	/* Opera */
}
.highlighted{
    color: #0161e8;
}
::selection {
    background: #FDB614;
    color: #fff;
}
::-moz-selection {
    background: #FDB614;
    color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family:'Inter','Noto Sans SC', 'Lato', sans-serif;
    color:#222;
    line-height:1.2;
}
h2{
    font-size: 36px;
    line-height: 54px;
    font-weight: 700;
}
h3{
    font-size: 24px;
    font-weight: 700;
}
.btn {
    font-size: 18px;
    padding: 6px 30px;
}
a { color: #0161e8 }
a:hover { color: rgba(1, 97, 232, 0.85); }
.text-color-2{
    color:rgba(0,0,0,0.65);
}
p { line-height: 30px }

/* Menu */

/* HP container */
.container-hp{
    max-width: 1350px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.container-hp::before{
    display: table;
    content: " ";
}
.container-hp::after{
        display: table;
        content: " ";
        clear: both;
}
@media (max-width: 1280px){
    .container-hp{
        max-width: 100%;
    }
}
/* End of HP container */


/* site banner */
.hp-site-banner{    
    position: relative;
    height: 750px;
    width: 100%;
    position:relative;
    background-color: rgba(0, 0, 0, 0.75);
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-flow: row nowrap;
    align-items:center;
    justify-content:center;
}
.hp-site-banner .banner-video{
    width:100%; 
    height:100%;
    object-position: center center;
    object-fit: cover;
}
.hp-site-banner .banner-box{
    position: absolute;
    z-index: 2;
    width: 100%;
    max-width: 1350px;
    padding-left: 48px;
    margin-right: auto;
    margin-left: auto;
    color:#fff;
    top: 240px;
}
.hp-site-banner .banner-box .text-row-1{
    font-size: 24px;
    font-weight: 600;
}
.hp-site-banner .banner-box .text-row-2{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 56px;
    line-height: 140%;
}
@media (max-width: 1280px) { 
    .hp-site-banner{    
        height: 484px; 
    }
    .hp-site-banner .banner-box{
        top: 150px;
        padding-left: 36px;
    }
} 
@media (max-width: 768px) { 
    .hp-site-banner{    
        height: 290px; 
    }
    .hp-site-banner .banner-box{
        top: 80px;
        padding-left: 24px;        
    }
    .hp-site-banner .banner-box .text-row-1{
        font-size: 16px;
    }
    .hp-site-banner .banner-box .text-row-2{
        font-size: 32px;
        margin-bottom: 16px;
    }
} 
img.wechat-qr-code{
    display: block;
    width: 100px;
    height: 100px;
    background: url('../img/qr-code.png') no-repeat center center;
    background-size: cover;
    margin-top: 4px;
    margin-bottom: 8px;
}
/* Products and Services */
.hp-products-services{
    padding:80px 0;     
}
.hp-products-services .container-hp{
    background: url('../img/bg-arrow.png') no-repeat 88% 62%;
    position: static;
}
.service-title-panel{
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-flow: row nowrap;
    align-items:center;
    justify-content:space-between;
    margin-top: 140px;
}
.service-title-panel .left-box{
    max-width: 500px;
}
.service-title-panel .right-box{
    white-space: nowrap;
    word-break: keep-all;    
}
.hp-products-services .product-index{
    padding: 60px 0;
    position: relative;    
} 
.hp-products-services .product-index .index-bg{
    position: absolute;
    left:0;
    top:60px;
    z-index: -2;
    width: 100%;
    height: 64px;
    border-radius: 16px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(145, 191, 255, 0.80);
    background: #FFF;    
    box-shadow: 0px 4px 40px 0px rgba(0, 78, 188, 0.10);
}
.hp-products-services .product-index .index-container{
    width: 100%;
    height: 64px;
    margin-left: auto;
    margin-right: auto;    
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-around;    
    overflow: visible;
}
.hp-products-services .product-index .index-container .index-item{
    width: 20%;
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-flow: column nowrap;
    align-items:center;
    cursor: pointer;
    -webkit-transition: all .15s ease;
    -moz-transition: all .15s ease;
    -ms-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
}
.hp-products-services .product-index .index-container .index-item .row-1{
    color: rgba(0, 0, 0, 0.88);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -1.2px;
    -webkit-transition: all .15s ease;
    -moz-transition: all .15s ease;
    -ms-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
}
.hp-products-services .product-index .index-container .index-item.active .row-1{
    color: #0161e8;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -1.44px;
}
.hp-products-services .product-index .index-active-bg{
    position: absolute;
    z-index: -1;
    width: 20%;
    height: 85px;
    top:48px;
    left:0; /* 14  276  540  796n256 1068 */
    border: 1px solid transparent;
    border-radius: 24px;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(#E6EFFD,#E6EFFD), linear-gradient(rgba(1, 97, 232,0.2),rgba(1, 97, 232,1));
    box-shadow: 0px 4px 20px 0px rgba(22, 119, 255, 0.15);
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}
.hp-products-services .product-index .index-active-bg.index-active-1{
    left:0;
    width: 20%;
}
.hp-products-services .product-index .index-active-bg.index-active-2{
    left:20%;
    width: 20%;
}
.hp-products-services .product-index .index-active-bg.index-active-3{
    left:40%;
    width: 20%;
}
.hp-products-services .product-index .index-active-bg.index-active-4{
    left:60%;
    width: clac(20% +20px);
}
.hp-products-services .product-index .index-active-bg.index-active-5{
    left: 80%;
    width: 20%;
}
.hp-products-services .product-panel{
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}
.hp-products-services .product-panel .product-des{
    flex:0 0 600px;
    padding:0 24px;
    overflow: hidden;
}
.hp-products-services .product-panel .product-des .swiper-container.prod-swiper{
    width: 600px;
    height: 600px;
}
.hp-products-services .product-panel .product-des .prod-swiper .swiper-wrapper .swiper-slide.prod-item{
    width: 100%;
    height: 600px;
    padding-left: 20px;
    background-color: #fff;
}
.hp-products-services .product-panel  .product-des .swiper-slide.prod-item .title-row-1{
    color:#222;
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.92px;
}
.hp-products-services .product-panel  .product-des .swiper-slide.prod-item .title-row-2{
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
}
.hp-products-services .product-panel  .product-des .swiper-slide.prod-item .title-row-2-en{
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
}
.hp-products-services .product-panel  .product-des .swiper-slide.prod-item .feature-list{
    margin-top: 24px;
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;  
}
.hp-products-services .product-panel  .product-des .swiper-slide.prod-item .feature-list .feature-item{
    flex: 0 1 45%;
    padding: 4px 0 4px 40px;
    white-space: nowrap;
    word-break: keep-all;
    position: relative;
}
.hp-products-services .product-panel  .product-des .swiper-slide.prod-item .feature-list .feature-item > span{
    position: absolute;
    left: 0;
    top: 4px
}
.hp-products-services .product-panel  .product-des .swiper-slide.prod-item .feature-list .feature-item-en{
    flex: 0 1 45%;
    padding: 4px 0 4px 40px;
    white-space: nowrap;
    word-break: keep-all;
    font-size: 16px;
    position: relative;
}
.hp-products-services .product-panel  .product-des .swiper-slide.prod-item .feature-list .feature-item-en > span{
    position: absolute;
    left: 0;
    top: 4px
}

.hp-products-services .product-panel  .product-des .swiper-slide.prod-item .device-panel{
    margin: 24px 0;
    border-radius: 12px;
    padding:30px;
    background-color: #F1F7FF;
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    
}

.hp-products-services .product-panel  .product-des .swiper-slide.prod-item .device-panel .device-img{
    flex: 0 1 160px;
    text-align: center;
}
.hp-products-services .product-panel  .product-des .swiper-slide.prod-item .device-panel .device-img img{
    height: 100%;
    max-height: 160px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}
.hp-products-services .product-panel  .product-des .swiper-slide.prod-item .device-panel .device-des{
    flex: 0 1 376px;
    color:  rgba(0, 0, 0, 0.65);
    font-size: 14px;
    font-weight: 400;
    line-height: 32px;
    padding-left: 24px;
}
.hp-products-services .product-panel  .product-des .swiper-slide.prod-item .device-panel .device-des .title{
    color:  rgba(0, 0, 0, 0.88);
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 12px;
}
.hp-products-services .product-panel  .product-des .swiper-slide.prod-item .device-panel .device-des  .des-item{
    position: relative;
    padding: 4px 0 4px 32px;
    line-height: 20px;
}
.hp-products-services .product-panel  .product-des .swiper-slide.prod-item .device-panel .device-des  .des-item > span{
    position: absolute;
    left: 0;
    top: 7px;
}
.hp-products-services .product-panel .product-scroll-nav{
    width: 60px;
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-between;
}
.hp-products-services .product-panel .product-scroll-nav .current-slide{
    color:  #0161E8;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}
.hp-products-services .product-panel .product-scroll-nav .scroll-bar{
    position: relative;
    width: 2px;
    height: 100%;
    background-color: #D9D9D9;
    overflow-x: visible;
}
.hp-products-services .product-panel .product-scroll-nav .scroll-bar .progress{
    position: absolute;
    z-index: 1;
    top:0;
    left:-4px;
    width: 10px;
    height: 0;
    border-radius: 5px;
    background: #0161E8;
    -webkit-transition: height .25s ease;
    -moz-transition: height .25s ease;
    -ms-transition: height .25s ease;
    -o-transition: height .25s ease;
    transition: height .25s ease;
}
.hp-products-services .product-panel .product-scroll-nav .scroll-bar .progress.prog-1{
    height: 20%;
}
.hp-products-services .product-panel .product-scroll-nav .scroll-bar .progress.prog-2{
    height: 40%;
}
.hp-products-services .product-panel .product-scroll-nav .scroll-bar .progress.prog-3{
    height: 60%;
}
.hp-products-services .product-panel .product-scroll-nav .scroll-bar .progress.prog-4{
    height: 80%;
}
.hp-products-services .product-panel .product-scroll-nav .scroll-bar .progress.prog-5{
    height: 100%;
}
.hp-products-services .product-panel .product-scroll-nav .totoal-slides{
    color:  rgba(0, 0, 0, 0.25);
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    margin-top: 20px;
}
.hp-products-services .product-panel .product-video{
    width: 600px;
    height: 600px;
    padding: 24px;
}
.hp-products-services .product-panel .product-video video{
    width:100%; 
    height:100%;
    object-position: center 65%;
    object-fit: cover;
    border-radius: 24px;
}
.swiper-container.video-swiper{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.hp-products-services .service-panel{
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}
.hp-products-services .service-panel .service-map{
    flex:1 0 600px;
    padding:0;    
    position: relative;
}
.hp-products-services .service-panel .service-map .map-panel{
    position: absolute;
    left:0;
    right: 0;
    top:0;
    bottom: 0;
}
.hp-products-services .service-panel .service-map .map-panel-mask{
    position: absolute;
    left:0;
    right: 0;
    top:0;
    bottom: 0;
    z-index: 2;
    cursor: default;
}
.hp-products-services .service-panel .service-map.zoom-in{
    animation: service-map-zoom 1.25s ease 1;
}
@keyframes service-map-zoom {
    0% {
        opacity: 0;
        transform:scale(0);
        -ms-transform:scale(0);	/* IE 9 */
        -moz-transform:scale(0);  /* Firefox */
        -webkit-transform:scale(0); /* Safari 和 Chrome */
        -o-transform:scale(0);	/* Opera */
    }
    100% {
        opacity: 1;
        transform:scale(1.0);
        -ms-transform:scale(1.0);	/* IE 9 */
        -moz-transform:scale(1.0);  /* Firefox */
        -webkit-transform:scale(1.0); /* Safari 和 Chrome */
        -o-transform:scale(1.0);	/* Opera */
    }
  }
.hp-products-services .service-panel .service-index{
    flex:0 0 340px;
    padding:20px 30px;
    position: relative;    
}
.hp-products-services .service-panel .service-index .index-bg{
    position: absolute;
    left:56px;
    top:20px;
    z-index: -2;
    width: 228px;
    height: 422px;
    border-radius: 36px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(145, 191, 255, 0.80);
    background: #FFF;    
    box-shadow: 0px 4px 40px 0px rgba(0, 78, 188, 0.10);
}
.hp-products-services .service-panel .service-index .index-container{
    width: 228px;
    height: 422px;
    margin-left: auto;
    margin-right: auto;   
    padding:32px 0; 
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-around;    
    overflow: visible;
}
.hp-products-services .service-panel .service-index .index-container .index-item{
    width: 236px;
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-flow: column nowrap;
    align-items:center;
    cursor: pointer;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}
.hp-products-services .service-panel .service-index .index-container .index-item .row-1{
    color: #222;
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
}
.hp-products-services .service-panel .service-index .index-container .index-item .row-2{
    color: #222;
    font-size: 16px;
    font-weight: 400;
}
.hp-products-services .service-panel .service-index .index-container .index-item.active .row-1{
    color: #0161e8;
}
.hp-products-services .service-panel .service-index .index-container .index-item.active .row-2{
    color: #0161e8;
}

.hp-products-services .service-panel .service-index .index-active-bg{
    position: absolute;
    z-index: -1;
    width: 280px;
    height: 108px;
    top:48px; /* 14  276  540  796n256 1068 */
    left:30px; 
    border: 1px solid transparent;
    border-radius: 24px;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(#E6EFFD,#E6EFFD), linear-gradient(rgba(1, 97, 232,0.2),rgba(1, 97, 232,1));
    box-shadow: 0px 4px 20px 0px rgba(22, 119, 255, 0.15);
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.hp-products-services .service-panel .service-index .index-active-bg.index-active-1{
    top:56px;
}
.hp-products-services .service-panel .service-index .index-active-bg.index-active-2{
    top:176px;
}
.hp-products-services .service-panel .service-index .index-active-bg.index-active-3{
    top:296px;
}

.hp-products-services .partner-panel{
    width: 1136px;
    margin:80px auto;
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}
.hp-products-services .partner-panel .item{
    flex: 1 1 20%;
    height: 64px;
}
.hp-products-services .partner-panel .item.title{
    background: url('../img/home/services/bg-partners.svg') no-repeat center center;
    background-size: contain;
    color: rgba(0, 0, 0, 0.88);
    font-size: 32px;
    font-weight: 500;
    line-height: 60px; 
}

.hp-products-services .partner-panel .item a.img-logo{
    display: block;
    height: 40px;
    width: auto;
    margin-top: 12px;
    -webkit-transition: all .1s ease;
    -moz-transition: all .1s ease;
    -ms-transition: all .1s ease;
    -o-transition: all .1s ease;
    transition: all .1s ease;
}
.hp-products-services .partner-panel .item a.img-logo.iqax{
    background: url('../img/home/partners/iqax-d.png') no-repeat center center;
    background-size: contain;
}
.hp-products-services .partner-panel .item a.img-logo.iqax:hover{
    background: url('../img/home/partners/iqax-h.png') no-repeat center center;
    background-size: contain;
}
.hp-products-services .partner-panel .item a.img-logo.sanlly{
    background: url('../img/home/partners/sanlly-d.png') no-repeat center center;
    background-size: contain;
}
.hp-products-services .partner-panel .item a.img-logo.sanlly:hover{
    background: url('../img/home/partners/sanlly-h.png') no-repeat center center;
    background-size: contain;
}
.hp-products-services .partner-panel .item a.img-logo.shmu{
    height: 64px;
    margin-top: 0;
    background: url('../img/home/partners/shmu-d.png') no-repeat center center;
    background-size: contain;
}
.hp-products-services .partner-panel .item a.img-logo.shmu:hover{
    height: 64px;
    background: url('../img/home/partners/shmu-h.png') no-repeat center center;
    background-size: contain;
}
.hp-products-services .partner-panel .item a.img-logo.oes{
    background: url('../img/home/partners/oes-d.png') no-repeat center center;
    background-size: contain;
}
.hp-products-services .partner-panel .item a.img-logo.oes:hover{
    background: url('../img/home/partners/oes-h.png') no-repeat center center;
    background-size: contain;
}
@media (max-width: 1280px) { 
    .hp-products-services{
        position: relative;
    }
    .hp-products-services .product-index{
        position: absolute;
        right:16px;
        top:320px;   
        padding: 0 12px;
        width: 260px;   
        height: 500px; 
        overflow: visible;    
    } 
    .hp-products-services .product-index .index-bg{
        left:14px;
        top:0;
        z-index: -2;
        height: 100%;
        width: 232px;
        margin-left: auto;
        margin-right: auto;
    }
    .hp-products-services .product-index .index-container{
        height: calc(100% - 72px);
        width: 232px;
        display: -webkit-flex; /* Safari */
        display: flex;
        flex-flow: column nowrap;
        align-items:flex-end;
        justify-content: space-around;    
        overflow: visible;
        margin-left: auto;
        margin-right: auto;
        margin-top: 36px;
    }
    .hp-products-services .product-index .index-container .index-item{
        height: 20%;
        width: 100%;
        display: -webkit-flex; /* Safari */
        display: flex;
        flex-flow: column nowrap;
        align-items:center;
        justify-content:center;
        cursor: pointer;
    }
    .hp-products-services .product-index .index-active-bg{
        z-index: -1;
        width: 260px;
        height: calc(20% - 14px);
        top:48px;
        left:0; 
    }
    .hp-products-services .product-index .index-active-bg.index-active-1{
        left:0; 
        top:26px;
        height: 20%;
        width: 260px;
    }
    .hp-products-services .product-index .index-active-bg.index-active-2{
        left:0; 
        top:24%;
        width: 20%;
        width: 260px;
    }
    .hp-products-services .product-index .index-active-bg.index-active-3{
        left:0; 
        top:40%;
        height: 20%;
        width: 260px;
    }
    .hp-products-services .product-index .index-active-bg.index-active-4{
        left:0; 
        top:57%;
        height: 20%;
        width: 260px;
    }
    .hp-products-services .product-index .index-active-bg.index-active-5{
        left:0; 
        top: 74%;
        height: 20%;
        width: 260px;
    }
    .hp-products-services .product-panel{
        width: calc(100vw - 300px);
        display: -webkit-flex; /* Safari */
        display: flex;
        flex-flow: column nowrap;
        justify-content: space-between;
        margin-top: 80px;
    }
    .hp-products-services .product-panel .product-des{
        flex:0 0 620px;
        padding:0 24px;
        width: calc(100% - 80px);
    }
    .hp-products-services .product-panel .product-des .swiper-container.prod-swiper{
        width: 100%;
        height: 620px;
    }    
    .hp-products-services .product-panel .product-des .swiper-slide.prod-item .device-panel{
        margin: 30px 0;
    }
    .hp-products-services .product-panel .product-scroll-nav{
        position: absolute;
        right:40px;
        top:20px;
        width: 60px;
        height: 520px;
    }
    .hp-products-services .product-panel .product-video {
        display: none;
    }
    /* service panel */
    .hp-products-services .service-panel{
        display: -webkit-flex; /* Safari */
        display: flex;
        flex-flow: column nowrap;
        justify-content: space-between;
    }
    .hp-products-services .service-panel .service-map{
        flex:1 0 462px;
        padding:0;
    }
    .hp-products-services .service-panel .service-index{
        flex:0 0 160px;
        padding:30px 30px;
        position: relative;    
        order:-1;
    }
    .hp-products-services .service-panel .service-index .index-bg{
        position: absolute;
        left:56px;
        top:30px;
        width: 90%;
        height: 96px;
    }
    .hp-products-services .service-panel .service-index .index-container{
        width: 90%;
        height: 96px;
        margin-left: auto;
        margin-right: auto;    
        display: -webkit-flex; /* Safari */
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: space-around;    
        overflow: visible;
    }
    .hp-products-services .service-panel .service-index .index-container .index-item{
        width: 33%;
    }
    
    .hp-products-services .service-panel .service-index .index-active-bg{
        position: absolute;
        z-index: -1;
        width: 280px;
        height: 120px;
        top:16px; /* 14  276  540  796n256 1068 */
        left:16px;        
    }
    .hp-products-services .service-panel .service-index .index-active-bg.index-active-1{
        left:9%; 
        top:16px;
    }
    .hp-products-services .service-panel .service-index .index-active-bg.index-active-2{
        left:37%; 
        top:16px;
    }
    .hp-products-services .service-panel .service-index .index-active-bg.index-active-3{
        left:66%; 
        top:16px;
    }
    .hp-products-services .partner-panel{
        width: 100%;
        justify-content:space-around;
        align-items: center;
    }
} 

@media screen and (max-width:1080px) {
    .hp-products-services .service-panel .service-index .index-active-bg.index-active-2{
        left:35%; 
    } 
    .hp-products-services .service-panel .service-index .index-active-bg.index-active-3{
        left:64%; 
    }
}
@media (max-width: 1024px) { 
    .hp-products-services{
        position: relative;
    }
    .hp-products-services .product-index{
        display: none;
    }     
    .hp-products-services .product-panel{
        width: 100%;
    }
    .hp-products-services .product-panel .product-scroll-nav{
        position: absolute;
        right:0;
        top:0;
    }
    .hp-products-services .product-panel .product-des .prod-swiper .swiper-wrapper .swiper-slide.prod-item{
        width: 100%;
        padding: 0;
    }
    .hp-products-services .product-panel .product-video{
        padding: 0;
    }
    /* service panel */
    .hp-products-services .service-panel{
        display: -webkit-flex; /* Safari */
        display: flex;
        flex-flow: column nowrap;
        justify-content: space-between;
    }
    .hp-products-services .service-panel .service-map{
        flex:1 0 462px;
        padding:0;
    }
    .hp-products-services .service-panel .service-index{
        padding:30px 16px;
    }
    .hp-products-services .service-panel .service-index .index-bg{
        left:36px;
    }
    .hp-products-services .service-panel .service-index .index-active-bg{
        position: absolute;
        z-index: -1;
        width: 32%;
        height: 120px;
        top:16px; /* 14  276  540  796n256 1068 */
        left:16px;        
    }
    .hp-products-services .service-panel .service-index .index-active-bg.index-active-1{
        left:5%; 
    }
    .hp-products-services .service-panel .service-index .index-active-bg.index-active-2{
        width: 28%;
        left:36%; 
        top:16px;
    }
    .hp-products-services .service-panel .service-index .index-active-bg.index-active-3{
        width: 30%;
        left: 64%; 
        top:16px;
    }
} 
@media (max-width: 768px) { 
    .hp-products-services{
        padding:40px 0;
    }
    .hp-products-services .product-panel{
        margin-top: 36px;
    }
    .hp-products-services .product-panel .product-des{
        padding: 0;
    }
    .hp-products-services .product-panel .product-scroll-nav{
        right:8px;
    }
    .hp-products-services .service-panel .service-index .index-bg{
        width: 100%;
        left:0
    }
    .hp-products-services .service-panel .service-index .index-container{
        width: 100%;
    }
    .hp-products-services .service-panel .service-index .index-container .index-item .row-1{
        font-size: 20px;
    }
    .hp-products-services .service-panel .service-index .index-container .index-item .row-2{
        font-size: 14px;
    }
    .hp-products-services .product-panel  .product-des .swiper-slide.prod-item .title-row-1{
        font-size: 20px;
    }
    .hp-products-services .product-panel  .product-des .swiper-slide.prod-item .title-row-2{
        font-size: 20px;
    }
    .hp-products-services .product-panel .product-des .swiper-slide.prod-item .feature-list{
        margin-top: 12px;
    }
    .hp-products-services .product-panel .product-des .swiper-slide.prod-item .feature-list .feature-item{
        flex: 0 1 50%;
        height: 36px;
        white-space: nowrap;
        word-break: break-all;
    } 
    .hp-products-services .service-panel .service-map{
        flex: 1 0 240px;
    }  
    .hp-products-services .partner-panel{
        flex-flow: row wrap;
        margin: 40px 0;
    }
    .hp-products-services .partner-panel .item{
        flex:1 1 50%;   
        margin-top: 12px;     
    }
    .hp-products-services .partner-panel .item.title{
        flex:1 0 100%;
        text-align: center;
    }    
}
/* end of products and Service*/

/* News */
.hp-news{    
    padding: 100px 0;
    background: url('../img/home/bg-hp-news.png') no-repeat center bottom;
    background-size:100% 720px;
}
.hp-news .container-hp{
    width:1480px;
    max-width: 1480px;
    position: relative;
}
.hp-news .news-swiper{
    height: 655px;
    width: 100%;
    padding: 60px 15px;
    margin-bottom: 40px;
    overflow: hidden;
}
.hp-news .news-swiper .news-item{
    height: 532px;
    width: 450px;
    padding: 24px 24px 36px 24px;
    background-color: #fff;;
    border-radius: 24px;
    border: 1px solid #D9D9D9;
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    align-items: flex-start;
    overflow: visible;
    -webkit-transition: all .15s ease;
    -moz-transition: all .15s ease;
    -ms-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
}
.hp-news .news-swiper .news-item:hover,
.hp-news .news-swiper .news-item.swiper-slide-active{
    border-color: #91BFFF;
    background: #fff;
    box-shadow: 0px 4px 40px 0px rgba(0, 78, 188, 0.15);   
}
.news-swiper-buttons{
    position: absolute;
    top:420px;
    width: 36px;
    height: 36px;
    border: 1.5px solid #0161E8;
    border-radius: 50%;
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-flow: row nowrap;
    align-items:center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: background-color .1s ease;
    -moz-transition: background-color .1s ease;
    -ms-transition: background-color .1s ease;
    -o-transition: background-color .1s ease;
    transition: background-color .1s ease;
} 
.news-swiper-buttons:hover{
    background-color: rgba(1, 97, 232, 0.05);
}
.news-swiper-buttons.btn-prev{    
    left:-60px;    
}
.news-swiper-buttons.btn-next{
    right:-60px;
}
.hp-news .news-swiper .news-item .news-img{
    height: auto;
    min-height: 176px;
    width: 100%;
    border-radius: 16px;
}
.hp-news .news-swiper .news-item .news-img img{
    width: 100%;
    height: auto;
    min-height: 176px;
    max-height: 200px;
    object-position: center center;
    object-fit: cover;
}
.hp-news .news-swiper .news-item .news-details{
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-direction: column;
    margin-top: 36px;
}
.hp-news .news-swiper .news-item .news-details .news-smummary{
    width: 100%;
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}
.hp-news .news-item .news-details .news-smummary .news-type{
    color: #0161E8;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    flex: 1 1 50%;
}
.hp-news .news-item .news-details .news-smummary .news-pub-time{
    color:  rgba(0, 0, 0, 0.65);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    white-space: nowrap;
    word-break: keep-all;
}
.hp-news .news-swiper .news-item .news-title{
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    height: 52px !important;
    margin: 12px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hp-news .news-swiper .news-item .news-text{
    font-size: 16px;
    color:rgba(0,0,0,0.65);
    height: 80px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hp-news .news-swiper .news-item .news-link{
    margin-top: 32px;
    overflow: visible;
}
.swiper-pagination.news-pagination{
    bottom: 0;
}
.news-pagination .swiper-pagination-bullet{    
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    margin: 0 4px;
    background: rgb(145, 191, 255, 0.5);
    opacity: unset;
}
.news-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    width: 32px;
    background: #0161E8;
}
@media screen and (max-width:1280px) {
    .hp-news .container-hp{
        width:100vw;
        max-width: 992px;
    }
    .news-swiper-buttons{
        position: absolute;
        top:420px;
        width: 36px;
        height: 36px;
        border: 1.5px solid #0161E8;
        border-radius: 50%;
        display: -webkit-flex; /* Safari */
        display: flex;
        flex-flow: row nowrap;
        align-items:center;
        justify-content: center;
        cursor: pointer;
        -webkit-transition: background-color .1s ease;
        -moz-transition: background-color .1s ease;
        -ms-transition: background-color .1s ease;
        -o-transition: background-color .1s ease;
        transition: background-color .1s ease;
    } 
    .news-swiper-buttons:hover{
        background-color: rgba(1, 97, 232, 0.05);
    }
    .news-swiper-buttons.btn-prev{    
        left:-40px;    
    }
    .news-swiper-buttons.btn-next{
        right:-40px;
    } 
}
@media screen and (max-width:768px) {
    .hp-news{
        padding:20px 0
    }
    .hp-news .news-swiper{
        padding-top:0;
        height: 580px;
    }
    .hp-news .news-swiper .news-item .news-img{        
        width: 100%;
        height: auto;
        max-height: 200px;
        min-height: 172px;
    }
    .hp-news .news-swiper .news-item .news-img img{
        width: 100%;
        height: 100%;
        object-position: center center;
        object-fit: cover;
    }
    .hp-news .news-swiper .news-item .news-title{
        font-size: 16px;
        height:48px !important;
        margin: 12px 0;
    }
    .hp-news .news-swiper .news-item .news-text{
        font-size: 14px;
        height: 72px;
    }
    .hp-news .news-swiper .news-item .news-details{
        margin-top: 40px;
    }
}
@media screen and (max-width:600px) {
}


/* end of news */

/* Cases */
.hp-cases{
    padding: 80px 0;    
}
.hp-cases .container-hp{
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-flow: row nowrap;
    justify-content:space-between;
    align-items:flex-start;
}
.hp-cases .container-hp > .left-box{
    flex: 0 0 300px;
    margin-right: 80px;
    width: 300px;
    align-self:stretch;
}
.hp-cases .container-hp > .right-box{
    flex: 1 0 1592px;
    padding: 80px 60px 0 60px;
    overflow-x: hidden;
}
.hp-cases .case-swiper{
    position: relative;
    width: 100%;   
}
.hp-cases .case-swiper .case-item{
    box-sizing: border-box;
    border-radius: 24px;
    border: 1px solid #D9D9D9;
    background: rgba(255, 255, 255, 0.20);
    width: 366px !important;
    height: 380px;
    overflow: hidden;
    -webkit-transition: all .15s ease;
    -moz-transition: all .15s ease;
    -ms-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
}
/* .hp-cases .case-swiper .case-item.swiper-slide-active, */
.hp-cases .case-swiper .case-item:hover{
    border-color: #91BFFF;
    background: #fff;
    box-shadow: 0px 4px 40px 0px rgba(0, 78, 188, 0.15);   
}
.hp-cases .case-swiper .case-item .case-img{
    height: 200px;
    width: 100%;
    overflow: hidden;    
    -webkit-transition: height .15s ease;
    -moz-transition: height .15s ease;
    -ms-transition: height .15s ease;
    -o-transition: height .15s ease;
    transition: height .15s ease;
}
.hp-cases .case-swiper .case-item .case-img img{
    transition: all 0.15s ease;
    height: auto;
    width: 100%;
    min-width: 200px;
    -o-object-position: center center;
    object-position: center center;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0;
}
.hp-cases .case-swiper .case-item .case-details{
    padding:32px;    
}
.hp-cases .case-swiper .case-item .case-title{
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hp-cases .case-swiper .case-item .case-sub-title{    
    margin: 20px 0 10px 0;
    display: none;
}
.hp-cases .case-swiper .case-item .case-sub-title span{
    border-radius: 8px;
    background: #E6F0FD;
    padding: 4px 12px;
    color:#0161E8;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    margin-top: 20px;
    margin-right: 8px;
}
.hp-cases .case-swiper .case-item .case-section-title{
    position: relative;
    margin: 12px 0 8px 0;
    display: none;
}
.hp-cases .case-swiper .case-item .case-section-title::before{
    position: absolute;
    content:' ';
    z-index: 9;
    left:0;
    top:6px;
    width: 4px;
    height: 13px;
    border-radius: 2px;
    background-color: #FDB614;
}
.hp-cases .case-swiper .case-item .case-section-title span{
    display: inline-block;
    border-radius: 6px;
    background: rgba(253, 182, 20, 0.20);
    padding: 4px 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    text-align: center;
}

.hp-cases .case-swiper .case-item .case-text{
    font-size: 14px;
    line-height: 20px;
    color:#222;
    display: none;    
}
.hp-cases .case-swiper .case-item a.case-link{
    margin-top: 20px;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    color: #0161E8;
    white-space: nowrap;
    word-break: keep-all;    
    -webkit-transition: top .15s ease;
    -moz-transition: top.15s ease;
    -ms-transition: top .15s ease;
    -o-transition: top .15s ease;
    transition: top .15s ease;
}
.hp-cases .case-swiper .case-item a.case-link:hover > span.icon-arrow-next{
    transform:translateX(4px);
    -ms-transform:translateX(4px);	/* IE 9 */
    -moz-transform:translateX(4px);  /* Firefox */
    -webkit-transform:translateX(4px); /* Safari 和 Chrome */
    -o-transform:translateX(4px);	/* Opera */
}
.hp-cases .case-swiper .case-item a.case-link span.link-text{
    display: none;
}
.hp-cases .case-swiper .case-item a.case-link span.icon-arrow-next{
    display: inline-block;
    margin: 0 8px -4px 0;
    width: 32px;
    height: 32px;
}
.hp-cases .case-swiper .case-item:hover .case-img{
    height: 0;
}
.hp-cases .case-swiper .case-item:hover .case-sub-title{
    display: block;
}
.hp-cases .case-swiper .case-item:hover .case-section-title{
    display: block;
}
.hp-cases .case-swiper .case-item:hover .case-text{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hp-cases .case-swiper .case-item:hover a.case-link span.link-text{
    display: inline-block;
}
.hp-cases .case-swiper .case-item:hover a.case-link span.icon-arrow-next{
    margin: 0 8px -2px 8px;
    width: 16px;
    height: 16px;
}

.case-swiper-buttons{
    position: absolute;
    top:-60px;
    width: 36px;
    height: 36px;
    border: 1.5px solid #0161E8;
    border-radius: 50%;
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-flow: row nowrap;
    align-items:center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: background-color .1s ease;
    -moz-transition: background-color .1s ease;
    -ms-transition: background-color .1s ease;
    -o-transition: background-color .1s ease;
    transition: background-color .1s ease;
}
.case-swiper-buttons:hover{
    background-color: rgba(1, 97, 232, 0.05);
}
.case-swiper-buttons::after{
    content:none;
}
.case-swiper-buttons.btn-prev{    
    left:640px;    
    -webkit-transition: left .15s ease;
    -moz-transition: left.15s ease;
    -ms-transition: left .15s ease;
    -o-transition: left .15s ease;
    transition: left .15s ease;
}
.case-swiper-buttons.btn-next{
    left:700px;
    -webkit-transition: left .15s ease;
    -moz-transition: left.15s ease;
    -ms-transition: left .15s ease;
    -o-transition: left .15s ease;
    transition: left .15s ease;
}
@media screen and (max-width:1280px) {      
    .hp-cases .container-hp > .right-box {
        flex: 1 0 1194px;
        padding: 80px 0 0 0;
    }
    .case-swiper-buttons.btn-prev{    
        left:420px;    
    }
    .case-swiper-buttons.btn-next{
        left:480px;
    }
}
@media screen and (max-width:1024px) {    
    .case-swiper-buttons.btn-prev{    
        left:80px;    
    }
    .case-swiper-buttons.btn-next{
        left:140px;
    }
}
@media screen and (max-width:768px) {   
    .hp-cases .container-hp{
        flex-flow: column nowrap;
    }
    .hp-cases .container-hp > .left-box{
        width: 100%; 
    }
    .hp-cases .container-hp > .right-box {
        flex: 1 0 100vw;
        padding: 80px 0 0 0;
    }
    .hp-cases .case-swiper{
        width: calc(100vw - 20px);
        min-width:350px; 
    }  
    .hp-cases .case-swiper .case-item{
        width: calc(100vw - 60px) !important; 
        max-width: 366px;
    }
    .case-swiper-buttons.btn-prev{    
        left:240px;    
    }
    .case-swiper-buttons.btn-next{
        left:300px;
    }
}


/* end of Cases */


/* About us */
.hp-about-us{
    padding: 80px 0;
    overflow-y: visible;
}
.hp-about-us h1.hp-section-title{
    font-weight: 800;
    letter-spacing: 0;
    color: #222;
    margin-bottom: 40px;
    letter-spacing: -1.2px;
}
.hp-about-us h4{
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0;
    line-height: 30px;
}

.hp-about-us .swiper.card-swiper{
    max-width: 1560px;
    margin-top:30px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    cursor: grab;
}
.hp-about-us .swiper.card-swiper .card-item{
    width: 264px;
    padding: 12px;
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items:center;
}
.hp-about-us .swiper.card-swiper .card-item .card-img img{
    height: 160px;
    width: auto;
}
.hp-about-us .swiper.card-swiper .card-item .card-img-text{
    max-width: 240px;
    margin-top: 16px;
    text-align: center;
}
.hp-about-us .swiper.card-swiper .card-item .card-img-text-en{
    max-width: 240px;
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
}
@media screen and (max-width:1560px) {
    .hp-about-us .swiper.card-swiper{
        width: 96vw;
    }
}

/* end of About us */


/* Contact form */
.hp-contact{
    padding:60px 0;    
    /* background-color:#F4F9FF; */
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-flow: row nowrap;
    justify-content:space-around;
    align-items:center;
    position: relative;
}
.hp-contact .container-hp{
    width: 900px;
    margin: auto;
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-flow: row nowrap;
    justify-content:space-between;
    align-items:center;
}
.hp-contact .container-hp > .left-box{
    padding-right: 60px;
}
.hp-contact .container-hp > .right-box{
    flex: 1 0 200px;
    text-align: center;
}
@media screen and (max-width:1024px){
    .hp-contact .container-hp{
        flex-flow: column nowrap;
    }
    .hp-contact .container-hp > .left-box{
        margin-bottom: 36px;
        align-self: center;
        text-align: center;
        width: 90%;
        min-width: 320px;
        padding-top: 0;
    }
    .hp-contact .container-hp > .right-box{
        padding-left: 0;
        flex: 1 0 200px;
        width: 90%;
        min-width: 320px;
    }
}
@media screen and (max-width:768px){
    .hp-contact .container-hp > .right-box{
        padding-left: 0;
        flex: 1 0 320px;
        width: 90%;
        min-width: 320px;
    }
    .hp-contact .container-hp > .right-box .form-group .col-xs-12:nth-child(1){
        margin-bottom: 12px;
    }
}
/* end of Contact form */

/* h1 title   */
h1.hp-section-title{
    font-size: 40px;
    font-weight: 700;
    color:#222;
    letter-spacing: -1.2px;
}
h1.hp-section-title span.highlighted{
    color: #0161E8;
    letter-spacing: -1.2px;
} 
/* end of h1 title   */

/* breadcrumbs*/
.breadcrumbs {
    background: #11d8eb;
    color: #fff;
    padding: 30px 0;
    margin-bottom: 40px;
    margin-top: 70px;
}
.breadcrumb {
    margin-bottom: 0;
    background: none;
}
.breadcrumb>li+li:before{
    color:#fff;
}
.breadcrumb li a { color: #080a3d }
.breadcrumb li.active { color: #fff }
.breadcrumbs h1 {
    font-size: 24px;
    font-weight: 600;
    margin: 3px 0 0;
    text-transform: uppercase;
    color: #fff;
}
/* */


.mtop30 { margin-top: 30px }
/*typography*/
.highlight-1 {
    background: #a0d468;
    color: #FFFFFF;
}
.highlight-2 {
    background: #656d78;
    color: #FFFFFF;
}
.highlight-3 {
    background: #Ffce54;
    color: #242424;
}
.dropcap {
    background-color: #666666;
    color: #FFFFFF;
    float: left;
    font-size: 30px;
    line-height: 30px;
    margin: 4px 8px 0 0;
    padding: 5px 10px;
    text-align: center;
}
.dropcap2 {
    background-color: #666666;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    color: #FFFFFF;
    float: left;
    font-size: 35px;
    height: 41px;
    line-height: 25px;
    margin: 3px 8px 0 0;
    padding: 10px;
    text-align: center;
}
/*buttons*/
.btn-row { margin-bottom: 30px }


/*footer*/
.footer {
    background: #222;
    width: 100%;
    padding: 60px 0;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: #fff;
    white-space: nowrap;
    word-break: keep-all;

}
.footer a{
    color: rgba(255,255,255,0.8);
}
.footer a:active, .footer a:focus, .footer a:hover{
    color:#FDB614;
}
.footer .footer-up{
    width: 1320px;
    margin: 0 auto;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
}
.footer .footer-up .footer-menu ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer .footer-up .footer-menu ul li{
    line-height: 20px;
    margin-bottom: 12px;
}
.footer .footer-up .footer-menu ul li.level-1{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}
.footer .footer-up .footer-menu ul li.level-1:not(:first-child){
    margin-top: 32px;
}
.footer .footer-up .footer-menu .qr-code .qr-img{
    display: block;
    width: 103px;
    height: 103px;
    background: url('../img/qr-code.png') center center no-repeat;
    background-size: contain;
}
.footer .footer-up .footer-menu .qr-code .qr-code-title {
    color: rgba(255,255,255,0.8);
    width: 103px;
    text-align: center;
    line-height: 32px;
}
.footer .footer-bottom{
    width: 1320px;
    margin: 0 auto;
    padding-top:30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}
.footer .footer-bottom .footer-left .logo{
    display: block;
    width: 100px;
    height: 57px;
    background: url('../img/logo-w.png') center center no-repeat;
    background-size: contain;
}
.footer .footer-bottom .qr-code{
    display: none;
    width:110px;
}
.footer .footer-bottom .qr-code .qr-img{
    display: block;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    background: url('../img/qr-code.png') center center no-repeat;
    background-size: contain;
}
.footer .footer-bottom .qr-code .qr-code-title {
    color: rgba(255,255,255,0.8);
    width: 103px;
    text-align: center;
    line-height: 32px;
}
.footer .footer-bottom .copy-right{
    white-space: nowrap;
    word-break: keep-all;
} 
.footer .footer-bottom a.cipip{
    margin-right: 36px;
    text-decoration: underline;
}
.footer .footer-bottom .copy-right-text{
    display: inline;
}

@media screen and (max-width:1400px) {
    .footer .footer-up{
        width: 90%;
    } 
    .footer .footer-bottom{
        width: 90%;
    }
}
@media screen and (max-width:1024px) {
    .footer .footer-up{
        width: 90%;
        flex-flow: row wrap;
    } 
    .footer .footer-up .footer-menu:nth-child(3n + 1){
        width: 32%;
    }
    .footer .footer-up .footer-menu:nth-child(3n + 2){
        width: 32%;
    }
    .footer .footer-up .footer-menu:nth-child(3n){
        width: 32%;
    }
    .footer .footer-up .footer-menu:nth-child(n + 4){
        margin-top: 32px;
    }
    .footer .footer-bottom{
        width: 90%;
    }
    .footer .footer-bottom a.cipip{
        display: block;
        text-align: right;
        margin-right: 0;
        margin-bottom: 4px;
    }
    .footer .footer-bottom .copy-right-text{
        display: block;
        text-align: right;
    }
}
@media screen and (max-width:768px) {
    .footer{
        padding:6px 0 36px 0;
    }
    .footer .footer-up{
        display: none;
    } 
    .footer .footer-bottom{
        display: -webkit-flex; /* Safari */
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        align-items:flex-start;
        align-content: flex-start;
        align-self: stretch;
    }
    .footer .footer-bottom .footer-left{
        flex: 0 1 200px;
    }
    .footer .footer-bottom .footer-left .logo {
        width: 142px;
        height: 80px;
    }
    .footer .footer-bottom .qr-code{
        display: block;
        flex: 0 0 100px;
    }
    .footer .footer-bottom .copy-right{
        white-space: wrap;
        word-break: keep-all;
    }
    .footer .footer-bottom .footer-right{
        flex: 0 0 100%;       
    }
    .footer .footer-bottom a.cipip{
        text-align: left;
    }
    .footer .footer-bottom .copy-right-text{
        text-align: left;
    }

}




/*submenu test*/
.dropdown-submenu { position: relative }
.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: 0px;
    margin-left: -1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}
.dropdown-submenu:hover>.dropdown-menu { display: block }
.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 9px;
    margin-right: -10px;
}
.dropdown-submenu:hover>a:after { border-left-color: #fff }
.dropdown-submenu.pull-left { float: none }
.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}
.pad-bot-fifty { padding-bottom: 50px }
.pad-top-80{
    padding-top: 80px;
}
.pad-top-60{
    padding-top: 60px;
}
.pad-top-40{
    padding-top: 40px;
}
.pad-top-30{
    padding-top: 30px;
}
.pad-bot-30{
    padding-bottom: 30px;
}
.pad-bot-40{
    padding-bottom: 40px;
}
.pad-bot-60{
    padding-bottom: 60px;
}
.pad-bot-80{
    padding-bottom: 80px;
}
.pad-bot-200{
    padding-bottom: 200px;
}
.jumbotron { margin-bottom: 0px }
.mar-t-30 { margin-top: 30px }
.mar-t-40 { margin-top: 40px }
.mar-t-50 { margin-top: 50px }
.mar-t-60 { margin-top: 60px }
.mar-t-70 { margin-top: 70px }
.mar-t-80 { margin-top: 80px }
.mar-t-120 { margin-top: 120px }
.mar-t-180 { margin-top: 240px }
.mar-b-30 { margin-bottom: 30px }
.mar-b-40 { margin-bottom: 40px }
.mar-b-50 { margin-bottom: 50px }
.mar-b-60 { margin-bottom: 60px }
.mar-b-70 { margin-bottom: 70px }
.mar-b-80 { margin-bottom: 80px }
.mar-b-120 { margin-bottom: 120px }
.mar-b-180 { margin-bottom: 240px }
.mar-404{
    margin-top: -580px;
    padding-top: 40px;
    z-index: 20;
}

.button-spacing{
    margin-left: 30px;
}
.btn {
    padding:0 36px;
    border-radius: 24px;
    text-decoration: none;
}
/*
    Component: Buttons
-------------------------
*/
.btn {
    font-size: 18px;
    font-weight: 500;
    height: 48px;
    line-height: 48px;;
    white-space: nowrap;
    word-break: keep-all;
}
.btn.btn-default {
    background-color: #fafafa;
    color: #666;
    border-color: #ddd;
    border-bottom-color: #ddd;
    -webkit-transition: all .15s ease;
    -moz-transition: all .15s ease;
    -ms-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
}
.btn.btn-default:hover,
.btn.btn-default:active {
    background-color: #f4f4f4!important;
}
.btn.btn-default.btn-flat {
    border-bottom-color: #d9dadc;
    -webkit-transition: all .15s ease;
    -moz-transition: all .15s ease;
    -ms-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
}
.btn.btn-orange{
    color:#fff;
    background-color: #F89828;
    border: none;
    -webkit-transition: all .15s ease;
    -moz-transition: all .15s ease;
    -ms-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
}
.btn.btn-orange:hover,
.btn.btn-orange:active{
    background-color: #E8A557;
}
.btn.btn-blue{
    color:#0161e8;
    border: 1px solid transparent;
    border-radius: 30px;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(#E6EFFD,#E6EFFD), linear-gradient(rgba(1, 97, 232,0.2),rgba(1, 97, 232,1));

    -webkit-transition: all .15s ease;
    -moz-transition: all .15s ease;
    -ms-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;    
}


.btn.btn-blue:hover,
.btn.btn-blue:active {
    background-image: linear-gradient(#f0f5fc,#f0f5fc), linear-gradient(135deg, rgba(1, 97, 232,0.5),rgba(1, 97, 232,1));
    box-shadow: 0px 4px 20px 0px rgba(1, 97, 232, 0.20);
}

.btn-blue-line{
    color:#00479d !important;
    padding:0 60px !important;
    background-color: #fff !important;
    border: 1px solid #00479d !important;
    -webkit-transition: all .15s ease;
    -moz-transition: all .15s ease;
    -ms-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
}
.btn.btn-blue-line:hover,
.btn.btn-blue-line:active {
    color: #1B60C4 !important;
    border-color: #1B60C4 !important;
    background-color: rgba(12, 71, 157, 0.05) !important;
}
.btn.btn-2-lines{
    color: #0161E8;
    background-color: transparent;
    line-height: 18px !important;
    border: none;
    text-align: center;
}
.btn.btn-2-lines:hover,
.btn.btn-2-lines:active{
    color: #0161E8;
    border: none;
    box-shadow: none;
}


.btn-group .btn.btn-success { border: 1px solid #7ab03f }
.btn-group .btn.btn-info { border: 1px solid #2fa084 }
.btn-group .btn.btn-danger { border: 1px solid #d13a24 }
.btn-group .btn.btn-warning { border: 1px solid #efa50b }
.btn-group-vertical .btn.btn-success { border: 1px solid #7ab03f }
.btn-group-vertical .btn.btn-info { border: 1px solid #2fa084 }
.btn-group-vertical .btn.btn-danger { border: 1px solid #d13a24 }
.btn-group-vertical .btn.btn-warning { border: 1px solid #efa50b }
.open .dropdown-toggle.btn-warning {
    background-color: #f6bb42;
    border-color: #efa50b;
}
.open .dropdown-toggle.btn-info {
    background-color: #080a3d;
    border-color: #2fa084;
}
.btn.btn-flat {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-width: 1px;
}
.btn:active {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn:focus { outline: none }

/* tag blue and orange */
.tag-row{
    margin-bottom: 12px;
    padding-bottom: 24px;
} 
.boxplus-tag{
    border-radius: 8px;
    background: #E6F0FD;
    padding: 4px 12px;
    color: #0161E8;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    margin: 0 12px 12px 0;
}
.boxplus-tag.orange{
    background: rgba(253, 182, 20, 0.20);
    color: #FDB614;
}
.icon-pdf{
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 0 8px -4px 8px;
    background: url('../img/icons/file-pdf.png') center center no-repeat;
    background-size: contain;

}
.icon-archive{
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 0 8px -4px 8px;
    background: url('../img/icons/file-archive.png') center center no-repeat;
    background-size: contain;  
} 
/* Homepage Contact form */
.hp-contact-form input.form-control.required{
    position: relative;
    padding-left: 20px;
}
.hp-contact-form input.form-control.required::after{
    position: absolute;
    z-index: 99;
    left:8px;
    top:8px;
    content:'*';
    width: 20px;
    height: 20px;
    color:#FF4D4F;
  }
/* End of Homepage Contact form */

/*  Back-to-top */
#back-to-top {
    display:none;
    position:fixed;
    bottom:40px;
    right:40px;
    height:40px;
    width:40px;
    z-index: 9999;
    cursor:pointer;
    line-height:1em;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:50%;
    background-image:url(../img/triangle.png);
    background-position: center center;
    background-repeat:no-repeat;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    background-color: #0161e8;
}

#back-to-top:hover {

    background-color:#1B60C4;
}
div#logo a img{
    float:left;
    height:75px;

}
div.header h3{
    margin-left:15px;
}

/* HP RWD */
nav.navbar.bootsnav.navbar-mobile .navbar-collapse{
    top: 64px;
}
nav.navbar.bootsnav.navbar-mobile .navbar-collapse.in{
    top: 64px;
}

label.cms-plugin {
    position: relative;
}
.cms-form label{
    position: relative;
}
label.cms-plugin > abbr {
    color: #ec3737;
    position: absolute;
    left: 16px;
    top: 30px;
}
.cms-form label > abbr{
    color: #ec3737;
    position: absolute;
    left: 16px;
    top: 30px;
}
abbr[title] {
    text-decoration: none;
    border-bottom: none;
}

@media screen and (max-width:1440px){   
    @media screen and (max-height:800px){  
        #bannerSwiper .swiper-wrapper > .swiper-slide .slide-text{
            padding-top: 70px;
        }
        #bannerSwiper .swiper-wrapper > .swiper-slide .slide-text > .title{
            line-height: 52px;
        }
        .cs-login-panel{
            bottom: 80px;
        }
        .site-banner .arrow-left{
            bottom: 20px;
        }
        .site-banner .arrow-right{
            bottom: 20px;
        }    
    }
    
}
@media screen and (max-width:1280px){   

    .container-hp{
        max-width: 1200px;
    }
    .hp-about-us .contact-us .card-panel{
        max-width: 1240px;
    }
    .our-solutions .card-wrapper > .card{
        padding: 25px 30px;
    }
    .our-solutions .card-wrapper > .card .card-img {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    .our-solutions .card-wrapper .card .title {
        font-size: 20px;
        font-weight: 900;
        margin-bottom: 16px;
    }
    .our-solutions .card-wrapper .card .content {
        font-size: 16px;
        line-height: 24px;
    }


    .insights .col-wrapper > .col-box.left-box .card .card-img {
        height: 320px;
    }   
    
}
@media screen and (max-width:1024px){   
    #bannerSwiper .swiper-wrapper > .swiper-slide .slide-text.active > .title{
        line-height: 50px;
    }
    .container-hp{
        max-width: 960px;
    }
    .hp-about-us .contact-us .card-panel{
        max-width: 1000px;
    }
    .navbar-brand{
        padding: 5px 10px 5px 20px;
    }
    .our-solutions .card-wrapper {
        height: 760px;
        flex-flow: row wrap;
        justify-content: space-around;
        align-items: stretch;
    }
    .our-solutions .card-wrapper > .card {
        flex: 0 1 348px;
        margin-right: 0;
        margin-bottom: 30px;
        padding: 30px 40px;
    }
    .our-solutions .card-wrapper > .card:nth-child(3) {
        background: linear-gradient(141.58deg, #F89828 5.06%, #F8BE28 130.69%);
        box-shadow: 0px 9px 24px rgb(224 159 0 / 45%);
    }
    .our-solutions .card-wrapper > .card:nth-child(4) {
        
        background: linear-gradient(142.7deg, #0161e8 4.3%, #006CD3 144.63%);
        box-shadow: 0px 9px 24px rgb(0 40 91 / 34%);
    }
    .our-solutions .card-wrapper > .card .card-img {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    .our-solutions .card-wrapper .card .title {
        font-size: 24px;
        font-weight: 800;
        margin-bottom: 20px;
    }
    .our-solutions .card-wrapper .card .content {
        font-size: 16px;
        line-height: 24px;
    }

    .customer-say .col-wrapper > .col-box.left-box {
        flex: 0 0 420px;
        padding: 0;
    }
    .customer-say .col-wrapper > .col-box.right-box {
        flex: 0 1 500px;
        padding: 0;
    }
    .customer-say .success-map{
        transform:scale(0.62);
        -ms-transform:scale(0.62);	/* IE 9 */
        -moz-transform:scale(0.62);  /* Firefox */
        -webkit-transform:scale(0.62); /* Safari 和 Chrome */
    }

    .insights .col-wrapper > .col-box.left-box .card .card-img {
        height: 320px;
    }

    @media screen and (max-height:800px){   
        #bannerSwiper .swiper-wrapper > .swiper-slide .slide-text{
            padding-left: 60px;
        }
        .cs-login-panel{
            width: 868px;
            left: 60px;
            bottom: 80px;
        }
    }
    .cs-login-panel .cs-login-input{
        width: 252px;
    }
    .site-banner .arrow-left{
        left:60px;
    }
    .site-banner .arrow-right {
        left: 120px;
    }
    .hp-about-us .contact-us .card-panel{
        transform: translateY(-150px);
        -ms-transform: translateY(-150px);
        -moz-transform: translateY(-150px);
        -webkit-transform: translateY(-150px);
        -o-transform: translateY(-150px);
    }    
    .mar-404{
        margin-top: -320px;
    }    
}

@media screen and (max-width:1024px){   
    nav.navbar.bootsnav .navbar-header{
        padding-left: 10px;
        padding-right: 20px;
        width: 100%;
    }
    .navbar-brand {
        padding: 5px 0;
    }
    nav.navbar.bootsnav.navbar-mobile ul.nav{
        width: 240px;
        float: none !important;
        padding-right: 0;
        padding-left: 0;
        margin: 0;
    }
    nav.navbar.bootsnav .navbar-collapse.collapse.in {
        display: block !important;
    }
    nav.navbar.bootsnav.navbar-mobile .navbar-collapse.in{
        box-shadow: 2px 0 10px rgb(0 0 0 / 20%);
        width: 240px;
        left: 0;
    }
    nav.navbar.bootsnav.navbar-mobile .navbar-collapse {
        position: fixed;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        display: block;
        background: #fff;
        z-index: 99;
        width: 240px;
        height: 100% !important;
        left: -240px;
        top: 64px;
        padding: 0;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
    
    body.side-right>.wrapper {
        margin-left: 0;
        margin-right: 0 !important;
    }
    .navbar-collapse{
        max-height: calc(100% - 64px);
    }
    .head-section.light-bg nav.navbar.bootsnav ul.nav.navbar-right> li.login >a, 
    .head-section.sticky nav.navbar.bootsnav ul.nav.navbar-right> li.login >a {
        width:200px;
        margin:12px auto;
    }
    
}

@media screen and (max-width:768px){   
    .container-hp{
        max-width: 100%;
    }
    .hp-about-us .contact-us .card-panel{
        max-width: 100%;
    }

    .our-solutions .card-wrapper {
        height: 1280px;
        flex-flow: row wrap;
        justify-content: space-around;
        align-items: stretch;
    }
    .our-solutions .card-wrapper > .card {
        flex: 0 1 calc(100% - 60px);
        margin-bottom: 30px;
        padding: 30px 40px;
    }
    .our-solutions .card-wrapper > .card:nth-child(3) {        
        background: linear-gradient(142.7deg, #0161e8 4.3%, #006CD3 144.63%);
        box-shadow: 0px 9px 24px rgb(0 40 91 / 34%);
    }
    .our-solutions .card-wrapper > .card:nth-child(4) {
        background: linear-gradient(141.58deg, #F89828 5.06%, #F8BE28 130.69%);
        box-shadow: 0px 9px 24px rgb(224 159 0 / 45%);       
    }
    .our-solutions .card-wrapper > .card .card-img {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    .our-solutions .card-wrapper .card .title {
        font-size: 24px;
        font-weight: 800;
        margin-bottom: 20px;
    }
    .our-solutions .card-wrapper .card .content {
        font-size: 16px;
        line-height: 24px;
    }
    .customer-say .col-wrapper > .col-box.left-box {
        flex: 0 1 620px;
        padding: 0 40px;
    }
    .customer-say .col-wrapper > .col-box.right-box {
        display: none;
    }
    .button-row{
        text-align: center;
    }  
    
    #bannerSwiper .swiper-wrapper > .swiper-slide .slide-text{
        padding-left: 32px;
        padding-top: 40px;
    }
    #bannerSwiper .swiper-wrapper > .swiper-slide .slide-text > .title-shadow{
        font-size: 100px;
        line-height: 150px;
    }
    #bannerSwiper .swiper-wrapper > .swiper-slide .slide-text > .title{
        font-size: 36px;
        line-height: 42px !important;
        text-shadow: 0 0 10px rgba(255,255,255, 1);
    }
    #bannerSwiper .swiper-wrapper > .swiper-slide .slide-text > .details{
        max-width: 90vw;
        text-shadow: 0 0 10px rgba(255,255,255, 1);
    }
    .cs-login-panel{
        width: 92%;
        left: 16px;
        bottom: 100px;
    }
    .cs-login-panel > ul.nav-tabs > li > a, 
    .cs-login-panel > ul.nav-tabs > li > a:hover, 
    .cs-login-panel > ul.nav-tabs > li > a:focus{
        padding: 10px 25px; 
    }
    .cs-login-panel .form-inline .form-group{
        display: block;
        margin-bottom: 16px;
    }
    .cs-login-panel .cs-login-input{
        width: 100%;
    }
    .site-banner .arrow-left{
        left:16px;
        bottom: 0;
    }
    .site-banner .arrow-right {
        left: 76px;
        bottom: 0;
    }
    
    .hp-about-us .contact-us .card-panel{
        transform: translateY(-150px);
        -ms-transform: translateY(-150px);
        -moz-transform: translateY(-150px);
        -webkit-transform: translateY(-150px);
        -o-transform: translateY(-150px);
    }
    .our-solutions{
        margin-top: 24px;
    }    
    h1.hp-section-title{
        font-size: 26px;
        letter-spacing: -1px;
    }    
    .mar-404{
        margin-top: -320px;
    }
}
@media screen and (max-width:488px){   
    .mar-404{
        margin-top: -320px;
    }
}

@media screen and (max-width:414px){   
    .our-solutions .card-wrapper {
        height: 1460px;
        flex-flow: row wrap;
        justify-content: space-around;
        align-items: stretch;
    }
    .our-solutions .card-wrapper > .card {
        flex: 0 1 348px;
        margin-right: 0;
        margin-bottom: 30px;
        padding: 30px 40px;
    }
    .our-solutions .card-wrapper > .card:nth-child(3) {        
        background: linear-gradient(142.7deg, #0161e8 4.3%, #006CD3 144.63%);
        box-shadow: 0px 9px 24px rgb(0 40 91 / 34%);
    }
    .our-solutions .card-wrapper > .card:nth-child(4) {
        background: linear-gradient(141.58deg, #F89828 5.06%, #F8BE28 130.69%);
        box-shadow: 0px 9px 24px rgb(224 159 0 / 45%);       
    }
    .our-solutions .card-wrapper > .card .card-img {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    .our-solutions .card-wrapper .card .title {
        font-size: 24px;
        font-weight: 800;
        margin-bottom: 20px;
    }
    .our-solutions .card-wrapper .card .content {
        font-size: 16px;
        line-height: 24px;
    }

    .we-offer .title-wrapper{
        flex-flow: row wrap;
        justify-content: space-around;
    }
    .we-offer .title-wrapper > h4{
        padding-left: 16px;
    }
    .we-offer .card-wrapper {
        height: 1290px;
        display: -webkit-flex;
        display: flex;
        flex-flow: row wrap;
        justify-content: space-around;
        align-items: stretch;
    }

    .customer-say .col-wrapper > .col-box.left-box {
        flex: 0 1 420px;
        padding: 0;
    }
    .customer-say .success-story > .title{
        margin-bottom: 16px;
    }
    .customer-say .success-story > .content > .body{
        line-height: 22px;
    }
    .customer-say .col-wrapper > .col-box.right-box {
        display: none;
    }
    .button-row{
        text-align: center;
    }
    .button-spacing{
        margin-left:0;
        margin-top: 24px;
    }
    
    .insights .col-wrapper{
        flex-flow:row wrap;
        height: 1280px;
        justify-content:space-around;
    }
    .insights .col-wrapper > .col-box.right-box{
        margin-top: 20px;
        padding-left: 0;
    }
    .insights .col-wrapper > .col-box.left-box .card .card-img {
        height: 320px;
    }

    #bannerSwiper .swiper-wrapper > .swiper-slide .slide-text{
        padding-left: 32px;
        padding-top: 20px;
    }
    #bannerSwiper .swiper-wrapper > .swiper-slide .slide-text.active > .title-shadow{
        display: none;
    }
    #bannerSwiper .swiper-wrapper > .swiper-slide .slide-text.active > .details{
        display: none;
    }
    #bannerSwiper .swiper-wrapper > .swiper-slide .slide-text > .title{
        font-size: 28px;
        line-height: 32px !important;
        max-width: 60vw;
    }
    .cs-login-panel{
        width: 90%;
        left: 16px;
        bottom: 20px;
    }
    .cs-login-panel > ul.nav-tabs > li > a, 
    .cs-login-panel > ul.nav-tabs > li > a:hover, 
    .cs-login-panel > ul.nav-tabs > li > a:focus{
        padding: 10px; 
    }
    .cs-login-panel .cs-login-input{
        width: 100%;
    }
    .site-banner .arrow-left{
        left:16px;
        bottom: -40px;
    }
    .site-banner .arrow-right {
        left: 76px;
        bottom: -40px;
    }
    
    .hp-about-us .contact-us .card-panel{
        transform: translateY(-150px);
        -ms-transform: translateY(-150px);
        -moz-transform: translateY(-150px);
        -webkit-transform: translateY(-150px);
        -o-transform: translateY(-150px);
    }
    .navbar-collapse{
        max-height: 100vh;
    }
    nav.navbar.bootsnav .navbar-header{
        padding-left: 10px;
    }
    
}
@media screen and (min-width:1024px){ 
    @media screen and (max-height:800px){
        #bannerSwiper .swiper-wrapper > .swiper-slide .slide-text{
            padding-top: 50px;
        }
        #bannerSwiper .swiper-wrapper > .swiper-slide .slide-text > .title{
            line-height: 52px;
        }
        .cs-login-panel{
            bottom: 80px;
        }
        .site-banner .arrow-left{
            bottom: 20px;
        }
        .site-banner .arrow-right{
            bottom: 20px;
        }
    }
}
@media screen and (min-width:1440px){  
    #bannerSwiper .swiper-wrapper > .swiper-slide .slide-text{    
        background:none;
    }
}

/* HP RWD  end */