/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  overflow-x: hidden;
}

body {
  font-family: "Ubuntu", sans-serif;
  color: #9fa1a4;
  line-height: 1.5;
}

a {
  color: #777;
  text-decoration: none;
  transition: 0.3s all ease;
}

a:hover {
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: "Ubuntu", sans-serif;
  color: #2c3242;
  font-style: normal;
  font-weight: 700;
  font-size: 56px;
  line-height: 120%;
}

p {
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #61697f;
}

.container {
  z-index: 2;
  position: relative;
  height: 100%;
}

.text-black {
  color: #000 !important;
}

.text-primary {
  color: #2d71a1 !important;
}

.border-top {
  border-top: 1px solid #f2f2f2 !important;
}

.border-bottom {
  border-bottom: 1px solid #f2f2f2 !important;
}

figure figcaption {
  margin-top: 0.5rem;
  font-style: italic;
  font-size: 0.8rem;
}

section {
  overflow: hidden;
}

.section {
  padding: 7rem 0;
}

.section-heading {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(-45deg, #3db3c5, #274685);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading h2 {
  width: auto;
}

@media screen and (max-width: 992px) {
  .mobile-offset {
    display: none !important;
  }
}

@media only screen and (min-width: 992px) {
  .desktop-offset {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #2d71a1;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3687c1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Default btn sre-tyling */
.btn {
  border: none;
  padding: 15px 30px !important;
}

.btn-nav-white {
  display: flex;
  flex-direction: row;
  justify-content: center !important;
  align-items: center;
  padding: 12px 16px;
  gap: 8px;

  width: 143px;
  height: 44px;

  background: #ffffff;
  border-radius: 5px;

  flex: none;
  order: 2;
  flex-grow: 0;
}

.btn-nav-white:hover {
  border: 2px solid #fff;
  background: none;
  color: #fff;
}

.btn.btn-nav-font {
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  text-align: right;

  color: #3f57cb;

  /* Inside auto layout */

  flex: none;
  order: 1;
  flex-grow: 0;
}

.btn-hero-white {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  gap: 11px;

  width: 330px;
  height: 51px;
  left: 112px;
  top: 516px;

  background: #ffffff;
  border-radius: 5px;
}

.btn-hero-white:hover {
  border: 2px solid #fff;
  background: none;
  color: #fff;
}

.btn.btn-hero-font {
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;

  color: #4152cb;

  flex: none;
  order: 1;
  flex-grow: 0;
}

.btn.btn-hero-font:hover {
  border: 2px solid #fff;
  background: none;
  color: #fff;
}

.btn.btn-outline-white {
  border: 2px solid #fff;
  background: none;
  color: #fff;
}

.btn.btn-outline-white:hover {
  background: #fff;
  color: #2d71a1;
}

.btn.btn-primary {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  gap: 11px;

  /* width: 176px; */
  height: 47px;
  left: 840px;
  top: 1186px;

  background: linear-gradient(93.26deg, #4152cb 0%, #20aad0 100%);
  border-radius: 5px;
}

.btn-primary-font {
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  color: #ffffff;
}

/* Home */

.home h1 {
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 130%;
}

.home p {
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: #61697f;
}

@media only screen and (max-width: 1440px) {
  .position {
    position: relative;
  }

  .home img {
    width: 40vw;
  }
}

@media only screen and (min-width: 1600px) {
  .hero-wrap {
    margin-top: -100px;
  }
}

@media only screen and (min-width: 1080px) {
  .hero-wrap {
    margin-top: -70px;
  }
}

@media screen and (min-width: 651px) and (max-width: 992px) {
  section.home {
    height: auto;
  }

  .home img {
    width: 100%;
  }

  .home p {
    font-size: 18px;
    line-height: 28px;
  }

  .home .btn-mobile {
    margin-top: 10vh;
  }
}

@media screen and (max-width: 650px) {
  section.home {
    height: auto;
  }

  .home .btn-mobile {
    margin-top: 3rem;
  }

  .section {
    padding: 3rem 0;
  }

  .home img {
    width: 100%;
  }
}

/* Benefits */

.benefits {
  background: url("../img/beneficit-bg.png") no-repeat;
  background-size: cover;
  background-position: center center;
  height: 80vh;
}

.benefits h1 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;

  text-align: center;

  color: #fff;

  position: relative;
}

.benefits h1::after {
  content: "";
  position: absolute;
  height: 8px;
  width: 34px;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 12px);
  transition: width 0.3s ease;
  border-radius: 13px;
}

.benefits p {
  display: inline-flex;
}

.benefits-1 .wrap-icon {
  margin: 0 auto;
  height: 72px;
  width: 72px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #608DD9;
}

.benefits-1 .wrap-icon img {
  height: 45%;
  width: 45%;
}

.benefits-1 h3 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;

  text-align: center;

  color: #ffffff;
}

.benefits-1 p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;

  text-align: center;

  color: #ffffff;

  opacity: 0.7;
}

.benefits .btn-white {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  gap: 11px;
  background: #ffffff;
  border-radius: 5px;
}

.benefits .btn-white.btn-white-font {
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  flex: none;
  order: 0;
  flex-grow: 0;
  color: #4152cb;
}

.benefits .datails-1 {
  position: absolute;
  top: 90%;
  left: 25%;
}

.benefits .datails-2 {
  position: absolute;
  top: -10%;
  left: 12%;
  opacity: 0.5;
}

.benefits .datails-3 {
  position: absolute;
  top: 90%;
  left: 75%;
  opacity: 0.5;
}

.benefits .datails-4 {
  position: absolute;
  top: -10%;
  left: 85%;
  opacity: 0.5;
}

.benefits .datails-5 {
  position: absolute;
  top: -10%;
  left: 89.8%;
  opacity: 0.5;
}

.benefits .datails-6 {
  position: absolute;
  top: 100%;
  left: -16%;
  opacity: 0.5;
}

.benefits .datails-7 {
  position: absolute;
  top: 79%;
  left: 108%;
  opacity: 0.5;
}

@media only screen and (min-width: 1440px) {
  .benefits {
    height: auto;
  }

  .benefits .container {
    margin-top: 6rem;
  }
}

@media only screen and (max-width: 1440px) {
  .benefits {
    height: auto;
  }

  .benefits .datails-5 {
    left: 90.5%;
  }

  .benefits .datails-6 {
    left: -10%;
  }

  .benefits .datails-7 {
    left: 102%;
  }
}

@media screen and (max-width: 650px) {
  .benefits {
    background: url(../img/beneficit-bg-mobile.png) no-repeat;
    background-size: cover;
    background-position: center;
    height: 1270px;
  }

  .benefits-1 .wrap-icon {
    margin-bottom: 15px;
  }

  .benefits-1 h3 {
    margin-bottom: 0 !important;
  }
}


/* App */

.app .section-title h1 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;
  color: #2c3242;
  text-align: center;
}

.app .section-title p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: #61697f;
  text-align: center;
}

.app-card {
  position: absolute;
  width: 278px;
  height: 121px;
  left: 70px;
  top: 160px;
  padding: 12px;
  background: #ffffff;
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.app-card-2 {
  position: absolute;
  width: 278px;
  height: 121px;
  left: 10px;
  top: 330px;
  padding: 12px;
  background: #ffffff;
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.app-card-3 {
  position: absolute;
  width: 278px;
  height: 121px;
  left: 70px;
  top: 500px;
  padding: 12px;
  background: #ffffff;
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.app-card-4 {
  position: absolute;
  width: 278px;
  height: 145px;
  left: 960px;
  top: 160px;
  padding: 12px;
  background: #ffffff;
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.app-card-5 {
  position: absolute;
  width: 278px;
  height: 121px;
  left: 1000px;
  top: 330px;
  padding: 12px;
  background: #ffffff;
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.app-card-6 {
  position: absolute;
  width: 278px;
  height: 121px;
  left: 960px;
  top: 500px;
  padding: 12px;
  background: #ffffff;
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.app-card-master .number {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 12px;
  top: 13px;
}

.app-card-master h3 {
  position: absolute;
  /* width: 113px; */
  height: 21px;
  left: 12px;
  top: 55px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;

  color: #2c3242;
}

.app-card-master p {
  position: absolute;
  width: 257px;
  height: 36px;
  left: 12px;
  top: 75px;

  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  color: #61697f;
}

.app-card p:last-child {
  margin-bottom: 0px;
}

.app .detail-1 {
  position: absolute;
  top: -25%;
  left: 95%;
}

.app .detail-2 {
  position: absolute;
  top: 70%;
  left: -17%;
}

#btn-app {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

@media only screen and (max-width: 1440px) {
  .app-card {
    left: 10px;
    top: 120px;
  }

  .app-card-2 {
    left: -50px;
    top: 280px;
  }

  .app-card-3 {
    left: 10px;
    top: 440px;
  }

  .app-card-4 {
    left: 850px;
    top: 120px;
    height: 145px!important;
  }

  .app-card-5 {
    left: 890px;
    top: 290px;
  }

  .app-card-6 {
    left: 850px;
    top: 440px;
  }
}

@media screen and (max-width: 992px) {
  section.app {
    height: 280vh;
  }

  .app .section-title h1 {
    font-size: 32px;
    line-height: 140%;
    text-align: left;
  }

  .purple:before {
    background: url(../img/underline-mob-app.svg) no-repeat;
  }

  .purple:after {
    background: url(../img/underline-mob-app2.svg) no-repeat;
  }

  .app .section-title p {
    text-align: left;
  }

  .app-card {
    left: 5%;
    top: 100%;
  }

  .app-card-2 {
    left: 15%;
    top: 135%;
  }

  .app-card-3 {
    left: 5%;
    top: 170%;
  }

  .app-card-4 {
    left: 15%;
    top: 205%;
  }

  .app-card-5 {
    left: 5%;
    top: 240%;
  }

  .app-card-6 {
    left: 15%;
    top: 275%;
  }
}

@media only screen and (max-width: 992px) {
  section.app {
    height: auto;
  }

  .app-card {
    position: unset;
    width: 100%;
    height: auto;
    margin-bottom: 5vh;
    padding: 20px 32px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }

  .app-card-2 {
    position: unset;
    width: 100%;
  }

  .app-card-3 {
    position: unset;
    width: 100%;
  }

  .app-card-4 {
    position: unset;
    width: 100%;
  }

  .app-card-5 {
    position: unset;
    width: 100%;
  }

  .app-card-6 {
    position: unset;
    width: 100%;
  }

  .app-card .number {
    position: unset;
    margin-bottom: 12px;
    display: block;
  }

  .app-card h3 {
    position: unset;
    font-size: 18px;
  }

  .app-card p {
    position: unset;
    font-size: 16px;
    width: auto;
    height: auto;
  }
}

@media screen and (max-width: 650px) {
  .app .section-title h1 {
    font-size: 6vw;

  }
}

/* Download */

#outer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px 0;
}

.inner {
  display: inline-block;
}

.inner sup {
  position: absolute;
  top: 57%;
  left: 6%;
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
}

/* .inner span {
  position: absolute;
  top: 57%;
  left: 6%;
  font-family: "Rubik";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
} */

.download .btn.btn-primary {
  height: 55px;
  background: linear-gradient(93.26deg, #4152cb 0%, #20aad0 100%);
  border-radius: 8px;
  padding: 12px 20px !important;
}

.download h1 {
  width: 592px;
  /* .download h1 */
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;

  color: #2c3242;
}

.download p {
  /* height: 112px; */
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;

  color: #61697f;
}

.download .btn i {
  font-size: 30px;
  color: #ffffff;
}

.download p a {
  font-family: "rubik";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  color: #ffffff;
}

.download .detail-1 {
  position: absolute;
  top: -80%;
  left: -17%;
}

.download .shadow-1 {
  position: absolute;
  top: 98%;
  left: 2%;
}

.download .btn-whatsapp{
  background:#00CF84!important
}

.download .btn-mobile{
  gap: 16px;
}

@media screen and (min-width: 651px) and (max-width: 992px) {
  section.download {
    margin-bottom: 7rem;
    padding: 0;
    padding-bottom: 1rem;
    padding-top: 7rem;
    background: url("../img/clients-bg.png") no-repeat;
  }

  .download h1 {
    font-size: 32px;
    line-height: 140%;
    text-align: center;
    width: auto;
    height: auto;
  }

  .download p {
    font-size: 18px;
    font-weight: 400;
    margin-top: 60px;
    margin-bottom: 0;
    height: auto;
    line-height: auto;
    color: #FFF;
  }


  .download .iPhone-mobile {
    display: none;
  }

  #outer {
    display: inline-flex;
    padding: 0.5rem;
    flex-direction: row;
    gap: 24px;
  }
}

@media screen and (max-width: 650px) {
  #outer {
    padding-top: 3rem;
  }

  .download h1 {
    font-size: 7vw;
    width: auto;
    text-align: center;
  }

  .download img {
    margin-top: 60px;
  }
}


/* Earnings */

.earnings {
  /* background: url("../img/beneficit-bg.png") no-repeat;
  background-size: cover;
  background-position: center center;
  height: 80vh; */
}

.earnings h1 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;
  text-align: center;
  color: #2c3242;
  position: relative;
}

.earnings h1::after {
  content: "";
  position: absolute;
  height: 8px;
  width: 34px;
  background: #2c3242;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 12px);
  transition: width 0.3s ease;
  border-radius: 13px;
}

.earnings p {
  display: inline-flex;
}

.earnings-1 .wrap-icon {
  margin: 0 auto;
  height: 72px;
  width: 72px;
  border-radius: 12px;
  position: relative;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00f7d3;
}

.earnings-1 .wrap-icon img {
  height: 45%;
  width: 45%;
}

.earnings-1 h3 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #61697f;
}

.earnings-1 p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #61697f;

  opacity: 0.7;
}

.earnings .btn-white {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  gap: 11px;
  background: #ffffff;
  border-radius: 5px;
}

.earnings .btn-white.btn-white-font {
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  flex: none;
  order: 0;
  flex-grow: 0;
  color: #4152cb;
}

.earnings .datails-1 {
  position: absolute;
  top: 90%;
  left: 25%;
}

.earnings .datails-2 {
  position: absolute;
  top: -10%;
  left: 12%;
  opacity: 0.5;
}

.earnings .datails-3 {
  position: absolute;
  top: 90%;
  left: 75%;
  opacity: 0.5;
}

.earnings .datails-4 {
  position: absolute;
  top: -10%;
  left: 85%;
  opacity: 0.5;
}

.earnings .datails-5 {
  position: absolute;
  top: -10%;
  left: 89.8%;
  opacity: 0.5;
}

.earnings .datails-6 {
  position: absolute;
  top: 100%;
  left: -16%;
  opacity: 0.5;
}

.earnings .datails-7 {
  position: absolute;
  top: 79%;
  left: 108%;
  opacity: 0.5;
}

.earnings svg path {
  fill: #000;
}

/* Appointment */

.appointment h1 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;

  color: #2c3242;
}

.appointment p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;

  color: #61697f;
}

.appointment .btn-primary-font {
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;

  color: #ffffff;
}

.appointment .shadow-2 {
  position: absolute;
  top: 98%;
  left: 20%;
}

.appointment .avatar-1 {
  position: absolute;
  top: 5%;
  left: 85%;
  z-index: 1;
}

.appointment .avatar-bg-1 {
  position: absolute;
  top: 1.3%;
  left: 83.3%;
}

.appointment .avatar-2 {
  position: absolute;
  top: 25%;
  left: -25%;
  z-index: 1;
}

.appointment .avatar-bg-2 {
  position: absolute;
  top: 21.4%;
  left: -28%;
}

.appointment .avatar-3 {
  position: absolute;
  top: 79%;
  left: -8%;
  z-index: 1;
}

.appointment .avatar-bg-3 {
  position: absolute;
  top: 72.5%;
  left: -15.7%;
}

.appointment .detail-1 {
  position: absolute;
  top: 15%;
  left: 95%;
}

.team{
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 130%;
  padding-bottom: 2rem;

  color: #2c3242;
}

@media only screen and (max-width: 1440px) {
  .appointment .avatar-1 {
    left: 90%;
  }

  .appointment .avatar-bg-1 {
    top: 1.5%;
    left: 87.3%;
  }

  .appointment .avatar-2 {
    left: -24%;
  }

  .appointment .avatar-3 {
    left: -7%;
  }
}

@media screen and (min-width: 651px) and (max-width: 992px) {
  section.appointment {
    padding: 0;
  }

  .appointment h1 {
    font-size: 32px;
    line-height: 140%;
    text-align: center;
  }

  .appointment img {
    display: block;
    margin: 3rem 0;
  }
}

@media screen and (max-width: 650px) {
  section.appointment {
    padding: 2rem 0;
  }

  .appointment h1 {
    font-size: 32px;
    line-height: 140%;
    text-align: center;
  }

  .appointment img {
    display: none;
  }
}

/* Clients Section */

.clients-section {
  background: url("../img/clients-bg.png") no-repeat;
  background-size: cover;
  background-position: center center;
  color: #fff;
  height: 100vh;
}

.clients-section .testimonial {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
}

.clients-section h1 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;
  text-align: center;
  color: #fff;
  position: relative;
}

.clients-section h1::after {
  content: "";
  position: absolute;
  height: 8px;
  width: 80px;
  background: #fff;
  left: 390px;
  top: calc(100% + 12px);
  transition: width 0.3s ease;
  border-radius: 13px;
}

.clients-section h2 {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
}

.clients-section .clientes-card {
  width: 100%;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #f0f1f2;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  min-height: 390px;
  margin: 0 auto;
}

.clientes-card-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.clients-section .title{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clients-section h3 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  color: #2c3242;
}

.clients-section p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #61697f;
  margin: 0;
}
.clients-section .features{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin: 16px 0;
}

.clients-section .icon{
  border-radius: 4px;
  border: 1px solid #00f7d3;
  padding: 4px;
}

@media only screen and (min-width: 1441px) {
  .clients-section {
    height: auto;
  }

  .testimonial {
    margin-top: 6rem;
  }
}

@media only screen and (max-width: 1440px) {
  .clients-section {
    height: auto;
  }

  .clients-section h1::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .clients-section .app-card {
    left: -20px;
  }

  .clients-section .app-card-2 {
    left: 390px;
  }

  .clients-section .app-card-3 {
    left: 800px;
  }

  .clients-section .datails-1 {
    top: -20%;
    left: 97.5%;
  }

  .clients-section .datails-2 {
    left: -11%;
  }

  .clients-section .datails-3 {
    top: 300%;
    left: -9.5%;
  }

  .clients-section .datails-4 {
    top: 270%;
  }
}

@media screen and (max-width: 992px) {
  .clients-section {
    margin-top: 7rem;
  }

  .clients-section h1 {
    font-size: 38px;
  }

  .clients-section h2 {
    font-size: 2rem;
  }

  .clients-section .app-card {
    width: 355px;
    height: 325px;
    left: 10px;
    top: 220px;
  }

  .clients-section .app-card-2 {
    width: 355px;
    height: 325px;
    left: 10px;
    top: 580px;
  }

  .clients-section .app-card-3 {
    width: 355px;
    height: 325px;
    left: 10px;
    top: 940px;
  }

  .clients-section .position img {
    position: absolute;
    left: 6%;
  }

  .clients-section .position p {
    text-align: left;
    width: 310px;
  }

  .clients-section .btn {
    background: #000000;
    color: #fff;
  }

  .clients-section .btn i {
    margin-right: 5px;
    font-size: 24px;
    line-height: 0;
  }

  .clients-section .datails-1 {
    position: absolute;
    top: -10%;
    left: 105%;
    transform: rotate(180deg);
    opacity: 0.5;
  }

  .clients-section .datails-2 {
    position: absolute;
    top: -30%;
    left: -17%;
    transform: rotate(180deg);
    opacity: 0.5;
  }

  .clients-section .datails-3 {
    position: absolute;
    top: 400%;
    left: -15.5%;
    opacity: 0.5;
  }

  .clients-section .datails-4 {
    position: absolute;
    top: 350%;
    left: 105%;
    transform: rotate(20.67deg);
    opacity: 0.5;
  }
}

@media screen and (max-width: 650px) {
  section.app {
    height: auto;
  }

  .clients-section {
    background: url("../img/beneficit-bg-mobile.png") no-repeat;
    background-size: cover;
    height: auto;
    min-height: 1380px;
  }

  .clients-section h1 {
    margin-top: 80px;
    font-size: 7.5vw;
  }

  .app-card {
    width: 100%;
    height: auto;
    position: unset;
    margin-bottom: 20px;
    padding: 24px 12px;
  }

  .app-card .number {
    position: unset;
  }

  .app-card h3 {
    position: unset;
    margin-top: 8px;
  }

  .app-card p {
    position: unset;
    width: 100%;
  }

  .clients-section .app-card-2 {
    position: unset;
  }

  .clients-section .app-card-3 {
    position: unset;
  }

  .clients-section .app-card-4 {
    position: unset;
  }

  .clients-section .app-card-5 {
    position: unset;
  }

  .clients-section .app-card-6 {
    position: unset;
  }
}

@media screen and (max-width: 440px) {
  .clients-section h1 {
    font-size: 5vw;
  }
}

/* FAQ Section */

.faq-section {
  text-align: left;
}

.faq-section .t-muted {
  width: 140px;
  height: 26px;
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;

  color: #61697f;

  opacity: 0.5;
}


.faq-section p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;

  color: #61697f;
}

.faq-section h1 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;
  color: #2c3242;
  text-align: center;
}

.faq-section .btn-whatsapp{
  background:#00CF84
}

.faq-section .btn-mobile{
  gap: 16px;
}
.wrapper {
  display: flex;
}

.collapisable {
  width: 696px;
  overflow: hidden;
  font-weight: 500;
}

.collapisable input {
  display: none;
}

.collapisable label {
  position: relative;
  background: #fff;
  color: #2c3242;
  display: block;
  margin-bottom: 5px;
  cursor: pointer;
  padding: 15px;
  border: 1px solid #f0f1f2;
  border-radius: 5px;
  z-index: 1;

  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  text-align: left;
}

.collapisable label:after {
  content: "";
  position: absolute;
  right: 30px;
  top: 15px;
  width: 25px;
  height: 25px;
  background: url(../img/chevron-down.svg) no-repeat 0 0;
  background-position: center center;
  transition: all 0.3s ease;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  padding: 10px;
  align-items: center;
  justify-content: unset;
  text-align: center;
}

.collapisable input:checked+label:after {
  transform: rotate(180deg);
}

.collapisable-text {
  max-height: 1px;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  top: -100%;
  opacity: 0.5;
  transition: all 0.3s ease;

  border: 1px solid #f0f1f2;
  border-radius: 5px;
}

.collapisable input:checked~.collapisable-text {
  max-height: 100vh;
  padding-bottom: 25px;
  background: #fff;
  opacity: 1;
  top: 0;
}

.collapisable-text p {
  margin-bottom: 5px;
  padding: 15px 15px 0;

  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  color: #61697f;
}

@media screen and (min-width: 651px) and (max-width: 992px) {
  .faq-section .position {
    margin-top: 3rem;
  }

  .collapisable label {
    font-size: 20px;
    padding-right: 80px;
  }

  .collapisable-text p {
    font-size: 18px;
  }

  .collapisable label:after {
    right: 5px;
  }
}

@media screen and (max-width: 650px) {
  .collapisable label {
    font-size: 16px;
    padding-right: 40px;
  }

  .collapisable-text p {
    font-size: 14px;
  }

  .faq-section h1 {
    font-size: 32px;
    line-height: 140%;
    text-align: center;
  }

  img {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 130px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
}

#header.header-scrolled {
  background: #20aad0;
  height: 100px;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 4px 0;
  line-height: 1;
  font-weight: 500;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 80px;
}

#header.header-scrolled .logo img {
  max-height: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  padding: 0 30px;
}

.navbar li:last-child {
  padding-right: 0;
}

.navbar li a,
.navbar li a:focus {
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.sponsor{
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.sponsorImg{
  display: inline-block;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  vertical-align: middle;
  overflow: hidden;
}
.sponsorProfile{
  color: #fff;
  line-height: 18px;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(27, 49, 94, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #101c36;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #2d71a1;
}

@media (max-width: 991px) {
  .navbar-mobile ul {
    background-color: #20aad0;
  }

  .navbar-mobile .mobile-btn {
    margin-left: 2rem;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  background: url(../img/hero-bg.jpg), no-repeat;
  position: relative;
  background-size: cover;
}

.hero-section,
.hero-section>.container>.row {
  height: 100vh;
  min-height: 1000px;
}

.hero-section.inner-page {
  height: 60vh;
  min-height: 0;
}

.hero-section.inner-page .hero-text {
  transform: translateY(-150px);
  margin-top: -120px;
}

.hero-text-image p {
  margin-top: 2rem;
}

@media screen and (min-width: 992px) {
  .hero-section p {
    max-width: 400px;
  }
}

@media screen and (min-width: 651px) and (max-width: 992px) {
  .hero-section.inner-page .hero-text {
    margin-top: -80px;
  }

  .hero-section .hero-text-image {
    margin-top: 4rem;
  }

  .hero-section .hero-wrap {
    text-align: center;
  }

  .section-hero p {
    text-align: center;
  }
}

.hero-section h1 {
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 56px;
  line-height: 120%;
  color: #ffffff;
}

.hero-section h2 {
  width: 773px;
}


.hero-section p {
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #fff;
}

.hero-section .hero-wrap {
  position: relative;
}

.hero-section .hero-wrap .hero-1 {
  position: absolute;
  top: 0%;
  overflow: hidden;
  left: 10%;
  border-radius: 50%;
  width: 120%;
}

.hero-section .hero-wrap .hero-2 {
  position: absolute;
  top: 30%;
  overflow: hidden;
  left: -90%;
  border-radius: 50%;
  width: 135%;
}

.purple {
  color: #6d05cd;
  position: relative;
  display: inline-block;
}

.purple:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 90%;
  background: url(../img/underline.svg) no-repeat;
  height: 100%;
  width: 100%;
}

.purple:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: calc(90% + 4px);
  background: url(../img/underline.svg) no-repeat;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 992px) {

  .hero-section .hero-wrap .hero-2,
  .hero-section .hero-wrap .hero-1 {
    position: relative;
    top: 0;
    max-width: 100%;
  }

  .hero-section .hero-wrap .hero-1 {
    position: unset;
    border-radius: 50%;
    width: 120%;
  }
}

@media screen and (max-width: 992px) {

  .hero-section .hero-wrap .hero-2 {
    margin-top: 30px;
    margin-left: 100px;
    /* width: 450px; */
  }

  @media screen and (max-width: 992px) {
    .hero-section .hero-wrap .hero-2 {
      width: 250px;
      position: absolute;
      margin-top: 0px;
      margin-left: 100px;
    }
  }

  .datails-1 {
    position: absolute;
    top: -10%;
    left: -70%;
    opacity: 0.3 !important;
  }

  .datails-2 {
    position: absolute;
    top: 80%;
    left: -105%;
  }

  .datails-3 {
    position: absolute;
    top: 125%;
    left: 130%;
    opacity: 0.5 !important;
  }

  .datails-4 {
    position: absolute;
    top: 135%;
    left: -246%;
    opacity: 0.5 !important;
  }

  @media only screen and (max-width: 1440px) {

    .hero-section .hero-wrap .hero-2 {
      margin-top: 40px;
      margin-left: 150px;
      width: 120%;
    }

    .datails-1 {
      position: absolute;
      top: -5%;
      left: -65%;
      opacity: 0.3 !important;
    }

    .datails-2 {
      position: absolute;
      top: 90%;
      left: -105%;
    }

    .datails-3 {
      position: absolute;
      top: 90%;
      left: 110%;
      opacity: 0.5 !important;
    }

    .datails-4 {
      position: absolute;
      top: 120%;
      left: -230%;
      opacity: 0.5 !important;
    }
  }

  @media screen and (max-width: 992px) {
    .hero-section {
      background: url(../img/hero-bg-mob.png), no-repeat;
      background-size: cover;
    }

    .hero-section h1 {
      font-size: 36px;
      margin-top: 0;
    }

    .hero-section p {
      line-height: 30px !important;
    }

    .btn-mobile {
      margin-top: 2.5rem;
    }

    .datails-2 {
      top: -10%;
      left: 5%;
    }

    .datails-3 {
      top: 30%;
      left: 80%;
    }
  }

  @media screen and (max-width: 650px) {
    .hero-section {
      height: auto;
    }

    #header .logo img {
      max-height: 65px;
    }

    .hero-section h1 {
      margin-top: 6.5vh;
      font-size: 6.5vw;
    }

    .hero-section p {
      font-size: 4vw;
      text-align: center;
      margin: 3vh 4.5vw;
    }

    .purple {
      margin-bottom: 1.3vh;
    }
  }

  @media screen and (max-width: 400px) {
    .hero-section h1 {
      font-size: 8vw;
      line-height: 150%;
    }

    .hero-section p {
      font-size: 5vw;
    }
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(103.08deg, #4152cb 0%, #1faed1 100%);
  color: #fff;
  padding: 5rem 0 2.5rem 0;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 30px;
}

.footer a,
p {
  color: #fff;
}

.footer .copyright {
  margin-bottom: 0px;
}

.footer .copyright,
.footer .credits {
  font-size: 14px;
}

.social ul {
  padding: 0;
}

.social ul li {
  display: inline;
  margin-left: 5rem;
  margin-right: 5rem;
}

.social ul li svg {
  padding: 0.5rem;
}

@media screen and (max-width: 992px) {
  .social ul li {
    display: inline-block;
    margin-left: 0;
    margin-right: 0;
  }

  .footer .copyright,
  .footer .credits {
    font-size: 12px;
  }
}

.modal{
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.modalContainer{
  padding: 50px 24px 30px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 50%;
}

.modalTitle h1{
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 130%;
  color: #2c3242;
  text-align: center;
}

.modalTitle h2{
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #61697f;
  text-align: center;
}

.closeModal{
  color: #777;
  right: 24px;
  top: 16px;
  position: absolute;
  cursor: pointer;
  font-size: 1.175rem;
}

.closeModal i{
  font-weight: 600;
}

.form{
  margin: 8px 0 0;
}

.form-col{
  display: flex;
  flex-direction: column;
  margin: 0 0 8px;
}

.form-col label {
  display: block;
  margin-bottom: 0.375rem;
  color: #61697f;
  font-size: 16px;
  font-style: normal;
  /* font-weight: 700; */
  line-height: 20px;
  letter-spacing: 0px;
}

.input-default {
  /* width: 100%; */
  padding: 11px 1rem;
  margin: 0 0 5px;
  font-size: 16px;
  border: 2px solid #e0e4e6;
  box-shadow: none;
  border-radius: 4px;
  background: #fff;
  color: #5d5d5d;
  font-weight: 400;
  outline: none;
  line-height: normal;
  transition: all .15s ease-in-out;
}

.step-lead{
  margin: 24px 0 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.step-lead span{
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.button-step{
  display: flex;
  width: 60%;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  background: linear-gradient(93.26deg, #4152cb 0%, #20aad0 100%);
  border: 1px solid rgba(158, 158, 158, 0.2);
  border-radius: 8px;
  cursor: pointer;
  margin: 0 auto;
}

@media screen and (max-width: 650px) {
  .modalContainer{
    width: 100%!important;
    height: 100vh!important;
    padding: 24px;
    overflow-x: auto;
    border-radius: 0px;
  }
  .modalTitle{
    margin-top: 24px;
  }
  .modalTitle h1{
    font-size: 24px;
  }
  .modalTitle .purple {
    margin-bottom: 0;
  }

  .step-lead button{
    width: 100%;
  }
}