:root {
  --white: white;
  --black: #222;
  --crosspeak-green: #19312b;
  --silver: #c4c4c4;
  --light-green: rgba(53, 213, 173, .22);
}

.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-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 50%;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

body {
  background-color: var(--white);
  color: var(--black);
  cursor: default;
  flex-direction: column;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  display: flex;
}

h1 {
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: DM Sans, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 2.369rem;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 1.777rem;
  font-weight: 300;
  line-height: 1.2;
}

h4 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 1.333em;
  font-weight: 700;
  line-height: 1.3;
}

h5 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

h6 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.5;
}

p {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

a {
  color: var(--crosspeak-green);
  text-decoration: underline;
  transition: all .2s;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
  line-height: 2;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: .8rem;
  font-weight: 300;
  line-height: 1;
  display: block;
}

blockquote {
  border-left: 5px solid var(--crosspeak-green);
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 11px 20px;
  font-size: 1.5em;
  line-height: 1.3;
}

figure {
  margin: 20px auto;
}

figcaption {
  color: var(--black);
  text-align: center;
  margin-top: 12px;
  font-size: .75rem;
}

.navbar {
  z-index: 1000;
  width: 100%;
  background-color: var(--crosspeak-green);
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  position: -webkit-sticky;
  position: sticky;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.container {
  width: 100%;
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
}

.container.in-navbar {
  max-width: 1920px;
}

.brand {
  padding-left: 0;
}

.navbar-wrapper {
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.nav-link {
  color: var(--white);
  padding: 20px;
  font-size: .9rem;
  font-weight: 400;
  transition: all .2s;
}

.nav-link:hover, .nav-link.w--current {
  color: var(--silver);
  text-decoration: underline;
}

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

.button {
  border: 1px solid var(--crosspeak-green);
  background-color: var(--white);
  box-shadow: 1px 1px 0 1px var(--crosspeak-green);
  filter: brightness();
  color: var(--crosspeak-green);
  text-align: center;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  transition: all .2s;
}

.button:hover {
  background-color: var(--white);
  box-shadow: 0 0 0 0 var(--crosspeak-green);
  text-decoration: none;
}

.section {
  width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
}

.section.footer {
  border-top: 1px solid var(--black);
  background-color: var(--crosspeak-green);
  margin-top: auto;
  padding-top: 30px;
  padding-bottom: 60px;
}

.section._404 {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section.no-paddings {
  padding-top: 0;
  padding-bottom: 0;
}

.section.ribbon {
  background-color: var(--light-green);
  padding-top: 60px;
  padding-bottom: 60px;
}

.section.hero {
  height: auto;
  min-height: 80vh;
  background-image: url('../images/noun-lines-323632-FFFFFF.svg'), linear-gradient(344deg, var(--light-green), rgba(156, 234, 215, .21) 51%, white);
  background-size: 50px, auto;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
  position: relative;
}

.section.hero.backup {
  display: none;
}

.section.hero.newone {
  background-image: url('../images/lake.jpg'), url('../images/noun-lines-323632-FFFFFF.svg'), linear-gradient(344deg, var(--light-green), rgba(156, 234, 215, .21) 51%, white);
  background-position: 0 0, 0 0, 0 0;
  background-size: auto, 50px, auto;
}

.section.left-right {
  height: auto;
  min-height: 80vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.section.hidden {
  display: none;
}

.section.inner {
  padding-left: 60px;
  padding-right: 60px;
}

.hero-wrap {
  width: 100%;
  height: 100%;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.play-icon {
  width: 45px;
  flex: none;
  position: absolute;
}

.hero-image-wrap {
  z-index: 2;
  width: 100%;
  max-width: 46%;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

._3-columns-grid {
  width: 100%;
  grid-column-gap: 40px;
  grid-row-gap: 60px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

._3-columns-grid.bottom-margin-80px {
  margin-bottom: 80px;
}

._3-columns-grid._2, ._3-columns-grid.new {
  grid-template-columns: 1fr 1fr;
}

.card {
  width: 100%;
  height: 100%;
  background-color: var(--crosspeak-green);
  color: var(--white);
  text-align: center;
  border: 1px solid #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.card-icon {
  max-height: 120px;
  max-width: 120px;
  flex: none;
}

.paragraph-smaller {
  font-size: 1rem;
}

.paragraph-smaller.max-35ch {
  max-width: 35ch;
}

.flex {
  display: flex;
}

.flex.vertical {
  max-width: 600px;
  flex-direction: column;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
}

.absolute-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.absolute-image.radius-20 {
  border-radius: 20px;
}

.ratio-56-25 {
  width: 100%;
  border-radius: 10px;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}

.no-top-margin {
  margin-top: 0;
}

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

.footer-wrap {
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 0;
  font-size: .75rem;
  display: flex;
}

.footer-links-wrap {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  align-items: start;
  display: grid;
}

.footer-link {
  color: var(--white);
  margin-top: 12px;
  text-decoration: none;
}

.footer-link.auto-margin {
  margin-top: 0;
}

.subheading {
  max-width: 50ch;
  margin-bottom: 30px;
}

.style-guide-wrap {
  width: 100%;
  margin-top: 60px;
}

.style-guide-block {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
  display: flex;
}

.label {
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: .75rem;
}

.form-block {
  width: 100%;
}

.text-field {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--black);
  background-color: var(--white);
  color: var(--black);
  border-radius: 4px;
  margin-bottom: 24px;
  padding: 12px 16px;
  transition: all .2s;
}

.text-field:hover, .text-field:focus {
  border-color: var(--crosspeak-green);
}

.text-field::-ms-input-placeholder {
  color: rgba(34, 34, 34, .65);
  font-size: .75rem;
}

.text-field::placeholder {
  color: rgba(34, 34, 34, .65);
  font-size: .75rem;
}

.text-field.text-area {
  min-height: 88px;
}

.text-field.in-newsletter {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}

.checkbox-field {
  align-items: center;
  margin-bottom: 20px;
  padding-left: 0;
  line-height: 1.5;
  display: flex;
}

.checkbox {
  width: 16px;
  height: 16px;
  border-color: var(--black);
  flex: none;
  margin-top: 0;
  margin-left: 0;
  margin-right: 12px;
  transition: all .2s;
}

.checkbox:hover {
  border-color: var(--crosspeak-green);
}

.checkbox.w--redirected-checked {
  border-color: var(--crosspeak-green);
  background-color: var(--crosspeak-green);
}

.checkbox.w--redirected-focus {
  border-color: var(--crosspeak-green);
  box-shadow: 0 0 3px 1px var(--crosspeak-green);
}

.checkbox-label {
  margin-bottom: 0;
}

.radio-button-field {
  align-items: center;
  margin-bottom: 20px;
  padding-left: 0;
  line-height: 1.5;
  display: flex;
}

.radio-button {
  width: 16px;
  height: 16px;
  border-color: var(--black);
  flex: none;
  margin-top: 0;
  margin-left: 0;
  margin-right: 12px;
  transition: all .2s;
}

.radio-button:hover, .radio-button.w--redirected-checked {
  border-color: var(--crosspeak-green);
}

.radio-button.w--redirected-focus {
  border-color: var(--crosspeak-green);
  box-shadow: 0 0 3px 1px var(--crosspeak-green);
}

.radio-button-label {
  margin-bottom: 0;
}

.select-field {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--black);
  background-color: var(--white);
  border-radius: 4px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  transition: all .2s;
}

.select-field:hover, .select-field:focus {
  border: 1px solid var(--crosspeak-green);
}

.success-message {
  background-color: var(--light-green);
  color: var(--white);
  border-radius: 10px;
  padding: 20px;
}

.error-message {
  background-color: var(--light-green);
  color: var(--crosspeak-green);
  margin-top: 20px;
  padding: 12px 20px;
}

.footer-column {
  color: var(--white);
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.social-link {
  color: var(--black);
  flex: none;
  padding: 4px;
  font-weight: 500;
  text-decoration: none;
}

.social-link:hover {
  text-decoration: none;
  transform: scale(1.1);
}

.social-link.display-flex {
  align-items: center;
  display: flex;
}

.social-icon {
  width: 20px;
}

.social-icon.margin-right {
  margin-right: 4px;
}

.newsletter-wrap {
  width: 100%;
  max-width: 320px;
  color: var(--white);
  flex-direction: column;
  display: flex;
}

.newsletter-form {
  width: 100%;
  align-items: stretch;
  display: flex;
}

.newsletter-submit-button {
  border: 1px solid var(--black);
  background-color: var(--black);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  transition: all .2s;
}

.newsletter-submit-button:hover {
  background-color: var(--crosspeak-green);
}

.newsletter-form-block {
  width: 100%;
}

.social-links-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  filter: invert();
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  align-items: center;
  margin-left: 20px;
  margin-right: 20px;
  display: grid;
}

.social-links-wrap.in-footer {
  grid-row-gap: 4px;
  flex-direction: column;
  grid-auto-flow: row;
  margin-left: 0;
  margin-right: 0;
}

.font-align-center {
  text-align: center;
  padding-left: 12px;
  padding-right: 12px;
}

.black-box {
  width: 100%;
  background-image: linear-gradient(to right, white, var(--light-green));
  border-radius: 20px;
  padding: 60px;
}

.black-box-contenter {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.black-box-image {
  width: 100%;
  max-width: 45%;
  border-radius: 20px;
}

.black-box-content {
  width: 100%;
  max-width: 45%;
}

.absolute-lightbox-link {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.carousel {
  width: 100%;
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 40px;
  padding-left: 60px;
  padding-right: 60px;
}

.left-arrow {
  width: 60px;
  height: 60px;
  background-color: var(--light-green);
  background-image: url('../images/Vector-2.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 50%;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.right-arrow {
  width: 60px;
  height: 60px;
  background-color: var(--light-green);
  background-image: url('../images/Vector-2-2.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 50%;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.mask {
  width: 100%;
}

.slide {
  width: 33.33%;
  padding: 20px;
}

.slide-nav {
  bottom: -60px;
}

.ratio-125 {
  padding-top: 125%;
  position: relative;
}

.roadmap-wrap {
  width: 100%;
  flex-direction: row;
  align-items: center;
  margin-top: 60px;
  display: flex;
}

.roadmap-left-column {
  width: 100%;
  text-align: right;
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}

.roadmap-progress-bar-wrap {
  width: 2px;
  height: auto;
  background-color: var(--silver);
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  margin-left: 60px;
  margin-right: 60px;
  display: flex;
  position: relative;
}

.roadmap-right-column {
  width: 100%;
  text-align: left;
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}

.roadmap-step-wrap {
  width: 100%;
  align-items: center;
  margin-bottom: 60px;
  display: flex;
}

.roadmap-step-wrap.left-and-last {
  margin-bottom: 0;
}

.roadmap-content-wrap {
  width: 100%;
}

.roadmap-image {
  width: 100%;
  height: auto;
  max-height: 100%;
  max-width: 158px;
  flex: none;
}

.roadmap-image.margin-left {
  margin-left: 30px;
}

.roadmap-image.margin-right {
  margin-right: 30px;
}

.announce-label {
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #000;
  border-radius: 40px;
  flex: none;
  margin-left: 12px;
  padding: 4px 12px;
  font-size: .75rem;
  line-height: 1;
  display: inline-block;
}

.announce-label.completed {
  border-color: var(--crosspeak-green);
  background-color: var(--crosspeak-green);
  color: var(--white);
}

.roadmap-step-heading-wrap {
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.roadmap-step-heading-wrap.justify-left {
  justify-content: flex-start;
}

.team-card {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.team-avatar {
  width: 100%;
  max-width: 158px;
  border-radius: 50%;
  flex: none;
}

.twitter-link-wrap {
  align-items: center;
  display: flex;
}

.typed-text.in-cta-ribbon {
  margin-top: 0;
  margin-bottom: 0;
}

.faq-wrap {
  width: 100%;
}

.faq-dropdown {
  width: 100%;
  border: 1px solid var(--crosspeak-green);
  color: var(--black);
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.dropdown-toggle {
  width: 100%;
  min-height: 72px;
  white-space: normal;
  padding: 12px 60px 12px 30px;
}

.dropdown-list {
  background-color: rgba(0, 0, 0, 0);
  display: block;
  position: relative;
  overflow: hidden;
}

.dropdown-list-wrap {
  padding: 0 30px 12px;
}

.content-box {
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 130px;
}

.content-box.nost {
  position: static;
}

.progress-bar {
  width: 100%;
  height: 100%;
  background-color: var(--black);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.circle {
  width: 12px;
  height: 12px;
  background-color: var(--black);
  border-radius: 50%;
}

.hero-image {
  width: 80%;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 0;
}

.hero-content-wrap {
  width: 100%;
  max-width: 54%;
  flex-direction: column;
  justify-content: center;
  padding-right: 60px;
  display: flex;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.navlogo {
  height: 80px;
}

.cursor {
  letter-spacing: -9px;
  background-color: rgba(34, 34, 34, .15);
}

.toph1 {
  min-height: 215px;
}

.toph1.hidden {
  display: none;
}

.toph1.newv {
  min-height: 0;
  color: var(--crosspeak-green);
  margin-bottom: 10px;
  font-size: 2.9rem;
}

.toph1.newv.anim {
  margin-bottom: 0;
  font-size: 3.6rem;
}

.footerlogo {
  width: 50%;
}

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

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

.icon-text-point {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #000;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.h2 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.1;
}

.input-label {
  z-index: 2;
  color: #000;
  background-color: #fff;
  border-radius: 3px;
  margin-bottom: 0;
  padding-left: 6px;
  padding-right: 7px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 15px;
  display: inline-block;
  position: relative;
  bottom: -7px;
  left: 6px;
}

.form-inner {
  flex-direction: column;
  display: flex;
}

.main-section {
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding: 140px 5%;
  display: flex;
}

.flex-row-outer {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.spacer-m {
  width: 100%;
  height: 20px;
}

.main-container {
  width: 100%;
  max-width: 1100px;
}

.button-2 {
  height: 50px;
  color: #fff;
  background-color: #434de7;
  border-radius: 10px;
  padding: 15px 35px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 10px 20px -3px rgba(29, 1, 80, .1);
}

.button-2:hover {
  box-shadow: none;
  background-color: #000;
}

.button-2.in-form {
  width: 100%;
  background-color: var(--crosspeak-green);
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.icon.dark {
  color: #000;
}

.success-message-2 {
  background-color: var(--crosspeak-green);
  color: #fff;
  border-radius: 10px;
}

.input {
  height: 48px;
  color: #000;
  background-color: #fff;
  border: 1px solid #b7bbd1;
  border-radius: 6px;
  margin-bottom: 0;
  padding-top: 10px;
  padding-left: 18px;
  font-size: 15px;
  font-weight: 300;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: 0 3px 6px -2px rgba(29, 1, 80, .1);
}

.input:hover {
  box-shadow: none;
  border-color: #434de7;
}

.input:focus {
  border: 1px solid #434de7;
}

.input::-ms-input-placeholder {
  color: #6e6e6e;
}

.input::placeholder {
  color: #6e6e6e;
}

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

.spacer-xs {
  width: 100%;
  height: 10px;
}

.input-wrapper {
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 12px;
  display: flex;
  position: relative;
}

.input-wrapper._15p-right {
  margin-right: 15px;
}

._1-2-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  align-items: center;
}

._1-2-grid._75-space {
  grid-column-gap: 75px;
  grid-row-gap: 75px;
}

.spacer-l {
  width: 100%;
  height: 30px;
}

.border-wrap {
  width: auto;
  max-width: none;
  min-width: 400px;
  background-color: #fff;
  border: 1px solid #f2f3ff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 30px;
  display: none;
  box-shadow: 0 20px 30px -10px rgba(29, 1, 80, .1);
}

.paragraph {
  opacity: .9;
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

.lineimg {
  width: 30%;
  display: none;
  position: absolute;
  top: auto;
  bottom: -34%;
  left: auto;
  right: 0%;
}

.outerborder {
  background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--light-green), var(--crosspeak-green));
  padding: 5px;
  box-shadow: 1px 1px 10px 2px rgba(0, 0, 0, .32);
}

._50div {
  width: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  display: flex;
}

._50div.img-side {
  padding: 0;
  position: relative;
  overflow: hidden;
}

._50img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.noov {
  overflow: hidden;
}

.stic {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}

.grid {
  grid-template-rows: auto;
  justify-items: start;
}

.corner {
  width: 200px;
  height: 200px;
  background-color: #fff;
  display: none;
  position: absolute;
  top: -100px;
  bottom: auto;
  left: -100px;
  right: auto;
  transform: rotate(45deg);
}

.corner.bottomleft {
  top: auto;
  bottom: -100px;
  left: -100px;
  right: auto;
  transform: rotate(-45deg);
}

.corner.top-right {
  top: -100px;
  bottom: auto;
  left: auto;
  right: -100px;
  transform: rotate(-45deg);
}

.corner.bottomright {
  top: auto;
  bottom: -100px;
  left: auto;
  right: -100px;
  transform: rotate(45deg);
}

.paragraph-header {
  letter-spacing: -1px;
  font-size: 1.8rem;
  line-height: 1.2;
}

@media screen and (min-width: 1280px) {
  body {
    font-size: 16px;
  }

  .left-arrow {
    transition: all .2s;
  }

  .left-arrow:hover {
    background-color: #f2e1ff;
  }

  .right-arrow {
    transition: all .2s;
  }

  .right-arrow:hover {
    background-color: #f2e1ff;
  }
}

@media screen and (min-width: 1440px) {
  .section.inner {
    padding-left: 20px;
  }
}

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

  .container.in-navbar {
    padding-right: 20px;
  }

  .nav-link {
    color: var(--black);
    text-align: center;
  }

  .nav-menu {
    width: 100%;
    background-color: var(--white);
    border-top: 1px solid rgba(0, 0, 0, .1);
    padding: 0 20px 40px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .2);
  }

  .section.left-right {
    flex-direction: column-reverse;
  }

  .section.left-right.nonrev {
    flex-direction: column;
  }

  .hero-wrap {
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
  }

  ._3-columns-grid {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .card {
    flex-direction: column;
  }

  ._2-column-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    align-items: start;
  }

  .menu-button {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    color: var(--white);
    flex: none;
    justify-content: center;
    align-items: center;
    padding: 16px;
  }

  .menu-button.w--open {
    background-color: var(--white);
  }

  .lottie-animation {
    width: 100%;
    height: 100%;
  }

  .social-links-wrap {
    filter: none;
    justify-content: center;
    margin-bottom: 32px;
    margin-left: 0;
    margin-right: 0;
  }

  .roadmap-wrap {
    margin-top: 40px;
  }

  .roadmap-step-wrap {
    flex-direction: column;
  }

  .roadmap-step-wrap.left, .roadmap-step-wrap.left-and-last {
    flex-direction: column-reverse;
    align-items: flex-end;
  }

  .content-box {
    position: static;
  }

  ._1-2-grid {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  ._1-2-grid._75-space.reverse {
    flex-direction: column-reverse;
  }

  .border-wrap, ._50div {
    width: 100%;
  }

  ._50div.img-side {
    height: 50vh;
  }

  .stic {
    position: static;
  }

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

@media screen and (max-width: 767px) {
  .section.hero {
    height: auto;
    display: block;
  }

  .section.left-right {
    height: auto;
    flex-direction: column-reverse;
  }

  .section.left-right.nonrev, .hero-wrap {
    flex-direction: column;
  }

  .hero-image-wrap {
    max-width: 100%;
  }

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

  ._2-column-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
  }

  .footer-links-wrap {
    margin-top: 20px;
  }

  .newsletter-wrap {
    margin-top: 40px;
  }

  .font-align-center.no-top-margin {
    text-align: left;
    padding-left: 0;
  }

  .black-box {
    padding: 40px;
  }

  .black-box-contenter {
    flex-direction: column;
  }

  .black-box-image {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .black-box-content {
    max-width: 100%;
  }

  .typed-text.in-cta-ribbon {
    text-align: center;
  }

  .hero-content-wrap {
    max-width: 100%;
    margin-bottom: 60px;
    padding-right: 0;
  }

  ._50div {
    width: 100%;
    height: auto;
    min-height: 0;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  ._50div.img-side {
    height: 50vh;
  }

  .stic {
    position: static;
  }

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

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

  .container.in-navbar {
    padding-right: 4px;
  }

  .container.no-padding-on-mobile {
    padding-left: 0;
    padding-right: 0;
  }

  .button {
    width: 100%;
  }

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

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

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

  .hero-wrap {
    grid-row-gap: 0px;
  }

  .hero-image-wrap {
    opacity: 1;
  }

  ._3-columns-grid {
    grid-row-gap: 20px;
  }

  ._3-columns-grid._2, ._3-columns-grid.new {
    grid-template-columns: 1fr;
  }

  .paragraph-smaller.max-35ch {
    text-align: left;
  }

  .absolute-image.radius-20 {
    border-radius: 10px;
  }

  .footer-wrap {
    text-align: center;
  }

  .footer-links-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 50%;
    grid-auto-columns: auto;
    grid-auto-flow: row;
  }

  .subheading {
    text-align: left;
  }

  .social-links-wrap.in-footer {
    grid-auto-flow: column;
  }

  .black-box {
    border-radius: 0;
    padding: 60px 16px;
  }

  .carousel {
    padding-left: 12px;
    padding-right: 0;
  }

  .left-arrow, .right-arrow {
    display: none;
  }

  .slide {
    width: 45%;
    margin-right: 12px;
    padding: 0;
  }

  .roadmap-progress-bar-wrap {
    margin-left: 20px;
    margin-right: 20px;
  }

  .roadmap-image {
    max-width: 79px;
  }

  .announce-label {
    width: 100%;
    margin-left: 0;
  }

  .roadmap-step-heading-wrap {
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
  }

  .typed-text {
    text-align: left;
  }

  .faq-dropdown {
    margin-bottom: 12px;
  }

  .dropdown-toggle, .dropdown-list-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-title {
    font-size: 1em;
  }

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

  .toph1 {
    min-height: 300px;
    font-size: 2.8rem;
  }

  .toph1.newv {
    font-size: 2.1rem;
  }

  .toph1.newv.anim {
    font-size: 2.9rem;
  }

  .h2 {
    font-size: 30px;
  }

  .form-inner {
    width: 100%;
  }

  .main-section {
    padding: 60px 15px;
  }

  .flex-row-outer {
    flex-direction: column;
  }

  .input-wrapper._15p-right {
    margin-right: 0;
  }

  ._1-2-grid._75-space {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  ._1-2-grid._75-space.reverse {
    flex-direction: column;
  }

  .border-wrap {
    min-width: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .paragraph {
    margin-bottom: 0;
  }

  ._50div {
    padding: 40px 16px;
  }

  .corner {
    width: 150px;
    height: 150px;
  }

  .linkemail {
    font-size: 1.1rem;
  }
}

#w-node-bef11062-9650-2d49-a41e-50ba90647a9a-32fc3ec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-c102bce0-ed0c-7db4-1302-18fd0b6bbf38-32fc3ec8, #w-node-c102bce0-ed0c-7db4-1302-18fd0b6bbf5d-32fc3ec8, #w-node-_966dc6d0-bbcd-f922-7a76-0ea823ef0de4-32fc3ec8, #w-node-_0b7b63c3-5fb3-5913-d1cf-1ede8e1b392e-9ea95ec4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


