* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h2 {
  font-family: "Instrument Sans", Sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #000000;
}

h3 {
  font-family: "Instrument Sans", Sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: #000000;
}

h4 {
  font-family: "Instrument Sans", Sans-serif;
  font-weight: 600;
  line-height: 24px;
}

h5 {
  font-family: "Instrument Sans", Sans-serif;
  font-size: 20px;
  font-weight: 700;
}

h6 {
  font-family: "Instrument Sans", Sans-serif;
  font-size: 18px;
  font-weight: 700;
}

p {
  color: #6C6A72;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 187.5%;
}

ul {
  list-style: disc;
  margin: 0 0 0.5em;
}



/* Services */
.services {
  padding: 50px;

  .row {
    margin-top: -132px;
  }

  .service-head {
    background-color: #F4F2F9;
    padding: 40px 40px 0 40px;
    border-radius: 15px;
    height: 385px;
  }

  .service-card {
    position: relative;
    transition: all 0.3s ease-in-out;

    .icon-box {
      padding: 24px 48px 44px 48px;
      background-color: #fff;
      border: 1px solid #CECECE;
      height: 282px;
      width: 252px;
      border-radius: 15px;
      text-align: center;

      .icon-content {
        margin-top: 44px;

        h5 {
          color: #4B03D6;
        }
      }
    }

    .icon-box-one {
      padding: 24px 16px 18px 16px;
      background-color: #4B03D6;
      border: 1px solid #CECECE;
      width: 252px;
      border-radius: 15px;
      text-align: center;
      position: absolute;
      top: 0;
      opacity: 0;
      transition: all 0.3s ease-in-out;
      height: 100%;

      .icon-content {
        margin-top: 19px;

        p {
          font-family: "Instrument Sans", Sans-serif;
          font-size: 14px;
          font-weight: 500;
          line-height: 16px;
          letter-spacing: 0px;
          color: #FFFFFF;
        }
      }

    }
  }

  .service-card:hover .icon-box {
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }

  .service-card:hover .icon-box-one {
    opacity: 1;
    transition: all 0.3s ease-in-out;
  }
}


/* Service-two */
.services-two {
  padding: 150px 0;
  background-color: #1D1629;
}


/* Ecommerce Service */
.e-commerce-service {
  padding: 100px 0;
}




/* responsive */
@media (max-width: 1024px) {
  .services {
    padding: 50px 10px 50px 10px;

    .row {
      margin-top: -65px;
      row-gap: 30px;

      .service-card {
        .icon-box {
          width: unset;
        }

        .icon-box-one {
          width: unset;
        }
      }
    }
  }


  .services-two {
    padding: 100px 20px;
    background-color: #1D1629;
  }

  .e-commerce-service {
    padding: 100px 20px;

    img {
      width: 45%;
    }
  }

  .capabilities {
    h2 {
      width: 52%;

    }

    p {
      width: 72%;
    }
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 32px;
    line-height: 38px;
  }

  h3 {
    font-size: 24px;
    line-height: 40px;
  }

  h4 {
    font-weight: 600;
    line-height: 24px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  p {
    font-size: 14px;
  }

  .services {
    padding: 20px 10px 20px 10px;

    .service-head {
      background-color: #F4F2F9;
      padding: 20px 15px 20px 15px;
      height: unset;
    }

    .row {
      margin-top: 10px;
      row-gap: 30px;

    }
  }

  .e-commerce-service {
    padding: 20px 20px;

    img {
      width: 100%;
    }
  }

  .capabilities {
    background: #4B03D6;
    padding: 50px 20px;

    h2 {
      font-size: 32px;
    }

    p {
      width: 100%;
    }
  }

  .faq-wrapper {
    margin: 0 auto;
    padding: 30px 0 50px 0;
  }

  .faq-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    color: #000000;
  }
}


/* Privacy */
.privacy {
  padding: 60px 0;

  img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
  }
}

.thanks {
  padding: 60px 0;

}