: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, .home, 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, .home .process-1 .title span, .home .process-2 .title span, .home .process-3 .title span, .home .process-4 .title span, .home .grid-2-item > p 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;
}

.home {
  background: #EAEEF3;
}
.home .swiper {
  width: 100%;
  position: relative;
}
.home .swiper img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/6;
  display: block;
}
.home .swiper .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
.home .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 40px;
  border-radius: 8px;
}
.home .grid {
  --grid-padding: 20vh 10vw;
  --grid-1-title-font-size: 81px;
  --grid-1-text-font-size: 23px;
  --grid-1-text-width: 25vw;
  --grid-2-title-num-font-size: 132px;
  --grid-2-title-num-padding: 30px;
  --grid-2-title-font-size: 42px;
  --grid-2-text-font-size: 32px;
  padding: var(--grid-padding);
}
.home .grid-1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}
.home .grid-1-left {
  flex: 1;
  padding-right: 5vw;
  font-size: var(--grid-1-title-font-size);
  font-weight: bold;
  line-height: 1.3;
}
.home .grid-1-right {
  width: var(--grid-1-text-width);
  font-size: var(--grid-1-text-font-size);
  line-height: 1.6;
  font-style: normal;
  font-weight: normal;
}
.home .grid-1-right > p:first-child {
  margin-bottom: 30px;
}
html[lang=en] .home .grid-1-right:after {
  content: "";
  display: inline-block;
  width: 100%;
}
.home .grid-2 {
  margin-top: 10vh;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 28px;
}
.home .grid-2-item {
  padding: 4vh 2vw;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: 0.3s linear;
  cursor: pointer;
  position: relative;
}
.home .grid-2-item > .img {
  width: 22vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 8vh auto;
  opacity: 1;
  visibility: visible;
  transition: 0.3s linear;
}
.home .grid-2-item > span {
  font-size: var(--grid-2-text-font-size);
  color: var(--text-color);
  opacity: 1;
  visibility: visible;
  transition: 0.3s linear;
  position: absolute;
  padding-top: 2vh;
  top: 0;
}
.home .grid-2-item > p {
  color: var(--black);
  font-size: var(--grid-2-title-font-size);
  transition: 0.3s linear;
}
.home .grid-2-item > p span {
  font-size: var(--grid-2-title-num-font-size);
  font-weight: bold;
  margin-right: var(--grid-2-title-num-padding);
}
.home .grid-2-item:nth-child(1):hover {
  background: url("../image/home/grid-1-hover.jpg") center center no-repeat;
  background-size: cover;
}
.home .grid-2-item:nth-child(1):hover > .img,
.home .grid-2-item:nth-child(1):hover > span {
  opacity: 0;
  visibility: hidden;
}
.home .grid-2-item:nth-child(2):hover {
  background: url("../image/home/grid-2-hover.jpg") center center no-repeat;
  background-size: cover;
}
.home .grid-2-item:nth-child(2):hover > .img,
.home .grid-2-item:nth-child(2):hover > span {
  opacity: 0;
  visibility: hidden;
}
.home .grid-2-item:nth-child(3):hover {
  background: url("../image/home/grid-3-hover.jpg") center center no-repeat;
  background-size: cover;
}
.home .grid-2-item:nth-child(3):hover > .img,
.home .grid-2-item:nth-child(3):hover > span {
  opacity: 0;
  visibility: hidden;
}
.home .grid-2-item:nth-child(4):hover {
  background: url("../image/home/grid-4-hover.jpg") center center no-repeat;
  background-size: cover;
}
.home .grid-2-item:nth-child(4):hover > .img,
.home .grid-2-item:nth-child(4):hover > span {
  opacity: 0;
  visibility: hidden;
}
.home .grid-2-item:nth-child(even):hover p {
  color: var(--white);
}
.home .grid-3 {
  font-size: 35px;
  font-weight: bold;
}
.home .process {
  --title-font-size: 78px;
  --title-num-font-size: 65px;
  --text-font-size: 30px;
  padding-bottom: 20vh;
}
.home .process-1, .home .process-2, .home .process-3, .home .process-4 {
  margin-top: 20vh;
}
.home .process-1 .title, .home .process-2 .title, .home .process-3 .title, .home .process-4 .title {
  font-size: var(--title-font-size);
  font-weight: bold;
  position: absolute;
  line-height: 1.15;
}
.home .process-1 .title span, .home .process-2 .title span, .home .process-3 .title span, .home .process-4 .title span {
  font-size: var(--title-num-font-size);
  color: var(--theme-color);
  position: absolute;
  top: -34px;
  left: -95px;
}
.home .process-1 .text, .home .process-2 .text, .home .process-3 .text, .home .process-4 .text {
  font-size: var(--text-font-size);
}
.home .process-1:after, .home .process-2:after, .home .process-3:after, .home .process-4:after {
  content: "";
  height: 0;
  border-bottom: 3px solid var(--black);
  display: block;
  position: absolute;
  top: 50%;
}
.home .process-1 {
  width: 100%;
  height: max-content;
  padding-right: 10vw;
  position: relative;
}
.home .process-1 .wrap {
  display: grid;
  grid-template-columns: 470px 1fr;
}
.home .process-1 .wrap .img {
  position: relative;
  z-index: 1;
}
.home .process-1 .wrap .text {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 42vw;
  padding-left: 4vw;
}
html[lang=en] .home .process-1 .wrap .text {
  width: 100%;
}
.home .process-1 .title {
  width: 23vw;
  position: absolute;
  right: 10vw;
  top: -3vh;
}
html[lang=en] .home .process-1 .title {
  width: 40vw;
  transform: translateY(-9vh);
}
.home .process-1:after {
  width: 90vw;
}
.home .process-2 {
  width: 100%;
  height: max-content;
  padding: 0 10vw;
  position: relative;
}
.home .process-2 .wrap {
  display: grid;
  grid-template-columns: 1fr 385px;
  padding-right: 5vw;
}
.home .process-2 .wrap .img {
  position: relative;
  z-index: 1;
}
.home .process-2 .wrap .text {
  padding: 0 7vw 0 5vw;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: row;
  flex-wrap: nowrap;
}
html[lang=en] .home .process-2 .wrap .text {
  transform: translateY(4vh);
}
.home .process-2 .title {
  position: absolute;
  top: 0;
  left: 15vw;
}
html[lang=en] .home .process-2 .title {
  transform: translateY(-7vh);
}
.home .process-2:after {
  width: 80%;
  left: 10%;
}
.home .process-3 {
  width: 100%;
  padding: 0 10vw;
  position: relative;
  margin-top: 30vh;
}
.home .process-3 .wrap {
  display: grid;
  grid-template-columns: 299px 1fr;
  padding-left: 5vw;
}
.home .process-3 .wrap .img {
  position: relative;
  z-index: 1;
}
.home .process-3 .wrap .text {
  padding-left: 5vw;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: row;
  flex-wrap: nowrap;
}
html[lang=en] .home .process-3 .wrap .text {
  transform: translateY(7vh);
}
.home .process-3 .title {
  position: absolute;
  top: -10vh;
  right: 15vw;
}
html[lang=en] .home .process-3 .title {
  transform: translateY(-9vh);
}
.home .process-3:after {
  width: 80%;
  left: 10%;
}
.home .process-4 {
  width: 100%;
  margin-top: 20vh;
  padding-left: 10vw;
  position: relative;
}
.home .process-4 .wrap {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-direction: row;
  flex-wrap: nowrap;
}
.home .process-4 .wrap .img {
  width: 471px;
  height: 323px;
  position: relative;
  z-index: 1;
}
.home .process-4 .wrap .text {
  flex: 1;
  padding-left: 5vw;
  padding-right: 5vw;
}
html[lang=en] .home .process-4 .wrap .text {
  transform: translateY(10vh);
}
.home .process-4 .title {
  position: absolute;
  top: 50%;
  left: 15vw;
  transform: translateY(calc(-100% - 2vh));
}
.home .process-4:after {
  width: 80%;
  left: 10%;
}
@media screen and (max-width: 1861px) {
  .home .process {
    --title-font-size: 68px;
    --title-num-font-size: 55px;
    --text-font-size: 24px;
  }
}
@media screen and (max-width: 1536px) {
  .home .grid {
    --grid-padding: 10vh 5vw;
    --grid-1-title-font-size: 50px;
    --grid-1-text-width: 40vw;
  }
  .home .process {
    --title-font-size: 38px;
    --title-num-font-size: 38px;
    --text-font-size: 24px;
    padding: 5vh 5vw;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2vh;
  }
  .home .process-1, .home .process-2, .home .process-3, .home .process-4 {
    padding: 5vh 3vw;
    margin-top: 0;
    background: var(--white);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .home .process-1:after, .home .process-2:after, .home .process-3:after, .home .process-4:after {
    display: none;
  }
  .home .process-1 .title, .home .process-2 .title, .home .process-3 .title, .home .process-4 .title {
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    transform: translateY(0);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .home .process-1 .title br, .home .process-2 .title br, .home .process-3 .title br, .home .process-4 .title br {
    display: none;
  }
  .home .process-1 .title span, .home .process-2 .title span, .home .process-3 .title span, .home .process-4 .title span {
    position: relative;
    left: 0;
    top: 0;
    padding-right: 1vw;
  }
  html[lang=en] .home .process-1 .title, html[lang=en] .home .process-2 .title, html[lang=en] .home .process-3 .title, html[lang=en] .home .process-4 .title {
    width: 100%;
    transform: translateY(0);
  }
  .home .process-1 .wrap, .home .process-2 .wrap, .home .process-3 .wrap, .home .process-4 .wrap {
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .home .process-1 .wrap .img, .home .process-2 .wrap .img, .home .process-3 .wrap .img, .home .process-4 .wrap .img {
    padding-bottom: 0;
    margin: 4vh 0;
  }
  .home .process-1 .wrap .img, .home .process-1 .wrap .img img, .home .process-2 .wrap .img, .home .process-2 .wrap .img img, .home .process-3 .wrap .img, .home .process-3 .wrap .img img, .home .process-4 .wrap .img, .home .process-4 .wrap .img img {
    width: 100%;
    height: auto;
    display: block;
  }
  .home .process-1 .wrap .text, .home .process-2 .wrap .text, .home .process-3 .wrap .text, .home .process-4 .wrap .text {
    width: 100%;
    padding: 0;
    margin: 0;
    transform: translateY(0);
  }
  html[lang=en] .home .process-1 .wrap .text, html[lang=en] .home .process-2 .wrap .text, html[lang=en] .home .process-3 .wrap .text, html[lang=en] .home .process-4 .wrap .text {
    width: 100%;
    transform: translateY(0);
  }
  .home .process-1:nth-child(even) .wrap, .home .process-2:nth-child(even) .wrap, .home .process-3:nth-child(even) .wrap, .home .process-4:nth-child(even) .wrap {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 950px) {
  .home .grid {
    --grid-padding: 5vh 5vw;
    --grid-1-title-font-size: 50px;
    --grid-1-text-width: 40vw;
  }
  .home .grid-1 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .home .grid-1-left, .home .grid-1-right {
    width: 100%;
  }
  .home .grid-1-left {
    margin-bottom: 2vh;
  }
  .home .grid-1-right p:first-child {
    margin-bottom: 1vh;
  }
  .home .grid-2 {
    --grid-2-title-num-font-size: 60px;
    --grid-2-title-font-size: 36px;
    --grid-2-text-font-size: 26px;
    margin-top: 5vh;
    display: grid;
    grid-template-columns: none;
  }
  .home .grid-3 {
    font-size: 28px;
  }
  .home .process {
    --title-font-size: 38px;
    --title-num-font-size: 38px;
    --text-font-size: 24px;
    padding: 5vh 5vw;
    display: grid;
    grid-template-columns: none;
  }
}
@media screen and (max-width: 640px) {
  .home .grid {
    --grid-1-title-font-size: 36px;
    --grid-1-text-font-size: 16px;
  }
  .home .grid-2 {
    --grid-2-title-num-font-size: 30px;
    --grid-2-title-font-size: 20px;
    --grid-2-text-font-size: 18px;
    --grid-2-title-num-padding: 10px;
  }
  .home .grid-3 {
    font-size: 16px;
  }
  .home .process {
    --title-font-size: 24px;
    --title-num-font-size: 24px;
    --text-font-size: 16px;
  }
}

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