<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --background-a: #05070b;
  --transparent: var(--heading);
  --heading: white;
  --link: #d9d9d9;
  --dy: #006cef;
  --link-blue: #006cef;
  --border: #404040;
  --brand-br2: #005ccb;
  --background-b2: #38281d80;
  --background-b3: #05101f;
  --title: #d9d9d9;
  --xy: #006cef;
}

.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-a);
  color: var(--transparent);
  flex-flow: column;
  font-family: Roboto, sans-serif;
  font-size: 1.13rem;
  line-height: 180%;
  display: flex;
}

h1 {
  color: var(--heading);
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 5rem;
  font-weight: 500;
  line-height: 106%;
}

h2 {
  color: var(--heading);
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 1.88rem;
  font-size: 4.13rem;
  font-weight: 500;
  line-height: 106%;
}

h3 {
  color: var(--heading);
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 1.75rem;
  font-size: 3.25rem;
  font-weight: 500;
  line-height: 110%;
}

h4 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 2.63rem;
  font-weight: 500;
  line-height: 115%;
}

h5 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 1.38rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 120%;
}

h6 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 1.13rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 130%;
}

p {
  margin-bottom: 2rem;
}

a {
  color: var(--link);
  line-height: 150%;
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

ol {
  margin-top: 0;
  margin-bottom: 2rem;
  padding-left: 2.25rem;
}

li {
  padding-top: .19rem;
  padding-bottom: .19rem;
  padding-left: .44rem;
}

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

strong {
  color: var(--heading);
  font-weight: 700;
}

em {
  font-style: italic;
}

blockquote {
  color: var(--heading);
  border-left: 5px solid #e2e2e2;
  margin-bottom: 32px;
  margin-left: 18px;
  padding: 0 24px;
  font-size: 20px;
  line-height: 175%;
}

figure {
  margin-top: 40px;
  margin-bottom: 2.5rem;
  position: relative;
}

.section-hero {
  color: var(--transparent);
  border: 0 solid #000;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 7.5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  line-height: 220%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-hero.header {
  color: var(--dy);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  padding-bottom: 120px;
}

.content {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 75rem;
  display: flex;
}

.content.narrow {
  max-width: 720px;
  display: block;
}

.content.single-page {
  margin-top: 10vh;
}

.block-hero {
  z-index: 2;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.block-hero.amba-title1-xx {
  min-width: auto;
  max-width: none;
  height: auto;
  padding-bottom: 2rem;
}

.subtitle {
  color: var(--link-blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #374a63;
  border-radius: .94rem;
  margin-top: 0;
  margin-bottom: .94rem;
  padding: .56rem 1.13rem;
  font-size: .81rem;
  line-height: 140%;
}

.heading-single-page {
  max-width: 960px;
}

.section {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 4rem;
  padding: 7.5rem 2.5rem;
  line-height: 180%;
  display: flex;
  overflow: hidden;
}

.section.footer {
  text-align: left;
  align-items: center;
  margin-top: auto;
  padding-bottom: 70px;
  position: relative;
}

.section.sticky {
  overflow: visible;
}

.space {
  background-image: linear-gradient(90deg, #0000, var(--dy) 25%, var(--dy) 75%, #fff0);
  width: 100%;
  height: 1px;
  margin-top: 74px;
  margin-bottom: 4.63rem;
}

.grid-colors {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.block-color {
  border: 1px solid var(--border);
  background-color: var(--background-a);
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 7.5rem;
  padding: 1.25rem;
  display: flex;
}

.block-color.brand-br1 {
  background-color: var(--link-blue);
}

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

.block-color.background-b1 {
  background-color: var(--dy);
}

.block-color.background-b2 {
  background-color: var(--background-b2);
}

.block-color.background-b3 {
  background-color: var(--background-b3);
}

.block-color.heading {
  background-color: var(--heading);
}

.block-color.link {
  background-color: var(--link);
}

.block-color.paragraphs {
  background-color: var(--transparent);
}

.block-color.border {
  background-color: var(--border);
}

.text-color {
  color: var(--heading);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

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

.hex-color {
  color: #ffffff80;
  font-size: 14px;
  line-height: 140%;
}

.hex-color.dark {
  color: #00000080;
}

.figure-caption {
  text-align: center;
  font-size: 16px;
  line-height: 160%;
}

.template-info {
  background-image: linear-gradient(140deg, var(--background-b2), #fff0);
  border-radius: 15px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: .63rem;
  padding: 1.5rem 1.88rem;
  display: flex;
}

.grid-button {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column;
  place-items: center;
}

.button {
  background-color: var(--dy);
  pointer-events: auto;
  color: var(--heading);
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: .94rem;
  padding: 1rem 2.19rem;
  line-height: 140%;
  transition: background-color .4s cubic-bezier(.25, .46, .45, .94), transform .4s cubic-bezier(.25, .46, .45, .94);
}

.button:hover {
  background-color: var(--brand-br2);
  transform: scale(.92);
}

.button.small {
  border-radius: 12px;
  padding: .63rem 1.63rem;
  font-size: 16px;
}

.button-outline {
  border: 2px solid var(--dy);
  color: var(--heading);
  text-align: center;
  mix-blend-mode: normal;
  background-color: #0000;
  border-radius: 15px;
  width: 10rem;
  margin-top: 0;
  padding: .88rem 2.06rem;
  line-height: 140%;
  transition: transform .4s cubic-bezier(.25, .46, .45, .94), background-color .4s cubic-bezier(.25, .46, .45, .94);
  position: static;
}

.button-outline:hover {
  background-color: var(--brand-br2);
  transform: scale(.94);
}

.button-outline.small {
  border-radius: 12px;
  padding: .5rem 1.5rem;
  font-size: 16px;
}

.button-outline.search-btn {
  margin-top: 3rem;
}

.button-dark {
  background-color: var(--dy);
  color: var(--heading);
  text-align: center;
  border-radius: 15px;
  padding: 1rem 2.19rem;
  line-height: 140%;
  transition: transform .4s cubic-bezier(.25, .46, .45, .94), background-color .4s cubic-bezier(.25, .46, .45, .94);
}

.button-dark:hover {
  background-color: var(--brand-br2);
  transform: scale(.94);
}

.button-dark.small {
  border-radius: 12px;
  padding: .63rem 1.63rem;
  font-size: 16px;
}

.navbar {
  z-index: 99;
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  outline-offset: 0px;
  background-color: #0000;
  outline: 3px #fff;
  flex-flow: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  padding: 0 2.5rem 1.88rem;
  display: flex;
  position: fixed;
  top: 0%;
  left: 0%;
  right: 0%;
}

.grid-navbar {
  z-index: 9;
  grid-column-gap: .63rem;
  grid-row-gap: .63rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr auto .5fr;
  align-items: center;
  width: 100%;
  position: relative;
}

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

.nav.right {
  justify-content: flex-end;
  align-items: center;
}

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

.logo {
  width: auto;
  height: 3rem;
}

.nav-link {
  color: var(--link);
  padding: 12px 1.75rem;
  line-height: 140%;
  transition: color .4s cubic-bezier(.25, .46, .45, .94);
  position: relative;
}

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

.grid-button-nav {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  place-items: center;
}

.nav-button {
  background-color: var(--dy);
  color: var(--heading);
  text-align: center;
  border-radius: 15px;
  padding: .63rem 1.75rem;
  line-height: 140%;
  transition: opacity .2s, background-color .4s cubic-bezier(.25, .46, .45, .94), transform .4s cubic-bezier(.25, .46, .45, .94);
}

.nav-button:hover {
  background-color: var(--link-blue);
  transform: scale(.94);
}

.shadow-navbar {
  z-index: 8;
  background-image: linear-gradient(180deg, var(--background-a) 20%, #05070bcc 60%, #fff0);
  opacity: 0;
  height: 140px;
  margin-top: 0;
  position: absolute;
  inset: 0% 0% auto;
}

.glow-top {
  z-index: -1;
  background-image: radial-gradient(circle farthest-corner at 50% -170%, transparent 52%, var(--background-a)), linear-gradient(180deg, var(--link-blue), transparent);
  width: 100%;
  height: 28.9rem;
  position: absolute;
  top: -22%;
  left: 0%;
  right: 0%;
}

.glow-top.footer {
  background-image: radial-gradient(circle farthest-corner at 50% -140%, transparent 52%, var(--background-a)), linear-gradient(0deg, var(--link-blue), transparent);
  top: auto;
  bottom: -57%;
}

.grid-footer {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 2.4fr 1fr 1fr;
  width: 100%;
}

.block-footer {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.logo-footer {
  width: auto;
  height: 2.25rem;
  margin-bottom: 1.75rem;
}

.heading-footer {
  color: var(--heading);
  margin-top: .25rem;
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 140%;
}

.link-footer {
  padding-top: .38rem;
  padding-bottom: .38rem;
  font-size: 16px;
  line-height: 140%;
  text-decoration: none;
}

.footer-down {
  width: 100%;
  margin-top: 100px;
}

.paragraph.heading-large {
  color: var(--link);
  width: auto;
  max-width: none;
  margin-bottom: 2.63rem;
  font-size: 1.25rem;
  line-height: 180%;
}

.paragraph.heading-large.problem-content {
  margin-top: 0;
}

.paragraph.center {
  color: var(--heading);
  text-align: center;
  width: 100%;
}

.paragraph.footer {
  color: var(--heading);
  width: auto;
  max-width: 36ch;
  height: auto;
  margin-right: 0;
}

.paragraph.footer.amba-footer {
  max-width: 39ch;
}

.heading-hero {
  background-image: linear-gradient(150deg, var(--heading), var(--link-blue));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  width: auto;
  max-width: none;
  font-weight: 500;
}

.heading-hero.solution-title, .heading-hero.about-title {
  width: auto;
}

.heading-hero.contact-title {
  width: auto;
  display: block;
}

.figure-hero {
  z-index: -1;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 37.3rem;
  margin-top: 2.5rem;
  display: flex;
}

.image-hero {
  width: 100%;
  max-width: none;
  height: auto;
  margin-top: -41rem;
}

.block-heading {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 0;
  line-height: 180%;
  display: flex;
}

.block-heading.prod-heading {
  margin-top: 0;
}

.block-heading.amba-photo {
  padding: 7.5rem 2.5rem;
}

.heading {
  white-space: pre-line;
  width: auto;
  max-width: 58.75rem;
  font-weight: 700;
}

.grid-solution {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr minmax(200px, 1fr);
  grid-auto-rows: auto;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  width: 100%;
  margin-top: 30px;
  display: grid;
}

.grid-solution.home-grid.amba-grid {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

.block-solution {
  background-color: var(--background-b3);
  background-image: linear-gradient(315deg, var(--background-b3), #050b15);
  border-radius: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 3.13rem 10% 1.25rem;
  line-height: 180%;
  display: flex;
}

.block-solution.amba-block {
  text-align: center;
  overflow-wrap: normal;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  position: static;
}

.block-solution.amba-block1 {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding-top: 4.31rem;
  padding-bottom: 4.31rem;
  padding-right: 0%;
}

.icon-solution {
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 1.38rem;
}

.icon-solution.home-icon {
  width: 10rem;
  height: 10rem;
}

.icon-solution.home-icon.amba {
  width: 3.5rem;
  height: 3.5rem;
  margin-top: 2.5rem;
  line-height: 200%;
}

.icon-solution.home-icon.amba1 {
  width: 7.5rem;
  height: 7.5rem;
}

.grid-right {
  grid-column-gap: 1.56rem;
  grid-row-gap: 1.56rem;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  display: grid;
}

.grid-right.grida {
  grid-column-gap: 1.56rem;
  grid-row-gap: 1.56rem;
  text-align: left;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-top: 1rem;
  display: flex;
}

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

.block.solution-block {
  flex-flow: column;
}

.block.block-a {
  flex-flow: row;
  justify-content: flex-start;
  max-width: none;
  display: flex;
}

.block-right {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

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

.stats {
  background-color: var(--transparent);
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(225deg, #051122, #051121);
  background-clip: border-box;
  border-radius: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  height: auto;
  padding: 2.63rem;
  line-height: 180%;
  display: flex;
}

.stats.light {
  background-image: linear-gradient(270deg, #051223, #041a37);
  width: auto;
  padding-left: 2.63rem;
  padding-right: 2.63rem;
  line-height: 180%;
}

.stats.statsa {
  background-color: var(--background-a);
  color: var(--transparent);
  background-image: none;
  border: 0 solid #000;
  border-right: 1px solid #ffffff4d;
  border-radius: 0;
  padding-top: 0;
  padding-bottom: 1.63rem;
}

.stats.statsa.stats-4 {
  text-align: left;
  border-right-width: 0;
}

.heading-stats {
  width: auto;
  margin-bottom: .25rem;
  font-size: 2rem;
}

.heading-stats.block-4 {
  color: var(--link-blue);
  font-size: 3.25rem;
}

.text-stats {
  color: var(--link);
  width: auto;
  max-width: none;
  margin-top: 0;
  font-size: 1.13rem;
  line-height: 140%;
}

.text-stats.text-stats4 {
  max-width: none;
}

.grid-partners {
  grid-column-gap: .94rem;
  grid-row-gap: .94rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-top: 1.88rem;
  margin-bottom: 2.63rem;
}

.partner {
  border-radius: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  max-height: 120px;
  padding: 1.25rem;
  display: flex;
  position: relative;
}

.logo-partner {
  aspect-ratio: auto;
  object-fit: contain;
  flex: none;
  width: 158px;
  height: 50px;
  max-height: none;
}

.grid-left {
  grid-column-gap: 1.56rem;
  grid-row-gap: 1.56rem;
  grid-template-rows: auto;
  width: 100%;
}

.block-left {
  grid-column-gap: 1.56rem;
  grid-row-gap: 1.56rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.newsletter-input {
  border: 1px solid var(--border);
  background-color: var(--background-b3);
  direction: ltr;
  color: var(--heading);
  letter-spacing: normal;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: var(--heading);
  text-indent: 10px;
  text-transform: none;
  text-shadow: 0 1px 1px #0003;
  text-overflow: clip;
  column-count: 10;
  column-rule: 0px none var(--heading);
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: break-word;
  -webkit-text-decoration-skip-ink: auto;
  text-decoration-skip-ink: auto;
  border-radius: 15px;
  column-gap: 0;
  width: 25rem;
  height: 4.38rem;
  text-decoration: none;
  overflow: hidden;
}

.newsletter-input::placeholder {
  color: var(--heading);
}

.newsletter-image {
  width: 25rem;
}

.form-inner {
  grid-column-gap: .94rem;
  grid-row-gap: .94rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.grid-blog {
  grid-column-gap: .94rem;
  grid-row-gap: .94rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 2.63rem;
  display: grid;
}

.post-item {
  background-color: var(--background-b3);
  background-image: none;
  border: 1px #000;
  border-radius: 15px;
}

.blog-category {
  margin-bottom: .63rem;
  font-size: 1rem;
  font-style: italic;
}

.home-blog-collection {
  width: 100%;
}

.link-post {
  width: auto;
  height: 100%;
  padding: 1.88rem 1.25rem;
}

.post-read {
  color: var(--heading);
}

.grid-features {
  grid-column-gap: 1.56rem;
  grid-row-gap: 1.56rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 1.88rem;
  display: grid;
}

.block-feature {
  background-color: var(--background-b3);
  text-align: left;
  border-radius: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 12.5rem;
  padding: 3.13rem;
  display: flex;
}

.block-feature.problem {
  width: auto;
  transition: background-color .4s cubic-bezier(.25, .46, .45, .94);
}

.block-feature.problem:hover {
  background-color: var(--background-b2);
}

.heading-feature {
  grid-column-gap: .94rem;
  grid-row-gap: .94rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1.25rem;
  display: flex;
}

.icon-feature {
  width: 2.25rem;
  height: 2.25rem;
}

.title-feature-item {
  margin-bottom: 0;
}

.grid-team {
  grid-column-gap: 1.56rem;
  grid-row-gap: 1.56rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-top: 1.88rem;
}

.block-team {
  background-color: var(--background-b3);
  text-align: center;
  border: 1px #000;
  border-radius: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 7.5rem;
  padding: 1.56rem 1.56rem 1.25rem;
  display: flex;
}

.team-image {
  aspect-ratio: 1;
  filter: grayscale();
  border-radius: 999vh;
  width: 3.75rem;
  margin-bottom: .94rem;
  overflow: clip;
}

.team-job {
  color: var(--heading);
  margin-bottom: .94rem;
}

.solution-image {
  width: 80%;
}

.post-thumbnail {
  width: auto;
  height: 180px;
}

.post-image-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 1.25rem;
  display: flex;
}

.form-contact-wrapper {
  width: 100%;
  max-width: 31.25rem;
}

.form-contact {
  grid-column-gap: .94rem;
  grid-row-gap: .94rem;
  color: var(--heading);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-items: stretch start;
  line-height: 140%;
  display: grid;
}

.text-field {
  border: 1px solid var(--border);
  background-color: var(--background-b3);
  color: var(--heading);
  border-radius: 15px;
  height: 3.75rem;
  padding: .94rem 1.25rem;
}

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

.text-area {
  border: 1px solid var(--border);
  background-color: var(--background-b3);
  color: var(--heading);
  border-radius: 15px;
  width: 100%;
  max-width: 100%;
  min-height: 200px;
  max-height: 400px;
  padding-top: 15px;
  padding-bottom: 15px;
}

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

.image-license {
  width: 5rem;
}

.grid-license {
  grid-template-rows: auto;
}

.block-license {
  border: 1px solid var(--border);
  background-color: var(--background-b3);
  border-radius: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  display: flex;
}

.visuals-license {
  max-width: 12.5rem;
}

.visuals-license.icon {
  max-width: 60px;
}

.text-font-license {
  margin-bottom: 0;
}

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

.utility-page-content {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-image: linear-gradient(140deg, var(--dy), var(--background-b3));
  box-shadow: 0 0 99px -3px var(--link-blue);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 125px;
  display: flex;
}

.post-cover {
  width: 60%;
}

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

.block-date {
  width: 100%;
}

.publish-date {
  margin-bottom: 0;
}

.team-linkedin {
  color: var(--link-blue);
  transition: color .4s cubic-bezier(.25, .46, .45, .94);
}

.team-linkedin:hover {
  color: var(--heading);
}

.grid-values {
  grid-column-gap: 1rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 1.88rem;
  display: grid;
}

.grid-values.home-grid {
  margin-top: 4rem;
}

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

.value-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid var(--border);
  flex-flow: column;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-right: .5rem;
  display: flex;
}

.values-image {
  object-fit: contain;
  border-radius: 1rem;
  height: 100%;
}

.team-name {
  color: var(--heading);
  font-size: 1.5rem;
}

.team-quote {
  color: var(--heading);
}

.grid-problem {
  grid-column-gap: 1.56rem;
  grid-row-gap: 1.56rem;
  grid-template: "Area"
                 "."
                 / 1fr;
  width: 100%;
  margin-top: 1.88rem;
  position: sticky;
  top: 0;
}

.problem-stack {
  grid-column-gap: 1.56rem;
  grid-row-gap: 1.56rem;
  flex-flow: column;
  display: flex;
  position: sticky;
  top: 0;
}

.text-block {
  border: 1px solid #000;
}

.dropdown-toggle {
  border: 1px solid #000;
  -webkit-text-decoration: underline #fff;
  text-decoration: underline #fff;
}

.text-block-2 {
  filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  pointer-events: auto;
  mix-blend-mode: normal;
  transition: opacity .2s;
}

.language {
  z-index: 999;
  border: 2px solid var(--dy);
  opacity: 1;
  color: var(--transparent);
  -webkit-text-fill-color: inherit;
  background-color: #0000;
  background-clip: border-box;
  border-radius: 11px;
  margin-top: 1.5rem;
  font-family: Roboto, sans-serif;
  font-size: 1.13rem;
  font-weight: 400;
  line-height: 140%;
  position: fixed;
  inset: 1% 1% auto auto;
}

.paragraph-2 {
  color: var(--link);
  width: auto;
  font-size: 1.13rem;
  line-height: 180%;
}

.paragraph-2.icon-content {
  font-size: 1rem;
}

.paragraph-2.icon-content.amba-block2-content {
  margin-top: 1rem;
}

.paragraph-3 {
  color: var(--link);
  width: auto;
  font-size: 1.13rem;
  line-height: 180%;
}

.paragraph-3.icon-content {
  font-size: 1rem;
}

.paragraph-3.icon-content.amba-block2-content {
  margin-top: 1rem;
}

.paragraph-4 {
  color: var(--link);
  width: auto;
  font-size: 1.13rem;
  line-height: 180%;
}

.paragraph-4.icon-content {
  font-size: 1rem;
}

.paragraph-4.icon-content.amba-block-content {
  line-height: 180%;
}

.paragraph-4.icon-content.amba-block2-content {
  height: 6rem;
  margin-top: 1rem;
}

.paragraph-5 {
  color: var(--link);
  width: auto;
  font-size: 1.13rem;
  line-height: 180%;
}

.paragraph-5.icon-content {
  font-size: 1rem;
}

.paragraph-5.icon-content.amba-block2-content {
  margin-top: 1rem;
}

.paragraph-6 {
  color: var(--link);
  width: auto;
  font-size: 1.13rem;
  line-height: 180%;
}

.paragraph-6.icon-content {
  font-size: 1rem;
}

.paragraph-6.icon-content.amba-block2-content {
  margin-top: 1rem;
}

.paragraph-7 {
  color: var(--link);
  width: auto;
  font-size: 1.13rem;
  line-height: 180%;
}

.paragraph-7.icon-content {
  font-size: 1rem;
}

.paragraph-7.icon-content.amba-block2-content {
  height: 6rem;
  margin-top: 1rem;
}

.code-embed-2 {
  z-index: 99;
  border-radius: 15px;
  position: fixed;
}

.code-embed-3 {
  width: 100%;
  max-width: 100%;
  height: 31.25rem;
  margin-top: 0;
}

.heading-copy {
  max-width: 58.75rem;
  margin-bottom: 1.88rem;
}

.heading-2 {
  width: auto;
  font-size: 2rem;
}

.heading-2.icon-title {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  font-size: 1.5rem;
  display: flex;
}

.heading-2.icon-title.amba-block-title {
  height: auto;
  font-size: 1.5rem;
}

.heading-2.icon-title.amba-block2-title {
  height: 4.5rem;
}

.heading-3 {
  width: auto;
  font-size: 2rem;
}

.heading-3.icon-title {
  font-size: 1.5rem;
}

.heading-3.icon-title.amba-block2-title {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  height: 4.5rem;
  display: flex;
}

.heading-4 {
  width: auto;
  font-size: 1.5rem;
}

.heading-4.amba-block2-title {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  height: 4.5rem;
  display: flex;
}

.heading-5 {
  width: auto;
  font-size: 2rem;
}

.heading-5.icon-title {
  font-size: 1.5rem;
}

.heading-5.icon-title.amba-block2-title {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  height: 4.5rem;
  display: flex;
}

.heading-6 {
  width: auto;
  font-size: 2rem;
}

.heading-6.icon-title {
  font-size: 1.5rem;
}

.heading-6.icon-title.amba-block2-title {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  height: 4.5rem;
  display: flex;
}

.heading-7 {
  width: auto;
  font-size: 2rem;
}

.heading-7.icon-title {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  font-size: 1.5rem;
  display: block;
}

.heading-7.icon-title.amba-block2-title {
  flex-flow: column;
  height: 4.5rem;
  display: flex;
}

.heading-8 {
  width: auto;
  max-width: none;
  font-weight: 700;
}

.paragraph-8 {
  color: var(--heading);
  max-width: 36ch;
}

.grid {
  grid-template-areas: "Area";
}

.grid-2 {
  grid-template-rows: auto;
  grid-template-columns: minmax(10rem, 1fr) minmax(10rem, 1fr) minmax(10rem, 1fr);
}

.div-block {
  background-color: var(--background-b3);
  border-radius: 20px;
  width: 389px;
  height: 575px;
}

.paragraph-9 {
  color: var(--title);
  height: 14px;
  margin-left: 17px;
  font-size: 14px;
  font-style: italic;
}

.paragraph-10 {
  color: var(--heading);
  margin-top: 11px;
  font-size: 2rem;
  line-height: 120%;
}

.text-block-3 {
  color: var(--title);
  font-size: 1rem;
  font-style: italic;
  line-height: 150%;
}

.text-block-4 {
  color: var(--link);
  font-size: 1.13rem;
  line-height: 150%;
}

.text-block-5 {
  color: var(--heading);
  margin-top: 101px;
  margin-left: 17px;
  font-size: 14px;
}

.text-block-6 {
  color: var(--link);
  font-size: 1rem;
  font-style: italic;
  line-height: 150%;
}

.div-block-2 {
  background-color: var(--background-b3);
  border-radius: 20px;
  width: auto;
  height: 100%;
  padding: 1.88rem 1.25rem;
}

.paragraph-11 {
  color: var(--heading);
  margin-top: 11px;
  font-size: 2rem;
  line-height: 120%;
}

.text-block-7 {
  color: var(--link);
  width: 339px;
  font-size: 1.13rem;
  line-height: 150%;
}

.div-block-3 {
  background-color: var(--background-b3);
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  padding: 1.88rem 1.25rem;
  display: flex;
}

.text-block-8 {
  color: var(--link);
  font-size: 1rem;
  font-style: italic;
  line-height: 150%;
}

.paragraph-12 {
  color: var(--heading);
  margin-top: 11px;
  font-size: 2rem;
  line-height: 120%;
}

.text-block-9 {
  color: var(--link);
  width: 352px;
  font-size: 1.13rem;
  line-height: 150%;
}

.text-block-10 {
  z-index: auto;
  clear: none;
  color: var(--heading);
  margin-top: 0;
  margin-left: 17px;
  font-size: 14px;
  display: flex;
  position: relative;
  inset: auto 0% 0;
}

.paragraph-13 {
  color: var(--heading);
  width: auto;
  max-width: 38.75rem;
  font-size: 1.25rem;
  line-height: 180%;
}

.image {
  width: auto;
  height: auto;
  margin-bottom: 1.25rem;
}

.image-2 {
  width: auto;
  height: 100%;
  padding: 1.88rem 1.25rem;
}

.image-3 {
  width: auto;
  margin-bottom: 1.25rem;
}

.image-4 {
  margin-bottom: 1.25rem;
}

.paragraph-14 {
  color: var(--heading);
  margin-top: 2rem;
  margin-bottom: 0;
}

.paragraph-15 {
  color: var(--link);
  margin-bottom: 0;
}

.text-block-11, .text-block-12, .text-block-13 {
  color: var(--link);
  font-size: .9rem;
  line-height: 180%;
}

.paragraph-16 {
  color: var(--link);
  margin-bottom: 0;
}

.text-block-14, .text-block-15, .text-block-16 {
  color: var(--link);
  font-size: .9rem;
}

.paragraph-17 {
  color: var(--link);
  margin-bottom: 0;
}

.text-block-17, .text-block-18 {
  color: var(--link);
  font-size: .9rem;
}

.paragraph-18 {
  color: var(--link);
  margin-bottom: 0;
}

.text-block-19 {
  color: var(--link);
  font-size: .9rem;
  line-height: 180%;
}

.text-block-19.mobile-list {
  font-size: 1.13rem;
  line-height: 180%;
}

.text-block-20, .text-block-21, .text-block-22, .text-block-23 {
  color: var(--link);
  font-size: .9rem;
}

.paragraph-19 {
  color: var(--link);
  margin-top: 2rem;
  font-size: 1.2rem;
  line-height: 180%;
}

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

.bold-text-2 {
  font-weight: 500;
}

.subtitle-2 {
  color: #90c2ff;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #374a63;
  border-radius: .94rem;
  margin-top: 0;
  margin-bottom: .94rem;
  padding: .56rem 1.13rem;
  font-size: .81rem;
  line-height: 140%;
}

.content-2 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 75rem;
  display: flex;
}

.content-2.single-page {
  margin-top: 10vh;
}

.paragraph-20.heading-large {
  max-width: 38.75rem;
  margin-bottom: 2.63rem;
  font-size: 1.25rem;
}

.heading-hero-2 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(150deg, #fff, #ff793f);
  -webkit-background-clip: text;
  background-clip: text;
  max-width: 60rem;
}

.paragraph-21 {
  color: var(--link);
}

.paragraph-21.pro-content {
  margin-bottom: .5rem;
}

.paragraph-22, .paragraph-23, .paragraph-24, .paragraph-25, .paragraph-26, .paragraph-27, .paragraph-28 {
  color: var(--link);
}

.heading-9 {
  max-width: 58.75rem;
}

.section-2 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 7.5rem 2.5rem;
  display: flex;
  overflow: hidden;
}

.paragraph-29.heading-large {
  max-width: 38.75rem;
  margin-bottom: 2.63rem;
  font-size: 1.25rem;
}

.heading-10 {
  max-width: 58.75rem;
}

.section-3 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 7.5rem 2.5rem;
  display: flex;
  overflow: hidden;
}

.paragraph-30.heading-large {
  color: var(--link);
  max-width: 38.75rem;
  margin-bottom: 2.63rem;
  font-size: 1.25rem;
}

.section-3-copy {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 7.5rem 2.5rem;
  display: flex;
  overflow: hidden;
}

.heading-11 {
  max-width: 58.75rem;
}

.section-4 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 7.5rem 2.5rem;
  display: flex;
  overflow: hidden;
}

.paragraph-31.heading-large {
  color: var(--link);
  max-width: 38.75rem;
  margin-bottom: 2.63rem;
  font-size: 1.25rem;
}

.form-contact-2 {
  grid-column-gap: .94rem;
  grid-row-gap: .94rem;
  color: #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch start;
  line-height: 140%;
  display: grid;
}

.text-field-2 {
  color: #fff;
  -webkit-text-stroke-color: white;
  -webkit-text-fill-color: inherit;
  background-color: #38261d40;
  background-clip: border-box;
  border: 1px solid #404040;
  border-radius: 15px;
  height: 3.75rem;
  padding: .94rem 1.25rem;
  position: static;
}

.text-field-2::placeholder {
  color: #d9d9d9;
}

.text-area-2 {
  background-color: #38261d40;
  border: 1px solid #404040;
  border-radius: 15px;
  width: 100%;
  max-width: 100%;
  min-height: 200px;
  max-height: 400px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.text-area-2::placeholder {
  color: #d9d9d9;
}

.button-2 {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-color: #ff793f;
  background-clip: border-box;
  border-radius: .94rem;
  padding: 1rem 2.19rem;
  line-height: 140%;
  transition: background-color .4s cubic-bezier(.25, .46, .45, .94), transform .4s cubic-bezier(.25, .46, .45, .94);
}

.button-2:hover {
  background-color: #cc6133;
  transform: scale(.92);
}

.nav-link-2 {
  color: #d9d9d9;
  padding: 12px 1.75rem;
  line-height: 140%;
  transition: color .4s cubic-bezier(.25, .46, .45, .94);
  position: relative;
}

.nav-link-2:hover {
  color: #ff793f;
}

.nav-link-2.w--current {
  text-decoration: none;
}

.nav-button-2 {
  border: 1px solid var(--background-a);
  color: #fff;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-color: #023779;
  background-clip: border-box;
  border-radius: 15px;
  padding: .63rem 1.75rem;
  line-height: 140%;
}

.nav-button-2:hover {
  background-color: #023779;
  transform: scale(.94);
}

.grid-navbar-2 {
  z-index: 9;
  grid-column-gap: .63rem;
  grid-row-gap: .63rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  position: relative;
}

.navbar-2 {
  z-index: 99;
  background-color: #0000;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 1.88rem 2.5rem;
  display: flex;
  position: fixed;
  top: 0%;
  left: 0%;
  right: 0%;
}

.logo-2 {
  width: auto;
  height: 2.25rem;
}

.shadow-navbar-2 {
  z-index: 8;
  opacity: 0;
  background-image: linear-gradient(#05070b 20%, #05070bcc 60%, #fff0);
  height: 140px;
  position: absolute;
  inset: 0% 0% auto;
}

.paragraph-32.heading-large {
  max-width: 38.75rem;
  margin-bottom: 2.63rem;
  font-size: 1.25rem;
}

.image-5 {
  display: block;
}

.mobile-image {
  display: none;
}

.block-heading-2 {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.subtitle-3 {
  color: #ff793f;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid #38261d;
  border-radius: .94rem;
  margin-top: 0;
  margin-bottom: .94rem;
  padding: .56rem 1.13rem;
  font-size: .81rem;
  line-height: 140%;
}

.heading-12 {
  max-width: 58.75rem;
}

.paragraph-33.heading-large {
  max-width: 38.75rem;
  margin-bottom: 2.63rem;
  font-size: 1.25rem;
}

.grid-solution-2 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr minmax(200px, 1fr);
  width: 100%;
  margin-top: 30px;
}

.block-solution-2 {
  background-color: #38261d40;
  border-radius: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 3.13rem 10% 1.25rem;
  display: flex;
}

.heading-13 {
  max-width: 58.75rem;
}

.subtitle-4 {
  color: #ff793f;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid #38261d;
  border-radius: .94rem;
  margin-top: 0;
  margin-bottom: .94rem;
  padding: .56rem 1.13rem;
  font-size: .81rem;
  line-height: 140%;
}

.paragraph-34.heading-large {
  max-width: 38.75rem;
  margin-bottom: 2.63rem;
  font-size: 1.25rem;
}

.heading-14 {
  max-width: 50rem;
}

.heading-15 {
  max-width: 58.75rem;
}

.bold-text-3 {
  white-space: pre-line;
}

.paragraph-35, .paragraph-36, .paragraph-37, .paragraph-38, .paragraph-39 {
  color: var(--heading);
}

.content-3 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 75rem;
  display: flex;
}

.block-heading-3 {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  line-height: 180%;
  display: flex;
}

.subtitle-5 {
  color: #006cef;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #374a63;
  border-radius: .94rem;
  margin-top: 0;
  margin-bottom: .94rem;
  padding: .56rem 1.13rem;
  font-size: .81rem;
  line-height: 140%;
}

.heading-16 {
  max-width: 50rem;
}

.paragraph-40.heading-large {
  color: #d9d9d9;
  width: auto;
  max-width: 38.75rem;
  margin-bottom: 2.63rem;
  font-size: 1.25rem;
  line-height: 180%;
}

.button-outline-2 {
  color: #fff;
  text-align: center;
  mix-blend-mode: normal;
  background-color: #0000;
  border: 2px solid #006cef;
  border-radius: 15px;
  margin-top: 0;
  padding: .88rem 2.06rem;
  line-height: 140%;
  transition: transform .4s cubic-bezier(.25, .46, .45, .94), background-color .4s cubic-bezier(.25, .46, .45, .94);
  position: static;
}

.button-outline-2:hover {
  background-color: #005ccb;
  transform: scale(.94);
}

.image-6 {
  width: auto;
  max-width: none;
  margin-top: -35rem;
  padding-top: 0;
}

.image-6.amba-bg {
  vertical-align: baseline;
  flex: 0 auto;
  max-width: 170%;
  position: sticky;
}

.amba1-block-title {
  text-align: left;
  margin-bottom: 0;
  font-size: 1.5rem;
}

.amba1-sec {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: -1rem;
  margin-left: 2rem;
  display: flex;
}

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

.amba1-block-content {
  color: var(--link);
  text-align: left;
  margin-top: .7rem;
  margin-bottom: 0;
  font-size: .88rem;
}

.amba-x-photo {
  max-width: 71.88rem;
  margin-bottom: 10rem;
}

.image-7 {
  clear: none;
  z-index: -1;
  width: auto;
  max-width: none;
  height: 100%;
  max-height: none;
  margin-top: -35rem;
  position: static;
}

.image-8 {
  box-sizing: border-box;
  aspect-ratio: auto;
  object-fit: fill;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  margin-top: 0;
  position: static;
  top: -42rem;
}

.image-9 {
  margin-top: -31rem;
}

.image-hero-2 {
  z-index: -1;
  width: 90rem;
  max-width: none;
  height: 64rem;
  margin-top: -32rem;
}

.image-10.mobile-x-photo {
  display: none;
}

.figure-hero-2 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 31.25rem;
  margin-top: 2.5rem;
  display: flex;
}

.figure-hero-2.mobile-hero1 {
  display: none;
}

.image-hero-3 {
  width: auto;
  height: 31.25rem;
}

.success-message {
  background-color: #ddd0;
  display: none;
}

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

  h2 {
    font-size: 3.5rem;
  }

  h3 {
    font-size: 2.75rem;
  }

  h4, h5 {
    font-size: 1.63rem;
  }

  h6 {
    font-size: 1.38rem;
  }

  .section-hero.header {
    padding-bottom: 100px;
  }

  .section {
    padding: 6.25rem 1.88rem;
  }

  .button-outline {
    margin-top: 0;
  }

  .navbar {
    padding: 0 1.88rem 1.56rem;
  }

  .nav-menu {
    background-color: var(--background-a);
    background-image: none;
    border-radius: 15px;
    margin-top: 15px;
    margin-left: 30px;
    margin-right: 30px;
    padding: 15px 5px;
  }

  .nav-link {
    text-align: left;
    display: block;
  }

  .grid-button-nav {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-auto-flow: column;
  }

  .menu-button {
    background-color: var(--dy);
    color: var(--heading);
    border-radius: 15px;
    justify-content: center;
    align-items: center;
    padding: 12px;
    font-size: 21px;
    line-height: 100%;
    transition: background-color .4s cubic-bezier(.25, .46, .45, .94), transform .4s cubic-bezier(.25, .46, .45, .94);
    display: flex;
  }

  .menu-button:hover {
    transform: scale(.94);
  }

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

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

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

  .paragraph.heading-large.problem-content {
    margin-top: 1.88rem;
  }

  .paragraph.footer {
    width: auto;
  }

  .heading-hero {
    text-align: center;
    width: auto;
  }

  .image-hero {
    margin-top: -13rem;
  }

  .block-heading {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .block-heading.prod-heading {
    margin-top: 2rem;
  }

  .heading {
    text-align: center;
  }

  .grid-solution {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    width: auto;
  }

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

  .block {
    justify-content: center;
    align-items: center;
  }

  .stats.light {
    background-image: linear-gradient(225deg, #051223, #051121);
  }

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

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

  .block-left {
    flex-flow: column-reverse wrap;
    justify-content: center;
    align-items: center;
  }

  .form-inner {
    justify-content: flex-start;
    align-items: center;
  }

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

  .post-item {
    min-height: 200px;
  }

  .block-feature.problem {
    width: auto;
  }

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

  .solution-image {
    width: 60%;
  }

  .form-contact-wrapper {
    max-width: 100%;
  }

  .form-contact {
    place-items: stretch center;
  }

  .utility-page-content {
    width: 80%;
  }

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

  .values-image {
    max-height: 18.75rem;
  }

  .language {
    margin-top: 1.6rem;
    margin-right: 6rem;
  }

  .heading-copy {
    text-align: center;
    margin-bottom: 0;
  }

  .grid-2 {
    grid-template-columns: minmax(10rem, 1fr);
  }

  .text-block-7, .text-block-9 {
    width: auto;
  }

  .paragraph-13, .paragraph-20.heading-large, .heading-hero-2, .heading-9 {
    text-align: center;
  }

  .section-2 {
    padding: 6.25rem 1.88rem;
  }

  .paragraph-29.heading-large, .heading-10 {
    text-align: center;
  }

  .section-3 {
    padding: 6.25rem 1.88rem;
  }

  .paragraph-30.heading-large {
    text-align: center;
  }

  .section-3-copy {
    padding: 6.25rem 1.88rem;
  }

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

  .section-4 {
    padding: 6.25rem 1.88rem;
  }

  .paragraph-31.heading-large {
    text-align: center;
  }

  .form-contact-2 {
    place-items: stretch center;
  }

  .nav-link-2 {
    text-align: left;
    display: block;
  }

  .navbar-2 {
    padding: 1.56rem 1.88rem;
  }

  .nav-menu-2 {
    background-color: #05070b;
    background-image: none;
    border-radius: 15px;
    margin-top: 15px;
    margin-left: 30px;
    margin-right: 30px;
    padding: 15px 5px;
  }

  .menu-button-2 {
    background-color: var(--brand-br2);
    color: #fff;
    border-radius: 15px;
    justify-content: center;
    align-items: center;
    margin-top: .5rem;
    padding: 12px;
    font-size: 21px;
    line-height: 100%;
    transition: background-color .4s cubic-bezier(.25, .46, .45, .94), transform .4s cubic-bezier(.25, .46, .45, .94);
    display: flex;
  }

  .menu-button-2:hover {
    transform: scale(.94);
  }

  .menu-button-2.w--open {
    background-color: #ff793f;
  }

  .paragraph-32.heading-large, .heading-12, .paragraph-33.heading-large {
    text-align: center;
  }

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

  .heading-13, .paragraph-34.heading-large, .heading-15 {
    text-align: center;
  }

  .block-heading-3 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .paragraph-40.heading-large {
    text-align: center;
  }

  .button-outline-2 {
    margin-top: 0;
  }

  .image-6.amba-bg {
    min-width: 170%;
    max-width: 170%;
    margin-top: -20rem;
  }

  .amba-x-photo {
    margin-bottom: 7rem;
  }

  .image-8 {
    margin-top: 0;
    position: relative;
    top: -14rem;
  }

  .image-hero-2 {
    height: 64rem;
  }

  .image-10.mobile-x-photo {
    display: none;
  }

  .image-hero-3.mobile-photo1 {
    display: block;
  }
}

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

  h2 {
    font-size: 2.88rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4, h5 {
    font-size: 1.5rem;
  }

  h6 {
    font-size: 1.25rem;
  }

  .section-hero.header {
    padding-bottom: 90px;
  }

  .section {
    padding: 5.63rem 1.88rem;
  }

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

  .button-outline {
    margin-top: 0;
  }

  .navbar {
    padding-top: 0;
  }

  .logo {
    width: auto;
    height: 2.25rem;
  }

  .grid-button-nav {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .menu-button {
    -webkit-text-fill-color: inherit;
    background-color: #006cef80;
    background-clip: border-box;
  }

  .grid-footer {
    grid-column-gap: 30px;
    grid-row-gap: 80px;
    grid-template-columns: 2.4fr 1fr;
    grid-auto-flow: row;
  }

  .block-footer {
    justify-content: flex-start;
    align-items: center;
  }

  .paragraph {
    text-align: center;
  }

  .heading-hero {
    width: auto;
  }

  .figure-hero {
    height: 20.2rem;
  }

  .image-hero {
    width: 170%;
    max-width: 170%;
    margin-top: -13rem;
  }

  .heading {
    width: auto;
  }

  .grid-solution.home-grid, .grid-solution.home-grid.amba-grid {
    grid-template-columns: 1fr;
  }

  .block.block-a {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    display: grid;
  }

  .grid-stats {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-rows: auto auto;
  }

  .stats.light {
    background-image: linear-gradient(225deg, #051223, #051121);
  }

  .heading-stats, .text-stats {
    text-align: left;
  }

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

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

  .block-feature.problem {
    width: auto;
  }

  .utility-page-content {
    padding-left: 100px;
    padding-right: 100px;
  }

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

  .language {
    margin-top: 1.4rem;
  }

  .paragraph-19.ml-list, .paragraph-20 {
    text-align: center;
  }

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

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

  .section-3 {
    padding-top: 5.63rem;
    padding-bottom: 5.63rem;
  }

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

  .section-3-copy, .section-4 {
    padding-top: 5.63rem;
    padding-bottom: 5.63rem;
  }

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

  .menu-button-2 {
    opacity: 1;
    background-color: #005ccb80;
  }

  .paragraph-32, .paragraph-33, .paragraph-34, .paragraph-40 {
    text-align: center;
  }

  .button-outline-2 {
    margin-top: 0;
  }

  .image-6.amba-bg {
    margin-top: -14rem;
  }

  .amba-x-photo {
    display: none;
  }

  .image-8 {
    margin-top: 0;
    top: -11rem;
  }

  .image-hero-2 {
    width: 62rem;
    height: 48rem;
    margin-top: -20rem;
  }

  .image-10.mobile-x-photo {
    width: 70%;
    margin-bottom: 5rem;
    display: block;
  }

  .image-10.mobile-x-photo.mobile-x-photo2 {
    width: 63%;
  }

  .figure-hero-2 {
    height: 21rem;
    margin-top: 0;
    margin-bottom: 5rem;
  }

  .figure-hero-2.mobile-hero2 {
    margin-top: -.4rem;
  }

  .figure-hero-2.mobile-hero1 {
    width: auto;
    min-width: auto;
    max-width: none;
    display: flex;
  }

  .image-hero-3.mobile-x-photo4 {
    width: 60%;
    height: 24.4rem;
  }

  .image-hero-3.mobile-photo1 {
    width: 100%;
    height: 21rem;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.88rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.88rem;
  }

  h4, h5 {
    font-size: 1.31rem;
  }

  h6 {
    font-size: 1.13rem;
  }

  .section-hero {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .section-hero.header {
    padding-bottom: 80px;
  }

  .content {
    grid-column-gap: .94rem;
    grid-row-gap: .94rem;
    grid-template-rows: auto;
    grid-template-columns: minmax(200px, 1fr);
    grid-auto-columns: 1fr;
    place-items: center stretch;
    max-width: none;
    display: grid;
  }

  .content.single-page {
    margin-top: 5vh;
  }

  .subtitle {
    text-align: center;
  }

  .section {
    text-align: center;
    height: 7%;
    padding: 1.25rem 1.25rem 5rem;
    display: inline-block;
  }

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

  .grid-button {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .button-outline {
    text-align: center;
    margin-top: 0;
  }

  .navbar {
    padding: 0 1.25rem 1.13rem;
  }

  .logo {
    height: 100%;
  }

  .nav-button {
    display: none;
  }

  .paragraph.heading-large {
    width: auto;
    max-width: none;
    margin-top: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .paragraph.footer {
    width: auto;
  }

  .heading-hero {
    text-align: center;
    width: auto;
    max-width: 60rem;
    font-weight: 500;
  }

  .figure-hero {
    height: 5.9rem;
    margin-top: 5rem;
  }

  .figure-hero.header {
    margin-top: 0;
  }

  .image-hero {
    width: 170%;
    max-width: 170%;
    margin-top: -9rem;
  }

  .block-heading {
    display: flex;
  }

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

  .grid-solution {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    width: auto;
  }

  .icon-solution.home-icon.amba1 {
    width: 5rem;
    height: 5rem;
  }

  .block.block-a {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    display: flex;
  }

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

  .stats {
    text-align: left;
    background-image: linear-gradient(315deg, #05101f, #051121);
  }

  .stats.light {
    background-image: linear-gradient(320deg, var(--background-b3), #051121);
    text-align: left;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .stats.statsa {
    width: 100%;
  }

  .heading-stats, .text-stats {
    text-align: left;
  }

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

  .form-newsletter, .newsletter-input {
    width: 100%;
  }

  .newsletter-image {
    width: 13.75rem;
  }

  .block-feature {
    padding: 1.56rem;
  }

  .block-feature.problem {
    width: auto;
  }

  .grid-team, .grid-license {
    grid-template-columns: 1fr;
  }

  .utility-page-content {
    padding-left: 25px;
    padding-right: 25px;
  }

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

  .language {
    width: auto;
    margin-top: 1.5rem;
    margin-right: 3.5rem;
    scale: .8;
  }

  .paragraph-2, .paragraph-3, .paragraph-4, .paragraph-5, .paragraph-6, .paragraph-7 {
    width: auto;
  }

  .code-embed-3 {
    flex: 0 auto;
  }

  .heading-copy {
    margin-bottom: 0;
  }

  .heading-2, .heading-3, .heading-4, .heading-5, .heading-6, .heading-7, .heading-8 {
    width: auto;
  }

  .grid-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex: 0 auto;
    grid-template-rows: auto;
    grid-template-columns: minmax(auto, 1fr);
    grid-auto-columns: 1fr;
    display: grid;
  }

  .div-block-2, .div-block-3 {
    text-align: left;
  }

  .paragraph-13 {
    text-align: center;
    width: auto;
  }

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

  .paragraph-14 {
    color: var(--heading);
  }

  .text-block-19 {
    text-align: left;
    max-width: 17.1rem;
  }

  .text-block-19.mobile-list {
    text-align: center;
  }

  .text-block-20, .text-block-22 {
    text-align: left;
  }

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

  .content-2.single-page {
    margin-top: 5vh;
  }

  .section-2, .section-3, .section-3-copy, .section-4 {
    padding: 5rem 1.25rem;
  }

  .nav-button-2 {
    display: none;
  }

  .navbar-2 {
    padding: 1.13rem 1.25rem;
  }

  .logo-2 {
    height: 100%;
  }

  .image-5.desktop-image {
    display: none;
  }

  .mobile-image {
    display: block;
  }

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

  .content-3 {
    grid-column-gap: .94rem;
    grid-row-gap: .94rem;
    grid-template-rows: auto;
    grid-template-columns: minmax(200px, 1fr);
    grid-auto-columns: 1fr;
    place-items: center stretch;
    max-width: none;
    display: grid;
  }

  .block-heading-3 {
    display: flex;
  }

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

  .paragraph-40.heading-large {
    width: auto;
    max-width: none;
    margin-top: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .button-outline-2 {
    text-align: center;
    margin-top: 0;
  }

  .image-6.amba-bg {
    min-width: 170%;
    max-width: 170%;
    margin-top: -7rem;
  }

  .amba1-block-content {
    line-height: 150%;
  }

  .amba-x-photo {
    width: 131%;
    max-width: none;
    margin-bottom: 5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    display: none;
  }

  .image-8 {
    max-width: 170%;
    margin-top: 0;
    top: -8.5rem;
  }

  .image-hero-2 {
    width: 36rem;
    height: 26rem;
    margin-top: -15rem;
  }

  .image-10 {
    margin-bottom: 5rem;
  }

  .image-10.mobile-x-photo {
    vertical-align: baseline;
    display: block;
  }

  .image-10.mobile-x-photo.mobile-x-photo2 {
    width: 100%;
  }

  .figure-hero-2 {
    height: 13.75rem;
    margin-top: 2.5rem;
    margin-bottom: 5rem;
  }

  .image-hero-3.mobile-x-photo4, .image-hero-3.mobile-photo1 {
    width: 100%;
  }
}

#w-node-cf325cda-1867-441a-71d8-257fc385c378-b0c6ae2c, #w-node-_08be09b4-19f2-9e45-08e7-02a939e5eca0-b0c6ae2c, #w-node-fa03b048-ca65-939f-4cc0-a0b92df77cdf-b0c6ae2c, #w-node-f7ffb0f3-5aa8-991d-cda0-e14ebc1f93fe-b0c6ae2c, #w-node-d3839e18-1fcf-f571-ce15-1e054e26dec9-b0c6ae2c, #w-node-d3839e18-1fcf-f571-ce15-1e054e26decf-b0c6ae2c, #w-node-d3839e18-1fcf-f571-ce15-1e054e26ded5-b0c6ae2c, #w-node-_749465c6-3631-afb8-7e6f-5664e992d9b3-b0c6ae2c, #w-node-_749465c6-3631-afb8-7e6f-5664e992d9b9-b0c6ae2c, #w-node-_749465c6-3631-afb8-7e6f-5664e992d9bf-b0c6ae2c, #w-node-_749465c6-3631-afb8-7e6f-5664e992d9d8-b0c6ae2c, #w-node-_749465c6-3631-afb8-7e6f-5664e992d9de-b0c6ae2c, #w-node-_749465c6-3631-afb8-7e6f-5664e992d9e4-b0c6ae2c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-df14249d-f4d3-9d7b-5d4c-0865ce2d24ec-b0c6ae2c {
  grid-area: 1 / 3 / 2 / 6;
}

#w-node-_4af671fc-05a5-f29d-34a3-00c5690d5bdd-b0c6ae2c {
  grid-area: 2 / 1 / 3 / 4;
}

#w-node-_9593939c-61e5-ac57-b71e-9a48c311d19e-b0c6ae2c {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-_13fb483b-0ffc-4f98-707c-10d3ad39aaf9-b0c6ae2c {
  grid-area: 3 / 2 / 4 / 5;
}

#w-node-_6cff2e18-7d34-776f-cd09-57f9ab00a241-b0c6ae2c, #w-node-_6cff2e18-7d34-776f-cd09-57f9ab00a247-b0c6ae2c, #w-node-_6cff2e18-7d34-776f-cd09-57f9ab00a24d-b0c6ae2c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2605a53e-faff-69aa-eca0-e29b2a190bb2-b0c6ae2c {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
}

#w-node-_71292f2d-4b56-af1b-5c72-f77f6af3bf76-b0c6ae2c {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_6f85096b-6ce5-ad88-29b3-c3fc909291b2-b0c6ae2c {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_6f85096b-6ce5-ad88-29b3-c3fc909291c7-b0c6ae2c {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-b69969e8-3912-3567-a519-9e95f5238884-bf5a472f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8a6bda7e-a94c-da05-7f1f-b6de526c2c85-526c2c73 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_8a6bda7e-a94c-da05-7f1f-b6de526c2c87-526c2c73 {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-_96f78b1a-b849-8693-aa33-dd2e7e75ca11-7e75ca0c, #w-node-_96f78b1a-b849-8693-aa33-dd2e7e75ca1d-7e75ca0c, #w-node-b117f1f5-9628-47ba-341e-63c6011e5d6d-b0c6ae2f, #w-node-_2513cc27-9224-878f-028e-45c46f7d27b6-b0c6ae30, #w-node-_87433fa8-f34e-f905-69f3-d9ee470da6e0-b0c6ae31, #Message.w-node-_1fdfa0dc-c64a-0125-b1c4-d891a5b0482b-b0c6ae32, #w-node-e5ba6a6c-88a2-a1d3-d8f1-07213a770f76-b0c6ae32 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_410a22a1-e9ab-4099-d682-08c6b26fefd2-c4b7c3cd {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_410a22a1-e9ab-4099-d682-08c6b26fefef-c4b7c3cd {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-c74fc6d3-0b38-7785-ec56-8026f29bdd5f-c4b7c3cd, #w-node-cf325cda-1867-441a-71d8-257fc385c378-1f0849a8, #w-node-_08be09b4-19f2-9e45-08e7-02a939e5eca0-1f0849a8, #w-node-fa03b048-ca65-939f-4cc0-a0b92df77cdf-1f0849a8, #w-node-f7ffb0f3-5aa8-991d-cda0-e14ebc1f93fe-1f0849a8, #w-node-d3839e18-1fcf-f571-ce15-1e054e26dec9-1f0849a8, #w-node-d3839e18-1fcf-f571-ce15-1e054e26decf-1f0849a8, #w-node-d3839e18-1fcf-f571-ce15-1e054e26ded5-1f0849a8, #w-node-_749465c6-3631-afb8-7e6f-5664e992d9b3-1f0849a8, #w-node-_749465c6-3631-afb8-7e6f-5664e992d9b9-1f0849a8, #w-node-_749465c6-3631-afb8-7e6f-5664e992d9bf-1f0849a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_749465c6-3631-afb8-7e6f-5664e992d9d8-1f0849a8, #w-node-_0fd89df7-f6c7-c386-c25d-9bf35ddff739-1f0849a8, #w-node-_5c19e662-77eb-af29-103a-b5775323fb40-1f0849a8, #w-node-_8ad51db7-207c-8315-66b3-b7199981d820-1f0849a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: auto;
}

#w-node-c7f67b0a-cee3-ba18-2b81-aea69e8ae444-1f0849a8, #w-node-c7f67b0a-cee3-ba18-2b81-aea69e8ae44a-1f0849a8, #w-node-c7f67b0a-cee3-ba18-2b81-aea69e8ae450-1f0849a8, #w-node-c7f67b0a-cee3-ba18-2b81-aea69e8ae469-1f0849a8, #w-node-c7f67b0a-cee3-ba18-2b81-aea69e8ae46f-1f0849a8, #w-node-c7f67b0a-cee3-ba18-2b81-aea69e8ae475-1f0849a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-df14249d-f4d3-9d7b-5d4c-0865ce2d24ec-1f0849a8 {
  grid-area: 1 / 3 / 2 / 6;
}

#w-node-_4af671fc-05a5-f29d-34a3-00c5690d5bdd-1f0849a8 {
  grid-area: 2 / 1 / 3 / 4;
}

#w-node-_9593939c-61e5-ac57-b71e-9a48c311d19e-1f0849a8 {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-_13fb483b-0ffc-4f98-707c-10d3ad39aaf9-1f0849a8 {
  grid-area: 3 / 2 / 4 / 5;
}

@media screen and (max-width: 991px) {
  #w-node-fa03b048-ca65-939f-4cc0-a0b92df77cdf-b0c6ae2c, #w-node-d3839e18-1fcf-f571-ce15-1e054e26decf-b0c6ae2c, #w-node-_749465c6-3631-afb8-7e6f-5664e992d9b9-b0c6ae2c, #w-node-_749465c6-3631-afb8-7e6f-5664e992d9de-b0c6ae2c {
    grid-column: span 1 / span 1;
  }

  #w-node-df14249d-f4d3-9d7b-5d4c-0865ce2d24ec-b0c6ae2c {
    grid-column: 1 / 4;
  }

  #w-node-_4af671fc-05a5-f29d-34a3-00c5690d5bdd-b0c6ae2c {
    grid-area: 1 / 4 / 2 / 7;
  }

  #w-node-_9593939c-61e5-ac57-b71e-9a48c311d19e-b0c6ae2c {
    grid-column: 1 / 4;
  }

  #w-node-_13fb483b-0ffc-4f98-707c-10d3ad39aaf9-b0c6ae2c {
    grid-area: 2 / 4 / 3 / 7;
  }

  #w-node-_6cff2e18-7d34-776f-cd09-57f9ab00a247-b0c6ae2c {
    grid-column: span 1 / span 1;
  }

  #w-node-_71292f2d-4b56-af1b-5c72-f77f6af3bf76-b0c6ae2c {
    grid-column: 1 / 4;
  }

  #w-node-_6f85096b-6ce5-ad88-29b3-c3fc909291b2-b0c6ae2c {
    grid-column: span 6 / span 6;
  }

  #w-node-_6f85096b-6ce5-ad88-29b3-c3fc909291c7-b0c6ae2c {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }

  #w-node-_50975589-45d2-5bc9-aa00-4323c0afe87e-b0c6ae2c, #w-node-_46484ae9-7154-d66c-f268-21778212d75b-b0c6ae2f, #w-node-_8643f37a-e0c4-51fd-4870-f20f27c44c24-b0c6ae30, #w-node-_9d66fbc1-4ea8-2b24-ed0a-eb4e9081f9ac-b0c6ae30 {
    order: 9999;
  }

  #w-node-_410a22a1-e9ab-4099-d682-08c6b26fefd2-c4b7c3cd {
    grid-column: span 6 / span 6;
  }

  #w-node-_410a22a1-e9ab-4099-d682-08c6b26fefef-c4b7c3cd {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }

  #w-node-fa03b048-ca65-939f-4cc0-a0b92df77cdf-1f0849a8, #w-node-d3839e18-1fcf-f571-ce15-1e054e26decf-1f0849a8, #w-node-_749465c6-3631-afb8-7e6f-5664e992d9b9-1f0849a8, #w-node-c7f67b0a-cee3-ba18-2b81-aea69e8ae44a-1f0849a8, #w-node-c7f67b0a-cee3-ba18-2b81-aea69e8ae46f-1f0849a8 {
    grid-column: span 1 / span 1;
  }

  #w-node-df14249d-f4d3-9d7b-5d4c-0865ce2d24ec-1f0849a8 {
    grid-column: 1 / 4;
  }

  #w-node-_4af671fc-05a5-f29d-34a3-00c5690d5bdd-1f0849a8 {
    grid-area: 1 / 4 / 2 / 7;
  }

  #w-node-_9593939c-61e5-ac57-b71e-9a48c311d19e-1f0849a8 {
    grid-column: 1 / 4;
  }

  #w-node-_13fb483b-0ffc-4f98-707c-10d3ad39aaf9-1f0849a8 {
    grid-area: 2 / 4 / 3 / 7;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_71292f2d-4b56-af1b-5c72-f77f6af3bf76-b0c6ae2c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b69969e8-3912-3567-a519-9e95f5238884-bf5a472f, #w-node-_2fb95c94-e2a9-a649-e072-d790329326c1-bf5a472f, #w-node-b36084a5-9420-3e4a-28ab-9e680ecce39f-bf5a472f, #w-node-dd9d9737-22fc-3fcf-86ec-3e9edc85411d-bf5a472f {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_8a6bda7e-a94c-da05-7f1f-b6de526c2c85-526c2c73, #w-node-_8a6bda7e-a94c-da05-7f1f-b6de526c2c87-526c2c73 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-df14249d-f4d3-9d7b-5d4c-0865ce2d24ec-b0c6ae2c, #w-node-_4af671fc-05a5-f29d-34a3-00c5690d5bdd-b0c6ae2c, #w-node-_9593939c-61e5-ac57-b71e-9a48c311d19e-b0c6ae2c, #w-node-_13fb483b-0ffc-4f98-707c-10d3ad39aaf9-b0c6ae2c, #w-node-_71292f2d-4b56-af1b-5c72-f77f6af3bf76-b0c6ae2c {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-cf1cbf6d-75a8-3a10-94c9-3d3752836fba-b0c6ae2c {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: auto;
  }

  #w-node-cf1cbf6d-75a8-3a10-94c9-3d3752836fbb-b0c6ae2c, #w-node-_8a6bda7e-a94c-da05-7f1f-b6de526c2c85-526c2c73, #w-node-_8a6bda7e-a94c-da05-7f1f-b6de526c2c87-526c2c73, #w-node-e6721f83-4df4-9fdc-4b62-992c592a54de-b0c6ae31 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-df14249d-f4d3-9d7b-5d4c-0865ce2d24ec-1f0849a8, #w-node-_4af671fc-05a5-f29d-34a3-00c5690d5bdd-1f0849a8, #w-node-_9593939c-61e5-ac57-b71e-9a48c311d19e-1f0849a8, #w-node-_13fb483b-0ffc-4f98-707c-10d3ad39aaf9-1f0849a8 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }
}


</pre></body></html>