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

body {
  color: #0e0f11;
  background-color: #fff;
  font-family: Inter;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.25;
}

h2 {
  margin-top: 1.5rem;
  margin-bottom: .75rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
}

h3 {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
}

h4 {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

h5 {
  margin-top: 1rem;
  margin-bottom: .5rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

h6 {
  margin-top: 1rem;
  margin-bottom: .25rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

p {
  color: #3c404b;
  margin-bottom: 1rem;
}

a {
  color: #ff5931;
  text-decoration: underline;
}

ul, ol {
  color: #3c404b;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

li {
  margin-bottom: .25rem;
}

strong {
  font-weight: 700;
}

blockquote {
  color: #3c404b;
  border-left: 1px solid #d0d4d9;
  margin-bottom: 1rem;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  font-style: italic;
}

.container {
  max-width: 1248px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container.container-navbar {
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
}

.heading {
  color: #0e0f11;
}

.heading.xl {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.25;
}

.heading.xl.c-t-neutral-10 {
  font-size: 40px;
  line-height: 1.2;
}

.heading.l {
  margin-top: 0;
  margin-bottom: .75rem;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.heading.xs {
  margin-top: 0;
  margin-bottom: .25rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

.body-text {
  color: #3c404b;
  margin-top: 0;
}

.body-text.m {
  color: #6d859e;
  font-family: Plus Jakarta Sans, sans-serif;
}

.body-text.m.bold {
  font-weight: 700;
}

.body-text.m.testimonial {
  color: #fff;
}

.body-text.l {
  font-size: 1.125rem;
  line-height: 1.75;
}

.section-title {
  max-width: 1000px;
  min-width: 1000px;
  margin-bottom: 20px;
}

.section-title.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.wrapper-m {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  display: flex;
}

.l-g-4-col {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #389e0d;
  border: 3px #389e0d;
  border-radius: 0;
  align-items: center;
  padding: 8px 20px;
  font-family: Open Sans, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .25s;
  display: inline-block;
  position: relative;
}

.button:hover {
  background-color: #52c41a;
}

.button:active, .button:focus {
  background-color: #237804;
}

.button.medium {
  background-color: #73d13d;
  border-radius: 5px;
  font-weight: 700;
}

.button.medium:hover {
  background-color: #52c41a;
}

.button.medium.form-button {
  width: 100%;
  margin-bottom: 12px;
}

.button.medium.ghost {
  background-color: rgba(0, 0, 0, 0);
  box-shadow: inset 0 0 0 1px #fff;
}

.button.medium.ghost:hover {
  color: #73d13d;
  box-shadow: inset 0 0 0 1px #73d13d;
}

.button.medium.ghost:active {
  color: #fa541c;
}

.button.secondary {
  color: #73d13d;
  background-color: rgba(0, 0, 0, 0);
  border: 3px solid #73d13d;
}

.button.secondary:hover {
  color: #52c41a;
  border-color: #52c41a;
  box-shadow: 1px 1px 14px rgba(115, 209, 61, .31);
}

.button.black {
  background-color: #0e0f11;
  border-color: #0e0f11;
}

.button-text {
  display: inline-block;
}

.l-g-2-col {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.input {
  background-color: #f9fafb;
  border: 1px solid #d0d4d9;
  border-radius: 0;
  margin-bottom: .75rem;
  font-size: 1rem;
}

.input:hover {
  border-color: #597ef7;
}

.input:active {
  border-color: #1d39c4;
}

.input:focus {
  background-color: #fff;
  border-color: #ff5931;
}

.input.medium {
  height: 48px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 5px;
}

.input.medium:hover {
  border-color: #ff7a45;
}

.input.textarea {
  min-height: 96px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 5px;
}

.input.textarea:hover {
  border-color: #ff7a45;
}

.tagline {
  color: #73d13d;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.25;
}

.button-separator {
  width: 8px;
  height: 8px;
  display: inline-block;
}

.material-icons.icon-left {
  margin-right: 4px;
}

.material-icons.icon-left.icon-collapse {
  color: #52c41a;
  margin-right: 0;
}

.material-icons.feature-icon-small {
  width: 1.5rem;
  height: 1.5rem;
  color: #73d13d;
  margin-bottom: .5rem;
  font-size: 1.5rem;
}

.navbar {
  background-color: #fff;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.navbar-menu {
  align-items: center;
  display: flex;
}

.nav-link {
  color: #3c404b;
  padding: 16px;
  text-decoration: none;
}

.nav-link:hover, .nav-link:focus, .nav-link.w--current {
  color: #73d13d;
}

.brand-logo {
  width: 196px;
  height: 62px;
  margin-right: 24px;
}

.footer-logo {
  padding-bottom: 0;
}

.vertical-menu-link {
  color: #5e6875;
  margin-bottom: 0;
  margin-right: 100px;
  text-decoration: none;
}

.vertical-menu-link:hover {
  color: #73d13d;
  text-decoration: none;
}

.social-media-icon {
  opacity: .35;
  padding-left: 0;
  padding-right: 0;
  font-size: 1.5rem;
  line-height: 1.5rem;
  display: inline-block;
}

.social-media-icon:hover {
  opacity: 1;
}

.sm-icon-link {
  margin-right: 12px;
}

.footer-top-2 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-bottom-2 {
  color: #5e6875;
  border-top: 1px solid #e0e3e6;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.footer-2 {
  text-align: left;
  background-color: #fff;
  border-top: 1px solid #e0e3e6;
  align-items: flex-start;
  padding-top: 32px;
}

.sm-icons-wrapper {
  height: 24px;
  align-self: center;
  display: flex;
}

.footer-menu-wrapper {
  align-items: center;
  display: flex;
}

.tooltip {
  width: 240px;
  color: #fff;
  text-align: center;
  background-color: #0e0f11;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8px;
  padding: 8px;
  font-size: .875rem;
  line-height: 1.25;
  display: none;
  position: absolute;
  top: auto;
  bottom: 36px;
  left: 24%;
  right: 0%;
  transform: translate(-50%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.modal-wrapper {
  z-index: 5000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  display: none;
  position: fixed;
}

.collapse-item {
  color: #0e0f11;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 1px solid #d0d4d9;
  padding-left: 16px;
  padding-right: 16px;
  font-weight: 400;
}

.collapse-text {
  opacity: 1;
  color: #6d859e;
  padding-top: 0;
  padding-bottom: 12px;
  padding-left: 32px;
  transition: all .4s;
  display: none;
  overflow: visible;
}

.collapse-trigger {
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.collapse-title {
  color: #6d859e;
  margin-left: 12px;
  font-family: Plus Jakarta Sans, sans-serif;
  font-weight: 400;
  display: inline-block;
}

.collapse {
  max-width: 1000px;
  min-width: 1000px;
  overflow: hidden;
}

.navbar-vertical-overlay {
  margin-bottom: 128px;
  display: block;
}

.s-p-r-48 {
  padding-right: 48px;
}

.s-m-t-24 {
  margin-top: 24px;
}

.s-m-r-24 {
  margin-right: 24px;
}

.s-m-b-32 {
  margin-bottom: 32px;
}

.c-t-neutral-10 {
  color: #fff;
}

.c-t-primary-60 {
  color: #73d13d;
}

.c-t-secondary-20 {
  color: #ffd8bf;
}

.feature-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  align-items: center;
}

.hero-title-centered {
  width: 65%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.ctas-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.ctas-wrapper.center {
  justify-content: center;
  margin-top: 41px;
  display: flex;
}

.ctas-wrapper.centrar {
  justify-content: center;
  display: flex;
}

.ctas-wrapper.left {
  justify-content: flex-start;
}

.testimonial-box {
  color: #fff;
  background-color: #0e0f11;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px;
  display: flex;
}

.feature-section-list {
  margin-bottom: 2rem;
}

.contact-grid-1 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.contact-image {
  object-fit: cover;
  border-radius: 15px;
  overflow: hidden;
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-content {
  width: 260px;
  text-align: center;
  flex-direction: column;
  display: flex;
}

.brand-logo-image {
  height: 62px;
}

.hero-section.hero-big {
  height: 800px;
  background-image: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url('../images/Ecoway_lading_portaa_V1.jpg');
  background-position: 0 0, 100%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  align-items: center;
  padding-top: 0;
  display: flex;
}

.testimonials-section {
  background-color: #73d13d;
}

.contact-section {
  margin-top: 100px;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.feature-content-wrapper.left {
  padding-right: 64px;
}

.navbar-buttons {
  margin-left: 8px;
}

.avatar-wrapper.horizontal {
  align-items: center;
  display: flex;
}

.avatar-label-text {
  margin-left: 0;
}

.custom-code-embeds {
  display: none;
}

.body-2 {
  background-color: rgba(0, 0, 0, 0);
  font-family: Plus Jakarta Sans, sans-serif;
}

.text-span {
  color: #389e0d;
}

.page-wrapper {
  overflow: hidden;
}

.add-accessibility-feature {
  z-index: 999;
  width: 50px;
  border-radius: 50%;
  margin-bottom: 32px;
  margin-right: 32px;
  transition: all .2s;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
  box-shadow: 1px 1px 20px rgba(0, 80, 179, .5);
}

.add-accessibility-feature:hover {
  filter: contrast(139%);
  box-shadow: 1px 1px 10px rgba(0, 80, 179, .5);
}

.move-up-wrapper {
  position: relative;
  top: -135px;
}

.experience-image-section {
  max-width: 100%;
  position: static;
  top: -135px;
}

.experience-image-wrapper {
  width: 90%;
  max-width: 90%;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.image-2.cel {
  display: none;
}

.right-arrow-t7 {
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  display: flex;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.left-arrow-t7 {
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  display: flex;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 80px;
}

.page-number-t7 {
  width: 60px;
  height: 40px;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-family: Open Sans, sans-serif;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 30px;
}

.slider-wrapper-t7 {
  max-width: 1000px;
  justify-content: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.slider-t7 {
  height: 100%;
  background-color: #fff;
}

.testimonials-t7 {
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.user-picture-t7 {
  border-radius: 19px;
}

.quote-t7 {
  margin-top: 50px;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.user-picture-wrapper-t7 {
  flex: none;
}

.testimonials-wrapper-t7 {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-wrapper {
  width: 90%;
  max-width: 1100px;
  background-color: #fff;
  border-radius: 8px;
  align-items: center;
  margin: 20px auto;
  padding-top: 40px;
  padding-bottom: 40px;
  box-shadow: 1px 0 50px 13px rgba(0, 39, 102, .52);
}

.company-name-t7 {
  color: #bbb;
  padding-top: 9px;
}

.user-name-t7 {
  text-transform: uppercase;
  font-weight: 600;
}

.text-wrapper-t7 {
  max-width: 600px;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  padding-top: 40px;
  padding-left: 40px;
  display: flex;
  position: relative;
}

.slide-nav-t7 {
  display: none;
}

.testimonial-block {
  background-color: #323335;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/Ecoway_lading_portaa_V1.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-top: 80px;
  padding-bottom: 200px;
  display: flex;
}

.image-3 {
  border-radius: 5px;
}

.works-image {
  width: 90px;
  margin-bottom: 10px;
}

.works-image.transaction-image {
  margin-bottom: 10px;
}

.how-it-works-grid {
  max-width: 1000px;
  grid-column-gap: 130px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.body-text-2 {
  color: #6d859e;
  font-size: 18px;
  line-height: 1.5;
}

.body-text-2.space-under {
  margin-bottom: 25px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
}

.body-heading {
  color: #000;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 33px;
  line-height: 1.2;
}

.small-text {
  color: #3c404b;
  font-size: 15px;
  line-height: 1.5;
}

.feat-big-text {
  text-transform: none;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.dot-div-2 {
  width: 195px;
  position: absolute;
  top: -10px;
  left: 595px;
}

.dot-div {
  width: 195px;
  position: absolute;
  top: 35px;
  left: 215px;
}

.works-div {
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}

.heading-centered {
  max-width: 800px;
  text-align: center;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.how-it-works {
  margin-top: 100px;
}

.wrapper {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding-top: 0;
  padding-bottom: 70px;
}

.section.background {
  background-color: #f6f9fc;
}

.section.background.logo-top {
  padding-top: 35px;
  padding-bottom: 80px;
}

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

.section.low-bottom._100 {
  margin-top: -100px;
}

.more-feat-image {
  width: 80px;
}

.more-features-grid {
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.more-feat-div {
  align-items: center;
  display: flex;
}

.core-feature-div {
  text-align: center;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 20px;
  padding: 20px 25px;
  transition: all .2s;
  overflow: hidden;
}

.core-feature-div:hover {
  background-color: #fff;
  border-radius: 20px;
}

.core-feature-image {
  width: 100px;
}

.core-features-grid {
  max-width: 100%;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-left: auto;
  margin-right: auto;
}

.logo-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
}

.logo-grid.bottom {
  grid-template-columns: 1fr;
  margin-top: 50px;
  margin-bottom: 0;
}

.logo-div {
  text-align: center;
}

.logo-image {
  width: 150px;
  opacity: .5;
  filter: grayscale();
  transition: all .2s ease-in-out;
}

.logo-image:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.section-2 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.section-2.no-padding-bottom {
  padding-bottom: 0;
}

.grid-content.left-indent {
  padding-left: 100px;
}

.grid-content.right-indent {
  padding-right: 100px;
}

.button-2 {
  background-color: #fca25d;
  border-radius: 5px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  transition: all .25s;
}

.button-2:hover {
  background-color: #ff923f;
}

.button-2.form-button {
  height: 70px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-size: 20px;
}

.grid-image {
  position: relative;
}

.grid-twos {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: .75fr .5fr;
  margin-bottom: 50px;
  position: relative;
}

.grid-twos.receive-money-grid {
  grid-template-columns: .5fr .5fr;
  margin-top: 50px;
}

.grid-twos.send-funds-grid {
  grid-template-columns: .5fr .5fr;
}

.form-2 {
  display: flex;
}

.section-3 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.section-3.grey-background {
  background-color: #f6f9fc;
}

.get-started-grid {
  grid-column-gap: 49px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
}

.form-field {
  height: 70px;
  border: 1px #000;
  border-radius: 5px 0 0 5px;
  padding-left: 30px;
}

.form-field::-ms-input-placeholder {
  color: #6d859e;
  font-size: 20px;
}

.form-field::placeholder {
  color: #6d859e;
  font-size: 20px;
}

.form-block {
  margin-bottom: 0;
}

.form-content {
  text-align: center;
}

.whatsapp {
  z-index: 99999999;
  width: 60px;
  height: 60px;
  -webkit-text-fill-color: inherit;
  cursor: pointer;
  background-color: #19d172;
  background-image: url('../images/whatsapp.png'), linear-gradient(172deg, #73d13d, #73d13d);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 40px 40px, auto;
  background-clip: border-box;
  border-radius: 100px;
  transition: all .325s ease-in-out;
  display: block;
  position: fixed;
  top: auto;
  bottom: 2%;
  left: auto;
  right: 1.5%;
  box-shadow: 2px 3px 15px -10px rgba(128, 128, 128, .41);
}

.whatsapp:hover {
  box-shadow: 3px 5px 20px rgba(128, 128, 128, .61);
}

.link-block-5 {
  width: 100%;
  height: 100%;
}

.whatsapp-2 {
  color: #01387f;
  align-items: center;
  margin-top: 8px;
  margin-left: 10px;
  font-family: Open Sans, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: flex;
}

.whatsapp-2:hover {
  transform: translate(5px, -5px);
}

.image-20 {
  width: 30px;
  height: 30px;
}

.text-block-3-copy {
  color: #52c41a;
  padding-left: 10px;
  font-family: Plus Jakarta Sans, sans-serif;
  font-weight: 400;
}

.text-span-2, .text-span-3 {
  color: #73d13d;
}

.text-span-4 {
  color: #73d13d;
  font-weight: 400;
}

.text-span-5 {
  color: #838d95;
  font-weight: 400;
}

.logo-header {
  width: 140px;
  max-width: 140px;
}

.solar-panel-deco {
  z-index: -10;
  margin-top: 30px;
  position: relative;
}

.text-span-6, .text-span-7, .text-span-8, .text-span-9, .text-span-10 {
  font-weight: 700;
}

.icon-wrapper {
  width: 40px;
  height: 40px;
  background-color: #73d13d;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 11px;
  display: flex;
  overflow: hidden;
}

.left-arrow {
  display: none;
}

.icon {
  width: 50px;
}

.whatsapp-title {
  margin-top: 0;
  margin-bottom: 5px;
}

.modal-overlay {
  z-index: 9999999;
  background-color: rgba(21, 28, 52, .9);
  justify-content: center;
  align-items: center;
  padding-left: 3%;
  padding-right: 3%;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.modal-slide {
  color: #151c34;
}

.image-22 {
  height: 20px;
}

.modal-element {
  width: 100%;
  max-width: 430px;
  background-color: #fff;
  border-radius: 10px;
}

.modal-slider {
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
}

.close {
  opacity: .5;
  transition: opacity .2s;
}

.close:hover {
  opacity: 1;
}

.right-arrow {
  display: none;
}

.slide-navigation {
  color: #2451e9;
  font-size: 10px;
  display: none;
  bottom: 10px;
}

.modal-header {
  min-height: 55px;
  border-bottom: 1px solid rgba(21, 28, 52, .1);
  justify-content: space-between;
  align-items: center;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
}

.modal-content {
  width: 100%;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 38px 65px;
  display: flex;
}

.module-header-left {
  width: 50%;
  height: 100%;
  display: flex;
}

.paragraph-standard {
  color: rgba(21, 28, 52, .8);
  font-size: 15px;
  line-height: 1.5;
}

html.w-mod-js [data-ix="tooltip-hover"] {
  display: inline-block;
}

@media screen and (min-width: 1280px) {
  .section-title {
    width: auto;
    max-width: 1000px;
    min-width: 1000px;
  }

  .wrapper-m {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .collapse-text {
    display: none;
  }

  .works-image.transaction-image {
    margin-bottom: 10px;
  }

  .section.low-bottom._100 {
    margin-top: -100px;
  }

  .grid-content.left-indent {
    padding-left: 0;
  }

  .grid-content.right-indent {
    padding-right: 0;
  }

  .whatsapp {
    background-color: #73d13d;
    background-image: url('../images/whatsapp.png'), linear-gradient(172deg, #73d13d, #73d13d);
    background-position: 50%, 0 0;
    background-repeat: no-repeat, repeat;
    background-size: 40px 40px, auto;
  }

  .text-block-3-copy {
    padding-left: 6px;
  }

  .image-21 {
    max-width: 60px;
  }

  .logo-header {
    max-width: 140px;
  }
}

@media screen and (max-width: 991px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .container.container-navbar {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section-title {
    width: 100%;
    max-width: none;
    min-width: 0;
    margin-bottom: 32px;
  }

  .section-title.centered {
    width: 75%;
  }

  .l-g-4-col {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .l-g-2-col {
    grid-column-gap: 16px;
    grid-row-gap: 24px;
  }

  .navbar-menu {
    text-align: center;
    background-color: #fff;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .19);
  }

  .nav-link {
    text-align: center;
  }

  .nav-link.w--current {
    color: #fa541c;
  }

  .brand-logo {
    margin-right: 0;
    padding-left: 0;
  }

  .sm-icon-link {
    margin-right: 16px;
  }

  .footer-top-2 {
    flex-direction: column;
  }

  .footer-2 {
    padding-bottom: 32px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-menu-wrapper {
    flex-direction: column;
  }

  .menu-button.w--open {
    background-color: #0e0f11;
  }

  .collapse {
    max-width: 700px;
    min-width: 700px;
  }

  .navbar-vertical-overlay {
    z-index: 5000;
    width: 100%;
    height: 100vh;
    display: none;
    position: relative;
  }

  .st-p-r-0 {
    padding-right: 0;
  }

  .st-p-y-64 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .st-m-0 {
    margin: 0;
  }

  .st-m-b-0 {
    margin-bottom: 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-title-centered {
    width: 100%;
  }

  .testimonial-box {
    padding: 32px;
  }

  .feature-section-list {
    text-align: left;
  }

  .contact-grid-1 {
    grid-column-gap: 16px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .contact-image {
    width: 100%;
    height: 100%;
    display: none;
  }

  .feature-content-wrapper.left {
    padding-right: 0;
  }

  .navbar-buttons {
    flex-direction: column;
    margin-top: 8px;
    margin-left: 0;
    display: flex;
  }

  .footer-navigation {
    flex-direction: column;
    margin-top: 16px;
    margin-bottom: 16px;
    display: flex;
  }

  .move-up-wrapper {
    top: -100px;
  }

  .quote-t7 {
    margin-top: 30px;
  }

  .user-picture-wrapper-t7 {
    padding-right: 40px;
  }

  .testimonials-wrapper {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .text-wrapper-t7 {
    padding-left: 0;
  }

  .how-it-works-grid {
    grid-column-gap: 50px;
  }

  .feat-big-text {
    font-size: 20px;
  }

  .dot-div-2 {
    width: 100px;
    top: 10px;
    left: 420px;
  }

  .dot-div {
    width: 100px;
    top: 50px;
    left: 170px;
  }

  .works-div {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-centered {
    margin-bottom: 40px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .more-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .core-feature-div {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .core-feature-div:hover {
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 0;
  }

  .core-features-grid {
    max-width: none;
  }

  .logo-grid {
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 75px;
  }

  .logo-div {
    padding-right: 0%;
  }

  .logo-image {
    width: 80%;
  }

  .section-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .grid-content.left-indent {
    padding-left: 0;
  }

  .grid-content.right-indent {
    padding-right: 0;
  }

  .grid-twos.receive-money-grid, .grid-twos.send-funds-grid {
    grid-column-gap: 15px;
    grid-template-columns: .5fr .5fr;
  }

  .section-3 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .get-started-grid {
    grid-column-gap: 25px;
  }

  .whatsapp-2 {
    color: #01387f;
  }
}

@media screen and (max-width: 767px) {
  h3, h4 {
    margin-top: 16px;
    margin-bottom: 8px;
  }

  h5 {
    margin-top: 12px;
    margin-bottom: 4px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .container.container-navbar {
    padding-top: 0;
    padding-bottom: 0;
  }

  .heading.xl {
    margin-bottom: 12px;
  }

  .heading.l {
    margin-bottom: 8px;
  }

  .section-title, .section-title.centered {
    width: 100%;
  }

  .l-g-4-col {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
  }

  .l-g-2-col {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    padding-left: 0;
  }

  .footer-top-2, .footer-bottom-2 {
    flex-direction: column;
  }

  .footer-2 {
    padding: 32px 0;
  }

  .footer-menu-wrapper {
    flex-direction: column;
  }

  .collapse {
    max-width: 550px;
    min-width: 400px;
  }

  .feature-grid {
    text-align: left;
  }

  .ctas-wrapper.left {
    justify-content: center;
  }

  .contact-grid-1 {
    grid-template-columns: 1fr;
  }

  .footer-navigation {
    margin-top: 8px;
  }

  .move-up-wrapper {
    top: -85px;
  }

  .image-2 {
    display: none;
  }

  .image-2.cel {
    display: block;
  }

  .right-arrow-t7 {
    overflow: hidden;
  }

  .company-logo-t7 {
    margin-left: auto;
    margin-right: auto;
  }

  .slider-wrapper-t7 {
    flex-direction: column;
    align-items: center;
  }

  .slider-t7 {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-t7 {
    padding: 40px 10px;
  }

  .user-picture-t7 {
    width: 300px;
  }

  .quote-t7 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .user-picture-wrapper-t7 {
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
  }

  .testimonials-wrapper {
    margin-left: auto;
    margin-right: auto;
  }

  .text-wrapper-t7 {
    height: 250px;
    max-width: 400px;
    flex: none;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    padding-top: 25px;
  }

  .works-image.transaction-image {
    margin-bottom: 10px;
  }

  .how-it-works-grid {
    grid-row-gap: 75px;
    grid-template-columns: 1fr;
  }

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

  .dot-div-2, .dot-div {
    display: none;
  }

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

  .core-feature-div {
    padding: 25px 25px 35px;
  }

  .core-features-grid {
    max-width: 60%;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .logo-grid {
    margin-bottom: 50px;
  }

  .logo-image {
    width: 100%;
  }

  .section-2 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .grid-content {
    text-align: center;
  }

  .grid-content.left-indent, .grid-content.right-indent {
    margin-bottom: 30px;
  }

  .grid-twos {
    text-align: center;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .grid-twos.receive-money-grid {
    flex-direction: column-reverse;
  }

  .section-3 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .get-started-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-2 {
    margin-left: 0;
  }

  .modal-overlay {
    z-index: 2147483647;
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .heading.l {
    text-align: left;
    font-size: 32px;
  }

  .l-g-4-col {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .button.medium {
    align-self: stretch;
  }

  .l-g-2-col {
    grid-row-gap: 24px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .tagline {
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 20px;
  }

  .nav-link {
    padding-left: 10px;
    padding-right: 10px;
  }

  .footer-logo {
    padding-left: 0;
  }

  .vertical-menu-link {
    text-decoration: none;
  }

  .footer-bottom-2 {
    text-align: center;
    flex-direction: column;
    margin-top: 24px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .footer-2 {
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }

  .sm-icons-wrapper {
    justify-content: center;
  }

  .collapse-text {
    display: none;
    overflow: visible;
  }

  .collapse {
    max-width: 300px;
    min-width: 280px;
  }

  .st-p-y-64 {
    padding-bottom: 0;
  }

  .ctas-wrapper {
    flex-direction: column;
    display: flex;
  }

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

  .avatar-wrapper.horizontal {
    align-items: center;
  }

  .footer-navigation {
    margin-top: 0;
  }

  .move-up-wrapper {
    top: -52px;
  }

  .testimonials-t7 {
    width: 100%;
  }

  .user-picture-t7 {
    width: 200px;
  }

  .testimonials-wrapper {
    width: 100%;
    border-radius: 0;
    margin-left: auto;
    padding-bottom: 20px;
  }

  .text-wrapper-t7 {
    height: 260px;
  }

  .body-text-2 {
    font-size: 17px;
  }

  .body-heading {
    font-size: 32px;
  }

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

  .more-features-grid {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .core-features-grid {
    max-width: 100%;
  }

  .logo-grid, .logo-grid.bottom {
    grid-template-columns: 1fr 1fr;
  }

  .logo-div {
    text-align: center;
  }

  .logo-div.mobile-hide {
    display: block;
  }

  .logo-image {
    width: 80%;
  }

  .section-2 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .button-2.form-button {
    font-size: 16px;
  }

  .section-3 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .form-field::-ms-input-placeholder {
    font-size: 16px;
  }

  .form-field::placeholder {
    font-size: 16px;
  }

  .modal-content {
    padding-left: 30px;
    padding-right: 30px;
  }
}

#w-node-bbbb329d-405b-7ef6-18c5-aa537f52154e-557940d7, #w-node-bbbb329d-405b-7ef6-18c5-aa537f521556-557940d7, #w-node-_71654687-1ac0-b238-7ff7-ac506d885655-557940d7, #w-node-_55fd2b4b-aa11-2a76-4a4d-e86a8bfea295-557940d7 {
  align-self: center;
  justify-self: center;
}

#w-node-d2edd68b-5ff0-b580-cadf-01b1d185fe58-557940d7 {
  align-self: center;
}

#w-node-d2edd68b-5ff0-b580-cadf-01b1d185fe5f-557940d7, #w-node-d2edd68b-5ff0-b580-cadf-01b1d185fe62-557940d7 {
  align-self: center;
  justify-self: center;
}

#w-node-d2edd68b-5ff0-b580-cadf-01b1d185fe64-557940d7, #w-node-d2edd68b-5ff0-b580-cadf-01b1d185fe78-557940d7, #w-node-d2edd68b-5ff0-b580-cadf-01b1d185fe80-557940d7 {
  align-self: center;
}

#w-node-_80695cd8-9cad-0fc6-bc69-6381962cb930-557940d7, #w-node-e3f77e19-0168-3f76-a193-57c3a6370005-557940d7 {
  align-self: center;
  justify-self: center;
}

#w-node-e3f77e19-0168-3f76-a193-57c3a6370007-557940d7 {
  align-self: center;
}

#w-node-_2deaaf26-a40b-1791-0d17-6e901257e789-557940d7 {
  align-self: stretch;
}

@media screen and (min-width: 1280px) {
  #w-node-d2edd68b-5ff0-b580-cadf-01b1d185fe64-557940d7 {
    align-self: center;
  }
}

@media screen and (max-width: 991px) {
  #w-node-d2edd68b-5ff0-b580-cadf-01b1d185fe5f-557940d7, #w-node-d2edd68b-5ff0-b580-cadf-01b1d185fe62-557940d7 {
    align-self: center;
    justify-self: center;
  }

  #w-node-d2edd68b-5ff0-b580-cadf-01b1d185fe80-557940d7 {
    align-self: center;
  }

  #w-node-e3f77e19-0168-3f76-a193-57c3a6370005-557940d7 {
    align-self: center;
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_71654687-1ac0-b238-7ff7-ac506d885655-557940d7, #w-node-_55fd2b4b-aa11-2a76-4a4d-e86a8bfea295-557940d7 {
    align-self: center;
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-bbbb329d-405b-7ef6-18c5-aa537f52154e-557940d7 {
    align-self: center;
    justify-self: center;
  }
}


@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}