/*
---------------------------
Service Style 01
---------------------------
*/
  .services-area-api-page {
background-image: url(../imgs/Banking/apiBanking/Section5/BG.webp);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
  }
  .services-area-api-page .services-area-api-page-inner {
    display: flex;
    gap: 80px;
    justify-content: space-between;
  }
  @media only screen and (max-width: 767px) {
    .services-area-api-page .services-area-api-page-inner {
      gap: 50px;
      flex-direction: column;
    }
  }
  .services-area-api-page .thumb {
    position: relative;
    margin-bottom: 20px;
  }
  @media only screen and (max-width: 991px) {
    .services-area-api-page .thumb {
      margin-bottom: 20px;
    }
  }
  .services-area-api-page .section-heading {
    max-width: 775px;
  }
  @media only screen and (max-width: 1199px) {
    .services-area-api-page .section-heading {
      max-width: 375px;
    }
  }
  @media only screen and (max-width: 991px) {
    .services-area-api-page .section-heading {
      max-width: 295px;
    }
  }
  @media only screen and (max-width: 767px) {
    .services-area-api-page .section-heading {
      max-width: 100%;
    }
  }
  .services-area-api-page .section-heading .content {
    display: flex;
    gap: 50px;
    justify-content: space-between;
  }
  @media only screen and (max-width: 1199px) {
    .services-area-api-page .section-heading .content {
      flex-direction: column;
    }
  }
  @media only screen and (max-width: 767px) {
    .services-area-api-page .section-heading .content {
      gap: 30px;
    }
  }
  .services-area-api-page .section-heading .content .section-title {
    max-width: 312px;
  }
  @media only screen and (max-width: 767px) {
    .services-area-api-page .section-heading .content .section-title {
      max-width: 100%;
    }
  }
  .services-area-api-page .section-heading .content .text-wrapper {
    margin-bottom: 43px;
  }
  @media only screen and (max-width: 767px) {
    .services-area-api-page .section-heading .content .text-wrapper {
      margin-bottom: 23px;
    }
  }
  .services-area-api-page .section-heading .content .text {
    max-width: 283px;
    font-size: 18px;
    line-height: 1.44;
    color: var(--black);
  }
  @media only screen and (max-width: 991px) {
    .services-area-api-page .section-heading .content .text {
      max-width: 600px;
    }
  }
  .services-area-api-page .services-wrapper {
    border-inline-start: 1px solid rgba(18, 18, 18, 0.1);
    max-width: 635px;
    flex-grow: 1;
  }
  .services-area-api-page .services-wrapper > a {
    opacity: 0.7;
    transition: all 0.5s;
  }
  .services-area-api-page .services-wrapper > a:hover {
    opacity: 1;
  }
  .services-area-api-page .services-wrapper > a:first-child .service-item {
    padding-top: 0;
    border-top: 0;
  }
  .services-area-api-page .services-wrapper > a:last-child .service-item {
    padding-bottom: 20px;
  }
  
  .service-item {
    display: flex;
    gap: 72px;
    justify-content: space-between;
    padding-top: 36px;
    padding-bottom: 33px;
    padding-inline-start: 41px;
    border-top: 1px solid rgba(18, 18, 18, 0.1);
  }
  @media only screen and (max-width: 1199px) {
    .service-item {
      gap: 42px;
      padding-inline-start: 31px;
    }
  }
  @media (max-width: 575px) {
    .service-item {
      gap: 22px;
      padding-inline-start: 21px;
      flex-direction: column;
      padding-bottom: 18px;
    }
  }
  .service-item:hover .title {
    transform: rotateX(90deg) translateY(-12px);
  }
  .service-item .number {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
  }
  .service-item .title {
    font-size: 30px;
    text-decoration: none;
    text-decoration-thickness: 1.4px;
    text-underline-offset: 3px;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
    margin-bottom: 20px;
    perspective: 1000px;
    position: relative;
    display: inline-block;
    padding: 0;
    transition: transform 0.5s;
    transform-origin: 50% 0;
    transform-style: preserve-3d;
  }
  @media (max-width: 575px) {
    .service-item .title {
      font-size: 24px;
    }
  }
  .service-item .title:before {
    position: absolute;
    top: 90%;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    content: attr(data-text);
    transition: color 0.5s;
    transform: rotateX(-90deg);
    transform-origin: 50% 0;
    text-align: center;
  }
  .service-item .text {
    font-size: 18px;
    line-height: 1.44;
    color: var(--black);
  }
  .service-item .content-wrapper {
    display: flex;
    gap: 109px;
    justify-content: space-between;
    align-items: center;
  }
  @media only screen and (max-width: 991px) {
    .service-item .content-wrapper {
      gap: 39px;
    }
  }
  @media only screen and (max-width: 767px) {
    .service-item .content-wrapper {
      gap: 69px;
    }
  }
  .service-item .content {
    max-width: 390px;
  }
  .service-item .wc-btn-normal img {
    width: 7px;
    min-width: 7px;
  }