:root {
  --white: white;
  --black: #161619;
  --brand-blue: #2b3bc9;
  --brand-green: #17ff7f;
  --soft-grey: #d9d9d9;
  --soft-red: #f5413c;
  --transparent: #fff0;
  --light-grey: whitesmoke;
  --yellow: #fdfd8d;
}

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

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

@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 {
  background-color: var(--white);
  color: var(--black);
  letter-spacing: -.25px;
  font-family: space-grotesk-variable, sans-serif;
  font-size: 21px;
  line-height: 36px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: 400;
  line-height: 46px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 46px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 400;
  line-height: 46px;
}

h4 {
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--brand-blue);
  cursor: pointer;
  font-weight: 400;
  text-decoration: none;
  transition: color 1s;
}

a:hover {
  color: var(--brand-green);
}

ul, ol {
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 40px;
}

li {
  margin-bottom: 6px;
}

.columns {
  grid-column-gap: 60px;
  grid-row-gap: 20px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.columns.relative {
  position: relative;
}

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

.columns.stable {
  width: 100%;
  height: 403px;
  position: relative;
}

.ul-point {
  margin-bottom: 14px;
  padding-left: 40px;
}

.spacer {
  height: 30px;
}

.title-border {
  background-color: var(--brand-green);
  width: 67px;
  height: 2px;
}

.title-border.white {
  background-color: #fff;
}

.body-container {
  z-index: 4;
  max-width: 1100px;
  position: relative;
}

.body-container.blog {
  padding-right: 25%;
}

.body-container.cta {
  z-index: 5;
  text-align: left;
  padding-top: 32px;
  padding-right: 30%;
}

.body-container.map {
  min-height: 320px;
}

.body-container.event {
  z-index: 4;
  border: 1px solid var(--soft-grey);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #f5f5f5cc;
  border-radius: 8px;
  margin-bottom: -150px;
  padding: 30px;
}

.colours-box {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.colour-example {
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 18%;
  height: 120px;
  display: flex;
}

.colour-example._2 {
  background-color: var(--brand-green);
}

.colour-example._3 {
  background-color: var(--soft-red);
  color: #fff;
}

.colour-example._4 {
  background-color: var(--black);
  color: #fff;
}

.colour-example._1 {
  background-color: var(--brand-blue);
}

.colour-example._6 {
  background-color: var(--soft-grey);
}

.main-button {
  z-index: 2;
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  border: 1px solid var(--brand-green);
  background-color: var(--brand-blue);
  width: auto;
  min-width: 165px;
  height: 50px;
  color: var(--white);
  cursor: pointer;
  border-radius: 6px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: 3px 12px 1px;
  font-family: space-grotesk-variable, sans-serif;
  font-size: 18px;
  font-weight: 400;
  transition: color 1s, background-color 1s;
  display: flex;
  position: relative;
}

.main-button:hover {
  background-color: var(--brand-green);
  color: var(--black);
  text-decoration: none;
}

.main-button.head {
  min-width: 131px;
  font-size: 16px;
}

.main-button.body {
  background-color: var(--transparent);
  color: var(--black);
}

.main-button.body:hover {
  background-color: var(--brand-green);
}

.main-button.form {
  border-color: var(--brand-blue);
  justify-content: center;
  align-items: center;
}

.main-button.fill {
  background-color: var(--brand-green);
  height: 60px;
  color: var(--black);
  padding-left: 22px;
  padding-right: 22px;
  font-weight: 400;
}

.button-holder {
  grid-column-gap: 20px;
  grid-row-gap: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  font-size: 16px;
  display: flex;
}

.button-holder.left {
  justify-content: flex-start;
  align-items: center;
}

.column-image {
  object-fit: cover;
  width: 100%;
  height: auto;
  min-height: 300px;
  max-height: 420px;
}

.column-image.screen {
  object-fit: contain;
  border-radius: 6px;
  width: 120%;
  min-width: 120%;
  min-height: auto;
  max-height: none;
  margin-top: 60px;
  box-shadow: 0 2px 12px 2px #0003;
}

.column-image.screen.left {
  margin-left: -20%;
}

.title-holder {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.title-holder.left {
  align-items: flex-start;
}

.title-holder.blue {
  color: var(--brand-blue);
}

.body-section {
  z-index: 1;
  text-align: center;
  cursor: auto;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 50px 5% 82px;
  font-style: normal;
  position: relative;
  overflow: hidden;
}

.body-section.blog {
  padding-top: 60px;
}

.body-section.dot-background {
  background-image: url('../images/Dots-Background.svg');
  background-position: 50%;
  background-size: 100%;
  background-attachment: fixed;
}

.body-section.light {
  background-color: var(--soft-grey);
}

.body-section.light.isometric {
  background-image: linear-gradient(#f5f5f599, #f5f5f599), url('../images/Background--diagonals.svg');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  background-attachment: scroll, fixed;
}

.body-section.blue {
  background-color: var(--brand-blue);
  color: var(--white);
}

.body-section.blue.action {
  min-height: 430px;
}

.body-section.black {
  background-color: var(--black);
  color: var(--white);
}

.body-section.lighter {
  background-color: var(--light-grey);
}

.body-section.lighter.testing {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.body-section.benefits {
  border-top: 2px solid #5f5f5f;
  height: 535px;
}

.body-section.contact {
  z-index: 4;
  padding-bottom: 0;
  overflow: visible;
}

.body-section.events {
  padding-top: 162px;
}

.body-section.overflow {
  padding-bottom: 20px;
  overflow: visible;
}

.body-section.under {
  z-index: 0;
  background-color: var(--brand-green);
}

.body-section.circular {
  background-image: linear-gradient(#ffffffd9, #ffffffd9), url('../images/Circles.svg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, 150%;
}

.body-section.layers {
  background-color: var(--brand-blue);
  color: var(--white);
  padding-bottom: 20px;
}

.body-section.hubspot {
  padding-bottom: 22px;
}

.column {
  width: 100%;
  height: auto;
}

.column.h1 {
  max-width: 400px;
}

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

.column.relative.high {
  z-index: 2;
  background-color: var(--white);
}

.column.app-image {
  position: relative;
}

.column.image-stack {
  grid-column-gap: 2%;
  grid-row-gap: 2%;
  flex-flow: column;
  width: 50%;
  height: 100%;
  padding-left: 30px;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.column.centered {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.column.centered.right {
  width: 50%;
  padding-left: 30px;
  position: absolute;
  top: 0;
  right: 0;
}

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

.column.market-activity {
  position: relative;
}

.text-restrict {
  width: 100%;
  margin-bottom: 30px;
  padding-left: 10%;
  padding-right: 10%;
}

.text-restrict._2-cols {
  text-align: left;
  column-count: 2;
  column-gap: 50px;
}

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

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

.background-overlay {
  z-index: 2;
  background-color: #000000e6;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.background-overlay.light {
  mix-blend-mode: normal;
  background-color: #000000bf;
}

.background-overlay.home {
  color: #fff;
  text-align: center;
  background-color: #0006;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 40px;
  padding-left: 10%;
  padding-right: 10%;
}

.background-overlay.blue {
  background-color: #2b3bc9d9;
}

.background-overlay.white {
  background-color: var(--white);
  opacity: .9;
}

.page-header {
  z-index: 1;
  background-color: var(--brand-blue);
  color: #fff;
  text-align: center;
  cursor: auto;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: auto;
  padding: 140px 10% 40px;
  font-style: normal;
  position: relative;
  overflow: hidden;
}

.page-header.blog {
  background-color: var(--brand-blue);
  min-height: auto;
  padding: 180px 5% 40px;
}

.bottom-orange-border {
  z-index: 3;
  background-color: #e89c53;
  width: 66.6%;
  height: 6px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.background-image {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.background-image.half {
  width: 50%;
  margin-left: -30px;
}

.background-image.half.right {
  margin-left: 0;
  margin-right: -30px;
  left: auto;
}

.background-image.grey {
  opacity: .5;
  filter: saturate(0%) contrast(150%);
}

.background-image.greyscale {
  filter: contrast(80%) saturate(0%);
}

.blog-title {
  color: var(--white);
  font-size: 40px;
  line-height: 48px;
}

.blog-columns {
  grid-column-gap: 0px;
  grid-row-gap: 40px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 70% 30%;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  display: grid;
}

.blog-content {
  padding-right: 40px;
}

.blog-side-bar {
  grid-row-gap: 60px;
  border-left: 1px solid #d6d6d6;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding-left: 20px;
  display: flex;
}

.blog-side-bar-items {
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.blog-side-bar-title {
  letter-spacing: 0;
  font-weight: 400;
}

.blog-side-bar-links {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: var(--black);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 20px;
  font-weight: 400;
  line-height: 26px;
  display: flex;
}

.blog-side-bar-links:hover {
  color: var(--brand-green);
}

.card-item-date {
  color: var(--soft-grey);
  font-size: 14px;
}

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

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

.benefit-icon-holder {
  background-color: #00a4cb;
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  padding: 18px;
  display: flex;
}

.benefit-icon-holder.orange {
  background-color: #e89c53;
}

.benefit-icon-holder.red {
  background-color: #e94e1b;
}

.benefit-icon {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.benefit-title {
  color: #e94e1b;
  font-size: 21px;
  font-weight: 600;
}

.faqs-holder {
  grid-column-gap: 60px;
  grid-row-gap: 30px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  margin-top: 40px;
  margin-bottom: 30px;
  display: grid;
}

.faq-item {
  border: 1px solid var(--brand-blue);
  background-color: var(--white);
  cursor: pointer;
  border-radius: 8px;
  transition: box-shadow 1s;
  position: relative;
  overflow: hidden;
}

.faq-item:hover {
  box-shadow: 0 2px 12px 2px #00000059;
}

.faq-title {
  background-color: var(--brand-blue);
  color: var(--white);
  border-radius: 0 0 6px 6px;
  padding: 20px 100px 20px 30px;
}

.faq-button {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  display: flex;
  position: absolute;
  top: 20px;
  right: 16px;
}

.faq-line-1 {
  background-color: var(--brand-green);
  border-radius: 0;
  width: 6px;
  height: 100%;
  transform: skew(-28deg);
}

.faq-line-2 {
  background-color: var(--brand-green);
  border-radius: 0;
  width: 100%;
  height: 4px;
  position: absolute;
}

.faq-answer {
  padding-left: 30px;
  padding-right: 30px;
  font-size: 16px;
}

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

.menu-line-top {
  background-color: #fff;
  border-radius: 4px;
  width: 42px;
  height: 4px;
  position: absolute;
  top: 0;
}

.menu-line-low {
  background-color: #fff;
  border-radius: 4px;
  width: 42px;
  height: 4px;
  position: absolute;
  bottom: 0;
}

.menu-line-mid {
  background-color: #fff;
  border-radius: 4px;
  width: 42px;
  height: 4px;
}

.menu-button {
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  width: 42px;
  height: 28px;
  display: none;
  position: absolute;
  right: 30px;
}

.menu-inner {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.main-button-2 {
  z-index: 2;
  color: #165365;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #fff0;
  border: 1px solid #165365;
  border-radius: 50px;
  width: auto;
  min-width: 180px;
  padding: 16px 22px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  transition: border-color 1s, color 1s, background-color 1s;
  position: relative;
}

.main-button-2:hover {
  color: #fff;
  background-color: #e89c53;
  border-color: #e89c53;
  text-decoration: none;
}

.main-button-2.alt {
  color: #fff;
  background-color: #e94e1b;
  border-color: #e94e1b;
  font-size: 16px;
}

.main-button-2.alt:hover {
  color: #fff;
  background-color: #fff0;
  border-color: #fff;
}

.menu-link {
  grid-column-gap: 8px;
  color: var(--white);
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.menu-link:hover {
  color: var(--brand-green);
}

.menu-link.drop {
  color: var(--black);
  justify-content: flex-start;
  align-items: center;
  line-height: 22px;
  display: inline-flex;
}

.menu-link.drop:hover {
  color: var(--brand-green);
}

.menu-drawer {
  z-index: 997;
  width: 100%;
  height: 100%;
  display: block;
}

.nav-bar {
  z-index: 998;
  background-color: var(--brand-blue);
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 86px;
  padding: 0 30px 0 200px;
  font-size: 16px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header-logo-link {
  z-index: 6;
  width: auto;
  height: auto;
  position: absolute;
  left: 30px;
}

.brand-logo {
  object-fit: contain;
  object-position: 0% 0%;
  width: 142px;
  height: 35px;
}

.counterweight {
  width: 100%;
  height: 1px;
  position: absolute;
  top: 5px;
}

.home-header {
  z-index: 1;
  background-color: var(--brand-blue);
  color: #fff;
  text-align: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 200px 5% 120px;
  font-style: normal;
  position: relative;
  overflow: hidden;
}

.home-header.markets {
  background-color: var(--white);
  color: var(--black);
  background-image: url('../images/LPG-hero-background.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 70%;
}

.home-header.markets.testing {
  background-image: none;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.home-header.video {
  min-height: 100vh;
}

.header {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 300;
}

.move-link, .move-link:hover {
  color: #fff;
}

.header-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin: 0;
  font-size: 30px;
  display: flex;
  transform: rotate(-90deg);
}

.hidden-nav {
  display: none;
}

.home-slider-mask {
  width: 100%;
  height: 100%;
}

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

.home-slider {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.home-background-video {
  z-index: 1;
  opacity: 1;
  filter: contrast(200%) saturate(0%);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.menu-link-holder {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  color: #fff;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
  min-height: 82px;
  display: flex;
  position: relative;
}

.menu-link-2 {
  grid-column-gap: 8px;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 300;
  display: flex;
  position: relative;
}

.menu-link-2:hover {
  color: #df312b;
}

.menu-link-2.drop {
  white-space: pre-wrap;
  border-bottom: 1px solid #df312b;
  justify-content: flex-start;
  align-items: center;
  min-height: 42px;
  padding: 6px 14px;
  transition: background-color 1s, color 1s;
}

.menu-link-2.drop:hover {
  color: #11182d;
  background-color: #df312b;
}

.menu-icon {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  transform: rotate(-90deg);
}

.drop-holder {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  background-color: var(--white);
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  min-width: 180px;
  max-width: 360px;
  padding: 20px;
  display: none;
  position: absolute;
  top: 62px;
  left: 0;
  box-shadow: 0 4px 12px 4px #0003;
}

.heading {
  text-transform: capitalize;
}

.markets-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  margin-top: 73px;
  font-size: 18px;
  line-height: 32px;
  display: grid;
}

.markets-grid.smaller {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-columns: 1fr 1fr;
}

.logo-holder {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 110%;
  height: auto;
  margin-bottom: 84px;
  margin-left: -5%;
  margin-right: -5%;
  font-size: 20px;
  line-height: 46px;
  display: flex;
}

.logo-holder.header {
  letter-spacing: -.25px;
  text-transform: capitalize;
  width: 100%;
  margin: 84px 0% 0;
  font-weight: 400;
  position: relative;
}

.logo-holder.markets {
  width: 100vw;
}

.logo-carousel {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.logo-carousel.full {
  width: 100vw;
  position: absolute;
  bottom: 0;
}

.logo-carousel.stationary {
  height: 40px;
}

.market-card {
  border: 1px solid var(--brand-blue);
  background-color: var(--white);
  width: 100%;
  height: 100%;
  min-height: 340px;
  color: var(--black);
  cursor: pointer;
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 66px 12px 100px;
  transition: margin .5s, box-shadow .5s;
  display: flex;
  position: relative;
}

.market-card:hover {
  color: var(--black);
  margin-top: -8px;
  box-shadow: 0 10px 12px 4px #0003;
}

.market-card.review {
  text-align: left;
  cursor: auto;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 95px 40px 120px;
  transition-property: none;
}

.market-card.review:hover {
  box-shadow: none;
  margin-top: 0;
}

.market-card.review.dark {
  background-color: var(--brand-blue);
  min-height: 100%;
  color: var(--white);
  justify-content: flex-end;
  align-items: flex-start;
  padding: 30px;
}

.market-card.review.top {
  min-height: auto;
  padding-top: 85px;
  padding-bottom: 110px;
}

.market-card.benefits {
  text-align: left;
  cursor: auto;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px;
  transition-property: none;
}

.market-card.benefits:hover {
  box-shadow: none;
  margin-top: 0;
}

.market-card.benefits.dark {
  background-color: var(--brand-blue);
  min-height: 100%;
  color: var(--white);
  justify-content: flex-end;
  align-items: flex-start;
  padding: 30px;
}

.market-card.benefits.top {
  min-height: auto;
  padding-top: 85px;
  padding-bottom: 95px;
}

.market-card-button {
  border: 1px solid var(--brand-blue);
  min-width: 146px;
  height: 42px;
  color: var(--brand-blue);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  line-height: 36px;
  display: flex;
  position: absolute;
  bottom: 30px;
}

.market-card-title {
  color: var(--brand-blue);
  font-size: 24px;
  line-height: 35px;
}

.market-card-title.benefits {
  margin-bottom: 30px;
}

.market-card-icon-holder {
  background-color: var(--brand-blue);
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 76px;
  height: 76px;
  display: flex;
  position: absolute;
  top: -38px;
}

.market-card-icon {
  aspect-ratio: 1;
  background-color: var(--brand-green);
  object-fit: contain;
  width: 40px;
  height: 40px;
}

.market-card-text-holder {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 240px;
  height: auto;
  margin-top: 12px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.home-titles {
  color: var(--brand-green);
  white-space: nowrap;
  word-break: keep-all;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
  margin-left: -20px;
  padding: 20px;
  font-size: 40px;
  line-height: 48px;
  display: flex;
  position: relative;
}

.home-titles.body {
  width: auto;
  color: var(--black);
  margin-top: 40px;
  margin-left: -15px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 30px;
  line-height: 46px;
}

.home-titles.blog {
  white-space: normal;
  word-break: normal;
  padding-left: 30px;
  padding-right: 30px;
}

.home-titles.page {
  white-space: normal;
  justify-content: flex-start;
  align-items: center;
  min-width: 50%;
  padding-left: 30px;
  padding-right: 30px;
}

.home-titles.page.cta {
  min-width: auto;
}

.home-titles.page.blurb {
  flex-flow: row;
  min-width: auto;
  font-size: 30px;
  display: inline-flex;
}

.home-titles.page.flex-box {
  display: inline-flex;
}

.home-titles.markets {
  color: var(--brand-blue);
  white-space: normal;
  word-break: normal;
  font-size: 36px;
  line-height: 46px;
  display: inline-flex;
}

.home-titles.in-columns {
  width: 100%;
  color: var(--black);
  white-space: normal;
}

.home-header-corner {
  border-top: 2px solid var(--brand-green);
  border-left: 2px solid var(--brand-green);
  width: 45px;
  height: 45px;
  position: absolute;
  top: 0;
  left: 0;
}

.home-header-corner.opposite {
  border-style: none solid solid none;
  border-width: 0 2px 2px 0;
  border-right-color: var(--brand-green);
  border-bottom-color: var(--brand-green);
  inset: auto 0 0 auto;
}

.home-title {
  font-weight: 400;
  position: relative;
}

.home-title._1 {
  opacity: .5;
}

.home-title._2 {
  opacity: .7;
}

.quote-icon {
  background-color: var(--brand-blue);
  object-fit: contain;
  width: 34px;
  height: 27.3125px;
  position: absolute;
  top: 30px;
  left: 30px;
}

.quote-icon.alt {
  background-color: var(--brand-green);
  top: 0;
  left: 0;
}

.reviews-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  margin-top: 30px;
  font-size: 16px;
  display: grid;
}

.review-details {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 36px;
  font-size: 16px;
  display: flex;
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.review-details.large {
  text-align: right;
  flex-flow: row;
  justify-content: flex-end;
  align-items: flex-start;
  width: 40%;
  position: relative;
  bottom: auto;
  right: auto;
}

.review-details.comparison {
  padding-bottom: 26px;
  bottom: 0;
}

.review-logo {
  object-fit: contain;
  object-position: 100% 50%;
  width: 140px;
  height: 36px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.logo {
  object-fit: contain;
  object-position: 50% 50%;
  width: auto;
  min-width: auto;
  max-width: none;
  height: 40px;
  min-height: 40px;
}

.logo.tall {
  width: auto;
  height: 60px;
  min-height: 60px;
}

.left-cover {
  z-index: 4;
  background-image: linear-gradient(90deg, var(--white), #fff0);
  width: 25%;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.right-cover {
  z-index: 4;
  background-image: linear-gradient(270deg, var(--white), #fff0);
  width: 25%;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.footer {
  z-index: 1;
  background-color: var(--black);
  width: 100%;
  color: var(--white);
  text-align: center;
  cursor: auto;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 50px 5% 82px;
  font-style: normal;
  position: relative;
  overflow: hidden;
}

.footer.blog {
  padding-top: 60px;
}

.footer.dot-background {
  background-image: url('../images/Dots-Background.svg');
  background-position: 50%;
  background-size: 100%;
  background-attachment: fixed;
}

.footer.light {
  background-color: var(--soft-grey);
}

.footer.light.isometric {
  background-image: linear-gradient(#f5f5f599, #f5f5f599), url('../images/Background--diagonals.svg');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  background-attachment: scroll, fixed;
}

.footer-grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  font-size: 12px;
  line-height: 24px;
  display: grid;
}

.footer-title {
  border-bottom: 1px solid var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 54px;
  margin-bottom: 30px;
  font-size: 17px;
  display: flex;
}

.footer-logo {
  object-fit: contain;
  object-position: 0% 50%;
  width: 105px;
  height: 26px;
}

.footer-logo-link {
  z-index: 6;
  width: auto;
  height: auto;
  margin-bottom: 12px;
}

.footer-link-list {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  margin-top: -14px;
  display: flex;
}

.footer-link {
  grid-column-gap: 8px;
  min-height: 42px;
  color: var(--white);
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 42px;
  display: flex;
  position: relative;
}

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

.footer-link.with-icon {
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 30px;
}

.footer-link.with-icon.address {
  padding-top: 10.5px;
}

.address {
  line-height: 23px;
}

.footer-link-icon {
  background-color: var(--white);
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10.5px;
  left: 0;
}

.footer-link-icon.email.contaact {
  background-color: var(--brand-blue);
  margin-bottom: 12px;
  position: static;
}

.footer-link-icon.phone.ct {
  background-color: var(--brand-blue);
}

.footer-link-icon.phone.contaact, .footer-link-icon.linkedin.contaact, .footer-link-icon.location.contaact {
  background-color: var(--brand-blue);
  margin-bottom: 12px;
  position: static;
}

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

.si-arrow {
  background-color: var(--brand-blue);
  justify-content: flex-end;
  align-items: center;
  width: 24px;
  height: 2px;
  display: flex;
  position: absolute;
  top: 15px;
  left: 0;
}

.si-arrow.green {
  background-color: var(--brand-green);
}

.si-arrow-tip {
  border-right: 2px solid var(--brand-blue);
  border-bottom: 2px solid var(--brand-blue);
  width: 12px;
  height: 12px;
  transform: rotate(-45deg);
}

.si-arrow-tip.green {
  border-right-color: var(--brand-green);
  border-bottom-color: var(--brand-green);
}

.arrow-bullet-list {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.arrow-bullet-list.center {
  text-align: center;
  justify-content: flex-start;
  align-items: center;
}

.arrow-bullet-item {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 40px;
  line-height: 36px;
  display: flex;
  position: relative;
}

.arrow-bullet-item.comparison {
  line-height: 40px;
}

.app-image {
  object-position: 0% 50%;
  justify-content: flex-start;
  align-items: flex-start;
  width: 150%;
  max-width: 120%;
  height: 100%;
  max-height: 540px;
  margin-left: 0%;
  display: flex;
  position: absolute;
  top: 0;
  left: -12px;
  overflow: hidden;
}

.app-image-cover {
  z-index: 2;
  background-color: var(--white);
  width: 320px;
  height: 688px;
  position: absolute;
  top: -50px;
  bottom: 0;
  right: 50%;
}

.app-image-cover.large {
  height: 90%;
  bottom: auto;
  right: 50%;
}

.background-icon {
  width: 400px;
  max-width: 40%;
  height: auto;
  position: absolute;
  top: -55px;
  bottom: -82px;
  left: -230px;
}

.cta-text {
  color: var(--white);
  font-size: 30px;
  line-height: 50px;
}

.cta-text.layers {
  font-size: 24px;
  line-height: 36px;
}

.cta-image {
  object-fit: cover;
  object-position: 0% 0%;
  border-radius: 12px;
  width: 50vw;
  max-width: none;
  height: 100vh;
  margin-left: 80px;
  position: absolute;
  top: -37px;
  left: 100%;
  box-shadow: 0 2px 12px 2px #16161959;
}

.cta-image.smaller-inner {
  width: 75vw;
  min-width: 50vw;
  height: 50vh;
  margin-left: 30px;
}

.cta-column {
  text-align: left;
  width: 50%;
  max-width: 420px;
  height: auto;
  margin-top: 70px;
  margin-left: 18%;
  position: relative;
}

.cta-column.h1 {
  max-width: 400px;
}

.cta-column.relative {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.cta-column.app-image {
  position: relative;
}

.cta-column.alt {
  min-width: 50%;
  margin-left: 0%;
}

.card-holder {
  grid-column-gap: 0px;
  grid-row-gap: 60px;
  text-align: left;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 100vh;
  margin-top: 80px;
  display: flex;
  position: relative;
}

.card-item {
  border: 1px solid var(--white);
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 20px;
  display: flex;
}

.green {
  color: var(--brand-green);
}

.app-background {
  z-index: 0;
  width: auto;
  height: 520px;
  margin-right: -5px;
  position: absolute;
  top: -55px;
  bottom: -82px;
  right: 50%;
}

.app-background.large {
  height: 90%;
  bottom: auto;
  right: 50%;
}

.app-background.inner {
  background-color: var(--white);
  width: 100%;
  height: 100%;
  margin-right: 0;
  position: static;
  inset: 0 0 1px 2px;
}

.app-background.overlay {
  z-index: 4;
}

.logo-holder-inner {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 4848.48px;
  min-width: 4848.48px;
  max-width: none;
  height: 60px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.hero-frame {
  z-index: 6;
  width: 615px;
  max-width: 45%;
  height: 446px;
  position: absolute;
  top: 190px;
  right: -80px;
}

.hero-image {
  object-fit: contain;
  object-position: 0% 50%;
  border-radius: 8px;
  width: 200%;
  max-width: 200%;
  height: 100%;
  box-shadow: 0 2px 12px 2px #00000059;
}

.stats {
  z-index: 2;
  background-color: var(--white);
  text-align: center;
  border-radius: 6px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 190px;
  height: auto;
  padding: 12px;
  font-size: 12px;
  line-height: 20px;
  display: flex;
  position: absolute;
  top: -50px;
  left: 180px;
  box-shadow: 0 2px 12px 2px #0003;
}

.stats.btm {
  width: 210px;
  top: auto;
  bottom: -50px;
  left: 130px;
}

.stats.left {
  width: 170px;
  top: 173px;
  left: -85px;
}

.app-image-background {
  object-fit: contain;
  object-position: 0% 50%;
  width: 200%;
  max-width: 200%;
  height: 100%;
  max-height: 82.5%;
  margin-left: 0%;
  position: absolute;
}

.app-bck-cover {
  z-index: 2;
  background-color: var(--white);
  width: 62px;
  min-width: 12%;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.hero-spacerf {
  display: none;
}

.stats-holder {
  color: var(--black);
}

.btn-icon {
  color: var(--brand-green);
  margin: 0;
}

.credits {
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
  font-size: 12px;
  line-height: 24px;
  display: flex;
}

.social-link {
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.card-item-text, .card-item-image {
  width: 50%;
}

.card-image {
  z-index: 1;
  width: 100%;
  height: auto;
  box-shadow: 20px 20px 5px #0003;
}

.titles-holder {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.blog-card {
  border: 1px solid var(--brand-blue);
  background-color: var(--white);
  width: 100%;
  height: 100%;
  min-height: 340px;
  color: var(--black);
  cursor: pointer;
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 220px 12px 20px;
  transition: margin .5s, box-shadow .5s;
  display: flex;
  position: relative;
}

.blog-card:hover {
  color: var(--black);
  margin-top: -8px;
  box-shadow: 0 10px 12px 4px #0003;
}

.blog-card.review {
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 95px 40px 105px;
  transition-property: none;
}

.blog-card.review:hover {
  box-shadow: none;
  margin-top: 0;
}

.blog-card-image {
  background-color: var(--brand-blue);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  height: 200px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.blog-image {
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  height: 100%;
  transition: opacity 1s, filter 1s;
}

.blog-image:hover {
  opacity: .5;
  filter: grayscale();
}

.blog-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  margin-top: 30px;
  font-size: 16px;
  display: grid;
}

.blog-card-title {
  color: var(--brand-blue);
  font-size: 21px;
  line-height: 35px;
}

.image-in-stack {
  filter: grayscale();
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 32%;
  max-height: 32%;
}

.image-in-stack.grid {
  grid-column-gap: 4%;
  grid-row-gap: 4%;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.company-spacer {
  width: 100%;
  height: 80px;
}

.company-link-holder {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: var(--brand-blue);
  justify-content: flex-start;
  align-items: center;
  font-size: 22px;
  display: flex;
}

.green-arrow {
  object-fit: contain;
  width: 54px;
  height: 54px;
}

.block {
  display: block;
}

.text-columns {
  text-align: left;
  column-count: 2;
  column-gap: 60px;
  width: 100%;
  height: auto;
  margin-top: 40px;
}

.liquidity-lake-holder {
  margin-top: 60px;
}

.mission-holder {
  background-color: var(--brand-blue);
  color: var(--white);
  text-align: left;
  border-radius: 12px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 80px;
  padding: 50px;
  font-size: 24px;
  display: flex;
  position: relative;
}

.mission-text {
  width: 50%;
  height: auto;
  padding-right: 70px;
}

.mission-image-holder {
  width: 50%;
  height: auto;
  padding-left: 70px;
  position: absolute;
  top: 50px;
  bottom: 50px;
  right: 50px;
}

.mission-image {
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.mission-title {
  margin-bottom: 20px;
  font-size: 32px;
}

.arrows-group {
  object-fit: contain;
  width: 130px;
  height: 130px;
  position: absolute;
  bottom: 10px;
  left: 26px;
}

.team-tabs {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 60px;
  display: flex;
}

.team-tab-menu {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 35%;
  display: flex;
}

.team-tab-link {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  background-color: var(--white);
  border-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  transition: box-shadow 1s, color 1s;
  display: flex;
  box-shadow: 0 2px 12px 2px #0003;
}

.team-tab-link:hover {
  color: var(--black);
  box-shadow: 0 2px 12px 2px #0006;
}

.team-tab-link.w--current {
  display: none;
}

.team-tab-content {
  width: 65%;
  height: 100%;
  min-height: 100%;
  padding-bottom: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.team-tab-pane {
  text-align: left;
  width: 100%;
  height: 100%;
  min-height: 100%;
  font-size: 16px;
}

.team-tab-link-image {
  filter: contrast(115%) grayscale();
  object-fit: cover;
  border-radius: 6px;
  width: 80px;
  height: 80px;
}

.team-tab-link-image.large {
  aspect-ratio: 1;
  width: 45%;
  max-width: 350px;
  height: auto;
}

.team-tab-text {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.team-tab-text.large {
  width: 40%;
}

.team-tab-name {
  color: var(--brand-blue);
}

.team-tab-name.large {
  font-size: 21px;
}

.team-tab-pane-inner {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
  min-height: 100%;
  display: flex;
}

.position {
  margin-bottom: 14px;
}

.tabs-switch {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  width: 25%;
  height: 30px;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
}

.tab-switch-button {
  border: 1px solid var(--brand-blue);
  width: 30px;
  height: 30px;
  color: var(--brand-blue);
  border-radius: 4px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  transition: background-color 1s, color 1s;
  display: flex;
}

.tab-switch-button:hover {
  background-color: var(--brand-blue);
  color: var(--brand-green);
}

.background-slash {
  object-fit: fill;
  object-position: 0% 100%;
  width: 500px;
  height: auto;
  position: absolute;
  top: 120px;
  bottom: -1px;
  right: 24%;
}

.cta-image-background {
  z-index: 4;
  width: 50%;
  height: auto;
  margin-right: -30px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.cta-image-background.opposite {
  margin-left: -30px;
  margin-right: auto;
  left: 0;
  right: auto;
}

.cta-image-background.center {
  margin-right: 0;
}

.cta-image-background.center.opposite {
  margin-left: 0;
}

.cta-img-bck {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.cta-img-bck.skew {
  width: 150%;
  max-width: none;
  height: 150%;
  margin-left: -15%;
  position: absolute;
  transform: skew(-10deg, 10deg);
}

.cta-image-line {
  z-index: 2;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.cta-image-line.opposite {
  left: auto;
  right: 0;
}

.cta-image-overlay {
  aspect-ratio: 1 / 2.15;
  background-color: var(--brand-blue);
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.cta-image-overlay.white {
  z-index: 1;
  background-color: var(--white);
}

.cta-image-overlay.opposite {
  left: auto;
  right: 0;
}

.testimonials-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.35fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  font-size: 16px;
  display: grid;
}

.testimonials-inner-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.review-large {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.review-div {
  background-color: var(--brand-green);
  width: 1px;
  height: 100%;
}

.review-large-text {
  width: 60%;
  min-width: 50%;
  padding-top: 40px;
  font-size: 24px;
  line-height: 36px;
  position: relative;
}

.review-icon {
  width: 222.258px;
  height: 256px;
  position: absolute;
  top: 30px;
  right: 30px;
}

.inner-title-holder {
  padding: 20px 30px;
  position: relative;
}

.product-benefits-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 140px;
  font-size: 16px;
  line-height: 28px;
  display: grid;
}

.product-benefits-grid.flex {
  grid-column-gap: 4%;
  grid-row-gap: 20px;
  flex-flow: wrap;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.product-benefit {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
}

.product-benefit.flex {
  width: 22%;
}

.product-benefit-icon {
  background-color: var(--brand-blue);
  object-fit: contain;
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
}

.product-benefit-icon.greenbk {
  background-color: var(--brand-green);
}

.product-benefit-title {
  line-height: 30px;
}

.app-benefits {
  object-fit: contain;
  border-radius: 8px;
  width: 100%;
  max-width: 1100px;
  height: auto;
  box-shadow: 0 0 12px 4px #00000059;
}

.benefit-app-image-holder {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
  max-width: 100vw;
  height: 180px;
  padding-top: 12px;
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
}

.comparison-grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 30px;
  font-size: 16px;
  display: grid;
}

.comparison-item {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  border: 1px solid #c8c8c8;
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 20px 24px;
  line-height: 40px;
  display: flex;
}

.comparison-item.emphasis {
  border-color: var(--brand-blue);
  background-color: var(--brand-blue);
  color: var(--white);
}

.larger-review {
  grid-column-gap: 5%;
  grid-row-gap: 40px;
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  margin-bottom: -60px;
  display: flex;
  position: relative;
}

.comparison-review-holder {
  text-align: right;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 50%;
  min-width: 50%;
  padding-bottom: 74px;
  padding-right: 30px;
  font-size: 40px;
  line-height: 51px;
  display: flex;
  position: relative;
}

.comparison-image {
  object-fit: contain;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 45%;
  min-width: 45%;
}

.markets-page-title {
  color: var(--black);
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 32px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
}

.video-frame-holder {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.video-holder-image {
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 12px;
  width: 100%;
  max-width: none;
  height: 100%;
}

.play-button {
  z-index: 4;
  cursor: pointer;
  width: 100px;
  height: 100px;
  transition: transform 1s;
  position: absolute;
}

.play-button:hover {
  transform: scale(1.2);
}

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

.video-cover {
  z-index: 999;
  width: 100%;
  height: 100%;
  color: var(--white);
  background-color: #161619d9;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: none;
  position: fixed;
  inset: 0%;
}

.video-cover-inner {
  aspect-ratio: 16 / 9;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 70%;
  height: auto;
  display: flex;
  position: relative;
}

.video-close {
  cursor: pointer;
  font-size: 32px;
  transition: color 1s;
  position: absolute;
  top: 30px;
  right: 30px;
}

.video-close:hover {
  color: var(--brand-green);
}

.custom-player-controls {
  z-index: 10;
  background-color: var(--black);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 14px;
  line-height: 1;
  display: flex;
  position: relative;
}

.video-play-button {
  width: auto;
  height: 100%;
  padding-left: 12px;
  padding-right: 12px;
}

.video-progress-bar {
  justify-content: flex-start;
  align-items: center;
  width: 65%;
  height: 100%;
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
}

.video-mute-button {
  width: auto;
  height: 100%;
  padding-left: 12px;
  padding-right: 6px;
}

.video-volume-button {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
  padding-left: 6px;
  padding-right: 12px;
  font-size: 14px;
  transition: color 1s;
  display: flex;
  position: relative;
}

.video-volume-button:hover {
  color: var(--brand-green);
}

.video-timer-button {
  justify-content: flex-end;
  align-items: center;
  width: auto;
  height: 100%;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 14px;
  transition: color 1s;
  display: flex;
}

.video-timer-button:hover {
  color: var(--brand-green);
}

.video-mute {
  background-color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  transition: background-color 1s;
  display: flex;
}

.video-mute:hover {
  background-color: var(--brand-green);
}

.seek-bar {
  background-color: var(--white);
  cursor: grab;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 12px;
  display: flex;
}

.seek-bar-inner {
  background-color: var(--brand-green);
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  height: 100%;
  display: flex;
  position: relative;
}

.video-play {
  background-color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  transition: background-color 1s;
  display: flex;
}

.video-play:hover {
  background-color: var(--brand-green);
}

.volume-set {
  background-color: var(--black);
  justify-content: center;
  align-items: flex-end;
  width: 80%;
  height: 100px;
  padding: 12px;
  display: flex;
  position: absolute;
  bottom: 100%;
}

.video-volume {
  background-color: var(--white);
  cursor: grab;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 12px;
  height: 100%;
  display: flex;
}

.video-volume-set {
  background-color: var(--brand-green);
  width: 100%;
  height: 50%;
}

.seek-slider {
  background-color: var(--brand-green);
  width: 8px;
  height: 200%;
  margin-right: -4px;
  transform: skew(-24deg);
}

.video-muted {
  background-color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  transition: background-color 1s;
  display: flex;
}

.video-muted:hover {
  background-color: var(--brand-green);
}

.video-paused {
  background-color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  transition: background-color 1s;
  display: flex;
}

.video-paused:hover {
  background-color: var(--brand-green);
}

.page-holder {
  background-color: var(--brand-blue);
  background-image: linear-gradient(145deg, #16161940, #16161900 50%, #16161940);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
}

.main1 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 100vw;
  height: 100%;
  min-height: 100vh;
  display: flex;
}

.main-video {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 20px;
  display: flex;
}

.video-holder {
  aspect-ratio: 16 / 9;
  background-color: var(--brand-blue);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
  height: auto;
  transition: box-shadow 1s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.video-holder:hover {
  box-shadow: 0 2px 12px 2px #00000073;
}

.video-placeholder {
  z-index: 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.video-play-2 {
  z-index: 6;
  cursor: pointer;
  background-color: #ffffff40;
  border: 2px solid #fff;
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 12px 10px 12px 14px;
  transition: transform 1s, background-color 1s;
  display: flex;
  position: absolute;
}

.video-play-2:hover {
  background-color: var(--brand-green);
  transform: scale(1.2);
}

.play-inner {
  background-color: #fff;
  width: 80%;
  height: 100%;
}

.white-background {
  z-index: 1;
  background-color: var(--white);
  width: 100%;
  height: 25%;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}

.videoanchor {
  width: 20px;
  height: 0;
  position: absolute;
  top: 30px;
}

.items-holder {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
}

.item-card {
  width: 100%;
  height: auto;
  min-height: 300px;
  padding: 30px 80px;
  position: relative;
}

.item-title {
  color: var(--brand-blue);
  margin-bottom: 20px;
  margin-left: -40px;
  font-size: 24px;
  line-height: 35px;
}

.item-title.benefits {
  margin-bottom: 30px;
}

.item-left-border {
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.item-back-border {
  z-index: -1;
  border: 2px solid var(--brand-blue);
  border-radius: 4px;
  width: 100%;
  height: auto;
  position: absolute;
  inset: 0%;
  transform: skew(-25deg);
}

.item-back-border-cover {
  background-color: var(--white);
  width: 50%;
  height: 50%;
  position: absolute;
  top: -10px;
  left: -10px;
}

.item-icon {
  opacity: .05;
  object-fit: contain;
  width: 140px;
  height: 140px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.right-stroke {
  z-index: 1;
  background-color: var(--brand-green);
  width: 50px;
  height: 180px;
  position: absolute;
  bottom: -20px;
  right: -20px;
}

.comparison-animation {
  object-fit: contain;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 45%;
  min-width: 45%;
  height: 400px;
  min-height: 300px;
  margin-top: -30px;
  margin-bottom: -30px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  display: flex;
  transform: skew(-12deg, 5deg);
}

.comparison-animation.flat {
  transform: none;
}

.center-animation {
  background-color: var(--brand-green);
  border-radius: 100%;
  width: 30px;
  height: 30px;
}

.center-orbit-animation {
  border: 1px dashed #000;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  position: absolute;
}

.center-orbit-animation._1 {
  border-style: none;
  border-width: 0;
  width: 240px;
  height: 240px;
  transform: rotate(-58deg);
}

.center-orbit-animation._2 {
  border-style: none;
  border-width: 0;
  width: 290px;
  height: 290px;
  transform: rotate(-15deg);
}

.center-orbit-animation._3 {
  border-style: none;
  border-width: 0;
  width: 240px;
  height: 240px;
  transform: rotate(145deg);
}

.center-orbit-animation._4 {
  border-style: none;
  border-width: 0;
  width: 280px;
  height: 280px;
  transform: rotate(39deg);
}

.orbit-sphere {
  background-color: var(--black);
  text-align: center;
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  display: flex;
  position: absolute;
  top: 50%;
  left: -15px;
}

.video-inner {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  inset: 0%;
}

.body-title {
  color: var(--brand-blue);
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 35px;
}

.body-title.benefits {
  margin-bottom: 30px;
}

.body-title.inner {
  margin-bottom: 0;
}

.background-gradient {
  z-index: 2;
  background-image: linear-gradient(270deg, var(--white), #fff0);
  width: 60%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.background-gradient.opposite {
  background-image: linear-gradient(90deg, var(--white), #fff0);
  left: auto;
}

.cta-image-overlay-opposite {
  aspect-ratio: 1 / 2.15;
  background-color: var(--brand-blue);
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.cta-image-overlay-opposite.white {
  z-index: 1;
  background-color: var(--white);
}

.cta-image-overlay-opposite.opposite {
  left: auto;
  right: 0;
}

.contact-restrict {
  grid-column-gap: 16px;
  grid-row-gap: 30px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
  margin-bottom: 60px;
  padding-left: 10%;
  padding-right: 10%;
  display: grid;
}

.contact-item {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
}

.contact-form-holder {
  z-index: 10;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
}

.contact-form-block {
  width: 100%;
  height: auto;
  margin-top: 40px;
  margin-bottom: -150px;
  padding-left: 10%;
  padding-right: 10%;
}

.contact-form-inner {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--white);
  width: 100%;
  height: auto;
  color: var(--brand-blue);
  border-radius: 8px;
  flex-flow: column;
  padding: 40px;
  display: flex;
  box-shadow: 0 2px 12px 2px #0003;
}

.text-field {
  border: 1px solid var(--brand-blue);
  width: 100%;
  height: 52px;
  color: var(--brand-blue);
  cursor: text;
  border-radius: 8px;
  margin-bottom: 0;
  padding: 12px;
  font-size: 16px;
  transition: border-color 1s;
}

.text-field:hover {
  border-color: var(--brand-green);
}

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

.text-field.select {
  background-color: var(--white);
}

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

.submit-details {
  color: var(--black);
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  display: flex;
}

.gdpr-text {
  max-width: 50%;
}

.background-hash {
  z-index: 1;
  filter: saturate(0%);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

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

.contact-link:hover {
  color: var(--brand-green);
}

.cta-inner-text {
  color: var(--white);
  font-size: 38px;
  line-height: 50px;
}

.cta-inner-text.inner {
  font-size: 30px;
}

.animation-frame-holder {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  transform: skew(-12deg, 5deg);
}

.orbit-animation-ring {
  border: 1px solid var(--brand-blue);
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  display: flex;
  position: absolute;
}

.orbit-animation-ring._1 {
  border-style: none;
  border-width: 0;
  width: 240px;
  height: 240px;
  transform: rotate(-58deg);
}

.orbit-animation-ring._2 {
  border-style: none;
  border-width: 0;
  width: 290px;
  height: 290px;
  transform: rotate(-15deg);
}

.orbit-animation-ring._3 {
  border-style: none;
  border-width: 0;
  width: 240px;
  height: 240px;
  transform: rotate(145deg);
}

.orbit-animation-ring._4 {
  border-style: none;
  border-width: 0;
  width: 280px;
  height: 280px;
  transform: rotate(39deg);
}

.orbit-animation-ring.mid {
  width: 260px;
  height: 260px;
}

.orbit-animation-ring.outer {
  width: 400px;
  height: 400px;
}

.grp {
  border: 1px solid var(--brand-blue);
  background-color: var(--white);
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 9px;
  display: flex;
  position: absolute;
  top: auto;
  bottom: auto;
  right: -25px;
}

.grp.add {
  top: auto;
  bottom: auto;
  left: -25px;
}

.grp.add.top {
  top: -25px;
  left: auto;
  right: auto;
}

.grp-icon {
  aspect-ratio: 1;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.hubspot-code {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 30px;
  display: flex;
}

.formanchor {
  width: 20px;
  height: 0;
  position: absolute;
  top: 140px;
}

.holding-image {
  width: 20%;
  min-width: 200px;
  height: auto;
}

.col-images {
  object-fit: contain;
  object-position: 0% 0%;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.layer-item {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  height: 50vh;
  display: grid;
}

.lake-panel {
  text-align: left;
  width: 100%;
  height: auto;
  position: relative;
}

.lake-image {
  width: 100%;
  height: auto;
}

.lake-pointer {
  z-index: 2;
  border: 1px solid var(--light-grey);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #f5f5f580;
  border-radius: 8px;
  width: 320px;
  height: 200px;
  padding: 20px;
  font-size: 16px;
  position: absolute;
  top: 20px;
  left: 20px;
  box-shadow: 0 2px 12px 2px #0003;
}

.lake-pointer._2 {
  left: auto;
  right: 20px;
}

.lake-pointer._3 {
  top: auto;
  bottom: 20px;
}

.lake-pointer._4 {
  inset: auto 20px 20px auto;
}

.event-details {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  border: 2px solid var(--soft-grey);
  background-color: var(--soft-grey);
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 12px;
  display: flex;
}

.event-details-item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: wrap;
  width: 100%;
  height: auto;
  display: flex;
}

.event-image {
  object-fit: cover;
  width: 80%;
  height: 320px;
  margin-top: 20px;
}

.counter-item {
  flex-flow: column;
  width: 100%;
  height: auto;
  display: flex;
}

.details-link {
  color: var(--brand-green);
}

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

.counter {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  margin-bottom: 12px;
  display: flex;
}

.counter-inner {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 60px;
  display: flex;
}

.big {
  font-size: 44px;
  line-height: 55px;
}

.lake-lottie {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.events-form-block {
  width: 100%;
  height: auto;
}

.event-form-inner {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px solid var(--soft-grey);
  background-color: var(--white);
  width: 100%;
  height: auto;
  color: var(--brand-blue);
  border-radius: 8px;
  flex-flow: column;
  padding: 20px;
  display: flex;
}

.cta-image-holder {
  z-index: 0;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-block {
  font-size: 30px;
}

.slash-top {
  z-index: 6;
  background-color: var(--brand-blue);
  width: 206px;
  height: 2px;
  position: absolute;
  top: -50px;
  right: 50%;
}

.market-list {
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.market-item {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.big-circles {
  aspect-ratio: 1;
  object-fit: contain;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
}

.outer-circle {
  border: 1px solid var(--brand-blue);
  border-radius: 100%;
  width: 100%;
  height: 100%;
  position: relative;
}

.mid-circle {
  border: 1px solid var(--brand-blue);
  border-radius: 100%;
  width: 75%;
  height: 75%;
  position: absolute;
}

.inner-circle {
  border: 1px solid var(--brand-blue);
  border-radius: 100%;
  width: 50%;
  height: 50%;
  position: absolute;
}

.central-sphere {
  border: 1px solid var(--brand-green);
  background-color: var(--brand-green);
  border-radius: 100%;
  width: 15%;
  height: 15%;
  position: absolute;
  box-shadow: inset 0 2px 12px 2px #0003, 0 2px 12px 2px #0003;
}

.grp-item {
  z-index: 4;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid var(--light-grey);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #f5f5f580;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: 8px 12px 8px 8px;
  font-size: 16px;
  font-weight: 400;
  display: inline-flex;
  position: absolute;
  top: 11%;
  left: 2%;
}

.grp-item._2 {
  top: -7%;
  left: 52%;
}

.grp-item._3 {
  top: auto;
  bottom: -7%;
  left: 30%;
}

.grp-item._4 {
  top: 69%;
  left: 0%;
}

.grp-item._5 {
  top: 22%;
  left: 56%;
}

.grp-item._6 {
  top: 35%;
  left: 7%;
}

.grp-item._6.link {
  background-color: #2b3bc91a;
  border-color: #2b3bc980;
  transition: box-shadow 1s, background-color 1s, color 1s;
}

.grp-item._6.link:hover {
  background-color: var(--brand-green);
  color: var(--brand-blue);
  box-shadow: 0 2px 12px 2px #00000059;
}

.grp-item._7 {
  top: auto;
  bottom: 25%;
  left: 60%;
}

.grp-item.none {
  border-color: var(--transparent);
  background-color: var(--transparent);
  -webkit-backdrop-filter: blur();
  backdrop-filter: blur();
}

.grp-item._8 {
  top: auto;
  bottom: 25%;
  left: 60%;
}

.grp-item._8.none {
  bottom: 6%;
  left: 47%;
}

.grp-item._9 {
  top: auto;
  bottom: 25%;
  left: 60%;
}

.grp-item._9.none {
  bottom: auto;
  left: 68%;
}

.grp-inner-icon {
  border: 1px solid var(--brand-blue);
  background-color: var(--white);
  object-fit: contain;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  padding: 5px;
  box-shadow: 0 2px 12px 2px #00000040;
}

.link-data {
  border: 2px solid var(--brand-blue);
  background-color: var(--white);
  object-fit: contain;
  border-radius: 100%;
  width: 120px;
  height: 120px;
  padding: 22px;
  position: absolute;
  top: -59px;
  right: -47px;
  box-shadow: 0 2px 12px 2px #0003;
}

.link-icon {
  object-fit: contain;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.text-block-2 {
  transform: rotate(0);
}

.green-title {
  color: var(--brand-green);
}

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

.layer-animation {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 220vh;
  margin-bottom: 100px;
  position: relative;
  top: 0;
}

.layer-animation.stationery {
  height: auto;
}

.section-1 {
  z-index: 1;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: -10%;
  display: flex;
  position: relative;
}

.section-1.stationery {
  margin-top: -40px;
}

.layer-1 {
  width: 50%;
  transform-style: preserve-3d;
  position: relative;
  transform: rotateX(42deg)rotateY(10deg)rotateZ(-36deg);
  box-shadow: 0 2px 12px 2px #00000059;
}

.section-2 {
  z-index: 2;
  opacity: 0;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: -10%;
  display: flex;
  position: relative;
}

.section-2.stationery {
  opacity: 1;
  margin-top: -40px;
}

.section-3 {
  z-index: 3;
  opacity: 0;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.section-3.stationery {
  opacity: 1;
}

.section-text {
  text-align: left;
  width: 50%;
  padding-left: 116px;
  font-size: 18px;
  position: absolute;
  top: 0;
  right: 0;
}

.section-text.wide {
  text-align: center;
  padding-left: 60px;
}

.section-text.wide.stationery {
  width: 100%;
  padding-left: 0;
  position: static;
}

.section-text.third {
  top: 59%;
}

.section-text.thin {
  line-height: 28px;
}

.section-bullet {
  background-color: var(--yellow);
  width: 36px;
  height: 36px;
  color: var(--black);
  text-align: center;
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 3px;
  padding-right: 2px;
  font-size: 18px;
  line-height: 1;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.section-bullet.green {
  background-color: var(--brand-green);
  padding-right: 0;
}

.section-bullet.orange {
  background-color: #e8c86e;
  padding-right: 0;
}

.section-border {
  background-color: var(--yellow);
  width: 70px;
  height: 2px;
  margin-top: -3px;
  position: absolute;
  left: 100%;
}

.section-border.green {
  background-color: var(--brand-green);
}

.section-border.orange {
  background-color: #e8c86e;
}

.section-title {
  font-size: 24px;
  font-weight: 400;
}

.layers-inner {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: -20%;
}

.layers-inner.stationery {
  margin-top: 87px;
}

.stage-1 {
  width: auto;
  height: 1px;
  margin-top: 60px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

.stage-2 {
  width: auto;
  height: 1px;
  position: absolute;
  top: 82%;
  left: 0;
  right: 0;
}

.stage-3 {
  width: auto;
  height: 1px;
  position: absolute;
  top: 84%;
  left: 0;
  right: 0;
}

.section-4 {
  z-index: 3;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 185px;
  padding-left: 50%;
  display: flex;
  position: absolute;
}

.section-4.stationery {
  height: auto;
  margin-top: 87px;
  padding-left: 5%;
  padding-right: 5%;
  position: static;
}

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

.image-flash-1 {
  z-index: 1;
  opacity: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.image-flash-2 {
  z-index: 2;
  opacity: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.market-activity-holder {
  aspect-ratio: 1 / 2.15;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: auto;
  height: auto;
  display: flex;
  position: absolute;
  top: -50px;
  bottom: -82px;
  right: -60px;
}

.market-activity-border {
  z-index: 5;
  aspect-ratio: 1 / 2.15;
  background-color: var(--white);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: auto;
  height: auto;
  padding-top: 90px;
  display: flex;
  position: absolute;
  top: -50px;
  bottom: -82px;
  right: -30px;
  overflow: hidden;
}

.market-activity-image {
  object-fit: cover;
  object-position: 0% 0%;
  width: 300%;
  max-width: 580px;
  height: auto;
  min-height: 70%;
  margin-right: -10px;
  position: absolute;
  left: 0;
}

.market-slash {
  width: 100%;
  height: auto;
  position: absolute;
  inset: 0%;
}

.blue-angle-line {
  background-color: var(--brand-blue);
  width: 2px;
  height: 200px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: rotate(65.06deg);
}

.market-activity-right {
  z-index: 6;
  width: auto;
  max-width: none;
  height: 130%;
  position: absolute;
  top: -60px;
  bottom: -82px;
  right: -35px;
}

.market-activity-left {
  z-index: 1;
  width: auto;
  max-width: none;
  height: 130%;
  position: absolute;
  top: -60px;
  bottom: -82px;
  right: 270px;
}

.market-activity-image-holder {
  z-index: 2;
  width: auto;
  height: 100%;
  padding-top: 40px;
  position: relative;
  overflow: hidden;
}

.market-border-top {
  z-index: 6;
  background-color: var(--brand-blue);
  width: 306px;
  height: 3px;
  position: absolute;
  top: -50px;
  right: -30px;
}

.market-border-bottom {
  z-index: 6;
  background-color: var(--brand-blue);
  width: 306px;
  height: 3px;
  margin-right: 306px;
  position: absolute;
  bottom: -82px;
  right: -30px;
}

.section-2-pause {
  background-color: var(--soft-red);
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  top: 60%;
}

.section-2-pause.trans {
  background-color: var(--transparent);
}

.section-3-pause {
  background-color: var(--soft-red);
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  top: 75%;
}

.section-3-pause.trans {
  background-color: var(--transparent);
}

.pause-stopper {
  background-color: var(--soft-red);
  width: auto;
  height: 1px;
  display: block;
  position: absolute;
  top: 1350px;
  left: 0;
  right: 0;
}

.pause-stopper.trans {
  background-color: var(--transparent);
}

.mobile-final {
  display: none;
}

.pause-starter {
  background-color: var(--soft-red);
  width: auto;
  height: 1px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.pause-starter.trans {
  background-color: var(--transparent);
}

.inner-stack-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 48%;
  height: 100%;
}

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

.pre-title {
  color: var(--brand-blue);
  font-size: 16px;
}

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

  h3 {
    font-size: 44px;
  }

  .column-image {
    min-height: 320px;
  }

  .body-section.layers {
    padding-bottom: 80px;
  }

  .faqs-holder {
    grid-column-gap: 50px;
  }

  .menu-inner {
    grid-column-gap: 44px;
    grid-row-gap: 44px;
  }

  .markets-grid {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    font-size: 18px;
  }

  .market-card {
    padding-left: 14px;
    padding-right: 14px;
  }

  .market-card-title {
    font-size: 26px;
  }

  .market-card-text-holder {
    max-width: 280px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .home-titles.page.blurb {
    min-width: auto;
  }

  .home-titles.markets {
    font-size: 40px;
    line-height: 48px;
  }

  .reviews-grid {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    font-size: 18px;
  }

  .review-details {
    font-size: 18px;
  }

  .review-details.comparison {
    right: 20px;
  }

  .footer-grid {
    grid-column-gap: 70px;
    grid-row-gap: 70px;
  }

  .footer-link {
    font-size: 16px;
  }

  .cta-text {
    line-height: 52px;
  }

  .hero-frame {
    right: -40px;
  }

  .stats {
    font-size: 14px;
    line-height: 22px;
    left: 240px;
  }

  .stats.btm {
    left: 170px;
  }

  .app-image-background {
    max-height: 85%;
  }

  .app-bck-cover {
    width: 86px;
  }

  .blog-card {
    padding-left: 14px;
    padding-right: 14px;
  }

  .blog-grid {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    font-size: 18px;
  }

  .image-in-stack.grid {
    grid-column-gap: 2.5%;
    grid-row-gap: 2.5%;
  }

  .team-tab-link-image.large {
    max-width: 300px;
  }

  .background-slash {
    right: 28%;
  }

  .review-large-text {
    font-size: 26px;
    line-height: 38px;
  }

  .comparison-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .comparison-item.emphasis {
    padding-left: 30px;
    padding-right: 30px;
  }

  .comparison-review-holder {
    padding-right: 20px;
  }

  .comparison-image {
    width: 45%;
    min-width: 45%;
    margin-left: 20px;
  }

  .items-holder {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .item-title {
    font-size: 26px;
  }

  .comparison-animation {
    width: 45%;
    min-width: 45%;
    margin-left: 20px;
  }

  .body-title {
    font-size: 26px;
  }

  .cta-inner-text {
    font-size: 40px;
    line-height: 52px;
  }

  .grp-item {
    left: 6%;
  }

  .grp-item._2 {
    top: -5%;
  }

  .grp-item._3 {
    bottom: -4%;
  }

  .grp-inner-icon {
    width: 44px;
    height: 44px;
  }

  .section-4 {
    height: 148px;
  }

  .market-activity-image {
    max-height: 85%;
  }

  .section-2-pause {
    top: 61%;
  }

  .section-3-pause {
    top: 76%;
  }

  .inner-stack-image {
    width: 49%;
  }
}

@media screen and (min-width: 1440px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 34px;
    line-height: 48px;
  }

  h3 {
    font-size: 46px;
  }

  .column-image {
    min-height: 330px;
  }

  .page-header {
    padding-top: 150px;
    padding-bottom: 50px;
  }

  .faqs-holder {
    grid-column-gap: 60px;
  }

  .menu-inner {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .markets-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    font-size: 21px;
    line-height: 38px;
  }

  .market-card-text-holder {
    max-width: 280px;
  }

  .reviews-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .footer-grid {
    grid-column-gap: 90px;
    grid-row-gap: 90px;
  }

  .cta-text {
    line-height: 55px;
  }

  .cta-image {
    height: 220%;
    min-height: 500px;
  }

  .cta-column {
    max-width: 480px;
  }

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

  .hero-frame {
    right: -22px;
  }

  .stats {
    font-size: 16px;
    left: 260px;
  }

  .stats.btm {
    left: 190px;
  }

  .app-image-background {
    max-height: 87.5%;
  }

  .blog-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .image-in-stack.grid {
    grid-column-gap: 3%;
    grid-row-gap: 3%;
  }

  .team-tab-pane-inner {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .background-slash {
    right: 30%;
  }

  .comparison-grid {
    font-size: 18px;
  }

  .comparison-review-holder {
    padding-right: 20px;
  }

  .item-back-border {
    border-width: 2px;
  }

  .cta-inner-text {
    font-size: 42px;
    line-height: 55px;
  }

  .market-activity-image {
    max-height: 87.5%;
  }

  .section-2-pause {
    top: 64%;
  }

  .section-3-pause {
    top: 79%;
  }

  .pause-stopper {
    top: 1485px;
  }
}

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

  h1 {
    font-size: 66px;
  }

  h2 {
    font-size: 38px;
    line-height: 52px;
  }

  h3 {
    font-size: 48px;
  }

  p {
    line-height: 34px;
  }

  .columns.stable {
    height: 500px;
  }

  .body-container.cta {
    padding-right: 25%;
  }

  .body-container.wide {
    max-width: none;
  }

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

  .main-button.head {
    font-size: 18px;
  }

  .column-image {
    min-height: 340px;
  }

  .body-section.benefits {
    height: 620px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .text-restrict._2-cols {
    column-gap: 60px;
  }

  .blog-title {
    font-size: 48px;
  }

  .menu-inner {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .main-button-2 {
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 16px;
  }

  .menu-link {
    font-size: 18px;
  }

  .brand-logo {
    width: 240px;
    height: 55px;
  }

  .home-header {
    line-height: 40px;
  }

  .menu-link-2 {
    font-size: 18px;
  }

  .market-card-title {
    font-size: 28px;
  }

  .home-titles.body {
    font-size: 34px;
  }

  .home-titles.markets {
    font-size: 42px;
  }

  .footer-link {
    font-size: 18px;
  }

  .background-icon {
    width: 700px;
    max-width: 45%;
    left: -340px;
  }

  .cta-text {
    font-size: 34px;
  }

  .cta-image {
    width: 170%;
    height: 350%;
  }

  .app-background, .app-background.overlay {
    height: 570px;
  }

  .hero-frame {
    margin-left: 30px;
    left: 50%;
    right: auto;
  }

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

  .blog-card-title {
    font-size: 22px;
  }

  .background-slash {
    right: 35%;
  }

  .comparison-item {
    font-size: 21px;
  }

  .markets-page-title {
    font-size: 18px;
  }

  .item-title {
    font-size: 28px;
  }

  .body-title {
    font-size: 28px;
    line-height: 42px;
  }

  .slash-top {
    width: 226px;
  }

  .market-border-bottom {
    margin-right: 322px;
  }

  .section-2-pause {
    top: 75%;
  }

  .section-3-pause {
    top: 90%;
  }

  .pause-stopper {
    top: 1620px;
  }
}

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

  h3 {
    font-size: 38px;
  }

  .columns {
    flex-direction: column;
    display: flex;
  }

  .columns.reverse {
    flex-direction: column-reverse;
  }

  .columns.relative.company {
    grid-row-gap: 0px;
    padding-bottom: 94px;
  }

  .columns.markets {
    grid-row-gap: 30px;
    text-align: center;
  }

  .columns.stable {
    grid-column-gap: 60px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    height: 500px;
    display: grid;
  }

  .body-container.event {
    padding: 20px;
  }

  .main-button.head {
    position: absolute;
    top: 0;
    left: 0;
  }

  .button-holder.left.in-head, .button-holder.left.mid {
    justify-content: center;
    align-items: center;
  }

  .column-image {
    min-height: 280px;
    max-height: 320px;
  }

  .column-image.screen {
    width: 100%;
    min-width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .column-image.screen.left {
    margin-left: 0%;
  }

  .body-section {
    padding: 40px 30px;
  }

  .body-section.blog {
    padding-top: 40px;
  }

  .body-section.blue.action {
    min-height: auto;
  }

  .body-section.benefits {
    height: 580px;
  }

  .body-section.layers {
    padding-bottom: 50px;
  }

  .column.image-spacer {
    height: 270px;
  }

  .column.h1 {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    max-width: none;
    display: flex;
  }

  .column.relative.high {
    justify-content: flex-start;
    align-items: center;
  }

  .column.relative.app {
    display: none;
  }

  .column.image-stack {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    width: 100%;
    padding-left: 0;
    position: static;
  }

  .column.market-activity {
    display: none;
  }

  .text-restrict {
    padding-left: 0%;
    padding-right: 0%;
  }

  .text-restrict._2-cols {
    text-align: center;
    column-count: 1;
  }

  .background-overlay.home {
    padding-left: 5%;
    padding-right: 5%;
  }

  .page-header {
    padding: 120px 5% 40px;
  }

  .page-header.blog {
    padding: 140px 30px 20px;
  }

  .background-image.half {
    width: 100%;
    height: 340px;
    margin-left: 0;
    bottom: auto;
  }

  .background-image.half.right {
    margin-right: 0;
  }

  .blog-title {
    font-size: 38px;
  }

  .blog-columns {
    flex-direction: column;
    display: flex;
  }

  .blog-content {
    padding-right: 0;
  }

  .blog-side-bar {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    border-top: 1px solid #d6d6d6;
    border-left-style: none;
    border-left-width: 0;
    flex-flow: wrap;
    padding-top: 40px;
    padding-left: 0;
  }

  .blog-side-bar-items {
    width: 50%;
    padding-right: 60px;
  }

  .blog-side-bar-links {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
  }

  .benefits-grid {
    font-size: 16px;
  }

  .benefit-icon-holder {
    width: 80px;
    height: 80px;
  }

  .benefit-title {
    font-size: 18px;
  }

  .faqs-holder {
    grid-column-gap: 40px;
    padding-left: 0%;
    padding-right: 0%;
  }

  .faq-title {
    padding-left: 20px;
    padding-right: 80px;
    font-size: 16px;
  }

  .faq-answer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-line-top {
    border-radius: 2px;
    width: 42px;
    height: 4px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    top: 0;
  }

  .menu-line-low {
    border-radius: 2px;
    width: 42px;
    height: 4px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    bottom: 0;
  }

  .menu-line-mid {
    border-radius: 2px;
    width: 42px;
    height: 4px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-button {
    z-index: 999;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 28px;
    padding: 0;
    display: flex;
    position: absolute;
    right: 20px;
  }

  .menu-inner {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 72px;
    position: relative;
  }

  .main-button-2.alt.head {
    position: absolute;
    top: 0;
    left: 0;
  }

  .menu-link {
    font-size: 21px;
  }

  .menu-link.drop {
    color: var(--white);
    line-height: 30px;
  }

  .menu-drawer {
    background-color: #1d1d1d;
    height: 100%;
    padding: 100px 5% 40px;
    display: none;
    position: fixed;
    inset: 0%;
    overflow: auto;
  }

  .header-logo-link {
    z-index: 999;
  }

  .home-header {
    padding: 100px 5% 40px;
  }

  .home-header.markets {
    background-size: 100%;
  }

  .menu-link-holder {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
    min-height: auto;
  }

  .menu-link-2 {
    font-size: 21px;
  }

  .menu-link-2.drop {
    white-space: normal;
    border-bottom: 0 #fff0;
    min-height: auto;
    margin-left: 20px;
    padding: 0;
  }

  .menu-link-2.drop:hover {
    color: #df312b;
    background-color: #fff0;
  }

  .menu-icon {
    display: none;
  }

  .drop-holder {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    background-color: #fff0;
    border-top: 0 #fff0;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    min-width: auto;
    max-width: none;
    margin-top: 8px;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: static;
  }

  .markets-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .logo-holder.markets {
    width: 100vw;
    margin-left: -30px;
    margin-right: 0%;
  }

  .market-card {
    padding-left: 10px;
    padding-right: 10px;
  }

  .market-card.review {
    padding-left: 30px;
    padding-right: 30px;
  }

  .market-card.review.top {
    padding-bottom: 120px;
  }

  .market-card.benefits {
    min-height: auto;
  }

  .market-card-title {
    font-size: 21px;
  }

  .market-card-text-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .home-titles {
    justify-content: flex-start;
    align-items: center;
    width: auto;
    margin-left: 0;
  }

  .home-titles.body {
    text-align: center;
    margin-top: 0;
  }

  .home-titles.page {
    text-align: center;
    justify-content: center;
    align-items: center;
    min-width: 65%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-titles.page.blurb {
    text-align: left;
    justify-content: flex-start;
    align-items: center;
  }

  .home-titles.markets {
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 38px;
  }

  .home-titles.in-columns {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .home-title {
    font-size: 38px;
    line-height: 46px;
  }

  .reviews-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

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

  .review-details.large {
    width: 35%;
  }

  .footer {
    padding: 40px 30px;
  }

  .footer.blog {
    padding-top: 40px;
  }

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

  .footer-logo-link {
    z-index: 999;
  }

  .arrow-bullet-list.mid {
    justify-content: flex-start;
    align-items: center;
  }

  .arrow-bullet-item.comparison {
    line-height: 36px;
  }

  .app-image-cover {
    display: none;
  }

  .background-icon {
    display: none;
    left: -150px;
  }

  .cta-text {
    font-size: 34px;
  }

  .cta-image.smaller-inner {
    height: 200%;
    min-height: 300px;
  }

  .cta-column {
    margin-bottom: 40px;
    margin-left: 0%;
  }

  .cta-column.image-spacer {
    height: 270px;
  }

  .app-background, .logo-holder-inner.hide-at-568 {
    display: none;
  }

  .hero-frame {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 100%;
    height: 400px;
    display: flex;
    position: absolute;
    top: auto;
    bottom: 125px;
    left: 5%;
  }

  .hero-image {
    max-height: 100%;
  }

  .stats {
    background-color: var(--transparent);
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 0 25% 0 0;
    font-size: 16px;
    line-height: 22.5px;
    position: static;
    box-shadow: 0 0 #0000;
  }

  .stats.btm, .stats.left {
    width: 100%;
  }

  .hero-spacerf {
    width: 100%;
    height: 410px;
    display: block;
  }

  .stats-holder {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    width: 300px;
    min-width: 300px;
    color: var(--white);
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .stats-holder.landing {
    color: var(--black);
  }

  .blog-card {
    min-height: auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  .blog-grid {
    grid-column-gap: 20px;
    grid-row-gap: 30px;
  }

  .blog-card-title {
    font-size: 18px;
  }

  .image-in-stack {
    aspect-ratio: 2.39;
    height: auto;
    max-height: none;
  }

  .image-in-stack.grid {
    grid-column-gap: 3%;
    grid-row-gap: 3%;
  }

  .company-spacer {
    height: 30px;
  }

  .company-link-holder {
    width: 100%;
    height: 54px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }

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

  .mission-holder {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    padding: 40px;
    font-size: 18px;
  }

  .mission-text {
    width: 100%;
    padding-right: 0;
  }

  .mission-image-holder {
    width: 100%;
    padding-left: 0;
    position: relative;
    top: 0;
    bottom: 0;
    right: 0;
  }

  .mission-image {
    aspect-ratio: 16 / 9;
  }

  .mission-title {
    font-size: 30px;
  }

  .arrows-group {
    left: -23px;
  }

  .team-tabs {
    flex-flow: column-reverse;
  }

  .team-tab-menu {
    grid-column-gap: 5%;
    grid-row-gap: 20px;
    flex-flow: wrap;
    width: 100%;
  }

  .team-tab-link {
    width: 47%;
  }

  .team-tab-content {
    width: 100%;
    position: static;
  }

  .team-tab-link-image.large {
    width: 40%;
    max-width: none;
  }

  .team-tab-pane-inner {
    grid-column-gap: 5%;
    grid-row-gap: 5%;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .tabs-switch {
    display: none;
  }

  .background-slash {
    width: 60vh;
    top: auto;
    right: 50%;
  }

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

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

  .review-large-text {
    width: 65%;
    min-width: 65%;
  }

  .review-icon {
    width: 80px;
    height: 92.1406px;
    top: 20px;
    right: 20px;
  }

  .product-benefits-grid {
    grid-column-gap: 5%;
    grid-row-gap: 20px;
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .product-benefit {
    width: 30%;
  }

  .product-benefit-icon {
    width: 38px;
    height: 36px;
  }

  .benefit-app-image-holder {
    width: 100%;
    height: 140px;
    padding-left: 30px;
    padding-right: 30px;
    left: 0%;
    right: 0%;
  }

  .comparison-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .comparison-review-holder {
    font-size: 32px;
    line-height: 40px;
  }

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

  .video-holder-image {
    max-height: 100%;
  }

  .play-button {
    margin-left: -150px;
  }

  .video-cover-inner {
    width: 100%;
    max-width: 675.5px;
    height: auto;
    max-height: 380px;
  }

  .items-holder {
    padding-left: 5%;
    padding-right: 5%;
  }

  .item-card {
    padding-left: 30px;
  }

  .comparison-animation {
    height: 340px;
  }

  .video-inner {
    aspect-ratio: 16 / 9;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 400px;
    display: flex;
    position: relative;
  }

  .background-gradient {
    z-index: 2;
  }

  .contact-restrict {
    padding-left: 0%;
    padding-right: 0%;
  }

  .contact-form-block {
    padding-left: 5%;
    padding-right: 5%;
  }

  .background-hash {
    left: auto;
    right: 0;
  }

  .cta-inner-text {
    font-size: 34px;
  }

  .animation-frame-holder {
    min-height: 425px;
  }

  .col-images {
    object-position: 50% 0%;
  }

  .lake-image {
    object-fit: contain;
    height: 600px;
  }

  .lake-pointer {
    max-width: 45%;
    height: auto;
    min-height: 192px;
  }

  .big-circles {
    width: 70%;
    margin: 20px 15% 30px;
  }

  .grp-item {
    left: 6%;
  }

  .grp-item._2 {
    top: -5%;
  }

  .grp-item._3 {
    bottom: -4%;
  }

  .layer-animation {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    min-height: auto;
    max-height: none;
    margin-bottom: 0;
    padding-top: 20px;
    display: flex;
    position: static;
  }

  .section-1 {
    margin-top: 0;
  }

  .section-2 {
    opacity: 1;
    margin-top: 0;
  }

  .section-3 {
    opacity: 1;
  }

  .section-text {
    line-height: 1.4;
  }

  .section-text.wide {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-left: 0;
    display: flex;
    position: static;
  }

  .section-text.third {
    top: 0%;
  }

  .layers-inner {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column-reverse;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
    display: flex;
  }

  .layers-inner.stationery {
    margin-top: 30px;
  }

  .section-4 {
    height: 180px;
    margin-left: 0%;
    padding-left: 0%;
    display: none;
    position: absolute;
    left: 0;
  }

  .section-2-pause, .section-3-pause, .pause-stopper {
    display: none;
  }

  .mobile-final {
    margin-top: 80px;
    display: block;
  }

  .pause-starter {
    display: none;
  }

  .inner-stack-image {
    width: 49%;
  }
}

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

  h3 {
    font-size: 36px;
  }

  .columns.stable {
    height: auto;
    display: flex;
  }

  .body-container {
    padding-left: 0;
  }

  .body-container.blog, .body-container.cta {
    padding-right: 0%;
  }

  .column-image {
    max-height: 300px;
  }

  .body-section {
    padding: 40px 20px;
  }

  .body-section.benefits {
    border-top: 0px none var(--transparent);
    height: auto;
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .column.image-spacer {
    height: 210px;
  }

  .column.centered.right {
    width: 100%;
    padding-left: 0;
    position: static;
  }

  .background-overlay.home {
    padding-left: 30px;
    padding-right: 30px;
  }

  .page-header {
    padding: 110px 30px 20px;
  }

  .page-header.blog {
    padding-top: 120px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .background-image.half {
    height: 280px;
  }

  .blog-title {
    font-size: 36px;
  }

  .blog-side-bar-items {
    width: 100%;
  }

  .benefits-grid {
    grid-column-gap: 4%;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .benefit-item {
    width: 48%;
  }

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

  .menu-drawer {
    padding-left: 30px;
    padding-right: 30px;
  }

  .home-header {
    padding-bottom: 40px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .markets-grid {
    grid-column-gap: 7%;
    grid-row-gap: 62px;
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .markets-grid.smaller {
    padding-left: 0%;
    padding-right: 0%;
  }

  .logo-holder.markets {
    width: 100vw;
    margin-left: -20px;
    margin-right: -20px;
  }

  .market-card {
    width: 45%;
    height: 350px;
  }

  .market-card.review {
    height: 480px;
    padding: 85px 30px 95px;
  }

  .market-card.review.dark {
    width: 100%;
    height: auto;
    min-height: auto;
    padding-left: 30px;
  }

  .market-card.review.top {
    width: 100%;
    height: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .market-card.benefits {
    width: 100%;
    height: auto;
    min-height: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .market-card.benefits.dark {
    width: 100%;
    height: auto;
    min-height: auto;
    padding-left: 30px;
  }

  .market-card.benefits.top {
    width: 100%;
    height: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .home-titles.page {
    min-width: 100%;
    padding-top: 10px;
  }

  .home-titles.markets {
    font-size: 36px;
  }

  .home-title {
    font-size: 32px;
    line-height: 40px;
  }

  .quote-icon {
    left: 20px;
  }

  .quote-icon.alt {
    left: -10px;
  }

  .reviews-grid {
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

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

  .review-details.large {
    width: 100%;
  }

  .review-details.comparison {
    right: 0;
  }

  .logo {
    height: 32px;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer-inner-grid {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .background-icon {
    width: 240px;
    top: -110px;
    bottom: auto;
    left: -40px;
  }

  .cta-text.inner, .cta-text.layers {
    margin-top: 10px;
  }

  .cta-image {
    border-radius: 8px;
    width: 200%;
    height: 220px;
    margin-left: 0;
    top: auto;
    bottom: -40px;
    left: 0;
  }

  .cta-image.smaller-inner {
    width: 200%;
    min-width: auto;
    height: 220px;
    min-height: auto;
    margin-left: 0;
    top: auto;
    bottom: -40px;
    left: 0;
  }

  .cta-column {
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0%;
    padding-bottom: 230px;
  }

  .cta-column.image-spacer {
    height: 210px;
  }

  .logo-holder-inner.hide-at-991 {
    display: none;
  }

  .stats.landing {
    width: 47%;
    padding-right: 0%;
  }

  .stats-holder {
    width: 200px;
    min-width: 200px;
  }

  .stats-holder.landing {
    grid-column-gap: 5%;
    grid-row-gap: 20px;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    min-width: auto;
  }

  .blog-card.review {
    height: 480px;
  }

  .blog-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: wrap;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: flex-start;
  }

  .text-columns {
    column-count: 1;
  }

  .mission-holder {
    padding: 30px;
  }

  .mission-title {
    font-size: 28px;
  }

  .team-tabs {
    margin-top: 40px;
  }

  .team-tab-menu {
    flex-flow: column;
  }

  .team-tab-link {
    width: 100%;
  }

  .team-tab-content {
    padding-bottom: 30px;
  }

  .team-tab-link-image.large, .team-tab-text.large {
    width: 47%;
  }

  .team-tab-pane-inner {
    justify-content: flex-start;
    align-items: center;
  }

  .cta-image-background {
    display: none;
  }

  .review-large {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .review-div {
    width: 100%;
    height: 1px;
  }

  .review-large-text {
    width: 75%;
  }

  .review-icon {
    width: 20%;
    height: auto;
  }

  .product-benefits-grid.flex {
    grid-column-gap: 3%;
  }

  .product-benefit.flex {
    width: 31%;
  }

  .benefit-app-image-holder {
    padding-left: 20px;
    padding-right: 20px;
  }

  .comparison-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
    padding-left: 0%;
    padding-right: 0%;
  }

  .larger-review {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    margin-bottom: 0;
    padding-left: 0%;
    padding-right: 0%;
  }

  .comparison-review-holder {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding-right: 0;
  }

  .comparison-image {
    width: 80%;
    min-width: 30%;
  }

  .video-frame {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column-reverse;
  }

  .video-holder-image {
    aspect-ratio: 16 / 9;
  }

  .play-button {
    margin-left: auto;
  }

  .video-cover {
    justify-content: flex-start;
    align-items: center;
    padding-top: 60px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .video-cover-inner {
    width: 100%;
    max-width: 426.6px;
    height: auto;
    max-height: 240px;
  }

  .video-play-2 {
    width: 80px;
    height: 80px;
  }

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

  .item-card {
    min-height: auto;
  }

  .item-back-border {
    width: 150%;
    min-width: 2000px;
    display: none;
    left: -200px;
  }

  .item-back-border-cover {
    width: 25%;
    height: 120px;
  }

  .comparison-animation {
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: none;
  }

  .video-inner {
    aspect-ratio: 16 / 9;
    min-height: auto;
  }

  .background-gradient {
    background-image: linear-gradient(270deg, var(--white) 25%, #fff0);
    width: 100%;
  }

  .background-gradient.opposite {
    background-image: linear-gradient(90deg, var(--white) 25%, #fff0);
  }

  .contact-restrict {
    grid-column-gap: 8%;
    justify-content: center;
    align-items: flex-start;
    padding-left: 0%;
    padding-right: 0%;
    display: flex;
  }

  .contact-item {
    width: 45%;
  }

  .contact-item.full {
    width: 100%;
  }

  .contact-form-block {
    padding-left: 0%;
    padding-right: 0%;
  }

  .background-hash {
    object-fit: contain;
    object-position: 100% 0%;
    height: 75%;
  }

  .cta-inner-text.inner {
    margin-top: 10px;
  }

  .animation-frame-holder {
    display: none;
  }

  .lake-panel {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    display: flex;
  }

  .lake-image {
    height: 100%;
    position: absolute;
    inset: 0%;
  }

  .lake-pointer {
    width: 100%;
    max-width: none;
    min-height: auto;
    position: static;
    top: auto;
    left: auto;
  }

  .event-image {
    width: 100%;
  }

  .lake-lottie {
    display: none;
  }

  .events-form-block {
    padding-left: 0%;
    padding-right: 0%;
  }

  .big-circles {
    grid-column-gap: 4%;
    grid-row-gap: 20px;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin: 0 0%;
  }

  .outer-circle, .mid-circle, .inner-circle, .central-sphere {
    display: none;
  }

  .grp-item {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    justify-content: flex-start;
    align-items: center;
    width: 45%;
    max-width: 50%;
    height: auto;
    min-height: 50px;
    position: static;
  }

  .link-data {
    position: absolute;
    top: -32px;
    right: -20px;
  }

  .layer-animation {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding-top: 0;
  }

  .section-1 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .section-1.stationery {
    margin-top: 0;
  }

  .layer-1 {
    width: 100%;
    transform: rotate(0);
  }

  .section-2 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .section-2.stationery {
    margin-top: 0;
  }

  .section-3 {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .section-text {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-top: 42px;
    padding-left: 0;
    display: flex;
    position: relative;
  }

  .section-bullet {
    width: 50px;
    height: 50px;
    top: -25px;
    left: auto;
  }

  .section-border {
    display: none;
  }

  .layers-inner.stationery {
    margin-top: 0;
  }

  .mobile-final {
    margin-top: 20px;
  }
}

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

  h3 {
    font-size: 32px;
  }

  .columns.stable {
    display: flex;
  }

  .spacer {
    height: 20px;
  }

  .body-container.cta {
    padding-top: 0;
    padding-right: 0%;
  }

  .body-container.event {
    padding: 16px;
  }

  .body-container.wide {
    margin-bottom: 12px;
  }

  .main-button {
    text-align: center;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .button-holder {
    grid-row-gap: 16px;
    flex-wrap: wrap;
  }

  .column-image {
    min-height: 200px;
    max-height: 220px;
  }

  .title-holder {
    align-items: flex-start;
  }

  .body-section {
    text-align: left;
    padding: 40px 20px 50px;
  }

  .column.image-spacer {
    height: 170px;
  }

  .text-restrict._2-cols {
    text-align: left;
  }

  .background-overlay.home {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-header {
    text-align: left;
    min-height: auto;
    padding: 100px 20px 40px;
  }

  .background-image.half {
    height: 240px;
  }

  .blog-title {
    font-size: 34px;
  }

  .blog-side-bar-items {
    padding-right: 20px;
  }

  .benefits-grid {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .benefit-item {
    align-items: flex-start;
    width: 100%;
  }

  .faq-title {
    padding-left: 14px;
  }

  .faq-answer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .menu-inner {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .main-button-2 {
    text-align: center;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .menu-link {
    font-size: 18px;
  }

  .menu-drawer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-bar {
    height: 72px;
  }

  .header-logo-link {
    left: 20px;
  }

  .brand-logo {
    width: 140px;
    height: 32px;
  }

  .home-header {
    text-align: left;
    padding: 80px 20px 30px;
  }

  .menu-link-2 {
    font-size: 18px;
  }

  .markets-grid {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .logo-carousel.markets {
    width: 100vw;
    margin-left: -12px;
    margin-right: -12px;
  }

  .market-card {
    width: 100%;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .market-card.review {
    height: auto;
    min-height: auto;
    padding-top: 75px;
    padding-bottom: 120px;
  }

  .market-card.benefits {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .market-card-text-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .home-titles.body {
    text-align: left;
    white-space: normal;
    word-break: normal;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 100%;
  }

  .home-titles.blog {
    padding: 0 20px;
  }

  .home-titles.page {
    padding-top: 0;
    padding-bottom: 10px;
  }

  .home-titles.page.flex-box {
    text-align: left;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .home-titles.markets {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 34px;
  }

  .home-title {
    font-size: 20px;
    line-height: 32px;
  }

  .quote-icon {
    top: 20px;
    left: 20px;
  }

  .review-details.comparison {
    right: 0;
  }

  .footer {
    text-align: left;
    padding: 40px 20px 50px;
  }

  .footer-grid {
    font-size: 14px;
    line-height: 32px;
  }

  .footer-title {
    font-size: 18px;
  }

  .footer-logo {
    width: 140px;
    height: 32px;
  }

  .footer-logo-link {
    left: 20px;
  }

  .footer-link {
    font-size: 18px;
  }

  .footer-inner-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .si-arrow-tip {
    width: 8px;
    height: 8px;
  }

  .arrow-bullet-list.center {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .background-icon {
    width: 400px;
    max-width: 100%;
    top: -170px;
    left: -100px;
  }

  .cta-text {
    font-size: 34px;
    line-height: 50px;
  }

  .cta-text.inner {
    margin-top: 20px;
  }

  .cta-image, .cta-image.smaller-inner {
    bottom: -50px;
  }

  .cta-column.image-spacer {
    height: 170px;
  }

  .cta-column.alt {
    padding-bottom: 220px;
  }

  .hero-frame {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column-reverse;
    width: auto;
    height: auto;
    bottom: 180px;
    left: 20px;
    right: 20px;
  }

  .hero-image {
    width: 280px;
    max-width: 100%;
    max-height: 210px;
  }

  .stats {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    padding-right: 0;
  }

  .stats.landing {
    width: 100%;
  }

  .hero-spacerf {
    height: 490px;
  }

  .stats-holder {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    min-width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .stats-holder.landing {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .blog-card {
    width: 100%;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-grid {
    flex-flow: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .blog-card-title {
    font-size: 21px;
  }

  .image-in-stack.grid {
    grid-column-gap: 6%;
    grid-row-gap: 6%;
  }

  .company-link-holder {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    font-size: 16px;
    line-height: 22px;
  }

  .green-arrow {
    width: 42px;
    height: 42px;
  }

  .block {
    display: inline-flex;
  }

  .mission-holder {
    padding: 20px;
    font-size: 16px;
  }

  .mission-image {
    aspect-ratio: 1;
  }

  .mission-title {
    margin-bottom: 10px;
  }

  .arrows-group {
    width: 110px;
    height: 110px;
    left: -16px;
  }

  .team-tab-link {
    justify-content: flex-start;
    align-items: flex-start;
    padding: 8px;
    line-height: 26px;
  }

  .team-tab-link-image.large, .team-tab-text.large {
    width: 100%;
  }

  .team-tab-pane-inner {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .cta-image-background {
    display: none;
  }

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

  .review-large-text {
    width: 100%;
    min-width: 100%;
    padding-top: 50px;
  }

  .review-icon {
    display: none;
  }

  .product-benefits-grid {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 180px;
  }

  .product-benefit {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .product-benefit.flex {
    width: 100%;
  }

  .product-benefit-icon {
    width: 52px;
    height: 50px;
  }

  .app-benefits {
    width: 300%;
    min-width: 300%;
    max-width: 300%;
  }

  .benefit-app-image-holder {
    justify-content: flex-start;
    align-items: flex-start;
    width: 95%;
    height: 200px;
    margin-left: 0;
    display: flex;
    left: 0%;
    right: 0%;
  }

  .comparison-item {
    padding-bottom: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .larger-review {
    margin-bottom: 20px;
  }

  .comparison-review-holder {
    width: 100%;
    font-size: 30px;
    line-height: 45px;
  }

  .comparison-image {
    width: auto;
    height: 76px;
    bottom: -20px;
  }

  .video-cover {
    padding: 70px 20px 20px;
  }

  .video-close {
    right: 20px;
  }

  .custom-player-controls {
    padding-left: 0;
    padding-right: 0;
  }

  .video-volume-button, .video-timer-button {
    font-size: 12px;
  }

  .video-mute {
    width: 18px;
    height: 18px;
  }

  .seek-bar {
    height: 10px;
  }

  .video-play {
    width: 18px;
    height: 18px;
  }

  .video-volume {
    width: 10px;
  }

  .video-muted, .video-paused {
    width: 18px;
    height: 18px;
  }

  .video-play-2 {
    width: 44px;
    height: 44px;
    padding: 8px 6px 8px 10px;
  }

  .items-holder {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .item-card {
    padding: 0;
  }

  .item-card.with-icon {
    padding-top: 62px;
  }

  .item-title {
    margin-left: 0;
  }

  .comparison-animation {
    width: 100%;
    max-width: 240px;
    display: none;
    bottom: -20px;
  }

  .body-title {
    margin-left: 0;
  }

  .contact-restrict {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .contact-item {
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .contact-form-inner {
    padding: 20px 16px;
  }

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

  .submit-details {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .gdpr-text {
    max-width: 100%;
  }

  .background-hash {
    display: none;
  }

  .cta-inner-text {
    font-size: 34px;
    line-height: 50px;
  }

  .cta-inner-text.inner {
    margin-top: 20px;
  }

  .event-details {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .event-details-item {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .event-image {
    height: 180px;
  }

  .counter {
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
  }

  .counter-inner {
    width: 50px;
  }

  .big {
    font-size: 34px;
  }

  .event-form-inner {
    padding: 20px 16px;
  }

  .big-circles {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .outer-circle, .mid-circle, .inner-circle, .central-sphere {
    display: none;
  }

  .grp-item {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    width: 100%;
    max-width: 100%;
    font-size: 21px;
    position: static;
  }

  .grp-item._7, .grp-item._8, .grp-item._9 {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
  }

  .grp-inner-icon {
    width: 56px;
    height: 56px;
  }

  .link-data {
    width: 80px;
    height: 80px;
    padding: 10px;
    left: 0;
    right: auto;
  }

  .section-text {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-bullet {
    left: 20px;
  }

  .layers-inner {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .inner-stack-image {
    width: 48%;
  }
}

#w-node-fe76d562-f74c-dc03-9e10-d808cfd70038-8ca595e0, #w-node-c11af259-11a4-7fb8-2638-2b52811ce4bd-8ca595e0 {
  align-self: stretch;
}

#w-node-a81adf16-14ca-2330-2468-9351d8fbf063-8ca595e0, #w-node-a81adf16-14ca-2330-2468-9351d8fbf074-8ca595e0 {
  place-self: start stretch;
}

#w-node-d8c8a0ec-0b59-53c8-3f29-560b94c68077-8ca595e1, #w-node-d8c8a0ec-0b59-53c8-3f29-560b94c68079-8ca595e1, #w-node-d8c8a0ec-0b59-53c8-3f29-560b94c68087-8ca595e1, #w-node-d8c8a0ec-0b59-53c8-3f29-560b94c68094-8ca595e1, #w-node-_4828f7d7-7397-29ae-c9dc-ecc86eb35a8c-8ca595e2, #w-node-_4828f7d7-7397-29ae-c9dc-ecc86eb35a93-8ca595e2, #w-node-_4828f7d7-7397-29ae-c9dc-ecc86eb35a9a-8ca595e2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_70961c28-513d-aa82-c2bc-d18637adbac8-8ca595e2, #w-node-_70961c28-513d-aa82-c2bc-d18637adbad9-8ca595e2 {
  place-self: start stretch;
}

#w-node-_1de40879-5880-1c95-59c1-9ac333221230-8ca595e2, #w-node-_2f1f3cbc-2b08-df90-d49b-3bacab8f7122-8ca595e2, #w-node-_677084bf-c51d-d6f7-3fe7-85d6246b1244-8ca595e2, #w-node-_677084bf-c51d-d6f7-3fe7-85d6246b1243-8ca595e2, #w-node-c2978013-604f-0156-dd8f-0db7c24ddddd-8ca595e3, #w-node-c2978013-604f-0156-dd8f-0db7c24ddde6-8ca595e3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

