:root {
  --black: #000;
  --dark-slate-blue: #000;
  --blue-violet: #7644f2;
  --white: white;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--black);
  font-family: Sora, sans-serif;
  font-size: 1rem;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 4rem;
  font-weight: 600;
  line-height: 4.625rem;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.5rem;
}

p {
  color: var(--dark-slate-blue);
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 1.2rem;
  line-height: 2.25rem;
}

.ds-nav {
  background-color: #2b2b2b;
  background-image: radial-gradient(circle farthest-corner at 0% 100%, var(--blue-violet), #0000 43%);
  width: 240px;
  padding-top: 40px;
  position: fixed;
  inset: 0% auto 0% 0%;
  overflow: auto;
}

.ds-menu {
  width: 100%;
}

.ds-menu-link {
  color: #e7ecf0;
  border-left: 4px solid #0000;
  width: 100%;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 27px;
}

.ds-menu-link:hover {
  color: #cbd5df;
}

.ds-menu-link.w--current {
  color: #fff;
  background-color: #33383f;
  padding-right: 0;
  font-weight: 500;
}

.spacer {
  background-color: #e7ecf0;
  height: 48px;
}

.spacer._24 {
  text-transform: uppercase;
  background-color: #0000;
  width: 24px;
  height: 24px;
}

.spacer._16 {
  background-color: #0000;
  flex: none;
  width: 16px;
  height: 16px;
}

.spacer._96 {
  background-color: #0000;
  width: 96px;
  height: 96px;
}

.spacer._48 {
  background-color: #0000;
  border-radius: 6px;
  width: 48px;
}

.spacer._128 {
  background-color: #0000;
  width: 128px;
  height: 128px;
}

.spacer._80 {
  background-color: #0000;
  width: 80px;
  height: 80px;
}

.spacer._32 {
  background-color: #0000;
  border-radius: 6px;
  width: 32px;
  height: 32px;
}

.spacer._64 {
  background-color: #0000;
  width: 64px;
  height: 64px;
}

.color-block {
  color: var(--black);
  background-color: #1d1d1d;
  border-radius: 5px;
  width: 100%;
  height: 60px;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
}

.color-block.blue-violet {
  background-color: var(--blue-violet);
}

.color-block.white {
  background-color: #fff;
  border: 1px solid #e7ecf0;
}

.color-block.dark-slate-blue {
  background-color: var(--dark-slate-blue);
}

.column {
  flex-flow: column;
  flex: 0 auto;
  align-items: stretch;
  min-height: 32px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.column.desk-8 {
  width: 66.6667%;
}

.column.desk-9 {
  width: 75%;
}

.column.desk-4 {
  width: 33.33%;
}

.page-wrapper {
  width: 100%;
  min-height: 90vh;
  position: relative;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #9f5ba4;
  border-radius: 60px;
  flex: none;
  padding: 1rem 2.5rem;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  transition: box-shadow .2s, transform .2s, border-color .2s, color .2s, background-color .2s;
  box-shadow: 0 2px #2020200d;
}

.button:hover {
  background-color: #000;
}

.button:active {
  background-color: #626a72;
  transform: translate(0, 2px);
  box-shadow: 0 0 #20202000;
}

.button.white {
  background-color: var(--white);
  box-shadow: none;
  color: var(--blue-violet);
  align-items: flex-end;
  margin-bottom: 0;
}

.button.white:hover {
  color: #626a72;
  background-color: #e7ecf0;
}

.button.white:active {
  color: #33383f;
  background-color: #cbd5df;
}

.button.is-icon {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  background-color: #000;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  text-decoration: none;
  display: inline-block;
}

.button.is-icon:hover {
  background-color: #9f5ba4;
}

.button.is-icon.butn {
  background-color: #9f5ba4;
  font-family: Poppins, sans-serif;
}

.button.is-icon.butn:hover {
  background-color: #000;
}

.button.is-icon.left {
  margin-left: 20px;
  font-family: Poppins, sans-serif;
}

.visible-spacer {
  background-color: #e7ecf0;
  border-radius: 2px;
  margin-bottom: 24px;
  display: inline-block;
}

.ds-section-header {
  margin-bottom: 50px;
}

.ds-block {
  margin-bottom: 32px;
  font-size: 18px;
}

.paragraph.small {
  opacity: .75;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.4em;
}

.paragraph.large {
  font-size: 20px;
  line-height: 1.5em;
}

.horizontal-line {
  background-color: #e7ecf0;
  width: 100%;
  height: 1px;
  margin-bottom: 36px;
}

.horizontal-line.design-system {
  position: relative;
  bottom: -80px;
}

.ds-colour-block {
  width: 12.5%;
  padding-right: 16px;
  display: inline-block;
}

.ds-description {
  color: #626a72;
  max-width: 400px;
}

._12-columns {
  flex-flow: wrap;
  place-content: stretch center;
  align-items: center;
  margin-left: -16px;
  margin-right: -16px;
  display: flex;
}

._12-columns.align-left {
  justify-content: flex-start;
}

._12-columns.align-top {
  align-items: flex-start;
}

._12-columns.flex-horizontal {
  flex-wrap: nowrap;
  justify-content: flex-start;
  display: flex;
}

.heading {
  font-weight: 600;
  display: block;
}

.heading.h4 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.45em;
}

.heading.h5 {
  color: #33383f;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
}

.heading.h1 {
  margin-bottom: 18px;
  font-size: 46px;
  line-height: 1.25em;
}

.heading.h3 {
  margin-bottom: 12px;
  font-size: 1.375rem;
  line-height: 1.4em;
}

.heading.h6 {
  color: #626a72;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5em;
}

.heading.large-h1 {
  margin-bottom: 18px;
  font-size: 54px;
  line-height: 1.2em;
}

.ds-section {
  z-index: 0;
  text-align: left;
  padding: 60px 80px 48px 60px;
  position: relative;
}

.ds-section.header {
  color: #1d1d1d;
  background-color: #f5f6f7;
}

.ds-title {
  color: #33383f;
  margin-bottom: 8px;
}

.ds-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-left: 240px;
  display: flex;
  position: relative;
}

.ds-colour-grid {
  flex-wrap: wrap;
  margin-top: 24px;
  display: flex;
}

.container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 0;
}

.navbar-section {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: #ffffffb3;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  display: none;
  position: sticky;
  top: 0;
}

.nav-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-block {
  text-decoration: none;
}

.header_text-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-items: center start;
  display: grid;
}

.button-icon_wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  transition: all .2s ease-in;
  display: flex;
}

.header-image-wrapper {
  max-width: 650px;
}

.page-section {
  z-index: 10;
  padding-top: 100px;
  padding-bottom: 100px;
}

.page-section.is-home {
  padding: 75px 20px;
}

.page-section.is-discover {
  background-color: var(--white);
  background-image: linear-gradient(#7644f208, #7644f208), url('../images/bg.svg');
  background-position: 0 0, 0 0;
  display: none;
  overflow: hidden;
}

.page-section.is-manage, .page-section.is-pay, .page-section.is-numbers {
  display: none;
}

.feature_card-content {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto .3fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-content: start flex-start;
  place-items: baseline;
  display: flex;
}

.feature_card-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template: "."
  / .75fr .75fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.eyebrow-text-block {
  background-color: #7644f214;
  border-radius: 20px;
  padding: 9px 20px;
  display: inline-block;
}

.is-pay {
  background-image: linear-gradient(#7644f208, #7644f208), url('../images/bg.svg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat;
  background-size: auto, contain;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.is-manage {
  background-color: var(--white);
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.icon-wrapper {
  height: 100%;
  max-height: 32px;
  display: inline-block;
}

.grid_section-img_left {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.75fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid_section-text-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  display: grid;
}

.grid_section-img_right {
  grid-template-rows: auto;
  grid-template-columns: 1.75fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center space-between;
  place-items: center baseline;
  display: grid;
}

.is-numbers {
  background-color: var(--blue-violet);
  padding-top: 60px;
  padding-bottom: 100px;
  position: relative;
}

.item-card-text {
  color: var(--white);
  text-align: center;
}

.number_item-card {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  mix-blend-mode: normal;
  background-color: #ffffff1a;
  border: 2px solid #fff9;
  border-radius: 25px;
  width: 100%;
  max-width: 340px;
  height: auto;
  min-height: 205px;
  padding: 40px 31.5px;
}

.number_section-item-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  justify-items: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.number_section-header {
  max-width: 300px;
  margin-bottom: 35px;
  margin-left: auto;
  margin-right: auto;
}

.number_section-bg-image-2 {
  position: absolute;
  inset: 0% 0% auto auto;
}

.number_section-bg-image-1 {
  z-index: 0;
  position: absolute;
  inset: auto auto 0% 0%;
}

.footer-section {
  display: none;
}

.footer_content-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  padding: 50px 20px;
  display: grid;
}

.footer-link {
  color: #475467;
  text-align: center;
  font-family: Inter, sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.header_content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-highlight {
  color: var(--blue-violet);
}

.body-wrapper {
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.header_text-paragraph {
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 17px;
  line-height: 27px;
}

.brand {
  width: 320px;
}

.header_text-heading {
  text-align: center;
  margin-top: 0;
  font-family: Poppins, sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 70px;
}

.header_text-heading.left {
  text-align: left;
  font-family: Poppins, sans-serif;
  font-size: 43px;
  font-weight: 500;
  line-height: 55px;
}

.header_text-heading.mobile {
  display: none;
}

.footer_logo {
  width: 200px;
}

.footer_copyright {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.footer_links {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: flex-end;
  display: flex;
}

.item-card-heading {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  font-size: 2.875rem;
  line-height: 1.25em;
}

.clip {
  position: relative;
  overflow: hidden;
}

.button-text.bottom {
  position: absolute;
  bottom: -100px;
}

.text-block-2 {
  text-align: center;
  font-size: 17px;
  line-height: 30px;
}

.text-span {
  color: #9f5ba4;
}

.text-span-2 {
  color: #ff7d27;
}

.link-block-2 {
  background-color: #000;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  height: 50px;
  min-height: 50px;
  padding: 5px 20px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.link-block-2.color {
  background-color: #fff;
  border: 1px solid #000;
  margin-left: 20px;
  display: none;
}

.link-block-2.nocol {
  background-color: #0000;
  border-radius: 0;
}

.link-block-2.nocol.remove {
  display: none;
}

.heading-4 {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
}

.heading-4.btl {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
}

.heading-4.btl.col.l {
  color: #ff7d27;
  font-size: 23px;
  font-weight: 400;
  line-height: 30px;
}

.heading-4.btl.color {
  color: #000;
  font-size: 17px;
}

.div-block-6 {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.div-block-6.size {
  margin-top: 0;
}

.formsec {
  background-color: #ebebeb;
  padding: 75px 20px;
}

.container-2 {
  max-width: 1300px;
}

.soonsec {
  background-image: url('../images/pic-1.png');
  background-position: 0 0;
  background-size: auto;
  height: 280px;
  display: none;
}

.div-block-7 {
  justify-content: space-between;
  width: 100%;
  padding-top: 50px;
  display: flex;
}

.div-block-8 {
  width: 48%;
}

.div-block-9 {
  width: 624px;
}

.div-block-315146 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.heading-24 {
  color: #000;
  margin-top: 0;
  font-family: Poppins, sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 45px;
}

.bold-text-28 {
  font-weight: 500;
}

.bold-text-27 {
  color: #9f5ba4;
  font-weight: 500;
}

.produc-p {
  color: #333;
  text-align: center;
  font-family: Open Sans, sans-serif;
  font-size: 17px;
  line-height: 27px;
}

.italic-text-2 {
  font-style: normal;
}

.heading-25 {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
}

.heading-25.col {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.heading-25.col.font {
  margin-top: 0;
  margin-bottom: -15px;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
}

.heading-25.col.font.mobile {
  display: none;
}

.div-block-5 {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.div-block-5.mobile {
  display: none;
}

.heading-2 {
  color: #000;
  margin-top: 0;
  font-family: Poppins, sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 50px;
}

.heading-3 {
  color: #ff7d27;
  margin-top: 0;
  font-family: Open Sans, sans-serif;
  font-weight: 500;
}

.text-span-159 {
  color: #000;
}

.section-4 {
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  border: 1px #000;
  border-top: 1px solid #71706d;
}

.image-32925 {
  width: 100%;
}

.image-32926 {
  border-radius: 10px;
}

.whatsapp-wrapper-2 {
  background-color: #42c152;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.fixed-chat-bolt.hide {
  z-index: 9999;
  background-color: #0000;
  justify-content: flex-end;
  display: flex;
  position: fixed;
  inset: auto 2% 2% auto;
}

.image-32782 {
  filter: contrast(0%);
}

.link-block-71 {
  text-decoration: none;
}

.chat-bolt-div {
  background-color: #fff;
  border-radius: 6px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 200px;
  height: 80px;
  margin-left: auto;
  padding: 9px;
  display: flex;
  position: fixed;
  inset: auto 2% 10% auto;
  box-shadow: 0 0 12px -4px #b1b1b1;
}

.div-block-914 {
  border: 1px solid #000;
  border-radius: 100px;
  padding: 3px;
}

.xbutton {
  cursor: pointer;
  position: absolute;
  inset: 9% 5% auto auto;
}

.div-block-81 {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.text-block-65 {
  color: #16215c;
  text-align: center;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  position: relative;
}

@media screen and (min-width: 1440px) {
  .div-block-6 {
    width: 41%;
  }

  .div-block-6.size {
    width: auto;
  }

  .chat-bolt-div {
    z-index: 999;
    height: 80px;
  }
}

@media screen and (min-width: 1920px) {
  .div-block-6 {
    width: 38%;
  }

  .div-block-6.size {
    width: auto;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3.75rem;
    line-height: 4.375rem;
  }

  .ds-nav {
    z-index: 10;
    width: 100%;
    padding-top: 20px;
    position: sticky;
    bottom: auto;
    left: auto;
    overflow: visible;
  }

  .ds-menu {
    z-index: 500;
    background-color: #197dff;
    border-bottom: 1px solid #e7ecf0;
    padding-top: 16px;
    padding-bottom: 16px;
    display: block;
    position: absolute;
    inset: 80px auto auto 0%;
  }

  .ds-menu-button {
    color: #fff;
    margin-right: 12px;
    top: -10px;
  }

  .ds-menu-button.w--open {
    background-color: #197dff;
    border-radius: 40px;
  }

  .column {
    width: 50%;
  }

  .button {
    position: relative;
  }

  .ds-block {
    margin-bottom: 40px;
  }

  ._12-columns {
    flex-flow: wrap;
  }

  .heading.h1 {
    font-size: 40px;
  }

  .ds-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .ds-content {
    margin-left: 0;
    position: static;
  }

  .container {
    padding-left: 0;
  }

  .header_text-wrapper {
    text-align: center;
    justify-items: center;
  }

  .header-image-wrapper {
    max-width: 600px;
  }

  .page-section {
    padding-bottom: 50px;
  }

  .page-section.is-home {
    padding-top: 10px;
    padding-bottom: 50px;
  }

  .is-pay {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .is-manage {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .grid_section-img_left {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .grid_section-image-wrapper {
    max-width: 350px;
  }

  .grid_section-img_right {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto auto;
    grid-template-columns: 1.75fr;
    justify-items: center;
  }

  .number_item-card {
    max-width: 340px;
  }

  .footer-link {
    padding: 11px;
  }

  .header_content {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .header_text-heading {
    margin-top: 20px;
  }

  .header_text-heading.left {
    text-align: center;
  }

  .div-block-6.size {
    justify-content: center;
    align-items: center;
  }

  .formsec {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .div-block-7 {
    flex-flow: column;
    padding-top: 0;
  }

  .div-block-8 {
    width: 100%;
    margin-top: 30px;
  }

  .div-block-9 {
    width: 100%;
    height: auto;
    margin-top: 50px;
  }

  .div-block-315146 {
    width: 100%;
  }

  .div-block-5 {
    justify-content: center;
    align-items: center;
  }

  .image-32926 {
    width: 100%;
  }

  .whatsapp-wrapper-2 {
    width: 55px;
    height: 55px;
  }

  .chat-bolt-div {
    justify-content: center;
    height: 100px;
    display: none;
    position: fixed;
    bottom: 10%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.75rem;
    line-height: 3.125rem;
  }

  h2 {
    font-size: 2.375rem;
    line-height: 2.75rem;
  }

  p {
    font-size: 1rem;
    line-height: 1.75rem;
  }

  .spacer {
    height: 32px;
  }

  .spacer._80 {
    width: 64px;
    height: 64px;
  }

  .spacer._64 {
    height: 48px;
  }

  .column.desk-8, .column.desk-9, .column.desk-4 {
    width: 100%;
  }

  .button {
    font-size: .75rem;
  }

  .button.is-icon.butn, .button.is-icon.left {
    font-size: 20px;
  }

  .paragraph {
    font-size: 15px;
  }

  .ds-colour-block {
    width: 25%;
  }

  ._12-columns {
    flex-wrap: wrap;
  }

  ._12-columns.flex-horizontal {
    flex-flow: wrap;
    margin-bottom: 0;
  }

  .heading.h4 {
    font-size: 20px;
  }

  .heading.h1 {
    font-size: 35px;
  }

  .heading.h3 {
    font-size: 1.25rem;
    line-height: 2.25em;
  }

  .heading.large-h1 {
    font-size: 35px;
  }

  .ds-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .ds-content {
    margin-left: 0;
  }

  .button-icon_wrapper {
    align-items: center;
  }

  .feature_card-content {
    flex-direction: column;
  }

  .feature_card-wrapper {
    grid-template-rows: auto auto;
    grid-template-columns: 1.75fr;
  }

  .eyebrow-text-block {
    font-size: .875rem;
  }

  .footer_content-wrapper {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .div-block-6.size {
    margin-top: 10px;
  }

  .div-block-315146 {
    width: 100%;
  }

  .fixed-chat-bolt {
    bottom: 16%;
    right: 38%;
  }

  .chat-bolt-div {
    height: 100px;
    bottom: 10%;
  }
}

@media screen and (max-width: 479px) {
  .ds-menu-button {
    margin-right: 6px;
  }

  .color-block {
    margin-bottom: 20px;
  }

  .column {
    margin-bottom: 0;
  }

  .button {
    width: 100%;
    padding: .5rem 1.25rem;
    font-size: .75rem;
    line-height: 1.8em;
  }

  .button.is-icon {
    width: auto;
    position: static;
  }

  .button.is-icon.butn {
    font-size: 17px;
  }

  .button.is-icon.left {
    margin-top: 10px;
    margin-left: 0;
    font-size: 17px;
  }

  .button.is-icon.left.remove {
    display: none;
  }

  ._12-columns.flex-horizontal {
    flex-direction: row;
  }

  .ds-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .container {
    padding: 0 10px 0 0;
  }

  .header_text-wrapper {
    grid-template-rows: auto auto auto auto;
  }

  .button-icon_wrapper {
    justify-content: center;
    align-items: center;
  }

  .header-image-wrapper {
    padding-top: 20px;
  }

  .feature_card-wrapper {
    grid-template-columns: 1fr;
  }

  .is-numbers {
    overflow: hidden;
  }

  .number_section-bg-image-2 {
    top: -3%;
    right: -20%;
  }

  .footer_content-wrapper {
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
  }

  .header_text-paragraph {
    font-size: 14px;
    line-height: 20px;
  }

  .brand, .brand.w--current {
    width: 200px;
  }

  .header_text-heading {
    margin-top: 0;
    font-size: 30px;
    line-height: 40px;
    display: none;
  }

  .header_text-heading.left {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 23px;
    line-height: 30px;
  }

  .header_text-heading.mobile {
    margin-bottom: 0;
    font-size: 25px;
    line-height: 35px;
    display: block;
  }

  .link-block-2 {
    padding: 0 10px;
  }

  .link-block-2.color {
    margin-top: 10px;
    margin-left: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-4.btl {
    font-size: 14px;
  }

  .div-block-6 {
    width: 100%;
  }

  .div-block-6.size {
    flex-flow: column;
    margin-top: 0;
  }

  .div-block-8 {
    margin-top: 0;
  }

  .div-block-9 {
    margin-top: 25px;
  }

  .div-block-9.remove {
    display: none;
  }

  .heading-24 {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 30px;
    line-height: 40px;
  }

  .produc-p.remove {
    display: none;
  }

  .heading-25.col.font.mobile {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-25.col.font._1 {
    display: none;
  }

  .div-block-5 {
    justify-content: center;
    align-items: flex-end;
  }

  .div-block-5.mobile {
    margin-top: 10px;
    display: flex;
  }

  .div-block-5._1 {
    display: none;
  }

  .heading-2 {
    margin-bottom: 0;
  }

  .fixed-chat-bolt.hide {
    bottom: 2%;
  }

  .chat-bolt-div {
    z-index: 2;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 80px;
    padding: 11px;
    position: fixed;
    inset: auto 5% 10% auto;
  }

  .xbutton {
    position: absolute;
    inset: 5% 6% auto auto;
  }

  .div-block-81 {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .text-block-65 {
    margin-top: 10px;
  }
}

#w-node-b5bca4ae-545e-129f-bb51-1ee08a9432f7-b69a62c4 {
  place-self: center start;
}

#w-node-be740429-04a7-9e27-47e3-193940e4b5c9-b69a62c4 {
  place-self: center end;
}

#w-node-_4f494f0f-5c6c-0576-b659-1b5bd9c955d1-b69a62c4, #w-node-_4a08ce14-b3e7-5eeb-c4b3-c0cddfaacbe2-b69a62c4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8aeca5f1-279a-1bc7-1718-792cd577471a-b69a62c4, #w-node-f99855c0-30d7-3c2a-5694-723250aa5373-b69a62c4 {
  place-self: baseline start;
}

#w-node-_85ab2206-4ad8-487f-6f38-2ea9523dfafd-b69a62c4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0fda96be-bfc2-8076-8463-db7d67589db9-b69a62c4 {
  align-self: center;
}

#w-node-_6109f3d9-beb9-71cb-eb77-67219ac394db-b69a62c4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-be740429-04a7-9e27-47e3-193940e4b5c9-b69a62c4 {
    justify-self: center;
  }

  #w-node-_85ab2206-4ad8-487f-6f38-2ea9523dfafd-b69a62c4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_0fda96be-bfc2-8076-8463-db7d67589db9-b69a62c4 {
    order: 9999;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_0743d6e4-f11b-e5b2-7b2b-2606745c3b38-b69a62c4 {
    justify-self: auto;
  }

  #w-node-_8aeca5f1-279a-1bc7-1718-792cd577471a-b69a62c4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: baseline stretch;
  }

  #w-node-b5081f32-ed20-34e2-be13-49673d1c5d55-b69a62c4 {
    order: -9999;
  }

  #w-node-d7fa6167-e1e9-a2c4-a38b-e457b0c65551-b69a62c4 {
    order: 9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-b5bca4ae-545e-129f-bb51-1ee08a9432f7-b69a62c4 {
    justify-self: center;
  }

  #w-node-a5b28e4c-08e0-f3f2-2fa6-c4323c71ba7f-b69a62c4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


