/* services title styles */
.client .section1,
.process .section1,
.support .section1 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.client .section1 .title,
.process .section1 .title,
.support .section1 .title {
  display: flex;
  justify-content: center;
}

.client .section1 .title p {
  color: rgba(0, 55, 113, 1);
  font-family: Inter;
  font-weight: 700;
  font-size: 35px;
  line-height: 48px;
}
.process .section1 .title p,
.support .section1 .title p {
  color: rgba(28, 57, 142, 1);
  font-family: Inter;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
}
.client .section1 .line,
.process .section1 .line,
.support .section1 .line {
  display: flex;
  padding: 2px 48px;
  border-radius: 18641400px;
  background: rgba(255, 105, 0, 1);
  margin: 7px 0 21px;
}

.client .section1 .desc,
.process .section1 .desc,
.support .section1 .desc {
  display: flex;
  justify-content: center;
  width: 100%;
}

.client .section1 .desc p,
.process .section1 .desc p,
.support .section1 .desc p {
  display: flex;
  justify-content: center;
  color: rgba(144, 161, 185, 1);
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

/* client styles */
.client {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 78px 0 90px;
  background: #ffffff;
}

.client .inner {
  display: flex;
  flex-wrap: wrap;
}

.client .section1 {
  margin-bottom: 48px;
}

.client .section2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: url("../img/services/client-back.png");
  background-size: cover;
  box-shadow: 0 18px 34px rgba(4, 19, 35, 0.28);
}

.client .section2 > img {
  display: block;
  width: 120%;
  position: absolute;
  left: -10%;
  right: 0;
  top: -10%;
  bottom: 0;
  z-index: 0;
  object-fit: cover;
}

.client .swiper1 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.client .swiper1 > .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

.client .swiper1 > .swiper-wrapper > .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding: 46px 52px 0;
}

.client .swiper1 .content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 46%;
  gap: 36px;
}

.client .swiper1 .content .text {
  display: flex;
  width: 100%;
  gap: 10px;
}

.client .swiper1 .content .text .dot {
  display: flex;
  width: 4px;
  max-width: 4px;
  min-width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  top: 18px;
}

.client .swiper1 .content .text p {
  display: flex;
  color: rgba(255, 255, 255, 1);
  font-family: "Noto Sans SC";
  font-weight: 400;
  font-size: 18px;
  line-height: 39px;
}

.client .swiper1 .img {
  display: flex;
  width: 48%;
  overflow: hidden;
  border-radius: 8px;
}

.client .swiper1 .img img {
  display: block;
  width: 100%;
  aspect-ratio: 548 / 292;
  object-fit: cover;
}

.client .section2 > .line {
  display: flex;
  width: 100%;
  padding: 1px 0 0;
  background: rgba(245, 154, 20, 0.72);
  margin: 38px 48px 0;
  position: relative;
  z-index: 2;
}

.client .swiper2 {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.client .swiper2 .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

.client .swiper2 .swiper-slide {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 27px 0 34px;
  cursor: pointer;
  color: #ffffff;
  transition: color 0.5s ease;
}

.client .swiper2 .swiper-slide .dot {
  display: flex;
  margin-right: 14px;
  transition: background 0.5s ease;
  width: 16px;
  max-width: 16px;
  min-width: 16px;
  height: 16px;
  border-radius: 22px;
  background: rgba(197, 197, 197, 1);
}

.client .swiper2 .swiper-slide p {
  display: flex;
  color: rgba(197, 197, 197, 1);
  font-family: "Noto Sans SC";
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

.client .swiper2 .swiper-slide-thumb-active,
.client .swiper2 .swiper-slide:hover {
  color: rgba(251, 144, 59, 1);
}

.client .swiper2 .swiper-slide-thumb-active .dot,
.client .swiper2 .swiper-slide:hover .dot {
  background: rgba(251, 144, 59, 1);
}

/* process styles */
.process {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 76px 0 70px;
  background: #f7f8fb;
}

.process > img {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}

.process .inner {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.process .section1 {
  margin-bottom: 58px;
}

.process .section2 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  gap: 24px;
}

.process .section2::before {
  content: "";
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: 0;
  left: 50%;
  padding: 0 1px;
  background: #fb903b;
  height: 90%;
}

.process .section2 .item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  position: relative;
}

.process .section2 .item1 {
  justify-content: flex-start;
}

.process .section2 .item2 {
  justify-content: flex-end;
}

.process .section2 .item .left,
.process .section2 .item .right {
  display: flex;
  flex-wrap: wrap;
  width: 39%;
}

.process .section2 .item1 .left,
.process .section2 .item2 .right {
  flex-direction: column;
  padding: 22px 28px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(20, 38, 66, 0.08);
  border-radius: 16px;
border: 0.6px solid rgba(243, 244, 246, 1);
box-sizing: border-box;
background: rgba(255, 255, 255, 1);
box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.process .section2 .item1 .right,
.process .section2 .item2 .left {
  justify-content: center;
  color: rgba(20, 24, 36, 0.1);
}

.process .section2 .item .middle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  padding: 10px;
  border-radius: 50%;
  background: #fb903b;
  box-shadow: 0 0 0 6px #ffffff;
  transform: translateX(-50%);
  z-index: 2;
}

.process .section2 .item .top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  gap: 10px;
  margin-bottom: 12px;
}

.process .section2 .item1 .top {
  justify-content: flex-end;
}

.process .section2 .item2 .top {
  justify-content: flex-start;
}

.process .section2 .item .title p {
  display: flex;
color: rgba(16, 24, 40, 1);
font-family: Inter;
font-weight: 700;
font-size: 20px;
line-height: 28px;
}

.process .section2 .item .num p {
  display: flex;
  padding: 4px 12px;
border-radius: 18641400px;
background: rgba(255, 237, 212, 1);
color: rgba(245, 73, 0, 1);
font-family: Inter;
font-weight: 700;
font-size: 14px;
line-height: 20px;
}

.process .section2 .item .bottom {
  display: flex;
  width: 100%;
}

.process .section2 .item1 .bottom {
  justify-content: flex-end;
  text-align: right;
}

.process .section2 .item2 .bottom {
  justify-content: flex-start;
}

.process .section2 .item .bottom p {
  display: flex;
  color: rgba(74, 85, 101, 1);
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.process .section2 .item1 .right p,
.process .section2 .item2 .left p {
  display: flex;
font-family: Inter;
font-weight: 900;
font-size: 60px;
line-height: 60px;
}

/* support styles */
.support {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 76px 0 86px;
  background: #ffffff;
}

.support .inner {
  display: flex;
  flex-wrap: wrap;
}

.support .section1 {
  margin-bottom: 46px;
}

.support .section2 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  position: relative;
  gap: 0;
}

.support .section2 .item1 {
  display: flex;
  flex-wrap: wrap;
  width: 66%;
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background: linear-gradient(270deg, rgba(28, 57, 142, 0.26) 0%, rgba(28, 57, 142, 1) 46.2%);
}

.support .section2 .item1 > img {
    display: block;
    width: 120%;
    height: 120%;
    position: absolute;
    left: -10%;
    right: 0;
    top: 0;
    bottom: 0;
    object-fit: cover;
    opacity: 1;
}

.support .section2 .item1 .content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 46px 48px 44px;
}

.support .section2 .item1 .top {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
}

.support .section2 .item1 .tag {
  display: flex;
  align-items: center;
  align-self: flex-start;
  padding: 8px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
  border-radius: 18641400px;
  border: 0.6px solid rgba(20, 71, 230, 0.5);
  box-sizing: border-box;
  background: rgba(25, 60, 184, 0.5);
}

.support .section2 .item1 .tag p {
  display: flex;
  color: rgba(190, 219, 255, 1);
  font-family: Inter;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}

.support .section2 .item1 .text1 p {
  display: flex;
  color: rgba(255, 255, 255, 1);
  font-family: Inter;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
}

.support .section2 .item1 .text2 {
  display: flex;
  width: 88%;
  margin-top: 22px;
}

.support .section2 .item1 .text2 p {
  display: flex;
  color: rgba(219, 234, 254, 0.8);
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 29.3px;
}

.support .section2 .item1 .bottom {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 28px;
  margin-top: 80px;
}

.support .section2 .item1 .one {
  display: flex;
  flex: 1;
  align-items: center;
  padding: 24px 28px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  border: 0.6px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.1);
}

.support .section2 .item1 .one .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  margin-right: 20px;
  width: 63px;
  max-width: 63px;
  min-width: 63px;
  height: 63px;
  border-radius: 8px;
  background: rgba(190, 218, 255, 0.5);
}
.support .section2 .item1 .one:last-child .icon {
  background: rgba(255, 237, 212, 0.5);
}
.support .section2 .item1 .one p {
  display: flex;
  color: rgba(255, 255, 255, 1);
  font-family: Inter;
  font-weight: 700;
  font-size: 23px;
  line-height: 24px;
}

.support .section2 .item2 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 31%;
  position: absolute;
  right: 0;
  padding: 34px 36px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(20, 38, 66, 0.08);
  overflow: hidden;
  border-radius: 40px;
  border: 0.6px solid rgba(243, 244, 246, 1);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.04);
}

.support .section2 .item2:nth-child(2) {
  top: 0;
}

.support .section2 .item2:nth-child(3) {
  bottom: 0;
  background: #f59a14;
  box-shadow: 0 16px 32px rgba(245, 154, 20, 0.28);
}

.support .section2 .item2 > img {
  display: block;
  width: 34%;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.28;
}

.support .section2 .item2 .top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}

.support .section2 .item2 .top .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 8px;
  background: rgba(245, 154, 20, 0.12);
  margin-right: 14px;
  width: 48px;
  max-width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 247, 237, 1);
}

.support .section2 .item2:nth-child(3) .top .icon {
  background: rgba(255, 255, 255, 0.2);
}

.support .section2 .item2 .top p {
  display: flex;
  color: rgba(28, 57, 142, 1);
  font-family: Inter;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
}

.support .section2 .item2:nth-child(3) .top p {
  color: rgba(255, 255, 255, 1);
}

.support .section2 .item2 .bottom {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 1;
}

.support .section2 .item2 .bottom p {
  display: flex;
color: rgba(106, 114, 130, 1);
font-family: Inter;
font-weight: 400;
font-size: 14px;
line-height: 22.8px;
}

.support .section2 .item2:nth-child(3) .bottom p {
color: rgba(255, 255, 255, 1);
}

/* services responsive styles */
@media only screen and (max-width: 1280px) {
  .client,
  .process,
  .support {
    padding: 25px 0;
  }

  .client .section1,
  .process .section1,
  .support .section1 {
    margin-bottom: 25px;
  }

  .client .section1 .title p,
  .process .section1 .title p,
  .support .section1 .title p {
    font-size: 20px;
    line-height: 28px;
  }

  .client .section1 .line,
  .process .section1 .line,
  .support .section1 .line {
    margin: 7px 0 18px;
  }

  .client .section1 .desc p,
  .process .section1 .desc p,
  .support .section1 .desc p,
  .client .swiper1 .content .text p,
  .process .section2 .item .bottom p,
  .support .section2 .item1 .text2 p,
  .support .section2 .item2 .bottom p {
    font-size: 16px;
    line-height: 25px;
  }

  .client .swiper1 > .swiper-wrapper > .swiper-slide {
    padding: 25px 25px 0;
  }

  .client .swiper1 .content {
    gap: 24px;
  }

  .client .section2 > .line {
    margin: 25px 25px 0;
  }

  .client .swiper2 .swiper-slide {
    padding: 20px 0 24px;
  }

  .client .swiper2 .swiper-slide p,
  .process .section2 .item .title p,
  .support .section2 .item2 .top p {
    font-size: 18px;
    line-height: 25px;
  }

  .support .section2 .item1 .content,
  .support .section2 .item2 {
    padding: 25px;
  }

  .support .section2 .item1 .text1 p {
    font-size: 24px;
    line-height: 30px;
  }

  .support .section2 .item1 .bottom {
    gap: 20px;
    margin-top: 25px;
  }

  .support .section2 .item1 .one {
    padding: 18px;
  }

  .support .section2 .item1 .one p {
    font-size: 18px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 1024px) {
  .client .swiper1 > .swiper-wrapper > .swiper-slide {
    gap: 25px;
  }

  .client .swiper1 .content,
  .client .swiper1 .img {
    width: 100%;
  }

  .client .swiper2 .swiper-slide p {
    font-size: 16px;
    line-height: 24px;
  }

  .process .section2 .item .left,
  .process .section2 .item .right {
    width: 43%;
  }

  .support .section2 {
    gap: 20px;
  }

  .support .section2 .item1,
  .support .section2 .item2 {
    width: 100%;
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
  }
}

@media only screen and (max-width: 820px) {
  .client .section1 .line,
  .process .section1 .line,
  .support .section1 .line {
    display: none;
  }

  .client .section1 .desc p,
  .process .section1 .desc p,
  .support .section1 .desc p,
  .client .swiper1 .content .text p,
  .process .section2 .item .bottom p,
  .support .section2 .item1 .text2 p,
  .support .section2 .item2 .bottom p {
    font-size: 14px;
    line-height: 22px;
  }

  .process .section2::before,
  .process .section2 .item .middle {
    display: none;
  }

  .process .section2 .item1,
  .process .section2 .item2 {
    justify-content: flex-start;
  }

  .process .section2 .item .left,
  .process .section2 .item .right,
  .process .section2 .item1 .left,
  .process .section2 .item2 .right {
    width: 100%;
  }

  .process .section2 .item1 .right,
  .process .section2 .item2 .left {
    display: none;
  }

  .process .section2 .item1 .top,
  .process .section2 .item1 .bottom {
    justify-content: flex-start;
    text-align: left;
  }

  .support .section2 .item1 .bottom {
    flex-direction: column;
  }

  .support .section2 .item1 .one {
    width: 100%;
  }
  .support .section2 .item1 .one .icon {
    padding: 10px;
    margin-right: 10px;
    width: 40px;
    max-width: 40px;
    min-width: 40px;
    height: 40px;
}
}

@media only screen and (max-width: 768px) {
  .client,
  .process,
  .support {
    padding: 22px 0;
  }
}

@media only screen and (max-width: 640px) {
  .client .section1 .desc p,
  .process .section1 .desc p,
  .support .section1 .desc p,
  .client .swiper1 .content .text p,
  .process .section2 .item .bottom p,
  .support .section2 .item1 .text2 p,
  .support .section2 .item2 .bottom p {
    font-size: 13px;
    line-height: 20px;
  }

  .client .swiper1 > .swiper-wrapper > .swiper-slide,
  .support .section2 .item1 .content,
  .support .section2 .item2,
  .process .section2 .item1 .left,
  .process .section2 .item2 .right {
    padding: 18px;
  }
}

@media only screen and (max-width: 414px) {
  .client,
  .process,
  .support {
    padding: 20px 0;
  }

  .client .section1,
  .process .section1,
  .support .section1 {
    margin-bottom: 18px;
  }

  .client .swiper2 .swiper-slide {
    width: 50%;
    flex: none;
    padding: 14px 0;
  }
}


/* services client and process responsive fix */
.process .section2 .item .top {
  justify-content: space-between;
}

.process .section2 .item1 .top,
.process .section2 .item2 .top {
  justify-content: space-between;
}

.process .section2 .item .top .title {
  order: 1;
  flex: 1;
}

.process .section2 .item .top .num {
  order: 2;
  flex-shrink: 0;
}

.process .section2 .item .num p {
  white-space: nowrap;
}

@media only screen and (max-width: 680px) {
  .client .section2 > .line,
  .client .swiper2 {
    display: none;
  }

  .client .swiper1 > .swiper-wrapper > .swiper-slide {
    padding: 25px;
  }
}