:root {
  --theme-color: #1D55B1;
  --accent-color: #1b3678;
  --accent-theme-color: #347DF0;
  --font-color: #000;
  --text-color: #666;
  --white: white;
  --black: black;
}

@font-face {
  font-family: "mi";
  src: url("./font/MiSans-Light.otf") format("truetype");
}
@font-face {
  font-family: "go";
  src: url("./font/Gotham-Medium.otf") format("truetype");
}
.font-mi, html, body, div, p, ul, ol, li,
h1, h2, h3, h4, h5, h6,
dd, dt, dl, table, tbody, tfoot, th, td,
img, video, audio, a, strong, b,
i, nav, small, span, select, option, section,
header, footer, main, aside,
form, button, input {
  font-family: mi, sans-serif;
  font-style: normal;
}

.font-go, .feature-3-1-title > span, .feature-2-tips > h4 span, .feature-2-title > span, .feature-1-title span {
  font-family: go, sans-serif;
  font-style: normal;
}

html, body, div, p, ul, ol, li,
h1, h2, h3, h4, h5, h6,
dd, dt, dl, table, tbody, tfoot, th, td,
img, video, audio, a, strong, b,
i, nav, small, span, select, option, section,
header, footer, main, aside,
form, button, input {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html[lang=zh] {
  text-transform: uppercase;
}

html[lang=en] .none {
  display: none;
}

ul, ol {
  list-style: none;
}

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

img {
  width: 100%;
  display: block;
}

.row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.app-header {
  background-color: #333;
  padding: 0 15px;
  height: 40px;
  font-size: 14px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  position: relative;
  text-align: center;
}
.app-header > span {
  width: 80px;
  color: #fff;
  cursor: pointer;
  line-height: 40px;
}
.app-header > span:hover ~ ul {
  height: auto;
  opacity: 1;
  visibility: visible;
}
.app-header ul {
  width: 80px;
  text-align: center;
  position: absolute;
  top: 100%;
  right: 15px;
  z-index: 11;
  background: #333;
  color: #fff;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s linear;
}
.app-header ul > li {
  line-height: 30px;
  border-bottom: 1px solid #666;
  cursor: pointer;
  transition: 0.2s linear;
  user-select: none;
  text-transform: none;
}
.app-header ul > li:last-child {
  border-bottom: none;
}
.app-header ul > li.active, .app-header ul > li:hover {
  color: var(--theme-color);
}
.app-header ul:hover {
  height: auto;
  opacity: 1;
  visibility: visible;
}

.qp-header {
  width: 100%;
  height: 95px;
  padding: 0 10vw;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  --menu-font-size: clamp(12px, 2vw, 21px);
}
.qp-header .top {
  position: relative;
  z-index: 9;
}
.qp-header .top-right {
  display: none;
  visibility: hidden;
}
.qp-header .top .logo {
  width: 140px;
}
.qp-header .nav ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: var(--menu-font-size);
  font-weight: 400;
}
.qp-header .nav ul li {
  margin-left: 2vw;
  cursor: pointer;
  position: relative;
}
.qp-header .nav ul li:first-child {
  margin-left: 0;
}
.qp-header .nav ul li.active:after {
  content: "";
  width: 100%;
  height: 4px;
  display: block;
  background: currentColor;
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: 2;
  border-radius: 4px;
}
@media screen and (max-width: 1200px) {
  .qp-header {
    height: 60px;
    display: block;
  }
  .qp-header .top {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .qp-header .top-right {
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 9;
    visibility: visible;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .qp-header .top-right:after, .qp-header .top-right:before {
    content: "";
  }
  .qp-header .top-right span, .qp-header .top-right:after, .qp-header .top-right:before {
    width: 30px;
    height: 5px;
    display: block;
    background: currentColor;
    transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0ms;
  }
  .qp-header .top-right.active span {
    opacity: 0;
    visibility: hidden;
  }
  .qp-header .top-right.active:after {
    position: absolute;
    top: 50%;
    transform: rotateZ(45deg);
  }
  .qp-header .top-right.active:before {
    position: absolute;
    top: 50%;
    transform: rotateZ(-45deg);
  }
  .qp-header .top .logo {
    width: 120px;
  }
  .qp-header .nav {
    display: none;
  }
  .qp-header.mask {
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9) !important;
    overflow: hidden;
  }
  .qp-header.mask .nav {
    display: block;
  }
  .qp-header.mask .nav ul {
    padding: 5% 25%;
    display: block;
  }
  @keyframes fadeToY {
    0% {
      visibility: hidden;
      opacity: 0;
      transform: translateX(-8px);
    }
    100% {
      visibility: visible;
      opacity: 1;
      transform: translateX(0);
    }
  }
  .qp-header.mask .nav ul li {
    text-align: center;
    margin-bottom: 10px;
    margin-left: 0;
    font-size: 16px;
  }
  .qp-header.mask .nav ul li > a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 5% 0;
  }
  .qp-header.mask .nav ul li:nth-child(1) {
    animation: fadeToY 0.3s both linear 0.1s 1;
  }
  .qp-header.mask .nav ul li:nth-child(2) {
    animation: fadeToY 0.3s both linear 0.2s 1;
  }
  .qp-header.mask .nav ul li:nth-child(3) {
    animation: fadeToY 0.3s both linear 0.3s 1;
  }
  .qp-header.mask .nav ul li:nth-child(4) {
    animation: fadeToY 0.3s both linear 0.4s 1;
  }
  .qp-header.mask .nav ul li:nth-child(5) {
    animation: fadeToY 0.3s both linear 0.5s 1;
  }
  .qp-header.mask .nav ul li:nth-child(6) {
    animation: fadeToY 0.3s both linear 0.6s 1;
  }
  .qp-header.mask .nav ul li:nth-child(7) {
    animation: fadeToY 0.3s both linear 0.7s 1;
  }
  .qp-header.mask .nav ul li.active {
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    font-weight: bold;
  }
}

.qp-footer {
  width: 100%;
  position: relative;
}
.qp-footer-nav {
  position: absolute;
  top: 6vh;
  left: 10vw;
}
.qp-footer-nav ul {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.qp-footer-nav ul li {
  margin-right: 18px;
  font-size: 21px;
  cursor: pointer;
}
.qp-footer-nav ul li a {
  padding: 4px 10px;
  color: var(--white);
  background: transparent;
  transition: 0.3s linear;
  border: 1px solid var(--white);
  display: block;
  border-radius: 6px;
}
.qp-footer-nav ul li a:hover {
  background: var(--white);
  color: var(--black);
}
.qp-footer-nav ul li.active a {
  background: var(--white);
  color: var(--black);
}
.qp-footer-copyright {
  width: 100%;
  background: var(--white);
  font-size: 21px;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2vh 10vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.qp-footer-copyright p {
  flex: 1;
}
@media screen and (max-width: 1200px) {
  .qp-footer-nav {
    top: 1vh;
  }
  .qp-footer-nav ul {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    gap: 1vw;
  }
  .qp-footer-nav ul li {
    margin: 0;
  }
  .qp-footer-nav ul li a {
    padding: 0.5vh 0.8vw;
    text-align: center;
  }
}
@media screen and (max-width: 800px) {
  .qp-footer-nav {
    display: none;
  }
  .qp-footer-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .qp-footer-copyright p {
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  .qp-footer-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    font-size: 14px;
  }
}

html[lang=en] .qp-header .nav ul li {
  margin-left: 1vw;
}
html[lang=en] .qp-header .nav ul li a {
  text-transform: none;
}
@media screen and (max-width: 1650px) {
  html[lang=en] .qp-header .nav ul {
    font-size: 16px;
  }
}
@media screen and (max-width: 1300px) {
  html[lang=en] .qp-header {
    height: 60px;
    display: block;
  }
  html[lang=en] .qp-header .top {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  html[lang=en] .qp-header .top-right {
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 9;
    visibility: visible;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  html[lang=en] .qp-header .top-right:after, html[lang=en] .qp-header .top-right:before {
    content: "";
  }
  html[lang=en] .qp-header .top-right span, html[lang=en] .qp-header .top-right:after, html[lang=en] .qp-header .top-right:before {
    width: 30px;
    height: 5px;
    display: block;
    background: currentColor;
    transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0ms;
  }
  html[lang=en] .qp-header .top-right.active span {
    opacity: 0;
    visibility: hidden;
  }
  html[lang=en] .qp-header .top-right.active:after {
    position: absolute;
    top: 50%;
    transform: rotateZ(45deg);
  }
  html[lang=en] .qp-header .top-right.active:before {
    position: absolute;
    top: 50%;
    transform: rotateZ(-45deg);
  }
  html[lang=en] .qp-header .top .logo {
    width: 120px;
  }
  html[lang=en] .qp-header .nav {
    display: none;
  }
  html[lang=en] .qp-header.mask {
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9) !important;
    overflow: hidden;
  }
  html[lang=en] .qp-header.mask .nav {
    display: block;
  }
  html[lang=en] .qp-header.mask .nav ul {
    padding: 5% 25%;
    display: block;
  }
  @keyframes fadeToY {
    0% {
      visibility: hidden;
      opacity: 0;
      transform: translateX(-8px);
    }
    100% {
      visibility: visible;
      opacity: 1;
      transform: translateX(0);
    }
  }
  html[lang=en] .qp-header.mask .nav ul li {
    text-align: center;
    margin-bottom: 10px;
    margin-left: 0;
    font-size: 16px;
  }
  html[lang=en] .qp-header.mask .nav ul li > a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 5% 0;
  }
  html[lang=en] .qp-header.mask .nav ul li:nth-child(1) {
    animation: fadeToY 0.3s both linear 0.1s 1;
  }
  html[lang=en] .qp-header.mask .nav ul li:nth-child(2) {
    animation: fadeToY 0.3s both linear 0.2s 1;
  }
  html[lang=en] .qp-header.mask .nav ul li:nth-child(3) {
    animation: fadeToY 0.3s both linear 0.3s 1;
  }
  html[lang=en] .qp-header.mask .nav ul li:nth-child(4) {
    animation: fadeToY 0.3s both linear 0.4s 1;
  }
  html[lang=en] .qp-header.mask .nav ul li:nth-child(5) {
    animation: fadeToY 0.3s both linear 0.5s 1;
  }
  html[lang=en] .qp-header.mask .nav ul li:nth-child(6) {
    animation: fadeToY 0.3s both linear 0.6s 1;
  }
  html[lang=en] .qp-header.mask .nav ul li:nth-child(7) {
    animation: fadeToY 0.3s both linear 0.7s 1;
  }
  html[lang=en] .qp-header.mask .nav ul li.active {
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    font-weight: bold;
  }
}
@media screen and (max-width: 1800px) {
  html[lang=en] .qp-footer {
    width: 100%;
    position: relative;
  }
  html[lang=en] .qp-footer-nav {
    top: 2vh;
  }
  html[lang=en] .qp-footer-nav ul {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 1vw;
  }
  html[lang=en] .qp-footer-nav ul li {
    margin: 0;
  }
  html[lang=en] .qp-footer-nav ul li a {
    padding: 0.5vh 0.8vw;
    text-align: center;
  }
}
@media screen and (max-width: 1200px) {
  html[lang=en] .qp-footer-nav {
    display: none;
  }
  html[lang=en] .qp-footer-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    font-size: 14px;
  }
}

.qp-header li a, .qp-footer li a {
  width: 100%;
  height: 100%;
  user-select: none;
}

.feature {
  width: 100%;
}
.feature .icon:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 4vw;
  height: 4vw;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.feature .icon-white:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M6.4 18L5 16.6L14.6 7H6V5h12v12h-2V8.4z' stroke-width='1' stroke='%23fff'/%3E%3C/svg%3E");
}
.feature .icon-theme:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%231b3678' d='M6.4 18L5 16.6L14.6 7H6V5h12v12h-2V8.4z' stroke-width='1' stroke='%231b3678'/%3E%3C/svg%3E");
}
.feature .icon-accent-theme:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23347DF0' d='M6.4 18L5 16.6L14.6 7H6V5h12v12h-2V8.4z' stroke-width='1' stroke='%23347DF0'/%3E%3C/svg%3E");
}
.feature-1 {
  color: var(--white);
  background: var(--theme-color) url("../image/featrue/bg-1.png") no-repeat left top;
  background-size: 100% 100%;
  padding: 15vh 10vw;
}
.feature-1-title {
  font-weight: bolder;
  font-size: clamp(24px, 4vw, 61px);
  text-align: center;
  margin-bottom: 5vh;
  transform: skewX(-15deg);
}
.feature-1-title span {
  font-size: clamp(50px, 7vw, 132px);
  color: var(--accent-theme-color);
  padding-right: 1vw;
}
.feature-1-title i {
  color: var(--white);
}
.feature-1-tips {
  color: var(--white);
  font-size: clamp(14px, 2vw, 28px);
  line-height: 1.5;
  margin-bottom: 10vh;
}
.feature-1-grid {
  margin: 10vh 0 15vh;
  display: grid;
  grid-template-rows: repeat(auto-fill, 1fr);
  grid-row-gap: 5vh;
  position: relative;
}
.feature-1-grid li {
  display: grid;
  grid-template-columns: 17vw 1fr;
}
.feature-1-grid li h4 {
  font-size: clamp(5vw, 6vw, 132px);
  background: linear-gradient(to bottom, var(--white) 0%, rgba(156, 156, 156, 0.64) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  padding-right: 2vw;
}
.feature-1-grid li p {
  font-weight: 600;
}
.feature-1-grid li > div {
  padding-left: 2vw;
  position: relative;
}
.feature-1-grid li > div p {
  font-size: clamp(3vw, 4vw, 61px);
}
.feature-1-grid li > div span {
  font-size: clamp(2vw, 2.5vw, 33px);
  line-height: 1.4;
  display: block;
  margin-top: 1vh;
}
.feature-1-grid li:after {
  content: "";
  width: 0;
  height: 100%;
  border-left: 2px solid var(--white);
  position: absolute;
  top: 0;
  left: 16vw;
  z-index: 1;
}
.feature-1-posi {
  padding: 8vh 5vw 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
  border-radius: 4vw;
}
.feature-1-posi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 3vw;
}
.feature-1-posi-grid div {
  padding: 5px;
  background: var(--white);
  border-radius: 4px;
}
.feature-1-posi-grid p {
  font-size: clamp(1vw, 2vw, 33px);
  margin-top: 1vh;
  text-align: center;
}
.feature-1-posi-grid p span {
  font-weight: 600;
}
.feature-1-posi-flex-1 {
  margin-top: 7vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  border-bottom: 3px solid var(--white);
}
.feature-1-posi-flex-1 li {
  padding: 2vh 3vw;
}
.feature-1-posi-flex-1 li p {
  font-size: clamp(1vw, 2vw, 33px);
}
.feature-1-posi-flex-1 li:first-child h3 {
  font-size: clamp(3vw, 7vw, 132px);
}
.feature-1-posi-flex-1 li:last-child {
  flex: 1;
  border-left: 3px solid var(--white);
}
.feature-1-posi-flex-1 li:last-child h3 {
  font-size: clamp(2vw, 3vw, 61px);
  margin-bottom: 2vh;
}
.feature-1-posi-flex-1 li:last-child p {
  padding-left: 4vw;
}
.feature-1-posi-flex-2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  border-bottom: 3px solid var(--white);
}
.feature-1-posi-flex-2 li {
  padding: 2vh 3vw;
}
.feature-1-posi-flex-2 li p, .feature-1-posi-flex-2 li span {
  font-size: clamp(1vw, 2vw, 33px);
}
.feature-1-posi-flex-2 li:first-child {
  flex: 1;
  border-right: 3px solid var(--white);
}
.feature-1-posi-flex-2 li:first-child h3 {
  font-size: clamp(2vw, 3vw, 61px);
  margin-bottom: 2vh;
}
.feature-1-posi-flex-2 li:first-child p {
  padding-left: 4vw;
}
.feature-1-posi-flex-2 li:last-child h3 {
  font-size: clamp(3vw, 7vw, 132px);
}
.feature-2 {
  background: #eef2fb;
  padding: 15vh 10vw;
}
.feature-2-title {
  font-weight: bolder;
  font-size: clamp(2vw, 4vw, 61px);
  color: #333;
  transform: skewX(-15deg);
  padding-left: 12vw;
}
.feature-2-title > span {
  font-size: clamp(50px, 7vw, 132px);
  color: var(--accent-theme-color);
  padding-right: 1vw;
}
.feature-2-title i span {
  padding-left: 18vw;
}
html[lang=en] .feature-2-title i {
  word-break: break-all;
}
.feature-2-flex {
  padding-top: 8vh;
  display: flex;
}
.feature-2-flex > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: clamp(1vw, 2.6vw, 28px);
  color: #333;
  margin-left: 2vw;
}
.feature-2-flex > div > div {
  flex: 1;
}
.feature-2-flex > div > div p {
  line-height: 1.3;
}
.feature-2-flex .img {
  flex: 1;
  position: relative;
}
.feature-2-flex .img span {
  padding: 0 5vw;
  font-size: clamp(1.6vw, 2.2vw, 42px);
  color: var(--white);
  width: 100%;
  display: block;
  text-align: center;
  position: absolute;
  bottom: 6vh;
}
@media screen and (max-width: 2000px) {
  html[lang=en] .feature-2-flex > div {
    font-size: clamp(1vw, 1.6vw, 28px);
  }
  html[lang=en] .feature-2-flex > div > div p {
    line-height: 1.15;
  }
}
@media screen and (max-width: 650px) {
  html[lang=en] .feature-2-flex {
    grid-template-columns: none;
    grid-template-rows: auto 1fr;
  }
  html[lang=en] .feature-2-flex > div {
    font-size: clamp(1vw, 2.6vw, 28px);
  }
  html[lang=en] .feature-2-flex > div > div {
    margin-bottom: 1vh;
  }
  html[lang=en] .feature-2-flex .img span {
    font-size: clamp(1.6vw, 3.6vw, 42px);
  }
}
.feature-2-list {
  background: var(--white);
  padding: 4vh 4vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3vw;
  border-radius: 4vw;
  margin-top: 6vh;
}
.feature-2-list h3 {
  font-size: clamp(2vw, 4vw, 61px);
  font-weight: bolder;
  color: var(--accent-color);
}
.feature-2-list p {
  font-size: clamp(1.8vw, 2vw, 33px);
  color: #333;
}
html[lang=en] .feature-2-list {
  margin-top: 4vh;
  grid-template-columns: none;
  grid-template-rows: repeat(3, 1fr);
}
html[lang=en] .feature-2-list p {
  padding-left: 4vw;
}
.feature-2-tips__img {
  width: 27vw;
  height: 27vw;
  margin: 10vh auto 6vh;
}
.feature-2-tips > p {
  font-size: clamp(1vw, 2vw, 28px);
  color: #333;
  width: 60%;
  margin: 0 auto 2vh;
  text-align: center;
}
.feature-2-tips > h4 {
  color: var(--accent-color);
  font-size: clamp(2vw, 3.3vw, 52px);
  font-weight: bolder;
  text-align: center;
}
.feature-2-tips > h4 span {
  color: var(--accent-theme-color);
  padding: 0 1vw;
}
.feature-2-tips__grid {
  padding: 0 3vw;
  display: grid;
  grid-template-columns: repeat(2, 50%);
  gap: 3vw;
  margin-top: 7vh;
}
.feature-2-tips__grid li {
  border-radius: 2vw;
  background: var(--white);
  padding: 3vw;
  font-weight: bolder;
}
.feature-2-tips__grid li h2 {
  color: var(--accent-theme-color);
  font-size: clamp(8vw, 10vw, 206px);
  word-break: break-word;
  line-height: 1;
}
html[lang=en] .feature-2-tips__grid li h2 {
  font-size: 6vw;
  margin-bottom: 2vh;
}
.feature-2-tips__grid li p {
  font-size: clamp(1.6vw, 2vw, 33px);
}
.feature-2-tips__grid li p span {
  color: var(--accent-theme-color);
  font-size: clamp(3.5vw, 4vw, 54px);
  padding: 0 1vw;
}
html[lang=en] .feature-2-tips > p {
  width: 100%;
  font-size: 2.8vw;
}
.feature-3-1 {
  position: relative;
}
.feature-3-1-title {
  padding-top: 10vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: max-content;
  position: absolute;
  top: 0;
  left: 50%;
  transform: skewX(-15deg) translateX(-50%);
}
.feature-3-1-title > span {
  font-weight: bolder;
  color: var(--accent-theme-color);
  font-size: clamp(5vw, 7vw, 132px);
  padding-right: 1vw;
}
.feature-3-1-title > div {
  color: var(--white);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
}
.feature-3-1-title > div i {
  font-size: clamp(2vw, 4vw, 61px);
}
.feature-3-1-title > div span {
  font-size: clamp(1.2vw, 2vw, 28px);
}
html[lang=en] .feature-3-1-title {
  width: 70%;
}
html[lang=en] .feature-3-1-title > div i, html[lang=en] .feature-3-1-title > div span {
  word-break: break-all;
}
html[lang=en] .feature-3-1-title > div i {
  line-height: 1;
}
.feature-3-1-g {
  font-size: clamp(3.5vw, 3.5vw, 50px);
  color: var(--white);
  font-weight: bold;
  position: absolute;
  left: 70%;
  top: 65%;
}
html[lang=en] .feature-3-1-g {
  font-size: clamp(2vw, 2.8vw, 50px);
  left: 59.5%;
}
.feature-3-1-grid {
  position: absolute;
  top: 57%;
  left: 10%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 22vw);
  grid-template-rows: repeat(2, 22vw);
  gap: 2vw;
}
.feature-3-1-grid li {
  padding: 1.8vw;
  border: 3px solid rgba(0, 60, 255, 0.3);
  background: rgba(9, 22, 54, 0.3);
  color: var(--white);
  border-radius: 2vw;
  position: relative;
}
.feature-3-1-grid li h3 {
  font-size: clamp(2.8vw, 3vw, 50px);
}
.feature-3-1-grid li p {
  font-size: clamp(1.6vw, 1.8vw, 33px);
}
.feature-3-1-grid li i {
  position: absolute;
  right: 1vw;
  bottom: 2vh;
}
.feature-3-1-grid li:nth-child(3), .feature-3-1-grid li:nth-child(4) {
  opacity: 0;
  visibility: hidden;
}
html[lang=en] .feature-3-1-grid {
  left: 6%;
}
html[lang=en] .feature-3-1-grid h3 {
  word-break: break-all;
  font-size: clamp(2vw, 2.6vw, 50px);
}
html[lang=en] .feature-3-1-grid p {
  font-size: clamp(0.8vw, 1.5vw, 33px);
}
html[lang=en] .feature-3-1-grid i {
  bottom: 0.6vh;
}
@media screen and (max-width: 1500px) {
  html[lang=en] .feature-3-1-grid {
    grid-template-columns: repeat(3, 25vw);
    grid-template-rows: repeat(2, 25vw);
    left: 4%;
    right: 4%;
  }
}
.feature-3-2 {
  position: relative;
}
.feature-3-2-title {
  padding: 5vw 5vw 8vw;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--white);
  font-size: clamp(1.6vw, 2vw, 28px);
}
.feature-3-2-title h3 {
  font-size: clamp(3.6vw, 4vw, 61px);
}
.feature-3-3 {
  color: var(--white);
  position: relative;
}
.feature-3-3-triangle {
  width: 50%;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
}
.feature-3-3-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  color: var(--accent-color);
  position: absolute;
  left: 10vw;
  bottom: 25%;
  width: 80vw;
  text-align: center;
  font-size: clamp(2vw, 2.5vw, 61px);
  font-weight: 600;
  padding: 1vw 0;
  border-radius: 5vw;
  gap: 1vw;
}
.feature-3-3-grid li {
  white-space: nowrap;
}
@media screen and (max-width: 650px) {
  html[lang=en] .feature-3-3-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
.feature-3-3 > p {
  font-size: clamp(2vw, 2.5vw, 61px);
  text-align: center;
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
}

/*# sourceMappingURL=services.css.map */
