@font-face {
  font-family: Heebo;
  src: url("/assets/fonts/heebo-extrabold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Heebo;
  src: url("/assets/fonts/heebo-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Heebo;
  src: url("/assets/fonts/heebo-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Heebo;
  src: url("/assets/fonts/heebo-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Heebo;
  src: url("/assets/fonts/heebo-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/assets/fonts/inter-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #202020;
  --purple: #781e69;
  --white: #fff;
  --grey: #909090;
  --_lp---color--white: white;
  --blue: #00bed0;
  --light-gray: #f7f7f7;
  --background-gray: #d9d9d9;
  --blue-transparent: #00bed00d;
  --grey-300: #616161;
  --_lp---color--blue-500: #215ca7;
  --_header---header-height: 98px;
  --_header---header-bg: var(--white);
  --_header---header-text-color: var(--black);
  --white-smoke: #eaeaea;
  --_card---card-dark: var(--black);
  --purple-transparent: #781e691a;
  --_lp---color--grey-light: whitesmoke;
  --_lp---color--purple-500: #781e69;
  --_lp---color--blue-700: #2e4483;
  --_lp---color--dark: #202020;
  --_lp---color--teal-500: #0197a9;
  --_lp---color--purple-600: #642a71;
  --_lp---color--black: black;
  --_lp---color--teal-200: #00bed0;
  --_lp---color--yellow: #fbe64d;
  --_lp---color--blue-900: #0d2441;
  --_lp---color--orange: #ef8869;
  --_lp---color--grey: #ebebeb;
  --_card---card-white: white;
  --_lp---color--blue-600: #0c4690;
  --_card---card-purple: var(--purple);
  --_lp---color--blue-1000: #030328;
  --_card---card-grey: var(--grey);
}

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

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

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

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

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

.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: var(--image-i5cec3e91);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

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

.w-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-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--black);
  font-family: Heebo, sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

h1 {
  color: var(--purple);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  color: var(--purple);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
}

h3 {
  color: var(--purple);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  color: var(--purple);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

h5 {
  color: var(--purple);
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

h6 {
  color: var(--purple);
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 10px;
  font-size: 14px;
}

a {
  color: var(--purple);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.5;
}

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

strong {
  font-weight: bold;
}

blockquote {
  border-left: 5px solid var(--purple);
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 10px 20px;
  font-size: 16px;
  font-style: italic;
  line-height: 1.5;
}

.body {
  background-color: #0000;
}

.close-modal {
  color: #000;
  cursor: pointer;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding-top: 3px;
  font-size: 31px;
  line-height: 1.2em;
  display: flex;
  position: absolute;
  inset: -15px -15px auto auto;
  transform: rotate(45deg);
  box-shadow: 1px 1px 5px #888888a3;
}

.nav-link {
  color: var(--black);
  height: 100%;
  padding: 5px 0;
  font-family: Heebo, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  display: block;
}

.nav-link:visited {
  border: 1px none var(--purple);
  border-radius: 0;
  padding-top: 8px;
}

.nav-link.w--current {
  border-bottom: 3.5px solid var(--purple);
  color: var(--black);
  align-items: center;
  margin-top: 0;
  padding-top: 5px;
  padding-bottom: 2px;
  font-family: Heebo, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  text-decoration: none;
  display: flex;
}

.nav-link-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-link-wrap.nav-top-margin {
  padding-top: 8px;
  padding-bottom: 8px;
}

.nav-link-wrap.nav-top-margin:focus {
  color: #781e69;
}

.dt-block {
  background-color: #fff;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 21rem;
  height: 21rem;
  margin-left: 0;
  margin-right: 0;
  padding: 2rem 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 18px 3px #00000017;
}

.button {
  color: var(--white);
  background-color: #202020;
  border-width: 1px;
  border-radius: 5px;
  margin-top: 0;
  padding: 16px 46px;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.button:hover {
  color: var(--white);
  background-color: #000;
}

.button.header.meeting {
  background-color: var(--purple);
}

.button.header.meeting:hover {
  background-color: #631355;
}

.page-wrapper {
  font-family: Heebo, sans-serif;
  overflow: hidden;
}

.page-wrapper.overflow-visible {
  overflow: visible;
}

.footer-2-text-wrap {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.footer-2-text-wrap.vertical {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding-left: 0;
  display: flex;
}

.footer-text {
  color: var(--white);
  margin-top: 10px;
  font-family: Heebo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7em;
}

.footer-text.bold {
  margin-bottom: 0;
  font-family: Heebo, sans-serif;
  font-weight: 400;
}

.footer-text.bold.bottom-margin {
  margin-bottom: 15px;
  font-family: Heebo, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.footer-text.bold {
  margin-bottom: 0;
  font-weight: 400;
}

.footer-text.bold.bottom-margin {
  color: #fff;
  margin-bottom: 0;
  font-family: Heebo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  position: static;
  top: 15px;
}

.footer-text.bold.bottom-margin.mobile {
  margin-top: 0;
  font-size: 16px;
  font-weight: 500;
}

.footer-text.bold.bottom-margin.dad {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}

.footer-text.margin-bottom {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.form__wrap {
  flex-direction: column;
  align-items: flex-start;
}

.footer-2-text-wrap-mobile {
  flex-direction: column;
  align-items: flex-start;
  display: none;
}

.footer-3 {
  flex-direction: column;
  justify-content: flex-start;
  width: 60%;
  max-width: none;
  height: 240px;
  display: block;
  position: relative;
}

.footer-content {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 2fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: start;
  width: auto;
  display: grid;
}

.footer-1 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 280px;
  height: 240px;
  display: flex;
}

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

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

.footer {
  z-index: 12;
  background-color: var(--purple);
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  position: relative;
}

.contact-content {
  justify-content: space-around;
  width: 100%;
  display: block;
}

.h2-terms {
  color: #3b3b3b;
  margin-bottom: 2rem;
  font-family: Heebo, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3em;
}

.h2-terms.top-margin {
  margin-top: 3rem;
  font-weight: 700;
}

.h3-terms {
  color: #3b3b3b;
  margin-bottom: 3rem;
  font-family: Heebo, sans-serif;
  font-size: 18px;
  line-height: 1.3em;
}

.h3-terms.top-margin {
  margin-top: 2rem;
}

.imprint-content {
  width: 100%;
  margin-top: 56px;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.text-terms-2 {
  font-family: Heebo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7em;
}

.text-terms-2.top-margin {
  margin-top: 2rem;
  font-size: 16px;
}

.social-media {
  width: 2rem;
  height: 2rem;
}

.footer-link-3 {
  color: var(--white);
  padding-top: 0;
  padding-bottom: 0;
  font-family: Heebo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
}

.footer-link-3.margin-top {
  margin-top: 0;
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 400;
}

.submit-button-3 {
  color: var(--purple);
  background-color: #fff;
  border-radius: 5px;
  margin-top: 0;
  margin-left: 0;
  padding-left: 36px;
  padding-right: 36px;
  font-family: Heebo, sans-serif;
  font-weight: 700;
}

.paragraph-2 {
  width: 60%;
  font-size: 18px;
  font-weight: 300;
}

.paragraph-2.footerwhite {
  color: #fcfcfc;
  width: 100%;
  margin-top: 16px;
  font-family: Heebo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.paragraph-2.footerwhite.mb-16 {
  margin-bottom: 16px;
}

.text-field-2 {
  border: 1px solid var(--white);
  color: var(--white);
  background-color: #0000;
  border-radius: 5px;
  margin-top: 0;
  padding: 14px 10px 14px 14px;
  font-family: Heebo, sans-serif;
  transition: all .2s;
}

.text-field-2:active {
  background-color: #801f6f;
  border-color: #fff;
}

.text-field-2:focus, .text-field-2:focus-visible, .text-field-2[data-wf-focus-visible] {
  border-color: var(--white);
}

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

.cryptar-logo-footer {
  width: 145px;
  height: 32.925px;
  margin-left: 0;
}

._2col {
  grid-template-rows: 3fr;
  width: 100%;
  height: 100%;
}

._2col.contactform {
  grid-column-gap: 79px;
}

.title-wrap.centered {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.title-wrap.centered.mb-40 {
  margin-bottom: 40px;
}

.title-wrap.centered {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.investor-img_wrap {
  z-index: -1;
  width: auto;
  min-width: 170px;
  margin-right: 20px;
  position: relative;
}

.investor-text {
  width: auto;
}

.bold {
  color: var(--purple);
  font-family: Heebo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
}

.divider12px {
  height: 12px;
  display: none;
}

.success-text {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.team-box {
  grid-column-gap: 32px;
  flex-direction: row;
  flex: 0 auto;
  align-items: flex-start;
  width: 100%;
  margin-top: 0;
  display: flex;
}

.team-box.left-margin {
  padding-left: 100px;
}

.team-box.left-margin.hidden, .team-box.hidden {
  display: none;
}

.access-form {
  display: block;
}

.access-form.d-none {
  display: none;
}

.contact-form-grid-3 {
  grid-column-gap: 20px;
  grid-row-gap: 23px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  margin-top: 0;
  display: grid;
}

.div-block-13 {
  justify-content: flex-end;
  margin-top: 40px;
  display: flex;
}

.textarea-2 {
  border: 1.5px solid var(--purple);
  border-radius: 4px;
  height: 120px;
  min-height: 110px;
  padding-top: 10px;
  padding-bottom: 20px;
}

.textarea-2:focus {
  border-color: #000;
}

.submit-button-4 {
  background-color: var(--purple);
  color: var(--white);
  border-radius: 5px;
  padding: 0 70px;
  font-size: 16px;
  font-weight: 500;
  line-height: 50px;
  transition: all .2s;
}

.submit-button-4:hover {
  background-color: #832273;
}

.contactinfo-box {
  margin-top: 0;
  text-decoration: none;
  display: flex;
}

.findus-icon {
  margin-top: -4px;
  margin-right: 1rem;
}

.finsus-icon {
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
}

.heading {
  font-family: Heebo, sans-serif;
  font-weight: 600;
}

.brand-2 {
  flex-direction: column;
  justify-content: space-between;
  height: 240px;
  display: flex;
}

.footer-2-text-wrap-m {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: auto;
  height: auto;
  padding-top: 8px;
  display: none;
}

.success-message {
  margin-top: 24px;
}

.main-wrapper {
  flex-flow: column;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.main-wrapper.references {
  background-color: #f7f7f7;
}

.main-wrapper.article, .main-wrapper.overflow-visible {
  overflow: visible;
}

.nav {
  z-index: 900;
  align-items: center;
  width: 100%;
  padding-top: 21px;
  padding-bottom: 21px;
  position: absolute;
}

.nav.is-purple {
  background-color: var(--purple);
}

.nav.hide {
  display: none;
}

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

.container-large.slider.padding-bottom {
  padding-bottom: 60px;
}

.container-large.nav-lang {
  padding-right: 7.5%;
}

.container-large.is-narrow {
  padding-left: 140px;
  padding-right: 140px;
}

.container-large.is-mobile-nav {
  z-index: 2;
  position: relative;
}

.container-large.bg-purple {
  background-color: var(--purple);
}

.container-large.lp-hero-container {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.nav-content {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
  margin-top: 10px;
  display: flex;
  position: relative;
}

.hero {
  height: auto;
  margin-top: 0;
  position: relative;
}

.hero-content {
  padding-top: 61px;
}

.nav-logo_link {
  margin-bottom: 5px;
}

.logo-img {
  width: 148px;
  height: 33px;
}

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

.nav-link {
  color: #fff;
  text-transform: capitalize;
  border-bottom: 2px solid #0000;
  flex: none;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: auto;
  height: auto;
  padding: 4px 0;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  position: relative;
}

.nav-link:hover {
  border-bottom: 2px solid var(--white);
  color: var(--white);
  padding-top: 4px;
  font-weight: 400;
}

.nav-link.w--current {
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.nav-link.w--current:hover {
  border-bottom-style: solid;
  font-weight: 400;
}

.nav_careers-wrap {
  justify-content: center;
  align-items: center;
  margin-right: 30px;
  padding: 6px 0 4px;
  text-decoration: none;
  transition: all .3s;
  display: none;
  position: relative;
}

.nav_careers-wrap:hover {
  border-style: none none solid;
  border-width: 2px;
  border-color: var(--white);
  color: #fff;
}

.careers-icon {
  margin-left: 5px;
}

.nav-link-careers {
  color: #fff;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}

.button-big {
  color: #fff;
  background-color: #00bed0;
  border-radius: 5px;
  flex: none;
  padding: 4px 24px;
  font-family: Heebo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  transition: all .3s;
}

.button-big:hover {
  background-color: #009eae;
}

.lang-select-toggle {
  grid-column-gap: 6px;
  color: #fff;
  justify-content: center;
  align-items: center;
  height: 35px;
  padding: 10px;
  line-height: 1;
  display: flex;
}

.lang-select-toggle.w--open {
  background-color: #0003;
  border-radius: 4px;
  transition: background-color .2s;
}

.lang-select {
  grid-column-gap: 8px;
  border: 1px #ffffff24;
  border-radius: 6px;
  margin-left: 0;
  padding: 0;
  font-size: 16px;
  display: flex;
}

.lang-select.mobile {
  color: var(--white);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  height: 35px;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.dropdown-list {
  margin-top: 0;
  padding-left: 0;
  top: 0;
}

.dropdown-list.w--open {
  z-index: 10;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 0;
  padding: 0;
  display: flex;
  position: absolute;
  inset: 100% 0% auto;
}

.hero-text-wrap {
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  display: flex;
}

.h1-hero-white {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 125%;
  position: static;
}

.paragraph-white {
  color: #fff;
  margin-bottom: 0;
  font-family: Heebo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}

.paragraph-white.left {
  margin-bottom: 0;
  font-size: 14px;
}

.paragraph-white.big {
  flex-direction: column;
  font-size: 18px;
  font-weight: 300;
  line-height: 130%;
}

.paragraph-white.big.is-hero-text {
  font-size: 20px;
}

.paragraph-white.big.text-400 {
  font-weight: 400;
}

.h-20 {
  height: 20px;
}

.buy-sell_content {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  margin-top: 60px;
  display: flex;
}

.h-10 {
  height: 10px;
}

.h-10.acctually-h20 {
  height: 20px;
}

.paragraph-black {
  color: var(--black);
  font-family: Heebo, sans-serif;
  font-size: 14px;
  line-height: 160%;
  font-weight: inherit;
  margin-bottom: 0;
  position: static;
}

.paragraph-black.purple {
  color: var(--purple);
}

.paragraph-black.centered {
  text-align: center;
  font-size: 14px;
}

.paragraph-black.thin {
  color: var(--black);
}

.paragraph-black.is-bigger {
  font-size: 18px;
  line-height: 130%;
}

.paragraph-black.spacing-flex-8 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.paragraph-black.spacing-flex-8.m-top-12 {
  margin-top: 12px;
}

.paragraph-black.spacing-flex-8.is-numbers {
  list-style-type: decimal;
}

.paragraph-black.margin-top-16 {
  margin-top: 16px;
}

.h-40 {
  height: 40px;
}

.holistic-box_wrap {
  background-color: #ffffff14;
  border-radius: 12px;
  width: 100%;
  max-width: 100%;
  padding: 30px;
}

.holistic-box_wrap.is-service {
  padding-bottom: 30px;
  transition: background-color .25s;
  display: block;
}

.holistic-box_wrap.is-service:hover {
  background-color: #ffffff29;
}

.holistic-box_wrap.is-service.underline-mobile {
  border-bottom-style: none;
}

.holistic-box_wrap.is-service.hidden, .holistic-box_wrap.hide {
  display: none;
}

.holistic-box_top {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 8px;
  display: flex;
}

.holistic_icon {
  width: 75px;
  height: 70px;
  padding: 4px;
}

.holistic_icon.s_24 {
  margin-bottom: 24px;
}

.holistic-box_top-text {
  margin-left: 0;
}

.holistic-box_label {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.holistic-box_label.is-service {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
}

._w-400 {
  width: 406.333px;
}

.h2-prple {
  color: var(--purple);
  font-size: 33px;
  line-height: 1.3;
}

.h2-prple.centered {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

.manager_box {
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.manager_box.hidden {
  display: none;
}

.manager_img {
  object-fit: cover;
  width: 199.788px;
  height: 100%;
}

.manager_text {
  padding-top: 5px;
  padding-left: 20px;
  padding-right: 0;
}

.manager_text._w-300 {
  padding-top: 10px;
  padding-left: 32px;
}

.h3-purple {
  color: var(--purple);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.h3-purple.big {
  font-size: 24px;
}

.h3-purple.xsmall {
  font-size: 18px;
  font-weight: 500;
}

.h-30 {
  height: 30px;
}

.sample-report {
  padding-top: 120px;
  padding-bottom: 120px;
}

.sample-report.white-bg {
  background-color: #fff;
}

.sample-content {
  padding-top: 0;
  padding-bottom: 0;
}

.sample_img {
  width: 500px;
  min-width: 500px;
}

.sample-content-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.sample-report_btn {
  background-color: #00bed0;
  border-radius: 5px;
  padding: 4px 35px;
  font-size: 16px;
  font-weight: 500;
  line-height: 36px;
  transition: all .3s;
}

.sample-report_btn:hover {
  background-color: #00a9b9;
}

.sample-report_btn.is-samplereport.top-margin-12 {
  margin-top: 12px;
}

.footer_links-wrap {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.footer_links-wrap.top {
  margin-bottom: 20px;
}

.footer_links-wrap.rel {
  left: 0;
}

.footer_phone-nr {
  background-color: #802170;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  width: 172px;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 5px 5px 5px 10px;
  display: flex;
}

.phone-icon {
  width: 17px;
  height: 15.45px;
  margin-right: 5px;
}

.div-block-14 {
  margin-bottom: 0;
}

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

.nav-content_m {
  display: none;
}

.nav-menu-lottie {
  width: 45px;
  position: relative;
  top: 2px;
}

.nav_m-blur, .nav_lt-wrap {
  display: none;
}

.image {
  width: 500px;
  height: auto;
}

.footer_phone-nr-m {
  display: flex;
}

.nav-link_text {
  text-transform: none;
  cursor: pointer;
  flex: 0 auto;
  font-size: 1.35vw;
}

.nav-link_text:hover {
  color: var(--white);
  font-weight: 400;
}

.navigation {
  height: 100%;
}

.investors-say {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
}

.investors-say.hide {
  display: none;
}

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

.investor_top {
  flex-direction: row;
  display: flex;
}

.investor_bottom {
  text-align: left;
  margin-top: 20px;
}

.investors_wrap {
  grid-row-gap: 50px;
  flex-direction: column;
  margin-top: 60px;
  display: flex;
}

.advantages-box {
  background-color: #ffffff14;
  border-radius: 12px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  display: flex;
}

.report-content-wrap {
  grid-column-gap: 40px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: -16px;
  display: flex;
}

.report-img {
  width: 500px;
  height: 100%;
}

.report-img.hide {
  flex: none;
  width: 500px;
}

.report-text_wrap {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 400px;
  display: flex;
}

.side-section {
  grid-column-gap: 40px;
  justify-content: space-between;
  margin-bottom: 80px;
  display: flex;
}

.side-section.left {
  grid-column-gap: 40px;
  flex-direction: row-reverse;
  justify-content: flex-end;
  margin-bottom: 100px;
}

.side-section.left.no-margin {
  margin-bottom: 0;
}

.side-section.margin {
  margin-bottom: 100px;
}

.side-image-wrap {
  flex: 0 auto;
  align-items: center;
  width: 53.2%;
  display: block;
  position: relative;
}

.side-bullets-wrap {
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

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

.sample-cta {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.sample-cta.hidden {
  display: none;
}

.faq__item {
  color: var(--white);
  cursor: pointer;
  border-bottom: 2px solid #ffffff4d;
  margin-bottom: 10px;
}

.faq__item-q {
  color: inherit;
  border-bottom: 2px #fff;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  display: flex;
}

.faq__item-title {
  color: inherit;
  margin-right: 10px;
  font-family: Heebo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 27px;
}

.faq__item-icon {
  background-color: #0000;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.faq__item-arrow {
  stroke: inherit;
  fill: inherit;
  width: 100%;
  height: 100%;
}

.faq__item-a {
  overflow: hidden;
}

.faq__item-p {
  color: inherit;
  border-bottom: 1px #fff;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
}

.book-block {
  grid-column-gap: 100px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: flex-start;
  width: 42%;
  display: flex;
}

.plane_label {
  color: var(--white);
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 700;
}

.plane_label.black {
  color: var(--black);
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 16px;
}

.lightbox-report {
  width: 100%;
  min-width: 100%;
  max-width: none;
  height: 100%;
}

.lightbox-link {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

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

.loop-img {
  color: var(--grey);
  width: 20px;
  height: 20px;
  margin-left: 5px;
}

._w-670 {
  width: 670px;
}

.vendor {
  padding-top: 140px;
  padding-bottom: 120px;
}

.vendor.hide {
  display: none;
}

.vendor-content-wrap {
  grid-column-gap: 20px;
  justify-content: center;
  margin-top: 80px;
  display: flex;
}

.vendor-text_wrap {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  display: block;
}

._w-50 {
  width: 50%;
}

.vendor-img {
  margin-bottom: 20px;
}

.team-content {
  grid-row-gap: 60px;
  flex-direction: column;
  display: flex;
}

.team-member_img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 5px;
  width: 230px;
  min-width: 230px;
  height: 100%;
  min-height: 100%;
}

.team-member_img.hover {
  opacity: 0;
  position: absolute;
}

.team-member_img.is-andre {
  width: 320px;
  min-width: auto;
  max-width: none;
  min-height: auto;
  margin-left: -52px;
}

.team-member_img.is-tina {
  width: 380px;
  max-width: none;
  height: auto;
  min-height: auto;
  margin-left: -78px;
}

.team-member_img.is-simon {
  width: 320px;
  max-width: none;
  margin-left: -50px;
}

.team-member_text {
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 10px;
  display: flex;
}

.team-member_text._w-700 {
  grid-row-gap: 0px;
  max-width: 700px;
}

.team_icon {
  color: var(--black);
  cursor: pointer;
  width: 35px;
  transition: color .2s;
}

.team_icon:hover {
  color: var(--purple);
}

.team_icon.linked {
  width: 28px;
}

.linked-link {
  align-self: flex-start;
  margin-top: 12px;
  margin-bottom: 16px;
}

.text-link {
  color: var(--white);
  background-color: #00bed0;
  border-radius: 8px;
  align-items: center;
  margin-top: 20px;
  padding: 4px 35px;
  font-size: 16px;
  font-weight: 500;
  line-height: 36px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.text-link:hover {
  background-color: #03b3c4;
}

.investor-box {
  grid-column-gap: 40px;
  flex-direction: column;
  flex: 0 auto;
  align-items: flex-start;
  width: 650px;
  margin-top: 0;
  display: flex;
}

.investor-box.is-middle {
  margin-left: auto;
}

.investor_bottom-m {
  text-align: left;
  margin-top: 20px;
  display: none;
}

.calendly {
  z-index: 9999;
  color: #0000;
  background-color: #0000;
  background-image: linear-gradient(#00000080, #00000080);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.modal-view {
  z-index: 30;
  color: #fff;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-color: #fff;
  background-image: var(--image-i306194e9);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 128px 128px;
  background-attachment: fixed;
  background-clip: border-box;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 65%;
  height: 95%;
  padding-top: 0;
  display: flex;
  position: relative;
  inset: 0% 0% auto;
}

.meetingpopup {
  flex: 1;
  padding-top: 0;
}

.v2-sample-report {
  z-index: 9999;
  color: #0000;
  background-color: #0000;
  background-image: linear-gradient(#00000080, #00000080);
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: none;
  position: fixed;
  inset: 0%;
}

.close-modal-report {
  color: #000;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 40px;
  line-height: 1.2em;
  position: absolute;
  inset: -25px -25px auto auto;
  transform: rotate(45deg);
  box-shadow: 1px 1px 5px #888888a3;
}

.h2-black {
  font-weight: 300;
}

.h3-white {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.flag {
  flex: none;
  width: 20px;
  min-width: 20px;
  height: 14.1875px;
  margin-left: 0;
  margin-right: 0;
  display: inline-flex;
}

.lang-select-link {
  grid-column-gap: 6px;
  background-color: var(--white);
  color: var(--purple);
  cursor: pointer;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 35px;
  margin-top: 0;
  padding-left: 10px;
  padding-right: 10px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
  box-shadow: -1px 2px 11px #0003;
}

.lang-select-link:hover {
  background-color: #ffeefc;
}

.lang-text {
  color: var(--white);
  font-family: Heebo, sans-serif;
  font-size: 14px;
  line-height: .8;
  text-decoration: none;
}

.lang-text.purple {
  color: var(--purple);
}

.text-block {
  color: var(--white);
  font-family: Heebo, sans-serif;
  font-size: 14px;
  text-decoration: none;
}

.footer-careers-wrap {
  color: var(--white);
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 5px;
  display: flex;
}

.image-6 {
  width: 13px;
  height: 18.2px;
  margin-left: 5px;
}

._404 {
  align-items: flex-start;
  height: 600px;
  padding-top: 150px;
  display: flex;
}

._404-content {
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 500px;
  height: 100%;
  padding-top: 0;
  display: flex;
}

.image-9 {
  z-index: -1;
  object-fit: cover;
  object-position: 50% 100%;
  flex: 0 auto;
  height: 600px;
  display: block;
  position: absolute;
  inset: 0%;
}

.home-button {
  background-color: #00bed0;
  border-radius: 5px;
  padding: 0 30px;
  font-size: 15px;
  font-weight: 500;
  line-height: 50px;
  transition: all .3s;
}

.home-button:hover {
  background-color: #00a9b9;
}

.v2-schedule-meeting {
  z-index: 1000;
  color: #0000;
  background-color: #0000;
  background-image: linear-gradient(#00000080, #00000080);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.vendor-report-text_wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 490px;
  display: flex;
}

.h-60, .h-60.hide {
  display: none;
}

.text-block-2 {
  font-family: Heebo, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.select-arrow-img {
  width: 15px;
  height: 9px;
  margin-left: 0;
  display: block;
}

.select-arrow-img.hide {
  display: none;
}

.lang-select_dropdown-mob {
  border: 1px #ffffff24;
  border-radius: 6px;
  margin-left: 0;
  padding: 10px;
  font-size: 16px;
  position: absolute;
  inset: 10px -142px auto auto;
}

.pos-icon {
  width: 18px;
  height: 19px;
  display: flex;
}

._w-310 {
  width: 310px;
}

.report-content-left {
  width: auto;
}

.side-image-wrap-m {
  flex: 0 auto;
  width: 53.2%;
  display: none;
  position: relative;
}

.hero-bg-gray-color {
  z-index: -2;
  background-color: #f4f4f4;
  position: absolute;
  inset: 0%;
}

.buy-sell_content-m {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  margin-top: 110px;
  display: none;
}

.h-15 {
  height: 15px;
}

.h-25 {
  height: 25px;
}

.book-block-info {
  flex-flow: column;
  display: flex;
}

.report-img-m {
  width: 500px;
  display: none;
}

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

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

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

.footer-social-wrap-3 {
  padding-top: 20px;
  display: flex;
}

.footer-social-link-2 {
  margin: 0;
  padding-right: 10px;
}

.footer-social-link-2.hidden {
  display: none;
}

.section-references_cms {
  z-index: 1;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.references_cms-content {
  width: 100%;
}

.r-cms_top-title {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.section-padding-normal {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-padding-normal.cms {
  padding-top: 120px;
  padding-bottom: 120px;
}

.r-cms_top-dropdown-wrap {
  align-items: center;
  margin-right: 0;
  display: flex;
  position: relative;
  left: 26px;
}

.r-cms_top-dropdown-wrap.hidden {
  display: none;
}

.fs-dropdown-1 {
  z-index: 1;
  width: 160px;
}

.fs-dropdown_toggle-1 {
  grid-column-gap: 0px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: auto;
  padding: 20px 18px;
  display: flex;
}

.fs-dropdown_toggle-1:hover {
  grid-column-gap: 0px;
  justify-content: space-between;
}

.fs-dropdown_toggle-1.w--open {
  grid-column-gap: 8px;
  justify-content: flex-start;
  width: 300px;
  margin-left: 0;
  margin-right: 0;
  padding-right: 18px;
}

.filters-group.w--open {
  background-color: #fff;
  border-radius: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.filters-group.filters-stages {
  background-color: #fff;
  border-radius: 9px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.filters-group.filter-mandate {
  width: auto;
}

.references-cms {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  margin-top: 60px;
  display: block;
}

.collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  border-right-color: #000;
  flex-flow: row;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  display: grid;
}

.collection-list.filter-complex {
  grid-column-gap: 80px;
  grid-row-gap: 81px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: row;
  justify-content: space-between;
  place-items: stretch stretch;
  width: 100%;
}

.references-cms_item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #fff;
  border-right-width: 30px;
  border-right-color: #000;
  border-radius: 12px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: stretch stretch;
  min-width: 400px;
  height: auto;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  display: block;
  overflow: hidden;
}

.references-cms_item.reference-home {
  min-width: auto;
}

.r-cms_item-text-wrap {
  grid-row-gap: 22px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding: 30px 30px 20px;
  display: flex;
  position: relative;
}

.r-cms_item-text-wrap.new-home {
  padding: 20px;
}

.r-cms_item-status {
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  display: flex;
}

.r-cms_status-item {
  grid-row-gap: 6px;
  flex-direction: column;
  display: flex;
}

.small-label {
  color: #5f5f5f;
  font-weight: 400;
}

.status-label {
  color: var(--purple);
  font-size: 29px;
  font-weight: 700;
  line-height: 1.2;
}

.status-label.is-smaller {
  font-size: 22px;
}

.status-divider {
  color: #5f5f5f;
  background-color: #5f5f5f;
  width: 1px;
  height: 40px;
  margin-left: 30px;
  margin-right: 30px;
}

.status-divider.h-100 {
  color: #c4c4c4;
  width: .8px;
  height: 100%;
  margin-left: 15px;
  margin-right: 15px;
}

.cms-subheadline {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 30px;
}

.casestudy_tag {
  color: #5f5f5f;
  background-color: #f2f2f2;
  border-radius: 8px;
  align-self: center;
  margin-bottom: 0;
  padding: 5px 10px;
  font-size: 16px;
  line-height: 110%;
}

.s-article_content {
  padding-top: 150px;
  padding-bottom: 90px;
}

.cms-article_title {
  margin-bottom: 45px;
  position: relative;
}

.article-back_link {
  position: absolute;
  inset: 10px auto auto -34px;
}

.cms-article_status-wrap {
  grid-row-gap: 40px;
  flex-direction: column;
  width: auto;
  margin-top: 0;
  display: flex;
}

.cms-article_sticky-side {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  place-items: start;
  height: auto;
  max-height: none;
  padding: 0;
  display: flex;
  position: sticky;
  top: 20px;
}

.cms-article_content {
  grid-column-gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
  display: flex;
  position: relative;
}

.cms_sticky-item {
  grid-row-gap: 4px;
  flex-direction: column;
  display: flex;
}

.med-label {
  color: var(--black);
  font-weight: 700;
}

.div-block-23 {
  grid-column-gap: 9px;
  grid-row-gap: 16px;
  background-color: #f7f7f7;
  border-radius: 12px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr minmax(10px, 10px) 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 400px;
  padding: 32px;
  display: grid;
}

.xmed-label {
  color: var(--black);
  text-transform: uppercase;
  font-weight: 700;
}

.press-release-link {
  grid-column-gap: 8px;
  margin-left: 5px;
  display: flex;
}

.r-cms_post-img {
  width: 100%;
}

.section-article_aboutus {
  background-color: #f7f7f7;
}

.s-article_aboutus-content {
  grid-column-gap: 36px;
  align-items: flex-start;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
}

.s-a_aboutus_text {
  grid-row-gap: 21px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.s-a_quote {
  margin-top: 40px;
}

.s-_content, .s-othercases_content {
  grid-column-gap: 36px;
  align-items: flex-start;
  display: flex;
}

.s-o_text {
  width: 30%;
}

.s-o_choises {
  grid-column-gap: 22px;
  width: 70%;
  display: flex;
}

.h3-black {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.h3-black.big {
  font-size: 24px;
}

.view-all-button {
  color: var(--purple);
  background-color: #ededed;
  border-radius: 10px;
  padding: 10px;
  transition: all .2s;
}

.view-all-button:hover {
  background-color: #e5e5e5;
}

.h-90 {
  height: 90px;
}

.collection-item-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 50%;
  margin-right: 22px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.collection-list-wrapper {
  width: 100%;
}

.r-cms_post {
  flex-direction: column;
  width: auto;
  height: 100%;
  transition: transform .25s, opacity .25s;
  display: flex;
}

.r-cms_post:hover {
  opacity: .88;
  transform: translate(0, -4px);
}

.cms-casestudy_post {
  min-width: 400px;
  height: 100%;
}

.cms-casestudy_post.new-home {
  min-width: auto;
}

.dropdown-list-2 {
  z-index: 1;
  background-color: #0000;
}

.div-block-24 {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.radio-button-field {
  color: var(--black);
  cursor: pointer;
  background-color: #fff;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
  font-family: Heebo, sans-serif;
  font-weight: 600;
  transition: all .2s;
}

.radio-button-field:hover {
  background-color: #f2e9f0;
}

.radio-button-field.dd-active {
  background-color: var(--purple);
  color: var(--white);
  font-size: 14px;
  font-weight: 300;
}

.radio-button-field.dd-active:hover {
  background-color: #641657;
}

.div-block-25 {
  text-align: center;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text-block-4 {
  color: var(--purple);
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
  display: flex;
}

.radio-button, .radio-button-2, .radio-button-3, .radio-button-4, .radio-button-5 {
  display: none;
}

.collection-list-2 {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.div-block-27 {
  grid-row-gap: 14px;
  flex-direction: column;
  display: flex;
}

.other-cases-image-corners {
  border-radius: 12px;
  margin-bottom: 0;
}

.aboutus_img {
  object-fit: cover;
  object-position: 50% 25%;
  border-radius: 5px;
  width: 100%;
  max-width: none;
  height: 100%;
  display: inline-block;
  position: static;
  top: -297px;
}

.aboutus_img.hover {
  opacity: 0;
  position: absolute;
  top: auto;
}

.hero-gradient {
  z-index: -1;
  background-image: linear-gradient(135deg, #160112, #2c0224 28%, #781e69);
  width: 100%;
  height: 770px;
  position: absolute;
  inset: 0%;
}

.home-hero_text {
  max-width: 520px;
}

.hero-tablet-wrap {
  display: none;
}

.filter-dd-toggle_text {
  justify-content: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.all-stages, .pre-seed, .series-af, .ma {
  color: var(--black);
  margin-bottom: 0;
  font-family: Heebo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  display: none;
  position: static;
}

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

.allmandates {
  color: var(--black);
  margin-bottom: 0;
  font-family: Heebo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  display: none;
  position: static;
  inset: 50% auto auto 18px;
}

.buyside, .sellside {
  color: var(--black);
  margin-bottom: 0;
  font-family: Heebo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  display: none;
  position: static;
}

.allmandate-color {
  background-color: var(--purple);
  color: var(--white);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  height: 41px;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
  font-family: Heebo, sans-serif;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.allmandate-color:hover {
  color: var(--white);
  background-color: #69185c;
}

._404-open-img-4k {
  z-index: -1;
  object-fit: cover;
  object-position: 50% 100%;
  height: 600px;
  position: absolute;
  inset: 0%;
}

.div-block-33 {
  align-items: flex-start;
  display: flex;
}

.lottie-animation {
  z-index: 1;
  position: relative;
}

.hero-content-lottie {
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
  position: relative;
}

.hero-fade {
  filter: blur(16px);
  background-color: #20202052;
  border-radius: 20px;
  width: 80%;
  height: 40px;
  position: absolute;
  inset: auto 0% 43px 10%;
  transform: rotate(2deg);
}

.allstages-color1 {
  background-color: var(--purple);
  color: var(--white);
  cursor: pointer;
  flex-direction: column;
  height: 41px;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
  font-family: Heebo, sans-serif;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.allstages-color1:hover {
  color: var(--white);
  background-color: #6c175e;
}

.dd-radio_label1 {
  color: #0000;
  width: auto;
  height: auto;
  display: inline-block;
  position: absolute;
  top: -24px;
  left: -123px;
}

.all-stages-start1 {
  color: var(--black);
  margin-bottom: 0;
  font-family: Heebo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  display: block;
  position: static;
}

.ds {
  font-weight: 400;
}

.dd-radio_label-copy {
  color: #0000;
  position: absolute;
  left: 290px;
}

.arrow {
  width: 12px;
  min-width: 12px;
  height: 22px;
  min-height: 22px;
  margin-left: 20px;
}

.case-study-image {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
}

.cms-article_sticky-side-mobile {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  place-items: start;
  height: auto;
  max-height: none;
  padding: 0;
  display: none;
  position: sticky;
  top: 20px;
}

.sample-report_content {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  background-color: var(--white);
  border-radius: 10px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: flex-start center;
  width: 100%;
  max-width: 830px;
  height: 100%;
  max-height: 550px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 71px;
  display: flex;
  position: relative;
  overflow: auto;
}

.sample-report_item {
  grid-row-gap: 12px;
  flex-direction: column;
  display: flex;
}

.h-purple_34 {
  color: var(--purple);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.1;
}

.p-black_22 {
  color: var(--black);
  font-size: 21px;
  line-height: 1.2;
}

.p-gray_14 {
  color: var(--grey);
  margin-bottom: 0;
}

.sample-report_input {
  position: relative;
}

.sample-label {
  background-color: var(--white);
  color: var(--purple);
  margin-bottom: 0;
  padding-left: 4px;
  padding-right: 4px;
  display: inline-block;
  position: relative;
  top: 9px;
  left: 7px;
}

.sample-input {
  border: 1.5px solid var(--purple);
  border-radius: 4px;
  height: 45px;
  margin-bottom: 0;
  font-weight: 500;
}

.sample-input:focus {
  border-color: var(--black);
}

.button-purple {
  background-color: var(--purple);
  border-radius: 6px;
  padding: 4px 80px;
  font-weight: 500;
  line-height: 36px;
}

.form-container {
  grid-column-gap: 26px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 20px;
  display: grid;
}

.checkbox-field {
  align-items: flex-start;
  margin-bottom: 20px;
  padding-left: 0;
  display: flex;
}

.text-size-14 {
  color: var(--black);
  margin-top: auto;
  margin-bottom: auto;
  font-weight: 400;
  line-height: 1.5;
}

.checkbox {
  border: 2px solid var(--purple);
  cursor: pointer;
  border-radius: 3px;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 4px;
  position: relative;
  top: 2px;
}

.checkbox.w--redirected-checked {
  border-width: 2px;
  border-color: var(--purple);
  background-color: #0000;
  background-image: var(--image-i8289573);
  background-position: 50%;
  background-size: cover;
  margin-top: 0;
  margin-left: 0;
}

.checkbox.w--redirected-focus {
  box-shadow: none;
  width: 14px;
}

.checkbox.white {
  border-color: var(--_lp---color--white);
}

.checkbox.white.w--redirected-checked {
  background-image: var(--image-i2017466f);
}

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

.success-message-2 {
  background-color: #0000;
  max-width: 360px;
  padding: 0;
}

.div-block-42 {
  grid-row-gap: 15px;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.image-18 {
  margin-bottom: 15px;
}

.report-close {
  z-index: 1;
  background-color: var(--white);
  cursor: pointer;
  border: 2px solid #000;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: absolute;
  inset: -15px -15px auto auto;
  box-shadow: -1px 1px 12px #00000069;
}

.icon-small {
  width: 25px;
}

.form-block-2 {
  width: 100%;
  margin-bottom: 0;
  display: flex;
}

.link-purple_14 {
  color: var(--purple);
  font-size: 14px;
}

.link-purple_14:hover {
  text-decoration: underline;
}

.arrow-back {
  width: 25px;
}

.sample-report_img {
  object-fit: cover;
  border-radius: 9px;
  width: 100%;
}

.text-span-30 {
  font-size: 11px;
  display: inline-block;
  position: relative;
  bottom: 3px;
}

.form__error-text {
  color: var(--purple);
}

.splide {
  background-color: #f4f4f4;
  padding-bottom: 90px;
}

.splide__track {
  cursor: default;
}

.splide__list {
  flex-direction: row;
  align-items: center;
}

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

.logos-image {
  filter: grayscale();
  object-fit: fill;
  flex: 0 auto;
  max-height: 120px;
}

.logos-image:hover {
  filter: none;
}

.v2-sample-report--modal {
  align-items: flex-start;
  height: 100%;
  max-height: 550px;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.form-2 {
  position: relative;
}

.nav_content {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav_links-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 22px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  left: 44px;
}

.nav_tect-dd {
  cursor: pointer;
  display: block;
}

.nav_tech-dd-toggle {
  grid-column-gap: 5px;
  color: var(--white);
  margin-bottom: 0;
  padding: 4px 0;
  line-height: 1;
  display: flex;
}

.nav_tech-dd-toggle:hover {
  margin-bottom: 0;
  padding-top: 4px;
  padding-bottom: 4px;
}

.tech_dd-icon {
  margin-left: 0;
  margin-right: 0;
  position: static;
}

.text-size-18 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.2;
}

.text-size-18.text-color-purple {
  color: var(--purple);
}

.text-size-11 {
  font-size: 11px;
}

.text-size-11.text-color-lightpurple {
  color: #be86b5;
}

.text-size-11.text-color-lightpurple.custom-dd-tech {
  color: #202020;
  font-weight: 400;
}

.nav_tech-dd-link {
  grid-row-gap: 6px;
  border-bottom: 1px solid #00000029;
  flex-direction: column;
  padding: 14px 24px;
  transition: all .1s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav_tech-dd-link:hover {
  background-color: #fffafe;
  font-weight: 700;
}

.nav_tech-dd-link.w--current {
  border-left: 5px solid var(--purple);
  padding-left: 19px;
  font-weight: 700;
}

.nav_tech-dd-link.no-underline {
  border-bottom-style: none;
}

.nav_tech-dd-list.w--open {
  background-color: #fff;
  min-width: 300px;
  inset: 91% 0% auto;
  box-shadow: -1px 2px 20px #0003;
}

.mobile-nav-blur {
  z-index: 2;
  display: none;
  position: relative;
}

.horizontal-padding-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.text-size-29 {
  font-size: 29px;
  line-height: 1.2;
}

.text-size-29.text-color-white {
  color: var(--white);
  font-size: 29px;
  line-height: 1.2;
}

.text-size-29.text-color-white.text-weight-400 {
  font-weight: 400;
}

.text-size-29.text-color-black {
  line-height: 1.2;
}

.text-size-29.text-color-black.text-weight-400 {
  font-weight: 400;
}

.pre_item {
  grid-column-gap: 20px;
  background-color: #ffffff14;
  border-radius: 12px;
  flex-flow: column;
  align-items: flex-start;
  padding: 30px;
  display: flex;
}

.pre_text {
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.text-color-white {
  color: var(--white);
  margin-bottom: 0;
  line-height: 1.5;
}

.container-medium {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 146px;
  padding-right: 146px;
}

.text-color-black {
  color: #0e0d0d;
  margin-bottom: 0;
  line-height: 1.5;
}

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

.services_core {
  background-color: var(--white);
}

.services_core.is-purple {
  background-color: var(--purple);
}

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

.core_content {
  grid-column-gap: 87px;
  grid-row-gap: 49px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 40px;
}

.core_content._1-col {
  grid-column-gap: 80px;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: start;
}

.core_item {
  grid-column-gap: 14px;
  align-items: center;
  width: 100%;
  display: flex;
}

.core_img {
  width: 50px;
  height: 45px;
}

.core-divider {
  z-index: 10;
  background-color: #e8e8e8;
  width: 3px;
  height: 100%;
  position: relative;
}

.core_text {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.text-size-22 {
  margin-top: 0;
  font-size: 22px;
  line-height: 1.2;
}

.text-size-22.text-color-purple.is-1440 {
  display: none;
}

.text-size-22.text-color-white {
  margin-bottom: 10px;
  font-weight: 700;
}

.text-size-22.text-color-white.is-1440 {
  display: none;
}

.text-size-31 {
  font-size: 31px;
  font-weight: 700;
  line-height: 1.2;
}

.button-wide {
  background-color: var(--blue);
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  padding: 4px 35px;
  font-family: Heebo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 36;
  transition-property: all;
  transition-duration: .3s;
  transition-timing-function: ease;
  display: inline-block;
}

.button-wide:hover {
  background-color: #009eae;
}

.button-wide.background-color-purple {
  background-color: var(--purple);
}

.button-wide.background-color-purple:hover {
  background-color: #671559;
}

.button-wide.hide {
  display: none;
}

.nav_tech-border {
  background-color: var(--purple);
  width: 5px;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.cms_sticky-item-line {
  background-color: #c4c4c4;
  width: 1px;
  height: 100%;
}

.text-size-25 {
  color: var(--black);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
}

.text-size-25.text-color-purple {
  color: var(--purple);
}

.text-size-25.text-color-purple.bold {
  font-weight: 700;
}

.text-size-25.text-weight-600 {
  font-weight: 600;
}

.text-size-24 {
  font-size: 24px;
  line-height: 1.2;
}

.v6-schedule-meeting {
  z-index: 1000;
  color: #0000;
  background-color: #0000;
  background-image: linear-gradient(#00000080, #00000080);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.section-insights_header {
  margin-bottom: 0;
  padding-bottom: 0;
  position: relative;
}

.insights-header_content {
  grid-column-gap: 36px;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
}

.text-size-39 {
  color: var(--purple);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 39px;
  font-weight: 700;
  line-height: 1.2;
}

.insights_copy-wrapper {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 3fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  display: grid;
  position: relative;
}

.insights_copy {
  grid-row-gap: 40px;
  flex-direction: column;
  width: 65%;
  display: flex;
}

.insights_copy._100w {
  width: 100%;
  min-width: 0;
}

.insights_richtext {
  font-family: Heebo, sans-serif;
  font-size: 14px;
}

.insights_richtext h2 {
  color: var(--purple);
  margin-top: 40px;
  margin-bottom: 18px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.insights_richtext p {
  font-size: 16px;
  line-height: 1.5;
}

.insights_richtext.is-references {
  margin-top: -52px;
}

.insights_richtext.is-references h3 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.insights_intro {
  grid-row-gap: 16px;
  flex-direction: column;
  display: flex;
  position: relative;
}

.insights_copy-section {
  grid-column-gap: 32px;
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.insights_copy-text {
  grid-row-gap: 24px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.insights_text-line-wrapper {
  position: relative;
}

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

.insights_content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
  display: flex;
  position: sticky;
  top: 1rem;
}

.insights_portrait2 {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 100px;
  height: 73px;
}

.insights_section-link {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  color: var(--grey);
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.insights_section-link:hover {
  color: var(--purple);
}

.insights_section-link.w--current {
  color: var(--purple);
  -webkit-text-stroke-color: var(--purple);
  font-weight: 700;
  display: flex;
}

.text-size-16 {
  font-size: 16px;
  line-height: 1.2;
}

.insights_section-links {
  grid-row-gap: 15px;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
  display: flex;
}

.cms_article-details {
  grid-column-gap: 9px;
  grid-row-gap: 16px;
  background-color: #f7f7f7;
  border-radius: 12px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr minmax(10px, 10px) 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 400px;
  padding: 32px;
  display: grid;
}

.submit-button-5 {
  color: #781e69;
  background-color: #fff;
  border-radius: 5px;
  margin-top: 0;
  margin-left: 0;
  padding-left: 36px;
  padding-right: 36px;
  font-family: Heebo, sans-serif;
  font-weight: 700;
}

.form-3 {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 15px;
}

.text-field-3 {
  color: #fff;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 5px;
  margin-top: 0;
  padding: 14px 10px 14px 14px;
  font-family: Heebo, sans-serif;
  transition: all .2s;
}

.text-field-3:active {
  background-color: #801f6f;
  border-color: #fff;
}

.text-field-3:focus, .text-field-3:focus-visible, .text-field-3[data-wf-focus-visible] {
  border-color: #fff;
}

.text-field-3::placeholder {
  color: #fff9;
}

.image-19 {
  width: 13px;
  height: 18.2px;
  margin-left: 5px;
}

.content-container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}

.div-block-52 {
  align-items: flex-start;
  display: flex;
}

.div-block-53 {
  margin-bottom: 0;
}

.footer-text-2 {
  color: #fff;
  margin-top: 10px;
  font-family: Heebo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7em;
}

.footer-text-2.margin-bottom {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.footer-text-2.bold {
  margin-bottom: 0;
  font-weight: 400;
}

.footer-text-2.bold.bottom-margin {
  color: #fff;
  margin-bottom: 0;
  font-family: Heebo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  position: static;
  top: 15px;
}

.footer-text-2.bold.bottom-margin.dad {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}

.footer-text-2.bold.bottom-margin.mobile {
  margin-top: 0;
  font-size: 16px;
  font-weight: 500;
}

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

.text-block-7 {
  color: var(--white);
  font-family: Heebo, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.footer-2 {
  z-index: 13;
  background-color: #781e69;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  position: relative;
}

.footer-careers-wrap-2 {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 5px;
  display: flex;
}

.success-message-3 {
  margin-top: 24px;
}

.footer-link-4 {
  color: #fff;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Heebo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
}

.footer-link-4.margin-top {
  max-width: 142px;
  margin-top: 0;
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 400;
}

.paragraph-black-opacity-2 {
  color: #909090;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 27px;
  position: static;
}

.paragraph-black-opacity-2.small {
  color: #696969;
  font-size: 15px;
  text-decoration: none;
}

.bullet-3 {
  background-color: #202020;
  border-radius: 100%;
  width: 7px;
  height: 7px;
  margin-right: 5px;
}

.span-bold-purple {
  color: var(--purple);
  font-weight: 700;
}

.paragraph-white-3 {
  color: #fff;
  font-family: Heebo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
}

.privacy-policy-content-2 {
  width: 100%;
  margin-top: 53px;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.content-container-3 {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}

.h1-2 {
  color: #202020;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Heebo, sans-serif;
  font-size: 60px;
  font-weight: 300;
  line-height: 70px;
  display: block;
}

.link-11 {
  color: #781e69;
}

.h2-terms-3 {
  color: #3b3b3b;
  margin-bottom: 2rem;
  font-family: Heebo, sans-serif;
  font-size: 24px;
}

.h2-terms-3.top-margin {
  margin-top: 3rem;
  font-family: Heebo, sans-serif;
  font-weight: 700;
}

.link-12 {
  color: #781e69;
}

.access-form-2 {
  display: none;
}

.sample-label-2 {
  color: #781e69;
  background-color: #fff;
  margin-bottom: 0;
  padding-left: 4px;
  padding-right: 4px;
  display: inline-block;
  position: relative;
  top: 9px;
  left: 7px;
}

.sample-input-2 {
  border: 1.5px solid #781e69;
  border-radius: 4px;
  height: 45px;
  margin-bottom: 0;
  font-weight: 500;
}

.sample-input-2:focus {
  border-color: #202020;
}

.div-block-55 {
  justify-content: flex-end;
  margin-top: 40px;
  display: flex;
}

.submit-button-6 {
  color: #fff;
  background-color: #781e69;
  border-radius: 5px;
  padding: 0 70px;
  font-size: 16px;
  font-weight: 500;
  line-height: 50px;
  transition: all .2s;
}

.submit-button-6:hover {
  background-color: #832273;
}

.casestudy_tags {
  grid-column-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 38px;
  display: flex;
  position: static;
}

.image-21 {
  width: 100%;
  height: 100%;
}

.visit-us_links-wrap-2 {
  grid-row-gap: 45px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0;
  display: flex;
}

.visitus_lightbox-side-lightbox {
  width: 100%;
  height: 100%;
}

.visitus_lightbox-side-lightbox-image {
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
  height: 100%;
}

.paragraph-white-5 {
  color: #fff;
  margin-bottom: 0;
  font-family: Heebo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
}

.paragraph-white-5.center {
  text-align: left;
}

.visitus_lightbox-side {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
  overflow: hidden;
}

.visit-us_content-wrap-2 {
  grid-column-gap: 22px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

.visitus_lightbox-main-image {
  object-fit: cover;
  object-position: 50% 90%;
  border-radius: 5px;
  width: 100%;
  height: 100%;
}

.visitus_lightbox-main {
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
}

.visitus_lightbox {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .25fr;
  grid-auto-columns: 1fr;
  max-height: 600px;
  display: grid;
}

.img_wrapper {
  position: relative;
}

.img_wrapper.about-image {
  aspect-ratio: 600 / 770;
  justify-content: center;
  align-self: center;
  align-items: flex-start;
  width: 50%;
  max-width: 500px;
  max-height: 670px;
  margin-bottom: 25px;
  display: inline-flex;
}

.img_wrapper.about-image.hide {
  display: none;
}

.team-member-about {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: column;
  font-weight: 700;
  display: flex;
}

.show-hide-button {
  margin-top: 4px;
}

.read-link {
  border-bottom: 1.5px solid #781e69;
  margin-top: 12px;
  font-size: 14px;
  display: inline-block;
}

.read-link.read-more, .read-link.read-less {
  border-bottom-width: 2px;
  font-weight: 600;
}

.read-link.color-white {
  border-bottom-color: var(--white);
  color: var(--white);
}

.read-link.color-white.link-hidden {
  display: none;
}

.button-secondary {
  color: #fff;
  text-align: center;
  text-transform: none;
  background-color: #00bed0;
  border-radius: 4px;
  flex: none;
  min-height: 54px;
  padding: 15px 24px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: opacity .25s;
}

.button-secondary:hover {
  opacity: .88;
}

.button-secondary:active {
  background-color: #fafafa;
  transform: scale(.98);
}

.cell-7 {
  justify-content: center;
}

.form-error {
  color: #fafafa;
  -webkit-text-fill-color: inherit;
  background-color: #00000040;
  background-clip: border-box;
  border-radius: 6px;
  min-height: 60px;
  margin-top: 16px;
  padding-top: 18px;
  padding-left: 24px;
  padding-right: 24px;
  font-weight: 600;
}

.field-label-2 {
  color: #781e69;
  background-image: linear-gradient(#f7f7f7, #fff);
  margin-bottom: 0;
  padding-left: 4px;
  padding-right: 4px;
  font-size: 14px;
  line-height: 1.1;
  position: relative;
  top: 23px;
  left: 7px;
}

.flex-vertical-20 {
  grid-column-gap: 0px;
  grid-row-gap: 20px;
}

.email-form-wrapper {
  grid-column-gap: 12px;
  display: flex;
}

.email-form-wrapper.vertical {
  grid-column-gap: 0px;
  grid-row-gap: 15px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 380px;
  margin-top: -23px;
}

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

.container {
  z-index: 0;
  flex: 1;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 120px 55px;
  position: relative;
}

.book-image {
  object-fit: cover;
  align-self: center;
  width: 400px;
  height: 100%;
}

.quick-stack {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  padding: 0;
}

.cta {
  z-index: 0;
  background-color: var(--light-gray);
}

.form-success {
  color: #202020;
  text-align: center;
  background-color: #fff;
  border-radius: 6px;
  min-height: 54px;
  padding: 15px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.text-field {
  color: var(--black);
  background-color: #fff;
  border: 1.5px solid #781e69;
  border-radius: 4px;
  min-height: 45px;
  margin-bottom: 0;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.4;
}

.text-field:active {
  border-width: 1.5px;
  border-color: #781e69;
}

.text-field:focus {
  border-color: #781e69;
}

.text-field:focus-visible, .text-field[data-wf-focus-visible] {
  border-width: 1.5px;
  border-color: #781e69;
}

.text-field::placeholder {
  color: gray;
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
}

.form-block-4 {
  justify-content: space-between;
  width: 100%;
  max-width: 600px;
  margin-bottom: 0;
}

.thumbnail {
  width: 100%;
  height: 250px;
  margin-bottom: 40px;
  position: relative;
}

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

.text-size-39-3 {
  color: #781e69;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 39px;
  font-weight: 700;
  line-height: 1.2;
}

.text-size-39-3.white {
  color: #fff;
  flex-direction: row;
  align-items: center;
  max-width: 25ch;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% 5%;
}

.text-size-39-3.white.uppercase {
  z-index: 3;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
}

.insights-thumbnail-3 {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.page-progress {
  background-color: var(--purple);
  transform-origin: 0%;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 8px;
  transform: none;
}

.page-progress_bar {
  z-index: 100;
  background-color: var(--white);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  flex-direction: row;
  align-items: center;
  width: 50vw;
  height: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 6px 8px;
  position: sticky;
  inset: auto 0% 0%;
  box-shadow: 0 0 10px #0000001a;
}

.page_progress_background {
  background-color: var(--background-gray);
  border-radius: 1000px;
  width: 100%;
  height: 8px;
}

.insights-author-name {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
}

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

.insights-right {
  position: sticky;
  top: 1rem;
}

.insights-right.md {
  min-width: 0;
  display: none;
}

.insights-right.dt {
  min-width: 0;
  top: 6.5rem;
}

.polygon {
  border-style: solid;
  border-width: 1px;
  border-radius: 2px;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  transform: rotate(45deg);
}

.popup-container {
  z-index: 1000;
  background-color: #0009;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.popup-img {
  width: 100%;
  max-height: 90vh;
  display: block;
}

.popup-content {
  padding: 80px;
  position: relative;
  inset: 0%;
  overflow: hidden;
}

.linsight-link {
  color: var(--black);
}

.linsight-link:hover {
  color: var(--purple);
}

.insights_slider-item {
  background-color: #f7f7f7;
  border-radius: 8px;
  flex-flow: column;
  height: 100%;
  padding: 25px 45px 45px;
  display: flex;
}

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

.insights_slider-mask {
  height: auto;
}

.left-arrow {
  background-color: #00bed0;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: -16px;
  display: flex;
  box-shadow: 0 0 10px #0000001a;
}

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

.chevron-left {
  width: 16px;
  height: 16px;
  transform: rotate(90deg);
}

.right-arrow {
  background-color: #00bed0;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: -16px;
  display: flex;
  box-shadow: 0 0 10px #0000001a;
}

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

.chevron-right {
  width: 16px;
  height: 16px;
  transform: rotate(-90deg);
}

.slide-nav {
  margin-top: 1rem;
  position: static;
}

.slide-text {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.5;
}

.slide-img {
  margin-top: auto;
  box-shadow: 0 0 10px #0000001a;
}

.paragraph-4 {
  color: #202020;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Heebo, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.paragraph-4.caption {
  color: var(--grey);
  margin-top: 15px;
  font-size: 14px;
}

.popup-img_wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.tag-text {
  color: gray;
  letter-spacing: 0;
  text-transform: none;
  font-size: 14px;
  font-weight: 400;
}

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

.share-socials {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.alert {
  color: #202020;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Heebo, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.alert.copied {
  color: #fff;
  background-color: #202020;
  border: 1px solid gray;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 13px;
  display: none;
  position: absolute;
  bottom: -40px;
}

.share-socials_wrapper {
  z-index: 100;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #fff;
  border-radius: 10px;
  flex-flow: column;
  margin-top: 2rem;
}

.share-socials_wrapper.md {
  display: none;
}

.share-social_link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #202020;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: 4px;
  transition: color .25s, transform .25s;
  display: flex;
}

.share-social_link:hover {
  opacity: 1;
  color: #781e69;
  font-weight: 500;
}

.share-social_link:active {
  transform: none;
}

.share-social_link.copy-link {
  margin-left: -2px;
}

.slide {
  height: 800px;
}

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

.map {
  height: 500px;
}

.h2-terms-2 {
  color: #3b3b3b;
  margin-bottom: 2rem;
  font-family: Heebo, sans-serif;
  font-size: 24px;
}

.h2-terms-2.top-margin {
  margin-top: 3rem;
  font-family: Heebo, sans-serif;
  font-weight: 700;
}

.text-span-18 {
  color: #781e69;
  text-decoration: underline;
}

.h1-3 {
  color: #202020;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Heebo, sans-serif;
  font-size: 60px;
  font-weight: 300;
  line-height: 70px;
  display: block;
}

.text-span-19 {
  color: #781e69;
}

.h2-terms-4 {
  color: #3b3b3b;
  margin-bottom: 2rem;
  font-family: Heebo, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3em;
}

.h2-terms-4.top-margin {
  margin-top: 3rem;
  font-weight: 700;
}

.link-9 {
  color: #781e69;
}

.text-span-17 {
  color: #781e69;
  text-decoration: underline;
}

.link-5, .link-6, .link-10, .link-4 {
  color: #781e69;
}

.navbar-bg {
  z-index: 0;
  background-color: var(--purple);
  position: absolute;
  inset: 0%;
}

.link-13 {
  color: #781e69;
}

.services-grid {
  z-index: 1;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.services-grid.hide {
  display: none;
}

.section-experts {
  background-color: #f4f4f4;
  background-image: var(--image-i43a1e1b2), linear-gradient(135deg, #160112, #2c0224 28%, #781e69);
  background-position: 100%, 0 0;
  background-size: cover, auto;
}

.stop-looking-content-wrap {
  background-color: var(--white);
  border-radius: 12px;
  display: flex;
  overflow: hidden;
}

.stop-looking-text-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--purple);
  flex-flow: column;
  max-width: 420px;
  padding: 32px;
  display: flex;
}

.one-stop-animation-wrap {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.one-stop-animation-text-wrap {
  z-index: 2;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  width: 370px;
  display: flex;
  position: relative;
}

.text-title-black {
  color: var(--black);
  margin-bottom: 0;
  font-size: 33px;
  font-weight: 500;
  line-height: 120%;
}

.typed-words {
  color: var(--purple);
  height: 40px;
  margin-bottom: 0;
  font-size: 33px;
  font-weight: 500;
  line-height: 120%;
}

.logo-deepsence {
  max-width: 130px;
}

.deepsense-info-wrap {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  display: flex;
}

.text-deepsense {
  color: var(--white);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 130%;
}

.btn-centered-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
}

.btn-centered-wrap.m-top-30 {
  margin-top: 30px;
}

.faq-text-link {
  font-style: italic;
  font-weight: 700;
}

.post-item {
  transition: opacity .3s cubic-bezier(.165, .84, .44, 1), transform .3s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  overflow: hidden;
}

.post-item:hover {
  opacity: .88;
  transform: translate(0, -4px);
}

.post-item:active {
  transform: scale(.99)translate(0, -4px);
}

.card-text {
  color: #202020;
  padding-right: 16px;
  overflow: hidden;
}

.top {
  grid-row-gap: 8px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.post-content-horizontal {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  display: grid;
}

.post-detail-tag {
  color: #781e69;
  background-color: #781e691a;
  border-radius: 4px;
  padding: 6px 8px;
  font-weight: 600;
  line-height: 1;
  display: block;
}

.heading-3-2 {
  margin-top: 0;
  font-weight: 700;
}

.blog-grid {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 2.5fr 2fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.flex-vertical-16 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

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

.flex-horizontal-4 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  align-items: center;
  display: flex;
}

.post-top-details-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.empty-state {
  display: none;
}

.posts-grid {
  grid-column-gap: 24px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.posts-grid.featured {
  grid-template-columns: 1fr;
  align-items: start;
}

.posts-grid.small {
  grid-row-gap: 24px;
}

.posts-grid.all-articles {
  grid-template-columns: 1fr 1fr 1fr;
}

.bottom {
  grid-row-gap: 0px;
  flex-direction: column;
  display: flex;
}

.post-item-content {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.section-title {
  padding-bottom: 30px;
}

.divider-line {
  background-color: #202020;
  width: 100%;
  height: 1px;
}

.divider-line.primary-colour {
  background-color: #781e69;
  display: none;
}

.divider-line.inset {
  background-color: #e8e8e8;
  max-width: 1440px;
  padding-right: 55px;
  display: none;
  position: absolute;
  inset: auto 0% 0%;
}

.post-link {
  width: 100%;
  height: 100%;
}

.post-link:hover {
  opacity: 1;
}

.post-link:active {
  transform: none;
}

.heading-4 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 700;
}

.post-text {
  color: #646f7f;
  display: block;
}

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

.post-item-image {
  color: #202020;
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.post-item-image.smaller {
  aspect-ratio: 1;
  align-self: flex-start;
}

.heading-2 {
  font-weight: 700;
}

.separator {
  background-color: gray;
  border-radius: 4px;
  width: 4px;
  height: 4px;
}

.separator.hide {
  display: block;
}

.post-item-image-wrapper {
  border-radius: 4px;
  align-items: flex-start;
  margin-bottom: 8px;
  padding-top: 66%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.post-item-image-wrapper.full {
  aspect-ratio: 1;
  color: #202020;
  width: 100%;
}

.service-icon-wrap {
  aspect-ratio: 1;
  width: 75px;
  margin-bottom: 16px;
}

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

.experts-bg-logo {
  z-index: 0;
  opacity: 1;
  width: 260px;
  position: absolute;
  top: -50px;
  right: -65px;
}

.hero-text-button-wrap {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 670px;
  display: flex;
}

.hero-heading-text-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  max-width: 550px;
  display: flex;
}

.section-purple {
  background-color: var(--purple);
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-purple.pb-0 {
  padding-bottom: 0;
}

.section-purple.hide {
  display: none;
}

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

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

.grid-4.hide {
  display: none;
}

.grid-4.bg-grey {
  background-color: var(--light-gray);
}

.section-gray {
  background-color: #f4f4f4;
  padding-top: 90px;
  padding-bottom: 90px;
}

.h2-header-subheader-wrap {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  max-width: 670px;
  display: flex;
}

.h2-header-subheader-wrap.subheader-wider {
  max-width: 1064px;
}

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

.grid-3.bg-light {
  background-color: var(--light-gray);
}

.grid-3.bg-dark {
  background-color: var(--black);
}

.grid-3.bg-purple {
  background-color: var(--purple);
}

.references-btn-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.section-white {
  padding-top: 90px;
  padding-bottom: 90px;
}

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

.grid-2.bg-light {
  background-color: var(--light-gray);
}

.inner-hero {
  background-color: var(--purple);
  background-image: var(--image-7b40fadb);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-start;
  align-items: center;
  height: 770px;
  display: flex;
}

.inner-hero.photo-mountain {
  background-image: var(--image-i45b8d5fe);
  background-position: 50%;
}

.inner-hero.image-weight {
  background-image: var(--image-6253af19);
  background-position: 50%;
}

.inner-hero.image-rocket {
  background-image: var(--image-i56a9f29e);
  background-position: 50%;
}

.inner-hero.image-tree {
  background-image: var(--image-689b3a7e);
  background-position: 60%;
}

.inner-hero.image-runner {
  background-image: var(--image-i1b21aefe);
  background-position: 55%;
}

.inner-hero.image-city {
  background-image: var(--image-1a40cd7a);
  background-position: 80%;
}

.inner-hero.image-lock {
  background-image: var(--image-5c0cbf9b);
  background-position: 0;
  background-size: cover;
}

.heading-photo-wrap {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

.photo--rocket {
  justify-content: flex-start;
  align-items: center;
  height: 370px;
  display: flex;
  overflow: hidden;
}

.image-104 {
  width: 100%;
}

.core-grid {
  grid-column-gap: 4vw;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.h2_text-white {
  color: var(--white);
}

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

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

.report-padding-top {
  padding-top: 32px;
}

.photo-overlay {
  z-index: 2;
  background-color: #0006;
  border-radius: 8px;
  position: absolute;
  inset: 0%;
}

.heading-3-3 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
}

.bottom-2 {
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.certificate-icon-wrap {
  max-width: 100px;
  position: absolute;
  bottom: 0%;
  right: 0%;
}

.about-image-blocks-wrap {
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.about-blocks-wrap {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: row;
  width: 100%;
  display: flex;
}

.about-blocks-wrap.hide {
  display: none;
}

.img_wrapper-about-team {
  max-width: 230px;
  max-height: 345px;
  position: relative;
  overflow: visible;
}

.content-project-dd {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 32px;
  display: flex;
}

.nav-underline {
  background-color: #fff;
  height: 2px;
  position: absolute;
  inset: auto 0% 0%;
}

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

.heading-5 {
  text-align: center;
  align-self: auto;
  display: block;
}

.banner-wrap {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  background-color: #fff;
  border-radius: 12px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  min-width: 50%;
  max-width: 696px;
  padding: 24px;
  display: flex;
}

.banner-upper-side {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  display: flex;
}

.banner-quote-side {
  background-color: #6e25660a;
  border: 1px solid #6e25662e;
  border-radius: 12px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: 298px;
  padding: 30px;
  display: flex;
}

.banner-texts-wrap {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  flex-flow: column;
  display: flex;
}

.text_banner-title {
  color: #00bed0;
  border-bottom: 1px solid #00bed0;
  margin-bottom: 0;
  padding-bottom: 12px;
  font-size: 28px;
  line-height: 118%;
}

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

.text_banner-subhead {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 130%;
}

.banner_list-wrap {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-flow: column;
  max-width: 436px;
  display: flex;
}

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

.banner_icon-wrap {
  aspect-ratio: 1;
  flex: none;
  width: 22px;
}

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

.banner_li-text-wrap {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  display: flex;
}

.text_banner-li-title {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 115%;
}

.text_banner-li-desc {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 115%;
}

.banner-quote_upper-side {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.banner-quote_person {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.banner-quote_icon {
  aspect-ratio: 1;
  flex: none;
  width: 50px;
}

.text_banner-quote {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 130%;
}

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

.banner-quote_photo {
  aspect-ratio: 1;
  border-radius: 1000px;
  flex: none;
  width: 80px;
  overflow: hidden;
}

.banner-quote_name-wrap {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-flow: column;
  display: flex;
}

.text_quoter-name {
  color: var(--purple);
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 115%;
}

.text_quoter-job {
  color: gray;
  margin-bottom: 0;
  line-height: 118%;
}

.banner-quote_logo-wrap {
  height: 40px;
}

.banner-quote_logo-wrap.is_main {
  width: 88px;
}

.banner-quote_logo-wrap.is_telescope {
  width: 163px;
}

.about-image-icon {
  width: 141px;
  position: absolute;
}

.about-image-icon.is-top {
  top: -1.6rem;
  left: -1.5rem;
}

.about-image-icon.is-bottom {
  bottom: -3%;
  right: -1.5rem;
}

.about_blocks-line {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  display: flex;
}

.about_blocks-line.is_lower {
  padding-top: 73px;
}

.about-block {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  color: var(--white);
  background-color: #ffffff14;
  border-radius: 12px;
  flex-flow: column;
  padding: 25px;
  transition: background-color .25s;
  display: flex;
}

.about-block:hover, .about-block.is-brighter {
  background-color: #ffffff47;
}

.about-block_icon-wrap {
  aspect-ratio: 1;
  background-color: #fff6;
  border-radius: 10px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 74px;
  transition: background-color .25s;
  display: flex;
}

.about-block_icon-wrap.is-white {
  background-color: #fff;
}

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

.about_icon {
  aspect-ratio: 1;
  flex: none;
  width: 44px;
  position: relative;
}

.h-8 {
  height: 8px;
}

.rsg_wrap {
  grid-column-gap: 3vw;
  grid-row-gap: 3vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.rsg-col {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  display: flex;
}

.rsg-icon-line {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.rsg-icon-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #0ab3cb;
  border-radius: 30px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 150px;
  display: flex;
  position: relative;
  box-shadow: 0 0 4px #00000040;
}

.rsg-icon-wrap.is-s {
  background-color: #347bb4;
}

.rsg-icon-wrap.is-g {
  background-color: #7b1e8b;
}

.rsg-icon {
  aspect-ratio: 1;
  flex: none;
  width: 64px;
  height: 64px;
}

.rsg-line {
  color: #0ab3cb;
  width: 16px;
  height: 50px;
}

.rsg-line.is-s {
  color: #347bb4;
}

.rsg-line.is-g {
  color: #7b1e8b;
}

.rsg-content-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: #0ab3cb1a;
  border-radius: 10px;
  flex-flow: column;
  height: 100%;
  min-height: 372px;
  padding: 30px 16px;
  display: flex;
  box-shadow: 0 0 4px #00000026;
}

.rsg-content-wrap.is-s {
  background-color: #347bb41a;
}

.rsg-content-wrap.is-g {
  background-color: #7b1e8b1a;
}

.rsg-content-wrap.min-h-none {
  min-height: auto;
}

.rsg-li {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: baseline;
  display: flex;
}

.rsg-dot {
  aspect-ratio: 1;
  background-color: #0ab3cb;
  border-radius: 1000px;
  flex: none;
  width: 12px;
}

.rsg-dot.is-s {
  background-color: #347bb4;
}

.rsg-dot.is-g {
  background-color: #7b1e8b;
}

.rsg-dot.is-w {
  background-color: var(--white);
}

.text-rsg {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
}

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

.text-rsg.is-bigger {
  font-size: 18px;
}

.rsg-arrow {
  width: 14vw;
  height: 3.8vw;
  position: absolute;
  left: 16vw;
}

.button-up {
  z-index: 1000;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  aspect-ratio: 1;
  background-color: var(--purple);
  color: var(--white);
  border: 1px solid #fff;
  border-radius: 1000px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  font-weight: 500;
  transition: background-color .25s;
  display: flex;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
}

.button-up:hover {
  background-color: #661458;
}

.icon-up {
  aspect-ratio: 1;
  width: 24px;
}

.button-coffee {
  color: #fff;
  background-color: #00bed0;
  border-radius: 5px;
  flex: none;
  padding: 4px 35px;
  font-family: Heebo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 36px;
  transition: all .3s;
}

.button-coffee:hover {
  background-color: #009eae;
}

.button-coffee.button-wide.hide {
  display: none;
}

.buy-sell_box {
  background-color: #fff;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 50%;
  min-height: 760px;
  padding: 94px 30px 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.paragraph-purple {
  color: #781e69;
  font-size: 21px;
  font-weight: 400;
  line-height: 32px;
}

.buy-sell_bottom-btm {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 30px;
  padding-right: 40px;
  display: none;
}

.buy-sell_bottom {
  height: auto;
  display: none;
}

.text-7c7c7c {
  color: #7c7c7c;
  font-weight: 500;
}

.buy-sell_content-2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  margin-top: 60px;
  display: flex;
}

.buy-sell_company-logo {
  width: 100px;
  margin-bottom: 10px;
}

.h2-white {
  z-index: 1;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
}

.h2-white.normal {
  align-items: center;
  font-size: 23px;
  font-weight: 300;
}

.h2-white.normal.tabs {
  font-weight: 400;
}

.buy-sell_btn-wrap {
  justify-content: center;
  align-items: center;
  margin-top: 44px;
  margin-bottom: 0;
  display: flex;
}

.portrait {
  width: 80px;
  height: 80px;
}

.quote-icon {
  flex: none;
  width: 56px;
  height: 76px;
}

.quote-icon.absolute {
  position: absolute;
  right: 0;
}

.quote-wrap {
  justify-content: center;
  align-items: flex-end;
  min-width: 52px;
  display: flex;
}

.landing-testimonial-wrap {
  grid-row-gap: 14px;
  background-color: #f7f7f7;
  border-radius: 8px;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  margin-left: 16px;
  margin-right: 16px;
  padding: 30px;
  display: flex;
}

.h3-purple-2 {
  color: #781e69;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.h3-purple-2.xsmall {
  font-size: 18px;
  font-weight: 500;
}

.text-span-28 {
  font-weight: 300;
}

.testimonial-align-right {
  grid-column-gap: 12px;
  align-items: center;
  display: flex;
}

.landing-test-profile {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.main-wrap {
  border-left: 2px #781e69;
  position: relative;
}

.landing-testiomnial_logos {
  justify-content: space-between;
  display: flex;
}

.landing-testiomnial_logos.telescope {
  align-items: center;
  margin-top: -10px;
}

.buy-sell-box_purple-bg {
  background-color: #00bed0;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 18px 30px 16px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.paragraph-black-2 {
  color: #202020;
  margin-bottom: 0;
  font-family: Heebo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  position: static;
}

.paragraph-black-2._5px {
  position: relative;
  bottom: 18px;
}

.telescope {
  position: relative;
  left: 0;
}

.div-block-28 {
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}

.div-block-28.row-15 {
  grid-row-gap: 15px;
}

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

.main-capital {
  width: 139px;
  height: 76px;
  position: relative;
  left: -16px;
}

.paragraph-black-3 {
  color: #202020;
  margin-bottom: 0;
  font-family: Heebo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  position: static;
}

.paragraph-black-3._5px {
  position: relative;
  bottom: 18px;
}

.text-span-31 {
  font-weight: 300;
}

.div-block-56 {
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}

.div-block-56.row-15 {
  grid-row-gap: 15px;
}

.buy-sell_content-new {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  margin-top: 60px;
  display: none;
}

.text-span-27 {
  font-weight: 300;
}

.paragraph-black-4 {
  color: #202020;
  margin-bottom: 0;
  font-family: Heebo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  position: static;
}

.paragraph-black-4._5px {
  position: relative;
  bottom: 18px;
}

.text-span-32 {
  font-weight: 300;
}

.landing-test-top {
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}

.landing-test-top.row-15 {
  grid-row-gap: 15px;
}

.buy-sell_box-2 {
  background-color: #fff;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 50%;
  min-height: 830px;
  padding: 94px 30px 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.span-bold-white {
  font-weight: 700;
}

.landing-testimonial-wrap-2 {
  grid-row-gap: 14px;
  background-color: #f7f7f7;
  border-radius: 8px;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  margin-top: 40px;
  padding: 30px;
  display: flex;
}

.paragraph-black-5 {
  color: #202020;
  margin-bottom: 0;
  font-family: Heebo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  position: static;
}

.paragraph-black-5._5px {
  position: relative;
  bottom: 18px;
}

.text-span-33 {
  font-weight: 300;
}

.landing-testimonial-wrap-3 {
  grid-row-gap: 14px;
  background-color: #f7f7f7;
  border-radius: 8px;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  margin-top: 40px;
  padding: 30px;
  display: flex;
}

.paragraph-black-6 {
  color: #202020;
  margin-bottom: 0;
  font-family: Heebo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  position: static;
}

.svg-over {
  opacity: 0;
  justify-content: center;
  align-items: center;
  transition: opacity .25s;
  display: flex;
  position: absolute;
  inset: 0%;
}

.svg-over.up {
  justify-content: center;
  align-items: flex-start;
}

.svg-over.bag {
  width: 75%;
  top: 1%;
  left: 13%;
}

.svg-over.heart {
  width: 90%;
  left: 7%;
}

.svg-over.diamond {
  width: 80%;
  top: -3%;
  left: 10%;
}

.logos {
  background-color: #f4f4f4;
  padding-bottom: 90px;
}

.logos-grid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: flex-start center;
  display: grid;
}

.logos-wrap {
  background-color: var(--white);
  filter: grayscale();
  border-radius: .75rem;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 86px;
  padding: 12px 48px;
  transition: filter .25s;
  display: flex;
}

.logos-wrap:hover {
  filter: none;
}

.image-logo {
  width: 100%;
  max-width: none;
}

.i_main-logo {
  width: 120px;
  max-width: none;
  height: 50px;
}

.i-logo-bc {
  width: 125px;
  max-width: none;
  height: 50px;
}

.i-logo-lfr {
  max-width: none;
  height: 50px;
}

.bold-text-4 {
  font-size: 33px;
}

.logos-grayscaling {
  display: none;
}

.clients {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: wrap;
  justify-content: center;
  display: flex;
}

.client-box {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--blue-transparent);
  border-radius: 10px;
  flex-flow: column;
  flex: none;
  width: 100%;
  max-width: calc(50% - 20px);
  padding: 32px;
  display: flex;
}

.client-box-top {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  display: none;
}

.client-img-wrap {
  background-image: var(--image-739a8183);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 5px 50% 50% 5px;
  width: 162px;
  height: 178px;
  overflow: hidden;
  box-shadow: 0 0 4px #0003;
}

.client-details {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.client-name {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
}

.client-img {
  object-fit: fill;
}

.client-img.hide {
  display: none;
}

.client-position {
  color: var(--grey-300);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.client-company {
  color: var(--grey-300);
  font-size: 20px;
  line-height: 24px;
}

.text-list {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  margin-bottom: 1rem;
  display: flex;
}

.rsg-content-list {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  display: flex;
}

.cs-card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: var(--white);
  background-image: linear-gradient(16deg, #000c, #0009 30%, #0006 52%, #0000000f 79%, #0000 92%);
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: -40px 40px 30px #00000040;
}

.cs-card-info {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.cs-card-title {
  font-size: 40px;
  line-height: 1.2;
}

.cs-card-title.text-color-white {
  font-size: 32px;
}

.cs-card-descr {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.cs-img-wrap {
  width: 100%;
  position: relative;
}

.cs-img.cs-img-book {
  object-fit: cover;
  width: auto;
  max-width: 260px;
  max-height: 320px;
  position: absolute;
  top: 20%;
  left: 86px;
  right: auto;
  transform: rotate(-10deg)translate(0, -50%);
}

.card {
  grid-column-gap: 19px;
  grid-row-gap: 19px;
  background-color: #ffffff14;
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 30px;
  display: flex;
}

.card.hide {
  display: none;
}

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

.card__icon {
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.card__icon.card__icon--lg {
  width: 75px;
  height: 75px;
}

.card__icon-img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.card__title {
  color: inherit;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
}

.card__text {
  color: inherit;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
}

.form-track-fields {
  display: none;
}

.grid-case-study {
  grid-column-gap: 75px;
  grid-row-gap: 75px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 55px;
  display: grid;
}

.cs-card-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 55px 55px 90px;
  display: grid;
}

.card__link {
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  text-decoration: underline;
}

.modal {
  z-index: -999;
  opacity: 0;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.modal.modal--active {
  z-index: 1005;
  opacity: 100;
  visibility: visible;
}

.modal.modal--submenu {
  justify-content: center;
  align-items: flex-start;
  top: 80px;
}

.modal__wraper {
  z-index: 1001;
  border-radius: 1rem;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 100%;
  max-width: 992px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.modal__content {
  width: 100%;
  height: auto;
  max-height: 80vh;
  padding: 40px;
  overflow: auto;
}

.modal__close {
  background-color: var(--white);
  color: var(--black);
  cursor: pointer;
  border: 2px solid #000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: color .2s;
  display: flex;
  position: absolute;
  top: -20px;
  right: -20px;
  box-shadow: 0 2px 5px #0003;
}

.modal__close:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.modal__close.hide {
  display: none;
}

.modal-close-svg {
  color: inherit;
  flex: none;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 80%;
  height: 80%;
  display: flex;
}

.modal__backdrop {
  z-index: 1;
  cursor: pointer;
  background-color: #00000080;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
}

.modal__body {
  background-color: var(--white);
  border-radius: .75rem;
  width: 100%;
  height: auto;
  min-height: 400px;
  position: relative;
}

.modal__scripts {
  display: none;
}

.modal__example_div {
  height: 1500px;
}

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

.lang-select-label {
  flex: none;
}

.lang-select-dropdown.w--open {
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  top: 100%;
  overflow: hidden;
}

.bold-text-5 {
  font-size: 18px;
  font-weight: 400;
}

.btn {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 2px solid var(--blue);
  background-color: var(--blue);
  color: var(--white);
  cursor: pointer;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  padding: 4px 33px;
  font-size: 16px;
  font-weight: 400;
  line-height: 36px;
  transition: all .2s;
  display: inline-flex;
}

.btn:hover {
  background-color: #469cac;
  border-color: #469cac;
}

.btn.btn--outline {
  color: var(--blue);
  background-color: #0000;
}

.btn.btn--outline:hover {
  background-color: var(--blue);
  color: var(--white);
}

.btn.btn--lg {
  min-width: 160px;
  font-size: 22px;
  line-height: 54px;
}

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

.btn.btn--purple:hover {
  filter: brightness(101%);
  background-color: #55174b;
}

.btn.btn--purple.lp-cta {
  font-size: 22px;
  font-weight: 600;
  line-height: 50px;
}

.btn.btn--white {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--purple);
}

.btn.btn--white:hover {
  border-color: var(--purple);
}

.btn.btn--sm {
  min-width: 80px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 12px;
  line-height: 26px;
}

.btn.btn--outline-white {
  border-top-color: var(--white);
  border-right-color: var(--white);
  border-bottom-color: var(--white);
  border-left-color: var(--white);
  background-color: #0000;
}

.btn.btn--outline-white:hover {
  border-color: var(--purple);
  background-color: var(--purple);
  color: var(--white);
}

.btn.btn--outline-purple {
  border-color: var(--purple);
  background-color: var(--white);
  color: var(--purple);
}

.btn.btn--outline-purple:hover {
  background-color: var(--purple);
  color: var(--white);
}

.btn.btn--outline-purple.btn--sm {
  border-width: 1px;
}

.btn.btn--navbar__cta {
  min-width: 120px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 14px;
}

.btn.lp-cta {
  font-size: 22px;
  line-height: 50px;
}

.btn.lp-cta.btn--purple.is-mobile {
  display: none;
}

.hero-cta {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.form {
  visibility: visible;
}

.form.bg-blue-500 {
  background-color: var(--_lp---color--blue-500);
  color: var(--_lp---color--white);
}

.form__success {
  text-align: left;
  background-color: #fff;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.form__btm.form__btm--cta {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
}

.form__row {
  grid-column-gap: 26px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
}

.form__row.form__row--2cols {
  grid-column-gap: 26px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.form__field {
  width: 100%;
  position: relative;
}

.form__input {
  border: 1.5px solid var(--purple);
  border-radius: 4px;
  height: 45px;
  margin-bottom: 0;
  font-weight: 500;
}

.form__input:hover, .form__input:focus {
  border-color: var(--black);
}

.form__label {
  background-color: var(--white);
  color: var(--purple);
  margin-bottom: 0;
  padding-left: 4px;
  padding-right: 4px;
  font-weight: 700;
  display: inline-block;
  position: relative;
  top: 9px;
  left: 7px;
}

.form__info {
  width: 100%;
}

.form__title {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}

.form__title.mb-20 {
  margin-bottom: 20px;
}

.form__title.text-white {
  color: var(--_lp---color--white);
}

.form__title.text-white.text-uppercase {
  text-transform: uppercase;
}

.form__text {
  color: var(--grey);
  line-height: 1.4;
  text-decoration: none;
}

.form__text.text-white {
  color: var(--_lp---color--white);
}

.form__head-img {
  background-image: radial-gradient(circle, #5c1751, #5c1751 20%, #67185a 21% 40%, #701a61 41%, #741c65 60%, #781e69 61% 79%, #5c1751 80% 104%);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 160px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  overflow: hidden;
}

.form__head-img.mb-20 {
  margin-bottom: 20px;
}

.form__check {
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.link-purple {
  color: var(--purple);
  font-weight: 700;
  font-size: inherit;
  text-decoration: underline;
}

.link-14 {
  font-size: inherit;
}

.form__picture {
  object-fit: contain;
  width: 100%;
  max-width: 300px;
  height: auto;
  max-height: 200px;
}

.form__picture.form__picture--book {
  max-height: 150px;
  transform: rotate(-12deg);
}

.navbar {
  z-index: 100;
  height: var(--_header---header-height);
  background-color: var(--_header---header-bg);
  color: var(--_header---header-text-color);
  --_header---header-height: 80px;
  --_header---header-bg: transparent;
  --_header---header-text-color: var(--white);
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: fixed;
  top: 0;
}

.navbar.bg-purple {
  background-color: var(--purple);
  color: var(--white);
}

.navbar__container {
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 55px;
  padding-right: 55px;
  display: flex;
  position: relative;
}

.navbar__brand {
  cursor: pointer;
  color: inherit;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  width: 149px;
  height: 33px;
  margin-left: 0;
  margin-right: auto;
  transition-property: color;
  transition-duration: .2s;
  transition-timing-function: ease;
  display: inline-flex;
}

.navbar__brand:hover {
  color: #9c2a89;
}

.navbar__brand.text-color-purple {
  color: var(--purple);
}

.navbar__brand.text-color-purple.no-hover {
  cursor: default;
}

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

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

.navbar__drp.hide {
  display: none;
}

.navbar__drp-toggle {
  color: inherit;
  padding-left: 8px;
  padding-right: 16px;
}

.navbar__drp-list {
  width: 100%;
  max-width: 80vw;
  position: fixed;
  top: 79px;
  left: 50%;
  transform: translate(-50%);
}

.navbar__drp-list.w--open {
  background-color: var(--white);
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  width: 100vw;
  max-width: 80vw;
  position: absolute;
  top: 68px;
  left: 50%;
  right: 0;
  box-shadow: 0 2px 5px #0003;
}

.navbar__drp-list.navbar__services {
  flex-flow: column;
  width: auto;
  min-width: 300px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 7px #0003;
}

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

.local__toggle {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: inherit;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 8px 10px;
  display: inline-flex;
}

.local__toggle.w--open {
  background-color: #20202066;
}

.local__list {
  background-color: var(--white);
  border-radius: 4px;
  width: auto;
  min-width: 50px;
  top: 42px;
  overflow: hidden;
}

.local__list.w--open {
  flex-flow: column;
  display: flex;
  top: 32px;
}

.navbar__link {
  text-underline-offset: 5px;
  -webkit-text-decoration-skip-ink: auto;
  text-decoration-skip-ink: auto;
  text-underline-position: under;
  cursor: pointer;
  color: inherit;
  padding: 30px 0;
  font-size: 16px;
  font-weight: 400;
  -webkit-text-decoration: underline #0000;
  text-decoration: underline #0000;
  text-decoration-thickness: 2px;
  transition-property: all;
  transition-duration: .2s;
  transition-timing-function: ease;
}

.navbar__link:hover {
  text-underline-offset: 5px;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--_header---header-text-color);
  text-decoration-color: var(--_header---header-text-color);
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-underline-position: under;
  text-decoration-style: solid;
  text-decoration-thickness: 2px;
}

.navbar__link.w--current {
  color: #fff;
  text-decoration-color: #fff;
}

.navbar__link.navbar__submenu-link {
  justify-content: flex-start;
  align-items: center;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.navbar__link.navbar__link--modal {
  padding-right: 25px;
  position: relative;
}

.navbar__link.active {
  -webkit-text-decoration-color: var(--white);
  text-decoration-color: var(--white);
}

.navbar__drp-icon {
  margin-right: 0;
  transition: transform .2s;
}

.code-embed {
  color: var(--white);
}

.navbar__brand-svg {
  object-fit: contain;
  color: inherit;
  width: 100%;
}

.navbar__card {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--white);
  border: 1px solid #00000040;
  border-radius: .5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  align-items: flex-start;
  width: 100%;
  max-width: 50%;
  height: 100%;
  padding: 1.25rem;
  display: flex;
  box-shadow: 0 0 5px -1px #00000040;
}

.navbar__card:hover {
  background-color: var(--blue-transparent);
}

.navbar__card-title {
  text-overflow: ellipsis;
  width: 100%;
  height: 24px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  overflow: hidden;
}

.navbar__card-subtitle {
  color: var(--black);
  text-overflow: ellipsis;
  width: 100%;
  max-height: 44px;
  font-size: 1rem;
  font-weight: 400;
  display: block;
  overflow: hidden;
}

.local__title {
  align-items: center;
  line-height: 1;
  display: inline-flex;
}

.local__link {
  width: 100%;
  height: 100%;
  padding: 8px 10px 8px 38px;
  overflow: hidden;
}

.local__flag {
  align-items: center;
  width: 20px;
  min-width: 20px;
  height: 15px;
  display: inline-flex;
}

.local__item {
  flex: none;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: center;
  width: 100%;
  height: 38px;
  display: flex;
  position: relative;
}

.local__item-flag {
  flex: none;
  width: 20px;
  min-width: 20px;
  height: 15px;
  position: absolute;
  left: 10px;
}

.local__slot {
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: auto;
  display: inline-flex;
}

.fs-cookie-popup {
  z-index: 1001;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 1px none var(--purple);
  background-color: var(--white);
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: auto;
  max-width: 90vw;
  height: auto;
  margin-bottom: 1%;
  margin-left: 2%;
  margin-right: 2%;
  padding: 24px 32px;
  display: flex;
  position: fixed;
  inset: auto 0 0 auto;
  overflow: hidden;
  box-shadow: 0 2px 10px #0003;
}

.cookie-tag {
  color: var(--purple);
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
}

.cookie-paragraph {
  color: var(--black);
  width: 100%;
  max-width: 460px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.4;
}

.cookies-btn-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.cookies-preferences {
  justify-content: center;
  display: inline-flex;
}

.navbar__drp-container {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 55px;
  display: flex;
  position: relative;
}

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

.icon-arrow.navbar__tabs-arrow {
  color: var(--purple);
  flex: none;
}

.navbar__card-readmore {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex: none;
  align-items: center;
  margin-top: auto;
  display: flex;
}

.navbar__card-pict {
  background-color: var(--purple);
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 28.5rem;
  max-height: 275px;
  display: flex;
  position: fixed;
  left: 55px;
  overflow: hidden;
}

.navbar__card-img {
  object-fit: cover;
  width: 100%;
}

.form__text-link {
  font-size: inherit;
  text-decoration: underline;
}

.toggle__row {
  border-bottom: 1px solid var(--grey);
  width: 100%;
  display: flex;
}

.toggle {
  border-radius: 25px;
  flex: none;
  justify-content: flex-end;
  align-items: center;
  width: 40px;
  max-width: 40px;
  height: 22px;
  max-height: 22px;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.toggle__text {
  color: var(--black);
  font-size: 12px;
}

.toggle__ticker {
  z-index: 4;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0;
}

.toggle__ticker.w--redirected-checked {
  opacity: 0;
  margin-top: 0;
  margin-left: 0;
}

.toggle__label {
  z-index: 2;
  background-color: var(--white-smoke);
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  display: block;
  position: absolute;
  inset: 0;
}

.toggle__row-right {
  justify-content: flex-end;
  align-self: center;
  align-items: center;
  display: flex;
}

.toggle__circle {
  z-index: 2;
  background-color: #781e6980;
  border-radius: 100px;
  width: 32px;
  height: 32px;
  margin-top: 3px;
  margin-left: 3.5px;
  display: flex;
  position: absolute;
  inset: 0;
}

.toggle__circle.d-none {
  display: none;
}

.toggle__active {
  text-align: center;
  border-radius: 100px;
  flex-flow: column wrap;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  inset: 0;
}

.toggle__active-line-t {
  background-color: var(--white);
  border-radius: 4px;
  width: 16px;
  height: 2px;
  margin-top: 0;
  transform: rotate(45deg);
}

.toggle__active-line-b {
  background-color: var(--white);
  width: 16px;
  height: 2px;
  margin-top: -2px;
  position: relative;
  inset: 0;
  transform: rotate(-45deg);
}

.toggle__active-overlay {
  background-color: var(--purple);
  opacity: 0;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  box-shadow: -3px 0 3px #781e6959;
}

.toggle__dot {
  z-index: 3;
  background-color: #781e6933;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  transition: all .2s;
  display: flex;
  position: relative;
  inset: 0;
  transform: translate(-20px)rotate(-90deg);
}

.toggle__dot-r {
  background-color: var(--white);
  width: 10px;
  height: 1px;
  position: absolute;
  transform: translate(0)rotate(45deg);
}

.toggle__dot-l {
  background-color: var(--white);
  width: 10px;
  height: 1px;
  position: absolute;
  transform: translate(0)rotate(-45deg);
}

.toggle-2 {
  background-color: #eaeaea;
  border-radius: 25px;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  width: 40px;
  max-width: 40px;
  height: 22px;
  max-height: 22px;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  position: relative;
}

.toggle__dot-t-2 {
  background-color: #fff;
  width: 10px;
  height: 1px;
  position: absolute;
  transform: rotate(45deg);
}

.toggle__dot-b-2 {
  background-color: #fff;
  width: 10px;
  height: 1px;
  position: absolute;
  transform: rotate(-45deg);
}

.text-block-8 {
  text-decoration: none;
}

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

.cookies-preferences-open-link {
  font-weight: 400;
}

.cookies-preferences-open-link:hover {
  text-decoration: underline;
}

.cookies-code {
  display: none;
}

.card-service {
  background-image: var(--image-i41346b1c);
  background-position: 50%;
  background-repeat: no-repeat;
  border-radius: 25px;
  justify-content: space-between;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card-service__left {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  width: 100%;
  max-width: 60%;
  padding: 60px 50px;
  display: flex;
}

.card-service__right {
  width: 100%;
  max-width: 40%;
}

.card-service__title {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 45px;
}

.card-service__subtitle {
  color: var(--white);
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.4;
}

.card-service__img-box {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.card-service__overlay {
  z-index: -1;
  background-image: radial-gradient(circle at 85%, #fff0 20%, #000c);
  width: 100%;
  height: 100%;
  position: absolute;
}

.fs-manager-opener {
  color: var(--purple);
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 5px;
  left: 5px;
}

.fs-manager-opener:hover {
  color: var(--_card---card-dark);
}

.fs-manager-opener-icon {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.navbar__tabs {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--white);
  border-radius: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1174px;
  min-height: 560px;
  margin-left: auto;
  margin-right: auto;
  padding: 55px;
  display: flex;
  position: relative;
}

.navbar__tabs-menu {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  flex: 1;
  align-self: center;
  max-width: 50%;
  display: flex;
}

.navbar__tabs-content {
  flex: 1;
  justify-content: center;
  align-self: center;
  align-items: center;
  max-width: 50%;
  height: 100%;
  display: flex;
}

.navbar__tabs-link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  cursor: pointer;
  background-color: #fff;
  border-radius: 8px;
  flex-flow: row;
  justify-content: flex-end;
  align-self: flex-end;
  width: 100%;
  max-width: 50%;
  min-height: 111px;
  padding: 20px;
  transition: background-color .2s;
  display: flex;
}

.navbar__tabs-link:hover, .navbar__tabs-link.active {
  background-image: linear-gradient(117deg, #00bed014, #9b6d9333 77%, #781e6933);
}

.navbar__tabs-link._w--current {
  background-color: var(--purple-transparent);
}

.navbar__tabs-figure {
  background-color: var(--white);
  opacity: 0;
  object-fit: cover;
  background-image: linear-gradient(108deg, #00bed014, #9b6d9333 77%, #781e6933 104%), linear-gradient(#781e6933, #00bed033);
  border-radius: 15px;
  flex: none;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 450px;
  height: 450px;
  transition-property: opacity;
  transition-duration: .5s;
  transition-timing-function: ease;
  display: block;
  position: absolute;
  top: 50%;
  left: 25%;
  overflow: hidden;
  transform: translate(-50%, -50%);
}

.navbar__tabs-figure.first {
  opacity: 1;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
}

.navbar__tabs-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.375rem;
}

.navbar__tabs-subtitle {
  color: var(--black);
  text-overflow: ellipsis;
  font-size: 1rem;
  font-weight: 400;
}

.navbar__tabs-subtitle.text-ellipsis-3 {
  width: 100%;
  max-width: 370px;
}

.navbar__tabs-img {
  object-fit: cover;
  flex: none;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
}

.navbar__tabs-style {
  display: none;
}

.navbar__tabs-info {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  width: 100%;
  display: inline-flex;
}

.navbar__tabs-mob-icon {
  display: none;
}

.text-ellipsis-2 {
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
}

.navbar__submenu {
  flex: none;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  display: inline-flex;
  position: relative;
}

.navbar__submenu-link {
  padding-right: 20px;
}

.navbar__submenu-content {
  z-index: -999;
  opacity: 0;
  pointer-events: none;
  background-color: #0009;
  width: 100vw;
  height: calc(100vh - 70px);
  transition-property: opacity;
  transition-duration: .3s;
  transition-timing-function: ease;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  overflow: hidden;
}

.navbar__submenu-content.active {
  z-index: 9999;
  opacity: 100;
  pointer-events: visible;
}

.navbar__backdrop {
  z-index: 1;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #00000003;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}

.lang-switcher {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  align-items: center;
  width: 114px;
  height: 30px;
  display: flex;
}

.flag-slider {
  transition: transform .4s;
}

.flag-icon {
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  transition: opacity .4s;
  display: flex;
  position: relative;
}

.lang-switcher-text {
  color: var(--white);
  transition: opacity .4s;
}

.lang-switcher-slider {
  background-color: #ffffff1a;
  border-radius: 99px;
  justify-content: flex-start;
  align-items: center;
  width: 50px;
  height: 30px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.about-list {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: wrap;
  flex: 1;
  place-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  display: flex;
}

.about-list-col {
  grid-column-gap: 0px;
  grid-row-gap: 25px;
  flex-flow: column;
  width: 100%;
  max-width: calc(50% - 25px);
  display: flex;
}

.about-list-col.is-moved-down {
  padding-top: 72px;
}

.lp-main {
  flex-flow: column;
  flex: 1;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.lp-header {
  z-index: 999;
  color: var(--_lp---color--white);
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 80px;
  display: flex;
  position: fixed;
  top: 0;
}

.lp-section {
  width: 100%;
  height: auto;
  min-height: 100vh;
}

.lp-hero {
  color: var(--purple);
  background-image: linear-gradient(90deg, #10214a, #781e69 93%, #6d1e60 103%);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  min-height: 850px;
  display: flex;
  overflow: hidden;
}

.lp-hero.bg-purple {
  background-color: var(--purple);
  justify-content: flex-start;
  align-items: center;
}

.lp-hero-portrait {
  width: 100%;
  position: relative;
}

.lp-hero-portrait.lp-hero-florian {
  justify-content: center;
  align-items: center;
  margin-top: auto;
  display: flex;
  overflow: hidden;
  transform: translate(0, 11%);
}

.lp-hero-title {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(28px, 5vw, 80px);
  font-weight: 700;
  line-height: 1;
}

.lp-hero-title.text-color-white {
  font-size: clamp(28px, 5vw, 80px);
}

.lp-hero-info {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  justify-content: center;
  align-self: center;
  align-items: flex-start;
  width: 100%;
  padding: 40px;
  display: flex;
}

.lp-hero-info.no-shadow {
  box-shadow: none;
  border-radius: 0;
}

.lp-hero-info.no-shadow.padding-left-0 {
  padding-left: 0;
}

.lp-hero-img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 17%;
}

.lp-clients {
  background-image: linear-gradient(#fff0, #fff 24%);
  padding-top: 80px;
  padding-bottom: 0;
  position: relative;
}

.lp-slider {
  background-color: #0000;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-bottom: 60px;
  display: flex;
}

.lp-slider-list {
  flex: 1;
  align-self: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.lp-slider-item {
  border-radius: 1rem;
  width: 100%;
  max-width: calc(50% - 32px);
  height: 100%;
  min-height: 100%;
  margin-left: 16px;
  margin-right: 16px;
  overflow: hidden;
}

.paragraph-black-7 {
  color: #202020;
  margin-bottom: 0;
  font-family: Heebo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  position: static;
}

.paragraph-black-7._5px {
  position: relative;
  bottom: 18px;
}

.lp-slider-arrow {
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  inset: auto 0% 0% 50%;
  overflow: hidden;
  transform: translate(-100%);
}

.lp-slider-arrow.lp-slider-arrow--left {
  cursor: pointer;
}

.lp-slider-arrow.lp-slider-arrow--left:hover {
  color: var(--purple);
}

.lp-slider-arrow.lp-slider-arrow--left.hide {
  display: none;
}

.lp-slider-arrow.lp-slider-arrow--right {
  cursor: pointer;
  margin-top: auto;
  margin-bottom: auto;
  transform: translate(0%);
}

.lp-slider-arrow.lp-slider-arrow--right:hover {
  color: var(--purple);
}

.lp-slider-arrow.lp-slider-arrow--right.hide {
  display: none;
}

.lp-slider-nav {
  display: none;
  position: static;
}

.lp-slider-nav.hide {
  display: none;
}

.card-testimonial {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: #f7f7f7;
  border-radius: .5rem;
  flex-flow: column;
  width: 100%;
  height: 100%;
  min-height: 320px;
  padding: 30px;
  display: flex;
}

.card-testimonial-top {
  flex-flow: row;
  place-content: flex-start space-between;
  align-items: center;
  width: 100%;
  height: 76px;
  padding-right: 56px;
  display: flex;
  position: relative;
}

.card-testimonial-text {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 160%;
}

.card-testimonial-logo {
  object-fit: contain;
  order: -1;
  align-self: center;
  width: auto;
  height: auto;
  max-height: 100%;
}

.lp-slider-arrow-icon {
  border-top-style: solid;
  border-top-width: 3px;
  border-top-color: var(--purple);
  border-left-style: solid;
  border-left-width: 3px;
  border-left-color: var(--purple);
  color: inherit;
  width: 50%;
  height: 50%;
  transform: translate(25%)rotate(-45deg);
}

.lp-slider-arrow-icon.reversed {
  border-style: none solid solid none;
  border-right-width: 3px;
  border-right-color: var(--purple);
  border-bottom-width: 3px;
  border-bottom-color: var(--purple);
  transform: translate(25%)rotate(-45deg);
}

.logos-masonry {
  column-count: 4;
  column-gap: 1rem;
}

.lp-subtitle {
  margin-bottom: 0;
  font-size: clamp(21px, 2vw, 32px);
  font-weight: 400;
  line-height: 1.2;
}

.lp-hero-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  box-shadow: none;
  border: 1px solid #00000026;
  border-radius: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1.15fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  min-height: 592px;
  display: grid;
  overflow: hidden;
}

.card-testimonial-quote {
  width: 42px;
  height: 40px;
  position: absolute;
  right: 0;
}

.card-testimonial-btm {
  flex-flow: column;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  margin-top: auto;
  padding-left: 76px;
  display: flex;
  position: relative;
}

.card-testimonial-avatar {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.card-testimonial-author {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

.card-testimonial-position {
  color: #7c7c7c;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
}

.lp-logos {
  grid-column-gap: 10px;
  grid-row-gap: 5px;
  flex-flow: wrap;
  place-content: flex-start center;
  display: flex;
}

.lp-logos__item {
  filter: grayscale();
  border-radius: 5px;
  flex: 0 0 20%;
  justify-content: center;
  align-items: center;
  min-width: 20%;
  height: 56px;
  margin-right: 10px;
  padding: 5px 15px;
  transition-property: filter;
  transition-duration: .2s;
  transition-timing-function: ease;
  display: inline-flex;
  overflow: hidden;
  box-shadow: 0 0 3px #00000026;
}

.lp-logos__item:hover {
  filter: grayscale(0%);
}

.lp-logos__item.bg-light {
  background-color: var(--_lp---color--grey-light);
}

.lp-logos__item.bg-white {
  background-color: var(--_lp---color--white);
  flex: none;
  align-self: stretch;
}

.logos-wrap-copy {
  background-color: var(--white);
  filter: grayscale();
  border-radius: .75rem;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 86px;
  padding: 12px 48px;
  transition: filter .25s;
  display: flex;
}

.logos-wrap-copy:hover {
  filter: none;
}

.lp-logos__item-img {
  object-fit: contain;
  height: 100%;
  max-height: 100%;
}

.logos-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 55px;
  padding-right: 55px;
  display: flex;
}

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

.lp-hero-video-url {
  object-fit: cover;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.lp-hero-video {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 1rem;
  padding-right: 2rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.lp-hero-video.hide {
  display: none;
}

.lp-hero-video-wrap {
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.lp-hero-video-wrap.hide {
  display: none;
}

.code-embed-2 {
  width: 100%;
  height: 100%;
}

.video-bg-wrapper {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.lp-video-section {
  background-image: linear-gradient(90deg, #10214a, #781e69 93%, #6d1e60 104%);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  min-height: 850px;
  display: flex;
}

.lp-video-section-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr minmax(400px, 492px);
  grid-auto-columns: 1fr;
  place-content: start center;
  align-self: flex-start;
  width: 100%;
  height: 100%;
  padding-top: 15vh;
  padding-bottom: 15vh;
  display: grid;
}

.lp-hero-left {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.lp-hero-right {
  justify-content: center;
  align-items: center;
}

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

.lp-hero-video-embed {
  width: 100%;
  height: 100%;
  position: relative;
}

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

.blog__slider, .blog__slider-item {
  width: 100%;
}

.lp {
  flex-flow: column;
  margin-top: -80px;
  display: flex;
}

.lp-hero-section {
  z-index: 1;
  background-image: linear-gradient(90deg, var(--_lp---color--purple-500), var(--_lp---color--blue-700));
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.bg-circle {
  z-index: 0;
  aspect-ratio: 1;
  filter: blur(60px);
  mix-blend-mode: hard-light;
  object-fit: fill;
  background-image: linear-gradient(#ef886933, #ef886933), linear-gradient(#03032880, #03032880);
  border: 0 solid #000;
  border-right: 5vh solid #03032880;
  border-radius: 42%;
  width: 60vw;
  height: 100vh;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.lp-container {
  width: 100%;
  max-width: 90vw;
}

.lp-container.lp-header-container {
  flex: 1;
  justify-content: center;
  align-self: center;
  align-items: center;
  padding-left: 148px;
  padding-right: 148px;
  display: flex;
  position: relative;
}

.lp-container.lp-container-card {
  border: 2px solid var(--white);
  border-radius: 1.5rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.lp-container.lp-container-card.bg-teal {
  background-color: var(--_lp---color--teal-500);
  padding: 40px;
}

.lp-container.lp-container-head {
  z-index: 5;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 150px;
  display: flex;
  position: relative;
}

.lp-logo {
  color: var(--_lp---color--white);
  flex: none;
  justify-content: center;
  align-items: center;
  width: 148px;
  margin-left: 0;
  margin-right: auto;
  display: flex;
  position: absolute;
  left: 0;
}

.lp-logo.w--current {
  position: absolute;
  left: 0;
}

.lp-logo-svg {
  color: inherit;
  width: 100%;
}

.lp-header-nav {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  background-color: #ffffff1a;
  border-radius: 1.5rem;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: center;
  margin-left: auto;
  margin-right: 0;
  padding: .25rem 1.25rem;
  display: flex;
}

.lp-nav-link {
  cursor: pointer;
  color: inherit;
  flex: none;
  font-size: 14px;
  font-weight: 600;
}

.nav-book-btn {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  outline-offset: -4px;
  cursor: pointer;
  color: inherit;
  border: 1px solid #ffffff3d;
  border-radius: 1.5rem;
  outline: 1px solid #000;
  justify-content: center;
  align-items: center;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
}

.nav-book-btn-text {
  color: inherit;
}

.nav-book-btn-ava {
  background-image: linear-gradient(180deg, white, var(--_lp---color--purple-600));
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: inline-flex;
  overflow: hidden;
}

.nav-book-btn-img {
  object-fit: cover;
}

.lp-hero-grid {
  z-index: 1;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  width: 100%;
  position: relative;
}

.lp-head {
  z-index: 100;
  color: var(--_lp---color--white);
  background-color: #ddd0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 80px;
  display: flex;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}

.lp-head.hide {
  display: none;
}

.lp-wistia-hero {
  aspect-ratio: 367 / 637;
  text-align: center;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: block;
}

.lp-wistia-hero-code {
  justify-content: center;
  align-items: center;
  margin: auto;
  display: flex;
}

.lp-title {
  color: var(--_lp---color--black);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
}

.lp-title.text-color-black {
  color: var(--_lp---color--dark);
}

.lp-title.text-white {
  color: var(--_lp---color--white);
}

.lp-title.text-white.text-shadow {
  text-shadow: 0 0 2px #000;
}

.lp-title.text-white.text-shadow.lp-title-lg {
  font-size: 60px;
}

.lp-title.text-white.text-shadow.lp-title-lg.text-center {
  text-align: center;
}

.lp-title.uppercase {
  text-transform: uppercase;
}

.lp-section-subtitle {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.4;
}

.lp-section-subtitle.text-light {
  color: var(--_lp---color--grey-light);
}

.lp-hero-grid-l {
  width: 100%;
}

.lp-hero-subtitle {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.4;
}

.lp-hero-subtitle.text-white {
  color: #fff;
}

.lp-hero-subtitle.text-white.text-opacity {
  opacity: .65;
}

.lp-hero-subtitle.text-center {
  text-align: center;
}

.lp-hero-grid-r {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.lp-hero-box {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: 700px;
  display: flex;
}

.lp-hero-row {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.lp-badge {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--_lp---color--white);
  background-image: linear-gradient(90deg, #fff6, #9996);
  border-radius: 1.25rem;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  padding: .5rem 1.25rem;
  display: flex;
}

.lp-badge.lp-badge-outline {
  border: 1px solid var(--_lp---color--white);
  background-image: none;
}

.lp-badge.lp-badge-lg {
  height: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 18px;
  line-height: 24px;
}

.lp-badge-icon {
  width: 24px;
  height: 24px;
}

.lp-badge-text {
  color: inherit;
  line-height: 1;
  font-weight: inherit;
  font-size: inherit;
}

.lp-btn {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--_lp---color--white);
  cursor: pointer;
  background-color: #0000;
  border: 3px solid #0000;
  border-radius: 1.5rem;
  flex: none;
  justify-content: center;
  align-items: center;
  height: 42px;
  padding: 15px;
  font-family: Heebo, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
  transition: background-color .2s;
  display: inline-flex;
  position: relative;
  box-shadow: 0 0 0 1px #ffffff59, inset 0 0 0 1px #00000059;
}

.lp-btn:hover {
  background-color: var(--_lp---color--teal-500);
  box-shadow: 0 0 10px 1px #00bed080, inset 0 0 0 1px #ffffff59;
}

.lp-btn.lp-btn-lg {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  border-radius: 2rem;
  height: 68px;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 1.25rem;
  line-height: 1.75;
}

.lp-btn.lp-btn-lg.lp-btn-gradient {
  position: relative;
  box-shadow: inset 0 0 0 1px #00000059;
}

.lp-btn.lp-btn-gradient {
  box-shadow: none;
  flex: none;
  padding-left: 24px;
  padding-right: 24px;
}

.lp-btn.lp-btn-gradient.lp-btn-lg {
  padding-left: 24px;
  padding-right: 24px;
}

.lp-btn.lp-btn-teal {
  background-color: var(--_lp---color--teal-200);
  cursor: pointer;
  align-self: center;
  line-height: 1px;
  transition: background-color .2s;
}

.lp-btn.lp-btn-teal:hover {
  background-color: var(--_lp---color--teal-500);
}

.lp-btn-text {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-family: inherit;
  display: inline-flex;
}

.lp-btn-icon {
  font-size: inherit;
  width: 24px;
  min-width: 24px;
  height: 24px;
  display: inline-flex;
}

.text-feature {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  justify-content: flex-start;
  align-items: center;
  display: inline-flex;
}

.svg-icon {
  width: 20px;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
}

.svg-icon.lg {
  width: 30px;
  height: 30px;
}

.svg-icon.text-yellow {
  color: var(--_lp---color--yellow);
}

.text-feature-title {
  margin-left: .25rem;
  display: inline-flex;
}

.text-feature-title.text-white {
  color: var(--_lp---color--white);
}

.text-feature-title.text-white.text-opacity {
  opacity: .65;
}

.lp-hero-logos {
  width: 100%;
}

.lp-sec {
  z-index: 2;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: var(--white);
  flex-flow: column;
  width: 100%;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.lp-quote {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.lp-quote-text {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.4;
}

.lp-person {
  grid-column-gap: 1rem;
  grid-row-gap: 0rem;
  color: var(--_lp---color--dark);
  border: 1px solid #00000052;
  border-radius: 100px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 470px;
  height: 100px;
  padding: 10px;
  display: flex;
  box-shadow: 0 0 3px #0003;
}

.lp-person.text-white {
  color: var(--_lp---color--white);
}

.lp-person.lp-person--trust {
  box-shadow: none;
  color: var(--_lp---color--white);
  border-style: none;
  border-radius: 0;
  max-width: 100%;
  height: 80px;
  padding-left: 0;
}

.lp-person.lp-person--tab {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: auto;
}

.lp-person-ava {
  background-image: linear-gradient(180deg, var(--_lp---color--grey-light), var(--_lp---color--purple-600));
  border-radius: 50%;
  flex: none;
  width: 80px;
  height: 80px;
  overflow: hidden;
}

.lp-person-ava.sm {
  width: 60px;
  height: 60px;
}

.lp-img-fluid {
  object-fit: cover;
  width: 100%;
}

.lp-person-name {
  color: inherit;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Heebo, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
}

.lp-person-position {
  color: inherit;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
}

.lp-person-position.text-opacity {
  opacity: .6;
  font-weight: 300;
}

.info-cards {
  flex-flow: column;
  width: 100%;
  display: flex;
}

.lp-card {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  background-image: linear-gradient(90deg, var(--_lp---color--purple-500), var(--_lp---color--blue-700));
  color: var(--_lp---color--white);
  border-radius: 1.5rem;
  flex: none;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: 100%;
  max-width: 70vw;
  min-height: 300px;
  padding: 32px;
  display: flex;
}

.lp-card.bg-reverse {
  background-image: linear-gradient(270deg, var(--_lp---color--purple-500), var(--_lp---color--blue-700));
}

.lp-card.bg-reverse.stack3 {
  top: 160px;
}

.lp-card.bg-blue-gradient {
  background-image: linear-gradient(90deg, var(--_lp---color--teal-200), var(--_lp---color--blue-700));
}

.lp-card.bg-blue-gradient.stack2 {
  top: 120px;
}

.lp-card.bg-blue-gradient-reverse {
  background-image: linear-gradient(90deg, var(--_lp---color--blue-700), var(--_lp---color--teal-200));
}

.lp-card.bg-blue-gradient-reverse.stack4 {
  top: 240px;
}

.lp-card-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-left: 1px solid #fff;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  width: 100%;
  padding-left: 32px;
  display: flex;
}

.code-embed-3, .lp-card-icon {
  width: 100px;
  height: 100px;
}

.lp-card-title {
  color: inherit;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 700;
}

.lp-card-text {
  width: 100%;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.5;
}

.lp-trusted {
  z-index: 2;
  background-image: linear-gradient(127deg, var(--_lp---color--blue-500), var(--_lp---color--blue-900));
  flex: none;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.lp-carousel {
  background-color: #ddd0;
  width: 100%;
  height: auto;
  margin-bottom: 4rem;
  display: none;
}

.lp-carousel-list {
  width: 100%;
  height: auto;
}

.lp-carousel-slide {
  width: 100%;
  max-width: calc(40% - 25px);
  height: auto;
  padding-right: 25px;
}

.lp-carousel-arrow {
  border: 1px solid var(--_lp---color--white);
  cursor: pointer;
  background-color: #0000;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  transition: background-color .3s;
  display: inline-flex;
  position: absolute;
  top: -180px;
  left: auto;
  right: 0;
}

.lp-carousel-arrow:hover {
  border-color: var(--_lp---color--blue-700);
  background-image: linear-gradient(180deg, var(--_lp---color--teal-200), #00616a);
}

.lp-carousel-arrow.right {
  top: 0;
  right: 0;
}

.lp-carousel-arrow.left {
  margin-left: 0;
  margin-right: 0;
  right: 65px;
}

.lp-carousel-arrow.teal {
  border-color: var(--_lp---color--teal-200);
  color: var(--_lp---color--teal-200);
}

.lp-title-wrapper {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  width: 100%;
  max-width: 700px;
  margin-bottom: 2rem;
  display: flex;
}

.lp-title-wrapper.full {
  max-width: 100%;
}

.lp-trust-review {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 1px solid var(--_lp---color--white);
  border-radius: 1rem;
  flex-flow: column;
  flex: none;
  width: 100%;
  height: 100%;
  padding: 25px;
  display: flex;
}

.lp-trust-review-quote {
  border-left-width: 4px;
  border-left-color: var(--white);
  color: var(--_lp---color--white);
  text-transform: none;
  max-height: 180px;
  font-style: normal;
  font-weight: 300;
  overflow: hidden;
}

.lp-carousel-nav {
  display: none;
}

.lp-carousel-arrow-icon {
  flex: none;
  width: 75%;
  height: 75%;
}

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

.lp-section-row.align-center.padding {
  padding: 80px 40px 0;
}

.lp-p {
  margin-bottom: 0;
}

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

.paragraph-5 {
  margin-bottom: 0;
}

.lp-logos-marquee {
  flex-flow: column;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  overflow: hidden;
}

.lp-logos__list {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  opacity: 1;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  width: 300rem;
  margin-top: 0;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  transform: translate(-324rem);
}

.lp-logos__list.logo-animate {
  width: 300rem;
}

.lp-logos__list.logo-animate-alt {
  width: 324rem;
}

.lp-logos-marquee-animate {
  flex: none;
  justify-content: flex-start;
  align-items: center;
  width: 648rem;
  margin-bottom: 10px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.lp-logos-marquee-code {
  display: none;
  position: relative;
}

.marquee-logos {
  width: 100%;
  max-width: 90vw;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.marquee-row {
  width: 100%;
  margin-bottom: 1%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.marquee-row.reverse {
  flex-flow: row-reverse;
  justify-content: flex-start;
  display: flex;
}

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

.marquee-track {
  white-space: nowrap;
  flex: none;
  transition-property: transform;
  transition-duration: .2s;
  transition-timing-function: ease;
  display: flex;
}

.marquee-track.reverse {
  justify-content: flex-end;
}

.lp-features {
  z-index: 4;
  background-color: var(--_lp---color--white);
  flex-flow: column;
  justify-content: center;
  width: 100%;
  min-height: 80vh;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.lp-title-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 10vh;
  display: grid;
}

.fuatures-cards {
  justify-content: space-around;
  width: 100%;
  margin-top: auto;
  display: flex;
}

.feature-card {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--_lp---color--grey-light);
  border-radius: 1rem;
  flex-flow: column;
  flex: none;
  align-self: stretch;
  width: 100%;
  max-width: calc(33.33% - 20px);
  padding: 40px;
  display: inline-flex;
}

.feature-card-m {
  flex-flow: column;
  width: 100%;
  height: auto;
  display: flex;
}

.feature-card-b {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  margin-top: auto;
  display: flex;
}

.code-embed-4 {
  color: inherit;
}

.feature-card-icon {
  background-color: var(--_lp---color--purple-500);
  color: var(--_lp---color--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
}

.feature-card-icon-code {
  color: inherit;
  width: 50px;
  height: 50px;
}

.feature-card-title {
  color: var(--_lp---color--black);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 16px;
}

.feature-card-text {
  font-size: 16px;
  font-weight: 300;
}

.lp-needs {
  z-index: 6;
  background-color: var(--white);
  color: var(--_lp---color--white);
  flex-flow: column;
  flex: none;
  align-self: stretch;
  width: 100%;
  height: auto;
  min-height: 50vh;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.needs-cards {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.needs-card {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border-left: 1px solid var(--_lp---color--white);
  flex-flow: column;
  flex: none;
  width: 100%;
  max-width: 33.33%;
  min-height: 300px;
  padding: 19px;
  display: flex;
}

.needs-card.first {
  border-left-style: none;
}

.needs-card.active {
  background-color: #ffffff1a;
}

.needs-card-icon {
  width: 50px;
  height: 50px;
}

.needs-card-title {
  color: var(--_lp---color--white);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 24px;
}

.lp-team {
  z-index: 7;
  background-image: linear-gradient(180deg, var(--_lp---color--purple-500), var(--_lp---color--teal-500));
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 80vh;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.team-tabs {
  flex-flow: column;
  width: 100%;
  padding-top: 10vh;
  display: flex;
}

.team-tabs-nav {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
  display: grid;
}

.team-tabs-content {
  width: 100%;
  height: auto;
}

.team-tabs-link {
  cursor: pointer;
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: 1.25rem;
  width: 100%;
  padding: 0;
  transition: border .2s, background-color .2s;
}

.team-tabs-link:hover {
  border-color: #fff;
}

.team-tabs-link.w--current {
  border-color: var(--_lp---color--white);
  background-color: #fff3;
}

.team-tabs-link.show-mobile {
  display: none;
}

.team-tabs-tab {
  background-color: #cc88c100;
  border-radius: 1.25rem;
  flex-flow: column;
  width: 100%;
  height: auto;
  display: none;
  overflow: hidden;
}

.team-tabs-tab.active {
  display: flex;
}

.team-person {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  color: var(--_lp---color--white);
  text-align: center;
  border: 1px solid #fff0;
  border-radius: 1.25rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 1.25rem;
  transition: border .2s, background-color .2s;
  display: flex;
  overflow: hidden;
}

.team-person:hover {
  border-color: #fff;
}

.team-person.active {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border: 1px solid var(--_lp---color--white);
  background-color: #ffffff1a;
  padding: 1rem;
}

.team-person.show-mobile {
  display: none;
}

.team-person-ava {
  background-image: linear-gradient(180deg, white, var(--_lp---color--purple-500));
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  width: 80px;
  height: 80px;
  display: flex;
  overflow: hidden;
}

.team-person-info {
  flex: none;
}

.team-person-name {
  color: var(--_lp---color--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 21px;
  font-weight: 700;
}

.team-person-position {
  color: var(--_lp---color--white);
  font-size: 18px;
  font-weight: 500;
}

.team-person-position.text-opacity {
  opacity: .65;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
}

.team-tabs-text {
  color: var(--_lp---color--white);
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
}

.noise-code {
  display: none;
}

.lp-calendar {
  z-index: 12;
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 70vh;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.lp-cal-code {
  width: 100%;
  max-width: 100%;
}

.lp-tools {
  z-index: 5;
  background-image: linear-gradient(135deg, var(--_lp---color--purple-500), var(--_lp---color--blue-700));
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.tools-table {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--_lp---color--white);
  flex-flow: column;
  width: 100%;
  max-width: 1090px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.tools-table-head {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.tools-table-body {
  border-radius: 1.5rem;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: flex;
  overflow: hidden;
}

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

.tools-table-col {
  border: 1px solid #0000;
  border-radius: 1.25rem;
  flex-flow: column;
  width: 100%;
  height: auto;
  padding: 40px;
  font-weight: 300;
  transition-property: border, background-color;
  transition-duration: .2s, .2s;
  transition-timing-function: ease, ease;
  display: flex;
}

.tools-table-col:hover {
  background-color: #ffffff1a;
  border-color: #ffffff80;
}

.tools-table-col.first {
  font-weight: 500;
}

.tools-table-col.first:hover {
  background-color: #fff0;
  border-style: solid;
  border-color: #0000;
}

.tools-table-col.active {
  border-color: var(--_lp---color--white);
  background-color: #00bed066;
  box-shadow: 0 0 10px #ffffff80;
}

.tools-table-col-td {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 50px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
}

.tools-table-col-th {
  flex: none;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: 100%;
  padding: 20px 45px 18px 0;
  display: flex;
}

.tools-table-col-th.first {
  height: 50px;
}

.lp-badge-logo {
  width: 100%;
  max-width: 148px;
}

.tools-table-code {
  display: none;
}

.lp-faqs {
  z-index: 11;
  background-image: linear-gradient(111deg, var(--_lp---color--purple-500), #342f2f);
  width: 100%;
  height: auto;
  min-height: 50vh;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.faq__item-2 {
  color: #fff;
  cursor: pointer;
  border-bottom: 2px solid #ffffff4d;
  margin-bottom: 10px;
}

.lp-case-section {
  z-index: 9;
  background-color: var(--_lp---color--blue-500);
  color: var(--_lp---color--white);
  width: 100%;
  height: auto;
  min-height: 50vh;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.case-study {
  border-radius: 1.25rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 60vh;
  padding: 5vh;
  display: flex;
}

.case-study-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  align-self: center;
  place-items: center;
  width: 100%;
  height: 100%;
  display: grid;
}

.case-study-title {
  color: var(--_lp---color--white);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 1vh;
  font-size: 32px;
}

.case-study-subtitle {
  color: var(--_lp---color--white);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
}

.case-study-subtitle.text-uppercase {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 1vh;
}

.case-study-text {
  font-size: 18px;
  line-height: 1.2;
}

.case-study-text.text-opacity {
  opacity: .6;
  font-weight: 300;
}

.case-study-wrap-img {
  aspect-ratio: 1;
  width: 100%;
  max-width: 300px;
  height: 100%;
  transform: rotate(-12deg);
}

.case-study-picture {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.case-study-info {
  grid-column-gap: 2vh;
  grid-row-gap: 2vh;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.case-study-row {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.case-study-row.column {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.btn-arrow {
  aspect-ratio: 1;
  border: 1px solid var(--_lp---color--white);
  color: var(--_lp---color--white);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  transition: transform .2s, border .2s, background-color .2s;
  display: inline-flex;
  overflow: hidden;
}

.btn-arrow:hover {
  border-color: var(--_lp---color--teal-500);
  background-color: var(--_lp---color--teal-200);
}

.btn-arrow.secondary {
  border-color: var(--_lp---color--teal-200);
  background-color: var(--_lp---color--teal-200);
}

.btn-arrow.secondary:hover {
  border-color: var(--_lp---color--teal-500);
  background-color: var(--_lp---color--teal-500);
}

.btn-arrow.teal {
  border-color: var(--_lp---color--teal-200);
  color: var(--_lp---color--teal-200);
}

.btn-arrow.teal:hover {
  color: var(--_lp---color--white);
}

.btn-arrow.teal-outline {
  border-color: var(--_lp---color--teal-200);
  color: var(--_lp---color--teal-200);
  background-color: #fff;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
}

.btn-arrow.teal-outline:hover {
  border-color: var(--_lp---color--white);
  background-color: var(--_lp---color--teal-500);
  color: var(--_lp---color--white);
}

.btn-arrow-icon {
  object-fit: contain;
  color: inherit;
  width: 80%;
  height: 80%;
}

.text-teal {
  color: var(--_lp---color--teal-200);
}

.lp-form-wrap {
  background-color: var(--_lp---color--blue-500);
  color: var(--white);
  border-radius: 1.5rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  display: flex;
  overflow: hidden;
}

.lp-form {
  flex: 1;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
}

.lp-form-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

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

.lp-form-input {
  outline-offset: 0px;
  background-color: #fff3;
  border: 1px #0000;
  border-radius: 1rem;
  outline: 3px #d9d9d9;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 52px;
  margin-bottom: 0;
  padding: 20px;
  display: inline-flex;
}

.lp-form-input:hover {
  border-style: solid;
  border-color: var(--white);
  outline-width: 0;
}

.lp-form-input::placeholder {
  color: var(--_lp---color--white);
  font-size: 18px;
  line-height: 1.1;
}

.checkbox-2 {
  cursor: pointer;
  border: 2px solid #781e69;
  border-radius: 3px;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 4px;
  position: relative;
  top: 2px;
}

.checkbox-2.w--redirected-checked {
  background-color: #0000;
  background-image: var(--image-i8289573);
  background-position: 50%;
  background-size: cover;
  border-width: 2px;
  border-color: #781e69;
  margin-top: 0;
  margin-left: 0;
}

.checkbox-2.w--redirected-focus {
  box-shadow: none;
  width: 14px;
}

.checkbox-2.white {
  border-color: var(--white);
}

.link-purple-2 {
  color: #781e69;
  font-weight: 700;
  font-size: inherit;
  text-decoration: underline;
}

.btn-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #fff;
  cursor: pointer;
  background-color: #00bed0;
  border: 2px solid #00bed0;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  padding: 4px 33px;
  font-size: 16px;
  font-weight: 400;
  line-height: 36px;
  transition: all .2s;
  display: inline-flex;
}

.btn-2:hover {
  background-color: #469cac;
  border-color: #469cac;
}

.btn-2.btn--purple {
  background-color: #781e69;
  border-color: #781e69;
}

.btn-2.btn--purple:hover {
  filter: brightness(101%);
  background-color: #55174b;
}

.lp-form-text-link {
  color: var(--white);
  font-size: inherit;
  text-decoration: underline;
}

.checkbox-label {
  padding-left: 5px;
}

.lp-about {
  z-index: 10;
  background-color: #fff;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

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

.lp-about-map {
  border-radius: 1.5rem;
}

.lp-about-lightbox {
  border-radius: 1.25rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.lp-about-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.marquee-text-wrap {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.lp-projects {
  z-index: 8;
  background-color: var(--white);
  flex-flow: column;
  width: 100%;
  height: auto;
  min-height: 50vh;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.lp-projects-collection {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.lp-projects-list {
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.lp-projects-item {
  flex: none;
  align-self: stretch;
  width: 100%;
  min-width: 33.33%;
  max-width: 33.33%;
  padding-right: 25px;
}

.lp-project-card {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-image: linear-gradient(180deg, var(--_lp---color--blue-500), #153f74);
  color: var(--white);
  border-radius: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 20px;
  transition: all .2s;
  display: flex;
  overflow: hidden;
}

.lp-project-card:hover {
  box-shadow: 0 0 10px 0 var(--_lp---color--blue-700);
}

.lp-project-card-t {
  border-radius: 1.25rem;
  width: 100%;
  overflow: hidden;
}

.lp-project-card-m {
  flex: none;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-height: 80px;
  display: flex;
}

.lp-project-card-cta {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin-top: auto;
  display: flex;
}

.lp-project-title {
  color: inherit;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
}

.lp-project-text {
  color: inherit;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 300;
}

.arrow-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
}

.lp-projects-pag {
  flex-flow: row;
  justify-content: flex-end;
  align-items: flex-start;
}

.lp-cta-row-text {
  font-weight: inherit;
}

.lp-cta-row-link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--_lp---color--black);
  justify-content: center;
  align-items: center;
  font-weight: 400;
  transition: all .2s;
  display: flex;
}

.lp-cta-row-link:hover {
  font-weight: 500;
}

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

.image-105, .lp-project-card-img {
  object-fit: cover;
  width: 100%;
}

.lp-projects-wrapper {
  flex-flow: column;
  width: 100%;
  display: flex;
  position: relative;
}

.lp-projects-nav {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.tools-table-icon {
  flex: none;
  width: 30px;
  height: 30px;
  margin-right: 1rem;
}

.tools-table-text {
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  width: 100%;
  max-width: 220px;
  display: flex;
}

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

.lp-head-bg {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #0000;
  width: 100%;
  height: 100%;
  position: absolute;
}

.lp-clients-slider {
  width: 100%;
}

.lp-reviews {
  flex-flow: column;
  width: 100%;
  height: 500px;
  margin-bottom: 2rem;
  display: flex;
}

.lp-reviews-head {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-end;
  margin-bottom: 2rem;
  display: flex;
}

.lp-reviews-list {
  flex: none;
  display: flex;
}

.tools-table-row {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center space-between;
  padding: .5rem 1rem;
  display: grid;
}

.tools-table-row.even {
  background-color: #781e694d;
}

.tools-table-row.odd {
  background-color: #ffffff1a;
}

.tools-table-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.lp-wrapper {
  width: 100%;
}

.lp-projects-head {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-end;
  margin-bottom: 1rem;
  display: flex;
}

.team-tabs-tab-info {
  display: flex;
}

.team-tabs-tab-info.noise {
  flex-flow: column;
}

.team-person-2 {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  color: #fff;
  text-align: center;
  border: 1px solid #fff0;
  border-radius: 1.25rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 1.25rem;
  transition: border .2s, background-color .2s;
  display: flex;
  overflow: hidden;
}

.team-person-2:hover {
  border-color: #fff;
}

.team-person-2.show-mobile {
  display: none;
}

.team-person-ava-2 {
  background-image: linear-gradient(#fff, #781e69);
  border-radius: 50%;
  flex: none;
  width: 80px;
  height: 80px;
  display: flex;
  overflow: hidden;
}

.team-person-position-2 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.team-person-position-2.text-opacity {
  opacity: .65;
}

.team-tabs-tab-2 {
  background-color: #cc88c100;
  border-radius: 1.25rem;
  flex-flow: column;
  width: 100%;
  height: auto;
  display: none;
  overflow: hidden;
}

.team-tabs-tab-2.active {
  display: flex;
}

.team-tabs-text-2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
}

.team-person-name-2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
}

.team-tabs-tab-info-wrap {
  padding: 40px;
}

.lp-trust-slide {
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 100%;
  max-width: 40%;
  height: 100%;
  padding-right: 25px;
  display: flex;
}

.btn-arrow-submit {
  background-color: var(--_lp---color--teal-200);
  border-radius: 1.25rem;
}

.fuatures-cards-code {
  display: none;
}

@media screen and (min-width: 1280px) {
  .footer-3 {
    width: 70%;
  }

  .footer-content {
    grid-template-columns: 1.25fr 1fr 1.25fr;
    align-items: start;
  }

  .main-wrapper {
    overflow: visible;
  }

  .container-large {
    padding-left: 100px;
    padding-right: 100px;
  }

  .hero {
    height: auto;
    position: relative;
  }

  .nav-link.w--current {
    padding-bottom: 4px;
  }

  .lang-select-toggle {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .paragraph-white.left {
    font-size: 14px;
  }

  .buy-sell_content {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .holistic-box_wrap {
    width: 100%;
    max-width: 100%;
  }

  .holistic_icon {
    height: 70px;
  }

  .holistic-box_label {
    font-size: 18px;
  }

  .footer_links-wrap {
    margin-bottom: 0;
  }

  .footer_links-wrap.top {
    margin-bottom: 20px;
  }

  .footer_links-wrap.rel {
    left: 0;
  }

  .nav-link_text {
    font-size: 16px;
  }

  .report-content-wrap {
    align-items: flex-start;
  }

  .report-img {
    width: 600px;
  }

  .report-img.hide {
    width: 400px;
    max-width: none;
  }

  .side-section {
    justify-content: space-between;
  }

  .side-section.left {
    justify-content: space-around;
  }

  .side-image-wrap {
    width: 52.9%;
  }

  .faq__item-title {
    font-size: 15px;
  }

  .book-block {
    justify-content: center;
    align-items: flex-start;
    width: 50%;
    display: flex;
  }

  .vendor-img {
    width: 600px;
  }

  .investor_bottom-m, .calendly {
    display: none;
  }

  .modal-view {
    justify-content: center;
    align-items: center;
  }

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

  .v2-sample-report {
    display: none;
  }

  .flag {
    width: 20px;
  }

  .lang-select-link {
    border-radius: 4px;
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  .text-block {
    color: var(--black);
    font-weight: 500;
  }

  .image-9 {
    width: 100%;
  }

  .report-content-left {
    width: 50%;
  }

  .side-image-wrap-m {
    width: 52.9%;
  }

  .report-img-m {
    width: 600px;
  }

  .footer-social-link-2 {
    padding-right: 10px;
  }

  .collection-list.filter-complex {
    grid-column-gap: 58px;
    grid-row-gap: 67px;
  }

  .r-cms_item-text-wrap {
    display: flex;
  }

  .r-cms_item-status {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .r-cms_status-item.mw-100 {
    max-width: 100%;
  }

  .status-label {
    flex: 0 auto;
    font-size: 28px;
  }

  .status-divider {
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    bottom: -16px;
  }

  .cms-article_status-wrap {
    width: 85%;
  }

  .cms-article_content {
    grid-column-gap: 32px;
  }

  .div-block-23 {
    width: auto;
  }

  .div-block-27 {
    grid-row-gap: 8px;
    flex-direction: column;
    display: flex;
  }

  .hero-gradient {
    background-image: linear-gradient(135deg, #140011, #2c0224 32%, #781e69);
  }

  ._404-open-img-4k {
    width: 100%;
  }

  .hero-fade {
    bottom: 32px;
  }

  .sample-report_content {
    display: flex;
  }

  .nav_tech-dd-list.w--open {
    top: 92%;
  }

  .container-medium {
    padding-left: 182px;
    padding-right: 182px;
  }

  .text-size-22.text-color-purple.is-1440 {
    display: none;
  }

  .text-size-22.text-color-purple.is-desktop {
    display: block;
  }

  .cms_article-details {
    width: auto;
  }

  .content-container, .content-container-3 {
    padding-left: 100px;
    padding-right: 100px;
  }

  .img_wrapper.about-image {
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    max-width: 500px;
  }

  .container {
    padding-left: 100px;
    padding-right: 100px;
  }

  .book-image {
    width: 450px;
  }

  .thumbnail {
    overflow: visible;
  }

  .page-progress_bar {
    width: 46vw;
  }

  .paragraph-4, .alert {
    color: #202020;
  }

  .services-grid {
    grid-column-gap: 40px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .card-text, .post-detail-tag {
    font-size: 14px;
  }

  .about-image-blocks-wrap {
    flex-flow: row;
    align-items: flex-start;
  }

  .about-block {
    padding: 30px;
  }

  .about-block.is-moved, .about-block.is-moved-down {
    margin-top: 72px;
  }

  .about-block.is-moved-up {
    margin-top: -36px;
  }

  .rsg-arrow {
    left: 14.5vw;
  }

  .buy-sell_box {
    justify-content: space-between;
    width: 45%;
    min-height: 790px;
  }

  .buy-sell_content-2 {
    justify-content: center;
  }

  .landing-testimonial-wrap {
    height: auto;
    min-height: 410px;
  }

  .landing-testiomnial_logos.telescope {
    max-width: 100%;
  }

  .telescope, .main-capital {
    max-width: 70%;
  }

  .buy-sell_content-new {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .buy-sell_box-2 {
    justify-content: space-between;
    width: 45%;
    min-height: 890px;
  }

  .landing-testimonial-wrap-2, .landing-testimonial-wrap-3 {
    height: auto;
    min-height: 410px;
  }

  .logos-grid {
    max-width: 93%;
    margin-left: auto;
    margin-right: auto;
  }

  .bold-text-4 {
    font-size: 33px;
  }

  .cs-card-container {
    padding-left: 100px;
    padding-right: 100px;
  }

  .btn.btn--navbar__cta {
    padding-left: 33px;
    padding-right: 33px;
    font-size: 16px;
  }

  .navbar__container {
    padding-left: 100px;
    padding-right: 100px;
  }

  .navbar__nav {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .navbar__services-slot {
    display: inline-flex;
  }

  .about-list {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    padding-left: 25px;
  }

  .about-list-col {
    grid-row-gap: 32px;
    max-width: calc(50% - 32px);
  }

  .about-list-col.is-moved-down {
    padding-top: 102px;
  }

  .card-testimonial {
    flex: auto;
    min-height: 320px;
  }

  .logos-container {
    padding-left: 100px;
    padding-right: 100px;
  }

  .lp-container {
    max-width: 1240px;
  }

  .lp-card.bg-reverse.stack3 {
    top: 160px;
  }

  .lp-card.bg-blue-gradient.stack2 {
    top: 80px;
  }

  .team-person-name {
    font-size: 24px;
  }
}

@media screen and (min-width: 1440px) {
  .footer-3 {
    width: 74%;
  }

  .main-wrapper.is-services {
    margin-top: -1px;
  }

  .container-large.is-narrow {
    padding-left: 220px;
    padding-right: 220px;
  }

  .dropdown-list.w--open {
    width: 140%;
    left: 10%;
  }

  .paragraph-white.left, .paragraph-black {
    font-size: 14px;
  }

  .holistic-box_label {
    font-size: 18px;
    font-weight: 400;
  }

  .footer_links-wrap.top {
    margin-bottom: 20px;
  }

  .report-content-wrap {
    grid-column-gap: 50px;
    align-items: flex-start;
  }

  .report-img {
    width: 100%;
  }

  .report-img.hide {
    width: 400px;
    max-width: none;
  }

  .faq__item-title {
    font-weight: 500;
  }

  .v2-sample-report {
    display: none;
  }

  .lang-select-link {
    justify-content: center;
  }

  .image-9, .report-img-m {
    width: 100%;
  }

  .footer-social-link-2 {
    padding-right: 10px;
  }

  .collection-list.filter-complex {
    grid-column-gap: 47px;
    grid-row-gap: 85px;
    grid-template-columns: 1fr 1fr;
  }

  .r-cms_item-text-wrap {
    align-items: flex-start;
    display: flex;
  }

  .r-cms_item-status {
    justify-content: flex-start;
  }

  .r-cms_status-item.mw-100 {
    max-width: 100%;
  }

  .status-label {
    font-size: 29px;
  }

  .status-divider {
    margin-left: 10px;
    margin-right: 10px;
    bottom: -7px;
  }

  .div-block-25 {
    width: auto;
  }

  .text-block-4 {
    font-size: 21px;
  }

  .div-block-27 {
    grid-row-gap: 18px;
  }

  .all-stages, .pre-seed, .series-af, .ma, .allmandates, .buyside, .sellside {
    font-size: 14px;
  }

  ._404-open-img-4k {
    width: 100%;
  }

  .all-stages-start1 {
    font-size: 14px;
  }

  .splide__track {
    overflow: hidden;
  }

  .text-size-29.text-color-white.text-weight-400 {
    font-weight: 400;
  }

  .services_core.is-purple {
    background-color: var(--purple);
  }

  .text-size-22.text-color-purple.is-1440 {
    display: block;
  }

  .text-size-22.text-color-purple.is-desktop {
    display: none;
  }

  .text-size-22.text-color-white {
    margin-bottom: 10px;
  }

  .text-size-22.text-color-white.is-desktop {
    display: none;
  }

  .text-size-22.text-color-white.is-1440 {
    display: block;
  }

  .button-wide {
    line-height: 36px;
  }

  .img_wrapper.about-image {
    max-width: 600px;
    max-height: 770px;
  }

  .text-size-39-3.white {
    font-size: 47px;
    top: 0%;
  }

  .page-progress_bar {
    width: 48vw;
  }

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

  .heading-3-2 {
    font-size: 24px;
  }

  .heading-4 {
    font-size: 21px;
  }

  .photo--rocket {
    height: 400px;
  }

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

  .rsg_wrap {
    grid-column-gap: 42px;
    grid-row-gap: 42px;
  }

  .rsg-arrow {
    width: 200px;
    height: 54px;
    left: 113%;
  }

  .button-coffee {
    line-height: 36px;
  }

  .buy-sell_box {
    min-width: 468px;
    min-height: 735px;
  }

  .buy-sell_btn-wrap {
    margin-top: 0;
  }

  .landing-testimonial-wrap {
    min-height: 372px;
  }

  .paragraph-black-2, .paragraph-black-3, .paragraph-black-4 {
    font-size: 14px;
  }

  .buy-sell_box-2 {
    min-width: 468px;
    min-height: 830px;
  }

  .landing-testimonial-wrap-2 {
    min-height: 372px;
  }

  .paragraph-black-5 {
    font-size: 14px;
  }

  .landing-testimonial-wrap-3 {
    min-height: 372px;
  }

  .paragraph-black-6 {
    font-size: 14px;
  }

  .bold-text-4 {
    font-size: 33px;
  }

  .navbar__nav {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .about-list {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: wrap;
    align-self: flex-start;
    padding-left: 32px;
  }

  .about-list.hide {
    display: none;
  }

  .lp-slider-item {
    max-width: calc(33% - 32px);
  }

  .paragraph-black-7 {
    font-size: 14px;
  }

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

  .card-testimonial {
    min-height: 350px;
  }

  .lp-video-section {
    min-height: 1072px;
  }

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

  .lp-container {
    max-width: 1400px;
  }

  .lp-wistia-hero {
    align-self: center;
    display: flex;
  }

  .lp-wistia-hero-code {
    align-self: center;
  }

  .lp-sec {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .lp-card {
    min-height: 300px;
  }

  .lp-trusted {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .lp-section-row.align-center.padding {
    padding-top: 100px;
  }

  .marquee-logos {
    max-width: 1400px;
  }

  .lp-features, .lp-needs, .lp-team {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .team-person.active {
    padding: 1.3rem;
  }

  .lp-calendar, .lp-tools, .lp-faqs, .lp-case-section, .lp-about, .lp-projects {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .lp-reviews {
    overflow: hidden;
  }
}

@media screen and (min-width: 1920px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 25px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }

  p, a, ul, ol, blockquote {
    font-size: 16px;
  }

  .page-wrapper {
    overflow: hidden;
  }

  .footer-2-text-wrap.vertical {
    justify-content: space-between;
  }

  .footer-text {
    font-size: 15px;
  }

  .footer-text.bold.bottom-margin.mobile, .footer-text.bold.bottom-margin.dad {
    font-size: 18px;
  }

  .footer-text.margin-bottom {
    font-size: 15px;
    line-height: 23px;
  }

  .form__wrap {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .footer-3 {
    width: 70%;
  }

  .footer-content {
    grid-template-columns: 1.25fr 1fr 1fr 1.25fr;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-link-3.margin-top {
    font-size: 15px;
  }

  .submit-button-3 {
    margin-top: 0;
  }

  .paragraph-2.footerwhite {
    margin-top: 10px;
    font-size: 15px;
    line-height: 23px;
  }

  .text-field-2 {
    margin-top: 0;
  }

  .title-wrap.centered {
    width: 750px;
    margin-left: auto;
    margin-right: auto;
  }

  .investor-img_wrap {
    width: 220px;
    margin-right: 30px;
  }

  .team-box {
    justify-content: center;
    position: relative;
  }

  .questions-wrap {
    padding-top: 37px;
  }

  .main-wrapper {
    overflow: visible;
  }

  .nav {
    position: absolute;
  }

  .container-large, .container-large.slider {
    max-width: 1920px;
    padding-left: 326px;
    padding-right: 326px;
  }

  .container-large.references, .container-large.is-narrow {
    padding-left: 326px;
    padding-right: 326px;
  }

  .hero {
    background-color: #f4f4f4;
    height: auto;
  }

  .hero-content {
    position: relative;
  }

  .button-big {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 15px;
    line-height: 18px;
  }

  .lang-select {
    align-items: center;
  }

  .hero-text-wrap {
    justify-content: space-between;
    margin-top: 93px;
    display: flex;
  }

  .h1-hero-white {
    font-size: 45px;
    line-height: 62px;
  }

  .paragraph-white, .paragraph-white.left {
    font-size: 15px;
    line-height: 25px;
  }

  .paragraph-white.big.is-hero-text {
    font-size: 22px;
  }

  .buy-sell_content {
    justify-content: center;
    margin-top: 87px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
  }

  .paragraph-black {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
  }

  .paragraph-black.centered {
    font-size: 15px;
  }

  .paragraph-black.thin {
    font-weight: 400;
  }

  .paragraph-black.spacing-flex-8.m-top-12 {
    margin-top: 12px;
  }

  .holistic_icon {
    width: 75px;
  }

  .holistic-box_label {
    font-size: 24px;
  }

  ._w-400 {
    width: auto;
    max-width: 520px;
  }

  .h2-prple {
    font-size: 45px;
  }

  .h2-prple.centered {
    font-size: 40px;
  }

  .h2-prple.med {
    font-size: 36px;
  }

  .manager_img {
    width: 250px;
    height: auto;
    min-height: auto;
  }

  .h3-purple {
    font-size: 24px;
  }

  .h3-purple.big {
    font-size: 36px;
    line-height: 30px;
  }

  .sample-report {
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .sample_img {
    width: auto;
    min-width: auto;
  }

  .sample-report_btn {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
  }

  .footer_links-wrap.top {
    margin-bottom: 20px;
  }

  .footer_phone-nr {
    width: 180px;
  }

  .div-block-14 {
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .div-block-14.hide {
    margin-bottom: 0;
  }

  .image {
    width: 570px;
    max-width: none;
  }

  .nav-link_text {
    font-size: 15px;
  }

  .investors_wrap {
    grid-row-gap: 40px;
    flex-direction: column;
    display: flex;
  }

  .report-content-wrap {
    grid-column-gap: 120px;
    justify-content: center;
    align-items: flex-start;
  }

  .report-img {
    width: 700px;
    max-width: none;
  }

  .report-img.hide {
    width: 500px;
  }

  .report-text_wrap {
    align-items: flex-start;
    width: 400px;
  }

  .side-section {
    justify-content: space-between;
  }

  .side-section.left {
    justify-content: space-around;
  }

  .side-image-wrap {
    width: 52%;
    position: relative;
  }

  .faq__item-q {
    font-weight: 500;
  }

  .faq__item-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
  }

  .faq__item-p {
    letter-spacing: 0;
    padding-top: 5px;
    padding-bottom: 10px;
    font-size: 15px;
    line-height: 23px;
  }

  .book-block {
    grid-column-gap: 30px;
    justify-content: flex-start;
    width: 100%;
    display: flex;
  }

  .plane_label {
    font-size: 16px;
    line-height: 30px;
  }

  .lightbox-report {
    height: 100%;
  }

  .vendor-content-wrap {
    justify-content: space-between;
    align-items: center;
  }

  .vendor-text_wrap {
    align-items: flex-start;
    width: 400px;
  }

  .vendor-img {
    width: 700px;
  }

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

  .visit-us_content {
    flex-direction: column;
    align-items: stretch;
    display: flex;
  }

  .text-link {
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 50px;
  }

  .investor-box {
    position: relative;
  }

  .h2-black.big {
    font-size: 60px;
    line-height: 70px;
  }

  .lang-text, .text-block {
    font-size: 15px;
  }

  ._404 {
    align-items: flex-start;
    width: 100vw;
    height: 80vh;
    padding-top: 100px;
    position: relative;
  }

  ._404-content {
    padding-top: 239px;
  }

  .image-9 {
    width: 100%;
    height: 100%;
  }

  .vendor-report-text_wrap {
    align-items: flex-start;
    width: 100%;
  }

  .text-block-2, .bold-text-2 {
    font-size: 15px;
  }

  .report-content-left {
    width: auto;
  }

  .side-image-wrap-m {
    width: 52%;
    position: relative;
  }

  .hero-bg-gray-color {
    z-index: -2;
    background-color: #f4f4f4;
    width: 100%;
    height: 850px;
    position: absolute;
    inset: 0%;
  }

  .buy-sell_content-m {
    justify-content: flex-start;
    padding-left: 60px;
  }

  .h-15 {
    height: 15px;
  }

  .report-img-m {
    width: 700px;
    max-width: none;
  }

  .footer-social-link-2 {
    padding-right: 10px;
  }

  .references_cms-content {
    font-size: 60px;
  }

  .section-padding-normal {
    padding-top: 140px;
    padding-bottom: 140px;
    font-size: 36px;
  }

  .collection-list.filter-complex {
    grid-column-gap: 13px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    align-content: stretch;
    justify-items: center;
    width: 100%;
    display: grid;
  }

  .references-cms_item {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    width: 100%;
    display: grid;
    position: relative;
  }

  .r-cms_item-text-wrap {
    justify-content: space-between;
    display: flex;
  }

  .r-cms_item-status {
    flex-direction: row;
    justify-content: flex-start;
  }

  .r-cms_status-item {
    align-items: flex-start;
  }

  .r-cms_status-item.mw-100 {
    max-width: 100%;
  }

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

  .status-label {
    font-size: 31px;
  }

  .status-divider {
    margin-left: 20px;
    margin-right: 20px;
  }

  .cms-subheadline {
    z-index: 1;
    font-size: 25px;
    line-height: 47px;
  }

  .casestudy_tag {
    white-space: nowrap;
    flex: 0 auto;
  }

  .s-article_content {
    padding-top: 189px;
  }

  .article-back_link {
    top: 16px;
    left: -49px;
  }

  .cms-article_status-wrap {
    width: 90%;
  }

  .cms-article_body-text {
    font-size: 16px;
    line-height: 23.5px;
  }

  .cms-article_content {
    grid-column-gap: 30px;
  }

  .med-label {
    font-size: 18px;
    line-height: 26px;
  }

  .div-block-23 {
    width: auto;
  }

  .xmed-label {
    font-size: 20px;
  }

  .r-cms_post-img {
    object-fit: cover;
    width: 100%;
  }

  .s-othercases_content {
    justify-content: space-between;
  }

  .s-o_choises {
    grid-column-gap: 60px;
  }

  .h3-black {
    font-size: 24px;
  }

  .h3-black.big {
    font-size: 36px;
    line-height: 30px;
  }

  .r-cms_post {
    float: none;
  }

  .cms-casestudy_post {
    flex: 0 auto;
  }

  .radio-button-field.dd-active {
    font-weight: 600;
  }

  .div-block-25 {
    width: auto;
  }

  .text-block-4 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    line-height: 40px;
  }

  .dd-radio_label {
    font-size: 16px;
    font-weight: 500;
  }

  .div-block-27 {
    grid-row-gap: 26px;
    flex-direction: column;
    display: flex;
  }

  .aboutus_img {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    width: 100%;
    display: block;
  }

  .hero-gradient {
    z-index: 0;
    background-image: linear-gradient(146deg, #2c0224, #310429 24%, #781e69);
    width: 100%;
    height: 880px;
    position: absolute;
    inset: 0%;
  }

  .home-hero_text {
    max-width: none;
  }

  .all-stages, .pre-seed, .series-af, .ma, .allmandates, .buyside, .sellside {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }

  ._404-open-img-4k {
    width: 100%;
    height: 100%;
  }

  .hero-fade {
    bottom: 56px;
  }

  .dd-radio_label1 {
    font-size: 16px;
    font-weight: 500;
  }

  .all-stages-start1 {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }

  .ds {
    font-size: 16px;
  }

  .dd-radio_label-copy {
    font-size: 16px;
    font-weight: 500;
  }

  .text-block-5 {
    font-size: 15px;
    line-height: 18px;
  }

  .arrow-back {
    width: 30px;
    min-width: 30px;
  }

  .logos-image {
    object-fit: fill;
    height: 120px;
  }

  .nav_links-wrap {
    left: 70px;
  }

  .container-medium {
    max-width: 1920px;
    padding-left: 326px;
    padding-right: 326px;
  }

  .button-wide {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 16px;
    line-height: 36px;
  }

  .text-size-39 {
    font-size: 47px;
  }

  .cms_article-details {
    width: auto;
  }

  .submit-button-5 {
    margin-top: 0;
  }

  .form-3 {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .text-field-3 {
    margin-top: 0;
  }

  .content-container {
    max-width: 1920px;
    padding-left: 326px;
    padding-right: 326px;
  }

  .div-block-53 {
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .div-block-53.hide {
    margin-bottom: 0;
  }

  .footer-text-2 {
    font-size: 15px;
  }

  .footer-text-2.margin-bottom {
    font-size: 15px;
    line-height: 23px;
  }

  .footer-text-2.bold.bottom-margin.dad, .footer-text-2.bold.bottom-margin.mobile {
    font-size: 18px;
  }

  .text-block-7, .footer-link-4.margin-top {
    font-size: 15px;
  }

  .paragraph-white-3 {
    font-size: 15px;
    line-height: 23px;
  }

  .content-container-3 {
    max-width: 1920px;
    padding-left: 326px;
    padding-right: 326px;
  }

  .paragraph-white-5 {
    font-size: 15px;
    line-height: 25px;
  }

  .paragraph-white-5.center {
    text-align: left;
    font-size: 15px;
    line-height: 30px;
  }

  .visit-us_content-wrap-2 {
    width: auto;
    height: auto;
  }

  .field-label-2 {
    font-size: 16px;
  }

  .container {
    max-width: 1920px;
    padding-left: 326px;
    padding-right: 326px;
  }

  .book-image {
    width: 500px;
  }

  .text-size-39-3 {
    font-size: 47px;
  }

  .page-progress_bar {
    width: 37vw;
  }

  .paragraph-4, .tag-text, .alert {
    font-size: 16px;
  }

  .stop-looking-text-wrap {
    padding: 48px;
  }

  .one-stop-animation-text-wrap {
    width: 485px;
  }

  .text-title-black {
    font-size: 45px;
  }

  .typed-words {
    height: 50px;
    font-size: 45px;
  }

  .deepsense-info-wrap {
    margin-top: 12px;
  }

  .card-text {
    font-size: 18px;
    display: block;
  }

  .post-detail-tag {
    font-size: 16px;
  }

  .heading-2 {
    font-size: 38px;
  }

  .hero-heading-text-wrap {
    max-width: none;
  }

  .inner-hero {
    height: 880px;
  }

  .about-blocks-wrap {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .banner-wrap {
    font-size: 19px;
  }

  .text_banner-title {
    font-size: 32px;
  }

  .text_banner-subhead {
    font-size: 20px;
  }

  .banner_icon-wrap {
    width: 24px;
  }

  .text_banner-li-title {
    font-size: 20px;
  }

  .text_banner-li-desc {
    font-size: 16px;
  }

  .text_banner-quote {
    font-size: 18px;
  }

  .text_quoter-name {
    font-size: 20px;
  }

  .about-image-icon.is-bottom {
    bottom: 0%;
  }

  .about_blocks-line.is_lower {
    padding-top: 107px;
  }

  .button-coffee {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 16px;
    line-height: 36px;
  }

  .buy-sell_box {
    width: 42%;
    height: auto;
    min-height: 825px;
    padding-top: 110px;
  }

  .paragraph-purple {
    font-size: 20px;
    line-height: 1.3;
  }

  .buy-sell_content-2 {
    justify-content: center;
    margin-top: 87px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
  }

  .h2-white {
    font-size: 45px;
  }

  .h2-white.normal {
    font-size: 27px;
  }

  .landing-testimonial-wrap {
    grid-row-gap: 26px;
    min-height: 430px;
  }

  .h3-purple-2 {
    font-size: 24px;
  }

  .h3-purple-2.xsmall {
    font-size: 24px;
    line-height: 35px;
  }

  .main-wrap {
    flex-direction: column;
    justify-content: space-between;
    display: flex;
  }

  .paragraph-black-2 {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
  }

  .paragraph-black-2._5px {
    font-weight: 400;
  }

  .paragraph-black-3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
  }

  .paragraph-black-3._5px {
    font-weight: 400;
  }

  .buy-sell_content-new {
    justify-content: center;
    margin-top: 87px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
  }

  .text-span-27 {
    font-weight: 400;
  }

  .paragraph-black-4 {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
  }

  .paragraph-black-4._5px {
    font-weight: 400;
  }

  .buy-sell_box-2 {
    width: 42%;
    height: auto;
    min-height: 920px;
    padding-top: 110px;
  }

  .landing-testimonial-wrap-2 {
    grid-row-gap: 26px;
    min-height: 430px;
  }

  .paragraph-black-5 {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
  }

  .paragraph-black-5._5px, .text-span-33 {
    font-weight: 400;
  }

  .landing-testimonial-wrap-3 {
    grid-row-gap: 26px;
    min-height: 430px;
  }

  .paragraph-black-6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
  }

  .logos-grid {
    max-width: 87%;
  }

  .bold-text-4 {
    font-size: 45px;
  }

  .btn.btn--purple:hover {
    filter: brightness(120%);
  }

  .navbar__container {
    max-width: 1920px;
    padding-left: 326px;
    padding-right: 326px;
  }

  .navbar__drp-toggle {
    padding-right: 16px;
  }

  .navbar__drp-list.w--open {
    z-index: 10;
    background-color: var(--white);
  }

  .lp-hero-title {
    font-size: 80px;
  }

  .paragraph-black-7 {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
  }

  .paragraph-black-7._5px {
    font-weight: 400;
  }

  .lp-subtitle {
    font-size: 32px;
  }

  .lp-logos {
    grid-column-gap: 10px;
    grid-row-gap: 5px;
    flex-flow: wrap;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .lp-logos__item {
    filter: grayscale();
    height: 56px;
  }

  .lp-container {
    max-width: 1660px;
  }

  .btn-2.btn--purple:hover {
    filter: brightness(120%);
  }
}

@media screen and (max-width: 991px) {
  .nav-link {
    width: auto;
    margin-left: 32px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .nav-link-wrap {
    width: auto;
  }

  .nav-link-wrap.nav-top-margin {
    justify-content: flex-start;
  }

  .dt-block {
    color: #000;
    flex-direction: column;
    justify-content: flex-start;
    width: 20rem;
    height: 20rem;
    margin-left: 0;
    margin-right: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .button {
    margin-top: 0;
  }

  .button.header {
    margin-top: 4rem;
  }

  .page-wrapper {
    margin-top: -80px;
    padding-top: 0;
    position: relative;
  }

  .page-wrapper.overflow-visible {
    overflow: visible;
  }

  .footer-2-text-wrap {
    width: 80%;
  }

  .footer-2-text-wrap.vertical {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-top: 15px;
    padding-left: 0;
    display: flex;
  }

  .footer-text {
    line-height: 23px;
  }

  .footer-text.bold {
    width: 6.5rem;
  }

  .footer-text.bold.bottom-margin {
    width: auto;
    margin-bottom: 0;
  }

  .footer-text.bold.bottom-margin.mobile {
    top: 0;
  }

  .footer-text.bold.bottom-margin.dad {
    margin-bottom: 6px;
  }

  .footer-text.margin-bottom {
    margin-top: 0;
    margin-bottom: 0;
  }

  .form__wrap {
    max-width: none;
    margin-top: 10px;
  }

  .footer-2-text-wrap-mobile {
    width: 80%;
  }

  .footer-3 {
    justify-content: flex-start;
    align-items: stretch;
    width: auto;
    max-width: 400px;
    height: auto;
  }

  .footer-content {
    grid-row-gap: 16px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: .25fr;
    justify-items: start;
  }

  .footer-1 {
    width: 100%;
    height: auto;
    margin-bottom: 0;
  }

  .footer {
    justify-content: flex-start;
    padding-top: 3rem;
    padding-bottom: 3rem;
    display: flex;
  }

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

  .footer-link-3.margin-top {
    padding-top: 7px;
    padding-bottom: 0;
  }

  .paragraph-2.footerwhite {
    margin-top: 10px;
  }

  ._2col {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    align-content: stretch;
    place-items: start;
  }

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

  .investor-img_wrap {
    margin-bottom: 20px;
  }

  .investor-text {
    width: auto;
    margin-bottom: 10px;
  }

  .divider12px {
    height: 20px;
  }

  .success-text {
    width: auto;
  }

  .team-box {
    grid-row-gap: 20px;
    flex-direction: row;
    align-items: flex-start;
  }

  .team-box.left-margin {
    padding-left: 0;
  }

  .access-form {
    width: 100%;
  }

  .div-block-13 {
    margin-top: 35px;
  }

  .contactinfo-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .finsus-icon {
    width: 35px;
    min-width: 35px;
    height: 35px;
    min-height: 35px;
    margin-bottom: 10px;
  }

  .brand-2 {
    height: auto;
    margin-bottom: 10px;
  }

  .footer-2-text-wrap-m {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    height: auto;
    display: flex;
  }

  .main-wrapper {
    margin-top: -80px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-end;
  }

  .container-large {
    padding-left: 40px;
    padding-right: 40px;
  }

  .container-large.slider {
    padding-left: 0;
    padding-right: 0;
  }

  .container-large.nav-lang {
    padding-right: 40px;
  }

  .container-large.is-mobile-nav {
    z-index: 101;
    position: relative;
  }

  .container-large.bg-purple {
    background-color: var(--purple);
  }

  .container-large.lp-hero-container {
    justify-content: center;
    align-items: flex-start;
  }

  .hero-content {
    grid-row-gap: 44px;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
  }

  .nav-links-wrap {
    display: none;
  }

  .nav-link {
    text-align: right;
    border-bottom: 1px #fff;
    width: auto;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
  }

  .nav-link.is-mobile {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .nav-link.is-mobile:hover {
    border-bottom-style: none;
    padding-top: 4px;
  }

  .nav-link.is-mobile.w--current {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .nav-link.is-mobile.w--current:hover {
    padding-bottom: 4px;
  }

  .nav_careers-wrap {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .button-big {
    padding: 15px 30px;
    line-height: 18px;
  }

  .lang-select-toggle.w--open {
    padding-top: 0;
    padding-bottom: 0;
  }

  .lang-select {
    display: none;
  }

  .lang-select.mobile {
    flex-direction: column;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: relative;
  }

  .dropdown-list {
    flex-direction: row;
    flex: 0 auto;
    align-items: flex-end;
    width: 100%;
  }

  .dropdown-list.w--open {
    background-color: #0000;
    justify-content: flex-end;
    width: auto;
    height: 35px;
    margin-top: 0;
    position: absolute;
    inset: 110% 0% 0%;
  }

  .hero-text-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-white {
    flex: 0 auto;
  }

  .paragraph-white.big {
    line-height: 23px;
  }

  .buy-sell_content {
    grid-column-gap: 16px;
    justify-content: flex-start;
    align-items: stretch;
    margin-top: 0;
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    overflow: visible;
  }

  .holistic-box_wrap {
    width: 100%;
    max-width: none;
  }

  .holistic-box_top {
    grid-column-gap: 12px;
    flex-direction: row;
    align-items: center;
  }

  .holistic_icon {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 10px;
  }

  .holistic-box_top-text {
    margin-left: 0;
  }

  ._w-400 {
    width: auto;
    max-width: 400px;
  }

  .manager_box {
    grid-column-gap: 30px;
    flex-direction: row;
    justify-content: center;
  }

  .manager_img {
    width: 173.813px;
    min-width: 173.813px;
    height: 261px;
    min-height: 261px;
  }

  .manager_text {
    padding-top: 15px;
    padding-left: 0;
  }

  .manager_text._w-300 {
    max-width: 300px;
  }

  .sample_img {
    min-width: auto;
  }

  .sample-content-wrap {
    flex-direction: row;
  }

  .sample_text {
    flex-direction: column;
    align-items: flex-start;
    max-width: 350px;
    display: flex;
  }

  .sample-report_btn {
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 18px;
    display: flex;
  }

  .footer_links-wrap {
    margin-bottom: 0;
  }

  .footer_links-wrap.top {
    width: 177px;
    margin-bottom: 0;
    margin-right: 83px;
  }

  .footer_phone-nr, .div-block-14.hide {
    display: none;
  }

  .nav-links-wrap_m {
    flex-direction: column;
    align-items: flex-end;
    padding: 20px 20px 20px 40px;
    display: flex;
  }

  .nav-content_m {
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: auto;
    margin-top: 40px;
    display: none;
  }

  .nav_m-blur {
    z-index: 99;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    background-image: radial-gradient(circle, #0000, #1b1b1b);
    padding-bottom: 0;
    padding-right: 0;
    display: none;
    position: fixed;
    inset: 0%;
  }

  .nav_lt-wrap {
    cursor: pointer;
    display: block;
  }

  .image {
    height: auto;
  }

  .footer_phone-nr-m {
    background-color: #7f2070;
    border-radius: 8px;
    align-items: center;
    width: 177px;
    margin-top: 10px;
    margin-bottom: 0;
    padding: 4px 10px;
    text-decoration: none;
    display: flex;
  }

  .nav-link_text {
    font-size: 16px;
  }

  .investor_top {
    flex-direction: column;
  }

  .investor_bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
    margin-right: 40px;
    display: flex;
  }

  .investor_bottom.hide {
    display: none;
  }

  .advantages-box {
    flex-direction: column;
  }

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

  .report-content-wrap {
    flex-flow: column;
    align-items: center;
    margin-top: 0;
  }

  .report-img {
    width: 60%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .report-img.hide {
    display: none;
  }

  .report-img.report {
    width: 100%;
  }

  .report-text_wrap {
    width: 500px;
    margin-top: 0;
  }

  .report-text_wrap.report {
    text-align: center;
    align-items: center;
    width: 100%;
  }

  .side-section {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }

  .side-section.left {
    flex-direction: column;
    align-items: flex-end;
  }

  .side-image-wrap {
    margin-left: auto;
    margin-right: auto;
    display: none;
  }

  .sections-content {
    align-items: flex-start;
  }

  .faq__item {
    padding-left: 0;
    padding-right: 0;
  }

  .book-block {
    grid-column-gap: 0px;
    flex-direction: column-reverse;
  }

  .book-block.das, .book-block.report {
    width: auto;
  }

  .lightbox-link {
    width: 100%;
  }

  .vendor-content-wrap {
    flex-direction: column;
  }

  .vendor-text_wrap {
    width: auto;
    margin-top: 40px;
  }

  ._w-50 {
    width: auto;
    margin-top: 60px;
  }

  .vendor-img {
    width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .team-content {
    margin-bottom: 0;
  }

  .investor-box {
    grid-row-gap: 0px;
    flex-direction: column;
    align-items: flex-start;
  }

  .investor_bottom-m {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
    margin-right: 40px;
    display: flex;
  }

  .modal-view {
    width: 70%;
  }

  .v2-sample-report {
    align-items: flex-start;
    padding: 40px;
    display: none;
  }

  .lang-select-link {
    margin-top: 0;
    padding-left: 32px;
    padding-right: 32px;
  }

  .lang-text {
    font-family: Heebo, sans-serif;
  }

  .footer-careers-wrap {
    padding-top: 7px;
    padding-bottom: 0;
  }

  .image-9 {
    width: 100%;
    display: block;
  }

  .home-button {
    padding: 0 30px;
  }

  .v2-schedule-meeting {
    display: block;
  }

  .vendor-report-text_wrap {
    flex-direction: column;
    width: auto;
    margin-top: 12px;
  }

  .h-60 {
    height: 60px;
    display: block;
  }

  .h-60.hide {
    display: none;
  }

  .lang-select_dropdown-mob {
    align-items: center;
    margin-top: 20px;
    margin-right: 0;
    display: flex;
    position: relative;
    top: 0;
    right: 0;
  }

  .report-content-left {
    width: auto;
  }

  .side-image-wrap-m {
    width: 90%;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .buy-sell_content-m {
    grid-column-gap: 30px;
    align-items: flex-start;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    overflow: auto;
  }

  .h-15 {
    height: 15px;
  }

  .h-25 {
    height: 26px;
    padding-bottom: 0;
    padding-right: 0;
    display: none;
  }

  .h-25.enable {
    display: block;
  }

  .div-block-20 {
    width: 177px;
    margin-right: 83px;
  }

  .book-block-info {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  ._w-300 {
    max-width: 300px;
  }

  .report-img-m {
    width: 80%;
    height: 100%;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .footer-social-wrap-3 {
    padding-top: 0;
  }

  .footer-social-link-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
  }

  .collection-list.filter-complex {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .references-cms_item {
    min-width: auto;
  }

  .r-cms_item-text-wrap {
    min-height: auto;
    padding: 16px;
  }

  .status-divider.h-100 {
    background-color: #c4c4c4;
  }

  .cms-article_title {
    grid-column-gap: 13px;
    align-items: flex-start;
    display: flex;
  }

  .article-back_link {
    justify-content: center;
    align-items: center;
    width: 50px;
    min-width: 30px;
    height: 30px;
    min-height: 30px;
    display: flex;
    position: relative;
    top: 7px;
    left: 0;
  }

  .cms-article_status-wrap {
    width: 100%;
  }

  .cms-article_sticky-side {
    width: 100%;
    display: none;
    position: static;
  }

  .cms-article_content {
    grid-row-gap: 40px;
    flex-direction: column-reverse;
  }

  .div-block-23 {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .r-cms_post-img {
    width: 100%;
    height: 100%;
  }

  .s-article_aboutus-content {
    padding-left: 0;
    padding-right: 0;
  }

  .h-90 {
    height: 26px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .h-90.h-90_2 {
    height: 90px;
  }

  .cms-casestudy_post {
    min-width: auto;
  }

  .div-block-24 {
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .aboutus_img {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .aboutus_img.hover {
    opacity: 0;
    inset: 0%;
  }

  .hero-gradient {
    z-index: -1;
    object-fit: cover;
    background-image: linear-gradient(137deg, #2c0224, #781e69);
    width: 100%;
    height: 940px;
    position: absolute;
  }

  .hero-tablet-wrap {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
    position: relative;
  }

  ._404-open-img-4k {
    display: none;
  }

  .div-block-33 {
    width: 100%;
  }

  .div-block-33.disable-on-mobile, .lottie-animation, .hero-content-lottie {
    display: none;
  }

  .hero-fade {
    background-color: #2020207a;
    bottom: 20px;
  }

  .home-header-image {
    z-index: 1;
    width: 80%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }

  .cms-article_sticky-side-mobile {
    width: 100%;
    display: flex;
    position: static;
  }

  .sample-report_content {
    justify-content: center;
    max-width: 100%;
    max-height: none;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 50px;
  }

  .h-purple_34 {
    padding-top: 20px;
  }

  .form-container {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .checkbox {
    position: relative;
    top: 2px;
  }

  .success-message-2 {
    margin: auto;
  }

  .div-block-42 {
    margin-top: auto;
    margin-bottom: auto;
  }

  .v2-sample-report--modal {
    width: auto;
    height: 100%;
    max-height: 870px;
    padding: 0;
    overflow: visible;
  }

  .nav_links-wrap {
    display: none;
  }

  .nav_links-wrap.mobile {
    grid-row-gap: 19px;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 0;
    display: flex;
    left: 0;
  }

  .nav_tect-dd {
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
  }

  .nav_tech-dd-toggle {
    margin-bottom: 0;
    font-size: 13px;
  }

  .nav_tech-dd-toggle.w--open {
    margin-bottom: 0;
  }

  .nav_tech-dd-link:active {
    border-left: 5px solid var(--purple);
    padding-left: 19px;
  }

  .nav_tech-dd-list.w--open {
    top: 100%;
    left: -300px;
  }

  .mobile-nav-blur {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background-color: #00000085;
    width: 100vw;
    height: 100vh;
    display: none;
    position: fixed;
    inset: 0%;
  }

  .container-medium {
    padding-left: 40px;
    padding-right: 40px;
  }

  .core_content {
    grid-column-gap: 51px;
    grid-row-gap: 75px;
    grid-template-columns: 1fr 1fr;
  }

  .core_content._1-col {
    grid-row-gap: 43px;
    grid-template-columns: 1fr;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
  }

  .button-wide {
    padding: 15px 30px;
    line-height: 18px;
  }

  .section-insights_header {
    margin-bottom: 0;
  }

  .insights-header_content {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .insights_copy-wrapper {
    grid-row-gap: 40px;
    flex-direction: column-reverse;
    grid-template-columns: 1fr 3fr;
  }

  .insights_copy {
    width: 100%;
  }

  .insights_intro {
    padding-top: 0;
  }

  .cms_article-details {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .cms_article-details.desktop {
    display: none;
  }

  .cms_article-details.mobile {
    grid-column-gap: 14px;
    grid-template-columns: .25fr 40px .25fr;
  }

  .form-3 {
    max-width: none;
    margin-top: 10px;
  }

  .content-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .div-block-52 {
    width: 100%;
  }

  .div-block-52.disable-on-mobile, .div-block-53.hide {
    display: none;
  }

  .footer-text-2 {
    line-height: 23px;
  }

  .footer-text-2.margin-bottom {
    margin-top: 0;
    margin-bottom: 0;
  }

  .footer-text-2.bold {
    width: 6.5rem;
  }

  .footer-text-2.bold.bottom-margin {
    width: auto;
    margin-bottom: 0;
  }

  .footer-text-2.bold.bottom-margin.dad {
    margin-bottom: 6px;
  }

  .footer-text-2.bold.bottom-margin.mobile {
    top: 0;
  }

  .footer-2 {
    justify-content: flex-start;
    padding-top: 3rem;
    padding-bottom: 3rem;
    display: flex;
  }

  .div-block-54 {
    width: 177px;
    margin-right: 83px;
  }

  .footer-careers-wrap-2, .footer-link-4.margin-top {
    padding-top: 7px;
    padding-bottom: 0;
  }

  .paragraph-white-3 {
    flex: 0 auto;
  }

  .content-container-3 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .h1-2 {
    width: 100%;
    font-size: 50px;
    line-height: 60px;
  }

  .access-form-2 {
    width: 100%;
  }

  .div-block-55 {
    margin-top: 35px;
  }

  .image-21 {
    min-width: 100%;
    max-width: 100%;
  }

  .visit-us_links-wrap-2 {
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
  }

  .paragraph-white-5 {
    flex: 0 auto;
  }

  .paragraph-white-5.center {
    text-align: left;
  }

  .visitus_lightbox-side {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .visit-us_content-wrap-2 {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    flex-direction: column;
    grid-template-columns: 1fr;
    align-items: center;
    height: auto;
  }

  .visitus_lightbox {
    grid-template-columns: 1fr;
    max-height: 100%;
  }

  .img_wrapper.about-image {
    width: 100%;
    min-width: auto;
    max-width: 600px;
    height: 770px;
    overflow: visible;
  }

  .button-secondary {
    position: relative;
  }

  .form-error {
    padding-left: 4px;
  }

  .container {
    padding: 120px 40px;
  }

  .book-image {
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    height: 400px;
    overflow: visible;
  }

  .quick-stack {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .form-success {
    padding-top: 4px;
  }

  .thumbnail {
    position: relative;
  }

  .text-size-39-3.white {
    max-width: 22ch;
  }

  .insights-thumbnail-3 {
    object-fit: cover;
    object-position: 40% 50%;
    position: static;
  }

  .page-progress_bar {
    width: 90vw;
  }

  .insights-right.md {
    display: block;
  }

  .insights-right.dt {
    display: none;
  }

  .popup-content {
    padding: 40px;
  }

  .share-socials_wrapper.md {
    display: flex;
  }

  .slide {
    height: 780px;
  }

  .h1-3 {
    width: 100%;
    font-size: 50px;
    line-height: 60px;
  }

  .services-grid {
    grid-column-gap: 54px;
    grid-row-gap: 38px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .stop-looking-content-wrap {
    flex-flow: column;
  }

  .stop-looking-text-wrap {
    max-width: none;
    padding: 24px;
  }

  .one-stop-animation-wrap {
    height: 300px;
  }

  .btn-centered-wrap {
    margin-top: 20px;
  }

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

  .blog-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: .8fr 1fr;
  }

  .posts-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .posts-grid.all-articles {
    grid-template-columns: 1fr 1fr;
  }

  .divider-line.inset {
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .experts-bg-logo {
    width: 150px;
    inset: auto auto -36px -18px;
  }

  .hero-heading-text-wrap.is-home {
    margin-top: 0;
  }

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

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

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

  .inner-hero.photo-mountain {
    background-position: 50%;
  }

  .inner-hero.image-weight {
    background-image: var(--image-319da3e4);
    background-position: 100% 80%;
  }

  .inner-hero.image-rocket {
    background-image: var(--image-7be9637e);
  }

  .inner-hero.image-tree {
    background-position: 70%;
  }

  .inner-hero.image-runner {
    background-position: 66%;
  }

  .inner-hero.image-lock {
    background-image: var(--image-34931272);
    background-position: 100% 20%;
    background-size: 130%;
  }

  .core-grid {
    grid-column-gap: 51px;
    grid-row-gap: 75px;
    grid-template-columns: 1fr 1fr;
  }

  .about-image-blocks-wrap {
    flex-flow: column;
  }

  .img_wrapper-about-team {
    flex: none;
  }

  .banner-wrap {
    max-width: none;
    padding: 16px 12px;
  }

  .banner-upper-side {
    grid-column-gap: 13px;
    grid-row-gap: 13px;
  }

  .banner-quote-side {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    height: auto;
    min-height: 400px;
    padding: 15px 12px;
  }

  .text_banner-title {
    font-size: 22px;
  }

  .text_banner-subhead {
    font-size: 16px;
  }

  .banner_icon-wrap {
    width: 18px;
  }

  .text_banner-li-title {
    font-size: 16px;
  }

  .text_banner-li-desc {
    font-size: 14px;
  }

  .banner-quote_upper-side {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
  }

  .text_banner-quote {
    font-size: 14px;
  }

  .banner-quote_photo-name {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .about-image-icon.is-top {
    top: -1rem;
    left: -1rem;
  }

  .about-image-icon.is-bottom {
    bottom: -1rem;
    right: -1rem;
  }

  .about_blocks-line.is_lower {
    padding-top: 0;
  }

  .about-block {
    height: 100%;
  }

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

  .rsg-arrow {
    display: none;
  }

  .button-coffee {
    padding: 15px 30px;
    line-height: 18px;
  }

  .buy-sell_box {
    grid-row-gap: 40px;
    justify-content: space-between;
    width: 50%;
    min-height: 800px;
    padding: 80px 20px 20px;
  }

  .buy-sell_content-2 {
    grid-column-gap: 20px;
    align-items: flex-start;
    margin-top: 0;
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    overflow: auto;
  }

  .buy-sell_btn-wrap {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .quote-icon {
    width: 40px;
  }

  .landing-testimonial-wrap {
    min-height: 440px;
    margin-top: 0;
  }

  .landing-testiomnial_logos {
    align-items: center;
  }

  .landing-testiomnial_logos.telescope {
    max-width: 100%;
  }

  .buy-sell-box_purple-bg {
    padding: 15px 20px 12px;
  }

  .telescope {
    max-width: 150px;
  }

  .main-capital {
    max-width: 100px;
    height: 100%;
    left: -11px;
  }

  .buy-sell_content-new {
    grid-column-gap: 16px;
    justify-content: flex-start;
    align-items: stretch;
    margin-top: 0;
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    overflow: visible;
  }

  .buy-sell_box-2 {
    grid-row-gap: 40px;
    justify-content: space-between;
    width: 50%;
    min-height: 930px;
    padding: 80px 20px 20px;
  }

  .landing-testimonial-wrap-2, .landing-testimonial-wrap-3 {
    min-height: 440px;
    margin-top: 0;
  }

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

  .logos-wrap {
    width: 100%;
  }

  .client-box {
    max-width: 600px;
  }

  .client-img-wrap {
    background-position: 0 0;
    background-size: cover;
    width: 132px;
    height: 128px;
  }

  .cs-card {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding-left: 40px;
    padding-right: 40px;
  }

  .cs-card-title {
    font-size: 32px;
  }

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

  .cs-img.cs-img-book {
    max-width: 300px;
    position: static;
    transform: rotate(0);
  }

  .card__text {
    font-size: 14px;
  }

  .cs-card-container {
    grid-template-columns: .5fr 1fr;
  }

  .modal__wraper {
    max-width: 90%;
  }

  .modal__content {
    padding: 30px;
  }

  .modal__body {
    border-radius: 20px;
  }

  .hero-cta.lp-hero-cta {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 120px;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .inner-hero-backdrp {
    display: none;
  }

  .navbar {
    z-index: 1001;
    padding-top: 21px;
    padding-bottom: 21px;
    position: relative;
  }

  .navbar__container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .navbar__brand {
    z-index: 10;
  }

  .navbar__nav {
    z-index: 100;
    padding-top: var(--_header---header-height);
    background-color: var(--purple);
    background-image: linear-gradient(135deg, #3f0f37e6, var(--purple));
    -webkit-backdrop-filter: blur(15px) drop-shadow(0 2px 5px #781e69b3);
    backdrop-filter: blur(15px) drop-shadow(0 2px 5px #781e69b3);
    flex-flow: column;
    justify-content: flex-start;
    align-self: stretch;
    align-items: flex-end;
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .navbar__toggle {
    z-index: 100;
    color: var(--_header---header-text-color);
    cursor: pointer;
    justify-content: flex-end;
    align-items: center;
    width: 50px;
    height: 50px;
    padding: 0;
    display: flex;
    transform: translate(10px);
  }

  .navbar__toggle.w--open {
    background-color: var(--_header---header-bg);
    color: var(--_header---header-text-color);
  }

  .navbar__toggle-icon {
    filter: invert();
    width: 100%;
    height: 100%;
  }

  .navbar__drp {
    text-align: right;
    width: 100%;
  }

  .navbar__drp-toggle {
    width: 100%;
    padding: 8px 20px;
  }

  .navbar__drp-list.w--open {
    background-color: var(--_header---header-bg);
    box-shadow: none;
    position: static;
  }

  .navbar__drp-list.navbar__services {
    width: 100%;
    position: static;
  }

  .local {
    text-align: right;
    flex-flow: column;
    justify-content: center;
    align-items: flex-end;
    width: auto;
    margin-left: auto;
    margin-right: 0;
    display: inline-flex;
  }

  .local__toggle {
    width: 100%;
  }

  .navbar__link {
    text-align: right;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
    padding: 7px 21px;
  }

  .navbar__link.navbar__link--modal {
    display: none;
  }

  .navbar__drp-icon {
    margin-right: 17px;
  }

  .navbar__card {
    color: var(--black);
    justify-content: flex-start;
    align-self: flex-end;
    align-items: flex-end;
  }

  .navbar__card:hover {
    background-color: var(--white);
    color: var(--purple);
  }

  .navbar__card.hover-glow {
    align-items: flex-end;
  }

  .navbar__card-subtitle {
    color: inherit;
  }

  .local__slot {
    justify-content: flex-end;
    align-items: center;
    padding: 10px 0 0;
    display: flex;
  }

  .navbar__drp-container {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    color: var(--_header---header-bg);
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-end;
    max-width: 100%;
    padding: 0 20px;
  }

  .icon-arrow.navbar__tabs-arrow, .navbar__card-readmore, .navbar__card-pict {
    display: none;
  }

  .navbar__cta-slot {
    justify-content: flex-end;
    display: flex;
  }

  .navbar__tabs {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    background-color: #0000;
    max-width: 100%;
    min-height: auto;
    padding: 20px 0;
  }

  .navbar__tabs-link {
    border: 1px solid var(--white);
    background-color: var(--white);
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    max-width: 100%;
  }

  .navbar__tabs-link:hover, .navbar__tabs-link:focus, .navbar__tabs-link.active, .navbar__tabs-link.active.w--current {
    background-color: var(--white);
  }

  .navbar__tabs-figure {
    opacity: 100;
    object-fit: contain;
    max-width: unset;
    flex: 0 auto;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    width: 100px;
    height: 100px;
    display: flex;
    position: static;
    transform: translate(0%);
  }

  .navbar__tabs-title {
    color: var(--purple);
  }

  .navbar__tabs-subtitle {
    color: var(--black);
  }

  .navbar__tabs-subtitle.text-ellipsis-3 {
    text-align: left;
  }

  .navbar__tabs-info {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex: 1;
    align-items: flex-start;
  }

  .navbar__tabs-mob-icon {
    border: 1px solid var(--white);
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    padding: 10px;
    display: none;
  }

  .navbar__submenu {
    flex-flow: column;
  }

  .navbar__submenu-link {
    justify-content: flex-end;
    width: 100%;
    display: flex;
    position: relative;
  }

  .navbar__submenu-content {
    z-index: 0;
    opacity: 100;
    background-color: #0000;
    flex-flow: column;
    width: 100%;
    height: 0;
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease;
    display: flex;
    position: relative;
    top: 0;
  }

  .navbar__submenu-content.active {
    pointer-events: auto;
    height: auto;
    position: relative;
    overflow: visible;
  }

  .navbar__services-slot {
    flex-flow: column;
    width: 100%;
  }

  .flag-slider {
    padding: 2px;
  }

  .lp-hero {
    height: auto;
  }

  .lp-hero-portrait {
    max-width: 500px;
    max-height: 600px;
    overflow: hidden;
    transform: translate(0, 40px);
  }

  .lp-hero-title.text-color-white {
    font-size: 40px;
  }

  .lp-hero-info {
    z-index: 1;
    position: relative;
  }

  .lp-hero-img {
    object-fit: cover;
    max-height: 80%;
    display: block;
    position: static;
    overflow: hidden;
  }

  .lp-slider-list {
    width: 100%;
  }

  .lp-slider-item {
    max-width: 50%;
  }

  .lp-slider-arrow {
    width: 30px;
    height: 30px;
  }

  .lp-slider-arrow.lp-slider-arrow--left.hide, .lp-slider-arrow.lp-slider-arrow--right.hide {
    display: block;
  }

  .card-testimonial {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    min-height: 290px;
    padding: 20px;
  }

  .card-testimonial-top {
    height: 50px;
  }

  .card-testimonial-logo {
    height: auto;
  }

  .logos-masonry {
    column-count: 3;
    column-gap: 1rem;
  }

  .lp-subtitle {
    font-size: 20px;
  }

  .lp-subtitle.paragraph-white {
    font-size: 18px;
  }

  .lp-hero-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1.15fr;
  }

  .lp-logos__item {
    flex: 0 0 20%;
    min-width: 20%;
  }

  .logos-wrap-copy {
    width: 100%;
  }

  .logos-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .lp-hero-video {
    padding-top: 2rem;
    padding-left: 0;
    padding-right: 0;
  }

  .lp-hero-video-wrap {
    border-radius: 50px;
  }

  .video-bg-wrapper {
    min-height: 400px;
  }

  .lp-video-section {
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    min-height: 100vh;
  }

  .lp-video-section-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
    grid-template-columns: 1.5fr;
    grid-auto-flow: column;
    justify-content: flex-start;
    align-self: flex-start;
    place-items: center;
    padding-top: 120px;
    padding-bottom: 120px;
    display: flex;
    position: relative;
  }

  .lp-hero-left {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .lp-hero-section {
    background-image: linear-gradient(180deg, var(--_lp---color--dark), var(--_lp---color--purple-500));
    height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .bg-circle {
    display: none;
  }

  .lp-container.lp-container-head {
    padding-left: 0;
  }

  .lp-logo {
    transition: width .2s;
  }

  .lp-logo.w--current {
    position: relative;
  }

  .lp-header-nav {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    background-color: #242124;
    border-radius: 0;
    flex-flow: column;
    flex: none;
    align-self: stretch;
    padding: 0 2.35rem 2.35rem;
    display: flex;
  }

  .lp-nav-link {
    text-align: left;
    border-bottom: 1px solid #ffffff80;
    flex: 1;
    align-self: flex-start;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    display: block;
  }

  .lp-hero-grid {
    grid-template-columns: 2fr;
  }

  .lp-head {
    z-index: 100;
    flex-flow: column;
    flex: 1;
    min-height: 60px;
  }

  .lp-wistia-hero {
    aspect-ratio: auto;
  }

  .lp-title {
    font-size: 32px;
  }

  .lp-title.text-white.text-shadow.lp-title-lg.text-center {
    font-size: 38px;
  }

  .lp-hero-subtitle.text-white.text-opacity {
    font-size: 16px;
  }

  .lp-sec {
    height: auto;
  }

  .lp-quote-text {
    font-size: 18px;
  }

  .lp-person.lp-person--trust {
    flex: none;
  }

  .lp-person-ava.sm {
    width: 50px;
    height: 50px;
  }

  .info-cards {
    margin-top: 0;
  }

  .lp-card {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 100%;
    min-height: 260px;
    margin-bottom: 20px;
  }

  .lp-card-content {
    border-left-style: none;
    padding-left: 0;
  }

  .lp-card-icon {
    width: 80px;
    height: 80px;
  }

  .lp-card-title {
    font-size: 24px;
  }

  .lp-card-text {
    font-size: 18px;
    font-weight: 300;
  }

  .lp-carousel-slide {
    max-width: calc(75% - 25px);
  }

  .lp-trust-review {
    padding: 20px;
  }

  .lp-features {
    height: auto;
  }

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

  .fuatures-cards {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
  }

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

  .lp-needs {
    height: auto;
  }

  .needs-cards {
    flex-flow: column;
  }

  .needs-card {
    border-top: 1px solid #fff;
    border-left-style: none;
    max-width: 100%;
    min-height: 200px;
  }

  .needs-card.first {
    border-top-style: none;
  }

  .needs-card-title {
    font-size: 16px;
  }

  .lp-team {
    height: auto;
    min-height: 100vh;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .team-tabs {
    padding-top: 0;
  }

  .team-tabs-nav {
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
    display: none;
  }

  .team-tabs-link {
    flex: none;
    align-self: center;
    max-width: 48%;
  }

  .team-tabs-link.show-mobile {
    max-width: 100%;
    display: flex;
  }

  .team-tabs-tab {
    margin-bottom: 1.25rem;
    display: flex;
  }

  .team-person {
    padding: 1.05rem;
  }

  .team-person.show-mobile {
    margin-bottom: 1rem;
    display: flex;
  }

  .team-person-ava {
    width: 60px;
    height: 60px;
  }

  .tools-table {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: flex;
  }

  .tools-table-head {
    grid-template-columns: 1fr 1fr;
  }

  .tools-table-body {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .tools-table-col {
    padding: 16px;
  }

  .tools-table-col-td {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    justify-content: flex-start;
    align-self: stretch;
    font-size: 16px;
    line-height: 18px;
  }

  .lp-faqs {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .faq__item-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .lp-case-section {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .case-study-grid {
    grid-template-columns: 2fr;
  }

  .case-study-wrap-img {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .case-study-picture {
    margin-left: auto;
    margin-right: auto;
  }

  .checkbox-2 {
    position: relative;
    top: 2px;
  }

  .lp-about {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .lp-menu-toggle {
    padding: 15px;
    transition: transform .2s;
    position: absolute;
    right: 0;
    transform: rotate(0);
  }

  .lp-menu-toggle.w--open {
    background-color: #fff0;
  }

  .lp-projects {
    min-height: 100vh;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .lp-projects-item {
    flex: 1;
    min-width: 50%;
    max-width: 50%;
  }

  .tools-table-text {
    font-size: 12px;
  }

  .icon {
    transition: transform .2s;
  }

  .team-tabs-tab-info.noise {
    width: 100%;
    height: 0;
    padding: 0;
  }

  .team-person-2 {
    padding: 1.05rem;
  }

  .team-person-ava-2 {
    width: 60px;
    height: 60px;
  }

  .team-tabs-tab-2 {
    display: flex;
  }

  .team-tabs-tab-info-wrap {
    border-radius: 1.25rem;
    overflow: hidden;
  }

  .lp-trust-slide {
    max-width: 65%;
  }
}

@media screen and (max-width: 767px) {
  .nav-link {
    margin-left: 22px;
    padding-left: 0;
  }

  .button {
    margin-top: 0;
  }

  .button.header {
    margin-top: 4rem;
  }

  .footer-2-text-wrap {
    width: auto;
    margin-bottom: 0;
  }

  .footer-2-text-wrap.vertical {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 0;
  }

  .footer-text, .footer-text.bold, .footer-text.bold {
    width: auto;
  }

  .form__wrap {
    display: block;
  }

  .footer-2-text-wrap-mobile {
    width: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: none;
  }

  .footer-3 {
    width: auto;
  }

  .footer-content {
    grid-row-gap: 0px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .footer-1 {
    margin-bottom: 10px;
  }

  .footer {
    margin-bottom: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }

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

  .paragraph-2.footerwhite {
    width: 100%;
  }

  .cryptar-logo-footer {
    width: 145px;
    margin-left: 0;
  }

  ._2col {
    grid-template-rows: 3fr;
    grid-template-columns: 1fr;
  }

  .investor-text {
    width: auto;
  }

  .team-box, .team-box.left-margin {
    grid-column-gap: 20px;
    flex-flow: row;
  }

  .access-form {
    padding-left: 0;
    padding-right: 0;
  }

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

  .footer-2-text-wrap-m {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 25px;
    display: flex;
  }

  .container-large {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-large.nav-lang {
    padding-right: 20px;
  }

  .container-large.is-narrow {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-large.lp-hero-container {
    flex-flow: column;
    align-self: stretch;
  }

  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-text-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .h1-hero-white {
    font-size: 39px;
  }

  .paragraph-white.big {
    font-size: 16px;
  }

  .buy-sell_content {
    padding-left: 20px;
    padding-right: 20px;
    display: none;
  }

  .paragraph-black.is-bigger {
    font-size: 16px;
  }

  .holistic-box_wrap.is-service.underline-mobile {
    border-bottom: 1px #000;
  }

  .holistic-box_top {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .manager_box {
    grid-column-gap: 24px;
    align-items: stretch;
  }

  .manager_img {
    width: 173.813px;
  }

  .manager_text._w-300 {
    padding-left: 0;
  }

  .sample-content-wrap {
    flex-direction: column;
  }

  .sample_text {
    align-items: stretch;
    max-width: none;
  }

  .nav-links-wrap_m {
    display: none;
  }

  .nav-content_m {
    margin-top: 20px;
    display: none;
  }

  .image {
    height: auto;
  }

  .report-img {
    width: 100%;
  }

  .report-text_wrap, .side-image-wrap {
    width: auto;
  }

  .faq__item {
    margin-bottom: 20px;
  }

  .faq__item-q {
    margin-bottom: 5px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .faq__item-p {
    padding-bottom: 5px;
  }

  .lightbox-report {
    flex: none;
  }

  ._w-670 {
    width: auto;
  }

  .text-link {
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 18px;
  }

  .modal-view {
    width: 90%;
    display: flex;
  }

  .v2-sample-report {
    display: none;
  }

  ._404 {
    background-image: var(--image-406824ba);
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 700px;
  }

  .image-9 {
    height: 500px;
    display: none;
  }

  .v2-schedule-meeting {
    display: none;
  }

  .vendor-report-text_wrap {
    flex-direction: column;
  }

  .side-image-wrap-m {
    width: auto;
  }

  .buy-sell_content-m {
    margin-top: 0;
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .tab-buy {
    color: #fff;
    background-color: #038a97;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 20px;
  }

  .tab-buy.w--current {
    background-color: #00bed0;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .tab-label {
    color: var(--white);
    font-size: 20px;
    line-height: 20px;
  }

  .tabs-testimonials-menu {
    grid-column-gap: 9px;
    display: flex;
  }

  .div-block-20 {
    margin-bottom: 15px;
    margin-right: 10px;
  }

  .r-cms_top-title {
    justify-content: center;
  }

  .r-cms_top-dropdown-wrap {
    margin-right: 0;
    left: -17px;
  }

  .fs-dropdown-1 {
    margin-left: 0;
    margin-right: 0;
  }

  .fs-dropdown_toggle-1 {
    margin-left: 0;
  }

  .references-cms {
    margin-top: 20px;
  }

  .collection-list.filter-complex {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .status-label {
    font-size: 18px;
  }

  .cms-article_title {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: row;
    display: flex;
  }

  .article-back_link {
    justify-content: center;
    align-items: center;
    width: 30px;
    min-width: 30px;
    height: 30px;
    min-height: 30px;
    display: flex;
    position: relative;
    top: 7px;
    left: 0;
  }

  .s-article_aboutus-content {
    grid-row-gap: 22px;
    flex-direction: column;
  }

  .s-a_quote {
    margin-top: 0;
  }

  .s-othercases_content {
    grid-row-gap: 36px;
    flex-direction: column;
  }

  .s-o_text {
    width: auto;
  }

  .s-o_choises, .collection-item-2 {
    width: 100%;
  }

  .div-block-24 {
    flex-direction: column;
    align-items: center;
  }

  .div-block-25 {
    width: auto;
    height: auto;
  }

  .collection-list-2 {
    grid-row-gap: 32px;
    flex-direction: column;
  }

  .div-block-27 {
    grid-row-gap: 12px;
    flex-direction: column;
    display: flex;
  }

  .hero-gradient {
    height: 960px;
  }

  .filter-dd-toggle_text {
    align-items: center;
  }

  ._404-open-img-4k {
    height: 500px;
    display: none;
  }

  .home-header-image {
    width: 100%;
  }

  .text-block-5 {
    flex: 0 auto;
  }

  .sample-report_content {
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .v2-sample-report--modal {
    max-height: 800px;
  }

  .container-medium {
    padding-left: 20px;
    padding-right: 20px;
  }

  .core_content {
    grid-template-columns: 1fr;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
  }

  .v6-schedule-meeting {
    display: none;
  }

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

  .insights_content {
    position: static;
  }

  .cms_article-details.mobile {
    grid-template-columns: 1fr 40px 1fr;
  }

  .content-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-text-2, .footer-text-2.bold {
    width: auto;
  }

  .footer-2 {
    margin-bottom: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .div-block-54 {
    margin-bottom: 15px;
    margin-right: 10px;
  }

  .content-container-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .h1-2 {
    width: auto;
    font-size: 40px;
    line-height: 1.3em;
  }

  .access-form-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .visit-us_links-wrap-2 {
    grid-column-gap: 29px;
    grid-row-gap: 42px;
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .visit-us_content-wrap-2 {
    grid-row-gap: 50px;
    flex-direction: column;
    height: auto;
  }

  .img_wrapper.about-image {
    height: auto;
  }

  .team-member-description.simon {
    word-break: break-all;
  }

  .container {
    padding: 80px 20px;
  }

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

  .text-size-39-3.white {
    left: 5%;
    right: 5%;
  }

  .insights-thumbnail-3 {
    object-position: 35% 50%;
  }

  .page-progress_bar {
    width: 94vw;
  }

  .popup-content {
    padding: 20px;
  }

  .insights_slider-item {
    padding: 5px 30px 30px;
  }

  .alert.copied {
    display: none;
    position: absolute;
    bottom: -40px;
  }

  .share-socials_wrapper {
    margin-top: 2rem;
  }

  .share-socials_wrapper.md {
    display: flex;
    position: relative;
  }

  .share-socials_wrapper.dt {
    display: none;
  }

  .h1-3 {
    width: auto;
    font-size: 40px;
    line-height: 1.3em;
  }

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

  .heading-3-2 {
    font-size: 24px;
  }

  .blog-grid {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
    grid-template-columns: 1fr;
  }

  .posts-grid {
    column-count: 1;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

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

  .posts-grid.all-articles {
    grid-template-columns: 1fr;
  }

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

  .hero-text-button-wrap {
    z-index: 2;
    position: relative;
  }

  .grid-4, .grid-3 {
    grid-template-columns: 1fr;
  }

  .inner-hero {
    height: 780px;
    position: relative;
  }

  .inner-hero.photo-mountain {
    background-image: var(--image-558cfb2e);
    background-position: 0 0;
    position: relative;
  }

  .inner-hero.image-weight {
    background-image: var(--image-319da3e4);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .inner-hero.image-rocket {
    background-position: 40% 20%;
    background-size: cover;
  }

  .inner-hero.image-tree {
    background-image: var(--image-5e22de04);
    background-position: 20%;
  }

  .inner-hero.image-runner {
    background-image: var(--image-2d8ef67a);
    background-position: 70% 90%;
  }

  .inner-hero.image-city {
    background-image: var(--image-i799e4008);
    background-position: 80% 70%;
  }

  .inner-hero.image-lock {
    background-image: var(--image-34931272);
    background-position: 80% 20%;
    background-size: 200vw 230vw;
  }

  .heading-photo-wrap {
    grid-template-columns: 1fr;
  }

  .core-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
  }

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

  .about-blocks-wrap {
    flex-flow: column;
  }

  .banner-wrap {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    border-top-left-radius: 0;
    padding: 24px;
  }

  .banner-quote-side {
    min-height: auto;
    padding: 16px;
  }

  .banner-quote_photo-name {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .about-block {
    max-width: none;
  }

  .rsg_wrap {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .rsg-col {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .rsg-content-wrap {
    min-height: auto;
  }

  .rsg-content-wrap.is-s {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .text-rsg.text-400 {
    font-size: 14px;
  }

  .rsg-arrow {
    display: none;
  }

  .buy-sell_box {
    grid-row-gap: 50px;
    border-top-left-radius: 0;
    width: 100%;
    min-width: auto;
    height: auto;
    min-height: auto;
    padding-top: 35px;
    padding-bottom: 30px;
  }

  .buy-sell_bottom-btm {
    display: block;
  }

  .buy-sell_bottom {
    display: flex;
  }

  .buy-sell_content-2 {
    padding-left: 20px;
    padding-right: 20px;
    display: none;
  }

  .buy-sell_btn-wrap {
    margin-top: 20px;
  }

  .quote-icon {
    margin-right: 20px;
  }

  .quote-wrap {
    border-right: 2px solid #781e69;
    align-items: center;
    margin-right: 20px;
  }

  .landing-testimonial-wrap {
    min-height: 390px;
  }

  .landing-test-profile {
    justify-content: flex-start;
    align-items: center;
  }

  .buy-sell_content-new {
    padding-left: 20px;
    padding-right: 20px;
    display: none;
  }

  .buy-sell_box-2 {
    grid-row-gap: 32px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    width: 100%;
    min-width: auto;
    height: auto;
    min-height: auto;
    padding-top: 35px;
    padding-bottom: 30px;
  }

  .landing-testimonial-wrap-2, .landing-testimonial-wrap-3 {
    min-height: 390px;
  }

  .logos-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 93%;
    margin-left: auto;
    margin-right: auto;
  }

  .client-img-wrap {
    background-image: var(--image-739a8183);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100px;
    height: 100px;
  }

  .cs-card {
    grid-auto-flow: column dense;
    padding-left: 0;
    padding-right: 0;
  }

  .cs-img-wrap {
    justify-content: center;
    align-items: center;
  }

  .grid-case-study {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    grid-template-columns: 1.25fr;
    margin-bottom: 0;
  }

  .cs-card-container {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .modal.modal--submenu.modal--active {
    height: auto;
    position: relative;
  }

  .modal__wraper {
    max-width: 100%;
  }

  .modal__content {
    padding: 20px;
    overflow: auto;
  }

  .modal-close-svg {
    width: auto;
    height: auto;
  }

  .btn.btn--purple.lp-cta {
    border-radius: 8px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
    line-height: 42px;
  }

  .btn.btn--outline-white {
    background-color: #2020201a;
  }

  .btn.lp-cta {
    border-radius: 8px;
    font-size: 16px;
    line-height: 42px;
  }

  .btn.lp-cta.btn--purple.is-mobile {
    display: inline-flex;
  }

  .btn.lp-cta.btn--purple.is-desctop {
    display: none;
  }

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

  .inner-hero-backdrp {
    z-index: 1;
    background-color: #781e698a;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    inset: 0%;
  }

  .inner-hero-backdrp.hide {
    display: none;
  }

  .navbar__container {
    padding-left: 10px;
    padding-right: 20px;
  }

  .navbar__brand.text-color-purple.no-hover {
    cursor: auto;
  }

  .navbar__nav {
    max-height: 100vh;
    padding-left: 0;
    padding-right: 0;
  }

  .navbar__toggle {
    width: 40px;
    height: 40px;
  }

  .navbar__toggle.w--open {
    width: 40px;
  }

  .navbar__drp-list.navbar__services {
    background-color: var(--purple);
  }

  .local {
    margin-right: 0;
  }

  .navbar__link {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar__brand-svg {
    height: 100%;
  }

  .navbar__card {
    background-color: var(--_header---header-bg);
    border-color: #ffffff40;
    max-width: 100%;
  }

  .navbar__card:hover {
    background-color: var(--blue-transparent);
    border-color: #fff;
  }

  .navbar__card-title {
    color: var(--white);
    text-overflow: initial;
    height: auto;
  }

  .navbar__card-subtitle {
    color: var(--white);
  }

  .local__slot {
    justify-content: flex-end;
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar__cta-slot {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar__tabs-link {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    min-height: 86px;
    padding: 20px;
  }

  .navbar__tabs-link.active {
    padding: 10px;
  }

  .navbar__tabs-figure {
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
  }

  .navbar__tabs-title {
    font-size: 1rem;
    font-weight: 400;
  }

  .navbar__tabs-subtitle {
    font-size: .875rem;
  }

  .navbar__tabs-img {
    object-fit: cover;
  }

  .navbar__tabs-info {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    text-align: left;
    flex: 1;
    justify-content: center;
    align-items: flex-start;
  }

  .navbar__tabs-mob-icon {
    flex: none;
    width: 40px;
    height: 40px;
    padding: 5px;
    display: none;
  }

  .navbar__services-slot {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-list {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .about-list-col {
    max-width: 100%;
  }

  .about-list-col.is-moved-down {
    padding-top: 0;
  }

  .lp-hero {
    min-height: 450px;
    position: relative;
  }

  .lp-hero-portrait {
    max-width: 450px;
    max-height: 500px;
  }

  .lp-hero-portrait.lp-hero-florian {
    z-index: 2;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .lp-hero-title {
    font-size: 26px;
  }

  .lp-hero-info {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    border-radius: 30px;
    justify-content: center;
    align-items: flex-start;
    max-width: 100%;
    padding: 20px 40px 20px 20px;
  }

  .lp-hero-info.no-shadow.padding-left-0 {
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-right: 0;
  }

  .lp-slider-list {
    width: 100%;
  }

  .lp-slider-item {
    max-width: 100%;
    margin-left: 0;
  }

  .lp-slider-nav {
    color: var(--purple);
    justify-content: center;
    align-items: center;
    width: 100%;
    display: none;
  }

  .lp-slider-nav.hide {
    width: 100%;
    display: block;
  }

  .card-testimonial {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    min-height: 240px;
    padding: 10px;
  }

  .lp-subtitle {
    font-size: 16px;
  }

  .lp-hero-wrapper {
    border-radius: 30px;
  }

  .card-testimonial-quote {
    width: 42px;
    height: 40px;
    position: absolute;
    right: 0;
  }

  .lp-logos__item {
    flex: 0 0 180px;
    min-width: 180px;
  }

  .lp-logos__item.bg-white {
    flex: 1;
  }

  .logos-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lp-hero-video-wrap {
    border-radius: 30px;
  }

  .lp-video-section-wrapper {
    grid-template-rows: auto;
    grid-template-columns: 1.5fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row dense;
    justify-items: center;
  }

  .lp-hero-left {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: center;
    width: 100%;
  }

  .lp-hero-right {
    width: 100%;
    height: auto;
  }

  .lp {
    margin-top: -80px;
  }

  .lp-container.lp-container-card.bg-teal {
    padding: 30px;
  }

  .lp-head {
    min-height: 80px;
  }

  .lp-section-subtitle, .lp-hero-subtitle, .lp-hero-subtitle.text-white {
    font-size: 16px;
  }

  .svg-icon {
    width: 16px;
    min-width: 16px;
    height: 16px;
  }

  .text-feature-title.text-white.text-opacity {
    font-size: 12px;
  }

  .lp-sec {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .lp-person.lp-person--trust {
    height: 60px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .lp-person-ava.sm {
    width: 40px;
    height: 40px;
  }

  .lp-person-name {
    font-size: 14px;
  }

  .lp-person-position.text-opacity {
    font-size: 10px;
  }

  .info-cards {
    padding-top: 0;
    padding-bottom: 0;
  }

  .lp-card.bg-blue-gradient-reverse {
    margin-bottom: 0;
  }

  .lp-card-text {
    font-size: 16px;
  }

  .lp-trusted {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .lp-carousel {
    margin-bottom: 8rem;
  }

  .lp-carousel-slide {
    max-width: 100%;
    padding-right: 0;
  }

  .lp-carousel-arrow {
    top: auto;
    bottom: -65px;
    left: 50%;
  }

  .lp-carousel-arrow.left {
    left: calc(50% - 65px);
    right: auto;
  }

  .lp-trust-review {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    padding: 15px;
  }

  .lp-trust-review-quote {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 10px;
  }

  .lp-features {
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .lp-title-grid {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-card-icon {
    width: 50px;
    height: 50px;
  }

  .feature-card-icon-code {
    width: 30px;
    height: 30px;
  }

  .feature-card-text {
    font-size: 14px;
  }

  .lp-needs {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .needs-cards {
    flex-flow: column;
    justify-content: flex-start;
  }

  .needs-card {
    border-top: 1px solid #fff;
    border-left-style: none;
    max-width: 100%;
  }

  .needs-card.first {
    border-top-style: none;
    padding: 20px;
  }

  .needs-card-title {
    font-size: 18px;
  }

  .lp-team {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .team-tabs {
    padding-top: 0;
  }

  .team-tabs-nav {
    margin-bottom: 20px;
  }

  .team-tabs-link {
    max-width: 100%;
  }

  .team-tabs-tab {
    margin-bottom: 1rem;
  }

  .team-tabs-tab.noise {
    padding: 20px;
  }

  .team-person.show-mobile {
    padding: .75rem;
  }

  .team-person-name {
    font-size: 18px;
  }

  .team-person-position.text-opacity {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
  }

  .team-tabs-text {
    font-size: 14px;
  }

  .lp-calendar, .lp-tools {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .tools-table {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
  }

  .tools-table-head {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .tools-table-body {
    border-radius: 0;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    display: flex;
    position: relative;
  }

  .tools-table-col {
    background-color: #ffffff1a;
    border-color: #fff;
    max-width: calc(100% - 140px);
    margin-bottom: 20px;
    padding: 20px;
    position: absolute;
    left: 140px;
  }

  .tools-table-col.first {
    background-color: #fff0;
    border-color: #0000;
    width: 150px;
    padding-left: 0;
    font-size: 12px;
    font-weight: 500;
    position: static;
  }

  .tools-table-col.last {
    display: none;
  }

  .tools-table-col-td {
    font-size: inherit;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: auto;
  }

  .tools-table-col-td.first {
    justify-content: center;
    align-items: flex-start;
  }

  .tools-table-col-th {
    display: inline-flex;
  }

  .tools-table-code {
    display: none;
  }

  .lp-faqs {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .faq__item-2 {
    margin-bottom: 20px;
  }

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

  .case-study {
    padding: 20px;
  }

  .case-study-title {
    font-size: 24px;
  }

  .case-study-text {
    font-size: 14px;
  }

  .case-study-wrap-img {
    max-width: 150px;
  }

  .lp-form-row {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .lp-form-input {
    height: 42px;
    padding: 15px;
    font-size: 14px;
    line-height: 42px;
  }

  .lp-form-input::placeholder {
    font-size: 14px;
  }

  .lp-about {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .lp-about-map {
    border-radius: 1.5rem;
    width: 100%;
    min-height: 250px;
    overflow: hidden;
  }

  .lp-projects-item {
    min-width: 100%;
    max-width: 100%;
  }

  .lp-project-card {
    height: auto;
  }

  .tools-table-icon {
    margin-bottom: .5rem;
  }

  .tools-table-text {
    font-size: inherit;
  }

  .tools-table-text.light {
    font-size: 12px;
    line-height: 1.2;
  }

  .lp-reviews {
    height: auto;
  }

  .lp-reviews-head {
    display: none;
  }

  .lp-reviews-list {
    flex-flow: column;
    align-items: stretch;
  }

  .tools-table-title {
    font-size: 12px;
  }

  .team-tabs-tab-info {
    flex-flow: column;
    width: 100%;
    padding: 0;
    transition: height .2s;
  }

  .team-tabs-tab-info.noise {
    border-radius: 1.25rem;
    padding: 0;
  }

  .team-tabs-tab-info-wrap {
    border-radius: 1.25rem;
    flex-flow: column;
    width: 100%;
    padding: 30px;
    display: flex;
    overflow: hidden;
  }

  .lp-trust-slide {
    max-width: 90%;
    margin-bottom: 20px;
    padding-right: 0;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 28px;
  }

  .close-modal {
    flex: none;
    width: 35px;
    height: 36px;
    font-size: 32px;
    line-height: 1.2em;
    right: -8px;
  }

  .nav-link {
    margin-left: 13px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .nav-link-wrap {
    padding-bottom: 5px;
  }

  .nav-link-wrap.nav-top-margin {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .dt-block {
    width: 18rem;
    height: 19rem;
  }

  .button {
    margin-top: 0;
    padding-left: 35px;
    padding-right: 35px;
    font-size: 16px;
  }

  .page-wrapper {
    overflow: hidden;
  }

  .footer-2-text-wrap {
    justify-content: flex-start;
  }

  .footer-2-text-wrap.vertical {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    justify-content: flex-start;
    margin-top: 33px;
  }

  .footer-text {
    width: auto;
  }

  .footer-text.bold.bottom-margin {
    margin-bottom: 10px;
  }

  .footer-text.bold.bottom-margin.dad {
    margin-bottom: 8px;
  }

  .footer-text.margin-bottom {
    margin-top: 0;
  }

  .form__wrap {
    flex-direction: column;
    align-items: flex-end;
  }

  .footer-2-text-wrap-mobile {
    display: none;
  }

  .footer-content {
    grid-template-rows: auto auto auto;
  }

  .footer-link-3 {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1.7em;
  }

  .footer-link-3.margin-top {
    margin-top: 0;
    padding-top: 3px;
    line-height: 1.7em;
  }

  .footer-link-3.margin-top.w--current {
    padding-bottom: 0;
  }

  .submit-button-3 {
    margin-left: 0;
  }

  .paragraph-2.footerwhite {
    margin-top: 10px;
    line-height: 1.7em;
  }

  .cryptar-logo-footer {
    width: 160px;
    height: 36.325px;
    margin-bottom: 10px;
  }

  ._2col {
    grid-template-rows: 3fr;
    grid-template-columns: 1fr;
  }

  .team-box {
    grid-row-gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  .team-box.left-margin {
    flex-flow: column;
  }

  .access-form {
    padding-left: 0;
    padding-right: 0;
  }

  .contactinfo-box {
    align-items: center;
  }

  .findus-icon {
    margin-top: 0;
    margin-right: 0;
  }

  .footer-2-text-wrap-m {
    padding-top: 35px;
  }

  .container-large {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-links-wrap {
    flex-direction: row;
    display: none;
  }

  .nav-link, .nav_careers-wrap {
    margin-left: 20px;
    margin-right: 20px;
  }

  .button-big {
    text-align: center;
    font-size: 14px;
  }

  .hero-text-wrap {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 60px;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .h1-hero-white {
    text-align: left;
    font-size: 30px;
    line-height: 1.3;
  }

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

  .paragraph-white.big {
    text-align: left;
    font-size: 15px;
  }

  .buy-sell_content {
    grid-column-gap: 30px;
    grid-row-gap: 10px;
    margin-top: 60px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .paragraph-black {
    text-align: left;
    font-size: 14px;
    line-height: 20px;
  }

  .h-40 {
    height: 20px;
  }

  .holistic-box_wrap {
    grid-row-gap: 12px;
    flex-direction: column;
    display: flex;
  }

  .holistic_icon {
    margin-top: 0;
  }

  .holistic-box_top-text {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .holistic-box_label {
    margin-bottom: 4px;
  }

  .holistic-box_label.is-service {
    margin-left: 0;
  }

  ._w-400 {
    width: auto;
  }

  .h2-prple.centered {
    font-size: 30px;
  }

  .manager_box {
    flex-direction: column;
    align-items: flex-start;
  }

  .manager_img {
    width: 173.813px;
    margin-left: 0;
    margin-right: 0;
  }

  .manager_text {
    padding-top: 15px;
    padding-left: 0;
  }

  .manager_text._w-300 {
    padding-left: 0;
  }

  .sample-report {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .sample-content {
    padding-top: 0;
    padding-bottom: 0;
  }

  .sample_img {
    justify-content: center;
    align-items: center;
    width: auto;
    display: flex;
  }

  .sample-content-wrap {
    overflow: hidden;
  }

  .footer_links-wrap.top {
    width: 130px;
    margin-right: 0;
  }

  .nav-links-wrap_m {
    align-items: flex-end;
    padding-left: 0;
    padding-right: 5px;
    display: none;
  }

  .nav-content_m {
    margin-top: 40px;
    display: none;
  }

  .nav-menu-lottie {
    top: 1px;
    left: 3px;
  }

  .nav_m-blur {
    display: none;
  }

  .image {
    height: 100%;
    display: block;
  }

  .advantages-box {
    margin-bottom: 0;
  }

  .report-content-wrap {
    align-items: center;
    margin-top: 30px;
  }

  .report-img {
    width: 279.988px;
    max-width: 100%;
    margin-bottom: 20px;
    display: block;
  }

  .report-text_wrap {
    width: auto;
    margin-top: 20px;
  }

  .side-section, .side-section.left {
    grid-column-gap: 40px;
    margin-bottom: 0;
  }

  .side-section.margin {
    grid-column-gap: 0px;
    margin-bottom: 0;
  }

  .sections-content {
    grid-row-gap: 70px;
  }

  .sample-cta {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .faq__item {
    padding-left: 0;
    padding-right: 0;
  }

  .faq__item-q {
    padding-top: 0;
    padding-bottom: 0;
  }

  .faq__item-title {
    flex: 1;
    padding-top: 0;
    padding-bottom: 0;
  }

  .faq__item-icon {
    width: 13px;
  }

  .plane_label {
    margin-bottom: 10px;
  }

  .plane_label.black.about {
    font-size: 15px;
  }

  .lightbox-link {
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    left: 0;
  }

  .enlarge_wrap {
    position: relative;
    left: 12px;
  }

  .vendor-content-wrap {
    align-items: center;
  }

  .vendor-text_wrap {
    margin-top: 40px;
  }

  .vendor-img {
    width: auto;
    max-width: 100%;
  }

  .team-content {
    margin-bottom: 0;
  }

  .team-member_img {
    object-position: 50% 20%;
    width: 100%;
    min-width: 100%;
  }

  .team-member_img.is-andre {
    width: 100%;
    margin-left: 0;
  }

  .team-member_img.is-tina {
    object-position: 50% 0%;
    width: 100%;
    margin-left: 0;
  }

  .team-member_img.is-simon {
    width: 100%;
    margin-left: 0;
  }

  .team-member_text._w-700 {
    grid-row-gap: 1px;
  }

  .team_icon.linked {
    margin-bottom: 5px;
  }

  .text-link {
    margin-left: auto;
    margin-right: auto;
  }

  .investor-box {
    align-items: flex-start;
  }

  .calendly {
    display: none;
  }

  .modal-view {
    width: 95%;
    min-width: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .v2-sample-report {
    padding: 43px 0 0;
    display: none;
  }

  .h2-black {
    margin-top: 0;
  }

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

  .footer-careers-wrap {
    align-items: center;
    padding-top: 3px;
  }

  ._404 {
    height: 670px;
  }

  ._404-content {
    padding-top: 0;
  }

  .image-9 {
    object-position: 60% 50%;
  }

  .v2-schedule-meeting {
    z-index: 200;
    display: none;
    overflow: visible;
  }

  .vendor-report-text_wrap {
    flex-direction: column;
  }

  .text-block-2 {
    line-height: 1.7em;
  }

  ._w-310 {
    width: auto;
  }

  ._w-310.m-15 {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .buy-sell_content-m {
    grid-column-gap: 30px;
    grid-row-gap: 10px;
    margin-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .tab-buy {
    background-color: #038a97;
  }

  .tab-buy.w--current {
    background-color: #00bed0;
  }

  .tabs-testimonials-menu {
    grid-column-gap: 5px;
  }

  .h-25.enable {
    display: block;
  }

  .report-img-m {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .r-cms_top-title {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
  }

  .r-cms_top-dropdown-wrap {
    margin-left: 0;
    margin-right: auto;
    left: 0;
  }

  .r-cms_top-dropdown-wrap.hidden {
    display: none;
  }

  .fs-dropdown-1 {
    left: -15px;
  }

  .fs-dropdown_toggle-1 {
    grid-column-gap: 12px;
    padding-left: 18px;
    padding-right: 0;
  }

  .collection-list.filter-complex {
    grid-row-gap: 37px;
  }

  .references-cms_item {
    width: 100%;
    min-width: auto;
  }

  .r-cms_item-text-wrap {
    min-height: auto;
    padding: 13px 10px 10px;
  }

  .r-cms_item-status {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-items: flex-start;
    width: 100%;
    display: grid;
  }

  .r-cms_status-item {
    align-items: flex-start;
  }

  .status-label {
    font-size: 19px;
  }

  .status-label.is-smaller {
    font-size: 20px;
  }

  .status-divider {
    display: none;
  }

  .casestudy_tag {
    display: block;
  }

  .s-article_content {
    padding-top: 120px;
  }

  .cms-article_title {
    grid-row-gap: 24px;
    flex-direction: column;
  }

  .cms-article_status-wrap {
    grid-row-gap: 10px;
  }

  .div-block-23 {
    grid-column-gap: 12px;
    grid-template-columns: 1fr .75fr;
    justify-content: stretch;
    padding-left: 20px;
    padding-right: 20px;
  }

  .press-release-link {
    margin-left: 0;
  }

  .s-o_choises {
    grid-row-gap: 32px;
    flex-direction: column;
  }

  .collection-item-2 {
    flex: 0 auto;
    margin-bottom: 22px;
  }

  .r-cms_post {
    width: 100%;
  }

  .cms-casestudy_post {
    width: 100%;
    min-width: auto;
  }

  .div-block-24 {
    align-items: flex-start;
  }

  .div-block-27 {
    grid-row-gap: 10px;
    align-items: flex-start;
  }

  .other-cases-image-corners {
    border-radius: 11px;
    margin-bottom: 12px;
  }

  .hero-gradient {
    height: 888px;
  }

  .all-stages, .pre-seed, .series-af, .ma, .allmandates, .buyside, .sellside {
    text-align: left;
    font-size: 14px;
    line-height: 20px;
  }

  ._404-open-img-4k {
    object-position: 60% 50%;
  }

  .hero-fade {
    bottom: 10px;
  }

  .home-header-image {
    width: 100%;
  }

  .all-stages-start1 {
    text-align: left;
    font-size: 14px;
    line-height: 20px;
  }

  .cms-article_sticky-side-mobile {
    margin-bottom: 20px;
  }

  .sample-report_content {
    grid-row-gap: 12px;
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
    height: 100%;
    max-height: 95%;
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .h-purple_34 {
    padding-top: 20px;
  }

  .button-purple {
    width: 100%;
  }

  .report-close {
    box-shadow: none;
    opacity: 1;
    border-width: 1px;
    border-radius: 100%;
    width: 40px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 500;
    display: flex;
    position: absolute;
    inset: -20px 4px auto auto;
  }

  .icon-small {
    min-width: 25px;
    height: 25px;
    min-height: 25px;
    display: block;
  }

  .form-block-2 {
    margin-bottom: 0;
    overflow: visible;
  }

  .v2-sample-report--modal {
    max-height: none;
    padding-left: 20px;
    padding-right: 20px;
  }

  .pre_item {
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .container-medium {
    padding-left: 20px;
    padding-right: 20px;
  }

  .core_content, .core_content._1-col {
    max-width: 100%;
  }

  .button-wide {
    text-align: center;
    flex: 0 auto;
    font-size: 14px;
  }

  .text-size-25 {
    color: var(--black);
  }

  .v6-schedule-meeting {
    z-index: 1000;
    display: none;
    overflow: visible;
  }

  .text-size-39 {
    white-space: pre-line;
    width: 100%;
    font-size: 31px;
  }

  .insights_author {
    grid-row-gap: 16px;
    flex-direction: column;
  }

  .cms_article-details {
    grid-column-gap: 12px;
    grid-template-columns: 1fr .75fr;
    justify-content: stretch;
    padding-left: 20px;
    padding-right: 20px;
  }

  .cms_article-details.mobile {
    grid-template-columns: 1fr 1fr;
  }

  .submit-button-5 {
    margin-left: 0;
  }

  .form-3 {
    flex-direction: column;
    align-items: flex-end;
  }

  .content-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-text-2 {
    width: auto;
  }

  .footer-text-2.margin-bottom {
    margin-top: 0;
  }

  .footer-text-2.bold.bottom-margin {
    margin-bottom: 10px;
  }

  .footer-text-2.bold.bottom-margin.dad {
    margin-bottom: 8px;
  }

  .text-block-7 {
    line-height: 1.7em;
  }

  .footer-careers-wrap-2 {
    align-items: center;
    padding-top: 3px;
  }

  .footer-link-4 {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1.7em;
  }

  .footer-link-4.margin-top {
    margin-top: 0;
    padding-top: 3px;
    line-height: 1.7em;
  }

  .footer-link-4.margin-top.w--current {
    padding-bottom: 0;
  }

  .paragraph-black-opacity-2 {
    font-size: 15px;
    line-height: 1.4;
  }

  .paragraph-white-3 {
    text-align: left;
    font-family: Heebo, sans-serif;
  }

  .content-container-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .h1-2 {
    width: auto;
    font-size: 34px;
    line-height: 1.3em;
  }

  .access-form-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .casestudy_tags {
    grid-column-gap: 12px;
    grid-row-gap: 10px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-content: stretch;
    height: auto;
    display: flex;
  }

  .image-21 {
    display: block;
  }

  .visit-us_links-wrap-2 {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    flex-direction: column;
    grid-template-columns: 1fr;
    align-items: center;
    padding-top: 0;
    display: flex;
  }

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

  .paragraph-white-5.center {
    text-align: center;
  }

  .visit-us_content-wrap-2 {
    margin-top: 60px;
  }

  .img_wrapper {
    min-height: 420px;
  }

  .read-link.color-white {
    align-self: flex-start;
  }

  .button-secondary {
    width: 100%;
    font-size: 16px;
  }

  .email-form-wrapper {
    grid-row-gap: 12px;
    flex-direction: column;
  }

  .container {
    padding: 80px 20px;
  }

  .book-image {
    width: 100%;
    height: 100%;
  }

  .quick-stack {
    grid-row-gap: 48px;
  }

  .thumbnail {
    height: 350px;
  }

  .text-size-39-3.white {
    inset: 8%;
  }

  .insights-thumbnail-3 {
    object-position: 50% 50%;
  }

  .page-progress_bar {
    width: 92vw;
  }

  .insights_slider-item {
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .slide-nav {
    margin-top: .5rem;
  }

  .paragraph-4, .alert {
    font-size: 16px;
  }

  .slide {
    height: 810px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .h1-3 {
    width: auto;
    font-size: 34px;
    line-height: 1.3em;
  }

  .services-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .stop-looking-text-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    padding: 24px;
  }

  .one-stop-animation-wrap {
    padding: 16px;
  }

  .one-stop-animation-text-wrap {
    width: 300px;
  }

  .text-title-black, .typed-words {
    font-size: 24px;
  }

  .post-item:last-child {
    margin-bottom: 0;
  }

  .post-content-horizontal {
    grid-template-rows: auto auto;
    grid-template-columns: 2fr;
    grid-auto-flow: column;
  }

  .heading-3-2 {
    font-size: 20px;
    font-weight: 700;
  }

  .blog-grid {
    grid-row-gap: 40px;
  }

  .post-top-details-wrapper {
    grid-row-gap: 16px;
    flex-direction: row;
    align-items: center;
  }

  .posts-grid {
    grid-column-gap: 16px;
    grid-row-gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .post-item-content {
    grid-row-gap: 16px;
  }

  .section-title {
    padding-bottom: 20px;
  }

  .divider-line.inset {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-4 {
    font-size: 20px;
    font-weight: 700;
  }

  .post-item-image {
    object-position: 100% 50%;
  }

  .heading-2 {
    font-size: 24px;
    font-weight: 700;
  }

  .service-icon-wrap {
    width: 40px;
  }

  .experts-bg-logo {
    width: 110px;
    bottom: -40px;
    left: -20px;
  }

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

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

  .grid-4 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

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

  .h2-header-subheader-wrap {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

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

  .grid-2 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .inner-hero {
    height: 680px;
  }

  .inner-hero.photo-mountain {
    background-position: 0 0;
    height: 800px;
  }

  .inner-hero.image-weight {
    height: 750px;
  }

  .inner-hero.image-rocket {
    background-position: 60% 0;
    height: 710px;
  }

  .inner-hero.image-tree {
    background-position: 40% 10%;
    height: 720px;
  }

  .inner-hero.image-runner {
    background-position: 71%;
  }

  .inner-hero.image-lock {
    background-position: 80% 0;
    background-size: 260vw 270vw;
  }

  .heading-photo-wrap {
    grid-template-columns: 1fr;
  }

  .photo--rocket {
    height: 65vw;
  }

  .core-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .report-padding-top {
    padding-top: 0;
  }

  .heading-3-3 {
    font-size: 20px;
    font-weight: 700;
  }

  .certificate-icon-wrap {
    max-width: 75px;
  }

  .img_wrapper-about-team {
    width: 100%;
    max-width: none;
    max-height: none;
  }

  .banner-wrap {
    min-width: auto;
    padding-left: 12px;
    padding-right: 12px;
  }

  .banner-quote-side {
    padding-left: 12px;
    padding-right: 12px;
  }

  .banner-quote_person {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
  }

  .banner-quote_photo-name {
    flex-flow: row;
  }

  .about-image-icon.is-bottom {
    bottom: 1rem;
  }

  .rsg-content-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .button-up {
    display: none;
  }

  .button-coffee {
    text-align: center;
    flex: 0 auto;
    font-size: 14px;
  }

  .buy-sell_box {
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    overflow: hidden;
  }

  .paragraph-purple {
    font-size: 19px;
    line-height: 26px;
  }

  .buy-sell_bottom-btm {
    align-items: flex-start;
  }

  .buy-sell_content-2 {
    grid-column-gap: 30px;
    grid-row-gap: 10px;
    margin-top: 60px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .h2-white {
    font-size: 30px;
  }

  .h2-white.normal {
    font-size: 22px;
  }

  .quote-icon {
    margin-right: 0;
  }

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

  .main-wrap {
    margin-left: 0;
  }

  .paragraph-black-2, .paragraph-black-3 {
    text-align: left;
    font-size: 14px;
    line-height: 20px;
  }

  .buy-sell_content-new {
    grid-column-gap: 30px;
    grid-row-gap: 10px;
    margin-top: 60px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .paragraph-black-4 {
    text-align: left;
    font-size: 14px;
    line-height: 20px;
  }

  .buy-sell_box-2 {
    border-top-right-radius: 0;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    overflow: hidden;
  }

  .paragraph-black-5, .paragraph-black-6 {
    text-align: left;
    font-size: 14px;
    line-height: 20px;
  }

  .logos-grid {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    max-width: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  .logos-wrap {
    filter: none;
    width: 100%;
    height: 80px;
  }

  .logos-grayscaling {
    flex-flow: column;
    justify-content: space-between;
    display: flex;
    position: absolute;
    inset: -150% 0% 0%;
  }

  .logos-grayscaling-top, .logos-grayscaling-down {
    -webkit-backdrop-filter: grayscale();
    backdrop-filter: grayscale();
    width: 100%;
    height: 42%;
  }

  .cs-card-title {
    font-size: 28px;
  }

  .cs-card-descr {
    font-weight: 300;
  }

  .btn.btn--purple.lp-cta {
    line-height: 42px;
  }

  .hero-cta {
    flex-flow: wrap;
    width: 100%;
  }

  .navbar__card-subtitle {
    display: none;
  }

  .cookies-btn-wrapper {
    flex-flow: wrap;
  }

  .navbar__tabs-link {
    align-items: center;
  }

  .navbar__tabs-mob-icon {
    display: none;
  }

  .lp-hero-portrait {
    max-height: 400px;
  }

  .lp-hero-portrait.lp-hero-florian {
    max-width: 65%;
    bottom: -20%;
    right: -10%;
  }

  .lp-slider-item {
    max-width: 100%;
    margin-left: 0;
  }

  .paragraph-black-7 {
    text-align: left;
    font-size: 14px;
    line-height: 20px;
  }

  .card-testimonial {
    min-height: 200px;
  }

  .lp-subtitle {
    line-height: 1.2;
  }

  .lp-logos__item {
    min-width: 140px;
    max-width: 45%;
    height: 50px;
  }

  .logos-wrap-copy {
    filter: none;
    width: 100%;
    height: 80px;
  }

  .lp-hero-section {
    padding-bottom: 60px;
  }

  .lp-container.lp-container-card.bg-teal {
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .lp-head {
    height: 80px;
  }

  .lp-badge {
    font-size: 12px;
  }

  .lp-sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .info-cards {
    padding-top: 0;
  }

  .lp-card {
    padding: 20px;
  }

  .lp-card-icon {
    width: 80px;
    height: 80px;
  }

  .lp-trust-review {
    max-width: 100%;
  }

  .lp-trust-review-quote {
    padding-left: 15px;
    padding-right: 10px;
  }

  .lp-needs {
    min-height: auto;
  }

  .tools-table-col-td {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .tools-table-col-td.first {
    justify-content: center;
    align-items: flex-start;
  }

  .faq__item-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .tools-table-text {
    font-size: 12px;
    line-height: 1.2;
  }

  .team-tabs-tab-info-wrap {
    padding: 20px;
  }

  .lp-trust-slide {
    max-width: 100%;
  }
}

#w-node-ecadb203-9f06-eec8-a0e7-13ba3f2141cd-3f2141a7 {
  grid-area: 1 / 3 / 2 / 5;
  place-self: auto end;
}

#w-node-ecadb203-9f06-eec8-a0e7-13ba3f2141e1-3f2141a7 {
  justify-self: center;
}

#w-node-_8017a84a-8c1a-dd84-b8ef-794cdf57ad0e-021d6fcc, #w-node-_5ea9834d-905a-7853-b15d-51482ffbcf79-021d6fcc, #w-node-_8a8df937-9119-6097-1814-635054566fc8-021d6fcc {
  align-self: start;
}

#w-node-_457e37f6-5d1f-009b-7164-2befb10c64a2-b10c64a0 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-da89fcf4-91ce-240b-24a6-16b154c9a8da-021d6fcd, #w-node-_549d2c1d-3b40-4a5b-b484-5395544ad6f2-021d6fcd, #w-node-_5c06bd52-ef98-992b-ea00-bb6a08f4a105-021d6fcd, #w-node-ecd7c8ea-38a8-c76b-5cd6-3e4c3da37bf2-021d6fcd, #w-node-_1505e5f3-830e-d8c2-3e02-a745bafc0334-021d6fcd, #w-node-_60032337-8c05-4bba-465d-fe7c2c4327da-021d6fcd, #w-node-_60032337-8c05-4bba-465d-fe7c2c4327df-021d6fcd, #w-node-_60032337-8c05-4bba-465d-fe7c2c4327e8-021d6fcd, #w-node-c611e7f1-65d6-6238-56a8-596cb154ee0a-021d6fcd, #w-node-cd9f95f3-f24e-a79b-973a-abf1c5cc98a3-021d6fcd, #w-node-cd9f95f3-f24e-a79b-973a-abf1c5cc98a4-021d6fcd, #w-node-eabcc4c7-0986-cd81-2a49-081cfda2d9f8-021d6fcd, #w-node-_86063284-129f-b327-25e2-1c40e9f4a341-021d6fcd, #w-node-_1e93106f-da8b-2962-b7f5-ba91c5df66e8-021d6fcd, #w-node-cd9f95f3-f24e-a79b-973a-abf1c5cc98c0-021d6fcd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b6af6b3a-dfe9-8219-5de6-ed4ce58067fe-021d6fd0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-aa0b0d9b-667f-93bc-eb8a-bb72b84b9b9b-b84b9b96, #w-node-aa0b0d9b-667f-93bc-eb8a-bb72b84b9bc7-b84b9b96 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_818e4d29-11e2-2ab7-8afb-5d5fc7cf2aae-021d6fd7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-f0ca763b-8c7c-94b7-e48f-b4382df21938-2df21912 {
  grid-area: 1 / 3 / 2 / 5;
  place-self: auto end;
}

#w-node-f0ca763b-8c7c-94b7-e48f-b4382df2194f-2df21912 {
  justify-self: center;
}

#w-node-_511ff89e-3011-5594-278c-a0b6853c4947-021d6fd9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-_021add92-d8d6-6040-05cb-5172cd4bce95-cd4bce91, #w-node-_9c24d1c7-ef31-4596-0fe6-78c61aec7bfa-1aec7bf5, #w-node-_7c8e36b1-bbca-47d4-5463-33dd2ce0d621-2ce0d616, #w-node-_7c8e36b1-bbca-47d4-5463-33dd2ce0d629-2ce0d616, #w-node-_7c8e36b1-bbca-47d4-5463-33dd2ce0d631-2ce0d616, #w-node-_7c8e36b1-bbca-47d4-5463-33dd2ce0d639-2ce0d616, #w-node-_7c8e36b1-bbca-47d4-5463-33dd2ce0d643-2ce0d616, #w-node-_7c8e36b1-bbca-47d4-5463-33dd2ce0d64c-2ce0d616, #w-node-_7c8e36b1-bbca-47d4-5463-33dd2ce0d654-2ce0d616, #w-node-_7c8e36b1-bbca-47d4-5463-33dd2ce0d65c-2ce0d616, #w-node-_7c8e36b1-bbca-47d4-5463-33dd2ce0d664-2ce0d616 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b6af6b3a-dfe9-8219-5de6-ed4ce58067fe-021d6fdf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-d127b99a-6b9d-cd8c-9089-a34d43edd54c-021d6fe0, #w-node-d127b99a-6b9d-cd8c-9089-a34d43edd552-021d6fe0, #w-node-d127b99a-6b9d-cd8c-9089-a34d43edd558-021d6fe0, #w-node-d127b99a-6b9d-cd8c-9089-a34d43edd563-021d6fe0, #w-node-d127b99a-6b9d-cd8c-9089-a34d43edd569-021d6fe0, #w-node-d127b99a-6b9d-cd8c-9089-a34d43edd575-021d6fe0, #w-node-d127b99a-6b9d-cd8c-9089-a34d43edd583-021d6fe0, #w-node-d127b99a-6b9d-cd8c-9089-a34d43edd58e-021d6fe0, #w-node-d127b99a-6b9d-cd8c-9089-a34d43edd594-021d6fe0, #w-node-d127b99a-6b9d-cd8c-9089-a34d43edd5cb-021d6fe0, #w-node-d127b99a-6b9d-cd8c-9089-a34d43edd5cc-021d6fe0, #w-node-d127b99a-6b9d-cd8c-9089-a34d43edd5d1-021d6fe0, #w-node-d127b99a-6b9d-cd8c-9089-a34d43edd5df-021d6fe0, #w-node-d127b99a-6b9d-cd8c-9089-a34d43edd5ea-021d6fe0, #w-node-d127b99a-6b9d-cd8c-9089-a34d43edd5f0-021d6fe0, #w-node-b5fbec1b-ad79-896e-9b4c-4eb2972ed5ad-021d6fe1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cd9468b2-fb5f-ee35-0de8-a1ed9af122a2-021d6fe1, #w-node-_29747498-c916-f933-ad49-11b51fac5397-021d6fe1, #w-node-e9e1e7ad-a581-d9df-3c68-ea28de420095-021d6fe1, #w-node-cd9468b2-fb5f-ee35-0de8-a1ed9af122aa-021d6fe1, #w-node-cd9468b2-fb5f-ee35-0de8-a1ed9af122b2-021d6fe1 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a2f4753f-d9f1-5a01-ca70-b29d4a4c62a3-e9d367a4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a2f4753f-d9f1-5a01-ca70-b29d4a4c62d8-e9d367a4 {
  align-self: start;
}

#w-node-_37d850eb-a345-81df-ff7e-fedb64e86ed2-64e86ecd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4e70da2e-f5a5-af75-4f51-29c0dc5b78ab-1e54ade1, #w-node-_4e70da2e-f5a5-af75-4f51-29c0dc5b7b0e-1e54ade1, #w-node-_4e70da2e-f5a5-af75-4f51-29c0dc5b7b26-1e54ade1 {
  align-self: start;
}

#w-node-c3c81efb-0980-f600-1e79-680dc8481c71-c8481c6f {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-a2f4753f-d9f1-5a01-ca70-b29d4a4c62a3-33700c53 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a2f4753f-d9f1-5a01-ca70-b29d4a4c62d8-33700c53 {
  align-self: start;
}

#w-node-_818e4d29-11e2-2ab7-8afb-5d5fc7cf2aae-ce953566 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-b0a3b3d2-6f22-c57c-83d3-759b6c2c8b92-6c2c8b86, #w-node-b0a3b3d2-6f22-c57c-83d3-759b6c2c8b9a-6c2c8b86, #w-node-b0a3b3d2-6f22-c57c-83d3-759b6c2c8ba2-6c2c8b86, #w-node-b0a3b3d2-6f22-c57c-83d3-759b6c2c8baa-6c2c8b86, #w-node-b0a3b3d2-6f22-c57c-83d3-759b6c2c8bb4-6c2c8b86, #w-node-b0a3b3d2-6f22-c57c-83d3-759b6c2c8bbd-6c2c8b86, #w-node-b0a3b3d2-6f22-c57c-83d3-759b6c2c8bc5-6c2c8b86, #w-node-b0a3b3d2-6f22-c57c-83d3-759b6c2c8bcd-6c2c8b86, #w-node-b0a3b3d2-6f22-c57c-83d3-759b6c2c8bd5-6c2c8b86, #w-node-_080d5b6a-b592-ccb4-276d-0919484f38ca-484f38c5, #w-node-b5fbec1b-ad79-896e-9b4c-4eb2972ed5ad-7ec13604 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_89c6350a-c931-0174-888a-98e6dad46254-7ec13604, #w-node-_89c6350a-c931-0174-888a-98e6dad46259-7ec13604, #w-node-_89c6350a-c931-0174-888a-98e6dad4625e-7ec13604, #w-node-_89c6350a-c931-0174-888a-98e6dad46263-7ec13604, #w-node-_89c6350a-c931-0174-888a-98e6dad46268-7ec13604 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_415a2e04-102c-8780-7e3e-07bde5f7dd62-9c4609be {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-ac9e044f-38a1-2144-79a8-55b2e23ef928-e23ef923 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4d0ee8e1-e42f-b4ba-a8da-43dbeb46f817-f8aad24f {
  place-self: center;
}

#w-node-_47218e75-945c-5e56-938d-812335401603-f8aad24f {
  align-self: center;
}

#w-node-_77803f43-26a0-c6dc-be5e-e2cdc182928b-f8aad24f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-_4d0ee8e1-e42f-b4ba-a8da-43dbeb46f817-aab86f83 {
  place-self: center stretch;
}

#w-node-_47218e75-945c-5e56-938d-812335401603-aab86f83 {
  align-self: center;
}

#w-node-_697378cd-088f-5844-e7c3-200b988f108c-aab86f83 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-a2f4753f-d9f1-5a01-ca70-b29d4a4c62a3-555ff871 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a2f4753f-d9f1-5a01-ca70-b29d4a4c62d8-555ff871 {
  align-self: start;
}

#w-node-_418c3fbc-b99a-3358-ce26-c785a945aba0-9f6e8d73 {
  place-self: center;
}

#w-node-_3f3ec18c-743e-d83f-5604-1ed9030daa02-9f6e8d73 {
  justify-self: stretch;
}

#w-node-cec11297-ec11-37b9-84e5-6673f1e23999-9f6e8d73 {
  place-self: stretch stretch;
}

#w-node-_688826dd-302e-0237-61c3-4008614bba7b-9f6e8d73 {
  grid-area: 1 / 1 / 3 / 3;
  place-self: stretch stretch;
}

#w-node-b1589aa8-6b30-927c-81fc-ab36982b0a9b-9f6e8d73 {
  grid-area: 3 / 1 / 4 / 2;
  place-self: stretch stretch;
}

#w-node-_2b1fe94c-2c72-de26-857c-ca0830e07c1a-9f6e8d73 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_459cbda4-393b-04e8-fe86-88f04bbbc138-9f6e8d73 {
  grid-area: 1 / 3 / 2 / 5;
  place-self: stretch stretch;
}

#map.w-node-e2595dcc-9dec-5639-f3ca-e224f4c917d0-9f6e8d73 {
  grid-area: 2 / 3 / 4 / 5;
}

#w-node-_418c3fbc-b99a-3358-ce26-c785a945aba0-b1177c02 {
  place-self: center;
}

#w-node-_3f3ec18c-743e-d83f-5604-1ed9030daa02-b1177c02 {
  justify-self: stretch;
}

#w-node-cec11297-ec11-37b9-84e5-6673f1e23999-b1177c02 {
  place-self: stretch stretch;
}

#w-node-_688826dd-302e-0237-61c3-4008614bba7b-b1177c02 {
  grid-area: 1 / 1 / 3 / 3;
  place-self: stretch stretch;
}

#w-node-b1589aa8-6b30-927c-81fc-ab36982b0a9b-b1177c02 {
  grid-area: 3 / 1 / 4 / 2;
  place-self: stretch stretch;
}

#w-node-_2b1fe94c-2c72-de26-857c-ca0830e07c1a-b1177c02 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_459cbda4-393b-04e8-fe86-88f04bbbc138-b1177c02 {
  grid-area: 1 / 3 / 2 / 5;
  place-self: stretch stretch;
}

#map.w-node-e2595dcc-9dec-5639-f3ca-e224f4c917d0-b1177c02 {
  grid-area: 2 / 3 / 4 / 5;
}

@media screen and (min-width: 1920px) {
  #w-node-ecadb203-9f06-eec8-a0e7-13ba3f2141cd-3f2141a7 {
    grid-area: 1 / 3 / 2 / 5;
    place-self: auto end;
  }

  #w-node-ecadb203-9f06-eec8-a0e7-13ba3f2141e1-3f2141a7 {
    justify-self: end;
  }

  #w-node-b6af6b3a-dfe9-8219-5de6-ed4ce58067fe-021d6fd0, #w-node-_818e4d29-11e2-2ab7-8afb-5d5fc7cf2aae-021d6fd7 {
    justify-self: auto;
  }

  #w-node-f0ca763b-8c7c-94b7-e48f-b4382df21938-2df21912 {
    grid-area: 1 / 3 / 2 / 5;
    place-self: auto end;
  }

  #w-node-f0ca763b-8c7c-94b7-e48f-b4382df2194f-2df21912 {
    justify-self: end;
  }

  #w-node-_511ff89e-3011-5594-278c-a0b6853c4947-021d6fd9, #w-node-b6af6b3a-dfe9-8219-5de6-ed4ce58067fe-021d6fdf {
    justify-self: auto;
  }

  #w-node-cd9468b2-fb5f-ee35-0de8-a1ed9af12290-021d6fe1 {
    align-self: start;
  }

  #w-node-_818e4d29-11e2-2ab7-8afb-5d5fc7cf2aae-ce953566 {
    justify-self: auto;
  }

  #w-node-_89c6350a-c931-0174-888a-98e6dad46243-7ec13604 {
    align-self: start;
  }

  #w-node-_415a2e04-102c-8780-7e3e-07bde5f7dd62-9c4609be, #w-node-_77803f43-26a0-c6dc-be5e-e2cdc182928b-f8aad24f, #w-node-_697378cd-088f-5844-e7c3-200b988f108c-aab86f83 {
    justify-self: auto;
  }
}

@media screen and (min-width: 1440px) {
  #w-node-_2b859251-2f17-c83c-4d73-713a7ad418d7-9f6e8d73, #w-node-_2b859251-2f17-c83c-4d73-713a7ad418d7-b1177c02 {
    align-self: center;
  }
}

@media screen and (max-width: 991px) {
  #w-node-ecadb203-9f06-eec8-a0e7-13ba3f2141aa-3f2141a7 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-ecadb203-9f06-eec8-a0e7-13ba3f2141cd-3f2141a7 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: auto start;
  }

  #w-node-ecadb203-9f06-eec8-a0e7-13ba3f2141e1-3f2141a7 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-ecadb203-9f06-eec8-a0e7-13ba3f2141f5-3f2141a7 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_8017a84a-8c1a-dd84-b8ef-794cdf57ad0e-021d6fcc {
    align-self: start;
  }

  #w-node-_8a8df937-9119-6097-1814-635054566fc8-021d6fcc {
    grid-area: 2 / 2 / 3 / 2;
    align-self: start;
  }

  #w-node-_457e37f6-5d1f-009b-7164-2befb10c64a2-b10c64a0 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-aa0b0d9b-667f-93bc-eb8a-bb72b84b9b9b-b84b9b96, #w-node-aa0b0d9b-667f-93bc-eb8a-bb72b84b9bc7-b84b9b96 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-f0ca763b-8c7c-94b7-e48f-b4382df21915-2df21912 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-f0ca763b-8c7c-94b7-e48f-b4382df21938-2df21912 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: auto start;
  }

  #w-node-f0ca763b-8c7c-94b7-e48f-b4382df2194f-2df21912 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-f0ca763b-8c7c-94b7-e48f-b4382df21962-2df21912 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_84b9168d-81dc-c56b-52b3-4b3bd214052a-021d6fd9 {
    order: -9999;
    place-self: center;
  }

  #w-node-_021add92-d8d6-6040-05cb-5172cd4bce95-cd4bce91, #w-node-_9c24d1c7-ef31-4596-0fe6-78c61aec7bfa-1aec7bf5 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-b5fbec1b-ad79-896e-9b4c-4eb2972ed5ad-021d6fe1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_37d850eb-a345-81df-ff7e-fedb64e86ed2-64e86ecd {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_4e70da2e-f5a5-af75-4f51-29c0dc5b78ab-1e54ade1 {
    align-self: start;
  }

  #w-node-_4e70da2e-f5a5-af75-4f51-29c0dc5b7b26-1e54ade1 {
    grid-area: 2 / 2 / 3 / 2;
    align-self: start;
  }

  #w-node-c3c81efb-0980-f600-1e79-680dc8481c71-c8481c6f {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_080d5b6a-b592-ccb4-276d-0919484f38ca-484f38c5 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-b5fbec1b-ad79-896e-9b4c-4eb2972ed5ad-7ec13604 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5b04612c-b909-c298-b637-9207fcd54f9b-9c4609be {
    order: -9999;
    place-self: center;
  }

  #w-node-ac9e044f-38a1-2144-79a8-55b2e23ef928-e23ef923 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_77803f43-26a0-c6dc-be5e-e2cdc182927d-f8aad24f {
    order: -9999;
    place-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_8017a84a-8c1a-dd84-b8ef-794cdf57ad0e-021d6fcc {
    grid-area: 1 / 1 / 2 / 3;
    align-self: start;
  }

  #w-node-_4a7c0205-b59d-aad8-f042-98475928cb2e-021d6fcc {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_8a8df937-9119-6097-1814-635054566fc8-021d6fcc {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_457e37f6-5d1f-009b-7164-2befb10c64a3-b10c64a0, #w-node-_457e37f6-5d1f-009b-7164-2befb10c64a5-b10c64a0 {
    grid-column: span 2 / span 2;
  }

  #w-node-_84b9168d-81dc-c56b-52b3-4b3bd214052a-021d6fd9 {
    order: -9999;
  }

  #w-node-b5fbec1b-ad79-896e-9b4c-4eb2972ed5a5-021d6fe1 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-_4e70da2e-f5a5-af75-4f51-29c0dc5b78ab-1e54ade1 {
    grid-area: 1 / 1 / 2 / 3;
    align-self: start;
  }

  #w-node-_4e70da2e-f5a5-af75-4f51-29c0dc5b78d3-1e54ade1 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_4e70da2e-f5a5-af75-4f51-29c0dc5b7b26-1e54ade1 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-c3c81efb-0980-f600-1e79-680dc8481c72-c8481c6f, #w-node-c3c81efb-0980-f600-1e79-680dc8481c74-c8481c6f {
    grid-column: span 2 / span 2;
  }

  #w-node-b5fbec1b-ad79-896e-9b4c-4eb2972ed5a5-7ec13604 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-_5b04612c-b909-c298-b637-9207fcd54f9b-9c4609be, #w-node-_77803f43-26a0-c6dc-be5e-e2cdc182927d-f8aad24f {
    order: -9999;
  }

  #w-node-_688826dd-302e-0237-61c3-4008614bba7b-9f6e8d73 {
    grid-row-end: 2;
  }

  #w-node-b1589aa8-6b30-927c-81fc-ab36982b0a9b-9f6e8d73 {
    grid-row: 2 / 3;
  }

  #w-node-_2b1fe94c-2c72-de26-857c-ca0830e07c1a-9f6e8d73 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_459cbda4-393b-04e8-fe86-88f04bbbc138-9f6e8d73 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #map.w-node-e2595dcc-9dec-5639-f3ca-e224f4c917d0-9f6e8d73 {
    grid-area: 4 / 1 / 5 / 3;
  }

  #w-node-_688826dd-302e-0237-61c3-4008614bba7b-b1177c02 {
    grid-row-end: 2;
  }

  #w-node-b1589aa8-6b30-927c-81fc-ab36982b0a9b-b1177c02 {
    grid-row: 2 / 3;
  }

  #w-node-_2b1fe94c-2c72-de26-857c-ca0830e07c1a-b1177c02 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_459cbda4-393b-04e8-fe86-88f04bbbc138-b1177c02 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #map.w-node-e2595dcc-9dec-5639-f3ca-e224f4c917d0-b1177c02 {
    grid-area: 4 / 1 / 5 / 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-ecadb203-9f06-eec8-a0e7-13ba3f2141aa-3f2141a7 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-ecadb203-9f06-eec8-a0e7-13ba3f2141e1-3f2141a7 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-f0ca763b-8c7c-94b7-e48f-b4382df21915-2df21912 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-f0ca763b-8c7c-94b7-e48f-b4382df2194f-2df21912 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-cd9468b2-fb5f-ee35-0de8-a1ed9af122a2-021d6fe1, #w-node-_29747498-c916-f933-ad49-11b51fac5397-021d6fe1, #w-node-e9e1e7ad-a581-d9df-3c68-ea28de420095-021d6fe1, #w-node-cd9468b2-fb5f-ee35-0de8-a1ed9af122aa-021d6fe1 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a2f4753f-d9f1-5a01-ca70-b29d4a4c62c9-e9d367a4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a2f4753f-d9f1-5a01-ca70-b29d4a4c62d8-e9d367a4 {
    order: -9999;
    align-self: center;
  }

  #w-node-a2f4753f-d9f1-5a01-ca70-b29d4a4c62c9-33700c53 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a2f4753f-d9f1-5a01-ca70-b29d4a4c62d8-33700c53 {
    order: -9999;
    align-self: center;
  }

  #w-node-_89c6350a-c931-0174-888a-98e6dad46254-7ec13604, #w-node-_89c6350a-c931-0174-888a-98e6dad46259-7ec13604, #w-node-_89c6350a-c931-0174-888a-98e6dad4625e-7ec13604, #w-node-_89c6350a-c931-0174-888a-98e6dad46263-7ec13604 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a2f4753f-d9f1-5a01-ca70-b29d4a4c62c9-555ff871 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a2f4753f-d9f1-5a01-ca70-b29d4a4c62d8-555ff871 {
    order: -9999;
    align-self: center;
  }
}


@font-face {
  font-family: 'Heebo';
  src: url("/assets/fonts/heebo-extrabold.ttf") format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Heebo';
  src: url("/assets/fonts/heebo-medium.ttf") format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Heebo';
  src: url("/assets/fonts/heebo-light.ttf") format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Heebo';
  src: url("/assets/fonts/heebo-regular.ttf") format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Heebo';
  src: url("/assets/fonts/heebo-semibold.ttf") format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url("/assets/fonts/inter-medium.ttf") format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}