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

@font-face {
  font-family: Basis Grotesque;
  src: url('../fonts/BasisGrotesquePro-Italic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: auto;
}

@font-face {
  font-family: Basis Grotesque Mono;
  src: url('../fonts/BasisGrotesqueProMono-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

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

:root {
  --dark-slate-blue: #5d5d88;
  --oxford-blue: #082437;
  --palatinate-blue: #2626ff;
  --light-slate-grey: #84929b;
  --platinum-grey: #e5e5e4;
  --splashed-white: #fefefe;
  --anti-flash-white: #ececf1;
  --medium-turquoise: #58e9dd;
  --black: #041623;
  --silver: #b5bdc3;
  --midnight-blue: #072031;
}

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

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

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

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

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

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

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

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

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: bold;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Basis Grotesque, sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 50px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

h4 {
  color: var(--dark-slate-blue);
  letter-spacing: 1px;
  text-transform: capitalize;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Basis Grotesque, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

h5 {
  color: var(--oxford-blue);
  letter-spacing: 1px;
  text-transform: capitalize;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Basis Grotesque, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
}

p {
  color: var(--oxford-blue);
  text-align: justify;
  column-count: 1;
  margin-bottom: 10px;
  font-family: Basis Grotesque Mono, sans-serif;
  line-height: 28px;
}

a {
  color: var(--palatinate-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

li {
  color: var(--oxford-blue);
  font-family: Basis Grotesque Mono, sans-serif;
  list-style-type: square;
}

strong {
  font-weight: bold;
}

em {
  color: var(--light-slate-grey);
  font-style: italic;
}

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

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

.utility-page-wrap {
  background-image: linear-gradient(to bottom, var(--oxford-blue), var(--oxford-blue));
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

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

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

.section {
  background-image: linear-gradient(to bottom, var(--oxford-blue), var(--oxford-blue));
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.section._404-section {
  background-image: linear-gradient(to bottom, var(--platinum-grey), var(--platinum-grey));
  justify-content: center;
  display: flex;
}

.container {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.text-block-2 {
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 28px;
  line-height: 56px;
  text-decoration: none;
}

.link-block {
  color: #5d5d88;
  text-decoration: none;
}

.link-block:hover {
  color: var(--splashed-white);
  text-decoration: none;
}

.footer {
  z-index: 6;
  height: 50vh;
  position: relative;
}

.hero-intro-system {
  font-family: Basis Grotesque Mono, sans-serif;
}

.hero-intro-system.break-word {
  color: #5d5d88;
  text-align: left;
  letter-spacing: 3px;
  max-width: 100vw;
  font-size: 17px;
  line-height: 34px;
  position: static;
  overflow: hidden;
}

.hero-intro-system.break-word.error-system {
  color: var(--splashed-white);
}

.b58-paragraph {
  color: var(--oxford-blue);
  font-family: Basis Grotesque, sans-serif;
  font-size: 21px;
  line-height: 42px;
}

.b58-paragraph.b58-paragraph-17 {
  background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
  text-align: justify;
  flex: 1;
  align-self: center;
  font-size: 17px;
  line-height: 34px;
}

.b58-paragraph.b58-paragraph-17.b58-paragraph-encoded {
  background-image: linear-gradient(to bottom, var(--oxford-blue), var(--oxford-blue));
  color: var(--splashed-white);
}

.b58-paragraph.b58-paragraph-17.b58-paragraph-encoded.break-word {
  background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
  opacity: 0;
  color: var(--platinum-grey);
  align-self: start;
  font-family: Basis Grotesque Mono, sans-serif;
}

.container-7 {
  z-index: 2;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: block;
  position: relative;
}

.grid-4 {
  grid-column-gap: 0px;
  grid-row-gap: 35px;
  grid-template-rows: auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  align-content: center;
  width: 100%;
}

.grid-6 {
  flex: 1;
  grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  align-content: stretch;
  place-items: start;
  padding-bottom: 105px;
}

.b58-process-title {
  color: var(--oxford-blue);
  text-align: center;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 21px;
  line-height: 42px;
}

.b58-process-number-large {
  color: var(--anti-flash-white);
  align-self: center;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 210px;
  line-height: 210px;
}

.b58-process-number-large.b58-process-number-large-purple {
  color: #5d5d88;
  align-self: center;
}

.b58-process-number-large.b58-process-number-large-green {
  color: var(--medium-turquoise);
  align-self: center;
}

.b58-process-number-large.b58-process-number-large-primary {
  color: var(--black);
  align-self: center;
}

.b58-process-number-large.b58-process-number-large-blue {
  color: var(--palatinate-blue);
  align-self: center;
}

.b58-process-line {
  background-image: linear-gradient(#5d5d88, #5d5d88);
  align-self: center;
  width: 1px;
  height: 280px;
}

.b58-process-line._58-process-line-short {
  align-self: center;
  height: 140px;
  margin-left: -1px;
}

.b58-process-line._58-process-line-short._58-process-line-last {
  z-index: 0;
  background-image: linear-gradient(to bottom, var(--palatinate-blue), var(--palatinate-blue));
  align-self: center;
  height: 20vh;
  margin-bottom: 105px;
  position: relative;
}

.b58-process-line._58-process-line-short._58-process-line-last._58-process-line-down {
  background-image: linear-gradient(to bottom, var(--dark-slate-blue), var(--dark-slate-blue));
  align-self: center;
}

.b58-process-line._58-process-line-short._58-process-line-xs {
  align-self: center;
  height: 70px;
}

.b58-process-line._58-process-line-short._58-process-line-xs._58-process-line-main {
  align-self: center;
  height: 20vh;
}

.b58-process-name {
  color: var(--dark-slate-blue);
  align-self: start;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 70px;
  line-height: 70px;
}

.b58-process-name.b58-process-name-purple {
  color: var(--dark-slate-blue);
  text-align: right;
  align-self: start;
}

.b58-process-name.b58-process-name-green {
  color: var(--medium-turquoise);
  align-self: start;
}

.b58-process-name.b58-process-name-primary {
  color: var(--oxford-blue);
  text-align: right;
  align-self: start;
}

.b58-process-name.b58-process-name-blue {
  color: var(--palatinate-blue);
  align-self: start;
}

.container-10 {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
}

.grid-8 {
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
  min-height: 300px;
}

.b58-footer-disclaimer {
  color: #41416b;
  text-align: justify;
  margin-top: 50px;
  font-family: Basis Grotesque, sans-serif;
  font-size: 10px;
  line-height: 20px;
}

.b58-footer-disclaimer.no-pointer.no-select {
  color: #2d4555;
}

.b58-footer-text {
  color: var(--dark-slate-blue);
  font-family: Basis Grotesque, sans-serif;
  line-height: 28px;
}

.b58-footer-text.b58-footer-section-title {
  color: var(--splashed-white);
  text-transform: uppercase;
  display: block;
}

.b58-footer-text.b58-footer-link:hover {
  color: var(--medium-turquoise);
}

.b58-footer-link-section, .link {
  display: block;
}

.link.b58-footer-text {
  text-decoration: none;
}

.link.b58-footer-text.b58-footer-link {
  color: #526673;
  display: inline-block;
}

.link.b58-footer-text.b58-footer-link:hover {
  color: #58e9dd;
  text-decoration: none;
}

.link.b58-footer-text.b58-footer-link.b58-modal-link {
  color: var(--silver);
}

.link.b58-footer-text.b58-footer-link.b58-modal-link:hover {
  color: var(--palatinate-blue);
}

.body-3 {
  justify-content: center;
  margin-left: 0;
  display: flex;
}

._58wrap {
  z-index: 100;
  width: 100%;
  max-width: 1440px;
  position: static;
}

._58-section {
  z-index: 10;
  flex-direction: row;
  height: 100vh;
  display: flex;
  position: static;
}

._58-section._58-section-grey {
  z-index: 0;
  background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
  align-items: flex-start;
  height: auto;
  margin-left: 1px;
  padding-top: 104px;
  position: relative;
}

._58-section._58-section-process {
  z-index: 2;
  justify-content: center;
  align-items: flex-start;
  height: auto;
  margin-bottom: 10vh;
  padding-top: 10vh;
  position: relative;
}

._58-section._58-section-footer {
  align-items: flex-end;
  height: auto;
}

._58-section._58-section-footer.section-blue {
  background-image: linear-gradient(to bottom, var(--oxford-blue), var(--oxford-blue));
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 140px;
  padding-bottom: 140px;
  position: relative;
}

._58-hero-text {
  color: var(--oxford-blue);
  margin-bottom: 105px;
  font-family: Basis Grotesque, sans-serif;
  font-size: 20px;
  line-height: 40px;
  position: absolute;
}

.grid-13 {
  z-index: 2;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 1;
  grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto;
  place-content: stretch;
  place-items: stretch stretch;
  position: static;
}

._58-content-wrap {
  z-index: 1;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 100%;
  max-width: 940px;
  display: flex;
  position: relative;
}

._58-system-wrap {
  z-index: 3;
  align-self: center;
  max-width: 1200px;
  position: relative;
}

.system-background {
  z-index: 1;
  background-image: linear-gradient(#082437, #082437);
  align-self: stretch;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}

._58-navbar {
  z-index: 12;
  background-color: #fefefe00;
  background-image: linear-gradient(to bottom, var(--oxford-blue), var(--oxford-blue));
  flex-direction: row;
  justify-content: center;
  height: 64px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.container-16 {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.image-2 {
  height: 30px;
  margin-top: 17px;
}

._58-nav-link {
  color: var(--platinum-grey);
  height: 64px;
  font-family: Basis Grotesque, sans-serif;
  line-height: 24px;
  text-decoration: none;
}

._58-nav-link:hover {
  color: var(--medium-turquoise);
  text-decoration: underline;
}

._58-nav-link.no-select {
  color: #b5bdc3;
  cursor: default;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 17px;
  line-height: 34px;
  transition: all .1s;
}

._58-nav-link.no-select:hover {
  border-bottom: 6px solid var(--palatinate-blue);
  color: var(--palatinate-blue);
  text-decoration: none;
}

._58-nav-link.no-select.w--current {
  color: #b5bdc3;
}

._58-nav-link.no-select.w--current:hover {
  color: var(--palatinate-blue);
  border-bottom-width: 6px;
  margin-top: 0;
  margin-bottom: 0;
}

._58-nav-link.no-select.nav-link-contact {
  background-color: var(--palatinate-blue);
}

._58-nav-link.no-select.nav-link-contact:hover {
  background-color: #2326eb;
}

._58-nav-link.no-select.coming-soon, ._58-nav-link.no-select._58-nav-mobile {
  display: none;
}

.div-block-14 {
  z-index: 10;
  background-image: linear-gradient(to bottom, var(--oxford-blue), var(--oxford-blue));
  width: 100%;
  max-width: 1440px;
  display: block;
  position: relative;
}

.div-block-15 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-image: linear-gradient(to bottom, var(--oxford-blue), var(--oxford-blue));
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  min-height: 500px;
  display: flex;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.div-block-15.footer-background {
  background-image: linear-gradient(to bottom, var(--oxford-blue), var(--oxford-blue));
  width: 200vw;
  position: absolute;
  left: -50vw;
}

._58-scroll-indicator-container {
  z-index: 1;
  display: flex;
  position: fixed;
}

.div-block-16 {
  background-image: linear-gradient(to bottom, var(--palatinate-blue), var(--palatinate-blue));
  width: 1px;
  height: 40px;
  margin-bottom: -10px;
  margin-left: -1px;
  position: fixed;
  bottom: 0;
  left: 50vw;
  right: 0;
}

.div-block-17 {
  background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
  width: 200vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: -50vw;
}

.b58-section {
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  padding: 10vh 10px;
  display: flex;
}

.b58-section.section-tet {
  background-image: linear-gradient(#e9121280, #e9121280);
}

.b58-section.b58-section-footer {
  z-index: 2;
  background-image: linear-gradient(to bottom, var(--oxford-blue), var(--oxford-blue));
  min-height: 20vh;
  padding: 105px 25px;
  position: relative;
}

.b58-section.b58-section-hero {
  background-image: linear-gradient(to bottom, var(--oxford-blue), var(--oxford-blue));
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-height: 100vh;
  padding-top: 164px;
  padding-bottom: 64px;
  display: flex;
  overflow: hidden;
}

.b58-section.b58-section-hero.b58-company-hero {
  height: auto;
}

.b58-section.b58-section-hero.b58-company-hero.about-section {
  min-height: 50vh;
  padding-left: 30px;
  padding-right: 30px;
}

.b58-section.b58-section-intro {
  background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 105px;
  display: none;
}

.b58-section.b58-section-process {
  justify-content: center;
  align-items: center;
  display: flex;
}

.b58-section.b58-section-cta {
  justify-content: center;
  align-items: flex-start;
  min-height: 50vh;
  display: flex;
}

.b58-section.b58-section-grey {
  background-color: var(--platinum-grey);
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: auto;
  padding-top: 0;
  padding-bottom: 0;
}

.b58-section.b58-section-grey.b58-section-mobile {
  display: none;
}

.b58-section.b58-section-blue {
  background-color: var(--palatinate-blue);
  min-height: auto;
  padding-top: 50px;
  padding-bottom: 75px;
}

.b58-section.b58-section-blue.section-blue-about {
  background-color: var(--oxford-blue);
  padding-bottom: 50px;
}

.b58-section.b58-section-blue.section-blue-about.engineering {
  padding: 75px 25px;
}

.b58-section.b58-service-section-mobile {
  display: none;
}

.b58-section.b58-onliner-section {
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 50vh;
  display: block;
}

.b58-section.b58-onliner-section.intro {
  margin-top: 70px;
  padding: 140px 25px 70px;
}

.b58-section.b58-onliner-section.intro.about-drive {
  min-height: auto;
}

.b58-section.b58-offering-overview {
  background-color: var(--platinum-grey);
  height: 60vh;
}

.b58-section.onboarding-section {
  height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
}

.b58-section.b58-legal-section {
  color: var(--oxford-blue);
  padding-top: 50px;
  overflow: visible;
}

.b58-section.remove-section {
  display: none;
}

.b58-section.b58-insights-hero {
  background-color: var(--oxford-blue);
  min-height: 20vh;
}

.b58-navbar-logo {
  text-align: left;
  height: 30px;
  margin-top: 17px;
  display: block;
}

.b58-navbar-logo.no-select {
  margin-top: 0;
  line-height: 50px;
}

.b58-navbar-logo.no-select.logo-dark {
  z-index: 1;
  position: absolute;
}

.navbar {
  background-image: linear-gradient(to bottom, var(--oxford-blue), var(--oxford-blue));
}

.navbar.b58-navbar {
  z-index: 1000;
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--platinum-grey);
  background-color: var(--splashed-white);
  background-image: none;
  flex-direction: row;
  width: 100%;
  max-width: 1800px;
  height: 100px;
  padding-left: 25px;
  padding-right: 25px;
  display: block;
  position: fixed;
}

.navbar.b58-navbar.hidden-navbar {
  background-color: var(--splashed-white);
  position: fixed;
}

.navbar.b58-navbar.navbar-static {
  border-bottom-style: solid;
  max-width: 100%;
  position: absolute;
}

.container-17 {
  height: 64px;
}

.b58-navbar-container {
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  padding-bottom: 1px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
}

.b58-navbar-container.main-navbar {
  align-items: flex-end;
  height: 100px;
}

.b58-navbar-container.legal-navbar-container {
  align-items: flex-end;
  padding-bottom: 40px;
}

.div-block-18 {
  background-image: linear-gradient(#bae41080, #bae41080);
}

.b58-hero-container {
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.grid-14 {
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

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

.b58-hero-grid.homepage {
  grid-template-columns: 1fr 1fr;
  height: 100vh;
}

.b58-intro-container {
  flex: 1;
  height: 175vh;
  position: relative;
}

.b58-intro-grid {
  grid-column-gap: 34px;
  grid-row-gap: 34px;
  grid-template: ". . . . . ."
                 ". . . . . ."
                 ". . . . . ."
                 ". . . . . ."
                 ". . . . . ."
                 ". . . . . ."
                 / 1fr 1fr 1fr 1fr 1fr 1fr;
  align-content: start;
  place-items: start stretch;
  position: absolute;
  top: 0;
  left: 0;
}

.b58-intro-grid.sticky {
  height: 500vh;
  top: 50vh;
}

.b58-process-container {
  flex: 1;
  height: 500vh;
  position: relative;
}

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

.b58-scroll-indicator {
  background-image: linear-gradient(#2626ff, #2626ff);
  width: 1px;
  height: 40px;
  margin-bottom: -10px;
  margin-left: -1px;
  position: fixed;
  bottom: 0;
  left: 50vw;
  right: 0;
}

.b58-process-title-2 {
  color: #082437;
  text-align: center;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 21px;
  line-height: 42px;
}

.b58-process-title-2.no-select {
  color: var(--dark-slate-blue);
}

.b58-process-title-2.no-select.intro-title-small {
  color: var(--dark-slate-blue);
  align-self: end;
  font-size: 14px;
  line-height: 21px;
}

.b58-process-title-2.no-select.intro-title-small.left-align {
  text-align: left;
  font-weight: 400;
}

.b58-process-number-large-2 {
  color: #ececf1;
  align-self: center;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 210px;
  line-height: 210px;
}

.b58-process-number-large-2.b58-process-number-large-purple {
  background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
  color: #5d5d88;
  align-self: center;
  font-size: 210px;
  line-height: 210px;
  position: relative;
}

.b58-process-number-large-2.b58-process-number-large-green {
  background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
  color: #58e9dd;
  align-self: center;
  position: relative;
}

.b58-process-number-large-2.b58-process-number-large-primary {
  background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
  color: #041623;
  align-self: center;
  position: relative;
}

.b58-process-number-large-2.b58-process-number-large-blue {
  background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
  color: #2626ff;
  align-self: center;
  position: relative;
}

.b58-paragraph-2 {
  color: #082437;
  font-family: Basis Grotesque, sans-serif;
  font-size: 21px;
  line-height: 42px;
}

.b58-paragraph-2.b58-paragraph-17 {
  text-align: left;
  flex: 1;
  align-self: center;
  font-size: 17px;
  line-height: 34px;
}

.b58-paragraph-2.b58-paragraph-17.paragraph-research, .b58-paragraph-2.b58-paragraph-17.paragraph-analyze, .b58-paragraph-2.b58-paragraph-17.paragraph-develop {
  background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
  align-self: center;
  position: relative;
}

.b58-paragraph-2.b58-paragraph-17.paragraph-develop.paragraph-cover {
  background-image: linear-gradient(to bottom, var(--medium-turquoise), var(--medium-turquoise));
  color: var(--platinum-grey);
  align-self: center;
  font-family: Basis Grotesque Mono, sans-serif;
}

.b58-paragraph-2.b58-paragraph-17.paragraph-develop.paragraph-cover.break-word {
  background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
  align-self: center;
}

.b58-paragraph-2.b58-paragraph-17.paragraph-deploy {
  background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
  align-self: center;
  position: relative;
}

.b58-process-name-2 {
  color: #5d5d88;
  align-self: start;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 70px;
  line-height: 70px;
}

.b58-process-name-2.b58-process-name-purple {
  color: #5d5d88;
  text-align: right;
  cursor: default;
  align-self: start;
  font-size: 35px;
  line-height: 35px;
}

.b58-process-name-2.b58-process-name-purple.b58-process-name-encoded {
  background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
  color: var(--platinum-grey);
  align-self: start;
  font-size: 35px;
  line-height: 35px;
}

.b58-process-name-2.b58-process-name-green {
  color: #58e9dd;
  align-self: start;
  font-size: 35px;
  line-height: 35px;
}

.b58-process-name-2.b58-process-name-green.b58-process-name-encoded {
  background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
  color: var(--platinum-grey);
  align-self: start;
}

.b58-process-name-2.b58-process-name-primary {
  color: #082437;
  text-align: right;
  align-self: start;
  font-size: 35px;
  line-height: 35px;
}

.b58-process-name-2.b58-process-name-primary.b58-process-name-encoded {
  background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
  color: var(--platinum-grey);
  align-self: start;
  font-size: 35px;
  line-height: 35px;
}

.b58-process-name-2.b58-process-name-blue {
  color: #2626ff;
  align-self: start;
  font-size: 35px;
  line-height: 35px;
}

.b58-process-name-2.b58-process-name-blue.b58-process-name-encoded {
  background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
  color: var(--platinum-grey);
  align-self: start;
}

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

.b58-footer-text-2 {
  color: #5d5d88;
  font-family: Basis Grotesque, sans-serif;
  line-height: 28px;
}

.b58-footer-text-2.b58-footer-section-title {
  color: #fefefe;
  text-transform: uppercase;
  display: block;
}

.b58-footer-text-2.b58-footer-section-title.no-pointer.no-select {
  color: #2d4555;
  font-family: Basis Grotesque Mono, sans-serif;
}

.b58-footer-text-2.b58-footer-section-title.no-pointer.no-select._58-modal-link-title {
  color: var(--palatinate-blue);
}

.b58-footer-text-2.b58-footer-text-copyright {
  color: #41416b;
}

.b58-footer-text-2.b58-footer-text-copyright.no-pointer.no-select {
  color: #2d4555;
  font-family: Basis Grotesque Mono, sans-serif;
}

.div-block-19 {
  position: relative;
}

._58-intro-heading-container {
  align-self: auto;
  align-items: flex-start;
  max-width: 600px;
  height: 20vh;
  display: block;
  position: relative;
}

.text-block-3 {
  position: static;
}

.text-block-3._58-hero-text-encoded {
  color: var(--platinum-grey);
  font-family: Basis Grotesque Mono, sans-serif;
}

.text-block-3._58-hero-text-encoded.break-word {
  opacity: 0;
}

.sticky {
  align-items: start;
  top: 20vh;
}

.sticky.sticky-process {
  grid-column-gap: 16px;
  grid-template: ". . . . . . . . . . . ."
                 ". . . . . . . . . . . ."
                 ". . . . . . . . . . . ."
                 ". . . . . . . . . . . ."
                 ". . . . . . . . . . . ."
                 ". . . . . . . . . . . ."
                 / 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  top: 10vh;
}

.sticky.sticky-process.sticky-cta {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas: ". . . . . ."
                       ". . . . . ."
                       ". . . . . ."
                       ". . . . . ."
                       ". . . . . ."
                       ". . . . . .";
  align-items: start;
  position: relative;
  top: 20vh;
}

.sticky.sticky-intro {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.sticky.sticky-contact {
  height: 200vh;
  top: 10vh;
}

.intro-oneliner-sticky {
  position: absolute;
}

.div-block-20 {
  background-image: linear-gradient(to bottom, var(--medium-turquoise), var(--medium-turquoise));
  position: absolute;
  inset: 0;
}

.system-cover {
  background-image: linear-gradient(to bottom, var(--oxford-blue), var(--oxford-blue));
  position: absolute;
  inset: 0;
}

.div-block-21 {
  z-index: 2;
  background-image: linear-gradient(to bottom, var(--medium-turquoise), var(--medium-turquoise));
  height: 100%;
  position: relative;
}

.container-cover {
  background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
  width: 100%;
  height: 100%;
  position: relative;
}

.div-block-22, .text-block-4 {
  position: absolute;
  top: 0;
  left: 0;
}

.system-text-highlight {
  color: var(--splashed-white);
  letter-spacing: 3px;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 17px;
  line-height: 34px;
  position: absolute;
  top: 0;
  left: 0;
}

.system-text-highlight.system-cursor {
  background-image: linear-gradient(to bottom, var(--palatinate-blue), var(--palatinate-blue));
  inset: auto 0 0 auto;
}

.system-text-highlight.system-base58 {
  background-image: linear-gradient(to bottom, var(--oxford-blue), var(--oxford-blue));
  inset: auto 0 0 auto;
}

.system-text-highlight.system-base58.no-pointer {
  background-image: none;
}

.system-text-highlight.system-base58.no-pointer.no-select {
  background-image: linear-gradient(to bottom, var(--platinum-grey), var(--platinum-grey));
}

.system-text-highlight.system-base58.no-pointer.no-select._404-system-home-link {
  color: var(--platinum-grey);
  background-image: linear-gradient(#0000, #0000);
  bottom: 0;
  left: 0;
  right: auto;
}

.system-text-highlight.system-base58.no-pointer.no-select._404-home-system {
  letter-spacing: 2.5px;
  cursor: default;
  background-image: none;
}

.system-text-highlight.system-base58.no-pointer.no-select.error-systttem-item {
  background-image: none;
  inset: 0 auto auto 0;
}

.system-text-highlight.no-pointer.no-select {
  cursor: default;
}

.system-text-highlight.no-pointer.no-select._404-error-main {
  top: 0;
  left: 0;
}

.system-text-highlight.no-pointer.no-select._404-error-main.error-code {
  color: #fd3b45;
}

.text-span {
  background-image: linear-gradient(to bottom, var(--palatinate-blue), var(--palatinate-blue));
}

.with-background {
  background-image: linear-gradient(to bottom, var(--oxford-blue), var(--oxford-blue));
}

._58-nav-link-indicator {
  z-index: 5;
  background-image: linear-gradient(to bottom, var(--medium-turquoise), var(--medium-turquoise));
  width: 1px;
  height: 1px;
  margin-top: 48px;
  position: absolute;
  top: 0;
  right: 0;
}

.container-18 {
  background-image: linear-gradient(#0000, #0000);
  justify-content: center;
  align-items: flex-start;
  min-height: 50vh;
  display: flex;
}

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

._58-cta-title {
  color: var(--platinum-grey);
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 105px;
  line-height: 105px;
}

._58-cta-text {
  color: var(--oxford-blue);
  align-self: end;
  font-family: Basis Grotesque, sans-serif;
  font-size: 21px;
  line-height: 42px;
}

._58-cta-text._58-cta-text-encoded {
  color: var(--platinum-grey);
  align-self: center;
  font-family: Basis Grotesque Mono, sans-serif;
}

.cta-btn {
  background-image: linear-gradient(to bottom, var(--palatinate-blue), var(--palatinate-blue));
  text-align: center;
  font-family: Basis Grotesque Mono, sans-serif;
}

.div-block-23 {
  height: 64px;
}

._58-cta-btn {
  border: 1px solid var(--palatinate-blue);
  cursor: pointer;
  flex-direction: row;
  justify-content: flex-end;
  align-self: end;
  height: 64px;
  display: flex;
  position: relative;
}

._58-cta-btn-icon {
  background-image: linear-gradient(to bottom, var(--palatinate-blue), var(--palatinate-blue));
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 63px;
  display: flex;
  position: absolute;
}

.text-block-5 {
  color: var(--palatinate-blue);
  text-align: left;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex: 1;
  padding-left: 10%;
  padding-right: 10%;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 14px;
  line-height: 64px;
}

.image-3, .image-4 {
  position: absolute;
}

.dynamic-number__wrap {
  transform-origin: 50%;
  flex: none;
  height: 5vh;
  position: relative;
  top: 0;
  left: 0;
  overflow: hidden;
}

.wrap-block__inner-fw {
  flex: 0 auto;
  align-items: stretch;
  width: 100%;
  height: 20vh;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.wrap-block__inner-fw.inner-fw__bottom {
  flex-direction: column;
}

.inner-fw__text-block {
  color: #fff;
  letter-spacing: .5px;
  font-size: 22px;
  line-height: 30px;
}

.step-block__text-number {
  color: var(--platinum-grey);
  font-family: Basis Grotesque Mono, sans-serif;
  font-weight: 400;
  line-height: 28px;
}

.div-block-2 {
  z-index: 2;
  background-color: #191919;
  width: 20px;
  height: 5vh;
  position: absolute;
  top: 0;
  left: 0;
}

.wrap {
  width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.wrap._w-custom.w60-60 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.step-block__text-description {
  color: #d1d1d1;
  letter-spacing: .25px;
  font-weight: 300;
}

.step-block__text-description.text-description-2 {
  background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
  opacity: 1;
  color: var(--oxford-blue);
  letter-spacing: auto;
  font-family: Basis Grotesque, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 34px;
  position: absolute;
}

.step-block__text-description.text-description-1 {
  background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
  color: var(--oxford-blue);
  letter-spacing: auto;
  font-family: Basis Grotesque, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 34px;
  position: absolute;
}

.step-block__text-description.text-description-3, .step-block__text-description.text-description-4 {
  background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
  opacity: 1;
  color: var(--oxford-blue);
  letter-spacing: auto;
  font-family: Basis Grotesque, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 34px;
  position: absolute;
}

.step-block__text-description.step-block__background {
  background-image: linear-gradient(to bottom, var(--palatinate-blue), var(--palatinate-blue));
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 17px;
  line-height: 34px;
}

.step-block__text-description.step-block__background.break-word {
  background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
  color: var(--platinum-grey);
  max-width: 100%;
  font-weight: 400;
  position: absolute;
}

.step-block__progress-bar {
  background-color: var(--platinum-grey);
  width: 100%;
  height: 1px;
  margin-top: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.dynamic-text__wrap {
  flex: none;
  height: 5vh;
  display: block;
  position: relative;
  overflow: hidden;
}

.step-block {
  flex-direction: column;
  align-items: flex-start;
  width: 25%;
  height: 100%;
  margin-right: 20px;
  display: flex;
}

.step-block.step-block__4 {
  width: 15%;
  margin-right: 0%;
}

.step-block.step-block__1 {
  width: 49%;
  margin-right: 2%;
}

.step-block.step-block__3, .step-block.step-block__2 {
  width: 15%;
  margin-right: 2%;
}

.dynamic-section__wrap {
  z-index: 2;
  transform-origin: 0% 100% 0px;
  flex-flow: column;
  flex: none;
  justify-content: flex-start;
  align-items: stretch;
  display: block;
  position: absolute;
  top: -76px;
  left: -5px;
  transform: rotate(90deg);
}

.dynamic-content__block {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 50%;
  display: flex;
  position: relative;
  top: 0;
  bottom: 0;
  right: 0;
}

.dynamic-text {
  color: #fff;
  text-align: left;
  letter-spacing: 2px;
  font-size: 30px;
  line-height: 5vh;
}

.dynamic-text.dt-number {
  color: #ffffff80;
  font-family: Inconsolata, monospace;
  font-size: 36px;
  line-height: 5vh;
}

.dynamic-text.dt-number.placeholder {
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
}

.wrap__sticky {
  z-index: 1;
  position: static;
  inset: 0;
  overflow: hidden;
}

.wrap__sticky.sticky {
  background-color: #d1d1d1;
  height: 100vh;
  position: relative;
}

.wrap__sticky.sticky.sticky-5 {
  background-color: #191919;
  background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
}

.dynamic-number__inner-wrap {
  height: 20vh;
  transform: translate(0);
}

.dynamic-number__inner-wrap.dynamic-number__track {
  transform: none;
}

.section-sticky {
  width: 100vw;
  position: relative;
  overflow: visible;
}

.step-block__progress-bar-inner {
  background-color: #fff;
  width: 100%;
  height: 1px;
  transform: translate(-100%);
}

.step-block__progress-bar-inner.progress-bar__1 {
  background-color: var(--dark-slate-blue);
}

.step-block__progress-bar-inner.progress-bar__3 {
  background-color: var(--oxford-blue);
}

.step-block__progress-bar-inner.progress-bar__2 {
  background-color: var(--medium-turquoise);
}

.step-block__progress-bar-inner.progress-bar__4 {
  background-color: var(--palatinate-blue);
}

.stepper-wrap {
  height: 100%;
  padding-top: 20px;
  padding-bottom: 40px;
  display: flex;
}

.section-sticky__wrap {
  z-index: 2;
  width: 100%;
  height: 300vh;
  display: block;
  position: relative;
}

.section-sticky__wrap.section-sticky__wrap-progress {
  z-index: 0;
  height: 500vh;
  overflow: visible;
}

.step-block__text-title {
  color: #fff;
  margin-bottom: 10px;
  font-size: 20px;
}

.step-block__text-title.text-title_2 {
  color: var(--medium-turquoise);
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 21px;
  line-height: 21px;
}

.step-block__text-title.text-title_4 {
  color: var(--palatinate-blue);
  font-size: 21px;
  line-height: 21px;
}

.step-block__text-title.text-title_3 {
  color: var(--oxford-blue);
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 21px;
  line-height: 21px;
}

.step-block__text-title.text-title_1 {
  opacity: 1;
  color: var(--dark-slate-blue);
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 21px;
  line-height: 21px;
}

.section-triggers {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  inset: 0 0 0;
}

.section-triggers.section-triggers__scroll-down {
  width: 1px;
  display: flex;
  position: absolute;
  inset: 0 auto 0 0;
}

.section-trigger {
  height: 1px;
  position: relative;
}

.section-trigger.section-trigger__2 {
  z-index: 999;
  background-color: #0000;
  width: 1px;
  height: 1px;
  position: absolute;
  top: 40%;
}

.section-trigger.section-trigger__1 {
  z-index: 999;
  background-color: #0000;
  width: 1px;
  height: 1px;
  position: absolute;
  top: 20%;
}

.section-trigger.section-trigger__4 {
  z-index: 999;
  background-color: #0000;
  width: 1px;
  position: absolute;
  top: 80%;
}

.section-trigger.section-trigger__3 {
  z-index: 999;
  background-color: #0000;
  width: 1px;
  height: 1px;
  position: absolute;
  top: 60%;
}

.body-4 {
  background-color: #f7f7f7;
  max-height: 1000vh;
}

.body-4.onboardiing-boody {
  background-color: var(--splashed-white);
  font-family: Basis Grotesque Mono, sans-serif;
}

.container-19 {
  padding-top: 20vh;
  padding-left: 5%;
  padding-right: 5%;
}

.text-block-9 {
  color: #fefefe;
  text-align: center;
  text-transform: none;
  cursor: pointer;
  border: 1px #2626ff;
  align-self: end;
  padding-left: 1px;
  padding-right: 1px;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 21px;
  line-height: 25px;
  text-decoration: underline;
  display: block;
  position: static;
}

.text-block-9:hover {
  color: #fefefe;
  background-image: linear-gradient(#2626ff, #2626ff);
  text-decoration: none;
}

.container-20 {
  background-image: linear-gradient(#0000, #0000);
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  display: flex;
  position: static;
}

._58-cta-btn-2 {
  text-align: center;
  cursor: pointer;
  border: 1px solid #2626ff;
  flex-direction: row;
  justify-content: flex-end;
  align-self: end;
  height: 64px;
  display: flex;
  position: relative;
}

._58-cta-btn-2._58-btn-2 {
  color: #2626ff;
  border-style: none;
  align-self: end;
  align-items: center;
  height: 42px;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 21px;
  line-height: 28px;
}

._58-cta-title-2 {
  color: #2626ff;
  align-self: end;
  font-family: Basis Grotesque, sans-serif;
  font-size: 100px;
  font-weight: 500;
  line-height: 105px;
}

._58-cta-text-2 {
  color: #fefefe;
  align-self: end;
  font-family: Basis Grotesque, sans-serif;
  font-size: 21px;
  line-height: 42px;
}

.grid-18 {
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

._58-modal-wrapper {
  z-index: 58;
  background-image: linear-gradient(#e5e5e4, #e5e5e4);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

._58-modal-wrapper._404-paage {
  display: flex;
}

._58-modal-wrapper._58-modal-privacy {
  background-image: linear-gradient(to bottom, var(--dark-slate-blue), var(--dark-slate-blue));
  display: flex;
}

._58-modal-wrapper.legal-modal {
  background-image: linear-gradient(to bottom, var(--platinum-grey), var(--platinum-grey));
  line-height: 21px;
  display: flex;
}

._58-modal-wrapper._58-modal-legal, ._58-modal-wrapper._58-modal-legal._58-modal-legal-2 {
  display: none;
}

._58-modal-container {
  flex: 1;
  padding-top: 91px;
  padding-bottom: 91px;
}

._58-modal-container.legal-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

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

._58-modal-title {
  color: var(--oxford-blue);
  font-family: Basis Grotesque, sans-serif;
  font-size: 75px;
  font-weight: 500;
  line-height: 75px;
}

.div-block-24 {
  background-image: linear-gradient(to bottom, var(--oxford-blue), var(--oxford-blue));
}

.div-block-25 {
  background-image: linear-gradient(to bottom, var(--oxford-blue), var(--oxford-blue));
  padding: 35px 70px;
  display: flex;
}

.contact-sub-title {
  color: var(--dark-slate-blue);
  text-align: left;
  padding-left: 0;
  padding-right: 70px;
  font-family: Basis Grotesque, sans-serif;
  font-size: 20px;
  line-height: 40px;
}

.grid-20 {
  flex: 1;
  grid-template-rows: auto auto auto auto auto;
  align-items: stretch;
}

.form {
  flex: 1;
  width: 100%;
  display: block;
}

.form-block {
  flex-direction: column;
  flex: 1;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.grid-21 {
  grid-template-rows: auto auto auto auto auto auto auto auto;
  place-content: space-around center;
  place-items: start;
  width: 100%;
  height: 100%;
}

.textarea, .text-field {
  background-image: linear-gradient(to bottom, var(--oxford-blue), var(--oxford-blue));
}

.b58-input {
  border-style: none none solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--dark-slate-blue);
  background-image: linear-gradient(to bottom, var(--oxford-blue), var(--oxford-blue));
  color: var(--splashed-white);
  align-self: center;
  font-family: Basis Grotesque, sans-serif;
  font-size: 14px;
  line-height: 21px;
}

.b58-input:focus {
  border-bottom-color: var(--palatinate-blue);
  background-image: linear-gradient(to bottom, #04162340, #04162340), linear-gradient(to bottom, var(--oxford-blue), var(--oxford-blue));
  align-self: center;
}

.b58-input::placeholder {
  color: var(--dark-slate-blue);
  align-self: center;
  font-family: Basis Grotesque Mono, sans-serif;
}

._58-form-subtitle {
  color: var(--splashed-white);
  font-family: Basis Grotesque, sans-serif;
  font-size: 21px;
  line-height: 42px;
}

.submit-button {
  background-image: linear-gradient(to bottom, var(--palatinate-blue), var(--palatinate-blue));
  font-family: Basis Grotesque Mono, sans-serif;
}

.submit-button._58-form-btn {
  padding: 2px;
}

.submit-button.button-other {
  background-image: none;
}

.button-other {
  z-index: 5;
  box-shadow: inset 0 0 0 1px var(--dark-slate-blue);
  color: var(--splashed-white);
  cursor: pointer;
  background-color: #0000;
  align-self: end;
  height: 54px;
  padding: 0 26px;
  font-size: 17px;
  line-height: 21px;
  text-decoration: none;
  display: none;
  position: relative;
}

.button-other._58-btn-other-submit {
  justify-content: center;
  align-self: end;
  align-items: center;
  width: 218px;
  height: 54px;
  display: flex;
}

.button-other.btn-offering-overview {
  box-shadow: none;
  width: 144px;
  padding: 0;
  font-size: 12px;
  line-height: 48px;
}

.line-bottom {
  background-color: var(--palatinate-blue);
  color: var(--splashed-white);
  width: 100%;
  height: 1px;
  margin-left: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.line-left {
  background-color: var(--palatinate-blue);
  width: 1px;
  height: 100%;
  margin-top: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.line-top {
  background-color: var(--palatinate-blue);
  width: 100%;
  height: 1px;
  margin-left: auto;
  font-size: 12px;
  line-height: 388px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.line-right {
  background-color: var(--palatinate-blue);
  width: 1px;
  height: 100%;
  margin-top: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.overlay-button {
  background-color: var(--palatinate-blue);
  height: 0%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.text-wrapper {
  position: relative;
  overflow: hidden;
}

.button-text {
  z-index: 1;
  color: var(--splashed-white);
  text-align: center;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 17px;
  line-height: 54px;
  position: relative;
}

.button-text.btn-submit {
  color: var(--oxford-blue);
  position: absolute;
}

.submit-button-2 {
  z-index: 59;
  background-color: #0000;
  flex: 0 auto;
  width: 100%;
  height: 54px;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 17px;
  line-height: 21px;
  position: absolute;
}

.link-block-2 {
  position: absolute;
  top: 0;
  right: 0;
}

.modal-close-btn {
  background-image: linear-gradient(to bottom, var(--platinum-grey), var(--platinum-grey));
  color: var(--dark-slate-blue);
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 35px;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 28px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.modal-close-btn:hover {
  color: var(--oxford-blue);
  background-color: #0000;
  background-image: none;
}

.text-block-10 {
  color: var(--dark-slate-blue);
  flex: 1;
  align-self: center;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 21px;
  line-height: 21px;
  text-decoration: none;
  position: relative;
}

.text-span-2 {
  opacity: 1;
  color: #08243733;
  font-size: 17px;
}

.div-block-26 {
  background-color: var(--medium-turquoise);
  position: absolute;
  inset: 0;
}

.modal-close-background {
  background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
  flex-direction: column;
  flex: 1;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
}

.image-5 {
  text-align: left;
  height: 30px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  position: relative;
  top: 0;
  left: 0;
}

.container-21 {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

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

._58-404-problem-title {
  color: var(--palatinate-blue);
  font-size: 91px;
  line-height: 91px;
}

._404-text-title {
  color: var(--splashed-white);
  font-family: Basis Grotesque Mono, sans-serif;
}

.system-text-error-background {
  background-image: linear-gradient(to bottom, var(--oxford-blue), var(--oxford-blue));
}

.system-text-error.system-text-error-background.errorr-code {
  color: #fd3b45;
}

._404-home-bbtn {
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.link-block-3 {
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
}

.link-block-3._404-blockk {
  justify-content: center;
}

.text-span-3 {
  background-color: #0000;
}

.text-span-4 {
  background-color: var(--platinum-grey);
}

.text-span-5 {
  background-color: #0000;
}

.text-span-6 {
  background-color: var(--platinum-grey);
}

.div-block-27 {
  align-items: center;
  height: 90px;
  padding-left: 45px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.grid-22 {
  grid-row-gap: 56px;
  background-color: #0000;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-22.legal-grid {
  grid-template-columns: .25fr 1fr 1fr;
  grid-template-areas: ".";
  max-width: 50vw;
}

.text-block-11 {
  color: var(--palatinate-blue);
  align-self: center;
  font-family: Basis Grotesque Mono, sans-serif;
  line-height: 28px;
}

.text-block-12 {
  display: block;
}

.legal-modal-last-modified {
  color: var(--dark-slate-blue);
  align-self: center;
  height: 28px;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  display: block;
}

.heading {
  color: var(--palatinate-blue);
  align-self: center;
  font-size: 42px;
  line-height: 84px;
  text-decoration: none;
}

.legal-modal-heading {
  color: var(--dark-slate-blue);
  align-self: end;
  font-family: Basis Grotesque, sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 56px;
}

.rich-text-block {
  text-align: left;
  background-color: #0000;
  max-height: 50vh;
  padding-left: 10px;
  padding-right: 10px;
  font-family: Basis Grotesque, sans-serif;
  text-decoration: none;
  overflow: scroll;
  box-shadow: 0 0 0 1px #0000;
}

.text-block-13 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.div-block-28 {
  display: flex;
  position: relative;
}

.text-block-14 {
  padding-top: 21px;
  position: absolute;
  bottom: -21px;
  right: 0;
}

.div-block-30 {
  display: flex;
}

.heading-2 {
  color: var(--oxford-blue);
  font-family: Basis Grotesque, sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 60px;
}

.heading-2.sjakf {
  color: var(--palatinate-blue);
  font-size: 80px;
  line-height: 80px;
}

.text-block-15 {
  color: var(--palatinate-blue);
  align-self: end;
  font-family: Basis Grotesque, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

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

.container-22 {
  align-items: center;
  height: 100vh;
  display: flex;
}

.text-span-7 {
  color: var(--oxford-blue);
}

.b58-paragraph-highlight {
  font-weight: 500;
}

.b58-paragraph-highlight:hover {
  color: var(--palatinate-blue);
}

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

.site-wrapper {
  background-color: var(--splashed-white);
  background-image: none;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  box-shadow: 1px 1px 20px #08243733;
}

.grid-25 {
  grid-column-gap: 72px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto;
  align-items: center;
}

.big-text {
  color: var(--palatinate-blue);
  align-self: end;
  font-family: Basis Grotesque, sans-serif;
  font-size: 100px;
  font-weight: 500;
  line-height: 100px;
}

.heading-3 {
  color: var(--oxford-blue);
  font-family: Basis Grotesque, sans-serif;
  font-size: 72px;
  font-weight: 500;
  line-height: 72px;
}

.heading-3.partner-infrra-ttitle {
  color: var(--oxford-blue);
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 50px;
  line-height: 75px;
}

.paragraph, .paragraph-2, .paragraph-3 {
  text-align: justify;
}

.paragraph-4 {
  color: var(--oxford-blue);
  text-align: justify;
  font-family: Basis Grotesque, sans-serif;
  line-height: 21px;
}

.small-text-header {
  color: var(--dark-slate-blue);
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
}

.small-text-header.dark {
  color: var(--medium-turquoise);
  text-transform: uppercase;
}

.base58-paragraph {
  color: var(--oxford-blue);
  text-align: justify;
  justify-content: center;
  align-self: start;
  align-items: center;
  margin-bottom: 0;
  font-family: Basis Grotesque, sans-serif;
  font-size: 16px;
  line-height: 32px;
  display: block;
}

.base58-paragraph.tab-content-text {
  font-size: 20px;
  line-height: 40px;
}

.base58-paragraph.tab-content-paragraph {
  flex: 1;
  max-width: 564px;
  margin-bottom: 50px;
  padding-top: 50px;
  display: inline-block;
}

.base58-paragraph.base58-paragraph-white {
  color: var(--splashed-white);
}

.text-block-16 {
  color: var(--oxford-blue);
  padding-left: 0;
  font-family: Basis Grotesque, sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 75px;
  display: flex;
}

.text-block-16.hide {
  display: block;
}

.text-block-16.home-intro-header {
  padding-bottom: 70px;
}

.text-block-16.home-intro-header.about-intro {
  color: var(--palatinate-blue);
}

.text-block-16.home-intro-header.about-intro.engineering {
  padding-bottom: 0;
}

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

.grid-26.onboarding-grid {
  flex: 1;
  grid-template-rows: auto;
  align-items: start;
  padding-top: 200px;
  padding-left: 10px;
  padding-right: 10px;
}

.grid-26.onboarding-grid.legal-grid {
  grid-template-rows: auto;
}

.grid-26.home-intro {
  grid-column-gap: 35px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  align-content: center;
  align-items: start;
}

.grid-26.legal-grid-desktop {
  grid-template-rows: auto;
}

.grid-27 {
  grid-column-gap: 72px;
  grid-row-gap: 16px;
  grid-template: "."
                 "."
                 "."
                 "."
                 / 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  display: grid;
}

.grid-28 {
  background-color: var(--platinum-grey);
  grid-template-rows: auto auto auto;
  padding: 30px 30px 15px;
  transition: all .2s;
}

.grid-28.team-grid {
  align-content: space-between;
  align-self: stretch;
  padding: 0;
}

.grid-29 {
  background-color: var(--palatinate-blue);
  grid-template-rows: auto auto auto;
  padding: 30px 30px 15px;
}

.heading-4 {
  width: 50%;
}

.text-block-17 {
  color: var(--dark-slate-blue);
  padding-left: 0;
  font-family: Basis Grotesque, sans-serif;
  font-size: 30px;
  line-height: 24px;
}

.text-block-17.showcase-title-whiite {
  color: var(--splashed-white);
  font-weight: 400;
}

.text-block-18 {
  color: var(--oxford-blue);
  text-align: left;
  font-family: Basis Grotesque, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.container-23, .container-24, .container-25 {
  flex: 1;
}

.tab-title {
  text-align: center;
  flex: 1;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 20px;
}

.tab-active.w--current {
  background-color: var(--splashed-white);
  color: var(--palatinate-blue);
  font-family: Basis Grotesque, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}

.tab-inactive {
  color: var(--dark-slate-blue);
  font-family: Basis Grotesque, sans-serif;
  font-size: 24px;
  line-height: 36px;
}

.tab-inactive.tab-active {
  text-align: left;
  cursor: pointer;
  background-color: #0000;
  flex: 1;
  align-items: center;
  display: flex;
}

.tab-inactive.tab-active:hover {
  background-color: #e2e2e1;
}

.tab-inactive.tab-active.w--current {
  background-color: var(--dark-slate-blue);
  color: var(--splashed-white);
  font-weight: 400;
  display: flex;
}

.tab-inactive.tab-active.tab-active-special.w--current {
  background-color: var(--palatinate-blue);
  color: var(--splashed-white);
}

.tabs-menu {
  justify-content: space-between;
  max-width: 50%;
  display: flex;
}

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

.grid-30 {
  grid-column-gap: 72px;
  grid-template-rows: auto auto auto auto auto;
}

.text-block-19 {
  color: var(--dark-slate-blue);
  font-family: Basis Grotesque, sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 50px;
}

.text-block-19.special-text-grey {
  align-self: center;
  margin-bottom: 0;
  padding-top: 50px;
  padding-bottom: 50px;
  font-size: 100px;
  line-height: 100px;
}

.text-block-19.special-text-grey.special-text-blue {
  color: var(--platinum-grey);
  text-align: left;
  align-self: end;
  margin-bottom: 0;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 14px;
  line-height: 28px;
  transition: all .2s;
  display: block;
  position: relative;
}

.text-block-19.special-text-grey.special-text-blue:hover {
  color: var(--dark-slate-blue);
  align-self: end;
}

.text-block-19.special-text-grey.special-text-blue.break-word {
  align-self: end;
  max-width: 100px;
}

.text-block-19.special-text-grey.special-text-blue.no-select {
  color: var(--oxford-blue);
  align-self: end;
}

.text-block-19.special-text-grey.special-text-blue.no-select:hover {
  color: var(--platinum-grey);
  align-self: end;
}

.text-block-19.special-text-grey.special-text-blue.no-select.explenation {
  color: #e5e5e480;
  align-self: end;
  padding-bottom: 0;
}

.container-26 {
  flex: 1;
}

.grid-31 {
  grid-template-rows: auto auto auto auto auto;
  align-content: stretch;
  position: relative;
}

.grid-31.culture {
  grid-template-rows: auto auto auto auto auto;
  align-content: center;
}

.grid-31.culture.engineering {
  grid-template-columns: 1fr 1fr 1fr;
}

.intro-about {
  color: var(--splashed-white);
  text-align: justify;
  font-family: Basis Grotesque, sans-serif;
  font-size: 24px;
  line-height: 48px;
}

.intro-about.engineering {
  color: var(--silver);
  text-align: left;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 20px;
  line-height: 40px;
}

.intro-about-link {
  color: var(--platinum-grey);
  font-family: Basis Grotesque, sans-serif;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: all .2s;
}

.intro-about-link:hover {
  color: var(--medium-turquoise);
  text-decoration: underline;
}

.image-6 {
  opacity: .53;
}

.text-block-20 {
  display: inline;
}

.image-7 {
  opacity: 1;
  flex: 0 auto;
  align-self: flex-start;
  max-width: 50%;
  padding-top: 0;
  display: block;
}

.collection-item, .collection-item-2 {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-8 {
  max-width: 50%;
}

.collection-item-3 {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-9 {
  max-width: 50%;
}

.collection-item-4 {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-10 {
  align-self: center;
  max-width: 50%;
  max-height: none;
}

.link-2 {
  color: var(--splashed-white);
  text-decoration: none;
}

.text-span-8 {
  font-weight: 500;
}

.collection-list-wrapper {
  max-width: none;
}

.error-message {
  background-color: #0000;
  align-self: stretch;
  padding: 0;
  font-family: Basis Grotesque Mono, sans-serif;
}

.text-block-21 {
  color: #fd3b45;
}

.success-message {
  color: var(--medium-turquoise);
  background-color: #0000;
  padding-left: 0;
  padding-right: 0;
  font-family: Basis Grotesque Mono, sans-serif;
}

.link-3 {
  color: var(--splashed-white);
  text-decoration: none;
}

.text-block-22 {
  color: var(--splashed-white);
  align-self: center;
  padding-top: 50px;
  padding-bottom: 50px;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 200%;
  font-weight: 400;
  line-height: 200%;
}

.link-4 {
  color: var(--oxford-blue);
  font-weight: 500;
  text-decoration: none;
}

.grid-32 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: space-between center;
  align-items: stretch;
  height: 100%;
  display: grid;
}

.team-name {
  color: var(--palatinate-blue);
  padding-left: 30px;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 32px;
  line-height: 48px;
}

.rich-text-block-2 {
  color: var(--dark-slate-blue);
  text-align: justify;
  font-family: Basis Grotesque, sans-serif;
  font-size: 16px;
  line-height: 34px;
}

.rich-text-block-2.team-text {
  padding-left: 30px;
  padding-right: 30px;
}

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

.social-link-block {
  align-self: end;
  height: 50px;
}

.github-link {
  background-image: url('../images/gh.svg');
  background-position: 50%;
  background-size: cover;
  width: 50px;
  height: 50px;
  display: inline-block;
}

.github-link:hover {
  background-image: url('../images/gh-active.svg');
  background-size: cover;
}

.twitter-liink {
  background-image: url('../images/tw.svg');
  background-position: 50%;
  background-size: cover;
  width: 50px;
  height: 50px;
  display: inline-block;
}

.twitter-liink:hover {
  background-image: url('../images/tw-active.svg');
  background-size: cover;
}

.link-block-4 {
  width: 72px;
  height: 72px;
}

.link-block-4.linkedin {
  background-image: url('../images/in.svg');
  background-position: 50%;
  background-size: cover;
  width: 50px;
  height: 50px;
}

.link-block-4.linkedin:hover {
  background-image: url('../images/in-active.svg');
  background-size: cover;
}

.team-text {
  color: var(--dark-slate-blue);
  text-align: justify;
  padding-left: 30px;
  padding-right: 30px;
  font-family: Basis Grotesque, sans-serif;
  font-size: 16px;
  line-height: 32px;
}

.div-block-31 {
  width: 100%;
  height: 40px;
}

.grid-34 {
  grid-row-gap: 32px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  align-self: center;
}

.service-provider-logo {
  opacity: .15;
  align-self: center;
  max-height: 40px;
}

.service-provider-logo:hover {
  opacity: .15;
  align-self: center;
}

.text-block-23 {
  color: var(--dark-slate-blue);
  text-align: left;
  align-self: end;
  font-family: Basis Grotesque Mono, sans-serif;
}

.collection-list {
  height: 100%;
  display: inline-block;
}

.collection-item-5 {
  height: 100%;
}

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

.b58-offering-overview-title {
  color: var(--splashed-white);
  font-family: Basis Grotesque, sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 50px;
}

.b58-offering-overview-content {
  color: var(--oxford-blue);
  text-align: left;
  cursor: default;
  padding-top: 50px;
  padding-bottom: 50px;
  font-family: Basis Grotesque, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}

.b58-offering-overview-button {
  text-align: center;
  cursor: pointer;
  width: 140px;
  height: 40px;
  padding: 0;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 12px;
  line-height: 40px;
  overflow: visible;
}

.b58-offering-overview-button.b58-button-blue {
  background-color: var(--palatinate-blue);
  color: var(--splashed-white);
}

.b58-offering-overview-button.b58-button-dark {
  background-color: var(--oxford-blue);
  color: var(--splashed-white);
}

.b58-offering-overview-button.b58-button-light {
  background-color: var(--splashed-white);
  color: var(--palatinate-blue);
}

.div-block-32 {
  padding: 0 133px 0 0;
}

.div-block-33 {
  padding: 0 67px 0 66px;
}

.div-block-34 {
  padding-left: 133px;
  padding-right: 0;
}

.container-28 {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding-left: 163px;
  padding-right: 163px;
  display: flex;
}

.container-28.onboarding-container {
  align-self: auto;
  height: auto;
}

.container-28.b58-legal-container {
  padding-left: 163px;
  padding-right: 163px;
}

.container-28.onliner-container {
  padding-left: 0;
  padding-right: 0;
}

.container-28.cta-container {
  padding-left: 10px;
  padding-right: 10px;
}

.brand {
  flex: 0 auto;
  padding-bottom: 20px;
}

.brand.w--current {
  padding-bottom: 20px;
}

.brand.onboarding, .brand.legal-logo {
  padding-bottom: 0;
}

.div-block-35 {
  background-color: #dd0f0f;
  width: 10px;
  height: 10px;
}

.offering-intro-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 1;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  place-content: center;
  align-self: stretch;
  justify-items: stretch;
}

.offering-intro-title {
  color: var(--oxford-blue);
  font-family: Basis Grotesque, sans-serif;
  font-size: 140px;
  font-weight: 500;
  line-height: 100px;
}

.offering-intro-body {
  color: var(--dark-slate-blue);
  text-align: left;
  margin-bottom: 10px;
  padding-left: 0;
  padding-right: 10px;
  font-family: Basis Grotesque, sans-serif;
  font-size: 15px;
  line-height: 32px;
}

.offering-intro-body.home-inroo {
  padding-bottom: 70px;
}

.offering-intro-body.about-intro-text {
  color: var(--platinum-grey);
  text-align: left;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 20px;
  line-height: 40px;
}

.offering-intro-link {
  color: var(--oxford-blue);
  text-align: left;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 17px;
  text-decoration: underline;
  display: block;
}

.offering-intro-link:hover {
  color: var(--palatinate-blue);
  text-align: left;
  text-decoration: none;
  display: block;
  position: static;
}

.button-wrapper {
  display: inline-block;
}

.button {
  color: #292929;
  align-items: center;
  padding: 10px 10px 10px 15px;
  font-size: 22px;
  font-weight: 600;
  line-height: 25px;
  text-decoration: none;
  transition: color .25s ease-in-out;
  display: flex;
  position: relative;
}

.button:hover {
  color: #fff;
}

.button-text-2 {
  z-index: 1;
  margin-right: 10px;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 17px;
  position: relative;
}

.arrow-hor-line {
  background-color: #292929;
  width: 30px;
  height: 3px;
  position: absolute;
  bottom: 45%;
  right: 0;
}

.arrow-top-line, .arrow-bottom-line {
  background-color: #292929;
  width: 15px;
  height: 3px;
  position: absolute;
  top: 0;
  right: 0;
}

.b58-nav-content-wrapper {
  z-index: 5;
  border-top: 0px none var(--platinum-grey);
  border-bottom: 6px none var(--palatinate-blue);
  background-color: var(--palatinate-blue);
  background-image: linear-gradient(to bottom, var(--platinum-grey), var(--platinum-grey));
  flex-flow: row;
  flex: 1;
  max-height: 252px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  inset: 100px 0% auto;
  overflow: hidden;
}

.b58-nav-content-container {
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-self: auto;
  height: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: none;
}

.b58-nav-content-container._1, .b58-nav-content-container._2, .b58-nav-content-container.x {
  display: none;
}

.b58-nav-content-col-1 {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  background-color: var(--platinum-grey);
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1200px;
  padding-top: 20px;
  padding-bottom: 50px;
  display: grid;
}

.b58-nav-content-col-2 {
  width: 50%;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.b58-nav-activity-highlight-items {
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.b58-nav-activity-highlight-title {
  border-bottom: 2px none var(--splashed-white);
  color: var(--silver);
  cursor: default;
  padding-left: 10px;
  font-family: Basis Grotesque, sans-serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 68px;
}

.b58-nav-overlay {
  z-index: 101;
  opacity: 0;
  background-color: #020d16;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: fixed;
  inset: 0%;
}

.b58-nav-content-item {
  cursor: pointer;
  padding: 0 10px;
  text-decoration: none;
}

.b58-nav-content-item:hover {
  border-right: 3px none var(--splashed-white);
  color: var(--palatinate-blue);
  background-color: #fefefe40;
}

.b58-nav-content-item.coming-soon {
  display: block;
}

.b58-nav-content-item-title {
  color: var(--oxford-blue);
  font-family: Basis Grotesque, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
}

.text-block-24 {
  color: var(--dark-slate-blue);
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Basis Grotesque, sans-serif;
  font-size: 15px;
  line-height: 30px;
}

.b58-nav-content-link, .b58-nav-content-link:hover {
  text-decoration: none;
}

.b58-nav-content-link.coming-soon-hide {
  display: none;
}

.b58-nav-placeholder {
  flex: 1;
  justify-content: space-between;
  display: flex;
}

.text-block-25 {
  text-align: center;
  line-height: 100vh;
  position: absolute;
  inset: 0%;
}

.text-block-25.loading-text {
  z-index: -100;
  color: var(--platinum-grey);
  line-height: 450px;
}

.html-embed {
  background-color: var(--splashed-white);
  margin-left: 10px;
  margin-right: 10px;
  display: block;
}

.text-block-26 {
  padding-bottom: 0;
}

.text-block-26.onboarding-title {
  color: var(--oxford-blue);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 50px;
  font-family: Basis Grotesque, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 27px;
  display: flex;
}

.b58-legal-content {
  text-align: justify;
  column-count: 1;
  padding-left: 12px;
  padding-right: 12px;
  line-height: 28px;
}

.b58-legal-content.b58-requirements {
  text-align: left;
}

.text-block-27 {
  color: var(--palatinate-blue);
  font-family: Basis Grotesque, sans-serif;
  font-weight: 400;
  display: inline-block;
}

.text-block-28 {
  color: var(--silver);
  padding-right: 12px;
  font-family: Basis Grotesque, sans-serif;
  display: inline-block;
}

.div-block-36 {
  padding-top: 50px;
  padding-left: 12px;
}

.collection-item-6 {
  text-align: left;
}

.link-5 {
  float: none;
  color: var(--dark-slate-blue);
  flex-direction: row;
  line-height: 64px;
  text-decoration: none;
  display: inline-block;
  position: static;
  right: 0;
}

.link-5.onboarding-support-link {
  background-color: var(--platinum-grey);
  color: var(--palatinate-blue);
  flex: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 16px;
  line-height: 64px;
  position: fixed;
  inset: auto 0% 0% auto;
}

.link-5.onboarding-support-link:hover {
  color: var(--palatinate-blue);
  text-decoration: underline;
}

.grid-38 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: stretch;
  width: 100%;
  display: grid;
}

.form-heading {
  color: var(--palatinate-blue);
  font-family: Basis Grotesque, sans-serif;
  font-size: 70px;
  font-weight: 500;
  line-height: 70px;
}

.b58-form-text {
  color: var(--splashed-white);
  font-family: Basis Grotesque, sans-serif;
}

.b58-form-text.b58-form-input {
  background-color: var(--splashed-white);
  border: 1px #020d16;
}

.b58-form-label {
  color: var(--oxford-blue);
  font-family: Basis Grotesque, sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 21px;
}

.checkbox-label {
  color: var(--dark-slate-blue);
}

.form-block-2 {
  padding-top: 15px;
}

.divider-block {
  border-left: 1px solid #fff3;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 100px;
  display: flex;
}

.navigation-item {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

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

.brand-logo {
  color: #fff;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-left: 25px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
}

.first-line {
  background-color: #fff;
  border-radius: 20px;
  width: 100%;
  height: 2px;
  position: absolute;
  overflow: hidden;
}

.menu-text {
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-left: 15px;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.navigation-wrapper {
  z-index: 9998;
  background-color: var(--oxford-blue);
  border-bottom: 1px solid #fff3;
  justify-content: space-between;
  display: none;
  position: absolute;
  inset: 0% 0% auto;
}

.text-block {
  background-color: #ff5252;
  padding: 10px 13px 10px 15px;
}

.hamburger-wrapper {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 100%;
  display: flex;
  position: relative;
}

.follow-flex {
  align-items: center;
  margin-right: 15px;
  display: flex;
}

.follow-text {
  color: #919197;
  font-size: 15px;
}

.follow-line {
  background-color: #afafb6;
  width: 20px;
  height: 1px;
  margin-left: 15px;
}

.social-icon {
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 15px;
  display: flex;
}

.social-icon.no-margin {
  margin-right: 0;
}

.navigation-link-wrapper {
  opacity: 0;
  justify-content: center;
  display: flex;
}

.menu-wrapper {
  z-index: 9997;
  perspective: 50%;
  transform: ;
  transform-origin: 50% 0;
  background-color: #0000001a;
  height: auto;
  position: absolute;
  inset: 0% 0% auto;
}

.container-29 {
  flex: 1;
  align-items: flex-end;
  max-width: 1200px;
  display: block;
}

.navigation-line {
  background-color: #ff5252;
  width: 100%;
  height: 2px;
}

.follow-wrapper {
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: auto 0% 40px;
}

.navigation-link {
  color: #121217;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-left: 20px;
  margin-right: 20px;
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  text-decoration: none;
  position: relative;
}

.navigation-link.w--current {
  color: #ff5252;
}

.menu-content {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  height: 0;
  display: flex;
  position: relative;
}

.number {
  color: #f2f2f2;
  letter-spacing: 3px;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 80px;
  line-height: 60px;
  display: inline-block;
  position: absolute;
  inset: 0% 0% auto auto;
}

.number.number-absolute {
  color: #f2f2f2;
  font-size: 75px;
  right: -50%;
}

.top-text {
  background-color: var(--platinum-grey);
  color: var(--splashed-white);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 4px;
  padding: 5px 12px 5px 14px;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}

.services-title {
  z-index: 1;
  color: var(--oxford-blue);
  letter-spacing: 2px;
  text-transform: none;
  font-family: Basis Grotesque, sans-serif;
  position: relative;
}

.services-title.more-bigger {
  z-index: 1;
  font-family: Basis Grotesque, sans-serif;
  font-size: 20px;
  line-height: 30px;
  position: relative;
}

.services-title.more-bigger.features-title {
  color: var(--oxford-blue);
  text-transform: none;
  font-family: Basis Grotesque, sans-serif;
  font-weight: 500;
  line-height: 30px;
}

.services-title.more-bigger.features-title.hww-title {
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 21px;
  line-height: 28px;
}

.services-title.smaller {
  z-index: 1;
  font-size: 16px;
  position: relative;
}

.services-title.more-bigger {
  z-index: 1;
  font-size: 20px;
  line-height: 30px;
  position: relative;
}

.features-wrapper {
  text-align: center;
  background-color: #f5f8fc;
  border: 1px solid #9196ad1c;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 95%;
  min-height: 350px;
  padding: 20px 57px;
  display: flex;
}

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

.top-margin.slider-testimonials {
  margin-top: 15px;
}

.top-margin.flex {
  align-items: center;
  display: flex;
}

.top-margin.more {
  margin-top: 50px;
}

.top-margin.more.in-team.compliance {
  margin-top: 0;
}

.top-margin.double {
  margin-top: 120px;
}

.margin-page {
  color: var(--dark-slate-blue);
  margin-top: 140px;
  font-family: Basis Grotesque, sans-serif;
}

.section-2 {
  background-color: #fff;
  padding: 0 30px;
}

.section-2.feature-section {
  margin-bottom: 0;
  padding-bottom: 70px;
  padding-left: 25px;
  padding-right: 25px;
  display: none;
}

.relative-div {
  text-align: left;
  position: relative;
}

.step-wrapper {
  z-index: 100;
  background-color: #0000;
  padding-right: 20px;
  position: relative;
}

.circle-features {
  background-color: #fff;
  border: 1px solid #9196ad1c;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  display: flex;
}

.paragraph-5 {
  font-family: Basis Grotesque, sans-serif;
  line-height: 28px;
}

.features-paragraph {
  color: var(--dark-slate-blue);
  text-align: left;
  font-family: Basis Grotesque, sans-serif;
  font-size: 14px;
  line-height: 28px;
}

.column {
  padding-left: 10px;
  padding-right: 10px;
}

.column.offering-col {
  margin-top: 10px;
  margin-bottom: 10px;
}

.column-2 {
  border-left: 1px solid var(--platinum-grey);
  padding-left: 10px;
  padding-right: 10px;
}

.column-2.offering-col-2 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.column-3 {
  border-left: 1px solid var(--platinum-grey);
  padding-left: 10px;
  padding-right: 10px;
}

.column-3.offering-col-3 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.section-3 {
  color: var(--oxford-blue);
  background-color: #fff;
  min-height: 80vh;
  padding: 120px 30px;
}

.section-3.insights-preview {
  background-color: var(--splashed-white);
  min-height: auto;
  padding: 140px 25px 40px;
  display: none;
}

.top-title-wrapper {
  text-align: center;
  margin-bottom: 100px;
}

.top-title-wrapper.flex {
  justify-content: space-between;
  display: flex;
}

.top-title-wrapper.flex.half {
  text-align: left;
  justify-content: flex-start;
  margin-bottom: 60px;
}

.top-title-wrapper.flex.half.about {
  margin-bottom: 30px;
}

.top-title-text {
  letter-spacing: 3px;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Basis Grotesque, sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 60px;
}

.top-title-text.with-bottom-margin.blog-titlle {
  color: var(--platinum-grey);
  text-transform: none;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 46px;
}

.top-title-text.with-bottom-margin.blog-titlle.offerring-title {
  color: var(--oxford-blue);
  margin-bottom: 100px;
  font-family: Basis Grotesque, sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 50px;
}

.button-2 {
  z-index: 100;
  background-color: var(--palatinate-blue);
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  padding: 13px 23px;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 12px;
  font-weight: 600;
  transition: all .25s;
  display: flex;
  position: relative;
}

.button-2:hover {
  background-color: #4040ff;
  text-decoration: none;
}

.button-2.insights-button {
  background-color: var(--splashed-white);
  color: var(--dark-slate-blue);
  display: block;
}

.button-2.insights-button:hover {
  background-color: var(--platinum-grey);
  text-decoration: none;
}

.button-2.insights-button.back {
  float: right;
  text-align: center;
  flex-direction: row;
  justify-content: flex-end;
  display: inline-block;
}

.button-2.insights-button.back:hover {
  text-decoration: none;
}

.overlay {
  background-image: linear-gradient(to top, #020d16cc, #21212733 59%, #fff0);
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.blog-button {
  margin-top: 20px;
}

.blog-button.flex {
  align-items: center;
  display: flex;
}

.blog-content {
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.button-3 {
  z-index: 100;
  clear: none;
  background-color: var(--palatinate-blue);
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding: 13px 23px;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 12px;
  font-weight: 600;
  transition: all .25s;
  display: flex;
  position: relative;
}

.button-3:hover {
  background-color: #4040ff;
}

.category-design {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #ffffff80;
  border-radius: 3px;
  margin-bottom: 10px;
  padding: 5px 12px;
  font-size: 13px;
  display: inline-block;
}

.category-design.smaller {
  color: var(--silver);
  border-style: none;
  margin-bottom: 5px;
  padding-left: 0;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 11px;
  font-weight: 500;
}

.category-design.second-design {
  color: #919197;
  background-color: #fff;
  border-style: none;
  font-size: 12px;
}

.category-design.second-design.no-left {
  color: var(--silver);
  padding-left: 0;
  font-family: Basis Grotesque Mono, sans-serif;
}

.blog-post-wrapper {
  float: left;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 97%;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.blog-title {
  color: #fff;
  margin-top: 0;
}

.blog-title.blog-title-dark {
  color: var(--oxford-blue);
  letter-spacing: 3px;
  text-transform: none;
  font-family: Basis Grotesque, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}

.blog-title.blog-title-dark.whiter {
  color: #fff;
  text-transform: none;
  font-family: Basis Grotesque, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.date-second {
  color: #919197;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 7px 15px;
  font-size: 13px;
  display: flex;
  position: absolute;
  inset: auto 60px 0% auto;
}

.date-second.top {
  background-color: var(--splashed-white);
  color: var(--dark-slate-blue);
  font-family: Basis Grotesque Mono, sans-serif;
  inset: 0% 0% auto auto;
}

.date-second.bottom-center {
  color: var(--dark-slate-blue);
  font-family: Basis Grotesque Mono, sans-serif;
  inset: auto auto 0% 0%;
}

.blog-image-second {
  width: 100%;
  height: 100%;
  position: relative;
}

.date-wrapper {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.blog-gradient {
  z-index: 1;
  opacity: .1;
  background-image: linear-gradient(#fff0, #00000040);
  position: absolute;
  inset: 0%;
}

.text-block-29 {
  color: var(--dark-slate-blue);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #fff;
  width: 100%;
  padding: 6px 5px;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 12px;
}

.blog-content-second {
  background-color: #fff;
  width: 100%;
  padding: 25px 42px;
}

.date-number {
  z-index: 1;
  background-color: var(--palatinate-blue);
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 20px;
  font-weight: 400;
  display: flex;
}

.blog-wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 97%;
  text-decoration: none;
  display: flex;
}

.blog-wrapper.second {
  z-index: 100;
  border: 1px none var(--splashed-white);
  flex-direction: column;
  position: relative;
}

.blog-wrapper.second:hover {
  opacity: .95;
  background-color: #0000;
  border: 0 #0000;
  text-decoration: none;
}

.top-margin-4 {
  margin-top: 40px;
}

.top-margin-4.in-team {
  margin-top: 20px;
}

.paragraph-6 {
  color: var(--dark-slate-blue);
  font-family: Basis Grotesque, sans-serif;
  line-height: 21px;
}

.paragraph-6.insights-page-p {
  line-height: 28px;
}

.menu-text-2 {
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-left: 15px;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 13px;
  font-weight: 400;
}

.heading-5 {
  color: var(--splashed-white);
  flex: 1;
  font-family: Basis Grotesque Mono, sans-serif;
  font-weight: 400;
}

.insight-section-title {
  color: var(--platinum-grey);
  margin-top: 50px;
  margin-bottom: 50px;
  font-family: Basis Grotesque Mono, sans-serif;
  font-weight: 400;
}

.number-2 {
  color: #d2d8df3b;
  letter-spacing: 3px;
  font-size: 80px;
  line-height: 60px;
  display: inline-block;
  position: absolute;
  inset: 0% 0% auto auto;
}

.partners-wrapper {
  border-left: 1px solid var(--platinum-grey);
  width: 95%;
  margin-bottom: 60px;
  padding-left: 40px;
  padding-right: 30px;
}

.partners-wrapper.coming-soon-partner {
  display: none;
}

.button-4 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #3f51b5;
  justify-content: center;
  align-items: center;
  padding: 13px 23px;
  font-size: 12px;
  font-weight: 600;
  transition: all .25s;
  display: flex;
}

.button-4:hover {
  background-color: #5667c7;
}

.button-4.full {
  flex: 1;
}

.left-padding {
  margin-right: 30px;
}

.top-text-2 {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  background-color: #9196ad;
  margin-bottom: 4px;
  padding: 5px 12px 5px 14px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.testimonials-paragraph {
  color: var(--silver);
  text-align: left;
  font-family: Basis Grotesque, sans-serif;
  font-size: 15px;
  line-height: 30px;
}

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

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

.top-margin-2 {
  margin-top: 40px;
}

.top-margin-2.less {
  margin-top: 20px;
}

.section-4 {
  background-color: var(--splashed-white);
  padding: 120px 30px 0;
}

.section-4.gray {
  background-color: #f4f8fc;
  width: auto;
}

.section-4.asset-maaagement-section {
  padding-top: 220px;
}

.section-4.offering-section {
  background-color: #0000;
  padding-top: 205px;
  padding-bottom: 85px;
}

.section-4.normal {
  justify-content: flex-start;
  align-items: stretch;
  min-height: 750px;
  padding: 0;
  display: flex;
}

.section-4.normal.contact {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #0000;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  align-items: start;
  display: grid;
}

.section-4.about-who-we-work-with {
  padding-left: 25px;
  padding-right: 25px;
  display: none;
}

.step-wrapper-2 {
  padding-right: 30px;
}

.paragraph-7 {
  color: var(--dark-slate-blue);
  text-align: left;
  font-family: Basis Grotesque, sans-serif;
  line-height: 28px;
}

.paragraph-7.how-we-work-text {
  text-align: left;
  padding-top: 35px;
}

.social-icon-2 {
  float: right;
  border-radius: 5px;
  width: 30px;
  height: 30px;
}

.social-icon-2.in-team {
  float: none;
  opacity: 1;
  border-radius: 100%;
  width: 36px;
  height: 36px;
  margin-left: 5px;
  margin-right: 5px;
}

.social-icon-2.in-team.twitter {
  background-color: #55acee;
  background-image: url('../images/font-awesome_4-7-0_twitter_100_0_ffffff_none-1_1font-awesome_4-7-0_twitter_100_0_ffffff_none (1).png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 13px;
}

.social-icon-2.in-team.facebook {
  background-color: #3b5998;
  background-image: url('../images/font-awesome_4-7-0_facebook_100_0_ffffff_none-1_1font-awesome_4-7-0_facebook_100_0_ffffff_none (1).png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 13px;
}

.social-icon-2.in-team.insta {
  background-color: #9542a6;
  background-image: url('../images/font-awesome_4-7-0_instagram_100_0_ffffff_none-1_1font-awesome_4-7-0_instagram_100_0_ffffff_none (1).png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 14px;
}

.team-photo {
  background-image: url('../images/ff.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 370px;
  height: 250px;
  margin-right: 30px;
}

.team-photo._2 {
  background-image: url('../images/tb.png');
  background-size: cover;
}

.team-photo.right-margin {
  margin-left: 30px;
  margin-right: 0;
}

.team-photo.right-margin._4 {
  background-image: url('../images/sk.png');
  background-size: cover;
}

.team-photo.right-margin._3 {
  background-image: url('../images/je.png');
  background-size: cover;
}

.team-wrapper-third {
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.team-wrapper-third.reverse {
  flex-direction: row-reverse;
  margin-top: 25px;
  padding-right: 20px;
}

.first-photo {
  float: left;
  background-image: url('../images/about-2.jpg');
  background-position: 66%;
  background-size: cover;
  width: 500px;
  height: 100%;
  margin-right: 20px;
}

.div-block {
  flex: 0 auto;
  padding-right: 45px;
}

.div-block.about-58.hidden {
  display: none;
}

.top-title-text-2 {
  color: var(--oxford-blue);
  text-align: left;
  letter-spacing: 3px;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Basis Grotesque, sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 50px;
}

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

.second-photo {
  float: left;
  background-image: url('../images/about-1.jpg');
  background-position: 100%;
  background-size: cover;
  width: 500px;
  height: 320px;
  margin-bottom: 10px;
}

.third-photo {
  float: left;
  background-image: url('../images/about-3.jpg');
  background-position: 50%;
  background-size: cover;
  width: 500px;
  height: 320px;
  margin-top: 10px;
}

.about-wrapper {
  width: 1080px;
  max-width: none;
  height: 660px;
  max-height: 100%;
}

.top-left-text {
  color: #767676;
  margin-right: 15px;
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
  display: inline-block;
}

.top-left-text.in-testimonials {
  color: var(--silver);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-right: 0;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  display: block;
}

.testimonials-name {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 600;
}

.testimonials-name.in-team {
  color: var(--oxford-blue);
  text-transform: none;
  margin-top: 0;
  font-family: Basis Grotesque, sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.paragraph-8 {
  color: var(--dark-slate-blue);
  text-align: left;
  font-family: Basis Grotesque, sans-serif;
  line-height: 28px;
}

.paragraph-9, .paragraph-10 {
  line-height: 28px;
}

.paragraph-10.about-p {
  color: var(--dark-slate-blue);
  text-align: left;
  font-family: Basis Grotesque, sans-serif;
}

.paragraph-11 {
  line-height: 28px;
}

.paragraph-11.about-p {
  color: var(--dark-slate-blue);
  text-align: left;
  font-family: Basis Grotesque, sans-serif;
}

.arrow-list {
  margin-right: 10px;
}

.service-margin {
  margin-top: 120px;
}

.services-wrapper {
  display: flex;
}

.services-content {
  flex: 1;
  padding-right: 45px;
}

.services-icon {
  border: 1px none var(--dark-slate-blue);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  max-width: 120px;
  height: 120px;
  margin-bottom: 30px;
  display: flex;
}

.paragraph-text {
  margin-bottom: 0;
  line-height: 22px;
}

.paragraph-text.offering-text {
  color: var(--oxford-blue);
  font-family: Basis Grotesque, sans-serif;
}

.list-item {
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.services-number {
  color: #ff5252;
  border-width: 1px;
  border-color: #ff5252;
  border-radius: 100%;
  flex: none;
  justify-content: flex-start;
  align-items: flex-start;
  width: 40px;
  height: 40px;
  margin-top: 147px;
  margin-right: 50px;
  font-size: 22px;
  line-height: 30px;
  display: flex;
}

.offerring-numberr {
  color: var(--platinum-grey);
  font-family: Basis Grotesque Mono, sans-serif;
}

.offering-paragraph {
  color: var(--dark-slate-blue);
  font-family: Basis Grotesque, sans-serif;
  line-height: 28px;
}

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

.offering-grid {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  align-content: stretch;
  place-items: start;
  margin-bottom: 0;
  padding-bottom: 0;
}

.offering-grid.offering-page-header {
  flex: 0 auto;
  order: 0;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  align-content: start;
  align-self: auto;
  place-items: start;
  margin-bottom: 0;
}

.offering-grid.last {
  margin-bottom: 100px;
}

.offering-grid.first {
  padding-bottom: 0;
}

.offering-title {
  color: var(--oxford-blue);
  margin-bottom: 50px;
  font-family: Basis Grotesque, sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 60px;
  position: relative;
}

.offering-title.offering-page-header {
  color: var(--oxford-blue);
  margin-bottom: 0;
  padding-left: 0;
  font-size: 125px;
  line-height: 150px;
  position: relative;
}

.text-span-9 {
  color: #84929b;
}

.offering-title-grey {
  color: var(--light-slate-grey);
}

.offering-title-blue {
  color: var(--palatinate-blue);
}

.offering-summary {
  color: var(--dark-slate-blue);
  text-align: left;
  font-family: Basis Grotesque, sans-serif;
  font-size: 15px;
  line-height: 30px;
  position: relative;
}

.offering-summary.offering-header {
  color: var(--silver);
  padding-left: 0;
  font-size: 20px;
  line-height: 40px;
  position: relative;
}

.offerring-feature-list {
  padding-left: 0;
  list-style-type: none;
  position: relative;
}

.offering-feature-list-item {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  list-style-type: none;
}

.offering-feature-list-text {
  color: var(--dark-slate-blue);
  padding-left: 24px;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 16px;
  line-height: 24px;
  display: inline-block;
}

.www-link {
  z-index: 100;
  color: var(--oxford-blue);
  height: 28px;
  padding-left: 6px;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  text-decoration: none;
  position: relative;
}

.www-link:hover {
  color: var(--palatinate-blue);
  height: 28px;
  line-height: 28px;
  text-decoration: none;
}

.www-link.engineering {
  color: var(--splashed-white);
}

.www-link.engineering:hover {
  color: var(--medium-turquoise);
}

.left-pixel {
  max-width: 480px;
  padding-right: 46px;
}

.left-pixel.for-contact {
  width: 480px;
  padding-right: 0;
}

.text-field-2 {
  border-style: none none solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--platinum-grey);
  background-color: var(--splashed-white);
  color: var(--oxford-blue);
  background-image: url('../images/icons8-user.svg');
  background-position: 97%;
  background-repeat: no-repeat;
  background-size: 26px;
  height: 55px;
  margin-bottom: 10px;
  padding-left: 5px;
  font-family: Basis Grotesque, sans-serif;
  font-size: 14px;
}

.text-field-2:hover, .text-field-2:focus {
  border-bottom-color: #3f51b5;
}

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

.text-field-2.area {
  background-image: url('../images/paper-plane-1.svg');
  background-position: 15px 17px;
  background-size: 18px;
  height: auto;
  padding-top: 15px;
  padding-bottom: 50px;
}

.text-field-2.area.more-padding {
  border-bottom-color: var(--platinum-grey);
  color: var(--palatinate-blue);
  background-color: #0000;
  background-image: none;
  height: auto;
  margin-bottom: 30px;
  padding-top: 4px;
  padding-bottom: 64px;
}

.text-field-2.area.more-padding:hover, .text-field-2.area.more-padding:focus {
  border-bottom-color: var(--palatinate-blue);
}

.text-field-2.area.more-padding::placeholder {
  color: var(--dark-slate-blue);
}

.text-field-2._2 {
  border-bottom-color: var(--platinum-grey);
  color: var(--palatinate-blue);
  background-color: #0000;
  background-image: url('../images/envelope-grey.svg');
  background-size: 18px;
  height: 32px;
  margin-bottom: 20px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.text-field-2._2:hover, .text-field-2._2:focus {
  border-bottom-color: var(--palatinate-blue);
}

.text-field-2._2::placeholder {
  color: var(--dark-slate-blue);
}

.text-field-2.organization {
  color: var(--palatinate-blue);
  background-color: #0000;
  background-image: url('../images/office-grey.svg');
  background-size: 18px;
  height: 32px;
  margin-bottom: 20px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.text-field-2.organization:hover, .text-field-2.organization:focus {
  border-bottom-color: var(--palatinate-blue);
}

.text-field-2.organization::placeholder {
  color: var(--dark-slate-blue);
}

.text-field-2.last-name {
  border-bottom-color: var(--platinum-grey);
  color: var(--palatinate-blue);
  background-color: #0000;
  background-image: url('../images/person-grey.svg');
  background-size: 18px;
  height: 32px;
  margin-bottom: 20px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.text-field-2.last-name:hover, .text-field-2.last-name:focus {
  border-bottom-color: var(--palatinate-blue);
}

.text-field-2.last-name::placeholder {
  color: var(--dark-slate-blue);
}

.text-field-2.first-name {
  border-bottom-color: var(--platinum-grey);
  color: var(--palatinate-blue);
  background-color: #0000;
  background-image: url('../images/person-grey.svg');
  background-size: 18px;
  height: 32px;
  margin-bottom: 20px;
  padding-top: 4px;
  padding-bottom: 4px;
  position: relative;
}

.text-field-2.first-name:hover, .text-field-2.first-name:focus {
  border-bottom-color: var(--palatinate-blue);
}

.text-field-2.first-name::placeholder {
  color: var(--dark-slate-blue);
}

.top-title-text-3 {
  color: var(--palatinate-blue);
  letter-spacing: 3px;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 50px;
  padding-left: 0;
  font-family: Basis Grotesque, sans-serif;
  font-size: 75px;
  font-weight: 500;
  line-height: 75px;
}

.field-label {
  color: var(--silver);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 11px;
  font-weight: 500;
}

.field-label.mailchimp-disclaimer {
  margin-top: 25px;
}

.top-margin-3 {
  margin-top: 20px;
}

.top-margin-3.small {
  margin-top: 15px;
}

.submit-project-wrapper {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.submit-project-wrapper.full {
  width: 100%;
}

.error-message-2 {
  background-color: var(--splashed-white);
  color: #fc493e;
  text-align: center;
  font-weight: 500;
}

.testimonials-part {
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding: 70px 100px;
  display: flex;
  position: relative;
}

.testimonials-part.with-photo {
  background-image: url('../images/client.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: wrap;
  flex: 1;
  align-content: center;
  padding-left: 70px;
  padding-right: 70px;
}

.testimonials-part.with-photo.fourth {
  background-image: url('../images/contact-baner.jpg');
}

.testimonials-part.contact {
  background-color: var(--splashed-white);
  padding-left: 0;
}

.success-message-2 {
  background-color: var(--splashed-white);
  color: var(--palatinate-blue);
  padding-top: 0;
  padding-bottom: 0;
  font-family: Basis Grotesque Mono, sans-serif;
  font-weight: 500;
}

.section-5 {
  background-color: var(--splashed-white);
  padding: 170px 25px 100px;
}

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

.form-2 {
  z-index: 100;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #0000;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 25px;
  display: block;
  position: relative;
}

.team-section {
  padding-bottom: 100px;
  padding-left: 25px;
  padding-right: 25px;
}

.checkbox-text {
  color: var(--oxford-blue);
  font-family: Basis Grotesque, sans-serif;
  line-height: 28px;
}

.checkbox-text.consent {
  color: var(--light-slate-grey);
}

.interest-highlight {
  color: var(--palatinate-blue);
  font-weight: 500;
}

.checkbox-field {
  line-height: 28px;
}

.checkbox-field.consent {
  color: var(--light-slate-grey);
  font-size: 12px;
}

.checkbox {
  height: 28px;
  margin-top: 0;
  line-height: 28px;
}

.checkbox-2, .checkbox-3 {
  height: 28px;
  margin-top: 0;
}

.div-block-37 {
  margin-bottom: 20px;
  padding-top: 10px;
}

.image-13 {
  height: 27px;
  line-height: 30px;
}

.div-block-38 {
  z-index: 100;
  display: flex;
  position: relative;
}

.div-block-38.engineering-link {
  display: none;
}

.text-block-31 {
  text-align: left;
  padding-top: 4px;
  font-size: 14px;
  line-height: 28px;
}

.text-block-32 {
  color: #fd3b45;
  text-align: left;
  font-family: Basis Grotesque Mono, sans-serif;
  line-height: 28px;
}

.offering-page-section {
  background-color: var(--platinum-grey);
  padding-top: 170px;
}

.offering-page-section.last {
  background-color: var(--platinum-grey);
  padding-bottom: 170px;
}

.offering-page-section.first {
  padding-top: 170px;
}

.offering-page-section.coming-soon-hide {
  display: none;
}

.text-span-10 {
  color: var(--light-slate-grey);
}

.container-30 {
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
  display: block;
}

.container-31 {
  padding-bottom: 0;
}

.section-6 {
  background-color: #fff;
  padding: 120px 30px;
}

.section-6.insight-post-section {
  padding-top: 220px;
}

.container-32 {
  flex: 1;
  max-width: 1200px;
}

.meta-info {
  margin-bottom: 0;
  margin-right: 5px;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
}

.meta-info.darker {
  color: #121217;
  font-weight: 500;
}

.meta-info.darker:hover {
  text-decoration: underline;
}

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

.top-title-text-4 {
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 46px;
}

.top-title-text-4.in-sub-banner {
  color: #fff;
  text-align: center;
  font-size: 60px;
  font-weight: 500;
  line-height: 60px;
}

.top-title-text-4.in-sub-banner.for-blog {
  text-align: center;
  text-transform: none;
  justify-content: center;
  align-items: center;
  font-family: Basis Grotesque, sans-serif;
  font-size: 50px;
  font-weight: 500;
  display: flex;
  position: absolute;
  inset: 0%;
}

.rich-text-block-3 {
  color: var(--oxford-blue);
  font-family: Basis Grotesque, sans-serif;
  line-height: 28px;
}

.container-33 {
  padding-left: 10%;
  padding-right: 10%;
}

.rich-text-blog {
  color: var(--oxford-blue);
  font-family: Basis Grotesque, sans-serif;
  line-height: 28px;
}

.rich-text-blog.insight-body {
  text-align: justify;
  font-family: Basis Grotesque, sans-serif;
  font-size: 14px;
  line-height: 28px;
}

.rich-text-blog.insight-body h2, .rich-text-blog.insight-body h4 {
  color: var(--palatinate-blue);
}

.rich-text-blog.insight-body p {
  margin-bottom: 28px;
  font-family: Basis Grotesque, sans-serif;
  font-size: 15px;
  line-height: 30px;
}

.rich-text-blog.insight-body blockquote {
  border-left-color: var(--dark-slate-blue);
  color: var(--dark-slate-blue);
  text-align: left;
  background-color: #0000;
  margin-top: 28px;
  margin-bottom: 28px;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-right: 0;
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 15px;
  line-height: 30px;
}

.rich-text-blog.insight-body a {
  z-index: 99;
  color: var(--palatinate-blue);
  font-weight: 400;
  text-decoration: none;
  position: relative;
}

.rich-text-blog.insight-body a:hover {
  text-decoration: underline;
}

.rich-text-blog.insight-body strong {
  font-weight: 500;
}

.rich-text-blog.insight-body h3 {
  margin-bottom: 42px;
  font-weight: 500;
  line-height: 48px;
}

.rich-text-blog.insight-body h1 {
  font-size: 40px;
  font-weight: 500;
  line-height: 60px;
}

.rich-text-blog.insight-body h5 {
  color: var(--dark-slate-blue);
  line-height: 28px;
}

.rich-text-blog.insight-body h6 {
  color: var(--light-slate-grey);
  line-height: 24px;
}

.rich-text-blog.insight-body figcaption {
  color: var(--light-slate-grey);
  margin-bottom: 28px;
  font-family: Basis Grotesque Mono, sans-serif;
}

.rich-text-blog.insight-body figure {
  margin-top: 60px;
  margin-bottom: 60px;
  display: block;
}

.rich-text-blog.insight-body em {
  color: var(--oxford-blue);
}

.body-5 {
  background-color: #f7f7f7;
}

.div-block-39, .div-block-40 {
  background-image: url('../images/exchange-grey.svg');
  background-position: 0 0;
  background-size: 125px;
}

.div-block-40.offering-header-image {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 75%;
  width: 100%;
  height: 100%;
}

.html-embed-2 {
  width: 102%;
  height: 102%;
  margin: -5px;
  padding: 0;
  display: block;
  position: static;
}

.html-embed-2.trading {
  height: auto;
}

.chart-embed-wrapper {
  border: 1px #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 25px 0 0;
  padding: 0;
  display: none;
  position: relative;
  overflow: hidden;
}

.html-embed-3 {
  display: none;
}

.grid-40 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  align-content: space-between;
  width: 100vw;
  height: auto;
  max-height: 100vh;
  padding-top: 0;
  padding-left: 50px;
  padding-right: 50px;
}

.color-spacing {
  flex-direction: column;
  height: 100vh;
  padding: 75px 25px 25px;
  display: flex;
}

.div-block-41 {
  flex: 1;
  height: 50%;
}

.color-panel {
  border: 1px solid #f2f2f2;
  flex: 0 auto;
  justify-content: center;
  align-self: stretch;
  align-items: stretch;
  height: 75%;
  display: flex;
}

.color-panel.splashed-white {
  background-color: var(--splashed-white);
}

.color-panel.platinum-gray {
  background-color: var(--platinum-grey);
  flex: 0 auto;
  align-self: stretch;
  align-items: stretch;
}

.color-panel.oxford-blue {
  background-color: var(--oxford-blue);
}

.color-panel.ucla-blue {
  background-color: var(--dark-slate-blue);
}

.color-panel.palatinate-blue {
  background-color: var(--palatinate-blue);
}

.color-panel.medium-turquoise {
  background-color: var(--medium-turquoise);
}

.text-block-33 {
  flex: none;
}

.color-name {
  padding-top: 25px;
  padding-bottom: 15px;
  font-family: Basis Grotesque, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 50px;
}

.color-code {
  color: var(--silver);
  font-family: Basis Grotesque Mono, sans-serif;
  font-size: 15px;
  line-height: 45px;
}

.mini-footer {
  justify-content: space-between;
  height: 60px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.link-block-5 {
  align-self: center;
  margin-right: 25px;
  padding-right: 0;
}

.text-block-34 {
  color: var(--platinum-grey);
  background-color: #0000;
  align-self: center;
  padding-left: 25px;
  font-family: Basis Grotesque Mono, sans-serif;
}

.image-15 {
  opacity: .1;
}

.color-text {
  color: #0000;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: Basis Grotesque Mono, sans-serif;
  display: flex;
  position: static;
}

.bold-text {
  font-weight: 500;
  text-decoration: none;
}

.link-6 {
  color: var(--dark-slate-blue);
  text-decoration: none;
}

.link-6:hover {
  color: var(--palatinate-blue);
  text-decoration: underline;
}

.container-divider {
  background-color: var(--platinum-grey);
  width: 100%;
  height: 1px;
  margin-top: 50px;
}

.div-block-43 {
  position: relative;
}

.link-block-6 {
  display: none;
}

.form-block-3 {
  position: relative;
}

.who-we-work-with-col {
  padding-left: 10px;
}

.promise-wrapper {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-right: 10px;
  display: flex;
}

.promise-icon {
  margin-bottom: 15px;
}

.promise-text-wrapper {
  align-items: center;
  min-height: 60px;
  display: flex;
  position: relative;
}

.services-title-2 {
  z-index: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.number-absolute {
  color: #f1f1fc;
  letter-spacing: 3px;
  font-size: 46px;
  line-height: 60px;
  position: absolute;
  inset: 0% -23% auto auto;
}

.div-block-45 {
  padding-top: 70px;
}

.heading-6 {
  color: var(--dark-slate-blue);
  font-family: Basis Grotesque Mono, sans-serif;
  font-weight: 400;
}

.section-7 {
  min-height: 100vh;
  padding-top: 210px;
}

.section-7.legal-sectioon {
  padding-bottom: 60px;
}

.legal-title {
  color: var(--oxford-blue);
  padding-left: 40px;
  font-family: Basis Grotesque, sans-serif;
  font-size: 40px;
  line-height: 27px;
}

.heading-7 {
  font-family: Basis Grotesque, sans-serif;
}

.heading-8 {
  letter-spacing: 1px;
  text-transform: capitalize;
  font-family: Basis Grotesque, sans-serif;
  font-weight: 500;
}

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

.legal-rich-text {
  padding-left: 20%;
  padding-right: 20%;
}

.legal-rich-text li {
  font-family: Basis Grotesque, sans-serif;
  font-size: 14px;
  line-height: 28px;
}

.legal-rich-text p {
  font-family: Basis Grotesque, sans-serif;
}

.legal-body {
  padding-bottom: 210px;
}

.text-block-35 {
  padding-right: 10px;
  display: inline-block;
}

.text-block-35.legal-last-edit-label {
  color: var(--silver);
  font-family: Basis Grotesque, sans-serif;
  line-height: 28px;
}

.text-block-36 {
  color: var(--palatinate-blue);
  font-family: Basis Grotesque, sans-serif;
  line-height: 28px;
  display: inline-block;
}

.div-block-46 {
  padding-left: 20%;
  padding-right: 20%;
}

.collection-list-wrapper-2 {
  margin-top: 100px;
  padding-left: 17px;
  padding-right: 17px;
}

.collection-list-wrapper-2.insights-list {
  padding-left: 0;
  padding-right: 0;
}

.collection-item-9 {
  z-index: 99;
  background-color: var(--splashed-white);
  position: relative;
}

.repo-list-wrapper {
  border: 1px solid var(--splashed-white);
  color: #b5bdc3;
  background-color: #0000;
  flex-direction: row;
  justify-content: space-between;
  text-decoration: none;
  transition: all .2s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.repo-list-wrapper:hover {
  border-style: solid;
  border-color: var(--splashed-white);
  color: #f7f7f7;
  background-color: #e5e5e440;
  text-decoration: none;
}

.text-block-37 {
  color: #082437;
  padding-left: 17px;
  padding-right: 17px;
  font-size: 15px;
  font-weight: 500;
  line-height: 50px;
  text-decoration: none;
  display: inline-block;
}

.text-block-37.truncate {
  color: var(--oxford-blue);
  width: 25%;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Basis Grotesque, sans-serif;
  font-weight: 500;
  line-height: 30px;
}

.text-block-38 {
  text-align: right;
  border-radius: 11px;
  flex: 1;
  padding-left: 17px;
  font-size: 15px;
  line-height: 50px;
}

.text-block-38.truncate {
  color: var(--dark-slate-blue);
  text-align: right;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 17px;
  font-family: Basis Grotesque Mono, sans-serif;
  font-weight: 400;
  line-height: 30px;
}

.div-block-47 {
  text-align: center;
  background-color: #b5bdc340;
  flex: 0 auto;
  align-self: auto;
  width: 50px;
}

.image {
  margin-top: 18px;
  margin-left: 17px;
  margin-right: 17px;
}

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

.decode-header-image {
  margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
  .hero-intro-system.break-word {
    max-width: 775px;
    padding-left: 10px;
    padding-right: 5px;
  }

  .b58-footer-disclaimer.no-pointer.no-select {
    margin-top: 0;
  }

  ._58-nav-link.no-select {
    color: var(--oxford-blue);
  }

  ._58-nav-link.no-select._58-nav-desktop {
    display: none;
  }

  ._58-nav-link.no-select._58-nav-mobile {
    cursor: pointer;
    padding-left: 30px;
    font-weight: 400;
    display: block;
  }

  ._58-nav-link.no-select._58-nav-mobile:hover {
    border-bottom-style: none;
  }

  .b58-section.b58-section-footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .b58-section.b58-section-hero.b58-company-hero {
    height: auto;
    padding-left: 45px;
    padding-right: 45px;
  }

  .b58-section.b58-section-hero.b58-company-hero.about-section, .b58-section.b58-section-blue.section-blue-about.engineering {
    padding-left: 45px;
    padding-right: 45px;
  }

  .b58-section.b58-onliner-section.intro {
    min-height: 40vh;
    padding-top: 70px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .b58-section.b58-legal-section {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar.b58-navbar {
    max-width: none;
  }

  .b58-navbar-container {
    flex-direction: row;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    position: static;
    inset: 0% 0% auto;
  }

  .b58-hero-grid {
    padding-top: 0;
  }

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

  .sticky.sticky-intro {
    grid-template-rows: auto auto auto auto auto auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .icon {
    color: #41416b;
  }

  .dynamic-number__wrap {
    height: 4vh;
    margin-bottom: 6px;
  }

  .div-block-2 {
    width: 17px;
  }

  .wrap {
    width: 645px;
  }

  .wrap._w-custom.w60-60 {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .dynamic-text__wrap {
    height: 4vh;
  }

  .dynamic-section__wrap {
    top: -57px;
    left: -3px;
  }

  .dynamic-text {
    font-size: 24px;
    line-height: 4vh;
  }

  .dynamic-text.dt-number {
    font-size: 30px;
  }

  .dynamic-number__inner-wrap {
    height: 16vh;
  }

  .dynamic-number__inner-wrap.dynamic-number__track {
    height: 20vh;
  }

  .section-sticky {
    overflow: visible;
  }

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

  .contact-sub-title {
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-22.legal-grid {
    place-content: center;
    justify-items: start;
    max-width: 75vw;
  }

  .big-text {
    align-self: end;
    font-size: 75px;
    line-height: 75px;
  }

  .text-block-16.home-intro-header {
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 40px;
    line-height: 60px;
  }

  .text-block-16.home-intro-header.about-intro {
    padding-left: 0;
    padding-right: 0;
    font-size: 50px;
  }

  .grid-26.onboarding-grid.legal-grid {
    padding-left: 0;
    padding-right: 0;
  }

  .grid-27 {
    grid-column-gap: 32px;
  }

  .text-block-19.special-text-grey {
    align-self: end;
    font-size: 75px;
    line-height: 75px;
  }

  .text-block-19.special-text-grey.special-text-blue.no-select {
    align-self: end;
    display: none;
  }

  .grid-31.culture.engineering {
    grid-template-rows: auto auto auto;
  }

  .intro-about.engineering {
    text-align: left;
    font-size: 15px;
    line-height: 45px;
  }

  .div-block-31.placeholder.no-select {
    height: 0;
  }

  .container-28.b58-legal-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .offering-intro-body {
    padding-left: 10px;
    padding-right: 10px;
  }

  .offering-intro-body.about-intro-text {
    padding-left: 0;
    padding-right: 0;
    font-size: 15px;
    line-height: 45px;
  }

  .b58-nav-overlay {
    z-index: 0;
  }

  .text-block-26.onboarding-title {
    padding-left: 40px;
    font-size: 25px;
    line-height: 17px;
  }

  .b58-legal-content {
    padding-left: 0;
    padding-right: 0;
  }

  .navigation-link-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .container-29 {
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
  }

  .container-29.offering-header {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container-29.who-we-are-container {
    padding-left: 45px;
    padding-right: 45px;
  }

  .navigation-link {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .services-title.more-bigger {
    font-size: 17px;
    line-height: 26px;
  }

  .features-wrapper {
    width: 100%;
    margin-bottom: 30px;
  }

  .top-margin.double {
    margin-top: 70px;
  }

  .margin-page {
    margin-top: 40px;
  }

  .column.offering-col {
    padding-left: 10px;
    padding-right: 10px;
  }

  .section-3.insights-preview {
    padding-top: 70px;
  }

  .top-title-wrapper.flex {
    margin-bottom: 50px;
  }

  .top-title-text.with-bottom-margin.blog-titlle.offerring-title {
    margin-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .blog-post-wrapper {
    min-height: 250px;
  }

  .blog-title.blog-title-dark {
    font-size: 16px;
  }

  .blog-content-second {
    padding-left: 0;
    padding-right: 0;
  }

  .top-margin-4 {
    margin-top: 30px;
  }

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

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

  .row-flex.vertical.reverse {
    flex-direction: column-reverse;
  }

  .section-4.normal {
    flex-direction: column;
  }

  .section-4.normal.contact {
    flex-direction: column;
    min-height: auto;
    display: block;
  }

  .team-photo {
    height: 180px;
  }

  .first-photo {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .div-block.about-58 {
    padding-right: 30px;
  }

  .second-photo, .third-photo {
    width: 100%;
    height: 400px;
  }

  .about-wrapper {
    width: auto;
    max-width: 100%;
    max-height: none;
  }

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

  .offering-grid, .offering-grid.first {
    grid-template-rows: auto auto auto;
    padding-left: 25px;
    padding-right: 15px;
  }

  .offering-title {
    margin-bottom: 25px;
  }

  .offering-summary {
    line-height: 30px;
  }

  .offering-feature-list-text {
    font-size: 12px;
    line-height: 21px;
  }

  .left-pixel.for-contact {
    width: 100%;
    max-width: 100%;
  }

  .text-field-2.last-name {
    position: relative;
  }

  .top-title-text-3 {
    padding-left: 20px;
  }

  .submit-project-wrapper {
    width: 100%;
  }

  .testimonials-part {
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }

  .testimonials-part.with-photo.fourth {
    min-height: 600px;
  }

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

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

  .form-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .offering-page-section {
    padding-top: 70px;
  }

  .offering-page-section.last {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .offering-page-section.first {
    padding-top: 70px;
  }

  .container-32 {
    flex-direction: column;
  }

  .top-title-text-4.in-sub-banner {
    font-size: 40px;
    line-height: 50px;
  }

  .container-33 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-menu {
    background-color: var(--platinum-grey);
    display: block;
    inset: 0% 0% auto;
  }

  .div-block-44 {
    margin-top: 120px;
    margin-left: 0;
    position: absolute;
    inset: 0% 0% auto;
  }

  .link-block-6 {
    display: block;
  }

  .menu-button-2 {
    background-color: #0000;
  }

  .menu-button-2:hover {
    color: var(--palatinate-blue);
  }

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

  .html-embed-4 {
    color: var(--silver);
    width: 20px;
    height: 20px;
    padding-top: 0;
  }

  .html-embed-4:hover {
    color: var(--palatinate-blue);
  }

  .promise-wrapper {
    align-content: space-between;
    padding-right: 10px;
  }

  .legal-title {
    font-size: 25px;
    line-height: 17px;
  }

  .legal-rich-text {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-46 {
    padding-left: 20px;
  }

  .collection-list-wrapper-2 {
    width: 100%;
    margin-top: 0;
  }

  .text-block-37.truncate, .text-block-38.truncate {
    flex: 1;
  }
}

@media screen and (max-width: 767px) {
  .hero-intro-system.break-word {
    max-width: 100%;
  }

  .b58-process-line._58-process-line-short {
    align-self: center;
    height: 35px;
  }

  .b58-process-line._58-process-line-short._58-process-line-last {
    align-self: center;
    height: 35px;
    margin-bottom: 0;
  }

  .b58-process-line._58-process-line-short._58-process-line-last._58-process-line-mid {
    background-image: linear-gradient(to bottom, var(--dark-slate-blue), var(--dark-slate-blue));
    align-self: center;
  }

  .b58-process-line._58-process-line-short._58-process-line-xs {
    opacity: 0;
    align-self: center;
    height: 35px;
    display: block;
  }

  .b58-process-line._58-process-line-short._58-process-line-xs._58-process-line-main {
    z-index: 2;
    opacity: 1;
    align-self: center;
    height: 5vh;
    position: relative;
  }

  .b58-footer-disclaimer.no-pointer.no-select {
    max-width: 100vw;
  }

  ._58-hero-text {
    background-image: linear-gradient(to bottom, var(--splashed-white), var(--splashed-white));
    margin-bottom: 35px;
  }

  ._58-system-wrap {
    align-self: center;
    max-width: 100vw;
  }

  ._58-nav-link.no-select, ._58-nav-link.no-select.w--current {
    background-color: var(--oxford-blue);
  }

  ._58-nav-link.no-select._58-nav-mobile {
    background-color: var(--platinum-grey);
  }

  .b58-section {
    padding-top: 100px;
    padding-bottom: 0;
  }

  .b58-section.b58-section-footer {
    max-width: 100vw;
    padding-left: 25px;
    padding-right: 25px;
  }

  .b58-section.b58-section-hero {
    align-items: center;
    padding-top: 0;
  }

  .b58-section.b58-section-hero.b58-company-hero {
    padding-left: 30px;
    padding-right: 30px;
  }

  .b58-section.b58-section-hero.b58-company-hero.about-section {
    max-height: none;
    padding-left: 30px;
    padding-right: 30px;
  }

  .b58-section.b58-section-intro.section__intro--mobile {
    min-height: auto;
  }

  .b58-section.b58-section-process {
    max-width: 100vw;
  }

  .b58-section.b58-section-cta {
    background-image: linear-gradient(to bottom, var(--oxford-blue), var(--oxford-blue));
    min-height: 600px;
  }

  .b58-section.b58-section-cta.section__contact--mobile {
    min-height: auto;
  }

  .b58-section.b58-section-grey.b58-section-mobile {
    margin-top: 100px;
    display: block;
  }

  .b58-section.b58-section-grey.b58-section-mobile.b58-nopadding {
    padding-left: 0;
    padding-right: 0;
  }

  .b58-section.b58-section-grey.b58-section-desktop {
    display: none;
  }

  .b58-section.b58-section-blue.section-blue-about.engineering {
    padding-left: 30px;
    padding-right: 30px;
  }

  .b58-section.b58-nopad-section {
    margin-top: 100px;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .b58-section.b58-nopad-section.b58-section-mobile-grey {
    background-color: var(--platinum-grey);
  }

  .b58-section.b58-service-desktop {
    display: none;
  }

  .b58-section.b58-service-section-mobile {
    display: block;
  }

  .b58-section.b58-onliner-section.intro {
    min-height: auto;
    margin-top: 35px;
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .b58-section.onboarding-section {
    height: auto;
    max-height: 1000vh;
    padding-top: 0;
  }

  .b58-section.b58-legal-section {
    max-width: 100vw;
    padding-left: 0;
    padding-right: 0;
  }

  .b58-navbar-logo.no-select.logo-dark {
    margin-top: 0;
  }

  .navbar.b58-navbar {
    height: 70px;
    padding-left: 20px;
    padding-right: 0;
  }

  .navbar.b58-navbar.navbar-static {
    margin-bottom: 120px;
  }

  .b58-navbar-container {
    align-self: auto;
    height: 70px;
    padding-left: 0;
  }

  .b58-navbar-container.main-navbar {
    height: 70px;
  }

  .b58-intro-container {
    height: auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  .b58-intro-grid {
    grid-row-gap: 3px;
  }

  .b58-process-container {
    height: auto;
  }

  .b58-process-title-2.no-select {
    padding-left: 10px;
    position: relative;
  }

  .b58-process-title-2.no-select.intro-title-small {
    align-self: end;
    padding-left: 0;
  }

  .b58-process-number-large-2.b58-process-number-large-purple.no-select, .b58-process-number-large-2.b58-process-number-large-green.no-select, .b58-process-number-large-2.b58-process-number-large-primary.no-select, .b58-process-number-large-2.b58-process-number-large-blue.no-select {
    align-self: center;
    font-size: 35px;
    line-height: 35px;
  }

  .b58-paragraph-2.b58-paragraph-17.paragraph-research, .b58-paragraph-2.b58-paragraph-17.paragraph-analyze, .b58-paragraph-2.b58-paragraph-17.paragraph-develop {
    align-self: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .b58-paragraph-2.b58-paragraph-17.paragraph-develop.paragraph-cover.break-word.paragraph-cover-research, .b58-paragraph-2.b58-paragraph-17.paragraph-develop.paragraph-cover.break-word.paragraph-cover-analyze, .b58-paragraph-2.b58-paragraph-17.paragraph-develop.paragraph-cover.break-word.paragraph-cover-develop, .b58-paragraph-2.b58-paragraph-17.paragraph-develop.paragraph-cover.break-word.paragraph-cover-deploy {
    opacity: 0;
    align-self: center;
  }

  .b58-paragraph-2.b58-paragraph-17.paragraph-deploy {
    align-self: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .b58-process-name-2.b58-process-name-purple.b58-process-name-encoded.no-select.no-pointer {
    opacity: 0;
    align-self: start;
  }

  .b58-process-name-2.b58-process-name-purple.no-select.no-pointer {
    align-self: start;
    font-size: 17px;
    line-height: 34px;
  }

  .b58-process-name-2.b58-process-name-green.b58-process-name-encoded.no-select.no-pointer {
    opacity: 0;
    align-self: start;
  }

  .b58-process-name-2.b58-process-name-green.no-select.no-pointer {
    align-self: start;
    font-size: 17px;
    line-height: 34px;
  }

  .b58-process-name-2.b58-process-name-primary.b58-process-name-encoded.no-select.no-pointer {
    opacity: 0;
    align-self: start;
  }

  .b58-process-name-2.b58-process-name-primary.no-select.no-pointer {
    align-self: start;
    font-size: 17px;
    line-height: 34px;
  }

  .b58-process-name-2.b58-process-name-blue.b58-process-name-encoded.no-select.no-pointer {
    opacity: 0;
    align-self: start;
  }

  .b58-process-name-2.b58-process-name-blue.no-select.no-pointer {
    align-self: start;
    font-size: 17px;
    line-height: 34px;
  }

  .grid-16 {
    grid-column-gap: 17px;
    grid-row-gap: 17px;
    grid-template: ". ."
                   ". ."
                   ". ."
                   ". ."
                   / 1fr 1fr;
    width: 100%;
    max-width: 100vw;
  }

  ._58-intro-heading-container {
    align-self: start;
    height: auto;
    margin-bottom: 105px;
  }

  .sticky.sticky-process {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template: ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   / 1fr 1fr 1fr 1fr 1fr;
    max-width: 100vw;
  }

  .sticky.sticky-process.sticky-cta {
    grid-column-gap: 0px;
    grid-row-gap: 29px;
    grid-template: ". . . . . . . . . . ."
                   ". . . . . . . . . . ."
                   ". . . . . . . . . . ."
                   ". . . . . . . . . . ."
                   ". . . . . . . . . . ."
                   / 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    align-content: center;
    align-items: center;
    top: 5vh;
  }

  .container-cover {
    display: block;
  }

  .system-text-highlight.no-pointer.no-select {
    padding-left: 10px;
    padding-right: 5px;
  }

  .icon {
    color: var(--splashed-white);
    flex: 1;
    align-self: stretch;
  }

  .wrap-block__inner-fw.inner-fw__bottom {
    margin-top: 20px;
  }

  .inner-fw__text-block {
    font-size: 20px;
    line-height: 28px;
  }

  .wrap {
    flex: 0 auto;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .wrap._w-custom.w60-60 {
    padding: 50px 20px 30px;
  }

  .step-block__text-description.text-description-2, .step-block__text-description.text-description-1, .step-block__text-description.text-description-3, .step-block__text-description.text-description-4 {
    font-size: 12px;
  }

  .dynamic-section__wrap {
    display: none;
  }

  .dynamic-content__block {
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .dynamic-text {
    font-size: 22px;
  }

  .dynamic-text.dt-number {
    font-size: 28px;
  }

  .step-block__text-title.text-title_2, .step-block__text-title.text-title_4, .step-block__text-title.text-title_3, .step-block__text-title.text-title_1 {
    font-size: 18px;
  }

  .text-block-9 {
    align-self: end;
    margin-left: 10px;
    margin-right: 10px;
  }

  .container-20 {
    min-height: 600px;
  }

  .container-20.container__contact--mobile {
    min-height: auto;
  }

  ._58-cta-title-2 {
    align-self: start;
    padding-left: 10px;
    font-size: 70px;
    line-height: 70px;
  }

  ._58-cta-text-2 {
    align-self: center;
    padding-left: 10px;
  }

  ._58-modal-wrapper, ._58-modal-wrapper.legal-modal, ._58-modal-container.legal-container {
    overflow: scroll;
  }

  .grid-19 {
    grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto;
    justify-items: stretch;
    margin-top: 210px;
  }

  ._58-modal-title {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 42px;
    line-height: 42px;
  }

  .div-block-25 {
    padding-left: 35px;
    padding-right: 35px;
  }

  .contact-sub-title {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 15px;
    line-height: 30px;
  }

  .button-other {
    align-self: end;
  }

  .div-block-27 {
    background-image: linear-gradient(to bottom, var(--platinum-grey), var(--platinum-grey));
    width: 100%;
    padding-left: 10px;
  }

  .grid-22.legal-grid {
    grid-row-gap: 28px;
    align-content: end;
    align-items: start;
    max-width: 100vw;
    margin-top: 140px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .legal-modal-heading {
    align-self: end;
    font-size: 35px;
    line-height: 35px;
  }

  .rich-text-block {
    background-color: #0000;
    overflow: visible;
    box-shadow: 0 0 0 1px #0000;
  }

  .div-block-29 {
    flex: none;
  }

  .site-wrapper.onboarding-site {
    box-shadow: none;
  }

  .grid-25 {
    grid-template-rows: auto auto auto auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  .big-text {
    padding-left: 7px;
    padding-right: 0;
  }

  .big-text.margin-top {
    align-self: end;
    padding-top: 50px;
  }

  .heading-3 {
    font-size: 40px;
    line-height: 50px;
  }

  .heading-3.partner-infrra-ttitle {
    padding-left: 10px;
    font-size: 25px;
    line-height: 25px;
  }

  .small-text-header {
    padding-left: 0;
  }

  .small-text-header.with-margin {
    padding-left: 20px;
  }

  .base58-paragraph.tab-content-paragraph {
    z-index: 1;
    margin-bottom: 50px;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
  }

  .text-block-16.home-intro-header {
    padding-bottom: 25px;
    padding-left: 0;
    padding-right: 0;
    font-size: 30px;
    line-height: 45px;
  }

  .text-block-16.home-intro-header.about-intro {
    font-size: 30px;
    line-height: 40px;
  }

  .grid-26 {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    grid-template-rows: auto auto auto auto;
    height: auto;
    margin-bottom: 100px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .grid-26.onboarding-grid {
    grid-template-rows: auto;
    place-content: start;
    place-items: start;
    height: 100vh;
    margin-top: 120px;
    padding-top: 120px;
  }

  .grid-26.onboarding-grid.legal-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin-top: 0;
  }

  .grid-26.home-intro {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .grid-27 {
    grid-column-gap: 32px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto auto auto auto;
    grid-template-areas: "."
                         "."
                         "."
                         "."
                         ".";
  }

  .grid-27.mobile-grid-no-margin {
    grid-row-gap: 0px;
    grid-template-rows: auto auto auto;
  }

  .grid-28, .grid-29 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tab-title {
    font-size: 14px;
  }

  .tabs {
    margin-top: 0;
  }

  .grid-30 {
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-19.special-text-grey {
    margin-bottom: 25px;
    padding: 0 20px;
    font-size: 75px;
    line-height: 75px;
  }

  .grid-31 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .grid-31.culture.engineering {
    padding-left: 0;
    padding-right: 0;
  }

  .intro-about {
    font-size: 20px;
    line-height: 30px;
  }

  .intro-about.engineering {
    font-size: 15px;
    line-height: 45px;
  }

  .image-7 {
    z-index: 0;
    opacity: .5;
    align-self: center;
    max-width: 100%;
    position: relative;
  }

  .image-8, .image-9, .image-10 {
    opacity: .5;
    align-self: center;
    max-width: 100%;
  }

  .text-block-22 {
    align-self: center;
    padding: 72px 10px 100px;
    font-size: 28px;
    line-height: 56px;
  }

  .grid-32 {
    height: auto;
  }

  .team-name {
    padding-left: 20px;
  }

  .team-text {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .grid-36 {
    grid-row-gap: 32px;
    grid-template-rows: auto auto auto auto;
    align-self: center;
    margin-top: 25px;
    margin-bottom: 50px;
    padding-left: 10px;
  }

  .menu-button {
    background-color: var(--palatinate-blue);
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    padding: 0;
    display: block;
  }

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

  .image-11 {
    flex: 1;
    order: 0;
    align-self: center;
    width: 20px;
    height: 64px;
    margin-left: auto;
    margin-right: auto;
    line-height: 64px;
    display: block;
    position: relative;
  }

  .container-28.onboarding-container {
    justify-content: flex-start;
    align-self: center;
    min-height: 100vh;
    margin-top: 0;
    padding-top: 0;
  }

  .container-28.onliner-container {
    padding-left: 0;
    padding-right: 0;
  }

  .brand.w--current {
    align-self: center;
    padding-bottom: 0;
  }

  .offering-intro-body {
    padding-left: 0;
    padding-right: 0;
    font-size: 15px;
    line-height: 30px;
  }

  .offering-intro-body.about-intro-text {
    font-size: 15px;
    line-height: 45px;
  }

  .b58-nav-placeholder {
    flex: 1;
  }

  .text-block-26.onboarding-title {
    padding-left: 25px;
    font-size: 21px;
    line-height: 16px;
  }

  .link-5.onboarding-support-link {
    inset: 0% 0% auto auto;
  }

  .link-5.onboarding-support-link:hover {
    text-decoration: none;
  }

  .container-29 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .container-29.offering-header {
    padding-left: 0;
    padding-right: 0;
  }

  .container-29.who-we-are-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .container-29.whoo-we-worrkk-with-container, .container-29.how-we-work {
    padding-left: 0;
    padding-right: 0;
  }

  .navigation-link {
    font-size: 24px;
    line-height: 30px;
  }

  .top-margin.more.in-team {
    margin-top: 0;
  }

  .top-margin.double {
    margin-top: 40px;
  }

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

  .section-2.feature-section {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .step-wrapper {
    margin-bottom: 35px;
  }

  .column.offering-col {
    padding-left: 0;
    padding-right: 0;
  }

  .column-2.offering-col-2, .column-3.offering-col-3 {
    border-left-style: none;
    padding-left: 0;
    padding-right: 0;
  }

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

  .section-3.insights-preview {
    padding-top: 35px;
    padding-bottom: 20px;
  }

  .section-3.insights-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .top-title-text {
    font-size: 30px;
    line-height: 40px;
  }

  .top-title-text.with-bottom-margin.blog-titlle {
    font-size: 30px;
    line-height: 45px;
  }

  .top-title-text.with-bottom-margin.blog-titlle.offerring-title {
    padding-left: 0;
    padding-right: 0;
    font-size: 30px;
    line-height: 45px;
  }

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

  .blog-post-wrapper {
    margin-bottom: 40px;
  }

  .blog-title {
    font-size: 1.5em;
  }

  .blog-content-second {
    width: 100%;
    margin-bottom: 30px;
  }

  .blog-wrapper {
    flex-direction: column;
    width: 100%;
  }

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

  .section-4.offering-section {
    padding-top: 105px;
    padding-bottom: 70px;
  }

  .team-photo.right-margin._4, .team-photo.right-margin._3 {
    margin-left: 0;
    margin-right: 30px;
  }

  .team-wrapper-third {
    margin-bottom: 20px;
  }

  .team-wrapper-third.reverse {
    flex-direction: row;
    padding-right: 0;
  }

  .div-block.about-58 {
    padding-right: 0;
  }

  .top-title-text-2 {
    font-size: 30px;
    line-height: 40px;
  }

  .about-wrapper {
    height: 400px;
  }

  .service-margin {
    margin-top: 100px;
  }

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

  .offering-grid.offering-page-header {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .offering-grid.first {
    grid-template-rows: auto auto auto auto;
    padding-left: 30px;
  }

  .offering-title {
    font-size: 40px;
  }

  .offering-title.offering-page-header {
    font-size: 75px;
    line-height: 125px;
  }

  .offering-summary {
    font-size: 14px;
  }

  .offering-summary.offering-header {
    font-size: 15px;
    line-height: 30px;
  }

  .text-field-2.organization {
    border-radius: 0;
  }

  .top-title-text-3 {
    padding-left: 15px;
    font-size: 30px;
    line-height: 45px;
  }

  .section-5 {
    padding: 70px 15px 50px;
  }

  .contact-grid {
    align-content: start;
  }

  .form-2 {
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

  .section-6.insight-post-section {
    padding-top: 135px;
  }

  .top-title-text-4 {
    font-size: 30px;
    line-height: 40px;
  }

  .top-title-text-4.in-sub-banner {
    font-size: 36px;
    line-height: 40px;
  }

  .top-title-text-4.in-sub-banner.for-blog {
    font-family: Basis Grotesque, sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
  }

  .container-33 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-42 {
    border-radius: 0;
  }

  .menu-button-2 {
    margin-bottom: 5px;
  }

  .collection-item-7, .columns, .who-we-work-with-col, .who-we-are-col {
    padding-left: 0;
    padding-right: 0;
  }

  .section-7.legal-sectioon {
    padding-top: 140px;
  }

  .legal-title {
    padding-left: 20px;
    font-size: 21px;
    line-height: 16px;
  }

  .legal-rich-text {
    padding-left: 30px;
    padding-right: 30px;
  }

  .div-block-46 {
    padding-left: 30px;
  }

  .collection-list-wrapper-2 {
    padding-left: 17px;
    padding-right: 17px;
  }

  .text-block-38.truncate {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .hero-intro-system.break-word {
    text-align: left;
    max-width: 100vw;
    padding-left: 10px;
    padding-right: 5px;
  }

  .b58-paragraph.b58-paragraph-17 {
    color: var(--oxford-blue);
  }

  .b58-paragraph.b58-paragraph-17.b58-paragraph-encoded.break-word {
    align-self: start;
    display: none;
  }

  .b58-process-line._58-process-line-short {
    align-self: center;
    height: 35px;
  }

  ._58-hero-text {
    margin-bottom: 35px;
  }

  ._58-system-wrap {
    align-self: center;
    padding-left: 0;
    padding-right: 0;
  }

  .b58-section {
    padding-top: 40px;
  }

  .b58-section.b58-section-hero {
    justify-content: center;
    align-items: flex-start;
    height: auto;
    min-height: auto;
    max-height: 82.5vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .b58-section.b58-section-hero.b58-company-hero {
    min-height: auto;
    max-height: none;
    padding-top: 140px;
  }

  .b58-section.b58-section-hero.b58-company-hero.about-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .b58-section.b58-section-intro {
    padding-top: 35px;
  }

  .b58-section.b58-section-cta {
    background-image: linear-gradient(to bottom, var(--oxford-blue), var(--oxford-blue));
  }

  .b58-section.b58-section-blue.section-blue-about.engineering, .b58-section.b58-onliner-section.intro {
    padding-left: 20px;
    padding-right: 20px;
  }

  .b58-section.onboarding-section {
    height: auto;
  }

  .b58-section.b58-legal-section {
    padding-top: 0;
  }

  .b58-navbar-logo.no-select.logo-dark {
    margin-top: 0;
    inset: 0% auto auto 0%;
  }

  .navbar.b58-navbar.navbar-static {
    height: auto;
    margin-bottom: 0;
    padding-bottom: 10px;
    position: relative;
    inset: 0% 0% auto;
  }

  .b58-navbar-container {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding-top: 30px;
    position: relative;
  }

  .b58-navbar-container.main-navbar {
    flex-direction: row;
    align-items: center;
    height: 70px;
    padding-top: 0;
  }

  .b58-navbar-container.legal-navbar-container {
    align-items: flex-start;
    padding-bottom: 0;
  }

  .b58-hero-grid.homepage {
    place-items: start stretch;
    height: 82.5vh;
    margin-top: 0;
    overflow: hidden;
  }

  .grid-16 {
    grid-column-gap: 11px;
    grid-row-gap: 11px;
    grid-template: "."
                   "."
                   "."
                   "."
                   "."
                   "."
                   / 1fr;
  }

  .sticky.sticky-process {
    grid-row-gap: 8px;
    grid-template: ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   ". . . . ."
                   / 1fr 1fr 1fr 1fr 1fr;
  }

  .sticky.sticky-process.sticky-cta {
    grid-column-gap: 0px;
    grid-row-gap: 14px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-areas: ". . . . . . . ."
                         ". . . . . . . ."
                         ". . . . . . . ."
                         ". . . . . . . ."
                         ". . . . . . . .";
    grid-auto-columns: 1.25fr;
    top: 10vh;
  }

  .wrap-block__inner-fw.inner-fw__bottom {
    margin-top: 0;
  }

  .wrap._w-custom.w60-60 {
    padding: 30px 16px 60px;
  }

  .step-block__text-description.text-description-2, .step-block__text-description.text-description-1, .step-block__text-description.text-description-3 {
    padding-right: 5px;
    font-size: 12px;
    line-height: 18px;
  }

  .step-block__text-description.text-description-4 {
    font-size: 12px;
    line-height: 18px;
  }

  .dynamic-section__wrap {
    display: none;
  }

  .dynamic-content__block {
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .dynamic-text {
    font-size: 22px;
  }

  .step-block__text-title.text-title_2, .step-block__text-title.text-title_4, .step-block__text-title.text-title_3, .step-block__text-title.text-title_1 {
    font-size: 16px;
  }

  .text-block-9 {
    align-self: end;
    margin-right: 10px;
  }

  ._58-modal-container.legal-container {
    align-items: flex-start;
    margin-top: 0;
    overflow: visible;
  }

  .div-block-25 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .contact-sub-title {
    padding-bottom: 25px;
  }

  .b58-input {
    border-radius: 0;
  }

  .button-other {
    align-self: end;
    max-width: 90%;
  }

  .grid-22.legal-grid {
    margin-top: 140px;
  }

  .legal-modal-heading {
    align-self: end;
    font-size: 28px;
    line-height: 28px;
  }

  .grid-25 {
    align-content: start;
    place-items: start;
  }

  .big-text.service-provicer {
    align-self: end;
    display: flex;
  }

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

  .text-block-16.home-intro-header.about-intro {
    align-items: flex-end;
  }

  .grid-26 {
    grid-template-rows: auto;
    height: auto;
  }

  .grid-26.onboarding-grid {
    margin-top: 0;
    padding-top: 0;
  }

  .grid-26.onboarding-grid.legal-grid {
    grid-template-columns: 1fr;
    height: auto;
    margin-top: 30px;
    margin-bottom: 0;
    padding-top: 30px;
    padding-left: 0;
    padding-right: 0;
  }

  .grid-26.legal-grid-desktop {
    padding-left: 20px;
    padding-right: 20px;
  }

  .intro-about {
    font-size: 15px;
  }

  .intro-about.engineering {
    text-align: left;
  }

  .intro-about-link {
    font-size: 12px;
  }

  .text-block-22 {
    align-self: center;
    padding-top: 0;
  }

  .grid-34 {
    place-content: start;
    align-self: center;
    place-items: start;
  }

  .container-27 {
    flex: 1;
    display: flex;
  }

  .grid-36 {
    align-self: center;
  }

  .container-28.onboarding-container {
    margin-top: 0;
    padding-top: 0;
  }

  .container-28.b58-legal-container {
    padding-left: 0;
    padding-right: 0;
  }

  .brand {
    align-self: center;
    padding-bottom: 0;
  }

  .brand.w--current {
    padding-bottom: 0;
  }

  .brand.onboarding.onboarding-logo, .brand.legal-logo {
    align-self: flex-start;
  }

  .offering-intro-body.about-intro-text {
    padding-bottom: 70px;
  }

  .b58-nav-placeholder.main-navbar {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .text-block-26.onboarding-title {
    flex: none;
    max-width: 100%;
    padding-top: 10px;
    padding-left: 0;
    font-size: 18px;
    line-height: 36px;
    display: block;
  }

  .b58-legal-content {
    padding-left: 0;
    padding-right: 0;
  }

  .link-5.onboarding-support-link {
    float: none;
    flex: 1;
    display: block;
  }

  .divider-block {
    width: auto;
    height: 70px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .brand-logo {
    margin-left: 15px;
    font-size: 16px;
  }

  .menu-text {
    margin-left: 10px;
    font-size: 12px;
  }

  .container-29 {
    padding-left: 0;
    padding-right: 0;
  }

  .container-29.who-we-are-container {
    padding-top: 70px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-29.how-we-work {
    padding-left: 0;
    padding-right: 0;
  }

  .navigation-link {
    line-height: 30px;
  }

  .services-title.more-bigger {
    font-size: 15px;
  }

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

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

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

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

  .section-3.insights-preview, .section-3.insights-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .top-title-wrapper {
    margin-bottom: 80px;
  }

  .top-title-wrapper.flex {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
  }

  .top-title-text {
    font-size: 26px;
    line-height: 30px;
  }

  .top-title-text.with-bottom-margin {
    margin-bottom: 20px;
  }

  .category-design {
    padding: 2px 9px;
    font-size: 10px;
  }

  .category-design.second-design {
    font-size: 10px;
  }

  .blog-title {
    font-size: 1em;
    line-height: 20px;
  }

  .blog-title.blog-title-dark {
    font-size: 1em;
  }

  .menu-text-2 {
    margin-left: 10px;
    font-size: 12px;
  }

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

  .section-4.offering-section, .section-4.about-who-we-work-with {
    padding-left: 20px;
    padding-right: 20px;
  }

  .team-photo {
    width: 260px;
    height: 260px;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .team-photo.right-margin._3 {
    margin-right: 0;
  }

  .team-wrapper-third {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-wrapper-third.reverse {
    flex-direction: column;
  }

  .div-block {
    padding-right: 0;
  }

  .top-title-text-2 {
    font-size: 26px;
    line-height: 30px;
  }

  .second-photo, .third-photo {
    background-size: cover;
    height: 200px;
  }

  .about-wrapper {
    height: 200px;
  }

  .testimonials-name.in-team {
    font-weight: 500;
  }

  .text-block-30 {
    font-size: 20px;
  }

  .services-content {
    padding-right: 0;
  }

  .services-icon {
    width: 120px;
  }

  .services-number {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }

  .offering-grid {
    grid-template-columns: 1fr 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .offering-grid.offering-page-header {
    grid-template-columns: 1fr 1fr;
  }

  .offering-grid.first {
    grid-template-columns: 1fr 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .offering-title {
    margin-bottom: 0;
    font-size: 25px;
  }

  .offering-summary {
    font-size: 14px;
  }

  .top-title-text-3 {
    margin-bottom: 25px;
    font-size: 30px;
    line-height: 45px;
  }

  .testimonials-part {
    padding-left: 25px;
    padding-right: 25px;
  }

  .testimonials-part.with-photo.fourth {
    min-height: 350px;
  }

  .section-5 {
    padding-left: 5px;
    padding-right: 5px;
  }

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

  .section-6.insight-post-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .top-title-text-4 {
    font-size: 26px;
    line-height: 30px;
  }

  .top-title-text-4.in-sub-banner {
    font-size: 32px;
    line-height: 38px;
  }

  .top-title-text-4.in-sub-banner.for-blog {
    padding-left: 27px;
    padding-right: 27px;
    font-family: Basis Grotesque, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
  }

  .rich-text-blog.insight-body {
    text-align: left;
  }

  .menu-button-2 {
    float: none;
    margin-bottom: 0;
  }

  .who-we-are-col {
    padding-left: 0;
    padding-right: 0;
  }

  .promise-wrapper {
    padding-right: 0;
  }

  .collection-item-8 {
    padding-left: 0;
    padding-right: 0;
  }

  .section-7.legal-sectioon {
    padding-top: 70px;
  }

  .legal-title {
    flex: 1;
    padding-top: 10px;
    padding-left: 0;
    font-size: 18px;
    line-height: 36px;
  }

  .legal-rich-text {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }

  .legal-rich-text p {
    text-align: left;
  }

  .div-block-46 {
    padding-left: 20px;
  }

  .text-block-37.truncate {
    white-space: nowrap;
    font-size: 1em;
  }
}

#w-node-ce504662-30cb-f749-d1b0-72a16acb8f8d-6a49ff9b {
  grid-area: 1 / 1 / 3 / 4;
  place-self: center;
}

#w-node-_84f0938e-a0b9-508b-2072-636b7aa341e8-59447817, #w-node-_84f0938e-a0b9-508b-2072-636b7aa34200-59447817, #w-node-_84f0938e-a0b9-508b-2072-636b7aa34212-59447817, #w-node-_84f0938e-a0b9-508b-2072-636b7aa3421e-59447817 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_9984f1c2-5b81-5505-928e-543ee6a55335-de0a8010 {
  grid-area: 1 / 1 / 3 / 3;
  place-self: center;
}

#w-node-_4a0ddb87-3a2b-0509-8bcc-e0cbe9fab4f5-de0a8010 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  place-self: stretch start;
}

#w-node-e1fb8794-a817-ebb1-ce25-1323d868aa6d-de0a8010 {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-e174e3d8-bd0d-2804-7e38-752510daefc3-10daefc0 {
  grid-area: 2 / 1 / 3 / 13;
}

#w-node-e174e3d8-bd0d-2804-7e38-752510daefc5-10daefc0 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-e174e3d8-bd0d-2804-7e38-752510daefc7-10daefc0 {
  grid-area: 1 / 11 / 2 / 13;
}

#w-node-e174e3d8-bd0d-2804-7e38-752510daefd3-10daefc0 {
  grid-area: 1 / 9 / 2 / 11;
}

#w-node-e174e3d8-bd0d-2804-7e38-752510daefdd-10daefc0 {
  grid-area: 1 / 5 / 2 / 7;
  justify-self: auto;
}

#w-node-e174e3d8-bd0d-2804-7e38-752510daefe9-10daefc0 {
  grid-area: 1 / 7 / 2 / 9;
}

#w-node-_8fd22ee5-8828-5a96-e223-e9b11655768c-16557689 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_8fd22ee5-8828-5a96-e223-e9b1165576c7-16557689 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8fd22ee5-8828-5a96-e223-e9b1165576c8-16557689 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: start;
}

#w-node-_8fd22ee5-8828-5a96-e223-e9b11655768f-16557689 {
  grid-area: 2 / 3 / 5 / 5;
  align-self: start;
}

#w-node-d5021875-8c20-8ba6-d69e-133eb63f0625-b63f0612, #w-node-d5021875-8c20-8ba6-d69e-133eb63f063d-b63f0612, #w-node-d5021875-8c20-8ba6-d69e-133eb63f065b-b63f0612, #w-node-_5d8225fd-53e7-dc49-1fe3-d6b701062aa6-51cb1302, #w-node-ed86061f-041a-ca57-36df-f8937d076ee8-51cb1302, #w-node-_7d7f756a-0bab-d90f-d39f-76dcf142e185-51cb1302, #w-node-b47467fb-1928-1ce5-fbff-e2b75f61e040-51cb1302 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-b02eb471-a445-e1ad-7320-f4b87a53cd71-51cb1302 {
  grid-area: span 1 / span 6 / span 1 / span 6;
  align-self: start;
}

#w-node-_503df951-d0f6-90e1-be7d-29c862d9fe42-01caecc9 {
  grid-area: 1 / 4 / 2 / 7;
  justify-self: stretch;
}

#w-node-_25d5e707-efde-e66e-ec16-54694c74552f-01caecc9 {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-_4e4afd95-01b9-cd6f-c703-39520faa7723-01caecc9 {
  grid-area: 3 / 4 / 4 / 5;
}

#w-node-_2540c88e-9945-a35e-2034-4c4bf39458d3-f39458ca {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_2540c88e-9945-a35e-2034-4c4bf39458ff-f39458ca {
  grid-area: 1 / 7 / 6 / 13;
}

#Name-2-old.w-node-_2540c88e-9945-a35e-2034-4c4bf3945903-f39458ca {
  grid-area: 1 / 1 / 2 / 3;
  align-self: center;
}

#email-2-old.w-node-_2540c88e-9945-a35e-2034-4c4bf3945904-f39458ca {
  grid-area: 2 / 1 / 3 / 3;
}

#Organization-2-old.w-node-_2540c88e-9945-a35e-2034-4c4bf3945905-f39458ca {
  grid-area: 3 / 1 / 4 / 3;
}

#City-2-old.w-node-_2540c88e-9945-a35e-2034-4c4bf3945906-f39458ca {
  grid-area: 4 / 1 / 5 / 3;
}

#Country-3-old.w-node-_2540c88e-9945-a35e-2034-4c4bf3945907-f39458ca {
  grid-area: 5 / 1 / 6 / 3;
}

#Message-2-old.w-node-_2540c88e-9945-a35e-2034-4c4bf3945908-f39458ca {
  grid-area: 7 / 1 / 8 / 3;
}

#w-node-_2540c88e-9945-a35e-2034-4c4bf3945909-f39458ca {
  grid-area: 8 / 1 / 9 / 3;
  align-self: end;
}

#w-node-_0854c163-6159-aedf-3513-56a036e50ddf-f39458ca {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_66dbb01e-efef-8088-61e0-f63c1340bb52-05e0c274 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: stretch start;
}

#w-node-_25c2b9ea-7c96-dd28-fca3-cd0989339a27-05e0c274 {
  grid-area: 1 / 2 / 3 / 4;
}

#w-node-_2c79a0d5-3103-81a3-4c55-03f523f1922e-05e0c274 {
  grid-area: 2 / 1 / 5 / 4;
  align-self: center;
}

#w-node-_210b8d28-fe23-72a2-3e7b-5a94dbf8b4bf-05e0c274 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_2adbc2ca-a174-6109-32bd-32654efff048-05e0c274 {
  grid-area: 5 / 1 / 6 / 2;
}

#w-node-_10c5cd40-103a-d9a3-df95-7366c59aa699-7e02a311 {
  grid-area: 1 / 4 / 3 / 6;
}

#w-node-_10c5cd40-103a-d9a3-df95-7366c59aa696-7e02a311 {
  grid-area: 3 / 4 / 4 / 7;
}

#w-node-_8d8f4f5b-6e1d-9736-603d-84fbc2f21585-7e02a311 {
  grid-area: 3 / 1 / 4 / 4;
}

#w-node-ed4e305d-71e6-b083-596f-a5e2f06d1b64-7e02a311 {
  grid-area: 1 / 1 / 3 / 4;
}

#w-node-df3dfdde-d3bb-b8f7-e9db-8ad119fa6a37-7e02a311 {
  grid-area: 3 / 4 / 4 / 6;
}

#w-node-f0600095-2c5b-d201-073e-e521c35663e1-7e02a311 {
  grid-area: 4 / 1 / 5 / 3;
}

#w-node-fc158975-12e4-c40a-e20e-ecca25b83eda-7e02a311 {
  grid-area: 1 / 1 / 3 / 4;
}

#w-node-b454a65a-dbb6-5261-960f-69ba1658e847-7e02a311 {
  grid-area: 3 / 1 / 4 / 4;
}

#w-node-_9cb88f6e-7700-cef2-5d09-bb989a29d97a-7e02a311 {
  grid-area: 3 / 4 / 4 / 6;
}

#w-node-_0e7bbdb4-6f42-de0d-8d0d-8633185bd2f8-7e02a311 {
  grid-area: 4 / 1 / 5 / 3;
}

#w-node-_8d8f4f5b-6e1d-9736-603d-84fbc2f21585-6fb9f415 {
  grid-area: 3 / 4 / 4 / 7;
}

#w-node-ed4e305d-71e6-b083-596f-a5e2f06d1b64-6fb9f415 {
  grid-area: 1 / 4 / 3 / 7;
}

#w-node-_3ceb4064-d82c-5d18-b3c9-976142ba387b-6fb9f415 {
  grid-area: 3 / 1 / 4 / 4;
}

#w-node-_3ceb4064-d82c-5d18-b3c9-976142ba387d-6fb9f415 {
  grid-area: 1 / 1 / 3 / 4;
}

#w-node-_3ceb4064-d82c-5d18-b3c9-976142ba3887-6fb9f415 {
  grid-area: 3 / 4 / 4 / 6;
}

#w-node-_3ceb4064-d82c-5d18-b3c9-976142ba3894-6fb9f415 {
  grid-area: 4 / 1 / 5 / 3;
}

#w-node-fc158975-12e4-c40a-e20e-ecca25b83eda-6fb9f415 {
  grid-area: 1 / 1 / 3 / 4;
}

#w-node-b454a65a-dbb6-5261-960f-69ba1658e847-6fb9f415 {
  grid-area: 3 / 1 / 4 / 4;
}

#w-node-_9cb88f6e-7700-cef2-5d09-bb989a29d97a-6fb9f415 {
  grid-area: 3 / 4 / 4 / 6;
}

#w-node-_0e7bbdb4-6f42-de0d-8d0d-8633185bd2f8-6fb9f415 {
  grid-area: 4 / 1 / 5 / 3;
}

#w-node-_7cff7bf8-4498-4f3c-55cc-477842ae375c-6fb9f415 {
  grid-area: 3 / 1 / 4 / 4;
}

#w-node-_7cff7bf8-4498-4f3c-55cc-477842ae375e-6fb9f415 {
  grid-area: 1 / 1 / 3 / 4;
}

#w-node-_7cff7bf8-4498-4f3c-55cc-477842ae3768-6fb9f415 {
  grid-area: 3 / 4 / 4 / 6;
}

#w-node-_7cff7bf8-4498-4f3c-55cc-477842ae3775-6fb9f415 {
  grid-area: 4 / 1 / 5 / 3;
}

#w-node-_503df951-d0f6-90e1-be7d-29c862d9fe42-499a261a {
  grid-area: 1 / 4 / 2 / 7;
  justify-self: stretch;
}

#w-node-_25d5e707-efde-e66e-ec16-54694c74552f-499a261a {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-_4e4afd95-01b9-cd6f-c703-39520faa7723-499a261a {
  grid-area: 3 / 4 / 4 / 5;
}

#w-node-_0336f00d-7d30-5a55-9adf-1cae8b9c7c2f-c9a320da {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_0336f00d-7d30-5a55-9adf-1cae8b9c7c32-c9a320da {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_0336f00d-7d30-5a55-9adf-1cae8b9c7c33-c9a320da {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: start;
}

#w-node-_0336f00d-7d30-5a55-9adf-1cae8b9c7c35-c9a320da {
  grid-area: 2 / 3 / 5 / 5;
  align-self: start;
}

#w-node-_503df951-d0f6-90e1-be7d-29c862d9fe42-c9a320da {
  grid-area: 1 / 4 / 2 / 7;
  justify-self: stretch;
}

#w-node-_25d5e707-efde-e66e-ec16-54694c74552f-c9a320da {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-_4e4afd95-01b9-cd6f-c703-39520faa7723-c9a320da {
  grid-area: 3 / 4 / 4 / 5;
}

@media screen and (max-width: 991px) {
  #w-node-_4a0ddb87-3a2b-0509-8bcc-e0cbe9fab4f5-de0a8010 {
    grid-area: span 1 / span 6 / span 1 / span 6;
    place-self: stretch start;
  }

  #w-node-e1fb8794-a817-ebb1-ce25-1323d868aa6d-de0a8010 {
    grid-area: 2 / 1 / 3 / 7;
  }

  #w-node-e174e3d8-bd0d-2804-7e38-752510daefc3-10daefc0 {
    grid-area: 3 / 1 / 4 / 13;
  }

  #w-node-e174e3d8-bd0d-2804-7e38-752510daefc5-10daefc0 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-e174e3d8-bd0d-2804-7e38-752510daefc7-10daefc0 {
    grid-area: 1 / 10 / 2 / 13;
  }

  #w-node-e174e3d8-bd0d-2804-7e38-752510daefd3-10daefc0 {
    grid-area: 1 / 7 / 2 / 10;
  }

  #w-node-e174e3d8-bd0d-2804-7e38-752510daefdd-10daefc0 {
    grid-area: 1 / 1 / 2 / 4;
    justify-self: auto;
  }

  #w-node-e174e3d8-bd0d-2804-7e38-752510daefe9-10daefc0 {
    grid-area: 1 / 4 / 2 / 7;
  }

  #w-node-_2540c88e-9945-a35e-2034-4c4bf39458d3-f39458ca {
    grid-area: 1 / 1 / 2 / 13;
  }

  #w-node-_2540c88e-9945-a35e-2034-4c4bf39458ff-f39458ca {
    grid-area: 3 / 1 / 6 / 13;
  }

  #w-node-_66dbb01e-efef-8088-61e0-f63c1340bb52-05e0c274 {
    grid-area: 1 / 1 / 2 / 4;
    place-self: stretch start;
  }

  #w-node-_25c2b9ea-7c96-dd28-fca3-cd0989339a27-05e0c274 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_2c79a0d5-3103-81a3-4c55-03f523f1922e-05e0c274 {
    grid-area: 2 / 1 / 3 / 4;
    align-self: center;
  }

  #w-node-_2adbc2ca-a174-6109-32bd-32654efff048-05e0c274 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_10c5cd40-103a-d9a3-df95-7366c59aa699-7e02a311 {
    grid-area: 1 / 1 / 3 / 7;
  }

  #w-node-_10c5cd40-103a-d9a3-df95-7366c59aa696-7e02a311 {
    grid-area: 3 / 1 / 4 / 7;
  }

  #w-node-_8d8f4f5b-6e1d-9736-603d-84fbc2f21585-7e02a311 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-ed4e305d-71e6-b083-596f-a5e2f06d1b64-7e02a311 {
    grid-area: 1 / 1 / 2 / 6;
  }

  #w-node-df3dfdde-d3bb-b8f7-e9db-8ad119fa6a37-7e02a311 {
    grid-area: 2 / 4 / 3 / 6;
  }

  #w-node-f0600095-2c5b-d201-073e-e521c35663e1-7e02a311 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-fc158975-12e4-c40a-e20e-ecca25b83eda-7e02a311 {
    grid-area: 1 / 1 / 2 / 6;
  }

  #w-node-b454a65a-dbb6-5261-960f-69ba1658e847-7e02a311 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_9cb88f6e-7700-cef2-5d09-bb989a29d97a-7e02a311 {
    grid-area: 2 / 4 / 3 / 6;
  }

  #w-node-_0e7bbdb4-6f42-de0d-8d0d-8633185bd2f8-7e02a311 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_8d8f4f5b-6e1d-9736-603d-84fbc2f21585-6fb9f415 {
    grid-area: 3 / 1 / 4 / 7;
  }

  #w-node-ed4e305d-71e6-b083-596f-a5e2f06d1b64-6fb9f415 {
    grid-area: 1 / 1 / 3 / 7;
  }

  #w-node-_3ceb4064-d82c-5d18-b3c9-976142ba387b-6fb9f415 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_3ceb4064-d82c-5d18-b3c9-976142ba387d-6fb9f415 {
    grid-area: 1 / 1 / 2 / 6;
  }

  #w-node-_3ceb4064-d82c-5d18-b3c9-976142ba3887-6fb9f415 {
    grid-area: 2 / 4 / 3 / 6;
  }

  #w-node-_3ceb4064-d82c-5d18-b3c9-976142ba3894-6fb9f415 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-fc158975-12e4-c40a-e20e-ecca25b83eda-6fb9f415 {
    grid-area: 1 / 1 / 2 / 6;
  }

  #w-node-b454a65a-dbb6-5261-960f-69ba1658e847-6fb9f415 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_9cb88f6e-7700-cef2-5d09-bb989a29d97a-6fb9f415 {
    grid-area: 2 / 4 / 3 / 6;
  }

  #w-node-_0e7bbdb4-6f42-de0d-8d0d-8633185bd2f8-6fb9f415 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_7cff7bf8-4498-4f3c-55cc-477842ae375c-6fb9f415 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_7cff7bf8-4498-4f3c-55cc-477842ae375e-6fb9f415 {
    grid-area: 1 / 1 / 2 / 6;
  }

  #w-node-_7cff7bf8-4498-4f3c-55cc-477842ae3768-6fb9f415 {
    grid-area: 2 / 4 / 3 / 6;
  }

  #w-node-_7cff7bf8-4498-4f3c-55cc-477842ae3775-6fb9f415 {
    grid-area: 3 / 1 / 4 / 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-e174e3d8-bd0d-2804-7e38-752510daefc3-10daefc0 {
    grid-area: 4 / 1 / 5 / 3;
  }

  #w-node-e174e3d8-bd0d-2804-7e38-752510daefc5-10daefc0 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-e174e3d8-bd0d-2804-7e38-752510daefc7-10daefc0 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-e174e3d8-bd0d-2804-7e38-752510daefd3-10daefc0 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-e174e3d8-bd0d-2804-7e38-752510daefdd-10daefc0 {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: auto;
  }

  #w-node-e174e3d8-bd0d-2804-7e38-752510daefe9-10daefc0 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_8fd22ee5-8828-5a96-e223-e9b1165576c8-16557689 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    align-self: start;
  }

  #w-node-b02eb471-a445-e1ad-7320-f4b87a53cd71-51cb1302 {
    grid-area: span 1 / span 5 / span 1 / span 5;
    place-self: start stretch;
  }

  #w-node-_2540c88e-9945-a35e-2034-4c4bf39458d3-f39458ca {
    grid-area: 1 / 1 / 2 / 13;
  }

  #w-node-_2540c88e-9945-a35e-2034-4c4bf39458ff-f39458ca {
    grid-area: 3 / 1 / 13 / 13;
  }

  #w-node-_2c79a0d5-3103-81a3-4c55-03f523f1922e-05e0c274 {
    grid-area: 2 / 1 / 3 / 4;
    align-self: center;
  }

  #w-node-_10c5cd40-103a-d9a3-df95-7366c59aa699-7e02a311 {
    grid-area: 1 / 1 / 2 / 6;
  }

  #w-node-_10c5cd40-103a-d9a3-df95-7366c59aa696-7e02a311, #w-node-_8d8f4f5b-6e1d-9736-603d-84fbc2f21585-7e02a311 {
    grid-area: 2 / 1 / 3 / 6;
  }

  #w-node-df3dfdde-d3bb-b8f7-e9db-8ad119fa6a37-7e02a311 {
    grid-area: 3 / 1 / 4 / 6;
  }

  #w-node-f0600095-2c5b-d201-073e-e521c35663e1-7e02a311 {
    grid-area: 4 / 1 / 5 / 3;
  }

  #w-node-b454a65a-dbb6-5261-960f-69ba1658e847-7e02a311 {
    grid-area: 2 / 1 / 3 / 6;
  }

  #w-node-_9cb88f6e-7700-cef2-5d09-bb989a29d97a-7e02a311 {
    grid-area: 3 / 1 / 4 / 6;
  }

  #w-node-_0e7bbdb4-6f42-de0d-8d0d-8633185bd2f8-7e02a311 {
    grid-area: 4 / 1 / 5 / 3;
  }

  #w-node-_8d8f4f5b-6e1d-9736-603d-84fbc2f21585-6fb9f415 {
    grid-area: 2 / 1 / 3 / 6;
  }

  #w-node-ed4e305d-71e6-b083-596f-a5e2f06d1b64-6fb9f415 {
    grid-area: 1 / 1 / 2 / 6;
  }

  #w-node-_3ceb4064-d82c-5d18-b3c9-976142ba387b-6fb9f415 {
    grid-area: 2 / 1 / 3 / 6;
  }

  #w-node-_3ceb4064-d82c-5d18-b3c9-976142ba3887-6fb9f415 {
    grid-area: 3 / 1 / 4 / 6;
  }

  #w-node-_3ceb4064-d82c-5d18-b3c9-976142ba3894-6fb9f415 {
    grid-area: 4 / 1 / 5 / 3;
  }

  #w-node-b454a65a-dbb6-5261-960f-69ba1658e847-6fb9f415 {
    grid-area: 2 / 1 / 3 / 6;
  }

  #w-node-_9cb88f6e-7700-cef2-5d09-bb989a29d97a-6fb9f415 {
    grid-area: 3 / 1 / 4 / 6;
  }

  #w-node-_0e7bbdb4-6f42-de0d-8d0d-8633185bd2f8-6fb9f415 {
    grid-area: 4 / 1 / 5 / 3;
  }

  #w-node-_7cff7bf8-4498-4f3c-55cc-477842ae375c-6fb9f415 {
    grid-area: 2 / 1 / 3 / 6;
  }

  #w-node-_7cff7bf8-4498-4f3c-55cc-477842ae3768-6fb9f415 {
    grid-area: 3 / 1 / 4 / 6;
  }

  #w-node-_7cff7bf8-4498-4f3c-55cc-477842ae3775-6fb9f415 {
    grid-area: 4 / 1 / 5 / 3;
  }

  #w-node-_0336f00d-7d30-5a55-9adf-1cae8b9c7c33-c9a320da {
    grid-area: span 1 / span 3 / span 1 / span 3;
    align-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-e174e3d8-bd0d-2804-7e38-752510daefc3-10daefc0 {
    grid-area: 6 / 1 / 7 / 2;
  }

  #w-node-e174e3d8-bd0d-2804-7e38-752510daefc5-10daefc0 {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-e174e3d8-bd0d-2804-7e38-752510daefc7-10daefc0 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-e174e3d8-bd0d-2804-7e38-752510daefd3-10daefc0 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-e174e3d8-bd0d-2804-7e38-752510daefdd-10daefc0 {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: auto;
  }

  #w-node-e174e3d8-bd0d-2804-7e38-752510daefe9-10daefc0 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-b02eb471-a445-e1ad-7320-f4b87a53cd71-51cb1302 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: start stretch;
  }

  #w-node-_25c2b9ea-7c96-dd28-fca3-cd0989339a27-05e0c274 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_10c5cd40-103a-d9a3-df95-7366c59aa699-7e02a311 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_10c5cd40-103a-d9a3-df95-7366c59aa696-7e02a311, #w-node-_8d8f4f5b-6e1d-9736-603d-84fbc2f21585-7e02a311 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-ed4e305d-71e6-b083-596f-a5e2f06d1b64-7e02a311 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-df3dfdde-d3bb-b8f7-e9db-8ad119fa6a37-7e02a311 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-fc158975-12e4-c40a-e20e-ecca25b83eda-7e02a311 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-b454a65a-dbb6-5261-960f-69ba1658e847-7e02a311 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_9cb88f6e-7700-cef2-5d09-bb989a29d97a-7e02a311 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_8d8f4f5b-6e1d-9736-603d-84fbc2f21585-6fb9f415 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-ed4e305d-71e6-b083-596f-a5e2f06d1b64-6fb9f415 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_3ceb4064-d82c-5d18-b3c9-976142ba387b-6fb9f415 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_3ceb4064-d82c-5d18-b3c9-976142ba387d-6fb9f415 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_3ceb4064-d82c-5d18-b3c9-976142ba3887-6fb9f415 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-fc158975-12e4-c40a-e20e-ecca25b83eda-6fb9f415 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-b454a65a-dbb6-5261-960f-69ba1658e847-6fb9f415 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_9cb88f6e-7700-cef2-5d09-bb989a29d97a-6fb9f415 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_7cff7bf8-4498-4f3c-55cc-477842ae375c-6fb9f415 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_7cff7bf8-4498-4f3c-55cc-477842ae375e-6fb9f415 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_7cff7bf8-4498-4f3c-55cc-477842ae3768-6fb9f415 {
    grid-area: 3 / 1 / 4 / 3;
  }
}


@font-face {
  font-family: 'Basis Grotesque';
  src: url('../fonts/BasisGrotesquePro-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Basis Grotesque';
  src: url('../fonts/BasisGrotesquePro-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Basis Grotesque Mono';
  src: url('../fonts/BasisGrotesqueProMono-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Basis Grotesque';
  src: url('../fonts/BasisGrotesquePro-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}