@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html {
  font-size: 62.5%;
}
body {
  font-size: 1.6rem;

  overflow-x: hidden;
}

html,
body {
  overflow-x: hidden !important;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;

  font-family: "Poppins", sans-serif;

  /* border: 2px solid red; */
}

button {
  cursor: pointer;
}

/* special */
.colored {
  color: #f79022;
}
.btn {
  display: flex;
  align-items: center;
  gap: 2rem;
  border: none;
  outline: none;

  padding: 12px 24px;
  background-color: #1a1240;
  color: white;
  border-radius: 32px;
}

.hero {
  background-color: #f0f9fd;
  padding: 4rem 0;

  min-height: 65vh;

  position: relative;
}

.spots_wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  height: inherit;
  /* background-color: green; */
}
.spots_container {
  width: 100%;
  height: 100%;

  position: relative;
}
.home_spot1 {
  position: absolute;
  width: 30vw;
  z-index: 100;
}
.home_spot2 {
  position: absolute;
  top: 80vh;
  width: 30vw;
}
.home_spot3 {
  position: absolute;
  right: 0;
  width: 30vw;
}

.navbar {
  width: 75vw;
  background-color: white;

  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  border-radius: 60px;
  padding: 1.4rem 3.2rem;

  position: inherit;
  z-index: 10000 !important;
}

.logo {
  width: 180px;
  height: 39px;
}

.nav_list {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
  font-size: 16px;
}
.nav_list li a {
  text-decoration: none;
  color: #25272c;
}
.active_nav {
  color: #170d45;
  font-weight: 700;
}

.nav_btn {
  display: flex;
  align-items: center;
  gap: 2rem;
  border: none;
  outline: none;

  padding: 12px 24px;
  background-color: #1a1240;
  color: white;
  border-radius: 32px;
}

.blue_nav_btn {
  background-color: #6bc1ec !important;
}

.hero_main {
  margin: auto;
  width: 80%;
  margin-top: 8rem;
}
.hero_main_top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  gap: 1rem;
}

.hero_main_top h1 {
  font-size: 55px;
  width: 90%;
}
.hero_sub_txt {
  width: 60%;
}

.hero_action_btn {
  display: flex;
  align-items: center;

  margin: 2.4rem;
  padding: 1.2rem 2.4rem;
  gap: 1.5rem;
  border-radius: 2.4rem;

  border: none;
  outline: none;

  color: #150e32;
  background-color: #6bc1ec;

  font-size: 15px;
  font-weight: 400;
}

.download_stats {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.download_stats > svg {
  width: 170px;
}
.download_stats div {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.2rem;

  color: #0c081d;
  font-size: 15px;
  font-weight: 500;
}
.download_stats div > svg {
  width: 90px;
}

.hero_main_bottom {
  width: 90%;
  margin: 2rem auto;

  display: grid;
  grid-template-columns: 30fr 40fr 30fr;
  gap: 4rem;
}

.clients_stats_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem 2rem;

  background-color: rgba(248, 248, 248, 0.241);
  border: 3px solid white;
  border-radius: 0.3rem;
}
.clients_stats_box div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.clients_stats_box div p {
  color: #0c081d;
  font-size: 14px;
}
.clients_stats_box_head {
  font-weight: 600;
  font-size: 16px;
}

.highlight_box {
  background-color: white;
  padding: 1rem;
  margin-top: 5rem;

  display: flex;
  flex-direction: column;
  gap: 1rem;

  background-color: rgba(248, 248, 248, 0.241);
  border: 3px solid white;
  border-radius: 0.3rem;
}
.highlight_list li {
  display: flex;
  justify-content: space-between;
  line-height: 3;
}
.highlight_list li small:first-child {
  color: #0c081d;
  font-weight: 400;
}

.rate_box {
  display: flex;
  align-items: center;
}

.increase {
  color: #35c74d !important;
}
.dip {
  color: #f79022 !important;
}

.phone_image_wrapper img {
  width: 100%;
  height: auto;
}

.customer_support_box {
  display: flex;
  align-items: center;
  padding: 2rem 2rem;
  background-color: white;

  background-color: rgba(248, 248, 248, 0.241);
  border: 3px solid white;
  border-radius: 0.3rem;
  gap: 1rem;
}

.social_med_box {
  margin-top: 5rem;
  background-color: white;
  padding: 2rem;

  display: flex;
  flex-direction: column;
  gap: 1.5rem;

  background-color: rgba(248, 248, 248, 0.241);
  border: 3px solid white;
  border-radius: 0.3rem;
}

.mobile_nav_toggle {
  display: none;
}

.hero_mobile_bottom {
  display: none;
}
.hero_mobile_bottom .social_med_box {
  margin-top: 2rem;
}

@media (max-width: 1150px) {
  .navbar {
    width: 90%;
  }
}

@media (max-width: 970px) {
  .nav_list {
    display: none;
  }
  .nav_btn {
    display: none;
  }
  .mobile_nav_toggle {
    display: block;
  }
  .navbar > svg {
    width: 150px; /* desired width */
    height: auto; /* desired height */
  }
}

@media (max-width: 760px) {
  .hero_main_top h1 {
    font-size: 40px;
    margin-top: 3rem;
  }
}

@media (max-width: 580px) {
  .hero_main_top h1 {
    font-size: 30px;
    margin-top: 5rem;
  }

  .navbar > svg {
    width: 120px;
    height: auto;
  }
}

@media (max-width: 420px) {
  .hero_mobile_bottom {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: auto;
  }

  .social_med_box h3 {
    font-size: 15px;
  }
  .social_med_box p {
    font-size: 13px;
  }

  .clients_stats_box svg {
    width: 4rem;
    height: auto;
  }

  .clients_stats_box p {
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .navbar > svg {
    width: 100px;
    height: auto;
  }

  .hero_mobile_bottom {
    width: 100%;
  }

  .clients_stats_box {
    padding: 1.5rem 1rem;
  }

  .social_med_box {
    padding: 1.5rem 1rem;
  }
  .social_med_box small {
    font-size: 11px;
  }

  .clients_stats_box svg {
    width: 3rem;
    height: auto;
  }
  .clients_stats_box div p {
    font-size: 11px;
  }
}

/* homepage hero */
@media (max-width: 1200px) {
  .hero_main {
    width: 90%;
  }
  .hero_main_bottom {
    width: 100%;
  }
  .hero_main_top h1 {
    font-size: 48px;
  }
}

@media (max-width: 880px) {
  .hero_main {
    width: 90%;
  }
  .hero_main_bottom {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero_main_bottom div {
    display: none;
  }
  .phone_image_wrapper {
    display: block !important;
    margin: auto;

    width: 40%;
  }
  .hero_main_top h1 {
    font-size: 38px;
  }
}

@media (max-width: 720px) {
  .phone_image_wrapper {
    width: 50%;
  }
  .hero_main_top h1 {
    font-size: 30px;
  }
}

@media (max-width: 650px) {
  .phone_image_wrapper {
    width: 60%;
  }
  .hero_main_top h1 {
    font-size: 25px;
  }
  .hero_main_top p {
    width: 80%;
  }

  .download_stats p {
    width: 100%;
  }
}

@media (max-width: 550px) {
  .phone_image_wrapper {
    width: 70%;
  }
  .hero_main_top h1 {
    font-size: 20px;
  }
  .hero_main_top p {
    width: 90%;
  }

  .download_stats {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .download_stats div {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 440px) {
  .phone_image_wrapper {
    width: 80%;
  }
  .hero_main_top h1 {
    font-size: 18px;
  }
  .hero_main_top p {
    width: 95%;
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .phone_image_wrapper {
    width: 90%;
  }
  .hero_main_top h1 {
    font-size: 17px;
    line-height: 2;
  }
  .hero_main_top p {
    width: 97%;
    font-size: 13px;
    line-height: 2;
  }
}

@media (max-width: 400px) {
  .hero_main_top h1 {
    width: 100%;
  }

  .hero_main_top p {
    width: 100%;
    font-size: 12px;
  }
}

/* parners */
.parners {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;

  margin: 5rem 0;
}

.parners h1 {
  color: #0a1519;
  font-weight: 600;
  font-size: 30px;
}

.partners_logo_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 3rem;
  width: 60%;
  margin: auto;
}
.partners_logo_wrapper svg {
  width: 100%;
}

.parners small {
  color: #433c65;
  font-weight: 400;
}

@media (max-width: 900px) {
  .partners_logo_wrapper {
    width: 80%;
  }
  .parners h1 {
    font-size: 25px;
  }
}

@media (max-width: 600px) {
  .partners_logo_wrapper {
    width: 80%;
    grid-template-columns: repeat(2, 1fr);
  }

  .parners h1 {
    font-size: 20px;
  }
  .parners small {
    font-size: 12px;
    width: 90%;
    margin: auto;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .partners_logo_wrapper {
    width: 80%;
  }

  .parners h1 {
    font-size: 18px;
  }
  .partners_logo_wrapper {
    gap: 1.5rem;
  }
  .partners_logo_wrapper svg {
    width: 80%;
  }
}

/* one_step_ahead */
.one_step_ahead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding-top: 5rem;
}
.one_step_ahead > h1 {
  font-size: 45px;
  width: 50%;
  text-align: center;
  margin-bottom: 1.2rem;
}

.currency_exchange_boxex_wrapper {
  display: grid;
  grid-template-columns: 60fr 40fr;
  width: 70%;
  margin: auto;
  margin: 2rem 0;
  gap: 2rem;
}

.currency_exchange_box {
  background-color: #f0f9fd;

  padding: 4rem 5rem;
  border-radius: 30px;

  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.currency_converter {
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  width: 80%;
  margin: auto;
  border-radius: 20px;
  padding: 2rem 3rem;
}
.single_converter {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.single_converter p {
  font-size: 12px;
  font-weight: 400;
}
.single_converter input {
  border: none;
  outline: none;
  margin-left: 0.8rem;
}
.single_converter button {
  border: 1px solid #e2e2e2;

  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 20px;
}
.demacator {
  border-top: 1px solid #e2e2e2;
  position: relative;
  margin: 4rem 0;
}
.demacator button {
  position: absolute;
  right: 0;
  top: -2.2rem;

  background-color: #fef4e9;
  border: none;
  outline: none;
  padding: 1rem 2rem;
  border-radius: 20px;

  color: #f79022;
}

.excange_cta_btn_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.excange_cta_btn_wrapper button {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

.all_in_one_box {
  border: 1px solid #35c74d;
  background-color: #e2efe3;
  padding: 3rem 2rem;
  border-radius: 30px;

  position: relative;
}

@media (max-width: 1370px) {
  .one_step_ahead > h1 {
    width: 70%;
    font-size: 40px;
  }
}

@media (max-width: 1250px) {
  .currency_exchange_boxex_wrapper {
    width: 80%;
  }
  .circle-wrapper {
    display: none;
  }

  .one_step_ahead > h1 {
    font-size: 35px;
  }
}

@media (max-width: 1100px) {
  .currency_exchange_boxex_wrapper {
    width: 90%;
  }

  .one_step_ahead > h1 {
    font-size: 28px;
  }
}

@media (max-width: 980px) {
  .currency_exchange_boxex_wrapper {
    width: 60%;
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 820px) {
  .one_step_ahead > h1 {
    font-size: 20px;
  }
  .currency_exchange_boxex_wrapper {
    width: 80%;
  }
}

@media (max-width: 600px) {
  .one_step_ahead > h1 {
    font-size: 18px;
  }
  .currency_exchange_boxex_wrapper {
    width: 90%;
  }

  .currency_converter {
    width: 100%;
  }

  .single_converter p {
    font-size: 10px;
  }
  .demacator button {
    font-size: 10px;
  }
}

@media (max-width: 490px) {
  .one_step_ahead > h1 {
    width: 90%;
    margin: auto;
    text-align: center;
  }

  .currency_exchange_boxex_wrapper {
    width: 90%;
  }

  .currency_exchange_box {
    /* padding: 2rem 1.5rem; */
    padding: 2rem 0;
  }

  .exchange_box_top {
    padding: 0 1.5rem;
  }

  .currency_converter {
    width: 90%;
  }

  .currency_converter {
    /* margin: 1rem; */
  }

  .currency_exchange_box h2 {
    font-size: 15px;
  }

  .currency_exchange_box small {
    font-size: 12px;
  }

  .all_in_one_box h2 {
    font-size: 15px;
  }

  .all_in_one_box small {
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .one_step_ahead > h1 {
    width: 90%;
    font-size: 17px;
  }

  .currency_exchange_boxex_wrapper {
    width: 95%;
  }

  .currency_exchange_box {
    /* padding: 2rem 1.5rem; */
    padding: 0 0;
  }

  .exchange_box_top {
    padding: 0 0;
  }
}

/* ====== FIX OVERFLOW + FORCE RESPONSIVENESS ====== */

/* Prevent children from pushing outside the parent */
.currency_exchange_box,
.all_in_one_box {
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Fix grid overflowing due to fr units */
.currency_exchange_boxex_wrapper {
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Make the currency converter shrink instead of overflow */
.currency_converter {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Prevent the inner flex items from pushing wider */
.single_converter {
  flex-wrap: wrap;
}

/* Ensure input doesn’t stretch past its parent */
.single_converter input {
  max-width: 100%;
}

/* Ensure long button text never forces overflow */
.single_converter button,
.demacator button {
  white-space: nowrap;
}

/* Reduce padding on very small screens only */
@media (max-width: 420px) {
  .currency_exchange_box {
    padding: 1.5rem 1rem;
  }

  .currency_converter {
    padding: 1.2rem 1rem;
  }

  .all_in_one_box {
    padding: 2rem 1rem;
  }
}

/* Handle extremely small devices (down to 300px) */
@media (max-width: 340px) {
  .single_converter {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .single_converter button {
    align-self: flex-start;
  }
}

.card {
  width: 330px;
  padding: 25px;
  border: 2px solid #aee6c4;
  border-radius: 20px;
  background: #e9f9ef;
  position: relative;
  overflow: hidden;
  font-family: sans-serif;
}

/* wrapper for ALL circles */
.circle-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* circles won’t block clicks */
}

/* placeholder circle */
.circle {
  position: absolute;
  width: 110px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
}

/* position each */
.circle:nth-child(1) {
  top: 320px;
  left: 10px;
}
.circle:nth-child(2) {
  top: 160px;
  left: 140px;
}
.circle:nth-child(3) {
  top: 270px;
  left: 150px;
}
.circle:nth-child(4) {
  top: 250px;
  right: 20px;
}
.circle:nth-child(5) {
  top: 350px;
  right: 20px;
}

/* placeholder coin icons */
.coin {
  position: absolute;
  width: 30%;
}
.coin svg {
  width: 100%;
  height: auto;
}

/* adjust coin positions */
.coin-1 {
  top: 30%;
  left: 0;
  /* width: 40%; */
}
.coin-2 {
  top: 22%;
  right: 0;
}

/* single_grid_box */
.single_grid_box {
  width: 65%;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;

  margin-top: 2rem;
}

.single_box:first-child {
  border: 1px solid #417690;
  background-color: #d7e2f4;
}
.single_box:last-child {
  border: 1px solid #9b51e0;
  background-color: #eae5ff;
}
.single_box {
  padding: 4rem 4rem;
  border-radius: 20px;

  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.single_grid_box div h1 {
  font-size: 2.5rem;
}
.single_grid_box div small {
  font-size: 1.2rem;
}
.single_grid_box div svg {
  width: 90%;
  height: 40vh;
}

@media (max-width: 1250px) {
  .single_grid_box {
    width: 75%;
  }
}

@media (max-width: 1150px) {
  .single_grid_box {
    width: 85%;
  }
}

@media (max-width: 980px) {
  .single_grid_box {
    grid-template-columns: repeat(1, 1fr);
    width: 50%;
  }
}

@media (max-width: 860px) {
  .single_grid_box {
    grid-template-columns: repeat(1, 1fr);
    width: 60%;
  }

  .single_box {
    padding-bottom: 0;
  }
}

@media (max-width: 700px) {
  .single_grid_box {
    width: 70%;
  }
}

@media (max-width: 620px) {
  .single_box {
    padding: 2rem;
  }

  .single_box {
    gap: 0.5rem;
  }
}

@media (max-width: 530px) {
  .single_grid_box {
    width: 80%;
  }
}

@media (max-width: 450px) {
  .single_grid_box {
    width: 90%;
  }
}

.customer_support_cards_wrapper {
  background-color: #eef3f7;
  padding: 3rem 4rem;
  border-radius: 30px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;

  width: 70%;
  margin: auto;
  margin-top: 4rem;
}

.support_card {
  background-color: #1d1446;
  padding: 5rem 3rem;
  color: white;
  border-radius: 30px;

  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-start;
}
.support_card > h1 {
  line-height: 1.5;
  font-size: 3.8rem;
  font-weight: 500;
}
.support_card > p {
  line-height: 2.5;
  font-size: 1.8rem;
}
.support_card button {
  display: flex;
  align-items: center;

  margin: 2.4rem 0;
  padding: 1.2rem 2.4rem;
  gap: 1.5rem;
  border-radius: 2.4rem;

  border: none;
  outline: none;

  color: white;
  background-color: #6bc1ec;

  font-size: 15px;
  font-weight: 400;
}

.image_support_card img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1250px) {
  .customer_support_cards_wrapper {
    width: 75%;
  }
}

@media (max-width: 1150px) {
  .customer_support_cards_wrapper {
    width: 85%;

    padding: 1.5rem;
    gap: 1.5rem;
  }

  .support_card > h1 {
    font-size: 2.5rem;
  }

  .support_card > p {
    font-size: 1.5rem;
  }
}

@media (max-width: 980px) {
  .customer_support_cards_wrapper {
    grid-template-columns: repeat(1, 1fr);
    width: 50%;
  }
}

@media (max-width: 860px) {
  .customer_support_cards_wrapper {
    grid-template-columns: repeat(1, 1fr);
    width: 60%;
  }
}

@media (max-width: 700px) {
  .customer_support_cards_wrapper {
    width: 70%;
  }
}

@media (max-width: 620px) {
  .single_box {
    padding: 2rem;
  }

  .support_card > h1 {
    font-size: 2.2rem;
  }

  .support_card > p {
    font-size: 1.3rem;
  }
}

@media (max-width: 530px) {
  .customer_support_cards_wrapper {
    width: 80%;
  }
}

@media (max-width: 450px) {
  .customer_support_cards_wrapper {
    width: 90%;
    padding: 1rem;
  }

  .support_card > h1 {
    font-size: 2rem;
  }

  .support_card > p {
    font-size: 1.1rem;
  }
}

@media (max-width: 400px) {
  .customer_support_cards_wrapper {
    padding: 0.7rem;
  }

  .support_card {
    padding: 3rem 2rem;
  }

  .support_card > h1 {
    font-size: 1.5rem;
  }

  .support_card > p {
    font-size: 1.1rem;
  }

  .support_card button {
    font-size: 12px;
  }
}

/* review section */
.review_section {
  background-color: #f0f9fd;
  margin-top: 8rem;

  padding: 5rem 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.review_section > small {
  margin-top: 4rem;
}

.review_header {
  width: 60%;
  margin: auto;
  margin-bottom: 3rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.review_header h1 {
  font-size: 3.5rem;
  width: 60%;
  color: #0a1519;
  margin-bottom: 1rem;
}

.review_boxes_Wrapper {
  width: 70%;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;

  margin-top: 7rem;
}

.review_box {
  border-radius: 20px;

  display: flex;
  flex-direction: column;
  gap: 1.5rem;

  padding: 2rem;
}
.review_box svg {
  width: 45%;
  height: auto;
}
.review_writer {
  font-weight: 600;
  font-size: 15px;
}

.review_box:first-child {
  transform: rotate(-4deg);
}

.review_box:nth-child(2) {
  transform: rotate(2deg);
  margin-top: -25px;
}

.review_box:nth-child(3) {
  transform: rotate(3deg);
  margin-top: -15px;
}

.review_box:nth-child(4) {
  transform: rotate(-2deg);
  margin-top: 10px;
}

.review_box:nth-child(5) {
  transform: rotate(-3deg);
  margin-top: 20px;
}

.review_box:first-child {
  background-color: black;
  color: white;
}
.review_box:nth-child(2) {
  background-color: #8a8ef6;
  color: white;
}
.review_box:nth-child(3),
.review_box:nth-child(4) {
  background-color: #ffffff;
  color: black;
}
.review_box:nth-child(5),
.review_box:nth-child(6) {
  background-color: #dff8bd;
  color: black;
}

.review_cta {
  width: 70%;

  background-color: #6bc1ec;

  display: grid;
  grid-template-columns: 65fr 35fr;
  margin: 5rem auto;

  border-radius: 60px;
  overflow: hidden;
}

.review_cta div {
  padding: 42px;
}

.cta_txt {
  font-size: 18px;
  font-weight: 400;
  width: 70%;

  line-height: 1.8;

  color: #0c081d;
}

.review_btn {
  display: flex;
  align-items: center;

  margin: 2.4rem 0;
  padding: 1.2rem 2.4rem;
  gap: 1.5rem;
  border-radius: 2.4rem;

  border: none;
  outline: none;

  color: white;
  background-color: #1a1240;

  font-size: 15px;
  font-weight: 400;
}

.review_cta img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1250px) {
  .review_header h1 {
    width: 100%;
    font-size: 3rem;
  }
  .review_boxes_Wrapper {
    width: 80%;
  }
  .review_cta {
    width: 80%;
  }
}

@media (max-width: 1130px) {
  .review_boxes_Wrapper {
    width: 85%;
  }
}

@media (max-width: 970px) {
  .review_boxes_Wrapper {
    width: 75%;
    grid-template-columns: repeat(2, 1fr);
  }

  .cta_txt {
    font-size: 14px;
  }
}

@media (max-width: 830px) {
  .review_header h1 {
    font-size: 2.5rem;
  }
  .review_boxes_Wrapper {
    width: 80%;
  }

  .cta_txt {
    font-size: 20px;
    width: 100%;
  }
  .review_cta {
    grid-template-columns: repeat(1, 1fr);
    width: 70%;
  }
}

@media (max-width: 720px) {
  .review_header h1 {
    font-size: 2.1rem;
  }
  .review_boxes_Wrapper {
    grid-template-columns: repeat(1, 1fr);
    width: 60%;
  }
}

@media (max-width: 650px) {
  .review_cta {
    width: 80%;
  }
}

@media (max-width: 580px) {
  .review_header h1 {
    font-size: 2rem;
  }
  .review_header {
    width: 70%;
  }
  .review_boxes_Wrapper {
    grid-template-columns: repeat(1, 1fr);
    width: 70%;
  }

  .review_cta div {
    padding-inline-start: 20px;
  }
  .cta_txt {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .review_header {
    width: 80%;
  }
  .review_boxes_Wrapper {
    width: 80%;
  }

  .review_cta {
    width: 90%;
  }
  .cta_txt {
    font-size: 14px;
  }

  .review_txt {
    font-size: 15px;
  }
  .review_box {
    font-size: 14px;
  }
}

@media (max-width: 410px) {
  .review_header {
    width: 90%;
  }
  .review_header h1 {
    font-size: 1.8rem;
  }
  .review_boxes_Wrapper {
    width: 90%;
  }
}

.number_stats_section {
  padding: 5rem 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.number_stats_header {
  text-align: center;
}
.number_stats_header h1 {
  color: #0a1519;
  font-weight: 500;
  font-size: 40px;
}

.number_stats_cards_wrapper {
  display: grid;
  grid-template-columns: 32fr 36fr 32fr;
  gap: 3rem;

  align-items: flex-end;

  width: 75%;
  margin: 3rem auto;
}
.number_stats_cards_wrapper > div:first-child {
  background-color: #f2f8f2;
  border: 1px solid #dff8bd;
  border-radius: 30px;
  overflow: hidden;
}

.number_stats_cards_wrapper > div:first-child > div {
  padding: 3rem 2rem;
}

.number_stats_cards_wrapper > div:first-child > div:last-child {
  background-color: #e2efe3;
}

.number_stats_cards_wrapper > div:first-child > div:last-child h2 {
  font-size: 30px;
  font-weight: 500;
  color: #000000;
}

.six_images_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.six_images_wrapper div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.six_images_wrapper div:nth-child(2) {
  /* background-color: red; */
  margin-top: -4rem;
}

.six_images_wrapper svg {
  width: 6rem;
}

.number_stats_cards_wrapper > div:last-child {
  background-color: #fef4e9;
  border: 1px solid #a9dbf4;
  border-radius: 30px;
  overflow: hidden;

  padding: 0 2rem;
  padding-right: 3rem;

  display: flex;
  justify-content: space-between;
}

.user_retention {
  padding: 3rem 1rem;
  width: 70%;
  align-self: flex-end;
}

.user_retention h2 {
  font-size: 30px;
  font-weight: 500;
  color: #000000;
}

.four_images_wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.four_images_wrapper svg {
  width: 6rem;
  /* height: 3rem; */
}

.rmb_stats_card {
  border: 1px solid #a9dbf4;
  background-color: #f0f9fd;

  padding: 4rem 3rem;
  border-radius: 30px;

  position: relative;
}

.rmb_stats_card h2 {
  font-size: 30px;
  font-weight: 500;
  color: #000000;
}

.rmb_stats_card svg {
  width: 72%;
  display: block;
  margin: auto;
}

.floating_yen {
  position: absolute;
  right: -3.2rem;
  top: 15%;
}

.floating_naira {
  position: absolute;
  left: -2.2rem;
  top: 50%;
}

@media (max-width: 1250px) {
  .number_stats_cards_wrapper {
    width: 85%;
    gap: 2rem;
  }
}

@media (max-width: 1090px) {
  .number_stats_cards_wrapper {
    width: 90%;
  }
}

@media (max-width: 990px) {
  .number_stats_cards_wrapper {
    grid-template-columns: repeat(1, 1fr);
    width: 40%;
  }
}

@media (max-width: 860px) {
  .number_stats_cards_wrapper {
    width: 50%;
  }
}

@media (max-width: 690px) {
  .number_stats_cards_wrapper {
    width: 60%;
  }
  .number_stats_header h1 {
    font-size: 30px;
  }
}

@media (max-width: 570px) {
  .number_stats_cards_wrapper {
    width: 70%;
  }
}

@media (max-width: 480px) {
  .number_stats_cards_wrapper {
    width: 80%;
  }
  .number_stats_header h1 {
    font-size: 22px;
  }
  .number_stats_header p {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .number_stats_cards_wrapper {
    width: 90%;
  }
}

.digitsend_loyalty {
  padding: 5rem 0;
  background-color: #140e31;
  color: white;

  display: flex;
  flex-direction: column;
  gap: 7rem;
  justify-content: center;
  align-items: center;
}

.loyalty_header {
  text-align: center;

  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.loyalty_header h1 {
  font-weight: 500;
  font-size: 4.7rem;
}

.loyalty_main {
  display: grid;
  grid-template-columns: 30fr 40fr 30fr;

  width: 80%;
  margin: auto;
}

.loyalty_cards_wrapper {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}
.loyalty_card {
  padding: 5rem 2rem;
  color: black;

  padding-top: 7rem;

  border-radius: 30px;
}

.loyalty_cards_wrapper:first-child .loyalty_card:first-child {
  background-color: #84ccef;
  transform: rotateZ(7deg);
}
.loyalty_cards_wrapper:first-child .loyalty_card:last-child {
  background-color: #ffffff;
  transform: rotateZ(-5deg);
  margin-top: 1rem;
}

.loyalty_cards_wrapper:last-child .loyalty_card:first-child {
  background-color: #f8a348;
  transform: rotateZ(-5deg);
}
.loyalty_cards_wrapper:last-child .loyalty_card:last-child {
  background-color: #dcfce7;
  transform: rotateZ(4deg);
}

.loyalty_img_wrapper {
  display: flex;
  justify-content: center;
}
.loyalty_img_wrapper img {
  width: 70%;
  height: 100%;
}

@media (max-width: 1100px) {
  .loyalty_main {
    width: 90%;
  }
  .loyalty_header h1 {
    font-size: 3.5rem;
  }
  .loyalty_card {
    padding: 3rem 2rem;
  }
}

@media (max-width: 930px) {
  .loyalty_card {
    font-size: 14px;
  }
}

@media (max-width: 750px) {
  .loyalty_main {
    grid-template-columns: repeat(1, 1fr);
    width: 80%;
    gap: 4rem;
  }

  .loyalty_header h1 {
    font-size: 3rem;
  }

  .loyalty_cards_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .loyalty_img_wrapper {
    width: 60%;
    margin: auto;
  }

  .loyalty_img_wrapper svg {
    width: 60%;
    height: auto;
  }
}

@media (max-width: 570px) {
  .loyalty_main {
    width: 90%;
  }
  .loyalty_header h1 {
    font-size: 2.7rem;
  }
  .loyalty_header small {
    width: 90%;
    margin: auto;
    line-height: 2;
  }
}

@media (max-width: 540px) {
  .loyalty_cards_wrapper {
    gap: 1rem;
  }
}

@media (max-width: 500px) {
  .loyalty_card {
    font-size: 12px;
    padding: 2rem 1rem;
  }
}

@media (max-width: 430px) {
  .loyalty_cards_wrapper {
    grid-template-columns: repeat(1, 1fr);
    width: 80%;
    margin: auto;
    gap: 2rem;
  }
  .loyalty_card {
    padding: 3rem;
  }

  .loyalty_header h1 {
    font-size: 2.2rem;
  }
  .loyalty_header small {
    font-size: 12px;
  }
}

.steps_display {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  justify-content: center;
  align-items: center;

  padding: 8rem 0;
}

.steps_header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.steps_header h1 {
  color: #0c081d;
  font-weight: 500;
  font-size: 34px;
}

.steps_cards_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;

  width: 85%;
  margin: auto;
}
.steps_cards_wrapper > div {
  display: flex;
  flex-direction: column;
  gap: 5rem;

  padding: 30px;
  border-radius: 30px;
  padding-bottom: 0;
}

.step_card_top button {
  border: none;
  outline: none;
  padding: 8px 12px;
  border-radius: 10px;
}
.step_card_top h1 {
  font-size: 28px;
  font-weight: 500;
  color: #120c2b;
}

.download_btn_wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
}
.download_btn_wrapper img {
  width: 150px;
  height: auto;
}

.step_img_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;

  flex: 1;
}
.step_img_wrapper svg {
  width: 100% !important;
  height: 100% !important;
}
.step_img_wrapper img {
  width: 100% !important;
  height: 100% !important;
}

.step_one {
  border: 1px solid #6bc1ec;
  background-color: #f0f9fd;
}
.step_one button {
  color: #120c2b;
  background-color: #84ccef;
  margin-bottom: 1rem;
}

.step_two {
  border: 1px solid #e2f8e4;
  background-color: #e2f8e4;
}
.step_two button {
  color: #120c2b;
  background-color: #6fcf97;
  margin-bottom: 1rem;
}

.step_three {
  border: 1px solid #c2e6f7;
  background-color: #d7e2f4;
}
.step_three button {
  color: white;
  background-color: #1d1446;
  margin-bottom: 1rem;
}

@media (max-width: 1250px) {
  .step_card_top h1 {
    font-size: 20px;
  }
  .download_btn_wrapper img {
    width: 100px;
  }
}

@media (max-width: 1100px) {
  .step_card_top h1 {
    font-size: 17px;
  }
}

@media (max-width: 980px) {
  .steps_cards_wrapper {
    width: 90%;
    gap: 1rem;
  }
}

@media (max-width: 860px) {
  .steps_header h1 {
    font-size: 28px;
  }

  .steps_cards_wrapper {
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
    width: 50%;
  }
}

@media (max-width: 660px) {
  .steps_header h1 {
    font-size: 24px;
  }

  .steps_cards_wrapper {
    width: 55%;
  }
}

@media (max-width: 550px) {
  .steps_cards_wrapper {
    width: 70%;
  }
}

@media (max-width: 420px) {
  .steps_header h1 {
    font-size: 19px;
  }

  .steps_cards_wrapper {
    width: 80%;
  }
}

@media (max-width: 390px) {
  .steps_cards_wrapper > div {
    padding: 15px;
    padding-bottom: 0;
    overflow: hidden;
  }

  .steps_cards_wrapper {
    width: 90%;
  }
}

.trust_cta {
  width: 80%;
  margin: 5rem auto;

  padding: 32px 28px;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;

  background-color: #fef3c7;

  border-radius: 40px;
}

.trust_cta h1 {
  font-weight: 300;
  font-size: 30px;
  width: 60%;
  margin: auto;
  line-height: 1.8;
}

.trust_action_btn {
  display: flex;
  align-items: center;

  margin: 2.4rem;
  padding: 1.2rem 2.4rem;
  gap: 1.5rem;
  border-radius: 2.4rem;

  border: none;
  outline: none;

  color: white;
  background-color: #f79022;

  font-size: 15px;
  font-weight: 400;
}

@media (max-width: 1250px) {
  .trust_cta h1 {
    font-size: 25px;
    width: 75%;
  }
}

@media (max-width: 950px) {
  .trust_cta {
    width: 90%;
  }
  .trust_cta h1 {
    font-size: 20px;
    width: 100%;
  }
}

@media (max-width: 860px) {
  .trust_cta {
    width: 70%;
  }
  .trust_cta h1 {
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  .trust_cta {
    width: 80%;
  }
  .trust_cta h1 {
    font-size: 16px;
  }
}

@media (max-width: 470px) {
  .trust_cta {
    width: 90%;
  }
  .trust_cta h1 {
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  .trust_cta {
    width: 90%;
  }
  .trust_cta h1 {
    font-size: 22px;
  }
}

.faq_container {
  display: grid;
  grid-template-columns: 30fr 70fr;
  width: 80%;
  gap: 3rem;

  margin: auto;
}
.faq_aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq_aside h1 {
  font-weight: 500;
  font-size: 50px;
  width: 70%;
}
.faq_aside svg {
  width: 40%;
}

.faq_main {
  width: 100%;
}
.faq_cards_wrapper {
  display: grid;
  grid-template-columns: 60fr 20fr 20fr;
  gap: 1rem;
}
.opened_faq {
  background-color: #e8e8ed;
  padding: 4rem;
  border-radius: 30px;
}
.opened_faq h1 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 2rem;
}
.opened_faq p {
  line-height: 2;
  font-size: 16px;
}
.collapsed_faq {
  height: 100%;
  background-color: red;
  border-radius: 30px;

  display: flex;
  align-items: flex-end;
}
.skyblue_faq {
  background-color: #84ccef;
  color: white;
}
.blue_faq {
  background-color: #6142ff;
  color: white;
}
.collapsed_faq h1 {
  transform: rotateZ(-90deg);

  margin-bottom: 7rem;
  font-size: 20px;
}

.faq_action_btn {
  display: flex;
  align-items: center;

  margin: 2.4rem 0;
  padding: 1.2rem 2.4rem;
  gap: 1.5rem;
  border-radius: 2.4rem;

  border: none;
  outline: none;

  color: white;
  background-color: #1a1240;

  font-size: 15px;
  font-weight: 400;
}

@media (max-width: 1300px) {
  .faq_container {
    gap: 2rem;
  }
  .opened_faq {
    font-size: 18px;
    padding: 2.5rem;
  }
  .opened_faq h1 {
    font-size: 18px;
  }
  .opened_faq p {
    font-size: 14px;
    line-height: 1.8;
  }

  .faq_aside {
    gap: 0;
  }
}

@media (max-width: 1080px) {
  .faq_container {
    width: 90%;
  }
}

@media (max-width: 980px) {
  .faq_container {
    width: 70%;
    grid-template-columns: repeat(1, 1fr);
  }
  .faq_aside svg {
    display: none;
  }

  .faq_aside h1 {
    width: 100%;
    font-size: 40px;
  }
}

@media (max-width: 880px) {
  .faq_container {
    width: 80%;
  }

  .faq_aside h1 {
    width: 100%;
    font-size: 30px;
  }
}

@media (max-width: 760px) {
  .faq_container {
    width: 70%;
  }

  .faq_aside h1 {
    width: 100%;
    font-size: 25px;
  }

  .faq_cards_wrapper {
    display: flex;
  }
  .collapsed_faq {
    display: none;
  }

  .opened_faq {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .faq_container {
    width: 80%;
  }

  .opened_faq h1 {
    font-size: 15px;
  }
  .opened_faq p {
    font-size: 13px;
  }
}

/* footer */
.footer {
  background-color: #1d1446;
  margin-top: 10rem;
  border-top-left-radius: 100px;
  border-top-right-radius: 60px;

  padding: 10rem 0;
  /* padding-bottom: 25rem; */

  color: white;

  position: relative;
  overflow: hidden;
}
.footer_logo_wrapper {
  position: absolute;
  bottom: 0;
}
.footer_logo_wrapper svg {
  width: 100vw;
}

.footer_container_top {
  width: 85%;
  margin: auto;

  padding-bottom: 3rem;
  border-bottom: 1px solid #ffffff14;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer_top_main {
  width: 25%;

  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer_top_main p {
  color: #b7bbba;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
.footer_icons_wrapper {
  display: flex;
  gap: 1rem;
}
.footer_list_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5rem;
  width: 70%;
}

.footer_list_wrapper ul li {
  line-height: 2;
  list-style: none;
  color: #b7bbba;
  font-size: 14px;
  font-weight: 400;
}

.footer_list_wrapper ul li:first-child {
  color: white;
}

.footer_download_cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #ffffff0a;
  padding: 2rem;
  border-radius: 10px;

  border: 1px solid #ffffff14;
}
.footer_download_cta svg {
  width: 170px;
  height: auto;
}
.footer_container_bottom {
  width: 80%;
  margin: auto;
  padding: 2rem 0;

  display: flex;
  justify-content: space-between;
  color: #b7bbba;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 1030px) {
  .footer_container_top {
    flex-direction: column;
    gap: 3rem;

    justify-content: center;
    align-items: center;
  }

  .footer_top_main {
    width: 50%;

    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .footer_list_wrapper {
    width: 80%;
  }
}

@media (max-width: 900px) {
  .footer_top_main {
    width: 70%;
  }

  .footer_list_wrapper {
    width: 100%;
  }
}

@media (max-width: 750px) {
  .footer_container_top {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .footer_top_main {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }

  .footer_list_wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .footer_download_cta {
    justify-self: start;
  }
  .footer_container_bottom {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 500px) {
  .footer_container_top {
    width: 90%;
  }
  .footer_container_bottom {
    width: 90%;
  }

  .footer_download_cta p {
    font-size: 15px;
  }
  .footer_download_cta svg {
    width: 120px;
    height: auto;
  }
}

@media (max-width: 430px) {
  .footer_download_cta p {
    font-size: 13px;
  }
  .footer_download_cta svg {
    width: 100px;
    height: auto;
  }
}

@media (max-width: 390px) {
  .footer_container_bottom {
    gap: 1rem;
  }
}
