:root {
  --background-color--background-page: var(--neutral--neutral-darkest);
  --text-color--text-primary: var(--neutral--black);
  --border-color--gold-gradient-darkest: var(--border-color--gray-gradient-darkest);
  --brand-color--brand-primary: #fc9e08;
  --brand-red: #fc0303;
  --neutral--neutral: #999;
  --neutral--neutral-darker: #141414;
  --neutral--white: white;
  --neutral--black: black;
  --neutral--neutral-lightest: #e5e5e5;
  --brand-color--brand-light: #d6d3c2;
  --background-color--background-card: #000000e6;
  --brand-color--brand-dark: #999374;
  --brand: var(--neutral--neutral-light);
  --border-color--gold-gradient-lightest: var(--brand-color--brand-primary);
  --text-color--text-secondary-dark: var(--neutral--neutral);
  --border-color--gray-gradient-lightest: var(--neutral--neutral);
  --border-color--gray-gradient-darkest: var(--neutral--neutral-darker);
  --brand-color--background-blur: gold;
  --neutral--neutral-darkest: #050505;
  --neutral--neutral-light: #ccc;
  --color-new: #f6f3ed;
  --white: white;
  --text: var(--neutral--neutral);
}

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

body {
  background-color: var(--background-color--background-page);
  color: var(--text-color--text-primary);
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

h1 {
  color: var(--text-color--text-primary);
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto Slab, sans-serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1.2;
}

h2 {
  color: var(--text-color--text-primary);
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto Slab, sans-serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
}

h3 {
  color: var(--text-color--text-primary);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto Slab, sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
}

h4 {
  color: var(--text-color--text-primary);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto Slab, sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 1.3;
}

h5 {
  color: var(--text-color--text-primary);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto Slab, sans-serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3;
}

h6 {
  color: var(--text-color--text-primary);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto Slab, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.3;
}

p {
  color: var(--border-color--gold-gradient-darkest);
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  line-height: 28px;
}

a {
  color: var(--brand-color--brand-primary);
  text-decoration: none;
}

li {
  font-size: 16px;
  line-height: 32px;
}

img {
  display: inline-block;
}

strong {
  font-weight: bold;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin-bottom: 10px;
}

.rich-text-block h1 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.rich-text-block h2, .rich-text-block h3, .rich-text-block h4 {
  margin-top: 24px;
  margin-bottom: 16px;
}

.rich-text-block h5, .rich-text-block h6 {
  margin-top: 20px;
  margin-bottom: 16px;
}

.rich-text-block p {
  margin-bottom: 16px;
}

.navigation-menu {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: var(--brand-red);
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.navigation {
  aspect-ratio: auto;
  border: 1px solid var(--neutral--neutral-lightest);
  background-color: var(--neutral--white);
  box-shadow: none;
  flex-direction: column;
  align-items: center;
  padding: 20px 3%;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navigation-brand {
  flex: none;
  transition: opacity .3s;
  display: flex;
}

.navigation-brand:hover {
  opacity: .7;
}

.navigation-right {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav-link {
  color: var(--neutral--black);
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
  align-items: center;
  padding: 20px;
  font-family: Roboto Slab, sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.nav-link:hover {
  color: var(--brand-color--brand-primary);
}

.nav-link.w--current {
  padding-left: 20px;
  padding-right: 20px;
}

.navigation-container {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border-bottom: 1px #0414341a;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navigation-logo {
  width: 240px;
}

.button-primary {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: var(--background-color--background-card);
  color: var(--brand-color--brand-light);
  letter-spacing: .1px;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 56px;
  align-items: center;
  padding: 12px 32px;
  font-family: Roboto Slab, sans-serif;
  font-size: 18px;
  line-height: 28px;
  transition: all .3s;
  display: flex;
  box-shadow: inset -1px -1px 5px #fafafa38;
}

.button-primary:hover {
  color: var(--brand-color--brand-dark);
  background-color: #000c;
}

.button-primary.small {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  padding: 8px 16px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 18px;
}

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

.gradient-text {
  background-image: linear-gradient(180deg, var(--brand-color--brand-light), var(--brand-color--brand-primary));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.page-wrapper {
  overflow: hidden;
}

.section-regular {
  text-align: left;
  justify-content: center;
  align-items: stretch;
  padding: 100px 5%;
  font-family: Poppins, sans-serif;
  display: flex;
}

.section-regular.bg-s2 {
  opacity: 1;
  -webkit-text-fill-color: inherit;
  background-clip: padding-box;
}

.section-regular.pt-120 {
  padding-top: 220px;
}

.section-regular.pt-100 {
  padding-top: 0;
}

.container-regular {
  z-index: 5;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content-wrapper {
  grid-column-gap: 96px;
  grid-row-gap: 96px;
  flex-flow: column;
  flex: none;
  justify-content: center;
  display: flex;
}

.hero-image {
  z-index: 1;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: 50% 50%;
  display: block;
  position: relative;
  overflow: clip;
}

.text-color-gold {
  color: var(--neutral--black);
  font-family: Poppins, sans-serif;
  text-decoration: none;
}

.text-color-gold.white-text {
  color: var(--neutral--white);
}

.hero-features {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto auto;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-columns: 1fr;
  width: 120%;
  display: grid;
}

.hero-feature-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.h2-heading {
  letter-spacing: -.03em;
  font-family: Roboto Slab, sans-serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
}

.gradient-line {
  background-image: linear-gradient(90deg, var(--border-color--gold-gradient-darkest), var(--border-color--gold-gradient-lightest) 51%, var(--border-color--gold-gradient-darkest));
  width: 100%;
  height: 1px;
}

.hero-feature {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.hero-feature-logos {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  justify-items: center;
}

.overline-large {
  color: var(--brand-color--brand-primary);
  text-transform: uppercase;
  font-family: Roboto Slab, sans-serif;
  font-size: 18px;
  line-height: 28px;
}

.feature-card-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.testimonial-grid {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

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

.testimonial-author {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  display: flex;
}

.testimonial-avatar {
  background-image: linear-gradient(#d6d3c280, #5c5c5c80);
  border-radius: 100%;
  padding: 3px;
}

.avatar-image {
  border-radius: 100%;
}

.avatar-logo-wrapper {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #0009;
  background-image: url('../images/logo.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-self: flex-end;
  align-items: center;
  width: 42px;
  height: 42px;
  margin-left: -21px;
  padding: 2px;
  display: flex;
}

.avatar-logo {
  flex: none;
  max-width: 80%;
}

.customer-name-wrap {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.label-small {
  font-size: 14px;
  line-height: 18px;
}

.label-small.text-color-secondary-dark {
  color: var(--text-color--text-secondary-dark);
}

.testimonial-avatar-wrapper {
  flex: none;
  align-self: auto;
  display: flex;
}

.feature-card-text-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  justify-content: flex-end;
  width: 40%;
  display: flex;
}

.feature-card {
  background-color: var(--neutral--white);
  cursor: pointer;
  border-radius: 16px;
  height: 100%;
  padding: 60px 40px 40px;
  position: relative;
  overflow: hidden;
}

.feature-card.large {
  padding-bottom: 60px;
}

.feature-card-gradient {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  object-fit: cover;
  object-position: 50% 100%;
  width: 100%;
  height: 100%;
  max-height: 100%;
  position: absolute;
  inset: auto 0% 0%;
}

.feature-card-overlay {
  z-index: 2;
  background-color: #050505f2;
  border-radius: 32px;
  padding: 60px 40px;
  display: none;
  position: absolute;
  inset: 0%;
  overflow: auto;
}

.feature-overlay-inner {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  display: flex;
}

.feature-overlay-close {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cta-image {
  vertical-align: baseline;
  object-fit: cover;
  object-position: 0% 0%;
  background-image: url('../images/illustration.png');
  background-position: 100% 0;
  background-size: auto;
  flex: 0 auto;
  width: 50%;
  height: 100%;
  display: none;
  position: static;
  inset: auto 0% 0% auto;
}

.content-feature {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  display: flex;
}

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

.content-wrapper {
  flex: none;
}

.content-image-left {
  object-fit: contain;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.icon-x-large {
  width: 64px;
  height: 64px;
}

.content-steps-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 100px;
  padding-top: 0;
  display: grid;
}

.cta-card {
  background-color: #e5ac36;
  border-radius: 60px;
  flex-flow: row;
  justify-content: flex-start;
  padding: 100px 5% 80px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cta-buttons-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.cta-app-link {
  padding: 8px;
  transition: transform .35s;
}

.cta-app-link:hover {
  transform: translate(0, -8px);
}

.cta-content {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 50%;
  display: flex;
}

.feature-card-image {
  border-radius: 60px;
  max-width: 80%;
  display: none;
  position: absolute;
  inset: auto 0% 0% auto;
}

.nav-links-center {
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.blog-grid {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr .6fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  display: grid;
}

.blog-featured-wrapper {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 650px;
  display: flex;
}

.blog-featured-image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 40px;
  width: 100%;
}

.blog-card {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  color: var(--brand);
  flex-flow: column;
  display: flex;
}

.arrow-link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--brand-color--brand-primary);
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  transition: background-position .3s;
  display: flex;
}

.arrow-link:hover {
  background-position: 100%;
}

.arrow-link.large {
  font-size: 18px;
  line-height: 28px;
}

.blog-button-wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-section {
  padding: 20px 5% 0;
}

.footer-logo {
  width: 60px;
}

.footer-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
}

.footer-left {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  max-width: 550px;
  display: flex;
}

.fooler-links-grid {
  grid-column-gap: 20px;
  grid-row-gap: 60px;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.footer-header {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  align-items: center;
  display: flex;
}

.team-social-link {
  flex: none;
  padding: 8px;
  transition: opacity .3s;
}

.password-button-wrapper {
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

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

.footer-link {
  color: var(--text-color--text-secondary-dark);
  transition: color .3s;
}

.footer-link:hover {
  color: var(--brand-color--brand-primary);
}

.footer-copyright {
  font-size: 12px;
  line-height: 15px;
}

.button-secondary {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--background-color--background-card);
  background-image: linear-gradient(#d6d3c233, #5c5c5c24);
  border-radius: 56px;
  justify-content: center;
  align-items: center;
  padding: 12px 32px;
  font-family: Roboto Slab, sans-serif;
  transition: all .3s;
  display: flex;
  box-shadow: inset -1px -1px 5px #fafafa38;
}

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

.cta-apps {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.contact-information {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-flow: column;
  flex: none;
  max-width: 360px;
  display: flex;
}

.bugged-class {
  flex-direction: column;
  max-width: 400px;
  margin-bottom: 80px;
  display: flex;
}

.contact-grid {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  display: grid;
}

.contact-map-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  max-width: 380px;
  display: flex;
}

.contact-map {
  background-image: linear-gradient(187deg, var(--border-color--gray-gradient-lightest), var(--border-color--gray-gradient-darkest));
  border-radius: 20px;
  padding: 2px;
  text-decoration: none;
  position: relative;
}

.contact-map-image {
  border-radius: 20px;
  width: 100%;
  box-shadow: inset -4px -3px 6px #ffffff38;
}

.contact-map-pin {
  z-index: 2;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.field-label {
  color: var(--brand);
  margin-bottom: 0;
  font-family: Roboto Slab, sans-serif;
  font-weight: 400;
}

.text-field {
  background-color: var(--background-color--background-card);
  border: 1px #000;
  border-radius: 10px;
  flex: 1;
  align-self: stretch;
  height: 56px;
  margin-bottom: 0;
  padding: 16px;
  transition: background-color .3s;
  display: block;
}

.text-field:focus {
  background-color: var(--border-color--gray-gradient-darkest);
}

.text-field::placeholder {
  color: var(--brand-color--brand-dark);
}

.text-field-wrapper {
  background-image: linear-gradient(187deg, #999, #141414);
  border-radius: 10px;
  width: 100%;
  padding: 1px;
}

.form-field {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.contact-fields-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-area-wrapper {
  background-image: linear-gradient(187deg, #999, #141414);
  border-radius: 10px;
  padding: 1px;
}

.text-area {
  background-color: var(--background-color--background-card);
  border: 1px #000;
  border-radius: 10px;
  min-height: 200px;
  margin-bottom: 0;
  padding: 16px;
  transition: background-color .3s;
}

.text-area:focus {
  background-color: var(--border-color--gray-gradient-darkest);
}

.text-area::placeholder {
  color: var(--brand-color--brand-dark);
}

.form-submit-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  align-items: center;
  max-width: 540px;
  display: flex;
}

.success-message {
  background-color: #0000;
  background-image: linear-gradient(97deg, var(--brand-color--brand-dark), white);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 20px;
  font-weight: 400;
}

.error-message {
  color: var(--brand-color--brand-primary);
  background-color: #0000;
  margin-top: 30px;
  font-size: 20px;
}

._404-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.utility-section {
  justify-content: center;
  align-items: center;
  padding: 300px 5%;
}

.utility-page-content {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: center;
  flex-direction: column;
  max-width: 540px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.utility-page-form {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.password-error {
  color: var(--brand-color--brand-primary);
  background-color: #0000;
  margin-bottom: 40px;
}

.blog-button-line {
  background-image: linear-gradient(90deg, #262626, #ada785 51%, #262626);
  flex: 1;
  height: 1px;
}

.form-message-wrapper {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.blog-collection-list-small {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 40px;
  width: 100%;
}

.article-title-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.article-details {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.article-tags {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: var(--text-color--text-secondary-dark);
  flex-flow: wrap;
  line-height: 20px;
  display: flex;
}

.posts-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  white-space: nowrap;
  align-items: center;
  margin-bottom: 80px;
  display: flex;
}

.tags-collection-list {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: wrap;
  display: flex;
}

.article-share-block {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  display: flex;
}

.company-feature-list {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.company-hero-content {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-flow: column;
  flex: none;
  justify-content: space-between;
  max-width: 400px;
  display: flex;
}

.feature-number-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.company-about {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  max-width: 340px;
  padding-top: 48px;
  display: flex;
}

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

.team-image {
  object-fit: cover;
  border-radius: 56px;
  width: 100%;
  height: 100%;
}

.team-slide-header {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.team-slide {
  margin-right: 64px;
}

.team-mask {
  overflow: visible;
}

.team-slider {
  background-color: #0000;
  height: 100%;
}

.slide-nav {
  display: none;
}

.team-slider-arrow {
  opacity: .7;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: opacity .3s;
  display: flex;
  inset: auto auto 0% 0%;
}

.team-slider-arrow:hover {
  opacity: 1;
}

.team-slider-arrow.right {
  left: 48px;
}

.team-slide-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

.timeline-step {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: minmax(70px, auto) 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.timeline-icon-wrapper {
  z-index: 2;
  background-image: linear-gradient(180deg, var(--border-color--gray-gradient-lightest), var(--border-color--gray-gradient-darkest));
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  padding: 2px;
  display: flex;
}

.timeline-line-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.timeline-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex: none;
}

.investor-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 64px;
  flex-flow: column;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.hero-title-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.hero-subheading-wrapper {
  max-width: 520px;
}

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

.hero-text-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  display: flex;
}

.max-width-medium {
  max-width: 500px;
}

.title-wrapper-center {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: none;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.title-wrapper-center.process-fix {
  margin-bottom: 100px;
  padding-top: 100px;
}

.title-wrapper-center.center-align {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
}

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

.paragraph-large {
  color: var(--neutral--black);
  font-size: 18px;
  line-height: 32px;
}

.paragraph-large.text-align-left.white-text {
  color: var(--neutral--white);
}

.hero-background-blur {
  background-image: radial-gradient(circle closest-side at 50% 50%, var(--brand-color--background-blur), #fff0);
  filter: blur(120px);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto 0 0% auto;
}

.hero-image-wrapper {
  position: relative;
}

.display-heading {
  font-family: Roboto Slab, sans-serif;
  font-size: 72px;
  font-weight: 300;
}

.hero-feature-logo {
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
}

.feature-overlay-header {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: var(--text-color--text-primary);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.title-wrapper-left {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  max-width: 960px;
  margin-bottom: 32px;
  display: flex;
}

.content-feature-title-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 70%;
  display: flex;
}

.content-feature-grid {
  grid-column-gap: 40px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 90px;
  display: grid;
}

.content-feature-title {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.content-image {
  z-index: 1;
  object-fit: contain;
  object-position: 100% 50%;
  height: auto;
  position: static;
}

.content-image-wrapper {
  height: 100%;
  position: relative;
}

.content-background-blur {
  background-image: radial-gradient(circle closest-side at 50% 50%, var(--brand-color--background-blur), #fff0);
  filter: blur(120px);
  width: 40%;
  height: 40%;
  position: absolute;
  inset: auto 0% 0% auto;
}

.content-image-wrapper-left {
  height: 100%;
  position: relative;
}

.cta-content-bottom {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  display: flex;
}

.blog-collection-list {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-flow: column;
  height: 100%;
  display: flex;
}

.blog-featured-card {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-flow: column;
  display: flex;
}

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

.blog-featured-content {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

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

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

.contact-title-grid {
  grid-template-rows: auto;
  margin-bottom: 124px;
}

.contact-hero-subheading {
  max-width: 470px;
  padding: 24px;
}

.contact-link-title {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  color: var(--text-color--text-primary);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  font-family: Roboto Slab, sans-serif;
  display: flex;
}

.contact-link {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  color: var(--brand);
  flex-direction: column;
  display: flex;
}

.contact-link-title-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 60%;
  display: flex;
}

.contact-image-wrapper {
  overflow: hidden;
}

.image-cover {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: 100%;
}

.contact-form {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  display: flex;
}

.company-grid {
  grid-column-gap: 124px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.5fr;
}

.company-hero-title {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  display: flex;
}

.image-wrapper {
  overflow: hidden;
}

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

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

.container-small {
  z-index: 5;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-investor-links {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.company-content-grid {
  grid-column-gap: 124px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.5fr;
}

.h6-heading {
  color: var(--text-color--text-primary);
  font-family: Roboto Slab, sans-serif;
  font-size: 24px;
  line-height: 1.3;
}

.timeline-line {
  background-image: linear-gradient(#262626, #ada785 51%, #262626);
  width: 1px;
  height: 120px;
}

.timeline-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 16px;
  display: flex;
}

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

.icon-small {
  width: 20px;
  height: 20px;
}

.timeline-divider {
  background-color: var(--border-color--gold-gradient-darkest);
  height: 1px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.investor-placeholder {
  height: 0;
}

.timeline-icon {
  background-color: var(--background-color--background-card);
  color: var(--brand-color--brand-primary);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: Roboto Slab, sans-serif;
  font-size: 20px;
  display: flex;
}

.paragraph-small {
  font-size: 14px;
  line-height: 24px;
}

.investor-logo {
  width: 100%;
}

.investor-content {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  display: flex;
}

.blog-title-grid {
  grid-template-rows: auto;
  margin-bottom: 124px;
}

.blog-gradient-border {
  background-image: linear-gradient(187deg, #999, #141414);
  border-radius: 40px;
  padding: 2px;
}

.line-clamp-embed {
  display: none;
}

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

.button-outer {
  background-image: linear-gradient(187deg, var(--brand-color--background-blur), #ffc238);
  border-radius: 56px;
  padding: 2px;
}

.text-weight-normal {
  font-weight: 400;
}

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

.text-weight-light {
  font-weight: 300;
}

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

.text-weight-semibold {
  font-weight: 600;
}

.sg-class-icon {
  color: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
}

.sg-link {
  color: var(--brand);
  border-radius: 4px;
  padding: 8px 14px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: background-color .3s, box-shadow .3s, color .3s;
}

.sg-link:hover {
  background-color: var(--brand-red);
  color: var(--neutral--white);
  box-shadow: 0 1px .5px #acb5c314;
}

.sg-link.w--current {
  background-color: var(--brand-red);
}

.section-large {
  padding: 120px 5%;
}

.sg-global {
  background-color: #d678c2;
  border-radius: 4px;
  padding: 4px 6px;
  display: inline-block;
}

.sg-swatch-wrapper {
  border-radius: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
  overflow: hidden;
}

.h4-heading {
  font-family: Roboto Slab, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
}

.sg-content-grid {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: minmax(200px, 240px) 1fr;
  place-items: start stretch;
}

.background-primary {
  background-color: var(--background-color--background-page);
}

.sg-section {
  padding: 64px 5%;
}

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

.text-strikethrough {
  text-decoration: line-through;
}

.sg-grid-two-column {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-columns: 1fr 1fr;
}

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

.sg-menu-header {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: var(--text-color--text-primary);
  justify-content: flex-start;
  align-items: center;
  padding: .75rem .25rem;
  display: flex;
}

.text-allcaps {
  text-transform: uppercase;
}

.sg-class {
  background-color: #2466eb;
  border-radius: 4px;
  padding: 4px 6px;
  display: inline-block;
}

.sg-group-header {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid var(--brand-red);
  background-color: var(--neutral--neutral-darkest);
  border-radius: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 24px;
  display: flex;
}

.sg-introduction {
  flex-direction: column;
  display: flex;
}

.style-guide-swatch-inner {
  z-index: -1;
  height: 88px;
  position: relative;
}

.sg-content {
  padding-top: 32px;
}

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

.sg-badge-class {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  background-color: var(--neutral--black);
  color: var(--text-color--text-primary);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 4px;
  text-decoration: none;
  display: flex;
  box-shadow: 0 2px 1px #95a0b214;
}

.sg-card-header {
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  display: flex;
}

.sg-card {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid var(--brand-red);
  background-color: var(--neutral--neutral-darker);
  border-radius: 16px;
  flex-flow: column;
  padding: 8px;
  display: flex;
}

.sg-preview-section {
  background-color: var(--neutral--black);
  border: 1px dashed #4a8ff7;
  border-radius: 16px;
  width: 100%;
  padding: 16px;
  overflow: hidden;
}

.sg-overline {
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.sg-overline.sg-text-color-secondary-dark {
  color: var(--text-color--text-secondary-dark);
}

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

.sg-card-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--neutral--neutral-darkest);
  border-radius: 12px;
  flex-flow: column;
  height: 100%;
  padding: 24px;
  display: flex;
}

.sg-card-content.align-centre {
  justify-content: center;
  align-items: center;
}

.sg-container-demo {
  background-color: var(--neutral--black);
  pointer-events: none;
  border: 1px dashed #4a8ff7;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  display: flex;
}

.sg-category, .sg-group {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  display: flex;
}

.sg-grid-large {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.color-black {
  background-color: #000;
}

.sg-grid-one-column {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-columns: 1fr;
}

.sg-line-regular {
  background-color: var(--brand-red);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 1px;
  margin-top: 44px;
  margin-bottom: 44px;
  display: flex;
}

.h1-heading {
  letter-spacing: -.03em;
  font-family: Roboto Slab, sans-serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1.2;
}

.sg-menu {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  display: flex;
  position: sticky;
  top: 64px;
}

.sg-introduction-header {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  display: flex;
}

.style-text-wrapper {
  text-align: center;
  border-radius: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 88px;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  display: flex;
  overflow: hidden;
}

.section-small {
  padding: 72px 5%;
}

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

.h5-heading {
  font-family: Roboto Slab, sans-serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3;
}

.h3-heading {
  letter-spacing: -.02em;
  font-family: Roboto Slab, sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
}

.background-card {
  background-color: var(--background-color--background-card);
}

.sg-class-selector {
  background-color: #5e6573;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 6px;
  display: flex;
}

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

.sg-menu-link {
  border: 1px solid var(--neutral--neutral-darker);
  background-color: var(--neutral--black);
  border-radius: 6px;
  flex-flow: column;
  padding: 8px;
  display: flex;
}

.sg-category-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid var(--brand-red);
  background-color: var(--neutral--neutral-darker);
  border-radius: 24px;
  flex-flow: column;
  padding: 12px;
  display: flex;
  box-shadow: 0 1px 1px #95a0b214;
}

.sg-sidebar {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  height: 100%;
  display: flex;
}

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

.text-align-right {
  text-align: right;
}

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

._404-title-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.background-neutral-darkest {
  background-color: var(--neutral--neutral-darkest);
}

.background-neutral-darker {
  background-color: var(--neutral--neutral-darker);
}

.background-neutral-dark {
  background-color: var(--brand-red);
}

.background-neutral {
  background-color: var(--neutral--neutral);
}

.background-neutral-light {
  background-color: var(--neutral--neutral-light);
}

.background-neutral-lighter {
  background-color: var(--neutral--neutral-lightest);
}

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

.background-brand-primary-light {
  background-color: var(--brand-color--brand-light);
}

.background-brand-primary-dark {
  background-color: var(--brand-color--brand-dark);
}

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

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

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

.max-width-large {
  max-width: 600px;
}

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

.label-large {
  font-size: 18px;
  line-height: 28px;
}

.footer-brand {
  transition: opacity .3s;
}

.footer-brand:hover {
  opacity: .7;
}

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

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

.footer-company-content {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  flex-flow: column;
  display: flex;
}

.divider {
  background-color: var(--neutral--neutral-darker);
  height: 1px;
}

.overline-small {
  color: var(--brand-color--brand-primary);
  text-transform: uppercase;
  font-family: Roboto Slab, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.footer-links-list {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: none;
}

.blog-collection-list-large {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-articles {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-flow: column;
  display: flex;
}

.cta-gradient-border {
  background-image: linear-gradient(187deg, var(--border-color--gray-gradient-lightest), var(--border-color--gray-gradient-darkest));
  border-radius: 60px;
  padding: 2px;
  text-decoration: none;
}

.feature-card-border {
  background-image: linear-gradient(187deg, var(--border-color--gray-gradient-lightest), var(--brand-color--brand-primary));
  border-radius: 16px;
  height: 100%;
  padding: 2px;
  text-decoration: none;
}

.article-image-wrapper {
  aspect-ratio: 2.39;
  border-radius: 56px;
  overflow: hidden;
}

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

.article-share-link {
  flex: none;
  padding: 8px;
  transition: opacity .3s;
}

.article-wrapper {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-flow: column;
  display: flex;
}

.article-share-embed {
  display: none;
}

.company-hero-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1.5fr 1fr;
}

.company-image-large {
  max-height: 590px;
}

.company-image-tall {
  max-height: 70%;
}

.team-image-wrapper {
  background-image: linear-gradient(187deg, var(--border-color--gray-gradient-lightest), var(--border-color--gray-gradient-darkest));
  border-radius: 56px;
  flex: none;
  height: 510px;
  padding: 2px;
  text-decoration: none;
  overflow: hidden;
}

.team-slide-content {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  padding-bottom: 64px;
  display: flex;
}

.gradient-interaction-trigger {
  z-index: 999;
  background-color: #000;
  height: 200vh;
  position: absolute;
  inset: 0%;
}

.sg-category-header {
  border-top: 1px solid var(--border-color--gray-gradient-lightest);
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 64px;
  margin-bottom: 64px;
  padding-top: 92px;
  display: flex;
}

.feature-card-content-wrapper {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  color: var(--text-color--text-secondary-dark);
  flex-flow: column;
  justify-content: space-between;
  max-width: 100%;
  height: 100%;
  display: flex;
}

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

.clone-banner-delete-me {
  z-index: 999;
  background-color: var(--neutral--neutral-darker);
  align-items: center;
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

.clone-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1128px;
  margin-left: auto;
  margin-right: auto;
  padding: 16px 24px;
  display: flex;
}

.clone-text-heading {
  color: var(--neutral--white);
  letter-spacing: 0;
  text-transform: none;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.clone-text-paragraph {
  color: var(--neutral--neutral);
  letter-spacing: .04em;
  text-transform: none;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
}

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

.clone-close {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: var(--background-color--background-page);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: #acaba0;
  text-align: center;
  border: 1.5px solid #acaba0;
  border-radius: 40px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  text-decoration: none;
  transition: all .3s;
  box-shadow: inset 0 1px .75px #ffffff29, inset 0 0 1px #ffffff1f;
}

.clone-cookie-script {
  display: none;
}

.clone-button-primary {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--background-color--background-card);
  color: var(--brand-color--brand-light);
  letter-spacing: .1px;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 56px;
  align-items: center;
  padding: 12px 32px;
  font-family: Roboto Slab, sans-serif;
  font-size: 14px;
  line-height: 24px;
  transition: background-color .3s, color .3s;
  display: flex;
}

.clone-button-primary:hover {
  color: var(--brand-color--brand-dark);
  background-color: #000c;
}

.body {
  background-color: var(--neutral--white);
  font-family: Poppins, sans-serif;
}

.text-block {
  font-family: Poppins, sans-serif;
  font-weight: 400;
}

.text-block-2 {
  font-family: Poppins, sans-serif;
}

.reduce-gap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.heading, .heading-2 {
  color: var(--neutral--white);
}

.heading-3 {
  color: var(--neutral--neutral-darker);
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-weight: 400;
}

.heading-4, .heading-5, .heading-6, .heading-7 {
  color: var(--neutral--white);
}

.no-block {
  display: none;
}

.paragraph {
  color: var(--text-color--text-primary);
  -webkit-text-stroke-color: var(--text-color--text-primary);
}

.date-line {
  background-color: #e0e0e0;
  width: 24px;
  height: 1px;
}

.h2-heading-2 {
  color: #000;
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}

.blog-detail {
  grid-column-gap: 24px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.paragraph-large-2 {
  color: var(--text-color--text-secondary-dark);
  letter-spacing: -.015em;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
}

.paragraph-large-2.text-color-gray-300 {
  color: #8f8f8f;
}

.wrap-h-x-small {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: row;
  display: flex;
}

.wrap-h-x-small.align-c {
  justify-content: flex-start;
  align-items: center;
}

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

.blog-badge {
  color: #000;
  letter-spacing: .16em;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 4px;
  padding: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  position: absolute;
  inset: 16px 14px auto auto;
  box-shadow: 0 24px 64px #d9d9d97a;
}

.section-large-2 {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.section-large-2.artciles-top {
  padding-top: 0;
}

.blog-image-2 {
  border-radius: 16px;
  height: 356px;
  position: relative;
  overflow: hidden;
}

.h5-heading-2 {
  color: #000;
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}

.paragraph-small-2 {
  color: var(--neutral--neutral-light);
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
}

.overline {
  color: #000;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.icon-link {
  color: #141414;
  border: 1px solid #e0e0e0;
  border-radius: 99px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
}

.grid-three-column {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template: "."
                 "Area"
                 / 1fr 1fr 1fr;
}

.grid-three-column.pt-100 {
  padding-top: 100px;
}

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

.button-link {
  grid-column-gap: 16px;
  color: #000;
  letter-spacing: -.02em;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  text-decoration: none;
  display: flex;
}

.container-large-2 {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

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

.wrap-v-x-small {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.title-wrapper-small {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 432px;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-link-2 {
  color: #b8b8b8;
  letter-spacing: -.02em;
  font-size: 18px;
  line-height: 1.8;
  text-decoration: none;
  transition: all .3s;
}

.footer-link-2:hover {
  color: #141414;
}

.footer-column {
  width: 100%;
  max-width: 282px;
}

.caption {
  color: var(--neutral--neutral);
  letter-spacing: -.02em;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.4;
}

.wrap-v-regular-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  display: flex;
}

.margin-bottom-24 {
  margin-bottom: 24px;
  padding-top: 16px;
}

.footer-link-block {
  color: #000;
  text-decoration: none;
}

.footer-logo-2 {
  margin-bottom: 32px;
}

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

.container-large-3 {
  width: 100%;
  max-width: 1920px;
  position: relative;
}

.footer-divider {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border-top: 1px solid #e0e0e0;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

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

.social-link-white {
  color: #ccc;
  border-radius: 99px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  transition: all .3s;
  display: flex;
}

.social-link-white:hover {
  color: #141414;
  background-color: #fff;
}

.paragraph-small-3 {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  line-height: 1.8;
}

.wrap-h-small {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: row;
  display: flex;
}

.section-footer-l {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 120px 0% 0;
  position: relative;
}

.footer-detail-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  align-items: center;
  display: flex;
}

.footer-link-column {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.combination-mark {
  width: auto;
  max-width: 250px;
}

.text-block-3 {
  color: var(--neutral--neutral-darker);
  font-weight: 500;
}

.body-2, .body-3 {
  background-color: var(--neutral--white);
}

.container-regular-2 {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.subheading-x-large {
  color: #000;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.overline-small-2 {
  color: #3c4238;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

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

.paragraph-regular-2 {
  color: #3c4238;
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
}

.paragraph-regular-2.text-weight-medium {
  font-weight: 500;
}

.subheading-regular {
  color: #000;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

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

.avatar-regular {
  background-color: #e0e3de;
  border: 1px solid #cbd0c8;
  border-radius: 100%;
  flex: none;
  width: 48px;
  height: 48px;
  overflow: hidden;
}

.title-wrapper-small-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.blog-image-regular {
  border-radius: 16px;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.h2-heading-3 {
  color: #000;
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.2;
}

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

.paragraph-small-4 {
  color: #3c4238;
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}

.grid-two-column {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  width: 100%;
}

.blog-card-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  text-decoration: none;
  display: flex;
}

.section-regular-2 {
  background-color: #f7f6f2;
  padding: 92px 5%;
  position: relative;
}

.section-regular-2.background-white {
  background-color: #fff;
}

.f-container-regular {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.f-margin-bottom-24 {
  margin-bottom: 24px;
}

.f-avatar-group-r {
  background-color: #e4e6f1;
  border: 3px solid #fff;
  border-radius: 100px;
  width: 48px;
  height: 48px;
  margin-right: -16px;
  position: relative;
}

.f-avatar-dark {
  color: #fff;
  background-color: #160042;
  border: 3px solid #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-right: -14px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  display: flex;
  position: relative;
}

.f-margin-bottom-08 {
  margin-bottom: 8px;
}

.f-header-avatar-text {
  color: #282556;
  margin-left: 24px;
  font-size: 14px;
  font-weight: 500;
}

.f-h1-heading {
  color: #160042;
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 64px;
  line-height: 1.2;
}

.f-header-wrapper {
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.f-heading-detail-small {
  color: #6b7094;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.f-paragraph-large {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 32px;
}

.f-header-title-wrapper-center {
  z-index: 5;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.f-section-large {
  padding: 220px 5% 92px;
  position: relative;
}

.text-block-4 {
  font-family: Poppins, sans-serif;
}

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

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

.grid-two-column-2 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-auto-flow: row dense;
}

.team-social-link-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #7d8ba1;
  align-items: center;
  padding: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.team-social-link-2:hover {
  color: #22272f;
}

.subheading-large {
  color: var(--neutral--neutral-darker);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto Slab, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.team-social-icon {
  background-color: #f3f4f6;
  border-radius: 8px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

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

.h3-heading-2 {
  color: #3e376d;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
}

.title-left {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 510px;
  display: flex;
}

.team-avatar {
  background-color: #f3f4f6;
  border-radius: 48px;
  flex: none;
  width: 120px;
  height: 120px;
  overflow: hidden;
}

.team-wrapper {
  width: 100%;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}

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

.team-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.title-grid {
  grid-column-gap: 32px;
  grid-row-gap: 24px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  display: grid;
}

.team-card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px solid #dce0e5;
  border-radius: 48px;
  align-items: center;
  padding: 24px;
  display: flex;
}

.team-detail {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px;
  display: flex;
}

.button-ghost {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #4e4587;
  background-color: #0000;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
}

.button-ghost:hover {
  color: #3e376d;
  background-color: #f3f4f6;
}

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

.paragraph-small-5 {
  color: #454f5f;
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.paragraph-small-5.text-color-gray-500 {
  color: var(--border-color--gray-gradient-lightest);
  text-align: left;
  font-family: Poppins, sans-serif;
  font-weight: 400;
}

.title-caption {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: #454f5f;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  display: flex;
}

.heading-10 {
  font-family: Roboto Slab, sans-serif;
}

.h1-heading-2 {
  color: #25272c;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.2;
}

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

.section-regular-4 {
  background-color: #f7f8f8;
  padding: 96px 5%;
  position: relative;
}

.paragraph-regular-3 {
  color: #49505b;
  letter-spacing: -.12px;
  font-size: 16px;
  line-height: 28px;
}

.popular-badge {
  color: #fff;
  background-color: #154ee0;
  border-radius: 4px;
  flex: none;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}

.grid-three-column-2 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  display: grid;
}

.title-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 628px;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.button-primary-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  text-align: center;
  letter-spacing: -.08px;
  white-space: nowrap;
  background-color: #25272c;
  border: 1px solid #000;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  text-decoration: none;
  transition-property: background-color;
  transition-duration: .3s;
  transition-timing-function: ease;
  display: inline-flex;
  box-shadow: 0 1px 2px #00000080, inset 0 1px 1px 2px #3f444d;
}

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

.button-primary-2.disabled {
  border-color: var(--neutral--neutral-lightest);
  background-color: var(--neutral--neutral-light);
  box-shadow: none;
  color: var(--border-color--gold-gradient-darkest);
}

.badge {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px dashed #b5bbc4;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  display: flex;
}

.text-color-brand {
  color: #154ee0;
}

.integration-card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px dashed #d8dbdf;
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px;
  display: flex;
}

.integration-row {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.column-small {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.container-large-4 {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.h6-heading-2 {
  color: #25272c;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto Slab, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.integration-popular-card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--color-new);
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px;
  display: flex;
}

.container-regular-4 {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.h2-heading-4 {
  color: var(--text-color--text-primary);
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
}

.gallery-cover {
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.gallery-section-carousel {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  display: flex;
}

.gallery-carousel-image-square {
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 16px;
  flex: none;
  padding: 12px;
  box-shadow: 0 1px 2px #23272e14;
}

.gallery-carousel-image-landscape {
  aspect-ratio: 3 / 2;
  background-color: #fff;
  border-radius: 16px;
  flex: none;
  padding: 12px;
  overflow: hidden;
  box-shadow: 0 1px 2px #23272e14;
}

.gallery-section {
  background-color: var(--neutral--white);
  padding-top: 0;
  padding-bottom: 72px;
  position: relative;
  overflow: hidden;
}

.gallery-carousel-content {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  display: flex;
}

.page-padding {
  padding-left: 5%;
  padding-right: 5%;
}

.overline-regular {
  color: var(--brand-color--brand-primary);
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
}

.gallery-button {
  justify-content: center;
  align-items: center;
  margin-top: 64px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.title-center-regular {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 858px;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.gallery-carousel {
  width: 100%;
  height: 400px;
  display: flex;
  overflow: hidden;
}

.button-primary-3 {
  color: #fff;
  white-space: nowrap;
  background-color: #23272f;
  background-image: radial-gradient(circle, #23272feb, #23272f52), url('../images/Button-Dots_1Button Dots.avif');
  background-position: 0 0, 50%;
  background-size: auto, contain;
  border: 2px solid #23272f;
  border-radius: 52px;
  justify-content: center;
  align-items: center;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: box-shadow .3s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 12px -2px #fe5b2500, 0 0 12px -2px #a355f700, 0 0 4px 2px #23272e3d, inset 0 2px 2px #ffffff3d;
}

.button-primary-3:hover {
  box-shadow: 0 0 12px -2px #fe5b25, 0 0 12px -2px #a355f7, 0 0 4px 2px #23272e3d, inset 0 2px 2px #ffffff3d;
}

.button-primary-3.w--current {
  background-color: #344256;
  border-color: #48566a;
}

.code-embed {
  display: none;
}

.body-4 {
  background-color: var(--neutral--white);
}

.contact-bg-image {
  height: 790px;
}

.marble-background {
  z-index: 0;
  background-image: none;
  background-position: 50%;
  background-size: 1440px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.marble-background.marble-light {
  opacity: .7;
}

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

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

.checkbox {
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 32px;
  width: 16px;
  height: 16px;
  margin: 2px 10px 2px 2px;
}

.checkbox.w--redirected-checked {
  background-color: #286efb;
  background-image: none;
  background-position: 50%;
  background-size: auto;
  border-color: #286efb;
}

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

.text-link-brand {
  color: #286efb;
  font-weight: 500;
  text-decoration: underline;
}

.contact-link-2 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  flex-flow: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: stretch;
  padding: 24px;
  display: flex;
}

.title-center {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 792px;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.paragraph-regular-4 {
  color: #454545;
  font-size: 16px;
  line-height: 1.5;
}

.form-text-field {
  color: #2b2b2b;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  min-height: 48px;
  margin-bottom: 0;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.form-text-field:focus {
  border-color: #286efb;
}

.form-text-field::placeholder {
  color: #6d6d6d;
}

.checkbox-label {
  color: #6d6d6d;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.form-text-area {
  color: #2b2b2b;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  min-height: 124px;
  margin-bottom: 0;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.form-text-area:focus {
  border-color: #286efb;
}

.form-text-area::placeholder {
  color: #6d6d6d;
}

.section-large-3 {
  background-color: var(--neutral--white);
  padding: 96px 3%;
  position: relative;
}

.grid-two-column-3 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.paragraph-x-small {
  color: #454545;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.5;
}

.paragraph-x-small.text-color-tertiary {
  color: #6d6d6d;
}

.background {
  z-index: 0;
  pointer-events: none;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.field-label-2 {
  color: #6d6d6d;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.field-label-2.text-color-red {
  color: #f42a2a;
}

.contact-form-2 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #fff;
  border-radius: 16px;
  flex-flow: column;
  padding: 24px;
  display: flex;
}

.noise {
  z-index: 3;
  pointer-events: none;
  background-image: none;
  background-position: 0 0;
  background-size: 120px;
  position: absolute;
  inset: 0%;
}

.container-small-2 {
  z-index: 2;
  width: 100%;
  max-width: 792px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.badge-outline {
  color: #454545;
  letter-spacing: -.08px;
  white-space: nowrap;
  border: 1px solid #e7e7e7;
  border-radius: 32px;
  justify-content: center;
  align-items: center;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  display: inline-block;
}

.contact-bg-image-wrapper {
  z-index: 5;
  justify-content: flex-start;
  align-items: flex-start;
  width: 1870px;
  height: 395px;
  padding-left: 32px;
  display: flex;
  position: absolute;
  bottom: 0%;
}

.icon-brand {
  color: #fff;
  background-color: #286efb;
  border-radius: 32px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
}

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

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

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

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

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

.avatar-regular-2 {
  background-color: #f6f6f6;
  border: 1px solid #e7e7e7;
  border-radius: 32px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  overflow: hidden;
}

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

.avatar-detail {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #fff;
  border-radius: 8px;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding: 8px 8px 8px 12px;
  display: flex;
}

.subheading-large-2 {
  color: #2b2b2b;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.button-primary-large {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #286efb;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  transition: background-color .3s;
  display: inline-flex;
}

.button-primary-large:hover {
  background-color: #1843dc;
}

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

.subheading-x-small {
  color: #2b2b2b;
  font-size: 12px;
  font-weight: 500;
}

.subheading-x-small.text-weight-semibold {
  font-weight: 600;
}

.overlay-light {
  z-index: 1;
  background-image: radial-gradient(circle, #fff0 75%, #fff);
  position: absolute;
  inset: 0%;
}

.h1-heading-3 {
  color: #2b2b2b;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.2;
}

.icon-outline {
  color: #454545;
  border: 1px solid #e7e7e7;
  border-radius: 32px;
  flex: none;
  justify-content: center;
  align-items: center;
  padding: 8px;
  display: flex;
}

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

.image {
  width: 40%;
  display: block;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.f-success-message {
  color: #006638;
  letter-spacing: -.03em;
  background-color: #ebfff6;
  font-size: 14px;
  line-height: 24px;
}

.f-cta-form-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 8px;
  align-items: center;
  width: 100%;
  display: flex;
}

.f-margin-bottom-48 {
  margin-bottom: 48px;
}

.f-h2-heading {
  color: #160042;
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 56px;
  line-height: 1.2;
}

.f-form-button {
  outline-offset: 0px;
  color: #fff;
  text-align: center;
  letter-spacing: -.02em;
  background-color: #160042;
  border-radius: 48px;
  outline: 2px solid #0000;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  min-height: 48px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.f-form-button:hover {
  background-color: #282556;
}

.f-form-button:active {
  background-color: #160042;
}

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

.f-cta-text-wrapper-center {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.f-input-outlined {
  border: 1px solid #e4e6f1;
  border-radius: 8px;
  min-height: 48px;
  margin-bottom: 0;
  padding: 12px 16px;
}

.f-input-outlined:focus {
  border-color: #b6b9ce;
}

.f-input-outlined::placeholder {
  color: #b6b9ce;
}

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

.f-cta-form-block {
  max-width: 460px;
  margin-bottom: 8px;
}

.f-margin-bottom-16 {
  margin-bottom: 16px;
}

.f-h4-heading {
  color: #160042;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  line-height: 1.4;
}

.f-margin-bottom-49 {
  margin-bottom: 8px;
}

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

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

.content-wrapper-2 {
  grid-column-gap: 42px;
  grid-row-gap: 42px;
  flex-direction: column;
  display: flex;
}

.container-large-5 {
  width: 100%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
}

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

.content-image-block {
  background-color: #fafafa;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 488px;
  min-height: 488px;
  padding: 32px;
  display: flex;
}

.content-feature-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: flex-start;
  display: flex;
}

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

.section-large-4 {
  padding: 120px 5%;
  position: relative;
}

.content-feature-grid-2 {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-auto-flow: column;
  padding-top: 32px;
  display: flex;
}

.h3-heading-3 {
  color: #0a0a0a;
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
}

.paragraph-x-large {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 32px;
}

.overline-2 {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

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

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

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

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

.body-5 {
  background-color: var(--neutral--white);
}

.a-section-large {
  padding: 220px 5% 92px;
  position: relative;
}

.a-container-regular {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.a-header-title-wrapper-center {
  z-index: 5;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.a-margin-bottom-24 {
  margin-bottom: 24px;
}

.h2-heading-article {
  letter-spacing: -.03em;
  font-family: Roboto Slab, sans-serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
}

.artcle-paragraph {
  text-align: left;
}

.artcle-contents {
  text-align: left;
  width: 100%;
}

.list-item {
  text-align: left;
  margin-bottom: 10px;
}

.article-paragraph {
  color: var(--border-color--gray-gradient-darkest);
  text-align: left;
  width: 100%;
  margin-bottom: 20px;
}

.article-paragraph.medium {
  margin-bottom: 10px;
  font-weight: 500;
}

.article-paragraph.medium.red {
  color: var(--brand-red);
}

.article-paragraph.highlight {
  background-color: #fff9e8;
  border-radius: 16px;
  margin-bottom: 20px;
  padding: 20px 20px 20px 32px;
}

.article-paragraph.center {
  color: #6672f1;
  text-align: center;
}

.article-paragraph.text-align-center {
  text-align: center;
}

.list-item-2 {
  list-style-type: square;
}

.list-item-2.list-item-margin {
  margin-left: 20px;
}

.list-item-3 {
  margin-bottom: 10px;
  list-style-type: lower-alpha;
}

.list-item-4 {
  margin-bottom: 10px;
  list-style-type: disc;
}

.list-item-5 {
  list-style-type: lower-alpha;
}

.list-item-6, .list-item-7 {
  margin-bottom: 10px;
  list-style-type: lower-alpha;
}

.list-item-8 {
  margin-bottom: 10px;
  list-style-type: decimal;
}

.list-item-9 {
  margin-left: 20px;
  list-style-type: square;
}

.list {
  list-style-type: square;
}

.italic-text {
  margin-left: 41px;
}

.paragraph-5 {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 40px;
}

.list-item-10, .list-item-11, .list-item-12, .list-item-13 {
  list-style-type: none;
}

.list-item-14 {
  margin-top: 10px;
  list-style-type: none;
}

.list-2 {
  padding-left: 0;
}

.text-block-5 {
  text-align: center;
}

.consent-wrapper {
  justify-content: center;
  width: 100%;
  display: block;
}

.consent-wrapper.pb-100 {
  margin-bottom: 100px;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 48px;
  }

  h3 {
    font-size: 42px;
  }

  h4 {
    font-size: 36px;
  }

  h5 {
    font-size: 28px;
  }

  .navigation-menu {
    border-bottom: 1px solid var(--neutral--neutral);
    background-color: var(--neutral--neutral-darker);
  }

  .menu-button {
    background-color: var(--brand-color--brand-primary);
    color: #000;
    border-radius: 12px;
    padding: 10px;
    transition: background-color .3s;
  }

  .menu-button:hover {
    background-color: var(--brand-color--brand-light);
  }

  .menu-button.w--open {
    background-color: var(--brand-color--brand-light);
    color: #000;
  }

  .navigation-right {
    align-items: center;
  }

  .nav-link {
    text-align: left;
    padding-left: 5%;
    padding-right: 5%;
  }

  .nav-link:hover {
    color: var(--brand-color--brand-primary);
  }

  .navigation-container {
    align-items: center;
  }

  .button-primary {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 24px;
  }

  .gradient-text {
    background-image: linear-gradient(83deg, var(--brand-color--brand-primary), var(--brand));
  }

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

  .hero-content-wrapper {
    text-align: center;
    width: 100%;
    max-width: 700px;
  }

  .hero-image {
    max-height: 500px;
  }

  .text-color-gold {
    font-size: 42px;
  }

  .hero-features {
    width: 100%;
  }

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

  .hero-feature-logos {
    justify-content: center;
    align-items: center;
  }

  .hero-grid {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
    flex-flow: column;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .overline-large {
    text-align: center;
  }

  .overline-large.text-align-left {
    text-align: left;
  }

  .feature-card-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr;
  }

  .feature-card-gradient {
    object-position: 50% 0%;
  }

  .cta-image {
    align-self: flex-end;
    width: auto;
    position: relative;
    right: -6%;
  }

  .content-grid {
    grid-column-gap: 160px;
    grid-row-gap: 160px;
    flex-direction: column;
    grid-template-columns: 1fr;
    align-items: center;
  }

  .content-wrapper {
    text-align: center;
    width: 100%;
    max-width: 700px;
  }

  .content-image-left {
    width: 100%;
  }

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

  .cta-card {
    flex-flow: column;
    padding-bottom: 0;
  }

  .cta-app-link {
    flex: none;
  }

  .cta-content {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    width: 100%;
  }

  .nav-links-center {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
  }

  .blog-featured-wrapper {
    max-width: none;
  }

  .footer-wrapper {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .footer-left {
    max-width: none;
  }

  .fooler-links-grid {
    grid-row-gap: 20px;
    width: 100%;
  }

  .team-social-link {
    margin-left: 0;
    margin-right: 10px;
  }

  .bugged-class {
    margin-bottom: 60px;
  }

  .contact-grid {
    flex-direction: row;
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .contact-map-wrapper {
    max-width: none;
    height: 500px;
  }

  .form-field {
    width: 100%;
  }

  .contact-fields-grid {
    flex-direction: column;
  }

  .form-submit-wrapper {
    font-size: 14px;
    line-height: 24px;
  }

  .utility-section {
    padding-top: 100px;
  }

  .blog-collection-list-small {
    margin-bottom: 0;
  }

  .blog-image {
    border-radius: 24px;
  }

  .article-share-block {
    margin-right: -10px;
    display: flex;
  }

  .company-hero-content {
    max-width: none;
  }

  .company-about {
    padding-top: 0;
  }

  .company-mission {
    width: 100%;
    margin-bottom: 60px;
  }

  .team-slide {
    padding-left: 0;
    padding-right: 0;
  }

  .team-mask {
    overflow: hidden;
  }

  .team-slider {
    max-width: none;
  }

  .timeline-wrapper {
    order: -1;
    width: 100%;
  }

  .investor-wrapper {
    flex: none;
    width: 100%;
  }

  .hero-title-wrapper, .hero-text-wrapper {
    justify-content: center;
    align-items: center;
  }

  .title-wrapper-center {
    margin-bottom: 90px;
  }

  .paragraph-large {
    color: var(--neutral--black);
    text-align: center;
  }

  .paragraph-large.text-align-left {
    text-align: left;
  }

  .paragraph-large.text-align-left.white-text {
    color: var(--neutral--white);
  }

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

  .title-wrapper-left {
    margin-bottom: 40px;
  }

  .content-feature-grid {
    grid-row-gap: 40px;
    margin-top: 60px;
  }

  .content-image {
    object-position: 50% 50%;
    position: relative;
  }

  .content-image-wrapper {
    justify-content: center;
    align-items: center;
    height: 550px;
    display: flex;
  }

  .cta-content-bottom {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .blog-collection-list {
    justify-content: flex-start;
  }

  .contact-title-grid {
    grid-template-columns: 1fr;
    margin-bottom: 64px;
  }

  .contact-hero-subheading {
    padding: 0;
  }

  .company-grid {
    flex-flow: column;
    grid-template-columns: 1fr;
  }

  .company-vision {
    width: 100%;
    margin-bottom: 60px;
  }

  .company-content-grid {
    flex-flow: column;
    grid-template-columns: 1fr;
  }

  .blog-title-grid {
    grid-template-columns: 1fr;
    margin-bottom: 64px;
  }

  .blog-gradient-border {
    border-radius: 24px;
  }

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

  .sg-content-grid {
    grid-template-columns: 2fr;
  }

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

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

  .h5-heading {
    font-size: 28px;
  }

  .h3-heading {
    font-size: 42px;
  }

  .sg-sidebar {
    display: none;
  }

  .footer-brand {
    margin-right: 10px;
    padding: 0;
  }

  .feature-card-border.hide-block {
    display: none;
  }

  .article-share-link {
    margin-left: 0;
    margin-right: 10px;
  }

  .company-hero-grid {
    flex-flow: column;
    grid-template-columns: 1fr 1fr;
  }

  .company-image-large {
    max-height: 370px;
  }

  .company-image-tall {
    max-height: 290px;
  }

  .feature-card-content-wrapper {
    max-width: 100%;
  }

  .clone-wrapper {
    text-align: center;
    flex-direction: column;
  }

  .clone-close {
    display: flex;
  }

  .clone-button-primary {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 24px;
  }

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

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

  .footer-link-column {
    max-width: 164px;
  }

  .heading-8, .heading-9 {
    text-align: center;
  }

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

  .grid-two-column-2 {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

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

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

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

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

  .gallery-carousel {
    height: 350px;
  }

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

  .contact-form-2 {
    order: -1;
  }

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

  .f-grid-two-column, .content-grid-2 {
    grid-template-columns: 1fr;
  }

  .content-image-block {
    max-width: none;
  }

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

@media screen and (max-width: 767px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 36px;
  }

  h4 {
    font-size: 32px;
  }

  .menu-button {
    margin-left: 20px;
  }

  .button-primary {
    font-size: 16px;
  }

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

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

  .hero-grid {
    flex-flow: column;
  }

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

  .feature-card-text-wrapper {
    width: 50%;
  }

  .feature-card {
    padding-left: 5%;
    padding-right: 5%;
  }

  .content-wrapper {
    margin-top: 0;
  }

  .content-image-left {
    max-height: 100vh;
  }

  .content-steps-grid {
    grid-column-gap: 20px;
  }

  .cta-app-link {
    margin-left: 0;
    margin-right: 40px;
  }

  .feature-card-image {
    width: 80%;
  }

  .blog-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
    position: relative;
  }

  .blog-featured-image {
    border-radius: 40px;
  }

  .arrow-link {
    background-image: none;
    padding-right: 40px;
    font-size: 16px;
  }

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

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

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

  .team-social-link {
    margin-left: 5px;
    margin-right: 5px;
  }

  .password-button-wrapper {
    flex-wrap: wrap;
  }

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

  .field-label {
    font-size: 12px;
  }

  .text-area-wrapper {
    margin-bottom: 30px;
  }

  .utility-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .blog-collection-list-small {
    margin-bottom: 0;
  }

  .posts-wrapper {
    flex-direction: column;
    justify-content: flex-start;
  }

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

  .team-slide-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

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

  .content-feature-grid {
    grid-column-gap: 20px;
  }

  .company-grid, .company-content-grid {
    flex-flow: column;
  }

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

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

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

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

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

  .footer-button-wrapper {
    flex-wrap: wrap;
  }

  .footer-brand {
    margin-right: 20px;
  }

  .article-image-wrapper {
    border-radius: 24px;
  }

  .article-share-link {
    margin-left: 5px;
    margin-right: 5px;
  }

  .company-hero-grid {
    flex-flow: column;
    grid-template-columns: 1fr;
  }

  .team-slide-content {
    text-align: center;
  }

  .clone-banner-delete-me {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .clone-button-primary {
    font-size: 16px;
  }

  .h2-heading-2 {
    font-size: 44px;
  }

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

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

  .footer-divider {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 32px;
  }

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

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

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

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

  .f-h1-heading {
    margin-top: 0;
    font-size: 48px;
  }

  .f-header-wrapper {
    justify-content: center;
  }

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

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

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

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

  .h2-heading-4 {
    font-size: 40px;
  }

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

  .contact-bg-image-wrapper {
    display: none;
  }

  .h1-heading-3 {
    font-size: 56px;
  }

  .f-h2-heading {
    font-size: 44px;
  }

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

  .f-h4-heading {
    font-size: 36px;
  }

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

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

  .h3-heading-3 {
    font-size: 36px;
  }

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

  .h2-heading-article {
    font-size: 40px;
  }
}

@media screen and (max-width: 479px) {
  .navigation-menu {
    background-color: var(--neutral--white);
    color: var(--neutral--black);
  }

  .navigation {
    padding-left: 5%;
    padding-right: 5%;
  }

  .navigation-logo {
    width: 160px;
  }

  .button-primary {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .gradient-text {
    font-size: 14px;
  }

  .hero-content-wrapper {
    grid-column-gap: 56px;
    grid-row-gap: 56px;
  }

  .hero-image {
    max-height: 400px;
  }

  .text-color-gold {
    text-align: center;
    font-size: 32px;
  }

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

  .overline-large {
    font-size: 12px;
    line-height: 26px;
  }

  .feature-card-grid {
    flex-flow: column;
    grid-template-rows: auto auto auto;
    display: flex;
  }

  .testimonial-item {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .feature-card-text-wrapper {
    z-index: 2;
    width: 80%;
    position: relative;
  }

  .feature-card {
    border-radius: 40px;
  }

  .feature-card-overlay {
    border-radius: 40px;
    padding: 40px 24px;
  }

  .feature-overlay-close {
    top: 40px;
  }

  .content-grid {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
  }

  .content-steps-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .cta-card {
    border-radius: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .cta-buttons-wrapper {
    justify-content: space-around;
  }

  .cta-app-link {
    margin-right: 20px;
  }

  .feature-card-image {
    opacity: .5;
    border-radius: 40px;
    width: 90%;
  }

  .blog-featured-image {
    border-radius: 30px;
  }

  .footer-section {
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .footer-header {
    justify-content: center;
    align-items: center;
  }

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

  .footer-copyright {
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .form-submit-wrapper {
    font-size: 12px;
    line-height: 18px;
  }

  .posts-wrapper {
    margin-bottom: 60px;
  }

  .article-share-block {
    display: flex;
  }

  .team-image {
    border-radius: 40px;
    width: auto;
    display: block;
  }

  .team-slide {
    padding-left: 0;
    padding-right: 0;
  }

  .team-slide-grid {
    min-height: auto;
  }

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

  .title-wrapper-center.center-align {
    flex-flow: column;
  }

  .paragraph-large {
    font-size: 14px;
    line-height: 24px;
  }

  .paragraph-large.text-align-left {
    text-align: center;
  }

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

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

  .content-feature-title {
    margin-bottom: 10px;
  }

  .content-image-wrapper {
    height: auto;
  }

  .contact-link-title {
    margin-bottom: 10px;
  }

  .team-socials {
    display: flex;
  }

  .investor-placeholder {
    display: none;
  }

  .button-outer {
    border-radius: 40px;
  }

  .overline-small {
    font-size: 16px;
    line-height: 26px;
  }

  .cta-gradient-border, .feature-card-border {
    border-radius: 40px;
  }

  .hide-mobile {
    display: none;
  }

  .team-image-wrapper {
    border-radius: 40px;
  }

  .feature-card-content-wrapper {
    max-width: none;
  }

  .heading-3 {
    font-size: 24px;
  }

  .paragraph {
    text-align: left;
    font-size: 14px;
  }

  .grid-three-column._2-col-layout {
    flex-flow: column;
    display: flex;
  }

  .footer-grid-a {
    justify-items: center;
  }

  .paragraph-small-3 {
    text-align: center;
    justify-content: center;
    display: flex;
  }

  .wrap-h-small {
    display: none;
  }

  .section-footer-l {
    padding-bottom: 0;
  }

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

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

  .paragraph-2 {
    text-align: left;
    font-size: 14px;
  }

  .paragraph-3, .paragraph-4 {
    font-size: 14px;
  }

  .paragraph-regular-2 {
    text-align: center;
  }

  .column-x-small {
    align-items: center;
  }

  .grid-two-column {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .f-header-avatar-text {
    margin-left: 0;
  }

  .f-header-wrapper {
    flex-wrap: wrap;
  }

  .f-section-large {
    padding-top: 200px;
  }

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

  .subheading-large {
    text-align: center;
  }

  .team-content {
    justify-content: center;
    align-items: center;
  }

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

  .team-detail {
    text-align: center;
    align-items: center;
  }

  .paragraph-small-5.text-color-gray-500 {
    text-align: center;
    justify-content: center;
    display: flex;
  }

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

  .gallery-section-carousel, .gallery-carousel-content {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .gallery-carousel {
    height: 200px;
  }

  .row-small {
    justify-content: space-between;
  }

  .paragraph-regular-4 {
    text-align: center;
  }

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

  .subheading-large-2 {
    text-align: center;
  }

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

  .image {
    display: none;
    inset: auto 0% 0%;
  }

  .f-cta-form-wrapper {
    flex-direction: column;
  }

  .f-form-button, .f-cta-form-block {
    width: 100%;
  }

  .content-image-block {
    min-height: auto;
    padding: 24px;
  }

  .content-feature-2 {
    justify-content: center;
  }

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

  .a-section-large {
    padding-top: 200px;
  }

  .a-header-title-wrapper-center {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .article-paragraph {
    text-align: center;
  }

  .list-3, .list-4 {
    padding-left: 0;
  }
}

#w-node-_413a2338-a5c0-2de4-379c-9c261e4b08bd-14c0a310 {
  justify-self: center;
}

#w-node-_20ecd503-a5db-6475-bda5-02c56a56be8d-14c0a310, #w-node-_8158b3ef-d96b-3841-45b3-4359f515cf4e-14c0a310, #w-node-_365c059c-c6c1-7b82-6e71-cd7beb4d15a5-14c0a310, #w-node-_66830e54-e479-9a39-f1ac-3c21476dd3cc-14c0a310 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a78ab621-a866-21d9-f0f1-38cd41e0990e-14c0a310 {
  justify-self: center;
}

#w-node-_0db2880d-d135-a0cd-8925-79bd5865a48d-14c0a310, #w-node-_0db2880d-d135-a0cd-8925-79bd5865a4a2-14c0a310, #w-node-a38a225e-222a-1260-64cb-4a6368e7a4eb-14c0a310, #w-node-cd8db208-3a6a-2d23-a424-cb425ae95a05-14c0a313, #w-node-cd8db208-3a6a-2d23-a424-cb425ae95a19-14c0a313, #w-node-cd8db208-3a6a-2d23-a424-cb425ae95a2d-14c0a313, #w-node-cd8db208-3a6a-2d23-a424-cb425ae95a41-14c0a313, #w-node-cd8db208-3a6a-2d23-a424-cb425ae95a69-14c0a313 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ebdee31d-6c8e-a508-8f15-7a68443a9dd3-14c0a314 {
  grid-area: 1 / 1 / 2 / 3;
  justify-self: center;
}

#w-node-ebdee31d-6c8e-a508-8f15-7a68443a9de7-14c0a314, #w-node-ebdee31d-6c8e-a508-8f15-7a68443a9dfb-14c0a314, #w-node-ebdee31d-6c8e-a508-8f15-7a68443a9e0f-14c0a314, #w-node-ebdee31d-6c8e-a508-8f15-7a68443a9e23-14c0a314 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ebdee31d-6c8e-a508-8f15-7a68443a9e37-14c0a314 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center;
}

#w-node-e9fc8ac9-1d4b-f019-4062-3589c6d8ee3e-14c0a314, #w-node-e9fc8ac9-1d4b-f019-4062-3589c6d8ee47-14c0a314, #w-node-e9fc8ac9-1d4b-f019-4062-3589c6d8ee50-14c0a314, #w-node-e9fc8ac9-1d4b-f019-4062-3589c6d8ee59-14c0a314 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5b3e0157-b0a4-18d3-5d47-e1cdddf7773f-14c0a315 {
  align-self: start;
}

#w-node-_092b5d64-9295-5762-5b4b-f48eddebaa01-14c0a315, #w-node-_29d903b2-7d82-1a95-6ed7-0b0461a41174-14c0a318 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_40b98206-89c9-4807-e8b4-2e45e9a4cfb0-14c0a310 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_17363dd7-8f72-c197-d29c-ba17219fd181-14c0a315 {
    order: 9999;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_8158b3ef-d96b-3841-45b3-4359f515cf4e-14c0a310, #w-node-_66830e54-e479-9a39-f1ac-3c21476dd3cc-14c0a310, #w-node-_40b98206-89c9-4807-e8b4-2e45e9a4cfb0-14c0a310 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_549705ab-1bdf-c997-f1ae-be230d3619dc-14c0a310 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_17363dd7-8f72-c197-d29c-ba17219fd181-14c0a315 {
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_549705ab-1bdf-c997-f1ae-be230d3619dc-14c0a310 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_6bbd4196-d68d-f871-c15f-eada7b457c7e-7d92aef2 {
    place-self: auto center;
  }

  #w-node-_6bbd4196-d68d-f871-c15f-eada7b457c8a-7d92aef2 {
    justify-self: center;
  }
}


