:root {
  --headings: Inter, sans-serif;
  --primair: #3f7f3a;
  --body: Inter, sans-serif;
  --text: #1f2a1f;
  --soft-green: #eef4ed;
  --dark: #2f5e2c;
  --wit: #fff;
  --sub-titels: #6e7c6e;
  --buttons: Inter, sans-serif;
}

.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;
}

.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;
  }
}

.form_block {
  margin-bottom: 0;
}

.image-cover {
  object-fit: contain;
  width: 100%;
  height: 100%;
  overflow: clip;
}

.form_message-success {
  color: #000;
  text-align: center;
  background-color: #f0fdf4;
  border-radius: 2rem;
  padding: .75rem 1.5rem;
  font-size: 1rem;
}

.body-small {
  margin-bottom: 0;
  font-size: .875rem;
  line-height: 1.75;
}

.body-small.text-color-secondary {
  color: #3f3f46;
}

.hero_grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.text-link {
  color: #000;
  font-weight: 500;
  text-decoration: underline;
  transition: color .3s;
}

.text-link:hover {
  color: #00c950;
}

.form_message-error {
  text-align: center;
  background-color: #ffe3e1;
  border-radius: 2rem;
  padding: .75rem 1.5rem;
  font-size: 1rem;
}

.hero_square-overlay {
  z-index: 1;
  mix-blend-mode: multiply;
  background-color: #00c95080;
  width: 50%;
  height: 50%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.hero_square-overlay.is-right {
  width: 25%;
  height: 25%;
  inset: auto 0% 0% auto;
}

.column-large {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  display: flex;
}

.column-large.column-center {
  text-align: center;
  align-items: center;
}

.hero_content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: space-between;
  max-width: 32rem;
  display: flex;
}

.container-medium {
  width: 100%;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}

.form_input {
  color: #000;
  background-color: #f4f4f5;
  border: 1px solid #e4e4e7;
  border-radius: 2rem;
  min-height: 3rem;
  margin-bottom: 0;
  padding: .5rem 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75;
  transition: background-color .3s, border-color .3s;
}

.form_input:hover {
  border-color: #d4d4d8;
}

.form_input:focus {
  background-color: #fafafa;
  border-color: #00c950;
}

.form_input::placeholder {
  color: #50555f;
}

.form_input.is-text-area {
  border-radius: .75rem;
  min-height: 10rem;
}

.hero_image {
  border-radius: 1rem;
  height: 36rem;
  position: relative;
  overflow: hidden;
}

.h1-heading {
  font-family: var(--headings);
  color: var(--primair);
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;
}

.h1-heading.text-balance {
  text-wrap: balance;
}

.body-x-large {
  margin-bottom: 0;
  font-size: 1.25rem;
  line-height: 1.75;
}

.body-x-large.text-color-secondary {
  font-family: var(--body);
  color: var(--text);
  font-size: 18px;
}

.body-x-large.text-weight-medium {
  font-weight: 500;
}

.column-x-small {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  display: flex;
}

.button {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--soft-green);
  color: #000;
  text-align: center;
  white-space: nowrap;
  border-radius: 99rem;
  justify-content: center;
  align-items: center;
  min-height: 2.75rem;
  padding: .5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: color .5s, background-color .5s;
  display: inline-flex;
}

.button:hover {
  background-color: var(--dark);
  color: var(--wit);
}

.button.outline-2 {
  border: 1px solid var(--soft-green);
  background-color: var(--dark);
  color: #000;
  transition-property: none;
}

.button.outline-2:hover {
  background-color: var(--sub-titels);
  color: var(--wit);
}

.button.outline-2.w--current {
  border-color: var(--dark);
  background-color: var(--dark);
}

.button.outline-2.w--current:hover {
  background-color: var(--soft-green);
}

.section-medium {
  background-color: var(--soft-green);
  color: #000;
  padding: 60px 5%;
  position: relative;
}

.nav-menu {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
  position: static;
}

.banner-wrapper, .nav-button-group {
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
}

.banner {
  background-color: var(--text);
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 16px 5%;
  display: flex;
}

.nav-icon-l {
  padding: 8px;
}

.nav-dropdown {
  height: 100%;
  position: static;
}

.icon-small {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.nav-link-text {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.button-secondary-s {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #5167f6;
  text-align: center;
  letter-spacing: -.02em;
  background-color: #fff;
  border: 1px solid #cbd0f6;
  border-radius: 99px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: all .5s cubic-bezier(.6, .6, 0, 1);
}

.button-secondary-s:hover {
  background-color: #eceefe;
}

.button-secondary-s:active {
  background-color: #d8ddfd;
}

.button-primary-s {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  text-align: center;
  letter-spacing: -.02em;
  background-color: #6173e5;
  border-radius: 99px;
  flex-direction: row;
  flex: none;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: background-color .5s cubic-bezier(.6, .6, 0, 1);
}

.button-primary-s:hover {
  background-color: #8492eb;
}

.button-primary-s:active {
  background-color: #8b99f9;
}

.nav-link {
  font-family: var(--headings);
  color: var(--text);
  letter-spacing: -.02em;
  white-space: nowrap;
  background-color: #0000;
  border-radius: 32px;
  padding: 8px 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: all .35s;
}

.nav-link:hover {
  background-color: var(--wit);
  color: var(--primair);
}

.nav-link.w--current {
  color: var(--text);
  text-decoration: none;
}

.nav-link.w--current:hover {
  color: var(--primair);
}

.nav-link.navlink-contact {
  display: none;
}

.nav-link-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.navigation {
  z-index: 999;
  background-color: var(--soft-green);
  align-items: center;
  width: 100%;
  min-height: 96px;
  padding: 20px 5%;
  display: flex;
}

.nav-toggle {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: #080808;
  letter-spacing: -.02em;
  border-radius: 32px;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 8px 12px 8px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: all .35s;
  display: flex;
}

.nav-toggle:hover {
  background-color: var(--wit);
  color: var(--primair);
}

.nav-toggle.w--open {
  color: #6173e5;
  background-color: #eeeffc;
}

.span-yellow {
  color: var(--primair);
}

.nav-link-arrow-wrapper {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  align-items: center;
  display: flex;
}

.caption {
  letter-spacing: -.02em;
  font-size: 14px;
  line-height: 1.8;
}

.nav-feature-icon {
  background-color: #f8f9fa;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.nav-list-dropdown {
  z-index: 99;
}

.nav-list-dropdown.w--open {
  background-color: #0000;
  width: 100%;
  min-width: auto;
  max-width: 284px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px;
  position: absolute;
  top: 72px;
  bottom: auto;
  overflow: visible;
}

.icon-regular {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.nav-dropdown-base-a {
  z-index: 99;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #fff;
  border: 1px solid #eaedf0;
  border-radius: 8px;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  padding: 24px;
  display: flex;
  box-shadow: 0 24px 64px #e0e0e07a;
}

.nav-dropdown-base-a.w--open {
  background-color: #0000;
  width: 100%;
  min-width: auto;
  padding: 24px 5%;
  position: absolute;
  inset: 90px auto auto 0;
  overflow: hidden;
}

.nav-link-feature {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #000;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.nav-link-s {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #000;
  align-items: center;
  width: 100%;
  text-decoration: none;
  transition: color .3s;
  display: flex;
}

.nav-link-s:hover {
  color: #6173e5;
}

.nav-wrapper {
  grid-column-gap: 62px;
  align-items: center;
  display: flex;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.nav-line-break {
  background-color: #eaedf0;
  width: 100%;
  height: 1px;
}

.paragraph-regular {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.8;
}

.paragraph-regular.text-weight-bold {
  font-weight: 700;
}

.paragraph-small {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
}

.column-large-2 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.section-regular {
  padding: 82px 5%;
  position: relative;
}

.logo {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  display: flex;
}

.header-image {
  border-radius: 24px;
  overflow: hidden;
}

.overline-regular {
  letter-spacing: 1.28px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.container-large {
  width: 100%;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-large {
  letter-spacing: -.3px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 32px;
}

.icon-regular-2 {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.image-cover-2 {
  object-fit: contain;
  width: 100%;
  height: 100%;
  position: relative;
}

.paragraph-x-small {
  margin-bottom: 0;
  font-size: 12px;
}

.logo-carousel {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.code-embed {
  display: none;
}

.header-caption-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
}

.button-secondary {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: #030711;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #d1d5db;
  border-radius: 44px;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  text-decoration: none;
  transition: border-color .4s, background-color .4s;
  display: inline-flex;
}

.button-secondary:hover {
  background-color: #f3f4f6;
  border-color: #d1d5db;
}

.button-secondary:active {
  color: #454f5f;
  background-color: #f6f7f9;
}

.logo-carousel-content {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  display: flex;
}

.button-primary {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  background-color: var(--primair);
  color: #fff;
  letter-spacing: -.2px;
  white-space: nowrap;
  border-radius: 44px;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  text-decoration: none;
  transition: color .3s, background-color .3s;
  display: inline-flex;
}

.button-primary:hover {
  color: #fff;
  background-color: #913b8b;
}

.display-heading {
  color: #030711;
  letter-spacing: -2.5px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.1;
}

.header-grid {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  margin-bottom: 64px;
}

.button-group {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.logo-icon-wrapper {
  color: #9ca3b0;
  transition: color .3s;
}

.logo-icon-wrapper:hover {
  color: #384252;
}

.logo-carousel-gradient {
  z-index: 1;
  background-image: linear-gradient(90deg, #fff, #fff0);
  width: 10%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.logo-carousel-gradient.right {
  background-image: linear-gradient(90deg, #fff0, #fff);
  inset: 0% 0% 0% auto;
}

.button-primary-large {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--primair);
  font-family: var(--buttons);
  color: #fff;
  text-align: center;
  white-space: nowrap;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color .3s;
  display: inline-flex;
}

.button-primary-large:hover {
  background-color: var(--dark);
}

.button-outline-large {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #000;
  text-align: center;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #c8d1d9;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: border-color .3s;
  display: inline-flex;
}

.button-outline-large:hover {
  background-color: var(--primair);
  color: var(--wit);
}

.header-1-title {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  max-width: 600px;
  display: flex;
}

.h1-heading-2 {
  font-family: var(--headings);
  color: var(--primair);
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
}

.button-group-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

.column-regular {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.section-regular-2 {
  border-bottom: 2px none var(--primair);
  background-color: #fff;
  padding: 60px 5%;
  position: relative;
}

.header-1-image {
  flex: 0 auto;
  width: 100%;
  max-width: 520px;
  height: 612px;
  overflow: hidden;
}

.container-large-2 {
  text-align: left;
  width: 100%;
  max-width: 74rem;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-large-2 {
  font-family: var(--body);
  color: var(--text);
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.overline-small {
  font-family: var(--body);
  color: var(--text);
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.5;
}

.header-1-component {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.text-block, .text-block-2 {
  font-family: var(--buttons);
  font-weight: 500;
}

.icon-2x-large {
  color: var(--dark);
  flex: none;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 10px;
  line-height: 24px;
  display: flex;
}

.feature_grid {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
}

.text-highlight {
  background-image: linear-gradient(180deg, transparent 10%, var(--primair) 10%, var(--primair) 45%, var(--primair) 75%, var(--primair) 82%, var(--primair) 90%, transparent 92%);
  color: var(--wit);
  letter-spacing: normal;
  padding-left: .5rem;
  padding-right: .5rem;
}

.feature_card-large {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  background-color: var(--wit);
  border-radius: 1rem;
  flex-flow: column;
  justify-content: space-between;
  padding: 1.5rem;
  display: flex;
}

.feature_card-large.is-featured {
  background-color: var(--primair);
  color: #fff;
}

.container-medium-2 {
  width: 100%;
  max-width: 74rem;
  margin-left: auto;
  margin-right: auto;
}

.max-width-x-large, .max-width-large {
  width: 100%;
  max-width: 55rem;
}

.h6-heading {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.25;
}

.h6-heading.text-weight-medium {
  font-family: var(--headings);
  color: var(--text);
  font-weight: 600;
}

.feature_icon-wrapper-filled {
  background-color: var(--soft-green);
  border-radius: .75rem;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  display: flex;
}

.feature_icon-wrapper-filled.is-featured {
  border: 1px none var(--soft-green);
  background-color: var(--soft-green);
  color: #00c950;
}

.body-medium {
  font-family: var(--body);
  color: var(--text);
  width: 100%;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.75;
}

.body-medium.text-color-secondary {
  color: var(--text);
  font-size: 18px;
}

.body-medium.text-weight-semibold {
  color: var(--primair);
  font-weight: 600;
}

.column-3x-large {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  display: flex;
}

.process-paragraph {
  color: #4f4f4f;
  font-size: 24px;
  line-height: 1.5;
}

.step-grid {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: .25fr 1.5fr;
  width: 100%;
}

.content-wrap {
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
  display: flex;
}

.line-wrap {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.line {
  height: 100%;
}

.process-grid {
  grid-column-gap: 30px;
  grid-row-gap: 72px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.empty-div {
  height: 0;
}

.heading-large {
  color: #000;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 48px;
  line-height: 1.3;
}

.check-wrap {
  background-color: #2e6eff;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  padding: 10px;
  display: flex;
}

.large-title {
  letter-spacing: -.03em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 36px;
}

.process-container {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.step-number {
  color: #c4c4c4;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 18px;
}

.step-title-wrapper {
  margin-bottom: 32px;
}

.process-section {
  padding: 80px 3%;
}

.text-detail {
  color: #4f4f4f;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.5;
}

.placeholder-image {
  box-sizing: border-box;
  aspect-ratio: 1;
  object-fit: cover;
  width: auto;
  max-width: none;
  height: auto;
  position: relative;
  overflow: clip;
}

.process-title-wrap {
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  max-width: 620px;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
}

.title-center {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: center;
  flex-flow: column;
  max-width: 600px;
  margin-bottom: 60px;
  display: flex;
}

.hiw-26-line {
  background-color: var(--primair);
  border-radius: 20px;
  width: 5px;
  height: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 0;
}

.hiw-26-number {
  color: #fff;
  background-color: #fafaf800;
  border-radius: 0%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  display: flex;
}

.footnote {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-align: center;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  max-width: 628px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.hiw-26-component {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
}

.image-cover-3 {
  box-sizing: border-box;
  aspect-ratio: auto;
  object-fit: contain;
  width: auto;
  height: 100%;
}

.h2-heading {
  font-family: var(--headings);
  color: var(--primair);
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;
}

.column-center {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.column-x-small-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.hiw-26-list {
  flex-flow: column;
  padding: 24px;
  display: flex;
}

.hiw-26-padding {
  padding-bottom: 40px;
}

.paragraph-regular-2 {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.5;
}

.paragraph-regular-2.text-color-secondary {
  color: var(--text);
}

.icon-x-small {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.subheading-large {
  font-family: var(--headings);
  color: var(--primair);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.paragraph-small-2 {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}

.hiw-26-absolute {
  aspect-ratio: auto;
  object-fit: fill;
  justify-content: center;
  align-items: stretch;
  width: auto;
  display: flex;
  position: absolute;
  inset: 0%;
}

.overline-small-2 {
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.hiw-26-step {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  display: flex;
}

.hiw-26-image {
  border-radius: 16px;
  justify-content: center;
  width: auto;
  min-height: 400px;
  display: block;
  position: relative;
  overflow: hidden;
}

.paragraph-x-large {
  font-family: var(--body);
  color: var(--text);
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.5;
}

.bold-text {
  font-family: var(--headings);
  font-weight: 600;
}

.bold-text.v2 {
  color: var(--wit);
}

.content-button-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.container-large-3 {
  width: 100%;
  max-width: 74rem;
  margin-left: auto;
  margin-right: auto;
}

.button-primary-small {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: #fff;
  background-color: #0a0a0a;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .4s;
  display: flex;
}

.button-primary-small:hover {
  background-color: #734573;
}

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

.paragraph-small-3 {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
}

.paragraph-regular-3 {
  letter-spacing: -.25px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
}

.column-gigantic {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  display: flex;
}

.row-regular {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: flex;
}

.content-image-large {
  padding-top: 32px;
  padding-left: 32px;
  padding-right: 32px;
}

.content-image-large.background-brown-100 {
  background-color: #f2eeee;
}

.content-features {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 80px;
  display: grid;
}

.section-regular-3 {
  background-color: var(--soft-green);
  padding: 60px 5%;
  position: relative;
  overflow: hidden;
}

.image-fill {
  width: 100%;
  height: auto;
}

.column-small {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.column-small.column-center {
  justify-content: flex-start;
  align-items: center;
}

.icon-regular-3 {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.content-image-wrapper {
  background-color: #fff;
  max-width: none;
  height: auto;
}

.h4-heading {
  font-family: var(--headings);
  color: var(--primair);
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;
}

.text-link-2 {
  color: #404040;
  text-decoration: underline;
  transition: color .3s;
}

.text-link-2:hover {
  color: #734573;
}

.paragraph-x-large-2 {
  font-family: var(--body);
  color: var(--text);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 32px;
}

.overline {
  font-family: var(--body);
  color: var(--text);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.content-feature-line {
  background-color: #d4d4d4;
  flex: 1;
  width: 1px;
}

.text-color-purple-600 {
  color: #5c2d5c;
}

.subheading-regular {
  color: #0a0a0a;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.cta-content {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  justify-content: space-between;
  padding: 32px;
  display: flex;
}

.checkbox-field {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.form-block {
  width: 100%;
  margin-bottom: 0;
}

.checkbox-link {
  color: #59595f;
  text-decoration: underline;
}

.icon-inner {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 11px;
  display: flex;
  box-shadow: 0 2px 1.5px .5px #95a0b229;
}

.form-text-field {
  color: #252527;
  letter-spacing: .08px;
  background-color: #f5f5f6;
  border: 1px solid #e6e6e7;
  min-height: 44px;
  margin-bottom: 0;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.form-text-field::placeholder {
  color: #59595f;
}

.contact-link {
  color: #000;
  letter-spacing: -.08px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: underline;
}

.column-large-3 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  display: flex;
}

.column-large-3.column-left {
  justify-content: center;
  align-items: flex-start;
}

.form-card {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 32px;
  display: flex;
}

.cta-block {
  z-index: 5;
  grid-column-gap: 32px;
  grid-row-gap: 0px;
  background-color: #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.checkbox-label {
  color: #59595f;
  letter-spacing: -.08px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.section-cta {
  background-color: #f5f5f6;
  background-image: linear-gradient(#0000004d, #0000004d), none;
  background-position: 0 0, 50% 100%;
  background-size: auto, cover;
  padding: 80px 5%;
  position: relative;
}

.button-primary-large-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #ff5805;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  display: inline-flex;
}

.subheading-regular-2 {
  color: #252527;
  letter-spacing: -.12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}

.subheading-regular-2.text-color-gray-950 {
  color: #252527;
}

.checkbox {
  background-color: #f5f5f6;
  border: 2px solid #d0d0d2;
  width: 16px;
  height: 16px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 10px;
}

.checkbox.w--redirected-checked {
  background-color: #ff5805;
  background-image: none;
  background-position: 50%;
  background-size: 20px;
  border-color: #ff5805;
  margin-top: 0;
  margin-left: 0;
  margin-right: 10px;
}

.paragraph-regular-4 {
  font-size: 16px;
  line-height: 28px;
}

.paragraph-regular-4.text-color-gray-600 {
  color: #59595f;
}

.text-color-orange-500 {
  color: #ff5805;
}

.icon-wrapper {
  color: #252527;
  background-color: #f5f5f6;
  border: .5px solid #e6e6e7;
  padding: 4px;
}

.input-grid {
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
}

.column-tiny {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  display: flex;
}

.form-field-label {
  color: #252527;
  letter-spacing: -.08px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

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

.cta-card-outline {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #fff;
  border: 1px solid #e6e6e7;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px;
  display: flex;
}

.column {
  flex-flow: column;
  display: flex;
}

.h6-heading-2 {
  color: #000;
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.text-block-3 {
  font-family: var(--headings);
  font-size: 18px;
}

.form_input-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  display: flex;
}

.contact_icon-wrapper {
  border: 1px #d4d4d8;
  border-top: 0 #d4d4d800;
  border-radius: 0;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.contact_details-card {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: var(--soft-green);
  border-radius: 1rem;
  flex-flow: column;
  max-width: 24rem;
  padding: 1.5rem;
  display: flex;
}

.form_label {
  color: #000;
  margin-bottom: 0;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact_grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.form_field {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  display: flex;
}

.column-2 {
  flex-flow: column;
  display: flex;
}

.column-small-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.contact_card {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: #fff;
  border-radius: 1rem;
  flex-flow: column;
  padding: 1.75rem;
  display: flex;
}

.icon-large {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
}

.max-width-small {
  width: 100%;
  max-width: none;
}

.contact_link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: #000;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.h1-heading-3 {
  letter-spacing: -.05em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.15;
}

.h1-heading-3.text-balance {
  font-family: var(--headings);
  color: var(--primair);
  text-wrap: balance;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;
}

.form_submit-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-2 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--primair);
  color: var(--wit);
  text-align: center;
  white-space: nowrap;
  border-radius: 99rem;
  justify-content: center;
  align-items: center;
  min-height: 2.75rem;
  padding: .5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: color .5s, background-color .5s;
  display: inline-flex;
}

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

.contact_heading {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  max-width: 32rem;
  display: flex;
}

.section-medium-2 {
  background-color: #fff;
  padding: 60px 5%;
  position: relative;
}

.code-embed-2 {
  width: 100%;
  height: 100%;
}

.row-regular-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-link-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: auto;
  max-width: none;
  padding-right: 220px;
  display: flex;
}

.footer-wrapper {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-logo {
  width: 128px;
  height: 128px;
}

.footer-section {
  background-color: var(--soft-green);
  padding: 60px 5%;
  position: static;
  overflow: hidden;
}

.column-x-large {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.footer-legal-link {
  color: #6b7280;
  font-size: 12px;
  text-decoration: none;
  transition: color .3s;
}

.footer-legal-link:hover {
  color: #000;
}

.container-large-4 {
  flex-flow: row;
  justify-content: center;
  width: 100%;
  max-width: 74rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: visible;
}

.legal-links {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.social-link {
  color: #9ca3b0;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  transition: color .3s;
  display: flex;
}

.social-link:hover {
  color: #030711;
}

.icon-small-2 {
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

.divider-gray-200 {
  background-color: #e5e7eb;
  width: 100%;
  height: 1px;
}

.footer-legal-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-link {
  font-family: var(--body);
  color: var(--text);
  text-align: center;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  text-decoration: none;
  transition: color .2s;
}

.footer-link:hover {
  color: var(--sub-titels);
}

.footer-10-company {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #0000;
  flex-flow: column;
  max-width: none;
  display: flex;
}

.footer-10-logo-link {
  flex: none;
}

.footer-10-logo {
  background-color: #fffefb00;
  border-radius: 8px;
}

.paragraph-regular-5 {
  font-family: var(--body);
  color: var(--text);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.5;
}

.paragraph-regular-5.mobile {
  color: var(--text);
}

.paragraph-regular-5.mobile._2 {
  color: var(--primair);
}

.row-x-small {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.paragraph {
  font-family: var(--body);
  color: var(--wit);
  font-size: 16px;
}

.image {
  z-index: -1;
  aspect-ratio: auto;
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 5%;
  display: block;
  position: relative;
  overflow: visible;
}

.gallery_statistics-card {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: #f4f4f5;
  flex-flow: column;
  padding: 1.5rem;
  display: flex;
}

.gallery_statistics-card.is-bottom {
  justify-content: flex-end;
}

.image-cover-4 {
  aspect-ratio: auto;
  object-fit: fill;
  border-radius: 5px;
  width: auto;
  max-width: none;
  height: auto;
}

.container-x-small {
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.column-4x-large {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  display: flex;
}

.countup-script {
  display: none;
}

.h4-heading-2 {
  letter-spacing: -.035em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.25;
}

.gallery_card-row {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.gallery_card-row.is-middle {
  grid-template-columns: 1.5fr 1fr 1.25fr;
}

.gallery_card-row.is-bottom {
  grid-template-columns: 1fr 1fr 1.75fr;
}

.gallery_image-card {
  border-radius: .75rem;
  flex: 1;
  height: auto;
  overflow: hidden;
}

.row {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.h1-heading-4 {
  font-family: var(--headings);
  color: var(--primair);
  letter-spacing: -.05em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;
}

.column-medium {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  display: flex;
}

.body-medium-2 {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.75;
}

.section-medium-3 {
  border-bottom: 1px none var(--dark);
  background-color: var(--wit);
  padding: 60px 5%;
  position: relative;
}

.section-medium-3.extra {
  border-top: 1.5px none var(--primair);
  background-color: #fff;
  border-bottom-width: 0;
}

.button-4 {
  background-color: var(--primair);
  font-family: var(--headings);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.link-block {
  font-family: var(--headings);
  color: var(--text);
  padding: 8px 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.nav_button {
  width: 3.1rem;
  height: 5rem;
  padding: 0;
}

.nav_button.w--open {
  color: currentColor;
  background-color: #c8c8c800;
}

.hamburger_12_wrap {
  grid-row-gap: var(--gap);
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.hamburger_12_line {
  height: var(--thickness);
  background-color: currentColor;
  flex: none;
  width: 100%;
  transition-property: all;
  transition-duration: .2s;
  transition-timing-function: ease;
}

.hamburger_embed {
  position: absolute;
}

.code-embed-3 {
  color: var(--dark);
  overflow: hidden;
}

.body {
  background-color: var(--wit);
  padding-bottom: 0;
  overflow: visible;
}

.feature-section-lp1 {
  background-color: var(--wit);
  padding: 120px 30px;
}

.feature-image-lp1 {
  border-radius: 16px;
  width: 81%;
  height: auto;
  display: block;
}

.heading-2 {
  font-family: var(--headings);
  color: var(--primair);
  letter-spacing: -1.5px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 50px;
  font-weight: 500;
  line-height: 120%;
}

.section-title {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.body-text-23 {
  color: #3f3f43;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 170%;
  text-decoration: none;
}

.feature-icon-list-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.body-text-18-medium {
  color: var(--text);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 170%;
  text-decoration: none;
}

.feature-icon-list {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.icon-5 {
  margin-top: 5px;
  display: block;
}

.container-16 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1296px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.feature-image-wrapper-lp1 {
  flex-flow: column;
  align-items: flex-end;
  width: 46%;
  display: flex;
  position: relative;
}

.feature-content-left-lp1 {
  grid-column-gap: 72px;
  grid-row-gap: 72px;
  flex-flow: column;
  width: 100%;
  max-width: 600px;
  display: flex;
}

.feature-card-image-lp1 {
  border-radius: 17px;
  display: block;
  position: absolute;
  bottom: 51px;
  left: -36px;
  box-shadow: 0 14px 82px #0000001f;
}

.feature-content-wrapper-lp1 {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.cta.footer-3 {
  background-color: #4c3dff;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 40px 50px;
  display: flex;
}

.body-text-57 {
  color: #3c4147;
  letter-spacing: -.3px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}

.body-text-57.bold {
  color: #0c1523;
  letter-spacing: -.3px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 160%;
}

.body-text-57.bold.text-neutral-01 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
}

.footer-item-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #b8c1cc;
  letter-spacing: -.3px;
  flex-flow: column;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
  text-decoration: none;
  transition: all .4s;
  display: flex;
}

.footer-item-2:hover {
  color: #fff;
}

.heading-38 {
  color: #0c1523;
  letter-spacing: -2.5px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 110%;
}

.heading-38.text-gradient {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#d1d8e1, #fff);
  -webkit-background-clip: text;
  background-clip: text;
}

.heading-38.text-gradient.max-width {
  color: #fff;
  letter-spacing: -2.5px;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#d1d8e1, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  max-width: 415px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 110%;
}

.footer-3.section-padding {
  background-color: #0c1523;
  padding: 120px 30px;
}

.download-button {
  border-radius: 8px;
  text-decoration: none;
}

.download-button-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.footer-item-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-3-item-wrapper {
  grid-column-gap: 200px;
  grid-row-gap: 200px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 65px;
  display: grid;
}

.footer-wrapper-2 {
  flex-flow: column;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.footer-3-widget {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  display: flex;
}

.content-wrapper-8.footer-3 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.container-48 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.copyright-bar {
  border-top: 1px solid #ebedf2;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  display: flex;
}

.copyright-bar.footer-3 {
  border-top-color: #3c4147;
}

.copyright-text {
  color: #b8c1cc;
  letter-spacing: -.3px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
}

.text-block-4, .text-block-5 {
  color: var(--wit);
}

.div-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.div-block-2 {
  flex-flow: row;
  justify-content: center;
  display: flex;
}

.text-block-6 {
  color: var(--text);
}

@media screen and (min-width: 1280px) {
  .footer-link-wrapper {
    width: auto;
    max-width: none;
  }

  .column-x-large {
    align-items: stretch;
  }

  .container-large-4 {
    justify-content: center;
  }

  .footer-item-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    display: flex;
  }

  .heading-38 {
    font-size: 56px;
  }

  .footer-item-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    display: flex;
  }

  .copyright-bar {
    width: 100%;
    display: flex;
  }

  .div-block {
    max-width: 60%;
  }
}

@media screen and (max-width: 991px) {
  .form_block {
    align-items: center;
  }

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

  .nav-menu {
    border-bottom: 2px solid var(--primair);
    color: var(--primair);
    background-color: #fff;
    border-radius: 8px;
    padding: 12px;
    position: absolute;
  }

  .nav-menu.w--open {
    background-color: #282556;
    border-color: #fff;
  }

  .nav-button-group {
    align-items: center;
    width: auto;
    display: flex;
  }

  .nav-dropdown {
    width: 100%;
  }

  .button-secondary-s, .button-primary-s {
    display: none;
  }

  .nav-link {
    width: 100%;
    margin-top: 14px;
    margin-bottom: 14px;
  }

  .nav-link.navlink-contact {
    display: inline-flex;
  }

  .navigation {
    position: relative;
  }

  .nav-toggle {
    justify-content: space-between;
    width: 100%;
  }

  .nav-list-dropdown.w--open {
    max-width: none;
    padding: 0;
    position: relative;
    top: 8px;
  }

  .nav-dropdown-base-a {
    box-shadow: none;
  }

  .nav-dropdown-base-a.w--open {
    box-shadow: none;
    height: 500px;
    margin-left: 0;
    margin-right: 0%;
    padding: 16px;
    position: static;
    overflow: auto;
  }

  .nav-wrapper {
    align-items: center;
    width: auto;
    display: flex;
  }

  .nav-logo-link {
    margin-right: 0;
  }

  .nav-menu-button {
    color: #6173e5;
    background-color: #eeeffc;
    border-radius: 100px;
    padding: 12px;
  }

  .nav-menu-button.w--open {
    background-color: #6173e5;
    border-color: #fff;
  }

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

  .button-primary-large {
    display: inline-flex;
  }

  .button-primary-large:hover {
    background-color: var(--dark);
  }

  .header-1-image {
    max-width: none;
  }

  .header-1-component {
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
  }

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

  .process-grid {
    grid-template-columns: 1.2fr;
  }

  .title-center {
    margin-bottom: 60px;
  }

  .footnote {
    margin-top: 60px;
  }

  .hiw-26-component {
    grid-template-columns: 1fr;
  }

  .image-cover-3 {
    object-fit: fill;
    width: auto;
    height: auto;
  }

  .h2-heading {
    font-size: 48px;
  }

  .hiw-26-absolute {
    object-fit: fill;
    position: relative;
  }

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

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

  .form-block {
    align-items: center;
  }

  .form-card {
    max-width: none;
  }

  .cta-block {
    grid-template-columns: 1fr;
  }

  .section-cta {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .contact_details-card {
    max-width: none;
  }

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

  .max-width-small, .contact_heading {
    max-width: none;
  }

  .footer-link-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    padding-right: 0;
    display: grid;
  }

  .footer-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    align-items: center;
  }

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

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

  .footer-link {
    flex: none;
    width: auto;
  }

  .footer-10-company {
    align-items: center;
  }

  .paragraph-regular-5.mobile {
    text-align: center;
  }

  .gallery_statistics-card {
    flex: 1;
  }

  .gallery_card-row {
    grid-template-columns: 1fr 1.75fr;
  }

  .gallery_card-row.is-middle {
    grid-template-columns: 1.5fr 1fr;
  }

  .gallery_card-row.is-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .button-3 {
    background-color: var(--primair);
    font-family: var(--body);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 16px;
    line-height: 1.5;
  }

  .button-3:hover {
    background-color: var(--dark);
  }

  .button-4 {
    display: none;
  }

  .hamburger_12_wrap {
    color: var(--dark);
  }

  .feature-section-lp1 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .feature-image-lp1 {
    width: 87%;
  }

  .heading-2 {
    letter-spacing: -1px;
    font-size: 40px;
  }

  .feature-image-wrapper-lp1 {
    width: 80%;
  }

  .feature-content-left-lp1 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    max-width: 80%;
  }

  .feature-content-wrapper-lp1 {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: column;
  }

  .cta.footer-3 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    text-align: center;
    flex-flow: column;
    justify-content: center;
  }

  .heading-38 {
    font-size: 44px;
  }

  .heading-38.text-gradient.max-width {
    letter-spacing: -2px;
    font-size: 40px;
  }

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

  .footer-item-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-3-item-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-items: stretch;
    margin-bottom: 40px;
  }

  .content-wrapper-8.footer-3 {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }
}

@media screen and (max-width: 767px) {
  .hero_image {
    height: 24rem;
  }

  .body-x-large {
    font-size: 18px;
  }

  .banner {
    text-align: left;
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .section-regular {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .display-heading {
    font-size: 58px;
  }

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

  .header-1-image {
    height: 350px;
  }

  .title-center {
    margin-bottom: 40px;
  }

  .footnote {
    margin-top: 40px;
  }

  .h2-heading {
    font-size: 46px;
  }

  .paragraph-x-large {
    font-size: 18px;
  }

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

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

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

  .input-grid, .cta-cards {
    grid-template-columns: 1fr;
  }

  .form_submit-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .footer-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .footer-10-company {
    align-items: center;
  }

  .paragraph-regular-5.mobile {
    text-align: center;
  }

  .button-4 {
    display: none;
  }

  .feature-section-lp1 {
    padding: 60px 20px;
  }

  .feature-image-lp1 {
    width: 90%;
  }

  .heading-2 {
    font-size: 36px;
  }

  .feature-image-wrapper-lp1 {
    width: 100%;
  }

  .feature-content-left-lp1 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    max-width: 100%;
  }

  .feature-content-wrapper-lp1 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .heading-38 {
    letter-spacing: -1.5px;
    font-size: 32px;
  }

  .heading-38.text-gradient.max-width {
    letter-spacing: -1px;
    font-size: 36px;
  }

  .footer-3.section-padding {
    padding: 60px 20px;
  }

  .footer-item-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    width: 100%;
  }

  .footer-3-item-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .footer-3-widget {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .content-wrapper-8.footer-3 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .copyright-bar {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column-reverse;
    justify-content: center;
    align-items: flex-start;
  }
}

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

  .button-primary-s {
    width: 100%;
  }

  .nav-dropdown-base-a.w--open {
    padding: 14px;
  }

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

  .h1-heading-2 {
    font-size: 32px;
  }

  .feature_grid, .feature_card-large.is-featured {
    width: auto;
  }

  .container-medium-2 {
    margin-right: auto;
  }

  .body-medium {
    word-break: normal;
  }

  .body-medium.text-color-secondary {
    word-break: normal;
    overflow-wrap: normal;
  }

  .body-medium.text-weight-semibold {
    font-size: 20px;
  }

  .step-grid {
    grid-column-gap: 16px;
    grid-row-gap: 32px;
  }

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

  .hiw-26-list {
    padding: 4px;
  }

  .paragraph-regular-2.text-color-secondary {
    font-size: 18px;
  }

  .subheading-large {
    font-size: 20px;
  }

  .hiw-26-image {
    min-height: 250px;
  }

  .content-image-large {
    padding-top: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .overline {
    font-size: 14px;
  }

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

  .contact_details-card {
    width: auto;
    min-width: 0%;
    max-width: none;
    padding: 1rem;
    overflow: visible;
  }

  .contact_grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-auto-flow: row;
    align-items: stretch;
    width: 100%;
    min-width: 0%;
  }

  .column-2 {
    width: auto;
  }

  .column-small-2 {
    width: auto;
    min-width: 0;
  }

  .icon-large {
    width: 2rem;
    height: 2rem;
  }

  .max-width-small {
    width: auto;
    max-width: none;
  }

  .contact_link {
    flex-flow: column;
    align-items: flex-start;
    width: 100%;
  }

  .h1-heading-3.text-balance {
    font-size: 32px;
  }

  .section-medium-2 {
    overflow: hidden;
  }

  .footer-link-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .footer-legal-grid {
    grid-template-columns: 1fr;
  }

  .footer-link, .footer-link.w--current, .paragraph-regular-5.mobile, .paragraph {
    font-size: 18px;
  }

  .gallery_card-row {
    grid-template-columns: 1fr;
  }

  .gallery_card-row.is-middle {
    grid-template-columns: 1.5fr;
  }

  .gallery_card-row.is-bottom {
    grid-template-columns: 1fr;
  }

  .h1-heading-4 {
    font-size: 32px;
  }

  .feature-section-lp1 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-2 {
    text-align: center;
    letter-spacing: -.5px;
    font-size: 32px;
    line-height: 1.2;
  }

  .section-title {
    align-items: center;
  }

  .body-text-23 {
    text-align: center;
  }

  .feature-icon-list-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .feature-image-wrapper-lp1 {
    align-items: center;
  }

  .feature-content-left-lp1 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .feature-card-image-lp1 {
    width: 42%;
    height: auto;
    bottom: 24px;
  }

  .cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta.footer-3 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    padding: 32px 20px;
  }

  .footer-item-2 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .heading-38 {
    letter-spacing: -1px;
    font-size: 32px;
  }

  .heading-38.text-gradient.max-width {
    font-size: 32px;
  }

  .download-button-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .footer-item-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-3-item-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    display: grid;
  }

  .copyright-bar {
    padding-top: 30px;
  }
}

#w-node-_7888d26d-7f2f-8fd9-5d86-7928a3ddf1ea-6c4edd24, #w-node-d4fe018b-2ad0-c829-4a50-b7ee7a75f044-6c4edd24, #w-node-eff92789-31d1-eb4f-fc31-ddc475c6af21-6c4edd24 {
  justify-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-_7888d26d-7f2f-8fd9-5d86-7928a3ddf1ea-6c4edd24 {
    justify-self: stretch;
  }

  #w-node-d4fe018b-2ad0-c829-4a50-b7ee7a75f044-6c4edd24, #w-node-eff92789-31d1-eb4f-fc31-ddc475c6af21-6c4edd24 {
    justify-self: center;
  }
}


