:root {
  --base-bg: #f9fafb;
  --black: #101318;
  --bg-light-med: #ecf0f9;
  --blue-400: #558bf6;
  --grey-500: #757c8a;
  --grey-300: #a9afbc;
  --blue-100: #e7eefe;
  --arena: #fdb912;
  --arena-light: #fedc88;
  --arena-dark: #d99202;
  --arena-lightest: #fff1d0;
  --grey-800: #272c35;
  --blue-200: #b6cdfb;
  --blue-600: #0b50da;
  --blue: #256af4;
  --grey-100: #e1e4ea;
  --blue-700: #093eaa;
  --bg-mid: #d3dae9;
  --grey-400: #8f96a3;
  --green: #8da072;
  --green-lightest: #e1e5da;
  --green-light: #ccd9ba;
  --green-dark: #70805b;
  --purple: #896bb6;
  --purple-dark: #633d9c;
  --purple-lighter: #bab2e1;
  --purple-lightest: #e3e0f0;
  --grey-700: #333;
  --arena-box-shadow: #ffe4a1;
}

body {
  color: #333;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Figtree, sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 100%;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Figtree, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Figtree, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Figtree, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

h5 {
  letter-spacing: .3px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Figtree, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

a {
  text-decoration: underline;
}

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

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

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

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

.text-box {
  max-width: 1000px;
}

.text-box._600px {
  max-width: 600px;
  min-height: 64px;
}

.text-box._300px {
  max-width: 300px;
}

.text-box._800px {
  max-width: 800px;
  min-height: 64px;
}

.text-box._700px {
  max-width: 700px;
  min-height: 64px;
  position: static;
}

.text-box._700px.top-padding {
  position: static;
}

.text-box._500px {
  max-width: 500px;
  min-height: 64px;
}

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

.text-box._800px {
  max-width: 800px;
  min-height: 64px;
}

.horizontal-line {
  opacity: .2;
  background-color: #1d1916;
  width: 100%;
  height: 1px;
  margin-bottom: 10px;
  display: none;
}

.horizontal-line.design-system {
  position: relative;
  bottom: -80px;
}

.button {
  color: #fff;
  text-align: center;
  text-transform: capitalize;
  background-color: #256af4;
  border-radius: 10px;
  flex: none;
  margin-bottom: 8px;
  padding: 12px 32px;
  font-family: Figtree, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  text-decoration: none;
  transition: border-color .2s, color .2s, box-shadow .2s, background-color .2s;
  box-shadow: 0 2px 8px #00000008;
}

.button:hover {
  background-color: #0b50da;
  box-shadow: 0 7px 20px -10px #0003;
}

.button:active {
  background-color: #093eaa;
}

.button.light {
  color: var(--base-bg);
  background-color: #e7eefe00;
  border: 1px solid #e7eefe;
}

.button.light:hover {
  border: 1px solid var(--base-bg);
  background-color: var(--base-bg);
  color: var(--black);
}

.button.light:active {
  background-color: var(--base-bg);
  color: var(--black);
}

.button.grey {
  box-shadow: none;
  color: #757c8a;
  background-color: #e1e4ea;
}

.button.grey:hover {
  color: #272c35;
  background-color: #a9afbc;
}

.button.grey:active {
  color: #101318;
  background-color: #8f96a3;
}

.button.outline {
  color: #256af4;
  background-color: #0000;
  box-shadow: inset 0 0 0 2px #558bf6;
}

.button.outline:hover {
  color: #fff;
  background-color: #256af4;
  box-shadow: inset 0 0 0 2px #256af4;
}

.button.outline:active {
  background-color: #0b50da;
  box-shadow: inset 0 0 0 2px #0b50da;
}

.button.outline.reverse {
  color: #f9fafb;
  box-shadow: inset 0 0 0 2px #f9fafb;
}

.button.outline.reverse:hover {
  color: #101318;
  background-color: #f9fafb;
}

.button.minimal {
  box-shadow: none;
  color: #256af4;
  background-color: #0000;
  border: 1px #000;
  border-radius: 0;
  margin-left: 8px;
  margin-right: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
}

.button.minimal:hover {
  color: #0b50da;
}

.button.minimal:active {
  color: #093eaa;
}

.button.minimal.left {
  margin-left: 0;
  padding-left: 0;
}

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

.paragraph {
  text-indent: 0;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 140%;
}

.paragraph.large {
  font-size: 18px;
  line-height: 140%;
}

.paragraph.white {
  color: var(--base-bg);
  font-weight: 400;
}

.paragraph.reverse {
  color: var(--base-bg);
}

.paragraph.small {
  opacity: .75;
  color: var(--grey-800);
  font-size: 14px;
}

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

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

.paragraph.centered.white {
  color: var(--base-bg);
}

.paragraph.grey {
  color: var(--grey-500);
}

.heading {
  color: var(--black);
  font-weight: 600;
}

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

.heading.label {
  text-transform: none;
  width: 100%;
  font-family: Figtree, sans-serif;
  font-size: 16px;
}

.heading.h1 {
  margin-bottom: 18px;
  font-family: Figtree, sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 100%;
}

.heading.h1.centered {
  color: var(--black);
  text-align: center;
}

.heading.h3 {
  color: var(--black);
  font-family: Figtree, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 110%;
}

.heading.h3.heavy {
  font-weight: 700;
}

.heading.h3 {
  font-family: Figtree, sans-serif;
  font-size: 32px;
  line-height: 110%;
}

.heading.h2 {
  color: #101318;
  text-align: left;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Figtree, sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 100%;
}

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

.heading.h2.centered.reverse {
  color: #f9fafb;
}

.heading.h5.centered {
  text-align: center;
}

.heading.h5.centered.grey-500 {
  color: var(--grey-500);
}

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

.heading.h5.left.blue {
  color: var(--blue);
}

.heading.h4 {
  margin-bottom: 12px;
  font-family: Figtree, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
}

.heading.text-size-medium {
  color: #101318;
  font-size: 18px;
}

.heading.text-size-medium.nav-link {
  font-size: 16px;
}

.heading.h5 {
  color: #757c8a;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: Figtree, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
}

.heading.h5.reverse {
  color: #f9fafb;
  margin-bottom: 8px;
}

.container-large {
  max-width: 1200px;
}

.padding-global {
  color: var(--grey-700);
  max-width: none;
  padding: 80px;
}

.padding-global.is-visible {
  background-color: var(--grey-100);
  border-radius: 10px;
}

.padding-global.request-a-demo {
  padding-top: 40px;
}

.navbar-dropdown-link-list {
  grid-column-gap: 0px;
  grid-row-gap: 1rem;
  box-shadow: 0 2px 5px 0 var(--grey-400);
  background-color: #f9fafb;
  border-radius: 10px;
  grid-template-rows: max-content;
  grid-template-columns: 2.5fr;
  grid-auto-rows: max-content;
  grid-auto-columns: 1fr;
  width: 290px;
  margin-top: 8px;
  padding: 16px;
  display: grid;
}

.navbar-dropdown-link-list.about {
  width: 150px;
}

.navbar-icon-wrapper {
  flex: none;
}

.text-xs {
  color: #757c8a;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.nav-menu-items {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  padding-left: 0;
  display: flex;
}

.dropdown-list {
  background-color: #0000;
}

.logo {
  opacity: 1;
  vertical-align: baseline;
  width: auto;
  max-width: 200px;
  margin-top: 0;
  display: inline-block;
  overflow: clip;
}

.nav-logo-wrap {
  display: block;
}

.navbar-dropdown-link {
  grid-column-gap: .75rem;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  padding-top: .25rem;
  padding-bottom: .25rem;
  text-decoration: none;
  display: flex;
}

.dropdown-toggle {
  padding: 8px 42px 8px 12px;
}

.dropdown-toggle:hover, .dropdown-toggle.w--open, .dropdown-toggle.w--open:hover {
  color: #256af4;
}

.brand-logo {
  display: block;
}

.navbar-text-wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.small-image {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 6px;
}

.menu-item-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  display: flex;
}

.navbar-area {
  background-color: #0000;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: none;
  padding: 32px 80px 16px;
  display: flex;
}

.nav-link {
  color: var(--black);
  letter-spacing: .5px;
  font-family: Figtree, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.nav-link:hover {
  color: #256af4;
}

.brand.w--current {
  cursor: pointer;
}

.nav-bar-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1220px;
  display: flex;
}

.dropdown-title {
  letter-spacing: .5px;
  font-family: Figtree, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.spacer-16px {
  height: 16px;
}

.footer-right-menu {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  display: flex;
}

.footer-bottom-menu {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: wrap;
  justify-content: space-between;
  max-width: 1290px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-menu {
  grid-column-gap: 16px;
  justify-content: flex-end;
  align-items: center;
  width: 70%;
  text-decoration: none;
  display: flex;
}

.footer-bottom-wrapper {
  padding-top: 20px;
}

.menu-item {
  grid-column-gap: 8px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 8px;
  text-decoration: none;
  display: flex;
}

.footer-top-wrapper {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  justify-content: space-between;
  max-width: 1290px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;
  display: flex;
}

.footer-section {
  padding: 64px 80px 32px;
}

.footer-container {
  width: 100%;
  max-width: 1280px;
  position: relative;
}

.footer-logo-wrapper {
  padding-bottom: 0;
}

.headings {
  font-weight: 600;
}

.headings.h2 {
  color: #101318;
  text-align: left;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Figtree, sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 100%;
}

.headings.h2.centered {
  text-align: center;
  font-size: 54px;
}

.headings.h2.centered.reverse {
  color: #f9fafb;
  font-family: Figtree, sans-serif;
  font-weight: 700;
}

.headings.label {
  text-transform: none;
  width: 100%;
  font-family: Figtree, sans-serif;
  font-size: 16px;
}

.headings.h3 {
  color: var(--black);
  font-family: Figtree, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 110%;
}

.headings.h4 {
  color: var(--black);
  margin-bottom: 12px;
  font-family: Figtree, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
}

.headings.h4.product {
  color: var(--grey-800);
  margin-bottom: 0;
}

.headings.h5 {
  color: #757c8a;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: Figtree, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
}

.headings.h5.blue {
  color: #256af4;
  text-align: left;
  text-align: left;
  margin-bottom: 8px;
}

.headings.h1 {
  margin-bottom: 18px;
  font-family: Figtree, sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 100%;
}

.headings.h1.centered {
  text-align: center;
}

.headings.h1.centered.reversed {
  color: #f9fafb;
}

.about-hero-section {
  background-image: linear-gradient(350deg, #062d79, #052768db 0%, #0000), url("https://cdn.prod.website-files.com/68bfb887caa50cf515c47dd6/68d9cb45224ae03a0c259d4d_nicholas-jeffries-R0_f_OTEPKw-unsplash.avif");
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: auto;
}

.features-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-around;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.about-hero-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 100%;
  margin-top: 0;
  padding-top: 64px;
  padding-bottom: 8px;
  display: flex;
}

.about-insights-container {
  color: #f9fafb;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 32px;
  padding-bottom: 64px;
}

.features-block {
  text-align: center;
  border-left: 3px solid #f9fafb;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 8px;
  display: flex;
}

.image {
  border-radius: 10px;
  width: 100%;
  max-width: 100%;
}

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

.hero-wrapper.careers {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-right: 100px;
}

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.timeline-right-content {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-left: 16px;
}

.timeline-step {
  grid-column-gap: 2.5rem;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
}

.about-scroll-grid {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-top: 32px;
  display: grid;
}

.timeline-wrapper {
  position: relative;
}

.progress-bar-wrapper {
  background-color: #eaecf0;
  width: 2px;
  height: 75%;
  position: absolute;
  top: 10%;
  left: 1.75rem;
  right: auto;
}

.vertical-padding {
  padding-top: 64px;
  padding-bottom: 64px;
}

.vertical-padding.bottom {
  padding-top: 0;
}

.vertical-padding.top, .vertical-padding.titan-page, .vertical-padding.top {
  padding-bottom: 0;
}

.progress-bar {
  background-color: #256af4;
  width: 2px;
  height: 100%;
}

.timeline-left-spacer {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  position: relative;
}

.content-left {
  padding-bottom: 5rem;
  position: sticky;
  top: 10rem;
}

.team-card {
  text-align: center;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  line-height: 22px;
  display: flex;
}

.team-member-position {
  color: #256af4;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: Figtree, sans-serif;
  font-weight: 600;
}

.centered-subheading {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.team-grid {
  grid-column-gap: 100px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  margin-top: 50px;
  display: grid;
}

.team-member-image {
  object-fit: cover;
  border-radius: 50%;
  width: 270px;
  height: 270px;
  margin-bottom: 24px;
}

.team-circles {
  border-bottom: 1px #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.team-member-name {
  margin-bottom: 6px;
  font-family: Figtree, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.careers-section {
  background-color: var(--bg-light-med);
}

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

.spacer-64px {
  height: 64px;
}

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

.left-stack {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  padding-top: 16px;
  display: flex;
}

.image-split {
  width: 45%;
}

.tick-list-content {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 0;
  display: grid;
}

.tick-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
}

.list-text {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

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

.top-padding {
  padding-top: 64px;
}

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

.careers-traits-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

@media screen and (min-width: 1280px) {
  .sg-nav {
    width: 280px;
  }

  .text-box._800px {
    max-width: 800px;
  }

  .sg-content {
    margin-left: 280px;
  }

  .sg-nav-container {
    width: 280px;
  }

  .logo {
    max-width: 200px;
  }

  ._80-horizontal-padding {
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-top-wrapper {
    grid-column-gap: 150px;
    grid-row-gap: 150px;
    justify-content: space-between;
  }

  .form-radio-icon, .form-radio-icon.tick-icon, .form-radio-icon.tick-icon {
    background-color: #fff;
  }

  .product-hero-call-outs.hide-mobile-landscape._2 {
    top: 60%;
  }

  .product-image-features.shadow-xlarge {
    width: auto;
  }

  .contact-us-header-wrap {
    max-width: 900px;
  }
}

@media screen and (min-width: 1440px) {
  .label-s {
    color: #7034e4;
  }

  .hero-image {
    z-index: 0;
    box-shadow: none;
    position: relative;
  }

  .call-out {
    padding: 12px;
  }

  .call-out.product {
    padding: 20px;
  }

  .icon-wrapper {
    width: 30px;
    height: 30px;
    overflow: visible;
  }

  .vector {
    box-sizing: border-box;
    aspect-ratio: auto;
    object-fit: fill;
    max-width: none;
    overflow: visible;
  }

  .cta-section {
    color: #6d6d6d;
  }

  .about-hero-wrapper {
    padding-left: 80px;
    padding-right: 80px;
  }

  .team-member-image {
    width: 270px;
    height: 270px;
    max-height: none;
  }

  .title-section, .title-section.front, .title-section.front {
    max-width: none;
  }

  .email-link-wrapper {
    padding-top: 32px;
  }

  .contact-us-container {
    flex-flow: column;
    display: flex;
  }

  .home-hero-box-wrapper {
    background-image: none;
  }

  .hero-blur {
    filter: blur(100px);
    background-image: linear-gradient(#0000, #ccd9ba);
    height: 100%;
  }

  .section-home-hero {
    padding: 0;
  }

  .product-hero-call-outs.hide-mobile-landscape {
    z-index: 1;
  }

  .product-hero-call-outs.hide-mobile-landscape._2 {
    top: 57%;
  }

  .double-section.right {
    margin-bottom: 100px;
  }

  .product-image-features.shadow-xlarge {
    width: auto;
  }
}

@media screen and (min-width: 1920px) {
  .container-xl {
    max-width: none;
  }

  .cta-container {
    max-width: 1880px;
  }

  .about-hero-wrapper {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: none;
  }

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

  .cta-background-2.contact-us {
    background-position: 100% 100%, 0 0;
    height: auto;
  }

  .title-section.front {
    justify-content: center;
    align-items: center;
    height: 50vh;
  }

  .contact-us-wrapper {
    height: 100%;
    min-height: auto;
  }

  .contact-hero-section {
    height: auto;
    min-height: auto;
  }

  .contact-us-container {
    height: auto;
    min-height: 70vh;
  }

  .product-hero-call-outs.hide-mobile-landscape {
    left: -3%;
  }

  .product-hero-call-outs.hide-mobile-landscape._2 {
    top: 54%;
    right: -11%;
  }

  .product-hero-call-outs.hide-mobile-landscape._3 {
    bottom: 16%;
    right: -6%;
  }

  .double-section.right {
    margin-bottom: 100px;
  }

  .product-image-features.shadow-xlarge {
    width: auto;
  }

  .contact-us-header-wrap {
    max-width: 1000px;
  }
}

@media screen and (max-width: 991px) {
  .sg-nav {
    z-index: 10;
    background-color: #ecf0f9;
    border-right-style: none;
    width: 100%;
    height: 80px;
    padding-top: 20px;
    position: sticky;
    bottom: auto;
    left: 0;
    right: 0;
    overflow: visible;
  }

  .text-box._500px.tablet-down {
    width: auto;
    max-width: none;
  }

  .text-box._700px {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .text-box._700px.top-padding.bottom-padding {
    padding-bottom: 64px;
    padding-left: 20px;
    padding-right: 20px;
  }

  ._12-columns {
    flex-flow: wrap;
  }

  .sg-content {
    border-left-style: none;
    width: 100%;
    margin-left: 0;
    position: static;
  }

  .sg-block {
    margin-bottom: 40px;
  }

  .button {
    font-family: Figtree, sans-serif;
    position: relative;
  }

  .button.light {
    font-size: 16px;
    line-height: 1.4;
  }

  .sg-menu-brand {
    margin-top: 4px;
    margin-bottom: 16px;
  }

  .column {
    width: 50%;
  }

  .sg-menu {
    z-index: 500;
    background-color: #ecf0f9;
    border-bottom: 1px solid #e1e4ea;
    padding-top: 20px;
    padding-bottom: 20px;
    display: block;
    position: absolute;
    inset: 80px auto auto 0%;
    box-shadow: 0 3px 5px #0000000d;
  }

  .paragraph.tablet-down {
    text-align: center;
  }

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

  .heading.label {
    font-size: 13px;
  }

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

  .heading.h5.left.blue {
    font-size: 14px;
  }

  .heading.h1.centered {
    font-size: 54px;
  }

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

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

  .heading.h3.heavy {
    font-size: 28px;
  }

  .heading.text-size-medium.nav-link {
    font-size: 16px;
  }

  .heading.h5.reverse {
    font-size: 14px;
  }

  .sg-nav-container {
    width: auto;
    height: auto;
  }

  .container-large {
    width: 100%;
  }

  .padding-global {
    padding: 64px 60px;
  }

  .navbar-dropdown-link-list {
    box-shadow: none;
    background-color: #0000;
    width: 460px;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .menu-icon {
    color: #101318;
    padding-left: 0;
    font-size: 40px;
  }

  .menu-icon:hover {
    color: #256af4;
  }

  .menu-icon:active {
    color: #093eaa;
  }

  .nenu-icon-wrap {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    border-radius: 8px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
  }

  .dropdown {
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: block;
  }

  .nav-menu-items {
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    justify-content: flex-start;
    align-items: center;
    width: 97%;
    margin-top: 16px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 20px 24px;
    box-shadow: 0 2px 5px #d3dae9;
  }

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

  .logo {
    max-width: 180px;
  }

  .menu-button-2 {
    text-align: center;
    background-color: #0000;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    padding: 0;
    display: flex;
  }

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

  .menu-item-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    justify-content: center;
    align-items: flex-start;
    padding-left: 0;
  }

  .navbar-area {
    padding-bottom: 8px;
    padding-left: 64px;
    padding-right: 64px;
  }

  .nav-bar-wrapper {
    justify-content: space-between;
    min-width: 600px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .logos-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .hero-image-wrapper {
    width: 100%;
  }

  .hero-image {
    border-radius: 20px;
    width: 120%;
    max-width: none;
    height: auto;
  }

  .hero-image.titan {
    border-radius: 20px;
  }

  .call-out.product {
    width: 70%;
  }

  .icon-wrapper {
    width: 25px;
    height: 25px;
  }

  .icon-wrapper.product {
    justify-content: flex-start;
    align-items: center;
    overflow: visible;
  }

  .call-outs-wrapper {
    place-content: space-around center;
    align-items: center;
    width: auto;
  }

  .benefits-block-tablet {
    width: auto;
  }

  .vector {
    width: 20px;
    max-width: 100%;
    height: auto;
  }

  ._80-horizontal-padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  .padding-marquee {
    padding-left: 0;
    padding-right: 0;
  }

  .cta-padding {
    padding-top: 62px;
    padding-bottom: 70px;
  }

  .cta-section {
    padding-left: 0;
    padding-right: 0;
  }

  .cta-background {
    border-radius: 0;
  }

  .footer-right-menu {
    justify-content: space-between;
    width: 100%;
  }

  .footer-bottom-menu {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .footer-menu {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .footer-top-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
  }

  .footer-section {
    padding-top: 64px;
    padding-left: 64px;
    padding-right: 64px;
  }

  .rose-icon {
    max-width: 24px;
    max-height: 24px;
  }

  .steps-card {
    border-radius: 1rem;
    flex-flow: column;
    grid-template-columns: 1fr 1.2fr;
    height: auto;
  }

  .right-content {
    width: 100%;
    height: 50vh;
  }

  .steps-wrapper {
    margin-top: 8rem;
  }

  .homepage-product-image {
    width: auto;
    height: auto;
  }

  .steps-item {
    position: relative;
    top: auto;
  }

  .steps-item._1, .steps-item._2, .steps-item._3, .steps-item._1, .steps-item._2, .steps-item._3 {
    position: sticky;
    top: 8vh;
  }

  .left-content {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    justify-content: space-around;
    width: 100%;
    padding: 5rem 1rem 5rem 2rem;
  }

  .steps-content {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    width: 100%;
  }

  .homepage-product-container {
    justify-content: center;
    align-items: center;
    height: 18rem;
    display: flex;
  }

  .steps-description {
    max-width: none;
  }

  .steps-image {
    padding-left: 0;
  }

  .header {
    max-width: 70vw;
  }

  .headings.h4.product {
    font-size: 20px;
  }

  .headings.h5 {
    font-size: 14px;
  }

  .headings.h1.centered.reversed {
    font-size: 54px;
  }

  .headings.h2 {
    text-align: left;
    font-size: 40px;
  }

  .headings.label {
    font-size: 13px;
  }

  .headings.h3 {
    font-size: 28px;
  }

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

  .features-wrapper {
    justify-content: space-between;
  }

  .about-hero-wrapper {
    padding-top: 32px;
  }

  .about-insights-container {
    max-width: 728px;
  }

  .image {
    display: none;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .hero-split.tablet-down {
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .timeline-right-content {
    padding-left: 70px;
  }

  .timeline-step {
    grid-column-gap: 0px;
    grid-template-columns: max-content 1fr;
    width: auto;
  }

  .about-scroll-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 4rem;
    grid-template-columns: .5fr 1fr;
  }

  .vertical-padding {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .content-right-wrapper {
    width: auto;
  }

  .team-grid {
    grid-column-gap: 0px;
  }

  .team-member-image {
    width: 190px;
    height: 190px;
  }

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

  .cta-background-2 {
    border-radius: 0;
  }

  .title-section {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .title-section.front {
    padding-left: 60px;
    padding-right: 60px;
  }

  .contact-us-wrapper {
    min-height: auto;
  }

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

  .hero-home.product {
    font-size: 54px;
  }

  .hero-end-wrapper {
    justify-content: center;
    align-self: auto;
    align-items: flex-start;
    min-width: auto;
    height: auto;
    min-height: auto;
    margin-bottom: -8px;
    display: flex;
  }

  .hero-blur {
    background-image: linear-gradient(#0000, #b6cdfb 100%, #0000);
  }

  .section-home-hero {
    overflow: hidden;
  }

  .product-hero-call-outs {
    left: -2.5%;
  }

  .product-hero-call-outs.hide-mobile-landscape._2 {
    right: -24%;
  }

  .product-hero-call-outs.hide-mobile-landscape._3 {
    bottom: 13%;
    right: -22%;
  }

  .flex-block {
    place-content: space-around center;
    align-items: center;
    width: auto;
  }

  .double-section {
    grid-column-gap: 3rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    margin-bottom: 16px;
  }

  .double-section.right {
    margin-bottom: 16px;
  }

  .double-section.last {
    margin-bottom: 0;
  }

  .product-image-features {
    width: 35rem;
    min-width: 35rem;
    left: 2rem;
  }

  .product-image-features.shadow-xlarge {
    object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: auto;
  }

  .image-wrapper-product {
    display: none;
  }

  .image-wrapper-product.tablet-down {
    width: 100%;
    height: 60vw;
    min-height: auto;
    display: flex;
  }

  .product-scroll-block {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .left-column {
    width: 100%;
    max-width: none;
  }

  .right-column {
    width: 100%;
    max-width: none;
    display: block;
  }

  .sticky-wrapper {
    position: static;
  }

  .product-block-item._1 {
    margin-bottom: 100px;
  }

  .columns-wrapper, .columns-wrap, .product-row {
    flex-flow: column;
  }

  .text-column {
    width: 100%;
  }

  .image-column {
    width: 100%;
    height: 45vh;
  }

  .tablet-down_products-scroll {
    display: inline-block;
  }

  .products-scroll {
    display: none;
  }

  .green-product-background {
    background-color: var(--green-lightest);
    border-radius: 10px;
    width: 100%;
    height: 100%;
  }

  .yellow-product-background {
    background-color: var(--arena-lightest);
    border-radius: 10px;
    width: 100%;
    height: 100%;
  }

  .purple-product-background {
    background-color: var(--purple-lightest);
    border-radius: 10px;
    width: 100%;
    height: 100%;
  }

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

  .testimonial-quote-marks {
    width: 80%;
  }
}

@media screen and (max-width: 767px) {
  .field-block {
    min-height: auto;
  }

  .tabs-menu {
    flex-wrap: wrap;
  }

  .spacer {
    height: 32px;
  }

  .text-box._700px {
    width: auto;
    padding-left: 32px;
    padding-right: 32px;
  }

  .text-box._700px.top-padding.bottom-padding {
    padding-left: 0;
    padding-right: 0;
  }

  ._12-columns {
    flex-wrap: wrap;
  }

  .tab-link {
    border-bottom-width: 0;
    border-radius: 10px;
    width: auto;
  }

  .tab-link.w--current {
    background-color: #d4e9ff;
  }

  .sg-content {
    margin-left: 0;
  }

  .horizontal-line {
    display: inline-flex;
  }

  .button {
    text-align: center;
  }

  .button.minimal {
    margin-left: 0;
    margin-right: 0;
  }

  .button.mobile-nav {
    justify-content: center;
    align-items: flex-start;
    display: inline-flex;
    position: static;
  }

  .sg-menu-brand.w--current {
    margin-top: 14px;
  }

  .sg-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .ds-colour-block {
    width: 25%;
  }

  .sg-menu {
    background-color: #fff;
  }

  .paragraph {
    font-size: 15px;
  }

  .paragraph.centered {
    font-size: 14px;
  }

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

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

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

  .heading.h2.centered.reverse {
    margin-top: 8px;
    font-size: 40px;
  }

  .heading.h5.centered.grey-500 {
    font-size: 14px;
  }

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

  .heading.h1.centered {
    color: var(--black);
    font-size: 40px;
  }

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

  .heading.h5 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 16px;
  }

  .heading.h5.reverse {
    margin-bottom: 0;
    font-size: 16px;
  }

  .padding-global {
    padding: 32px;
  }

  .navbar-dropdown-link-list {
    grid-row-gap: .5rem;
    width: 550px;
    max-width: none;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .nav-menu-items {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-dropdown-link {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .navbar-area {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-button {
    display: none;
  }

  .nav-bar-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    min-width: auto;
  }

  .logos-wrapper {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .partner-logo {
    height: auto;
  }

  .logo-nafc {
    object-fit: contain;
    max-height: 60px;
  }

  .hero-container {
    padding-top: 32px;
  }

  .hero-image {
    border-radius: 15px;
  }

  .hero-image.home {
    display: none;
  }

  .hero-image.home.mobile {
    display: inline-block;
  }

  .hero-image.titan {
    border-radius: 15px;
  }

  .call-out {
    box-shadow: 0 4px 10px 0 #ffffff80, -2px 4px 8px 0 var(--grey-300), 0 2px 5px 0 var(--grey-300);
    width: 100%;
    min-width: 250px;
  }

  .call-outs-wrapper {
    top: -15px;
  }

  .cta-text {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .cta-section.rose {
    margin-top: 0;
  }

  .footer-right-menu {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: wrap;
  }

  .footer-menu {
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .menu-item {
    justify-content: center;
    align-items: center;
    width: auto;
  }

  .footer-top-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .footer-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .h3 {
    font-size: 1.7rem;
  }

  .steps-card {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    margin-bottom: 24px;
    display: flex;
  }

  .right-content {
    height: auto;
    padding: 0;
  }

  .steps-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    margin-top: 6rem;
  }

  .max-width-40ch {
    max-width: none;
  }

  .homepage-product-image {
    object-fit: contain;
    width: 90%;
    max-width: none;
    height: 90%;
  }

  .steps-item._1, .steps-item._2, .steps-item._3, .steps-item._1, .steps-item._2, .steps-item._3 {
    position: relative;
    top: 0;
  }

  .left-content {
    padding: 2rem 0;
  }

  .homepage-product-container {
    width: 100%;
    height: auto;
    min-height: auto;
  }

  .homepage-product-container.titan {
    overflow: visible;
  }

  .steps-image {
    width: 100%;
    position: static;
  }

  .header {
    max-width: none;
  }

  .headings.h4 {
    font-size: 20px;
  }

  .headings.h5 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .headings.h1 {
    font-size: 35px;
  }

  .headings.h1.centered.reversed {
    font-size: 40px;
  }

  .headings.h2 {
    font-size: 28px;
  }

  .headings.h2.centered {
    font-size: 40px;
  }

  .headings.h2.centered.reverse {
    margin-top: 8px;
    font-size: 40px;
  }

  .headings.h3 {
    color: var(--black);
  }

  .features-wrapper {
    flex-wrap: wrap;
    margin-bottom: -40px;
  }

  .about-hero-wrapper {
    padding-top: 8px;
  }

  .features-block {
    width: 50%;
    margin-bottom: 40px;
  }

  .timeline-right-content {
    padding-top: 1rem;
  }

  .about-scroll-grid {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .vertical-padding {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .content-left {
    padding-bottom: 1rem;
    position: relative;
    top: 0;
  }

  .team-grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .team-circles {
    padding: 60px 15px;
  }

  .tick-list-content {
    margin-bottom: 2rem;
  }

  .cta-background-2.contact-us {
    background-image: linear-gradient(354deg, #b6cdfb, #fff);
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: scroll;
  }

  .title-section.front {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-us-wrapper {
    min-height: 50vh;
  }

  .hero-home {
    font-size: 56px;
  }

  .hero-home.product {
    color: var(--black);
    font-size: 40px;
  }

  .contact-form {
    margin-top: 3rem;
  }

  .hero-end-wrapper {
    margin-bottom: -30px;
  }

  .hero-blur {
    background-image: linear-gradient(270deg, #0000 100%, #6bf4c7 50%, #0000 70%);
  }

  .product-hero-call-outs.hide-mobile-landscape, .product-hero-call-outs.hide-mobile-landscape._2, .product-hero-call-outs.hide-mobile-landscape._3, .product-hero-call-outs.hide-mobile-landscape, .product-hero-call-outs.hide-mobile-landscape._2, .product-hero-call-outs.hide-mobile-landscape._3, .product-hero-call-outs.hide-mobile-landscape._2, .product-hero-call-outs.hide-mobile-landscape._3 {
    display: none;
  }

  ._3-benefits-2.product-mobile {
    background-color: #0000;
    display: block;
  }

  .double-section {
    grid-row-gap: 3rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-bottom: 8px;
  }

  .double-section.right {
    margin-bottom: 8px;
  }

  .product-image-features {
    width: 100%;
    min-width: 100%;
    position: static;
  }

  .product-image-features.shadow-xlarge {
    width: 100%;
    height: 100%;
  }

  .features-section {
    background-color: #0000;
    top: -57px;
  }

  .image-wrapper-product {
    min-height: auto;
    padding: 1.5rem 1rem;
  }

  .image-wrapper-product.tablet-down {
    height: auto;
  }

  .tick-list-wrapper {
    padding-top: 0;
  }

  .product-logo, .product-heading {
    font-size: 28px;
  }

  .product-block-item._1 {
    margin-bottom: 64px;
    padding-top: 40px;
  }

  .testimonial-wrap {
    padding: 32px;
  }

  .testimonial-copy-block {
    flex-flow: wrap;
  }

  .testimonial-section.arena {
    margin-top: -50px;
  }
}

@media screen and (max-width: 479px) {
  .text-input {
    width: 100%;
  }

  .colour-block {
    margin-bottom: 20px;
  }

  .text-box._500px {
    max-width: 500px;
  }

  .text-box._700px {
    padding-left: 8px;
    padding-right: 8px;
  }

  .text-box._700px.top-padding {
    padding-top: 32px;
  }

  .text-box._700px.top-padding.bottom-padding {
    padding-bottom: 32px;
    padding-left: 0;
    padding-right: 0;
  }

  .button {
    width: 100%;
    font-size: 16px;
  }

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

  .button.mobile-nav {
    max-width: 290px;
    margin: 16px 0 0;
  }

  .sg-menu-brand {
    margin-left: 16px;
  }

  .sg-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .column {
    margin-bottom: 0;
  }

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

  .paragraph.tablet-down, .paragraph.small {
    text-align: left;
  }

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

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

  .label-s {
    white-space: normal;
  }

  .heading.h2 {
    text-align: left;
    font-size: 28px;
  }

  .heading.h2.centered {
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 28px;
  }

  .heading.h2.centered.reverse {
    font-size: 28px;
  }

  .heading.h5.left.blue {
    font-size: 14px;
  }

  .heading.h1.centered {
    font-size: 40px;
  }

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

  .heading.h3.heavy {
    text-align: left;
    text-align: left;
    font-size: 28px;
  }

  .heading.text-size-medium.nav-link {
    font-size: 16px;
  }

  .heading.h5 {
    margin-bottom: 0;
    font-size: 12px;
  }

  .heading.h5.reverse {
    text-align: center;
    text-align: center;
    font-size: 14px;
  }

  .padding-global {
    padding: 16px 20px;
  }

  .navbar-dropdown-link-list {
    width: 300px;
  }

  .nenu-icon-wrap {
    width: 80%;
    height: 80%;
  }

  .logo {
    width: 100%;
  }

  .navbar-dropdown-link {
    padding-left: 0;
  }

  .navbar-area {
    width: 100%;
  }

  .brand {
    width: 100%;
    padding-left: 0;
  }

  .nav-bar-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .logos-wrapper {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .home-hero-wrapper {
    overflow: clip;
  }

  .hero-container {
    object-fit: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }

  .double-button {
    flex-flow: column;
  }

  .hero-image-wrapper {
    height: 100%;
    margin-bottom: 0;
  }

  .hero-image {
    border-radius: 10px;
    width: 120%;
    height: auto;
    min-height: 2rem;
  }

  .hero-image.home.mobile {
    min-height: 2rem;
  }

  .hero-image.titan {
    border-radius: 10px;
  }

  .call-out {
    box-shadow: 0 2px 4px 0 #fff3, 0 2px 9px 0 var(--grey-300);
    min-width: 260px;
  }

  .icon-wrapper {
    width: 40px;
    height: auto;
  }

  ._3-benefits {
    top: -18px;
  }

  .cta-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .cta-section.rose {
    margin-top: 0;
  }

  .footer-right-menu {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
  }

  .footer-bottom-menu {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-menu {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

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

  .h3 {
    font-size: 1.4rem;
  }

  .right-content {
    flex-flow: column;
    align-items: center;
    height: 30vh;
    padding-right: 0;
  }

  .steps-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    margin-top: 2rem;
  }

  .steps-stack-component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .steps-item {
    top: auto;
  }

  .steps-item._1 {
    padding-top: 16px;
  }

  .left-content {
    align-items: center;
    padding-top: 2rem;
    padding-left: 0;
    padding-right: 0;
  }

  .steps-content {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .homepage-product-container, .homepage-product-container.arena, .homepage-product-container.titan, .homepage-product-container.arena, .homepage-product-container.titan, .steps-image {
    height: auto;
  }

  .headings.h5 {
    margin-bottom: 0;
    font-size: 14px;
  }

  .headings.h1.centered.reversed {
    font-size: 28px;
  }

  .headings.h2.centered {
    margin-top: 8px;
    font-size: 28px;
  }

  .headings.h2.centered.reverse {
    font-size: 28px;
  }

  .headings.h3 {
    font-size: 28px;
    line-height: 100%;
  }

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

  .about-insights-container {
    max-width: none;
  }

  .hero-wrapper.careers {
    padding-right: 0;
  }

  .hero-split {
    width: auto;
    min-width: auto;
    display: block;
  }

  .timeline-right-content {
    padding-left: 20px;
  }

  .progress-bar-wrapper {
    left: -.05rem;
  }

  .vertical-padding {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .content-left {
    padding-bottom: 0;
  }

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

  .spacer-64px {
    height: 32px;
  }

  .left-stack {
    width: auto;
    min-width: 100%;
  }

  .cta-background-2.contact-us {
    background-image: linear-gradient(354deg, #b6cdfb, #fff);
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: scroll;
    height: auto;
  }

  .title-section {
    padding-top: 32px;
  }

  .title-section.front {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-us-wrapper {
    min-height: 50vh;
  }

  .hero-home {
    font-size: 40px;
  }

  .hero-home.product {
    font-size: 28px;
  }

  .email {
    font-size: 12px;
  }

  .contact-us-container {
    padding-bottom: 32px;
  }

  .form-radio-2col {
    grid-template-columns: 1fr;
  }

  .form-field-2col {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .home-hero-box-wrapper {
    padding-top: 0;
  }

  .hero-end-wrapper {
    max-height: 25rem;
    margin-bottom: -25px;
  }

  .hero-blur {
    background-color: #ffffff03;
    background-image: none;
    height: 80%;
  }

  .hero-blur.green {
    height: 110%;
  }

  .hero-blur.yellow {
    background-image: linear-gradient(172deg, var(--base-bg), var(--arena-lightest) 79%);
    height: 110%;
  }

  .hero-blur.purple {
    height: 120%;
  }

  .background-hero-wrap {
    background-image: none;
  }

  ._3-benefits-2.product-mobile {
    padding-bottom: 0;
  }

  .double-section {
    margin-bottom: 10px;
  }

  .double-section.right {
    margin-bottom: 10px;
    padding-top: 0;
  }

  .double-section.last {
    padding-top: 0;
    padding-bottom: 0;
  }

  .product-image-features.shadow-xlarge {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .features-section {
    top: -28px;
  }

  .image-wrapper-product.tablet-down {
    height: auto;
    padding: 0;
  }

  .div-block-2 {
    padding-top: 32px;
  }

  .div-block-3 {
    width: 100%;
  }

  .product-logo {
    font-size: 28px;
  }

  .background-div {
    position: static;
  }

  .columns-wrap {
    padding-top: 40px;
  }

  .image-column {
    height: 30vh;
    position: static;
  }

  .tablet-down_products-scroll {
    display: block;
  }

  .testimonial-wrap {
    padding: 32px 0;
  }

  .testimonial-quote-marks {
    width: 100%;
  }

  .testimonial-section.arena {
    margin-top: 0;
  }
}

#w-node-_386a7afb-91ca-93bd-c4e4-465e34969581-3b203096, #w-node-_386a7afb-91ca-93bd-c4e4-465e34969587-3b203096 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b40b9d03-0c04-7abf-97b1-26d297acfc99-3b203096, #w-node-b40b9d03-0c04-7abf-97b1-26d297acfc9e-3b203096, #w-node-b40b9d03-0c04-7abf-97b1-26d297acfca3-3b203096 {
  align-self: start;
}

@media screen and (min-width: 1440px) {
  #w-node-_386a7afb-91ca-93bd-c4e4-465e34969587-3b203096 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_9fcbf206-9805-b00d-e7fd-935f914a1ebb-3b203096 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}
