/* ---------------service-section START--------------- */
.service-section {
  overflow: hidden;
}
.service-section .service-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-section .service-wrap.img-left .img-box {
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.service-section .service-wrap.img-left .text-box {
  padding-left: 50px;
  padding-right: calc((100vw - 1600px) / 2);
}
.service-section .service-wrap.img-left .text-box .sub-title {
  transform: translateX(70px);
}
.service-section .service-wrap.img-left .text-box .desc {
  transform: translateX(70px);
}
.service-section .service-wrap.img-right .img-box {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.service-section .service-wrap.img-right .text-box {
  padding-left: calc((100vw - 1600px) / 2);
  padding-right: 50px;
}
.service-section .service-wrap.img-right .text-box .sub-title {
  transform: translateX(-70px);
}
.service-section .service-wrap.img-right .text-box .desc {
  transform: translateX(-70px);
}
.service-section .service-wrap .img-box {
  width: calc(50% - 50px);
  height: 550px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.5s, -webkit-clip-path 1.5s;
  transition: opacity 1.5s, clip-path 1.5s;
  transition: opacity 1.5s, clip-path 1.5s, -webkit-clip-path 1.5s;
}
.service-section .service-wrap .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
  transition: transform 0.3s;
  transition-timing-function: linear;
}
.service-section .service-wrap .text-box {
  width: 50%;
  box-sizing: border-box;
}
.service-section .service-wrap .text-box .sub-title {
  opacity: 0;
  transition: opacity 1.5s, transform 1.5s;
  transition-delay: 0.2s;
}
.service-section .service-wrap .text-box .desc {
  line-height: 150%;
  margin-top: 60px;
  opacity: 0;
  transition: opacity 1.5s, transform 1.5s;
  transition-delay: 0.4s;
}
.service-section .service-wrap .text-box .btn-download {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 45px;
  box-sizing: border-box;
  padding: 0 27px;
  border: 1px solid #1d2088;
  overflow: hidden;
  margin-top: 30px;
  opacity: 0;
  transition: opacity 1.5s;
}
.service-section .service-wrap .text-box .btn-download:nth-of-type(1) {
  transition-delay: 1s;
}
.service-section .service-wrap .text-box .btn-download:nth-of-type(2) {
  transition-delay: 1.2s;
}
.service-section .service-wrap .text-box .btn-download:not(:nth-of-type(1)) {
  margin-left: 15px;
}
.service-section .service-wrap .text-box .btn-download::before {
  content: "";
  position: absolute;
  left: -125%;
  top: 0;
  display: block;
  width: 110%;
  height: 100%;
  background-color: #1d2088;
  transform: skew(20deg) scaleX(1.1);
  transition: left 0.5s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.service-section .service-wrap .text-box .btn-download .text {
  position: relative;
  transition: color 0.5s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.service-section .service-wrap .text-box .btn-download .text i {
  font-size: 0.9em;
}
.service-section .service-wrap.active .img-box {
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.service-section .service-wrap.active .text-box .sub-title {
  opacity: 1;
  transform: translateX(0);
}
.service-section .service-wrap.active .text-box .desc {
  opacity: 1;
  transform: translateX(0);
}
.service-section .service-wrap.active .text-box .btn-download {
  opacity: 1;
}
.service-section .process-wrap {
  border-radius: 0 150px 0 150px;
}
.service-section .process-wrap .process-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.service-section .process-wrap .process-list li {
  width: 33.3333333333%;
  box-sizing: border-box;
  padding-right: 50px;
  opacity: 0;
  transition: opacity 1.5s;
}
.service-section .process-wrap .process-list li:nth-of-type(2) {
  transition-delay: 0.2s;
}
.service-section .process-wrap .process-list li:nth-of-type(3) {
  transition-delay: 0.4s;
}
.service-section .process-wrap .process-list li:nth-of-type(4) {
  transition-delay: 0.6s;
}
.service-section .process-wrap .process-list li:nth-of-type(5) {
  transition-delay: 0.8s;
}
.service-section .process-wrap .process-list li:nth-of-type(6) {
  transition-delay: 1s;
}
.service-section .process-wrap .process-list li:nth-of-type(3n+3) {
  padding-right: unset;
}
.service-section .process-wrap .process-list li:nth-of-type(1), .service-section .process-wrap .process-list li:nth-of-type(2), .service-section .process-wrap .process-list li:nth-of-type(3) {
  padding-bottom: 50px;
}
.service-section .process-wrap .process-list li:nth-of-type(4), .service-section .process-wrap .process-list li:nth-of-type(5), .service-section .process-wrap .process-list li:nth-of-type(6) {
  padding-top: 50px;
}
.service-section .process-wrap .process-list li .tit, .service-section .process-wrap .process-list li .desc {
  line-height: 150%;
}
.service-section .process-wrap .process-list li .desc {
  margin-top: 20px;
}
.service-section .process-wrap.active .process-list li {
  opacity: 1;
}

/* ---------------service-section END--------------- */
/* 

*/
/* ---------------media query START--------------- */
@media screen and (min-width: 991.1px) {
  /* ---------------service-section START--------------- */
  .service-section .service-wrap .text-box .btn-download:hover::before {
    left: 0;
  }
  /* ---------------service-section END--------------- */
}
@media screen and (max-width: 1760px) {
  /* ---------------service-section START--------------- */
  .service-section .service-wrap.img-left .text-box {
    padding-right: 5vw;
  }
  .service-section .service-wrap.img-right .text-box {
    padding-left: 5vw;
  }
  /* ---------------service-section END--------------- */
}
@media screen and (max-width: 1600px) {
  /* ---------------service-section START--------------- */
  .service-section .service-wrap.img-left .text-box {
    padding-left: 40px;
  }
  .service-section .service-wrap.img-right .text-box {
    padding-right: 40px;
  }
  .service-section .service-wrap .img-box {
    width: calc(50% - 40px);
    height: 525px;
  }
  .service-section .service-wrap .text-box .desc {
    margin-top: 55px;
  }
  .service-section .service-wrap .text-box .btn-download {
    height: 43px;
    padding: 0 23px;
    margin-top: 27px;
  }
  .service-section .service-wrap .text-box .btn-download:not(:nth-of-type(1)) {
    margin-left: 14px;
  }
  .service-section .process-wrap {
    border-radius: 0 140px 0 140px;
  }
  .service-section .process-wrap .process-list li {
    padding-right: 45px;
  }
  .service-section .process-wrap .process-list li:nth-of-type(1), .service-section .process-wrap .process-list li:nth-of-type(2), .service-section .process-wrap .process-list li:nth-of-type(3) {
    padding-bottom: 45px;
  }
  .service-section .process-wrap .process-list li:nth-of-type(4), .service-section .process-wrap .process-list li:nth-of-type(5), .service-section .process-wrap .process-list li:nth-of-type(6) {
    padding-top: 45px;
  }
  .service-section .process-wrap .process-list li .desc {
    margin-top: 19px;
  }
  /* ---------------service-section END--------------- */
}
@media screen and (max-width: 1350px) {
  /* ---------------service-section START--------------- */
  .service-section .service-wrap.img-left .text-box {
    padding-left: 30px;
  }
  .service-section .service-wrap.img-right .text-box {
    padding-right: 30px;
  }
  .service-section .service-wrap .img-box {
    width: calc(50% - 30px);
    height: 500px;
  }
  .service-section .service-wrap .text-box .desc {
    margin-top: 50px;
  }
  .service-section .service-wrap .text-box .btn-download {
    height: 40px;
    padding: 0 20px;
    margin-top: 25px;
  }
  .service-section .service-wrap .text-box .btn-download:not(:nth-of-type(1)) {
    margin-left: 13px;
  }
  .service-section .process-wrap {
    border-radius: 0 120px 0 120px;
  }
  .service-section .process-wrap .process-list li {
    padding-right: 40px;
  }
  .service-section .process-wrap .process-list li:nth-of-type(1), .service-section .process-wrap .process-list li:nth-of-type(2), .service-section .process-wrap .process-list li:nth-of-type(3) {
    padding-bottom: 40px;
  }
  .service-section .process-wrap .process-list li:nth-of-type(4), .service-section .process-wrap .process-list li:nth-of-type(5), .service-section .process-wrap .process-list li:nth-of-type(6) {
    padding-top: 40px;
  }
  .service-section .process-wrap .process-list li .desc {
    margin-top: 18px;
  }
  /* ---------------service-section END--------------- */
}
@media screen and (max-width: 1150px) {
  /* ---------------service-section START--------------- */
  .service-section .service-wrap.img-left .text-box {
    padding-left: 20px;
  }
  .service-section .service-wrap.img-right .text-box {
    padding-right: 20px;
  }
  .service-section .service-wrap .img-box {
    width: calc(50% - 20px);
    height: 450px;
  }
  .service-section .service-wrap .text-box .desc {
    margin-top: 45px;
  }
  .service-section .service-wrap .text-box .btn-download {
    height: 37px;
    padding: 0 17px;
    margin-top: 23px;
  }
  .service-section .service-wrap .text-box .btn-download:not(:nth-of-type(1)) {
    margin-left: 12px;
  }
  .service-section .process-wrap {
    border-radius: 0 100px 0 100px;
  }
  .service-section .process-wrap .process-list li {
    padding-right: 35px;
  }
  .service-section .process-wrap .process-list li:nth-of-type(1), .service-section .process-wrap .process-list li:nth-of-type(2), .service-section .process-wrap .process-list li:nth-of-type(3) {
    padding-bottom: 35px;
  }
  .service-section .process-wrap .process-list li:nth-of-type(4), .service-section .process-wrap .process-list li:nth-of-type(5), .service-section .process-wrap .process-list li:nth-of-type(6) {
    padding-top: 35px;
  }
  .service-section .process-wrap .process-list li .desc {
    margin-top: 17px;
  }
  /* ---------------service-section END--------------- */
}
@media screen and (max-width: 991px) {
  /* ---------------service-section START--------------- */
  .service-section .service-wrap.img-left .text-box {
    padding-left: 15px;
  }
  .service-section .service-wrap.img-right .text-box {
    padding-right: 15px;
  }
  .service-section .service-wrap .img-box {
    width: calc(50% - 15px);
    height: 400px;
  }
  .service-section .service-wrap .text-box .desc {
    margin-top: 40px;
  }
  .service-section .service-wrap .text-box .btn-download {
    color: #FFF !important;
    background-color: #1d2088;
  }
  .service-section .service-wrap .text-box .btn-download::before {
    display: none;
  }
  .service-section .process-wrap {
    border-radius: 0 90px 0 90px;
  }
  .service-section .process-wrap .process-list li {
    width: 50%;
    padding-right: 30px;
  }
  .service-section .process-wrap .process-list li:nth-of-type(3n+3) {
    padding-right: 30px;
  }
  .service-section .process-wrap .process-list li:nth-of-type(2n+2) {
    padding-right: unset;
  }
  .service-section .process-wrap .process-list li:nth-of-type(1), .service-section .process-wrap .process-list li:nth-of-type(2), .service-section .process-wrap .process-list li:nth-of-type(3) {
    padding-bottom: unset;
  }
  .service-section .process-wrap .process-list li:nth-of-type(4), .service-section .process-wrap .process-list li:nth-of-type(5), .service-section .process-wrap .process-list li:nth-of-type(6) {
    padding-top: unset;
  }
  .service-section .process-wrap .process-list li:nth-of-type(1), .service-section .process-wrap .process-list li:nth-of-type(2), .service-section .process-wrap .process-list li:nth-of-type(3), .service-section .process-wrap .process-list li:nth-of-type(4) {
    padding-bottom: 30px;
  }
  .service-section .process-wrap .process-list li:nth-of-type(3), .service-section .process-wrap .process-list li:nth-of-type(4), .service-section .process-wrap .process-list li:nth-of-type(5), .service-section .process-wrap .process-list li:nth-of-type(6) {
    padding-top: 30px;
  }
  .service-section .process-wrap .process-list li .desc {
    margin-top: 16px;
  }
  /* ---------------service-section END--------------- */
}
@media screen and (max-width: 850px) {
  /* ---------------service-section START--------------- */
  .service-section .service-wrap {
    width: 90%;
    justify-content: unset;
    margin: 0 auto;
  }
  .service-section .service-wrap.img-left {
    flex-direction: column;
  }
  .service-section .service-wrap.img-left .text-box {
    padding-left: unset;
    padding-right: unset;
  }
  .service-section .service-wrap.img-right {
    flex-direction: column-reverse;
  }
  .service-section .service-wrap.img-right .text-box {
    padding-left: unset;
    padding-right: unset;
  }
  .service-section .service-wrap .img-box {
    width: 100%;
    height: 50vw;
  }
  .service-section .service-wrap .text-box {
    margin-top: 45px;
    width: 100%;
  }
  .service-section .service-wrap .text-box .desc {
    margin-top: 35px;
  }
  .service-section .service-wrap .text-box .btn-download {
    height: 35px;
    padding: 0 15px;
    margin-top: 21px;
  }
  .service-section .service-wrap .text-box .btn-download:not(:nth-of-type(1)) {
    margin-left: 11px;
  }
  .service-section .process-wrap .process-list li {
    padding-right: 25px;
  }
  .service-section .process-wrap .process-list li:nth-of-type(3n+3) {
    padding-right: 25px;
  }
  .service-section .process-wrap .process-list li:nth-of-type(1), .service-section .process-wrap .process-list li:nth-of-type(2), .service-section .process-wrap .process-list li:nth-of-type(3), .service-section .process-wrap .process-list li:nth-of-type(4) {
    padding-bottom: 25px;
  }
  .service-section .process-wrap .process-list li:nth-of-type(3), .service-section .process-wrap .process-list li:nth-of-type(4), .service-section .process-wrap .process-list li:nth-of-type(5), .service-section .process-wrap .process-list li:nth-of-type(6) {
    padding-top: 25px;
  }
  /* ---------------service-section END--------------- */
}
@media screen and (max-width: 600px) {
  /* ---------------service-section START--------------- */
  .service-section .service-wrap .text-box {
    margin-top: 40px;
  }
  .service-section .service-wrap .text-box .desc {
    margin-top: 30px;
  }
  .service-section .service-wrap .text-box .btn-download {
    height: 33px;
    padding: 0 13px;
    margin-top: 18px;
  }
  .service-section .service-wrap .text-box .btn-download:not(:nth-of-type(1)) {
    margin-left: 10px;
  }
  .service-section .process-wrap {
    border-radius: 0 80px 0 80px;
  }
  .service-section .process-wrap .process-list li {
    padding-right: 20px;
  }
  .service-section .process-wrap .process-list li:nth-of-type(3n+3) {
    padding-right: 20px;
  }
  .service-section .process-wrap .process-list li:nth-of-type(1), .service-section .process-wrap .process-list li:nth-of-type(2), .service-section .process-wrap .process-list li:nth-of-type(3), .service-section .process-wrap .process-list li:nth-of-type(4) {
    padding-bottom: 20px;
  }
  .service-section .process-wrap .process-list li:nth-of-type(3), .service-section .process-wrap .process-list li:nth-of-type(4), .service-section .process-wrap .process-list li:nth-of-type(5), .service-section .process-wrap .process-list li:nth-of-type(6) {
    padding-top: 20px;
  }
  .service-section .process-wrap .process-list li .desc {
    margin-top: 15px;
  }
  .service-section .process-wrap .process-list li br {
    display: none;
  }
  /* ---------------service-section END--------------- */
}
@media screen and (max-width: 450px) {
  /* ---------------service-section START--------------- */
  .service-section .service-wrap .text-box {
    margin-top: 35px;
  }
  .service-section .service-wrap .text-box .desc {
    margin-top: 25px;
  }
  .service-section .service-wrap .text-box .btn-download {
    height: 30px;
    padding: 0 11px;
    margin-top: 16px;
  }
  .service-section .service-wrap .text-box .btn-download:not(:nth-of-type(1)) {
    margin-left: 9px;
  }
  .service-section .process-wrap {
    border-radius: 0 70px 0 70px;
  }
  .service-section .process-wrap .process-list li {
    padding-right: 15px;
  }
  .service-section .process-wrap .process-list li:nth-of-type(3n+3) {
    padding-right: 15px;
  }
  .service-section .process-wrap .process-list li:nth-of-type(1), .service-section .process-wrap .process-list li:nth-of-type(2), .service-section .process-wrap .process-list li:nth-of-type(3), .service-section .process-wrap .process-list li:nth-of-type(4) {
    padding-bottom: 15px;
  }
  .service-section .process-wrap .process-list li:nth-of-type(3), .service-section .process-wrap .process-list li:nth-of-type(4), .service-section .process-wrap .process-list li:nth-of-type(5), .service-section .process-wrap .process-list li:nth-of-type(6) {
    padding-top: 15px;
  }
  .service-section .process-wrap .process-list li .desc {
    margin-top: 13px;
  }
  /* ---------------service-section END--------------- */
}
@media screen and (max-width: 350px) {
  /* ---------------service-section START--------------- */
  .service-section .service-wrap .text-box {
    margin-top: 30px;
  }
  .service-section .service-wrap .text-box .desc {
    margin-top: 20px;
  }
  .service-section .service-wrap .text-box .btn-download {
    padding: 0 10px;
    margin-top: 15px;
  }
  .service-section .service-wrap .text-box .btn-download:not(:nth-of-type(1)) {
    margin-left: 7px;
  }
  .service-section .process-wrap {
    border-radius: 0 60px 0 60px;
  }
  .service-section .process-wrap .process-list li {
    width: 100%;
    padding-right: unset;
  }
  .service-section .process-wrap .process-list li:nth-of-type(3n+3) {
    padding-right: unset;
  }
  .service-section .process-wrap .process-list li:nth-of-type(1), .service-section .process-wrap .process-list li:nth-of-type(2), .service-section .process-wrap .process-list li:nth-of-type(3), .service-section .process-wrap .process-list li:nth-of-type(4) {
    padding-bottom: unset;
  }
  .service-section .process-wrap .process-list li:nth-of-type(3), .service-section .process-wrap .process-list li:nth-of-type(4), .service-section .process-wrap .process-list li:nth-of-type(5), .service-section .process-wrap .process-list li:nth-of-type(6) {
    padding-top: unset;
  }
  .service-section .process-wrap .process-list li:not(:nth-of-type(1)) {
    margin-top: 25px;
  }
  .service-section .process-wrap .process-list li .desc {
    margin-top: 10px;
  }
  /* ---------------service-section END--------------- */
}
/* ---------------media query END--------------- */