/* service Banner start */
.service-banner-section {
  position: relative;
  /* height: 70vh; */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.service-banner-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

#service-banner-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 460px;
  position: relative;
  display: flex;
  align-items: center;
}

.service-banner h1 {
  font-size: 50px;
  line-height: 1;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  text-transform: capitalize;
  font-weight: 200;
  width: 351px;
  margin: auto;
}

/* service banner end */

/* service-confidence-section start */
.service-confidence-section {
  padding: 70px 0px 0px 0px;
  height: 100%;
}

.service-confidence-row {
  align-items: center;
}

.service-confidence-title {
  font-size: 48px;
  font-weight: 200;
  line-height: 1.25;
  text-align: left;
  color: #fff;
  margin-bottom: 12px;
}

.service-confidence-content {
  height: 100%;
  width: 100%;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: all 2.5s ease-in-out;
}

.service-confidence-image-visible .service-confidence-content {
  opacity: 1;
  transition: all 2.5s ease-in-out;
  clip-path: inset(0 0 0 0) !important;
}

.service-confidence-para {
  font-size: 18px;
  font-weight: 100;

  line-height: 1.5;

  text-align: left;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.highlight {
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  font-weight: 300;
  color: #e5403e;
}

.service-confidence-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 516px;
  width: 100%;
}

.service-confidence-main-img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-confidence-main-img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-confidence-overlay-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-confidence-main-img1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 371px;
  height: 287.9px;
  display: block;
  transition: all 2s ease-in-out;
  transform: scale(0.5);
}

.service-confidence-image-visible .service-confidence-main-img1 {
  transition: all 2s ease-in-out;
  transform: scale(1);
}

.service-confidence-main-img2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 471.2px;
  height: 366px;
  display: block;
  transition: all 2s ease-in-out;
  transform: scale(0.5);
  padding-top: 10px;
  padding-left: 10px;
  background-color: #161616;
}

.service-confidence-image-visible .service-confidence-main-img2 {
  transition: all 2s ease-in-out;
  transform: scale(1);
}

.service-confidence-overlay-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  transition: all 2s ease-in-out;
  z-index: 2;
}

.service-confidence-image-visible .service-confidence-overlay-img {
  position: absolute;
  /* min-width: 144px;
min-height: 144px; */
  width: 144px;
  height: 144px;
  top: 38%;
  left: 15%;
  transform: none;
  transition: all 2s ease-in-out;
  z-index: 5;
}

/* service-dealvault-section end */

/* service-process-section start */
.service-process-section {
  height: 100%;
  padding: 70px 0px 0 0;
}

.service-process-title {
  font-size: 48px;
  font-weight: 200;
  line-height: 1.25;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}

.process-sidebar {
  box-sizing: border-box;
}

.process-menu {
  padding: 0;
  margin: 0;
}

.process-menu-item {
  position: relative;
  padding: 0 10px 0 30px;
  margin-right: 20px;
  border-radius: 1px;
  list-style: none;
  cursor: pointer;
  transition: all 1s ease-in-out;
  color: #fff;
  min-height: 100px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 20px;
  font-weight: 100;
  line-height: 1.37;
  text-align: left;
  color: #fff;
  margin-bottom: -10px;
}

.process-menu-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 8px;
  width: 8px;
  z-index: -2;
  border-radius: 1px;
  background-color: #e5403e;
  /* clip-path: inset(46% 0 46% 0); */
  animation: expandBulletBack 0.5s forwards;
}

@keyframes expandBulletBack {
  0% {
    height: 100%;
    width: 100%;
  }

  50% {
    height: 100%;
    width: 20%;
  }

  100% {
    height: 8px;
    width: 8px;
  }
}

.process-menu-item.active.process-menu-item::before {
  animation: expandBullet 0.8s forwards;
}

@keyframes expandBullet {
  0% {
    height: 8px;
    width: 8px;
  }

  50% {
    height: 100%;
    width: 20%;
  }

  100% {
    height: 100%;
    width: 100%;
  }
}

.process-menu-item:hover.process-menu-item::before {
  animation: expandBullet 0.8s forwards;
}

/* Keyframe animation */
@keyframes expandBullet {
  0% {
    height: 8px;
    width: 8px;
  }

  50% {
    height: 100%;
    width: 20%;
  }

  100% {
    height: 100%;
    width: 100%;
  }
}

.process-content-box {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-content-box.active {
  opacity: 1;
  z-index: 1;
}

.process-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: #222;
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-step-bg-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.process-step-bg-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-content-inner-swiper {
  width: 100%;
  height: 100%;
  max-height: 300px;
}

.process-content-inner {
  text-align: center;
  padding: 60px 50px;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.process-step-number {
  font-size: 150px;
  font-weight: 600;

  line-height: 1.27;

  text-align: right;
  color: #e5403e;
}

.process-step-text {
  font-size: 18px;
  font-weight: 200;

  line-height: 1.5;

  text-align: left;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: auto;
}

/* service-process-section end */

/* service-network-section start */
.service-network-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 0px;
  background-color: #161616;
}

.service-network-title {
  font-size: 48px;
  font-weight: 200;

  line-height: 1.25;

  text-align: left;
  color: #fff;
  margin-bottom: 25px;
}

.service-network-para {
  font-size: 18px;
  font-weight: 200;

  line-height: 1.5;

  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  max-width: 70%;
  margin-bottom: 50px;
}

.service-network-content {
  clip-path: inset(0 0 100% 0);
  transition: all 2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.service-network-content.show {
  clip-path: inset(0 0 0 0);
}

.service-network-section .chart-image-div {
  position: relative;
  width: 50vw;
  height: 55vh;
  max-width: 470.8px;
  height: 500px;
}

.service-network-section .chart-image {
  position: absolute;
  width: 50vw;
  height: 80vh;
  max-width: 470.8px;
  max-height: 435px;
  background-image: url(../img/service/service-chart.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform-origin: center;
  transition: transform 1s ease;
  z-index: 0;
  transform: scale(0.6);
  display: block;
}

.chart-image.zoom-out {
  transform: scale(1);
}

.service-network-section .arrow-text {
  position: absolute;
  width: 20vw;
  transform: scale(0.7);
  transform-origin: center;
  transition: all 1s ease;
  opacity: 0;
}

.service-network-section .arrow-text.show {
  transform: scale(1);
  opacity: 1;
}

.service-network-section .arrow-text.top-left {
  top: 5vh;
  left: -10vw;
}

.service-network-section .arrow-text.top-left.show {
  top: 0vh;
  left: -20vw;
}

.service-network-section .top-left::after {
  content: "";
  position: absolute;
  top: 4vh;
  left: 17vw;
  width: 10vw;
  height: 13vh;
  background-image: url(../img/service/network-line-t-l.webp);
  pointer-events: none;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.service-network-section .bottom-left {
  bottom: 5vh;
  left: -10vw;
}

.service-network-section .arrow-text.bottom-left.show {
  bottom: 5vh;
  left: -20vw;
}

.service-network-section .bottom-left::after {
  content: "";
  position: absolute;
  bottom: 7vh;
  left: 18vw;
  width: 10vw;
  height: 20vh;
  background-image: url(../img/service/network-line-b-l.webp);
  pointer-events: none;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.service-network-section .right {
  top: 0vh;
  right: -12vw;
}

.service-network-section .arrow-text.right.show {
  top: -2vh;
  right: -26vw;
}

.service-network-section .right::after {
  content: "";
  position: absolute;
  top: 7vh;
  right: 21vw;
  width: 10vw;
  height: 15vh;
  background-image: url(../img/service/network-line-r.webp);
  pointer-events: none;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.service-network-section .service-network-sub-title {
  font-size: 20px;
  font-weight: 200;
  line-height: 1.1;
  text-align: left;
  color: #fff;
}

.service-network-section .service-network-sub-para {
  font-size: 14px;
  font-weight: 100;
  line-height: 1.43;
  text-align: left;
  color: rgba(255, 255, 255, 0.8);
  width: 83%;
}

.bar {
  display: none;
}

/* service-network-section end */

/* .service-testimonials-section start */
.service-testimonials-section {
  background-color: #232323;
  padding: 50px 0;
}

.service-testimonials-title {
  font-size: 48px;
  font-weight: 200;
  line-height: 1.25;
  text-align: left;
  margin-bottom: 10px;
  color: #fff;
  background-color: #232323;
}

.service-testimonials-section .service-testimonials-image-slider {
  max-width: 518px;
  max-height: 534px;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}

.service-testimonials-section .service-testimonials-gallery-top {
  height: 40vh;
  min-height: 400px;
  margin-left: 0px;
  overflow: hidden;
  cursor: pointer;
}

.service-testimonials-section .service-testimonials-gallery-top .swiper-wrapper {
  z-index: -1;
}

.service-testimonials-details {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
  text-align: left;
  max-width: 90%;
  z-index: 0;
}

.service-testimonials-para {
  font-size: 18px;
  font-weight: 100;
  line-height: 1.5;
  text-align: left;
  color: rgba(255, 255, 255, 0.8);
}

.service-testimonials-sub-title {
  font-size: 20px;
  line-height: 1.5;
  text-align: left;
  color: #fff;
  font-weight: 100;
  margin-bottom: 0px;
}

.service-testimonials-sub-para {
  font-size: 16px;
  font-weight: 100;
  line-height: 1.88;
  text-align: left;
  color: rgba(255, 255, 255, 0.8);
}

.service-testimonials-section .swiper-slide-active .service-testimonials-details {
  opacity: 1;
  transform: translateY(0);
}

.service-testimonials-image-slider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.service-testimonials-image-slider .swiper-slide-active img {
  opacity: 1;
}

.testimonials-btn-container {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
}

.testimonials-btn-nav {
  background-color: #2f2f2f !important;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 5px;
  opacity: 1;
}

.testimonials-btn-nav i {
  font-size: 35px;
}

.testimonials-btn-nav:disabled {
  cursor: not-allowed;
  opacity: 0.3;
  background-color: #2f2f2f;

}

/* service-testimonials-section end */

/* bottom-section start */
.bottom-section {
  background-image: url(../img/service/bottom-bg.webp);
  padding: 32px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}

.bg-para {
  font-size: 18px;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.8);
}

.big_title {
  font-size: 48px;
  font-weight: 200;
  line-height: 1.25;
}

.bottom-btn {
  position: relative;
  display: inline-block;
  padding: 10px 25px;
  font-size: 18px;
  font-weight: 300;
  color: #000;
  background: #fff;
  border: 1px solid #fff;
  text-decoration: none;
  clip-path: polygon(15px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 15px);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  border-radius: 6px;
}

/* bottom-section end */

/* responsive design */

.txt-center {
  text-align: left;
}

@media (max-width: 1199px) {
  .service-confidence-main-img1 {
    width: 50%;
    height: 50%;
  }

  .service-confidence-main-img2 {
    width: 75%;
    height: 75%;
  }

  .service-confidence-image-visible .service-confidence-overlay-img {
    width: 24%;
    height: 17%;
  }
}

@media (max-width: 768px) {

  /* service Banner start */
  #service-banner-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 450px;
    position: relative;
    display: flex;
    align-items: center;
  }

  .service-banner-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
  }

  .service-banner h1 {
    font-size: 32px;
    font-weight: 200;
    line-height: 1;
  }

  /* service banner end */

  /* service-confidence-section start */
  .service-confidence-section {
    padding: 40px 0 0 0;
    margin: 0 0 0 0;
  }

  .service-confidence-image-wrapper {
    min-height: 310px;
  }

  .service-confidence-content {
    margin-top: 25px;
  }

  .confidence_div {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .service-confidence-row {
    align-items: center;
    justify-content: center;
    max-width: 375px;
  }

  .service-confidence-title {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 25px;
    text-align: center;
  }

  .service-confidence-para {
    font-size: 14px;
    font-weight: 100;
    line-height: 1.43;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 14px;
    text-align: center;
  }

  .highlight {
    font-size: 16px;
    line-height: 1;
    font-weight: 200;
    color: #e5403e;
  }

  .service-confidence-main-img1 {
    width: 145.5px;
    height: 149px;
  }

  .service-confidence-main-img2 {
    top: 22%;
    right: 0;
    bottom: auto;
    width: 262px;
    height: 240.9px;
    padding-top: 5px;
    padding-left: 5px;
  }

  .service-confidence-image-visible .service-confidence-overlay-img {
    top: 32%;
    width: 78px;
    height: 78px;
  }

  .service-confidence-main-img1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .service-confidence-main-img2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .service-confidence-image-visible .service-confidence-overlay-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* service-confidence-section end */

  /* service-process-section start */
  .service-process-section {
    margin: auto;
    max-width: 400px;
    padding: 40px 0px 0px 0px;
  }

  .service-process-title {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 0;
  }

  .process-wrapper {
    flex-direction: column;
  }

  .process-item {
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    border-bottom: solid 0.8px #636363;
    height: 65px;
  }

  .process-item.active {
    transition: all 0.5s ease-in-out;
    height: 350px;
  }

  .process-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    /* border-bottom: solid 0.8px #636363; disyne have */
    cursor: pointer;
  }

  .process-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    text-align: left;
    color: #fff;
    width: 90%;
  }

  .process-item .icon {
    position: relative;
    width: 25px;
    height: 25px;
    border: 1px solid #e5403e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease-in-out;
  }

  .process-item .icon span {
    position: absolute;
    width: 10px;
    height: 1px;
    background-color: #e5403e;
    border-radius: 1px;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  }

  .process-item .icon span:first-child {
    transform: rotate(0deg);
  }

  .process-item .icon span:last-child {
    transform: rotate(90deg);
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
  }

  .process-item.active .icon span:last-child {
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
  }

  .process-body {
    height: 100%;
    max-height: 239px;
    overflow: hidden;
    padding: 20px 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .process-bg {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .process-body span {
    font-size: 48px;
    font-weight: 600;

    line-height: 3.98;

    text-align: right;
    color: #e5403e;
  }

  .process-body p {
    margin: 0;
    font-size: 14px;
    font-weight: 100;

    line-height: 1.43;

    text-align: left;
    color: #fff;
  }

  /* service-process-section end */

  /* service-network-section start */
  .service-network-title {
    font-size: 24px;
    line-height: 1;
    text-align: center;
    margin-bottom: 18px;
  }

  .service-network-para {
    font-size: 14px;
    font-weight: 100;
    line-height: 1.43;
    text-align: center;
    color: #fff;
    max-width: 60%;
    margin-bottom: 50px;
  }

  .service-network-section .chart-image-div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 42px;
  }

  .service-network-section .chart-image {
    display: none;

  }

  .service-network-section {
    padding: 40px 0px 40px 0px;
  }

  .buyer-tier {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0px;
  }

  .bar {
    width: 147px;
    height: 54px;
    position: relative;
    margin-right: 15px;
    flex-shrink: 0;
    display: block;
  }

  .bar img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service-network-section .arrow-text {
    position: static;
    width: 100%;
    height: 54px;
  }

  .service-network-section .arrow-text::after {
    display: none;
  }

  .service-network-section .service-network-sub-title {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.25;
    width: 100%;
  }

  .service-network-section .service-network-sub-para {
    font-size: 12px;
    font-weight: 100;
    width: 100%;
  }

  /* service-testimonials-section start */
  .service-testimonials-section {
    padding: 25px 0px;
  }

  .service-testimonials-section .service-testimonials-image-slider {
    min-height: 310px;
    overflow: hidden;
    margin-top: 30px;
  }

  .service-testimonials-section .service-testimonials-gallery-top {
    min-height: 250px;
    max-height: 250px;
    height: 100%;
    margin-left: 0;
    overflow: hidden;
  }

  .service-testimonials-details {
    text-align: center;
    max-width: 90%;
    margin: 20px auto;
  }

  .service-testimonials-title {
    font-size: 24px;
  }

  .service-testimonials-sub-title {
    text-align: center;
    margin-bottom: 0px;
  }

  .service-testimonials-para {
    font-size: 14px;
    font-weight: 100;
    line-height: 1.43;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
  }

  .service-testimonials-sub-para {
    font-size: 12px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 5px;
  }

  .testimonials-btn-container {
    justify-content: center;
    margin-left: 0;
    margin-top: 0px;

  }

  .testimonials-btn-nav {
    padding: 8px 14px;
    margin-top: 0px;
  }

  .big_title {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.25;
    text-align: center;
  }

  .bg-para {
    font-size: 14px;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
  }

  .bottom-btn {
    font-size: 12px;
  }

  .txt-center {
    text-align: center;
  }
}