@font-face {
  font-family: Dmsans;
  src: url('../fonts/DMSans-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Dmsans;
  src: url('../fonts/DMSans-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Dmsans;
  src: url('../fonts/DMSans-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Dmsans;
  src: url('../fonts/DMSans_36pt-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Quilon;
  src: url('../fonts/Quilon-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Quilon;
  src: url('../fonts/Quilon-Semibold.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Quilon;
  src: url('../fonts/Quilon-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Quilon;
  src: url('../fonts/Quilon-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-primary: #0a0a0a;
  --fg-text-secondary: #d6d6d6;
  --fg-text-primary: white;
  --button_border-radius: 8px;
  --bg-brand: #22c55e;
  --border--border-primary: #303030;
  --button-ghost_hover: #292929;
  --gap-md: 4rem;
  --card_border-radius: 8px;
  --bg-secondary: #222223;
  --light--fg-text-primary: #1a1a1a;
  --components--badges--green--bg-green: #052e16;
  --components--badges--green--fg-green: #4ade80;
  --white: white;
  --black: black;
  --light--bg-primary: white;
  --light--fg-text-secondary: #434343;
  --light--bg-secondary: whitesmoke;
  --light--border-primary: #dfdfdf;
  --light--components--badges--green--bg-green: #f2faeb;
  --light--components--badges--green--fg-green: #4e8729;
  --radius--card_radius-sm: 4px;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

body {
  background-color: var(--bg-primary);
  color: var(--fg-text-secondary);
  letter-spacing: -.03125rem;
  font-family: Dmsans, sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
}

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

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.25rem;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.875rem;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: underline;
}

label {
  margin-bottom: 0;
  font-weight: 700;
  display: block;
}

.hero-section {
  background-image: url('../images/Frame-427321729.png');
  background-position: 100% 0;
  background-size: cover;
}

.nav-link {
  z-index: 3;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--fg-text-primary);
  letter-spacing: -.03125rem;
  border-radius: .25rem;
  align-items: center;
  padding: .375rem .5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-link:hover {
  opacity: .7;
}

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

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

.padding-global {
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  height: 4rem;
  display: flex;
}

.navbar {
  z-index: 999;
  background-color: #0a0a0a00;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-menu {
  justify-content: center;
  align-items: center;
  display: flex;
}

.navbar-left-side-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
}

.navbar-button-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  border-radius: var(--button_border-radius);
  color: #000;
  text-align: center;
  letter-spacing: 0;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  text-decoration: none;
  transition: all .3s cubic-bezier(.23, 1, .32, 1);
  display: flex;
}

.button.brand {
  background-color: var(--bg-brand);
}

.button.brand:hover {
  background-color: #1fb255;
}

.button.outline {
  border: .0625rem solid var(--border--border-primary);
  background-color: var(--bg-primary);
  color: var(--fg-text-primary);
}

.button.outline:hover {
  background-color: #1a1a1a;
}

.button.outline:active {
  outline-offset: 0rem;
  outline: .1875rem #000;
  transform: scale(.96);
}

.button.ghost {
  color: var(--fg-text-primary);
  background-color: #fff0;
  border: .003875rem solid #0000;
}

.button.ghost:hover {
  background-color: var(--button-ghost_hover);
  border-style: solid;
  border-width: .062rem;
}

.button.ghost:active {
  outline-offset: 0rem;
  outline: .1875rem #000;
  transform: scale(.96);
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-padding.hero {
  padding-top: 12rem;
}

.section-padding.remove-bottom-padding {
  padding-bottom: 0;
}

.section-padding.footer-line {
  border-top: 1px solid #3b3b3b;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.content-wrapper {
  grid-column-gap: var(--gap-md);
  grid-row-gap: var(--gap-md);
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.content-wrapper.align-center {
  align-items: center;
}

.section-heading-wrapper {
  grid-column-gap: var(--gap-md);
  grid-row-gap: var(--gap-md);
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.section-heading-wrapper.align-center {
  align-items: center;
}

.text-6xl {
  font-family: Quilon, sans-serif;
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 3.75rem;
}

.text-6xl.text-primary {
  color: var(--fg-text-primary);
}

.heading-content-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: 33rem;
  display: flex;
}

.heading-content-wrapper.align-center {
  text-align: center;
  align-items: center;
}

.heading-content-wrapper.reduce-max-width {
  max-width: 29rem;
}

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

.text-large.text-primary {
  color: var(--fg-text-primary);
}

.text-large.bold {
  font-weight: 700;
}

.hero-button-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-logos-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-wrap: wrap;
  place-content: center flex-start;
  align-items: center;
  display: flex;
}

.hero-heading-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.hero-image-wrapper {
  width: 100%;
  position: relative;
}

.green-gradient {
  background-color: var(--bg-brand);
  filter: blur(6.25rem);
  border-radius: 3.125rem;
  width: 8rem;
  height: 8rem;
  position: absolute;
  inset: 12% auto auto 6%;
}

.hero-image {
  z-index: 1;
  border-radius: var(--card_border-radius);
  width: 100%;
  position: relative;
}

.features3-section {
  background-color: var(--bg-primary);
}

.html-embed {
  position: fixed;
  inset: 0% auto auto 0%;
}

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

.features3-item {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.features3-thumbnail {
  border-radius: var(--card_border-radius);
  background-color: var(--bg-secondary);
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.features3-image {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.features3-content-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.text-xl {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.75rem;
}

.text-xl.text-primary {
  color: var(--fg-text-primary);
}

.text-xl.bold {
  font-weight: 600;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-base.text-secondary {
  color: var(--fg-text-secondary);
}

.text-base.text-secondary.link {
  transition: all .3s;
}

.text-base.bold.text-primary {
  color: var(--fg-text-primary);
}

.text-base.text-primary {
  color: var(--light--fg-text-primary);
}

.text-base.text-primary.bold {
  font-weight: 600;
}

.text-base.text-error {
  color: red;
}

.text-base.link {
  text-decoration: underline;
}

.text-base.link:hover {
  opacity: .8;
}

.features3-icon-wrapper {
  border-radius: 0;
  justify-content: center;
  align-items: center;
  padding: 8px;
  display: flex;
  overflow: hidden;
}

.features3-icon-wrapper.background-secondary {
  background-color: var(--bg-secondary);
}

.features3-text-wrapper {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
}

.features4-section {
  background-color: var(--bg-primary);
}

.features4-grid-wrapper {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 90vh;
  display: grid;
}

.features4-media-wrapper {
  background-color: var(--bg-secondary);
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
  overflow: hidden;
}

.features4-content {
  justify-content: center;
  align-items: center;
  padding: 3rem;
  display: flex;
  position: relative;
}

.features4-right-container {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: 29rem;
  display: flex;
}

.text-5xl {
  font-family: Quilon, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 3.25rem;
}

.text-5xl.text-primary {
  color: var(--fg-text-primary);
}

.text-small {
  letter-spacing: 0;
  font-size: .875rem;
  line-height: 1.25rem;
}

.text-small.medium {
  font-weight: 500;
}

.text-small.medium.text-secondary {
  color: var(--fg-text-secondary);
}

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

.icon._20px {
  width: 1.25rem;
  height: 1.25rem;
}

.icon._24px {
  width: 1.5rem;
  height: 1.5rem;
}

.icon._32px {
  width: 2rem;
  height: 2rem;
}

.icon.footer-decorative-1 {
  position: absolute;
  inset: 4% auto auto 5%;
}

.icon.footer-decorative-1.invert {
  filter: invert();
}

.icon.footer-decorative-2 {
  position: absolute;
  inset: -6% 4% auto auto;
}

.icon.footer-decorative-2.invert {
  filter: invert();
}

.badge {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  border-radius: var(--button_border-radius);
  background-color: var(--components--badges--green--bg-green);
  color: var(--components--badges--green--fg-green);
  justify-content: flex-start;
  align-items: center;
  padding: .375rem;
  display: flex;
}

.avatar-group {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.avatar-item {
  border: .125rem solid var(--bg-primary);
  border-radius: 3.125rem;
  width: 2.5rem;
  margin-right: -.5rem;
}

.benefit-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: 21rem;
  display: flex;
}

.benefit-item {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.features4-tittle-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.cursor {
  position: absolute;
}

.cursor._1 {
  top: 5.6875rem;
  right: 9.34375rem;
}

.cursor._2 {
  bottom: 4.375rem;
  right: 21.0313rem;
}

.cta3-section {
  background-color: var(--bg-primary);
}

.cta3-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: var(--bg-secondary);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 28rem;
  display: block;
  position: relative;
  overflow: hidden;
}

.spline-scene {
  z-index: 5;
  width: 100%;
  height: 100%;
  position: relative;
}

.overlay {
  z-index: 6;
  pointer-events: none;
  background-image: linear-gradient(to top, #222223, #22222300 68%);
  position: absolute;
  inset: 0%;
}

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

.cta5-section {
  background-color: var(--bg-primary);
  display: flex;
}

.cta5-content-wrapper {
  grid-column-gap: 12rem;
  grid-row-gap: 12rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-content-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: 33rem;
  display: flex;
}

.cta5-media-wrapper {
  border-radius: var(--card_border-radius);
  overflow: hidden;
}

.cta5-image {
  object-fit: cover;
  height: 33rem;
}

.faq1-section {
  background-color: var(--bg-primary);
  display: none;
  position: relative;
}

.faq1-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.faq-icon {
  justify-content: center;
  min-width: 1.25rem;
  min-height: 1.25rem;
  display: flex;
}

.faq-item {
  border-bottom: .0625rem solid var(--border--border-primary);
  background-color: #e5e6e500;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  transition: all .35s;
}

.faq-item-bottom {
  height: auto;
  overflow: hidden;
}

.faq-item-answer {
  width: 100%;
  padding: 1rem 0;
}

.faq-item-top {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  transition: all .3s cubic-bezier(.19, 1, .22, 1);
  display: flex;
}

.faq-item-top:hover {
  background-color: var(--bg-secondary);
}

.faq1-column {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.footer {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  position: relative;
}

.footer-logo-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.credits-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: flex;
}

.footer-content-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.decorative-element {
  width: 3.4rem;
  position: absolute;
}

.decorative-element._1 {
  inset: 11% 19% auto auto;
}

.decorative-element._2 {
  inset: 23% 39% auto auto;
}

.decorative-element._3 {
  top: 31%;
  left: auto;
  right: 15%;
}

.decorative-element._4 {
  inset: 41% 33% 0 auto;
}

.logo {
  width: 7rem;
}

.logo.goin {
  width: 5rem;
}

.logo.checkout {
  width: 10rem;
}

.hero-wrapper {
  grid-column-gap: var(--gap-md);
  grid-row-gap: var(--gap-md);
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.navbar-logo {
  width: 8rem;
}

.contact-section {
  background-color: var(--bg-primary);
  position: relative;
}

.contact-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  display: flex;
}

.input-field-minimal {
  height: 3rem;
  color: var(--fg-text-secondary);
  background-color: #fff0;
  border: 1px solid #0000;
  border-bottom-color: #ffffff1a;
  margin: 0;
  padding: 8px 8px 8px 0;
  transition: all .5s cubic-bezier(.23, 1, .32, 1);
}

.input-field-minimal:hover {
  border-bottom-color: #ffffff4d;
}

.input-field-minimal:focus {
  color: var(--fg-text-primary);
  border-color: #0000 #0000 #ffffffb3;
}

.input-field-minimal.area-text {
  min-width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 8rem;
  max-height: 14rem;
}

.form-block {
  width: 28rem;
  margin-bottom: 0;
}

.form {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.form-content-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  align-items: stretch;
  width: 100%;
}

.contact-additional-notes-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border: 1px solid var(--border--border-primary);
  border-radius: 8px;
  flex-direction: column;
  align-items: flex-start;
  width: 14rem;
  padding: 16px;
  display: flex;
}

.contact-note-item {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
}

.icon-solid {
  justify-content: center;
  align-items: center;
  display: flex;
}

.icon-solid._24px.fg-icon-primary {
  color: var(--fg-text-secondary);
}

.icon-solid._48px {
  width: 48px;
  height: 48px;
}

.icon-solid._48px.text-secondary {
  color: var(--fg-text-secondary);
}

.icon-solid._32px {
  width: 32px;
  height: 32px;
}

.features5image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin-top: 3rem;
  position: relative;
}

.features5image.remove-top-margin {
  margin-top: 0;
}

.green-overlay {
  z-index: 6;
  filter: blur(150px);
  background-color: #00ff5e;
  width: 100%;
  height: 35rem;
  position: absolute;
  inset: auto 0% -126%;
}

.flex-block-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: center;
}

.success-message {
  background-color: #ddd0;
  height: 100%;
  padding: 0;
}

.text-block {
  display: flex;
}

.div-block {
  align-items: center;
  height: 100%;
  display: flex;
}

.error-message {
  background-color: #ffdede00;
  margin-top: 1.5rem;
  padding: 0;
}

.navbar-button-visibility.hide-desktop {
  display: none;
}

.features3-illustration {
  width: 16rem;
  position: relative;
  bottom: -16.1094px;
}

.footer-logo {
  width: 12rem;
}

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

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

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

@media screen and (max-width: 991px) {
  .nav-link {
    padding: 1rem;
    font-size: 1rem;
  }

  .nav-menu {
    background-color: #131313;
  }

  .navbar-button-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    padding: 1rem;
  }

  .section-heading-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .green-gradient {
    display: none;
    left: 13%;
  }

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

  .features4-grid-wrapper {
    flex-direction: column;
    grid-template-columns: 1fr;
    height: auto;
    display: flex;
  }

  .features4-grid-wrapper.switch-order {
    flex-direction: column-reverse;
  }

  .features4-media-wrapper {
    height: 90vw;
  }

  .features4-content {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .icon.footer-decorative-1, .icon.footer-decorative-2 {
    display: none;
  }

  .cursor._1 {
    top: 3.25rem;
    right: 4.96875rem;
  }

  .cursor._2 {
    bottom: 11.375rem;
    right: 6.46875rem;
  }

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

  .cta5-content-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .cta5-image {
    width: auto;
    height: auto;
  }

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

  .faq-item-answer {
    padding-bottom: 1rem;
  }

  .faq1-column {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .decorative-element {
    display: none;
  }

  .decorative-element._1 {
    right: 10%;
  }

  .decorative-element._2 {
    top: 17%;
    right: 27%;
  }

  .decorative-element._4 {
    right: 12%;
  }

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

  .contact-wrapper {
    flex-direction: column;
  }

  .features5image {
    min-width: auto;
  }

  .features5image.remove-top-margin {
    margin-top: 0;
  }

  .burger-menu.w--open {
    background-color: #c8c8c800;
  }

  .navbar-button-visibility {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .navbar-button-visibility.hide {
    display: none;
  }

  .navbar-button-visibility.hide-desktop {
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section-padding.hero {
    padding-top: 8rem;
  }

  .text-6xl {
    font-size: 3rem;
    line-height: 3rem;
  }

  .heading-content-wrapper.reduce-max-width {
    text-align: center;
    align-items: center;
  }

  .text-large {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .features3-wrapper {
    grid-column-gap: 3.5rem;
    grid-row-gap: 3.5rem;
    grid-template-columns: 1fr;
  }

  .features4-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .text-5xl {
    font-size: 3rem;
    line-height: 3rem;
  }

  .cta3-wrapper, .features5-wrapper {
    grid-template-columns: 1fr;
  }

  .cta5-content-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-direction: column;
    align-items: center;
  }

  .faq1-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .faq-item-answer {
    padding-left: 0;
  }

  .faq-item-top {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .faq1-column {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .footer-logo-wrapper {
    display: flex;
  }

  .credits-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .footer-content-wrapper {
    align-items: flex-start;
    margin-right: auto;
  }

  .decorative-element {
    display: none;
  }

  .logo {
    width: 8rem;
  }

  .logo.goin {
    width: 5rem;
  }

  .logo.checkout {
    width: 10rem;
  }

  .contact-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
    align-items: stretch;
    width: 100%;
  }

  .input-field-minimal {
    background-color: #1d1d1d;
    border-width: 0;
    border-color: #0000;
    border-radius: 8px;
    padding: 1rem;
  }

  .input-field-minimal:hover {
    background-color: #1d1d1d;
    padding: 1rem;
  }

  .input-field-minimal:focus {
    background-color: #333;
    padding: 1rem;
  }

  .form-block {
    width: 100%;
  }

  .features3-illustration {
    width: 50vw;
    bottom: -33.1094px;
  }
}

@media screen and (max-width: 479px) {
  .padding-global {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-padding {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .section-heading-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .text-6xl {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }

  .heading-content-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .hero-button-wrapper {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-heading-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .hero-image-wrapper {
    margin-top: auto;
  }

  .features4-content {
    padding: 2rem 1rem;
  }

  .text-5xl {
    font-size: 2rem;
    line-height: 2rem;
  }

  .cursor {
    width: 7rem;
  }

  .cursor._1 {
    top: 1.65rem;
    right: 4.26875rem;
  }

  .cursor._2 {
    bottom: 12.075rem;
    right: 2.96875rem;
  }

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

  .contact-additional-notes-wrapper {
    width: 100%;
  }
}

#w-node-_55ead4e9-49d9-2cff-6d86-81b42164dc5c-eae3516d, #w-node-_258722ed-cb89-b6b8-3731-5002f09fc0e7-eae3516d, #w-node-_6fc14606-2a82-6321-6b4c-da1ab1bc3891-eae3516d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Dmsans';
  src: url('../fonts/DMSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dmsans';
  src: url('../fonts/DMSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dmsans';
  src: url('../fonts/DMSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dmsans';
  src: url('../fonts/DMSans_36pt-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Quilon';
  src: url('../fonts/Quilon-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Quilon';
  src: url('../fonts/Quilon-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Quilon';
  src: url('../fonts/Quilon-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Quilon';
  src: url('../fonts/Quilon-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}