:root {
  --colors-interface--dark: #060606;
  --typefaces--body: Aspekta, Arial, sans-serif;
  --typography--body-size: 16px;
  --typography--body-line-height: 1.4em;
  --colors-interface--white: #fff;
  --typography--h1-size: 51px;
  --typography--h1-line-height: 1.15em;
  --typography--h2-size: 40px;
  --typography--h2-line-height: 1.2em;
  --typography--h3-size: 32px;
  --typography--h3-line-height: 1.2em;
  --typography--h4-size: 25px;
  --typography--h4-line-height: 1.25em;
  --typography--h5-size: 20px;
  --typography--h5-line-height: 1.35em;
  --colors-interface--white-border: #ffffff1a;
  --section-padding--default: 96px;
  --globals--wide-section-padding: 9px;
  --section-padding--small: 48px;
  --containers--main-container-with-gutters: 1248px;
  --globals--gutter: 24px;
  --containers--content-s: 480px;
  --light-blue: #0e11c9;
  --typography--display-size: 64px;
  --typography--display-line-height: 1.1em;
  --typefaces--serif: Newsreader, "Times New Roman", sans-serif;
  --containers--content-xl: 960px;
  --containers--content-l: 768px;
  --containers--content-m: 576px;
  --typography--badge-line-height: 1.4em;
  --colors-interface--body-text: #e9e9e9;
  --translucent: #12121200;
  --typefaces--badge: Aspekta, Arial, sans-serif;
  --typography--bade-size: 13px;
  --typography--fine-print-size: 13px;
  --typography--fine-print-line-height: 1.4em;
  --buttons--button-height: 48px;
  --buttons--button-x-radius: 54px;
  --light-black: #222223;
  --colors-interface--glass-bg-dark: #00000040;
  --blur-effects--intense: 24px;
  --colors-interface--white-faded-hover: #ffffff1f;
  --colors-interface--glass-bg-white: #ffffff26;
  --colors-interface--white-faded: #ffffff0f;
  --border-radius--default: 10px;
  --colors-brand--brand-1: #6c588d;
  --hero-sizes--default: 576px;
  --globals--navbar-height: 52px;
  --hero-sizes--small: 480px;
  --hero-sizes--large: 768px;
  --colors-brand--brand-4: #e0835c;
  --colors-brand--brand-2: #a2b79f;
  --colors-brand--brand-3: #d8a373;
  --grid-gaps--loose: 48px;
  --border-radius--small: 5px;
  --grid-gaps--tight: 12px;
  --containers--content-xs: 384px;
  --grid-gaps--default: 24px;
  --colors-interface--faded-heading: #ffffff80;
  --globals--navbar-height-negative: -52px;
  --section-padding--large: 168px;
  --hero-sizes--fullscreen: 100svh;
  --globals--nav-hide-toggle: 0px;
}

body {
  background-color: var(--colors-interface--dark);
  font-family: var(--typefaces--body);
  color: var(--colors-interface--dark);
  font-size: var(--typography--body-size);
  line-height: var(--typography--body-line-height);
  font-feature-settings: "ss02" 1;
  font-weight: 400;
}

h1 {
  color: var(--colors-interface--white);
  font-size: var(--typography--h1-size);
  line-height: var(--typography--h1-line-height);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

h2 {
  font-size: var(--typography--h2-size);
  line-height: var(--typography--h2-line-height);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

h3 {
  color: var(--colors-interface--white);
  font-size: var(--typography--h3-size);
  line-height: var(--typography--h3-line-height);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

h4 {
  color: var(--colors-interface--white);
  font-size: var(--typography--h4-size);
  line-height: var(--typography--h4-line-height);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

h5 {
  font-size: var(--typography--h5-size);
  line-height: var(--typography--h5-line-height);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

h6 {
  font-size: var(--typography--body-size);
  line-height: var(--typography--body-line-height);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--colors-interface--white);
  text-decoration: none;
}

ul {
  padding-left: var(--typography--body-line-height);
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  margin-top: 18px;
  margin-bottom: 18px;
  display: flex;
}

ol {
  padding-left: var(--typography--body-line-height);
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

img {
  object-fit: cover;
  max-width: 100%;
  padding-right: 0;
  display: inline-block;
}

label {
  margin-bottom: 5px;
  font-weight: 500;
  display: block;
}

strong {
  font-variation-settings: "wght" 500;
  font-weight: 700;
}

blockquote {
  border-left: 2px solid var(--colors-interface--white-border);
  font-size: var(--typography--h5-size);
  line-height: var(--typography--h5-line-height);
  margin-bottom: 0;
  padding: 24px 0 24px 24px;
}

figure {
  margin-bottom: 0;
}

.section {
  padding-top: var(--section-padding--default);
  padding-bottom: var(--section-padding--default);
  -webkit-text-fill-color: inherit;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 0;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  height: auto;
  min-height: 600px;
  display: flex;
  overflow: hidden;
}

.section.wide-section {
  padding: 0px var(--globals--wide-section-padding);
  max-height: 100svh;
}

.section.padding-s {
  padding-top: var(--section-padding--small);
  padding-bottom: var(--section-padding--small);
}

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

.section.no-top-padding {
  padding-top: 0;
}

.section.no-top-padding.backg {
  background-color: var(--colors-interface--dark);
}

.section.light-black {
  background-color: var(--colors-interface--dark);
  border-radius: 12px;
  min-height: auto;
  padding-bottom: 100px;
}

.section.top-padding-hero {
  padding-top: 150px;
}

.section.bottom-padding-l {
  background-color: var(--colors-interface--white);
  overflow: hidden;
}

.section.bottom-padding-l.back {
  background-color: var(--colors-interface--dark);
}

.section.bg-dark {
  background-color: var(--colors-interface--white);
  padding-top: 20px;
}

.section.padding-l-copy {
  overflow: clip;
}

.section.background-black {
  background-color: var(--colors-interface--dark);
}

.section.background-black.border-10px {
  border-radius: 10px;
}

.main-container {
  max-width: var(--containers--main-container-with-gutters);
  padding-right: var(--globals--gutter);
  padding-left: var(--globals--gutter);
  width: 100%;
}

.main-container.inside-wide-section {
  z-index: 5;
  flex-flow: column;
  flex: 1;
  justify-content: flex-end;
  padding: 48px;
  display: flex;
  position: relative;
  transform-style: flat !important;
}

.main-container.inside-wide-section.align-center {
  justify-content: center;
}

.vertical-content {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.vertical-content.loose {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
}

.vertical-content.info-card-content {
  flex: 1;
  justify-content: space-between;
}

.vertical-content.cta {
  max-width: var(--containers--content-s);
}

.vertical-content.hero-2-content-wrap {
  text-align: center;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding-top: 48px;
}

.vertical-content.services-3-hero-content {
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  top: 24px;
}

.vertical-content.testimonial {
  background-color: #000;
  background-image: radial-gradient(circle farthest-corner at 100% 100%, var(--light-blue), #060606);
  border-radius: 10px;
  padding: 2rem;
}

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

.display-heading {
  color: var(--colors-interface--white);
  font-size: var(--typography--display-size);
  line-height: var(--typography--display-line-height);
  position: static;
}

.display-heading.white {
  color: var(--colors-interface--white);
}

.serif {
  font-family: var(--typefaces--serif);
  font-style: italic;
  font-weight: 400;
  line-height: 0;
}

.heading-h1 {
  color: var(--colors-interface--white);
  font-size: var(--typography--h1-size);
  line-height: var(--typography--h1-line-height);
  font-weight: 400;
}

.heading-h1.long-text {
  color: var(--colors-interface--dark);
}

.heading-h1.price-amount {
  color: var(--colors-interface--dark);
  margin-bottom: -6px;
}

.heading-h1.page-title {
  max-width: var(--containers--content-xl);
}

.heading-h1.white {
  color: var(--colors-interface--white);
}

.heading-h2 {
  color: var(--colors-interface--dark);
  font-size: var(--typography--h2-size);
  line-height: var(--typography--h2-line-height);
  font-weight: 400;
}

.heading-h2.long-title, .heading-h2.black {
  color: var(--colors-interface--dark);
}

.heading-h2.slider-panel-heading {
  max-width: var(--containers--content-s);
}

.heading-h2.long-title {
  color: var(--colors-interface--dark);
}

.heading-h2.white {
  color: var(--colors-interface--white);
}

.heading-h4 {
  color: var(--colors-interface--dark);
  font-size: var(--typography--h4-size);
  line-height: var(--typography--h4-line-height);
  font-variation-settings: "wght" 400;
  font-weight: 400;
}

.heading-h4.article-intro {
  max-width: var(--containers--content-l);
}

.heading-h4.customer-card-title {
  max-width: var(--containers--content-s);
  color: var(--colors-interface--dark);
}

.heading-h4.table-title-text {
  color: var(--colors-interface--dark);
}

.heading-h4.long-text {
  color: var(--colors-interface--dark);
}

.heading-h4.white {
  color: var(--colors-interface--white);
}

.heading-h5 {
  color: var(--colors-interface--dark);
  font-size: var(--typography--h5-size);
  line-height: var(--typography--h5-line-height);
  font-variation-settings: "wght" 400;
  font-weight: 400;
}

.heading-h5.customery-story-wide-text {
  color: var(--colors-interface--dark);
}

.heading-h5.industry-text {
  max-width: var(--containers--content-m);
  color: var(--colors-interface--dark);
}

.heading-h5.hide-on-mobile.wjite, .heading-h5.white, .heading-h5.white {
  color: var(--colors-interface--white);
}

.badge-text {
  font-family: var(--typefaces--badge);
  color: var(--colors-interface--white);
  font-size: var(--typography--bade-size);
  line-height: var(--typography--badge-line-height);
  font-variation-settings: "wght" 600;
  text-transform: uppercase;
}

.badge-text.muted {
  opacity: .5;
}

.badge-text.categories-title.white, .badge-text.white {
  color: var(--colors-interface--white);
}

.fine-print {
  font-size: var(--typography--fine-print-size);
  line-height: var(--typography--fine-print-line-height);
}

.fine-print.footer-fine-print {
  max-width: var(--containers--content-s);
  opacity: .7;
}

.fine-print.muted {
  color: var(--colors-interface--white);
}

.fine-print.url {
  margin-bottom: 6px;
}

.fine-print.white {
  color: var(--colors-interface--white);
}

.dropdown-toggle {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: var(--colors-interface--white);
  font-variation-settings: "wght" 500;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  transition: opacity .2s;
  display: flex;
}

.dropdown-toggle:hover {
  opacity: .7;
}

.dropdown-toggle.w--open {
  position: static;
}

.square-small {
  background-color: var(--colors-interface--white);
  width: 6px;
  height: 6px;
  position: relative;
  bottom: -2px;
}

.navbar-outer-wrap {
  z-index: 99999999;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: .8rem;
  margin-left: 1rem;
  margin-right: 1rem;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-outer-wrap:where(.w-variant-55fd61fb-b15b-0b78-00b4-467b3603999c) {
  background-color: var(--colors-interface--dark);
  margin-bottom: 0;
}

.navbar-main {
  background-color: var(--colors-interface--glass-bg-dark);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  border-radius: 5px;
  flex-flow: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 80rem;
  padding: .5rem .5rem .5rem 2rem;
  display: flex;
}

.navbar-main:where(.w-variant-55fd61fb-b15b-0b78-00b4-467b3603999c) {
  border-bottom-left-radius: 5px;
  padding-left: 0;
  padding-right: 0;
}

.navbar-inner-wrap {
  grid-column-gap: 62px;
  grid-row-gap: 62px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
}

.wide-section-content {
  border-radius: var(--border-radius--default);
  background-color: var(--colors-brand--brand-1);
  flex-flow: column;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.wide-section-content.page-title {
  min-height: var(--hero-sizes--default);
  padding-top: var(--globals--navbar-height);
  background-color: var(--light-blue);
}

.wide-section-content.article-hero {
  min-height: var(--hero-sizes--large);
}

.wide-section-content.hero-2 {
  background-color: var(--light-blue);
  height: calc(100svh - 18px);
}

.wide-section-content.about-hero {
  min-height: var(--hero-sizes--large);
  background-color: var(--light-blue);
}

.wide-section-content.about-2-hero, .wide-section-content.services-3-hero {
  min-height: var(--hero-sizes--large);
}

.wide-section-content.mid-page-cta {
  background-color: var(--light-blue);
  min-height: 480px;
}

.wide-section-content.cta {
  min-height: var(--hero-sizes--small);
  background-color: var(--light-blue);
  margin-top: 0;
}

.grid-bg {
  z-index: 4;
  opacity: .7;
  pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("https://cdn.prod.website-files.com/6876d9ed80d9493408693d33/6876d9ee80d9493408693e26_dot-grid.webp");
  background-position: 0 0;
  background-size: auto;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.grid-bg.normal {
  z-index: 0;
  opacity: .2;
  mix-blend-mode: normal;
}

.grid-bg.non-overlay {
  z-index: 1;
  opacity: .2;
  mix-blend-mode: normal;
}

.grid-bg.service-grid-bg {
  opacity: .5;
  mix-blend-mode: normal;
}

.noise-bg {
  z-index: 4;
  pointer-events: none;
  background-image: url("https://cdn.prod.website-files.com/6876d9ed80d9493408693d33/6876d9ee80d9493408693e25_noise-pattern.png");
  background-position: 0 0;
  background-size: 150px 150px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.noise-bg.icon-box-noise {
  filter: saturate(0%);
}

.noise-bg.blog-hero-noise {
  opacity: .4;
}

.noise-bg.wide-text-box-noise {
  z-index: 2;
  opacity: .6;
}

.noise-bg.wide-video-box-noise {
  z-index: 1;
  opacity: .2;
}

.blob {
  z-index: 1;
  filter: blur(96px);
  pointer-events: none;
  color: var(--colors-brand--brand-4);
  font-family: Blobz, Arial, sans-serif;
  font-size: 50vw;
  line-height: 1em;
  position: absolute;
}

.blob.page-title-blob-c.brand-color-4, .blob.page-title-blob-c.brand-color-3 {
  color: var(--light-blue);
}

.blob.icon-blob-a-copy {
  filter: blur(20px);
  color: var(--colors-brand--brand-2);
  font-size: 120px;
  top: 20px;
  left: auto;
}

.blob.icon-blob-c {
  filter: blur(20px);
  color: var(--colors-brand--brand-3);
  font-size: 120px;
  top: auto;
  bottom: -48px;
  right: -72px;
}

.blob.metric-card-blob-a {
  filter: blur(54px);
  color: var(--colors-brand--brand-3);
  font-size: 490px;
  bottom: 48px;
  left: 150px;
}

.blob.metric-card-blob-b {
  filter: blur(54px);
  color: var(--colors-brand--brand-2);
  font-size: 520px;
  bottom: -150px;
  left: -350px;
}

.blob.metric-blob-c {
  filter: blur(54px);
  font-size: 540px;
  top: -150px;
  right: -50px;
}

.blob.wide-box-blob-a {
  top: 100px;
  right: -400px;
}

.blob.wide-box-blob-b {
  color: var(--colors-brand--brand-2);
  font-size: 600px;
  top: -200px;
}

.blob.wide-box-blob-c {
  color: var(--colors-brand--brand-3);
  top: -100px;
  right: -400px;
}

.blob.page-title-blob-a {
  color: var(--light-blue);
  letter-spacing: -70px;
  top: -384px;
  left: -750px;
  transform: rotate(-7deg);
}

.blob.page-title-blob-a.brand-color-3 {
  color: var(--colors-brand--brand-3);
}

.blob.page-title-blob-a.brand-color-2 {
  background-color: var(--colors-interface--white);
  color: var(--colors-brand--brand-2);
}

.blob.page-title-blob-a.brand-color-4 {
  color: var(--colors-interface--white);
}

.blob.page-title-blob-a.large {
  color: var(--light-blue);
  font-size: 60vw;
}

.blob.page-title-blob-b {
  z-index: 2;
  color: #8a9fff;
  letter-spacing: -200px;
  transform-style: preserve-3d;
  top: -14px;
  transform: scale3d(2, 1, 1)rotate(-12deg);
}

.blob.page-title-blob-b.brand-color-2, .blob.page-title-blob-b.brand-color-3 {
  color: var(--colors-interface--white);
}

.blob.page-title-blob-b.large {
  background-color: var(--light-blue);
  font-size: 60vw;
}

.blob.plan-blob-a {
  font-size: 850px;
  top: -600px;
  left: -400px;
}

.blob.plan-blob-b {
  color: var(--colors-brand--brand-2);
  font-size: 900px;
  bottom: -700px;
  right: -200px;
}

.blob.wide-cta-blob-b1, .blob.wide-cta-blob-b2 {
  z-index: 2;
  transform-style: preserve-3d;
  transform: scale3d(1, 1.7, 1);
}

.blob.hero-blob-a1 {
  background-color: var(--light-blue);
  color: var(--light-blue);
}

.blob.hero-blob-a2 {
  opacity: 0;
  color: var(--colors-interface--white);
}

.blob.hero-blob-a2.alt-colour-1 {
  background-color: var(--light-blue);
  color: var(--colors-interface--white);
}

.blob.hero-blob-a2.brand-color-3 {
  background-color: var(--colors-interface--white);
  color: var(--colors-interface--white);
}

.blob.hero-blob-a2.brand-color-4, .blob.hero-blob-b1 {
  color: var(--colors-interface--white);
}

.blob.hero-blob-b1.alt-colour-1 {
  background-color: var(--light-blue);
  color: var(--colors-interface--white);
}

.blob.hero-blob-b1.brand-color-3 {
  background-color: var(--colors-interface--white);
  color: var(--light-blue);
}

.blob.hero-blob-b1.brand-color-2, .blob.hero-blob-b2 {
  color: var(--light-blue);
}

.blob.hero-blob-b2.alt-colour-1 {
  background-color: var(--light-blue);
  color: var(--light-blue);
}

.blob.hero-blob-b2.brand-color-4 {
  background-color: var(--colors-interface--white);
  color: var(--light-blue);
}

.blob.hero-blob-b2.brand-color-2, .blob.hero-blob-c1 {
  color: var(--colors-interface--white);
}

.blob.hero-blob-c1.alt-colour-1 {
  background-color: var(--light-blue);
  color: var(--light-blue);
}

.blob.hero-blob-c1.brand-color-4 {
  background-color: var(--colors-interface--white);
  color: var(--light-blue);
}

.blob.hero-blob-c1.brand-color-3 {
  color: var(--colors-brand--brand-3);
}

.blob.hero-blob-c1.brand-color-2 {
  color: var(--colors-interface--white);
}

.blob.hero-blob-c2 {
  opacity: 1;
  color: var(--colors-interface--white);
}

.blob.hero-blob-c2.alt-colour-1 {
  background-color: var(--light-blue);
  color: var(--colors-interface--white);
}

.blob.hero-blob-c2.brand-color-2 {
  background-color: var(--colors-interface--white);
  color: var(--light-blue);
}

.blob.hero-blob-c2.brand-color-3 {
  color: var(--colors-brand--brand-3);
}

.blob.hero-blob-d1 {
  color: var(--light-blue);
}

.blob.hero-blob-d1.alt-colour-1 {
  background-color: var(--light-blue);
  color: var(--colors-interface--white);
}

.blob.hero-blob-d1.brand-color-1 {
  background-color: var(--colors-interface--white);
  color: var(--colors-brand--brand-1);
}

.blob.hero-blob-d1.brand-color-3 {
  color: var(--colors-brand--brand-3);
}

.blob.hero-blob-d1.brand-color-4, .blob.hero-blob-d1.brand-color-2, .blob.hero-blob-d2 {
  color: var(--light-blue);
}

.blob.hero-blob-d2.alt-colour-1 {
  background-color: var(--light-blue);
  color: var(--colors-interface--white);
}

.blob.hero-blob-d2.brand-color-1 {
  background-color: var(--colors-interface--white);
  color: var(--colors-brand--brand-1);
}

.blob.hero-blob-d2.brand-color-3 {
  color: var(--light-blue);
}

.blob.hero-blob-d2.brand-color-2 {
  color: var(--colors-interface--white);
}

.blob.hero-blob-e1 {
  color: var(--light-blue);
}

.blob.hero-blob-e1.alt-colour-1 {
  background-color: var(--light-blue);
  color: var(--colors-brand--brand-3);
}

.blob.hero-blob-e1.brand-color-3 {
  background-color: var(--light-blue);
  color: var(--light-blue);
}

.blob.hero-blob-e1.brand-color-2 {
  color: var(--colors-brand--brand-2);
}

.blob.hero-blob-e1.brand-color-4 {
  color: var(--colors-interface--white);
}

.blob.hero-blob-e2 {
  opacity: 0;
  color: var(--colors-interface--white);
}

.blob.hero-blob-e2.alt-colour-1 {
  background-color: var(--colors-interface--white);
  color: var(--light-blue);
}

.blob.hero-blob-e2.brand-color-3 {
  background-color: var(--colors-interface--white);
  color: var(--colors-brand--brand-3);
}

.blob.hero-blob-e2.brand-color-2 {
  color: var(--colors-brand--brand-2);
}

.blob.hero-blob-e2.brand-color-4 {
  color: var(--light-blue);
}

.blob.hero-blob-a1 {
  color: var(--colors-brand--brand-2);
}

.blob.hero-blob-a1.alt-colour-1, .blob.hero-blob-a1.brand-color-4 {
  background-color: var(--colors-interface--white);
  color: var(--light-blue);
}

.blob.hero-blob-a1.brand-color-3 {
  color: var(--light-blue);
}

.blob.blob-a {
  color: #8b99b6;
  top: -400px;
  left: -400px;
}

.blob.blob-b {
  z-index: 2;
  color: #0f1199;
}

.blob.page-title-blob-c {
  z-index: 3;
  color: #132b98;
  letter-spacing: -21vw;
  font-size: 55vw;
  top: -162px;
  right: -428px;
}

.blob.page-title-blob-c.brand-color-4, .blob.page-title-blob-c.brand-color-3 {
  color: var(--light-blue);
}

.blob.page-title-blob-c.large {
  color: var(--light-blue);
  font-size: 60vw;
}

.blob.icon-blob-a {
  filter: blur(20px);
  color: var(--colors-interface--white);
  font-size: 120px;
  top: 20px;
  left: -70px;
}

.blob.service-blob-a {
  filter: blur(54px);
  color: #679cd6;
  font-size: 300px;
  top: -50px;
  left: -100px;
}

.blob.service-blob-b {
  filter: blur(54px);
  color: #8aa6bc;
  font-size: 350px;
  top: 100px;
  right: -100px;
}

.blob.wide-cta-blob-a1 {
  color: #fff;
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(180deg)rotateZ(0)scale3d(.5, 2, 1);
}

.blob.wide-cta-blob-a2 {
  color: #fff;
  transform-style: preserve-3d;
  transform: scale3d(.5, 2, 1);
}

.blob.wide-cta-blob-b1, .blob.wide-cta-blob-b2 {
  z-index: 2;
  transform-style: preserve-3d;
  transform: scale3d(1, 1.7, 1);
}

.blob.wide-cta-blob-c1 {
  z-index: 3;
  color: #fff;
  transform-style: preserve-3d;
  right: -519.68px;
  transform: scale3d(1.3, 1.8, 1);
}

.blob.wide-cta-blob-c2 {
  z-index: 3;
  color: #22078a;
  transform-style: preserve-3d;
  right: -506.68px;
  transform: scale3d(1.3, 2, 1);
}

.blob.wide-cta-blob-d1 {
  z-index: 3;
  color: #132b98;
  transform-style: preserve-3d;
  top: -162px;
  right: -428px;
  transform: scale3d(4, 1, 1);
}

.blob.wide-cta-blob-d2 {
  color: #fff;
  transform-style: preserve-3d;
  transform: scale3d(4, 1, 1);
}

.blob.wide-cta-blob-b1 {
  color: #fff;
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(180deg)rotateZ(0)scale3d(.5, 2, 1);
}

.blob.wide-cta-blob-b2 {
  color: #1632ae;
  transform-style: preserve-3d;
  transform: scale3d(.5, 2, 1);
}

.nav-links-wrapper {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: static;
}

.hide {
  display: none;
}

.dropdown-element {
  background-color: #0000;
  align-self: stretch;
}

.dropdown-element.w--open {
  left: 0;
}

.dropdown-element.search-dropdown-element.w--open {
  left: auto;
  right: 0;
}

.bold {
  color: var(--colors-interface--white);
  font-variation-settings: "wght" 700;
}

.bold.black {
  color: var(--colors-interface--dark);
}

.bold.white {
  color: var(--colors-interface--white);
}

.icon-link-box {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border-radius: var(--border-radius--default);
  background-color: var(--colors-interface--body-text);
  color: var(--light-black);
  justify-content: flex-start;
  align-items: center;
  padding: 18px;
  transition: color .35s, background-color .5s;
  display: flex;
}

.icon-link-box:hover {
  background-color: var(--light-blue);
  color: var(--colors-interface--white);
}

.icon-box {
  border-radius: var(--border-radius--default);
  background-color: var(--light-blue);
  flex: none;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.icon-box-image {
  z-index: 3;
  border-radius: var(--border-radius--small);
  mix-blend-mode: overlay;
  width: 48px;
  height: 48px;
  position: relative;
}

.icon-link-text {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  flex: 1;
  display: flex;
}

.body-text, .body-text.heading-h5 {
  color: var(--colors-interface--dark);
}

.body-text.card-text {
  flex: 1;
}

.body-text.team-bio {
  padding-top: 72px;
}

.body-text.black {
  color: var(--colors-interface--dark);
}

.body-text.heading-h5 {
  color: var(--colors-interface--dark);
}

.body-text.white {
  color: var(--colors-interface--white);
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.nav-menu {
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: static;
}

.nav-dropdown {
  margin-left: 0;
  margin-right: 0;
  position: static;
}

.nav-dropdown.relative {
  position: relative;
}

.nav-links {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.dropdown-narrow {
  border-radius: var(--border-radius--small);
  background-color: var(--colors-interface--dark);
  flex-flow: column;
  min-width: 240px;
  display: flex;
  position: relative;
  top: 21px;
  overflow: hidden;
  box-shadow: 0 48px 48px #00000040;
}

.dropdown-narrow.wider {
  min-width: 260px;
}

.narrow-dropdown-link {
  opacity: .5;
  color: #fff;
  padding: 12px 18px;
  transition: background-color .2s, opacity .2s;
}

.narrow-dropdown-link:hover {
  background-color: var(--colors-interface--white-faded);
  opacity: 1;
}

.footer {
  padding-top: var(--section-padding--default);
  background-image: linear-gradient(to bottom, #00000080, #00000080), radial-gradient(circle farthest-corner at 100% 100%, var(--light-blue), var(--colors-interface--dark) 30%);
  color: var(--colors-interface--white);
  flex-flow: column;
  align-items: center;
  padding-bottom: 32px;
  display: flex;
}

.footer-wrapper {
  grid-column-gap: 168px;
  grid-row-gap: 168px;
  flex-flow: column;
  display: flex;
}

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

.footer-menus {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  display: flex;
}

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

.footer-link {
  opacity: .5;
  transition: opacity .2s;
}

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

.footer-info {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-info-top {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-bottom {
  border-top: 1px solid var(--colors-interface--white-border);
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  display: flex;
}

.footer-copyright-text {
  opacity: .7;
}

.social-icons {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-icon-link {
  opacity: .5;
  transition: opacity .2s;
}

.social-icon-link:hover {
  opacity: 1;
}

.vertical-section {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  display: flex;
}

.vertical-section.sticky-services {
  position: sticky;
  top: 96px;
}

.vertical-section.tight {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--translucent);
}

.section-title {
  max-width: var(--containers--content-xl);
}

.slider {
  background-color: #0000;
  height: auto;
}

.panel-wrap {
  border-radius: var(--border-radius--default);
  position: relative;
  overflow: hidden;
}

.slider-panel-image {
  z-index: 1;
  aspect-ratio: 16 / 9;
  position: relative;
}

.glass-panel-bottom {
  z-index: 2;
  background-color: var(--colors-interface--glass-bg-dark);
  -webkit-backdrop-filter: blur(var(--blur-effects--intense));
  backdrop-filter: blur(var(--blur-effects--intense));
  width: 100%;
  min-height: 240px;
  padding: 24px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  display: grid;
}

.grid.tight-on-mobile {
  grid-template-columns: 1fr .75fr;
}

.grid.contact {
  border-bottom: 1px solid var(--colors-interface--white-border);
  margin-bottom: 72px;
  padding-bottom: 72px;
}

.grid.contact.last {
  border-bottom-style: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.grid.contact-form {
  place-items: start center;
  margin-bottom: 1rem;
}

.text-item {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: var(--colors-interface--white);
  flex-flow: column;
  display: flex;
}

.text-item.bordered {
  color: var(--colors-interface--dark);
  border-top: 1px solid #ffffff4d;
  padding-top: 0;
}

.text-item.bordered.becomes-card {
  padding-top: 12px;
}

.arrow-button {
  width: var(--buttons--button-height);
  height: var(--buttons--button-height);
  background-color: var(--colors-interface--white-faded);
  -webkit-backdrop-filter: blur(var(--blur-effects--intense));
  backdrop-filter: blur(var(--blur-effects--intense));
  cursor: pointer;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  transition: background-color .2s;
  display: flex;
}

.arrow-button:hover {
  background-color: var(--colors-interface--white-faded-hover);
}

.arrow-button.large {
  background-color: var(--colors-interface--glass-bg-dark);
  width: 72px;
  height: 72px;
}

.arrow-button.large:hover {
  background-color: var(--colors-interface--white-faded-hover);
}

.arrow-button.reverse {
  transform: rotate(180deg);
}

.arrow-button.reverse.slider-prev {
  margin-top: auto;
  margin-bottom: 0;
  bottom: 24px;
  left: 24px;
}

.arrow-button.reverse.slider-prev:hover {
  background-color: var(--light-blue);
}

.arrow-button.slider-next {
  margin: auto 0 0;
  bottom: 24px;
  left: 78px;
}

.arrow-button.slider-next:hover {
  background-color: var(--light-blue);
}

.arrow-button.inside-icon-link {
  background-color: var(--colors-interface--glass-bg-dark);
}

.arrow-button-icon-wrapper {
  background-color: #31323300;
  flex-flow: row-reverse;
  width: 24px;
  height: 24px;
  display: flex;
  overflow: hidden;
}

.arrow-button-icon-wrapper.rotated {
  transform: rotate(90deg);
}

.slider-panel-text {
  grid-column-gap: var(--grid-gaps--loose);
  grid-row-gap: var(--grid-gaps--loose);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.section-contents {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-radius: 10px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding-top: 2rem;
  padding-bottom: 0;
  padding-right: 0;
  display: flex;
}

.section-contents.search-results {
  max-width: var(--containers--content-l);
  margin-left: auto;
  margin-right: auto;
}

.section-contents.bg-nocolor {
  background-color: #0d0d0d00;
}

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

.icon-label-grid {
  grid-column-gap: var(--grid-gaps--tight);
  grid-row-gap: var(--grid-gaps--tight);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: stretch;
  display: grid;
}

.icon-label {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border-radius: var(--border-radius--default);
  background-image: linear-gradient(0deg, black, var(--light-blue));
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 18px;
  display: flex;
}

.icon-label-image {
  border-radius: var(--border-radius--small);
  background-color: var(--colors-interface--dark);
  max-width: 20%;
  max-height: 100%;
  overflow: clip;
}

.grid-portrait-image {
  border-radius: var(--border-radius--default);
  width: 100%;
  margin-left: auto;
}

.arrow-link-icon {
  background-color: var(--colors-interface--glass-bg-dark);
}

.arrow-link-icon.black, .arrow-link-icon.black.white {
  background-color: var(--colors-interface--dark);
}

.arrow-link-icon.white {
  background-color: #0000;
}

.arrow-link-text.blact {
  color: var(--colors-interface--dark);
}

.arrow-link-text.blact.white {
  color: var(--colors-interface--white);
}

.image-pair-composition {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--light-black);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 10px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 48px;
  display: grid;
  position: relative;
}

.image-pair-item {
  z-index: 2;
  aspect-ratio: 1;
  object-position: 50% 0%;
  position: relative;
}

.image-pair-item.right {
  border-top-left-radius: var(--border-radius--default);
  border-top-right-radius: var(--border-radius--default);
  border-bottom-right-radius: var(--border-radius--default);
}

.image-pair-item.right.portrait {
  aspect-ratio: 3 / 4;
}

.image-pair-item.left {
  border-top-left-radius: var(--border-radius--default);
  border-bottom-left-radius: var(--border-radius--default);
  border-bottom-right-radius: var(--border-radius--default);
}

.image-pair-item.left.desaturate {
  filter: saturate(0%);
}

.list-wrap {
  border-bottom: 1px solid var(--colors-interface--white);
  flex-flow: column;
  align-self: stretch;
  display: flex;
}

.list-wrap.black-border {
  border-bottom-color: var(--colors-interface--dark);
}

.list-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-top: 1px solid var(--colors-interface--white);
  justify-content: flex-start;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 16px;
  display: flex;
}

.list-item.black-border {
  border-top-color: var(--colors-interface--dark);
}

.boxed-cta {
  max-width: var(--containers--content-l);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border-radius: var(--border-radius--default);
  background-color: var(--colors-interface--glass-bg-dark);
  -webkit-backdrop-filter: blur(var(--blur-effects--intense));
  backdrop-filter: blur(var(--blur-effects--intense));
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: 100%;
  padding: 36px;
  display: flex;
}

.boxed-cta-text {
  max-width: var(--containers--content-xs);
  width: 100%;
}

.services-scrolling-wrapper {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  height: 300vh;
  display: flex;
  position: relative;
}

.services-scrolling-row {
  padding-right: var(--grid-gaps--default);
  grid-column-gap: var(--grid-gaps--default);
  grid-row-gap: var(--grid-gaps--default);
  flex-flow: row;
  flex: none;
  display: flex;
  overflow: visible;
}

.service-item {
  max-width: var(--containers--content-xs);
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  flex-flow: column;
  flex: none;
  width: 100%;
  display: flex;
}

.service-icon-box {
  aspect-ratio: 1;
  background-color: #101e86;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.service-box-icon {
  z-index: 3;
  border-radius: var(--border-radius--small);
  mix-blend-mode: overlay;
  position: relative;
}

.services-scrolling-row-wrap {
  flex-flow: row;
  display: flex;
  position: sticky;
  top: 20vh;
}

.customer-quote-section {
  max-width: var(--containers--content-l);
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-flow: column;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.customer-quote-section.wide {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  max-width: 100%;
}

.zoom-image-link {
  border-radius: 10px;
  overflow: hidden;
}

.zoom-image-link.squared-edges {
  background-color: var(--light-blue);
  border-radius: 0;
  padding: 1rem;
  position: relative;
}

.zoom-image-link.black {
  color: var(--colors-interface--dark);
}

.zoom-image-link.blog-image {
  border-radius: 10px;
}

.zoom-image {
  text-align: center;
  object-fit: cover;
  object-position: 50% 0%;
  border: 1px solid #ffffff4a;
  border-radius: 4px;
  padding-left: 0;
}

.zoom-image:where(.w-variant-9c2ecace-c315-5df4-d398-57e669f680ee) {
  position: static;
}

.zoom-image.stat-card-aside {
  height: 384px;
}

.customer-quote-text-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px;
  display: flex;
}

.customer-quote-text-wrap.centered {
  max-width: var(--containers--content-l);
  margin-left: auto;
  margin-right: auto;
}

.customer-quote-text-wrap.black {
  background-color: var(--colors-interface--dark);
}

.customer-quote-follow-link {
  color: var(--translucent);
  border-left: 1px solid #ffffff4d;
  flex: none;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  padding-left: 1rem;
  display: flex;
}

.customer-quote-follow-link.inside-mini {
  border-left-color: #ffffff4d;
  padding-left: 1rem;
}

.icon-link-grid {
  grid-column-gap: var(--grid-gaps--tight);
  grid-row-gap: var(--grid-gaps--tight);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.process-with-sidebar {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  display: grid;
  position: relative;
}

.process-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: var(--colors-interface--white-faded);
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 2rem 2rem;
  display: flex;
}

.process-item {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border-top: 1px solid var(--colors-interface--white-border);
  flex-flow: column;
  align-self: stretch;
  padding-top: 24px;
  display: flex;
}

.process-item.top {
  border-top-style: none;
}

.industry-sidebar-slide {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  height: 100%;
  display: flex;
}

.industry-slide-image {
  aspect-ratio: 16 / 9;
  border-radius: var(--border-radius--default);
}

.customer-metric-card {
  border-radius: var(--border-radius--default);
  background-color: var(--light-blue);
  background-image: linear-gradient(0deg, black 20%, var(--light-blue));
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  min-height: 274px;
  padding: 18px;
  display: flex;
}

.customer-metric-card:where(.w-variant-9c2ecace-c315-5df4-d398-57e669f680ee) {
  background-color: var(--light-blue);
}

.customer-metric-text {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  max-width: 260px;
  display: flex;
}

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

.customer-metric-card-logo {
  max-width: 180px;
  max-height: 72px;
}

.follow-on-link-wrap {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.blog-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-card {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-radius: var(--border-radius--default);
  flex-flow: column;
  display: flex;
  overflow: hidden;
}

.blog-card-body {
  grid-column-gap: 72px;
  grid-row-gap: 72px;
  background-color: var(--colors-interface--dark);
  color: var(--colors-interface--white);
  border-radius: 10px;
  flex-flow: column;
  padding: 18px;
  transition: background-color .32s;
  display: flex;
}

.blog-card-body:hover {
  background-color: var(--light-blue);
}

.blog-card-meta {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

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

.buttons {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.empty-state {
  border-radius: var(--border-radius--default);
  background-color: var(--colors-interface--white-faded);
  text-align: center;
  padding: 18px;
}

.caption-box {
  z-index: 1;
  max-width: var(--containers--content-xs);
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  border-radius: var(--border-radius--small);
  background-color: var(--colors-interface--glass-bg-dark);
  -webkit-backdrop-filter: blur(var(--blur-effects--intense));
  backdrop-filter: blur(var(--blur-effects--intense));
  text-align: left;
  flex-flow: column;
  width: 100%;
  padding: 18px;
  display: flex;
  position: absolute;
  bottom: 12px;
  left: 12px;
}

.caption-box.below-image.right {
  left: auto;
  right: 12px;
}

.caption-box.wide {
  border-radius: var(--border-radius--default);
  max-width: 100%;
  position: static;
}

.caption-box.relative {
  border-radius: var(--border-radius--default);
  padding-bottom: 0;
  position: static;
}

.wide-cta-blob-wrapper-a {
  position: absolute;
  top: -19.6vw;
  left: -12.2vw;
  transform: rotate(64deg);
}

.wide-cta-blob-wrapper-c {
  position: absolute;
  right: -14.3vw;
  transform: rotate(15deg);
}

.wide-cta-blob-wrapper-d {
  position: absolute;
  bottom: -8.9vh;
  transform: rotate(-15deg);
}

.wide-cta-blob-wrapper-b {
  position: absolute;
  top: -130%;
  transform: rotate(83deg);
}

.bold-copy.bold2 {
  color: var(--translucent);
}

.bold-copy.bold2-copy {
  color: var(--colors-interface--dark);
}

.bold-copy.bold2-copy.white {
  color: var(--colors-interface--white);
}

.body-text-copy.body3-copy {
  color: var(--colors-interface--dark);
}

.body-text-copy.body3-copy.white {
  color: var(--colors-interface--white);
}

.bold-copy.bold3 {
  color: var(--colors-interface--dark);
}

.bold-copy.bold3.white {
  color: var(--colors-interface--white);
}

.arrow-link-copy {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  justify-content: flex-start;
  align-items: center;
  transition: opacity .2s;
  display: flex;
}

.arrow-link-copy:hover {
  opacity: .7;
}

.arrow-link-copy.arrow2-copy {
  color: var(--colors-interface--white);
}

.body-text-copy {
  color: var(--colors-interface--dark);
  padding-right: 0;
}

.bold-copy {
  color: var(--colors-interface--dark);
  font-variation-settings: "wght" 600;
  font-variation-settings: "wght" 600;
}

.square-copy {
  background-color: var(--colors-interface--white);
  width: 8px;
  height: 8px;
}

.square-copy:where(.w-variant-d55ad459-e1bd-dfea-b499-e470537a7f32) {
  width: 4px;
  height: 4px;
}

.square-copy:where(.w-variant-c4eb4285-b3f6-71e7-6413-823d4ec24193) {
  background-color: var(--colors-interface--dark);
}

.square-copy.black {
  background-color: var(--colors-interface--dark);
  color: var(--colors-interface--dark);
}

.square-copy.white {
  background-color: var(--colors-interface--white);
  color: var(--colors-interface--white);
}

.square-copy.white.black {
  background-color: var(--colors-interface--dark);
}

.bold-text-3 {
  color: var(--colors-interface--dark);
}

.bold-text-3.white {
  color: var(--colors-interface--white);
}

.square-bullet-copy {
  background-color: var(--colors-interface--dark);
  background-color: var(--colors-interface--dark);
  background-color: var(--colors-interface--dark);
  background-color: var(--colors-interface--dark);
  flex: none;
  width: 4px;
  height: 4px;
}

.heading-h4-copy {
  color: var(--colors-interface--dark);
  font-size: var(--typography--h4-size);
  line-height: var(--typography--h4-line-height);
  font-variation-settings: "wght" 400;
  font-weight: 400;
  font-size: var(--typography--h4-size);
  line-height: var(--typography--h4-line-height);
  font-variation-settings: "wght" 400;
  font-weight: 400;
  font-size: var(--typography--h4-size);
  line-height: var(--typography--h4-line-height);
  font-variation-settings: "wght" 400;
  font-weight: 400;
  font-size: var(--typography--h4-size);
  line-height: var(--typography--h4-line-height);
  font-variation-settings: "wght" 400;
  font-weight: 400;
  font-size: var(--typography--h4-size);
  line-height: var(--typography--h4-line-height);
  font-variation-settings: "wght" 400;
  font-weight: 400;
  font-size: var(--typography--h4-size);
  line-height: var(--typography--h4-line-height);
  font-variation-settings: "wght" 400;
  font-weight: 400;
}

.body-text-copy-copy {
  color: var(--colors-interface--dark);
}

.badge-title-copy-copy-copy {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--translucent);
  color: var(--colors-interface--white);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.body-text-copy-copy {
  padding-right: 0;
}

.div-block-3 {
  border-radius: var(--grid-gaps--default);
  background-color: var(--colors-interface--dark);
}

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

.text-block-25 {
  color: var(--colors-interface--white);
}

.body-text-copy-copy {
  color: var(--colors-interface--white);
  font-weight: 200;
}

.body-text-copy {
  color: var(--colors-interface--dark);
}

.body-text-copy.white, .body-text-copy.heading-h5-copy {
  color: var(--colors-interface--white);
}

.body-text-copy-copy-copy {
  color: var(--colors-interface--dark);
}

.heading-h2-copy {
  color: var(--colors-interface--dark);
  font-size: var(--typography--h2-size);
  line-height: var(--typography--h2-line-height);
  font-weight: 400;
  font-size: var(--typography--h2-size);
  line-height: var(--typography--h2-line-height);
  font-weight: 400;
}

.heading-h2-copy.long-title, .text-block-34 {
  color: var(--colors-interface--dark);
}

.badge-cta-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--translucent);
  color: var(--colors-interface--dark);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav-rights {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.us-flag-nav {
  border-radius: 3px;
  max-width: 40px;
}

.purple-ribbon {
  object-fit: contain;
  max-width: 30px;
  max-height: 50px;
}

.bg-hero-video {
  box-sizing: border-box;
  aspect-ratio: auto;
  text-align: center;
  object-fit: fill;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.hero-section {
  margin-top: 0;
  overflow: hidden;
}

.text-span {
  font-family: var(--typefaces--serif);
}

.hero-content-wrap {
  height: 100vh;
}

.hero-btm-wrap {
  grid-column-gap: var(--grid-gaps--tight);
  grid-row-gap: var(--grid-gaps--tight);
  justify-content: center;
  align-self: stretch;
  align-items: stretch;
  padding-bottom: 30px;
  display: flex;
  position: absolute;
  inset: auto 10% 0%;
}

.video-wrap {
  width: 339.984px;
  height: 191.836px;
}

.div-square-white {
  background-color: var(--colors-interface--white);
  width: 8px;
  height: 8px;
}

.div-square-white:where(.w-variant-d55ad459-e1bd-dfea-b499-e470537a7f32) {
  width: 4px;
  height: 4px;
}

.heading-wrap {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  top: 70px;
}

.video-code-embed {
  border-radius: 10px;
  height: 100%;
  overflow: hidden;
}

.nav-logo-and-menu {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-component-primary {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  background-color: var(--light-blue);
  text-transform: uppercase;
  border-radius: 5px;
  justify-content: flex-start;
  align-items: center;
  padding: .75rem 1rem;
  font-size: 12px;
  font-weight: 400;
  transition: background-color .35s;
  display: flex;
}

.button-component-primary:where(.w-variant-9c2ecace-c315-5df4-d398-57e669f680ee) {
  background-color: var(--colors-interface--white);
  color: var(--light-black);
}

.button-component-primary:where(.w-variant-622ac043-9150-a97e-c0d1-cde0bbd36376) {
  background-color: var(--light-black);
}

.button-component-primary:where(.w-variant-c8c0501b-08e6-1866-b419-9d4018214319) {
  background-color: #4390d8;
}

.button-component-primary:where(.w-variant-769d5776-7cb5-0a13-b831-417916445bcb) {
  text-transform: none;
  background-color: #0e11c900;
  padding: 0;
  font-size: 14px;
}

.button-component-primary:where(.w-variant-190363e1-f26a-887a-1377-9bc8b2c760f3) {
  color: var(--light-black);
  text-transform: none;
  background-color: #0e11c900;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
}

.button-component-primary:hover {
  color: var(--colors-interface--white);
  background-color: #3454e2;
}

.button-component-primary:hover:where(.w-variant-622ac043-9150-a97e-c0d1-cde0bbd36376) {
  background-color: var(--light-blue);
  color: var(--colors-interface--white);
}

.button-component-primary:hover:where(.w-variant-769d5776-7cb5-0a13-b831-417916445bcb) {
  color: #d1d1d1;
  background-color: #0e11c900;
}

.button-component-primary:hover:where(.w-variant-9c2ecace-c315-5df4-d398-57e669f680ee) {
  color: var(--colors-interface--dark);
  background-color: #ddd;
}

.button-component-primary:hover:where(.w-variant-190363e1-f26a-887a-1377-9bc8b2c760f3) {
  color: var(--light-blue);
  background-color: #0e11c900;
}

.button-component-primary._100 {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.lightbox-hero-vide {
  width: 100%;
}

.arrow-btn {
  width: 20px;
  height: 20px;
}

.font-family-serif {
  font-family: var(--typefaces--serif);
}

._12px-section-padding {
  background-color: #fff;
  padding: 12px;
}

.footer-cta-sectopm {
  background-color: var(--colors-interface--white);
  padding: 12px;
}

.footer-cta-sectopm.darkbg {
  background-color: var(--colors-interface--dark);
  background-color: var(--colors-interface--dark);
}

.span-bg-white {
  color: var(--colors-interface--glass-bg-dark);
}

.span-bg-dark {
  color: #494949;
}

.text-copy {
  color: #ffffffb3;
  font-weight: 300;
}

.text-color-white {
  color: var(--colors-interface--white);
}

.blog-heading-primary {
  font-size: var(--typography--h5-size);
  line-height: var(--typography--h5-line-height);
  font-variation-settings: "wght" 400;
  font-weight: 400;
}

.badge-primary {
  font-family: var(--typefaces--badge);
  color: var(--colors-interface--white);
  font-size: var(--typography--bade-size);
  line-height: var(--typography--badge-line-height);
  font-variation-settings: "wght" 600;
  text-transform: uppercase;
}

.cta-heading {
  font-size: var(--typography--h4-size);
}

.footer-col-heading {
  color: var(--colors-interface--white);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
}

.footer-disclaimer-fineprint {
  font-size: var(--typography--fine-print-size);
  line-height: var(--typography--fine-print-line-height);
}

.hide-desktop-show-mobile {
  display: none;
}

.hide-mobile {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hide-desktop {
  display: none;
}

.small-txt {
  color: var(--colors-interface--white);
  font-size: 13px;
  font-weight: 200;
}

.tagline-blue {
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  background-color: #06060669;
  border: 1px solid #fff3;
  border-radius: 50px;
  padding: .4rem 1rem;
}

.tagline-component {
  color: var(--colors-interface--white);
  text-transform: uppercase;
}

.tagline-component:where(.w-variant-c4eb4285-b3f6-71e7-6413-823d4ec24193) {
  color: var(--colors-interface--dark);
}

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

@media screen and (max-width: 991px) {
  .main-container.contains-navbar {
    padding-left: 0;
    padding-right: 0;
  }

  .main-container.contains-navbar:where(.w-variant-55fd61fb-b15b-0b78-00b4-467b3603999c) {
    padding-right: var(--globals--gutter);
    padding-left: var(--globals--gutter);
  }

  .vertical-content.about-2-hero-title {
    justify-content: flex-start;
    align-items: center;
  }

  .vertical-content.services-3-hero-content {
    position: static;
  }

  .heading-h1.long-text {
    font-size: var(--typography--h2-size);
    line-height: var(--typography--h1-line-height);
    font-size: var(--typography--h2-size);
    line-height: var(--typography--h1-line-height);
  }

  .heading-h4.article-intro {
    max-width: var(--containers--content-m);
    font-size: var(--typography--h5-size);
    line-height: var(--typography--h5-line-height);
    max-width: var(--containers--content-m);
    font-size: var(--typography--h5-size);
    line-height: var(--typography--h5-line-height);
  }

  .heading-h5.body-color-on-tablet {
    color: var(--colors-interface--body-text);
  }

  .dropdown {
    align-self: stretch;
  }

  .dropdown-toggle {
    font-size: var(--typography--h4-size);
    line-height: var(--typography--h4-line-height);
    font-variation-settings: "wght" 400;
    justify-content: space-between;
  }

  .navbar-outer-wrap {
    margin-bottom: 0;
    padding-left: .8rem;
    padding-right: .8rem;
  }

  .navbar-main {
    background-color: var(--colors-interface--dark);
  }

  .nav-link {
    border-bottom: 1px solid var(--colors-interface--white-border);
    font-size: var(--typography--h4-size);
    line-height: var(--typography--h4-line-height);
    font-variation-settings: "wght" 400;
    margin-left: 0;
    margin-right: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .wide-section-content.page-title {
    padding-top: 0;
  }

  .wide-section-content.article-hero {
    min-height: var(--hero-sizes--default);
  }

  .wide-section-content.hero-2 {
    height: calc(100svh - 72px);
  }

  .navbar-notch-left, .navbar-notch-right {
    display: none;
  }

  .blob.hero-blob-a1, .blob.hero-blob-a2 {
    filter: blur(56px);
    font-size: 70vw;
  }

  .blob.hero-blob-b2, .blob.hero-blob-c1, .blob.hero-blob-c2, .blob.hero-blob-d1, .blob.hero-blob-d2, .blob.hero-blob-e1, .blob.hero-blob-e2, .blob.hero-blob-a1 {
    filter: blur(56px);
    font-size: 70vw;
  }

  .blob.page-title-blob-c {
    font-size: 60vw;
  }

  .blob.page-title-blob-c.brand-color-3 {
    font-size: 70vw;
  }

  .blob.page-title-blob-a {
    font-size: 60vw;
  }

  .blob.page-title-blob-a.brand-color-4 {
    font-size: 70vw;
  }

  .blob.page-title-blob-b {
    font-size: 60vw;
  }

  .blob.page-title-blob-b.brand-color-2 {
    font-size: 70vw;
  }

  .blob.plan-blob-a {
    font-size: 750px;
  }

  .blob.hero-blob-a1, .blob.hero-blob-a2 {
    filter: blur(56px);
    font-size: 70vw;
  }

  .blob.hero-blob-b1 {
    filter: blur(56vh);
    font-size: 70vw;
  }

  .blob.hero-blob-b2, .blob.hero-blob-c1, .blob.hero-blob-c2, .blob.hero-blob-d1, .blob.hero-blob-d2, .blob.hero-blob-e1, .blob.hero-blob-e2, .blob.hero-blob-a1 {
    filter: blur(56px);
    font-size: 70vw;
  }

  .nav-links-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    height: 100%;
  }

  .dropdown-element.w--open {
    position: static;
  }

  .dropdown-wide {
    padding: 24px 0 48px;
  }

  .dropdown-menus {
    grid-row-gap: 72px;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 48px;
  }

  .bold.becomes-h4 {
    font-size: var(--typography--h4-size);
    line-height: var(--typography--h4-line-height);
    font-variation-settings: "wght" 400;
    font-size: var(--typography--h4-size);
    line-height: var(--typography--h4-line-height);
    font-variation-settings: "wght" 400;
  }

  .dropdown-wide-bottom {
    border-top-style: none;
    flex-flow: column;
    padding-top: 0;
    display: flex;
  }

  .dropdown-cta.hide-on-tablet {
    display: none;
  }

  .nav-menu {
    z-index: 999999;
    background-color: var(--colors-interface--dark);
    border-radius: 10px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 81px;
    padding: 24px;
    position: fixed;
    top: 0;
    left: 0;
  }

  .dropdown-wrapper {
    box-shadow: none;
  }

  .menu-button {
    background-color: var(--light-blue);
    border-radius: 4px;
    padding: 12px;
  }

  .menu-button.w--open {
    background-color: var(--light-blue);
    border-radius: 3px;
    padding-right: 12px;
  }

  .nav-controls {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .nav-dropdown {
    border-bottom: 1px solid var(--colors-interface--white-border);
    align-self: stretch;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav-links {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    flex: 1;
    padding-bottom: 0;
    display: flex;
  }

  .dropdown-narrow {
    box-shadow: none;
    border-radius: 0;
    padding-top: 12px;
    position: static;
  }

  .narrow-dropdown-link {
    border-radius: var(--border-radius--small);
    padding-left: 0;
    padding-right: 0;
  }

  .narrow-dropdown-link:hover {
    background-color: #0000;
  }

  .nav-button-wrapper {
    flex-flow: column;
    flex: 1;
    justify-content: flex-end;
    align-items: stretch;
    padding-top: 24px;
    display: flex;
  }

  .menu-button-icons {
    flex-flow: row;
    width: 24px;
    height: 24px;
    display: flex;
    overflow: hidden;
  }

  .menu-icon {
    display: block;
  }

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

  .footer-top {
    grid-column-gap: 96px;
    grid-row-gap: 96px;
    flex-flow: column-reverse;
    display: flex;
  }

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

  .vertical-section.sticky-services {
    max-width: 100%;
  }

  .vertical-section.hero {
    grid-column-gap: 72px;
    grid-row-gap: 72px;
  }

  .slider-panel-image {
    aspect-ratio: 3 / 2;
  }

  .grid {
    max-width: var(--containers--content-m);
    grid-column-gap: 96px;
    grid-row-gap: 96px;
    flex-flow: column;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .grid.contact {
    grid-column-gap: 72px;
    grid-row-gap: 72px;
  }

  .grid.customer-stat {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column-reverse;
  }

  .text-item.bordered.becomes-card {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    background-color: var(--translucent);
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    background-color: var(--translucent);
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    background-color: var(--translucent);
    border-top-style: none;
    padding: 24px;
  }

  .service-item {
    max-width: 348px;
  }

  .zoom-image.stat-card-aside {
    height: auto;
  }

  .customer-quote-text-wrap.centered {
    max-width: var(--containers--content-m);
    max-width: var(--containers--content-m);
    padding-left: 0;
    padding-right: 0;
  }

  .process-with-sidebar {
    grid-column-gap: 96px;
    grid-row-gap: 96px;
    flex-flow: column-reverse;
    justify-content: flex-end;
    align-items: flex-start;
    display: flex;
  }

  .industry-sidebar {
    max-width: 100%;
    position: static;
  }

  .industry-sidebar-slide {
    grid-column-gap: var(--grid-gaps--tight);
    grid-row-gap: var(--grid-gaps--tight);
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .industry-slide-image {
    aspect-ratio: auto;
  }

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

  .blog-title {
    max-width: var(--containers--content-m);
  }

  .article figure {
    margin-top: 48px;
    margin-bottom: 48px;
    transform: none;
  }

  .blog-heading {
    font-size: var(--typography--h2-size);
    line-height: var(--typography--h2-line-height);
  }

  .icon-link-thirds {
    grid-template-columns: 1fr 1fr;
  }

  .icon-link-thirds.tight {
    grid-row-gap: var(--grid-gaps--tight);
    grid-row-gap: var(--grid-gaps--tight);
    flex-flow: column;
    display: flex;
  }

  .icon-link-b-text {
    flex: 1;
  }

  .wide-text-box {
    aspect-ratio: auto;
    flex-flow: column;
  }

  .wide-text-box-image.flip {
    position: static;
  }

  .wide-text-box-contents {
    background-color: var(--translucent);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    max-width: 100%;
  }

  .wide-text-box-contents.narrow {
    max-width: 100%;
  }

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

  .multipurpose-card {
    flex-flow: row;
  }

  .multipurpose-image-card {
    aspect-ratio: auto;
    max-width: 50%;
  }

  .card-halves {
    max-width: var(--containers--content-m);
    flex-flow: column;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .logo-marquee-wrap {
    max-width: 100%;
  }

  .wide-video-box {
    aspect-ratio: 3 / 2;
  }

  .background-video {
    display: none;
  }

  .bento-offset-layout {
    flex-flow: column;
    display: flex;
  }

  .metric-slider-card {
    min-height: 0;
  }

  .customer-metric-card-copy {
    grid-column-gap: 72px;
    grid-row-gap: 72px;
  }

  .video-mobile-poster {
    opacity: .4;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }

  .about-us-paragraphs {
    max-width: var(--containers--content-m);
    grid-column-gap: var(--grid-gaps--default);
    grid-row-gap: var(--grid-gaps--default);
  }

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

  .tab-box {
    max-width: var(--containers--content-m);
    aspect-ratio: auto;
    background-color: #0000;
    margin-left: auto;
    margin-right: auto;
  }

  .tab-box-content {
    max-width: 100%;
    padding: 0;
  }

  .box-tabs-menu {
    margin-bottom: 48px;
  }

  .box-tab-pane {
    border-radius: var(--border-radius--default);
    overflow: hidden;
  }

  .box-tab-bg {
    max-width: 100%;
    position: static;
  }

  .tab-content-glass-bg {
    display: none;
  }

  .process-step-content {
    max-width: 100%;
  }

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

  .customer-stories-grid {
    grid-template-columns: 1fr;
  }

  .featured-customer-grid {
    max-width: var(--containers--content-m);
    flex-flow: column-reverse;
    display: flex;
  }

  .featured-customer-stat {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .featured-customer-logo {
    min-height: auto;
  }

  .featured-customer-wrap {
    justify-content: flex-start;
    align-items: center;
  }

  .featured-customer-quote-wrap, .intro-paragraph-container {
    max-width: var(--containers--content-m);
  }

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

  .table-row {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .page-nav {
    padding-top: 0;
    position: static;
  }

  .industries-section {
    padding-top: 3rem;
  }

  .industry-section {
    padding-top: 60px;
  }

  .industry-grid {
    flex-flow: column;
    display: flex;
  }

  .industry-detail-card {
    grid-column-gap: 72px;
    grid-row-gap: 72px;
  }

  .contact-image {
    max-width: var(--containers--content-m);
  }

  .sticky-card {
    align-self: stretch;
    width: 100%;
    position: static;
  }

  .pricing-grid {
    max-width: var(--containers--content-m);
    grid-column-gap: 72px;
    grid-row-gap: 72px;
    flex-flow: column;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .pricing-plan {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .checkout-form {
    flex-flow: column;
  }

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

  .checkout-right {
    flex-basis: 100%;
    width: 100%;
    position: static;
  }

  .about-hero-contents {
    flex-flow: column-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }

  .hero-bg-video {
    display: none;
  }

  .about-2-hero-content {
    max-width: var(--containers--content-m);
    grid-column-gap: 72px;
    grid-row-gap: 72px;
    text-align: center;
    flex-flow: column;
    margin-left: auto;
    margin-right: auto;
    padding-top: 48px;
    padding-bottom: 48px;
    display: flex;
    position: static;
  }

  .div-block-4 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .article-copy figure {
    margin-top: 48px;
    margin-bottom: 48px;
    transform: none;
  }

  .nav-rights {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .privacy-policy-tos figure {
    margin-top: 48px;
    margin-bottom: 48px;
    transform: none;
  }
}

@media screen and (max-width: 767px) {
  body {
    --colors-interface--dark: #060606;
    --typefaces--body: Aspekta, Arial, sans-serif;
    --typography--body-size: 16px;
    --typography--body-line-height: 1.4em;
    --colors-interface--white: #fff;
    --typography--h1-size: 51px;
    --typography--h1-line-height: 1.15em;
    --typography--h2-size: 32px;
    --typography--h2-line-height: 1.2em;
    --typography--h3-size: 32px;
    --typography--h3-line-height: 1.2em;
    --typography--h4-size: 25px;
    --typography--h4-line-height: 1.25em;
    --typography--h5-size: 20px;
    --typography--h5-line-height: 1.35em;
    --colors-interface--white-border: #ffffff1a;
    --section-padding--default: 96px;
    --globals--wide-section-padding: 9px;
    --section-padding--small: 48px;
    --containers--main-container-with-gutters: 1248px;
    --globals--gutter: 24px;
    --containers--content-s: 480px;
    --typography--display-size: var(--typography--h1-size);
    --typography--display-line-height: var(--typography--h1-line-height);
    --typefaces--serif: Newsreader, "Times New Roman", sans-serif;
    --containers--content-xl: 960px;
    --containers--content-l: 768px;
    --containers--content-m: 576px;
    --typography--badge-line-height: 1.4em;
    --colors-interface--body-text: #e9e9e9;
    --translucent: #12121200;
    --typefaces--badge: Aspekta, Arial, sans-serif;
    --typography--bade-size: 13px;
    --typography--fine-print-size: 13px;
    --typography--fine-print-line-height: 1.4em;
    --buttons--button-height: 48px;
    --buttons--button-x-radius: 54px;
    --light-black: #222223;
    --colors-interface--glass-bg-dark: #00000040;
    --blur-effects--intense: 24px;
    --colors-interface--white-faded-hover: #ffffff1f;
    --colors-interface--glass-bg-white: #ffffff26;
    --colors-interface--white-faded: #ffffff0f;
    --border-radius--default: 10px;
    --colors-brand--brand-1: #6c588d;
    --hero-sizes--default: 480px;
    --globals--navbar-height: 52px;
    --hero-sizes--small: 480px;
    --hero-sizes--large: 768px;
    --colors-brand--brand-4: #e0835c;
    --colors-brand--brand-2: #a2b79f;
    --colors-brand--brand-3: #d8a373;
    --grid-gaps--loose: 48px;
    --border-radius--small: 5px;
    --grid-gaps--tight: 12px;
    --containers--content-xs: 384px;
    --grid-gaps--default: 24px;
    --colors-interface--faded-heading: #ffffff80;
    --globals--navbar-height-negative: -52px;
    --section-padding--large: 96px;
    --hero-sizes--fullscreen: 100svh;
    --globals--nav-hide-toggle: 0px;
  }

  .main-container.contains-navbar {
    padding-left: 0;
    padding-right: 0;
  }

  .main-container.contains-navbar:where(.w-variant-55fd61fb-b15b-0b78-00b4-467b3603999c) {
    padding-left: 24px;
    padding-right: 24px;
  }

  .vertical-content.boxed-video-content, .vertical-content.history-title {
    justify-content: flex-start;
    align-items: center;
  }

  .vertical-content.boxed-video-content, .vertical-content.history-title {
    justify-content: flex-start;
    align-items: center;
  }

  .vertical-content.hero-2-content-wrap {
    flex: none;
    justify-content: center;
    padding-top: 0;
  }

  .heading-h1.page-title {
    font-size: var(--typography--h2-size);
    line-height: var(--typography--h2-line-height);
    font-size: var(--typography--h2-size);
    line-height: var(--typography--h2-line-height);
  }

  .heading-h5.hide-on-mobile {
    display: none;
  }

  .heading-h5.hide-on-mobile.wjite {
    display: block;
  }

  .badge-text.career-location {
    opacity: .5;
    opacity: .5;
  }

  .navbar-top-line {
    display: none;
  }

  .wide-section-content.hero-2 {
    min-height: var(--hero-sizes--default);
    height: auto;
  }

  .wide-section-content.about-hero {
    min-height: var(--hero-sizes--default);
  }

  .wide-section-content.services-3-hero {
    min-height: var(--hero-sizes--small);
  }

  .navbar-notch-left, .navbar-notch-right {
    display: none;
  }

  .blob {
    font-size: 30vw;
  }

  .blob.hero-blob-a1, .blob.hero-blob-a2, .blob.hero-blob-b1, .blob.hero-blob-b2, .blob.hero-blob-c1, .blob.hero-blob-c2, .blob.hero-blob-d1, .blob.hero-blob-d2, .blob.hero-blob-e1, .blob.hero-blob-e2, .blob.hero-blob-a1 {
    filter: blur(56px);
  }

  .blob.page-title-blob-c {
    filter: blur(56px);
    font-size: 70vw;
    top: 0;
    right: 0;
  }

  .blob.wide-box-blob-a {
    font-size: 600px;
  }

  .blob.wide-box-blob-b {
    font-size: 400px;
    left: -100px;
  }

  .blob.wide-box-blob-c {
    font-size: 400px;
  }

  .blob.page-title-blob-a {
    filter: blur(56px);
    font-size: 70vw;
    top: 225px;
    left: -459px;
  }

  .blob.page-title-blob-b {
    filter: blur(56px);
    font-size: 70vw;
    top: 152px;
  }

  .blob.hero-blob-a1, .blob.hero-blob-a2, .blob.hero-blob-b1, .blob.hero-blob-b2, .blob.hero-blob-c1, .blob.hero-blob-c2, .blob.hero-blob-d1, .blob.hero-blob-d2, .blob.hero-blob-e1, .blob.hero-blob-e2, .blob.hero-blob-a1 {
    filter: blur(56px);
  }

  .nav-contents {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .nav-controls {
    display: none;
  }

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

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

  .vertical-section {
    grid-column-gap: 72px;
    grid-row-gap: 72px;
  }

  .slider-panel-image {
    aspect-ratio: auto;
  }

  .glass-panel-bottom {
    background-color: var(--translucent);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    position: static;
  }

  .grid.tight-on-mobile {
    grid-column-gap: 72px;
    grid-row-gap: 72px;
    grid-column-gap: 72px;
    grid-row-gap: 72px;
    width: 100%;
  }

  .arrow-button.reverse.slider-prev {
    margin-top: 12px;
    margin-left: 0;
    margin-right: auto;
    position: static;
  }

  .arrow-button.slider-next {
    bottom: 0;
    left: 54px;
  }

  .slider-panel-text {
    flex-flow: column;
    display: flex;
  }

  .section-contents {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .services-scrolling-wrapper {
    height: auto;
  }

  .service-item {
    max-width: var(--containers--content-xs);
  }

  .service-icon-box {
    aspect-ratio: 3 / 2;
  }

  .services-scrolling-row-wrap {
    overflow: scroll;
  }

  .customer-quote-text-wrap {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    flex-flow: column;
    padding-left: 0;
    padding-right: 0;
  }

  .customer-quote-follow-link {
    border-left-style: none;
    padding-left: 0;
  }

  .icon-link-grid {
    flex-flow: column;
    display: flex;
  }

  .article-wrap.product {
    grid-column-gap: 72px;
    grid-row-gap: 72px;
    grid-column-gap: 72px;
    grid-row-gap: 72px;
  }

  .icon-link-b, .customer-mini {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .boxed-video-cta {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    text-align: center;
    flex-flow: column-reverse;
  }

  .card-grid {
    flex-flow: column;
    display: flex;
  }

  .info-card {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .multipurpose-card {
    flex-flow: column;
  }

  .multipurpose-image-card {
    aspect-ratio: 16 / 9;
    max-width: 100%;
  }

  .wide-video-box {
    aspect-ratio: 1;
  }

  .icon-link-c {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .icon-link-c-arrow {
    position: absolute;
    right: 18px;
  }

  .card-body {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .service-item-wide {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-us-paragraphs {
    text-align: left;
    flex-flow: column;
    display: flex;
  }

  .history-title-wrap {
    max-width: var(--containers--content-s);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    text-align: center;
    flex-flow: column;
  }

  .box-tabs-menu {
    margin-bottom: 24px;
  }

  .career-link {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 18px;
  }

  .career-link-title {
    font-size: var(--typography--h5-size);
    line-height: var(--typography--h5-line-height);
    font-variation-settings: "wght" 400;
  }

  .career-link-meta {
    align-self: stretch;
  }

  .basis-wrap {
    flex: 1;
    justify-content: flex-start;
    align-items: center;
  }

  .customer-story-wide {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .customer-story-wide-logo {
    margin-bottom: 24px;
  }

  .customer-title {
    flex-flow: column;
    display: flex;
  }

  .customer-stat-box {
    display: none;
  }

  .icon-thirds {
    flex-flow: column;
    display: flex;
  }

  .icon-center-item {
    text-align: left;
    flex-flow: row;
  }

  .text-feature-halves {
    grid-column-gap: var(--grid-gaps--default);
    grid-row-gap: var(--grid-gaps--default);
  }

  .narrow-icon-thirds {
    grid-column-gap: 24px;
    grid-row-gap: 48px;
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
    max-width: 100%;
    display: flex;
  }

  .small-icon-item {
    max-width: 240px;
  }

  .page-nav {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .industry-detail-card {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .contact-image {
    max-width: 100%;
  }

  .hero-2-heading-wrap {
    flex: none;
  }

  .hero-2-content {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
  }

  .about-2-hero-content {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .about-3-hero-heading-wrap {
    flex: none;
  }

  .about-hero-3-content {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    display: none;
  }

  .nav-rights {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .hero-content-wrap {
    height: 90vh;
  }

  .hero-btm-wrap {
    flex-flow: column;
    display: none;
  }

  .hide-tablet-down {
    display: none;
  }

  .hide-desktop-show-mobile {
    display: flex;
  }

  .hide-mobile {
    display: none;
  }

  .hide-desktop {
    display: flex;
  }

  .ribbon-cta {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
    display: flex;
  }

  .contact-section-contents, .location-wrap {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }
}

@media screen and (max-width: 479px) {
  body {
    --colors-interface--dark: #060606;
    --typefaces--body: Aspekta, Arial, sans-serif;
    --typography--body-size: 16px;
    --typography--body-line-height: 1.4em;
    --colors-interface--white: #fff;
    --typography--h1-size: 51px;
    --typography--h1-line-height: 1.15em;
    --typography--h2-size: 32px;
    --typography--h2-line-height: 1.2em;
    --typography--h3-size: 25px;
    --typography--h3-line-height: 1.25em;
    --typography--h4-size: 20px;
    --typography--h4-line-height: 1.35em;
    --typography--h5-size: 18px;
    --typography--h5-line-height: 1.4em;
    --colors-interface--white-border: #ffffff1a;
    --section-padding--default: 72px;
    --globals--wide-section-padding: 9px;
    --section-padding--small: 48px;
    --containers--main-container-with-gutters: 1248px;
    --globals--gutter: 18px;
    --containers--content-s: 480px;
    --typography--display-size: 40px;
    --typography--display-line-height: var(--typography--h1-line-height);
    --typefaces--serif: Newsreader, "Times New Roman", sans-serif;
    --containers--content-xl: 960px;
    --containers--content-l: 768px;
    --containers--content-m: 576px;
    --typography--badge-line-height: 1.4em;
    --colors-interface--body-text: #e9e9e9;
    --translucent: #12121200;
    --typefaces--badge: Aspekta, Arial, sans-serif;
    --typography--bade-size: 13px;
    --typography--fine-print-size: 13px;
    --typography--fine-print-line-height: 1.4em;
    --buttons--button-height: 48px;
    --buttons--button-x-radius: 54px;
    --light-black: #222223;
    --colors-interface--glass-bg-dark: #00000040;
    --blur-effects--intense: 24px;
    --colors-interface--white-faded-hover: #ffffff1f;
    --colors-interface--glass-bg-white: #ffffff26;
    --colors-interface--white-faded: #ffffff0f;
    --border-radius--default: 7px;
    --colors-brand--brand-1: #6c588d;
    --hero-sizes--default: 480px;
    --globals--navbar-height: 52px;
    --hero-sizes--small: 480px;
    --hero-sizes--large: 768px;
    --colors-brand--brand-4: #e0835c;
    --colors-brand--brand-2: #a2b79f;
    --colors-brand--brand-3: #d8a373;
    --grid-gaps--loose: 48px;
    --border-radius--small: 3px;
    --grid-gaps--tight: 12px;
    --containers--content-xs: 384px;
    --grid-gaps--default: 24px;
    --colors-interface--faded-heading: #ffffff80;
    --globals--navbar-height-negative: -52px;
    --section-padding--large: 96px;
    --hero-sizes--fullscreen: 100svh;
    --globals--nav-hide-toggle: 0px;
  }

  h1 {
    font-size: 32px;
  }

  .section.wide-section {
    min-height: auto;
  }

  .section.bottom-padding-l {
    justify-content: center;
    align-items: center;
  }

  .section.bg-dark {
    min-height: auto;
    padding-bottom: 20px;
  }

  .main-container.inside-wide-section {
    padding: 24px;
  }

  .main-container.contains-navbar:where(.w-variant-55fd61fb-b15b-0b78-00b4-467b3603999c) {
    padding-left: 18px;
    padding-right: 18px;
  }

  .vertical-content.page-title-text, .vertical-content.about-2-hero-title {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
  }

  .vertical-content.service-box-text {
    padding-right: 24px;
  }

  .vertical-content.page-title-text, .vertical-content.about-2-hero-title {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
  }

  .display-heading {
    font-size: var(--typography--display-size);
  }

  .heading-h1.page-title, .heading-h2.long-title {
    font-size: var(--typography--h3-size);
    line-height: var(--typography--h3-line-height);
    font-size: var(--typography--h3-size);
    line-height: var(--typography--h3-line-height);
  }

  .heading-h3.long-text {
    font-size: var(--typography--h4-size);
    line-height: var(--typography--h4-line-height);
    font-size: var(--typography--h4-size);
    line-height: var(--typography--h4-line-height);
  }

  .heading-h4.long-text {
    font-size: var(--typography--h5-size);
    line-height: var(--typography--h5-line-height);
  }

  .heading-h4.article-intro {
    font-size: var(--typography--body-size);
    line-height: var(--typography--badge-line-height);
  }

  .heading-h4.table-title-text {
    text-align: center;
  }

  .heading-h5.customery-story-wide-text {
    color: var(--colors-interface--dark);
    font-size: var(--typography--body-size);
    line-height: var(--typography--badge-line-height);
    font-size: var(--typography--body-size);
    line-height: var(--typography--badge-line-height);
  }

  .badge-text.categories-title {
    display: none;
  }

  .dropdown-toggle {
    font-size: var(--typography--h5-size);
    line-height: var(--typography--h5-line-height);
  }

  .navbar-outer-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-main {
    padding-left: 1rem;
  }

  .nav-link {
    font-size: var(--typography--h5-size);
    line-height: var(--typography--h5-line-height);
  }

  .wide-section-content.about-2-hero {
    min-height: auto;
  }

  .wide-section-content.services-3-hero {
    height: auto;
    padding-top: 84px;
  }

  .blob {
    filter: blur(64px);
    font-size: 65vw;
  }

  .blob.hero-blob-a1, .blob.hero-blob-a2 {
    filter: blur(36px);
    font-size: 60vh;
  }

  .blob.hero-blob-b1, .blob.hero-blob-b2, .blob.hero-blob-c1, .blob.hero-blob-c2 {
    filter: blur(48px);
    font-size: 60vh;
  }

  .blob.hero-blob-d2, .blob.hero-blob-e1, .blob.hero-blob-e2 {
    filter: blur(48px);
    font-size: 60vh;
  }

  .blob.page-title-blob-c {
    font-size: 70vh;
  }

  .blob.service-blob-a {
    font-size: 200px;
  }

  .blob.service-blob-b {
    font-size: 300px;
  }

  .blob.page-title-blob-a {
    font-size: 70vh;
    top: 0;
    left: 0;
  }

  .blob.page-title-blob-b {
    font-size: 70vh;
    top: 200px;
  }

  .blob.hero-blob-a1, .blob.hero-blob-a2 {
    filter: blur(36px);
    font-size: 60vh;
  }

  .blob.hero-blob-b1, .blob.hero-blob-b2, .blob.hero-blob-c1, .blob.hero-blob-c2 {
    filter: blur(48px);
    font-size: 60vh;
  }

  .blob.hero-blob-d1 {
    filter: blur(48px);
    font-size: 60vw;
  }

  .blob.hero-blob-d2, .blob.hero-blob-e1, .blob.hero-blob-e2 {
    filter: blur(48px);
    font-size: 60vh;
  }

  .blob.hero-blob-a1 {
    filter: blur(36px);
    font-size: 60vh;
  }

  .dropdown-wide {
    padding: 36px 0 24px;
  }

  .dropdown-menus {
    grid-row-gap: 48px;
    padding-bottom: 24px;
  }

  .dropdown-menu {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .dropdown-link {
    font-size: var(--typography--body-size);
    line-height: var(--typography--body-line-height);
  }

  .icon-link-box {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
  }

  .icon-link-box-arrow {
    position: absolute;
    right: 18px;
  }

  .dropdown-cta {
    flex-flow: column;
    align-items: stretch;
  }

  .nav-menu {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-links {
    overflow: hidden auto;
  }

  .cart-container {
    border-radius: 0;
  }

  .footer {
    padding-bottom: 48px;
  }

  .footer-menus {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .footer-info {
    display: flex;
  }

  .vertical-section {
    grid-column-gap: 54px;
    grid-row-gap: 54px;
  }

  .vertical-section.hero {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .panel-wrap {
    border-radius: var(--border-radius--default);
  }

  .slider-panel-image {
    height: 100%;
  }

  .glass-panel-bottom {
    background-color: var(--light-blue);
    padding: 18px;
  }

  .grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .grid.tight-on-mobile {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .grid.contact.last {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .grid.customer-stat {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .text-item.bordered.becomes-card {
    padding: 18px;
  }

  .arrow-button.reverse.slider-prev, .arrow-button.slider-next {
    background-color: var(--colors-interface--dark);
  }

  .arrow-button.reverse.slider-prev {
    background-color: var(--colors-interface--dark);
    background-color: var(--colors-interface--dark);
  }

  .arrow-button.slider-next {
    background-color: var(--colors-interface--dark);
  }

  .arrow-button.inside-icon-link {
    position: absolute;
    right: 18px;
  }

  .section-contents {
    padding-top: 0;
    padding-bottom: 0;
  }

  .icon-label-grid {
    flex-flow: column;
    display: flex;
  }

  .image-pair-composition {
    padding: 0;
  }

  .list-wrap {
    border-bottom-color: var(--colors-interface--white);
  }

  .list-item {
    border-top-color: var(--colors-interface--white);
  }

  .boxed-cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .services-scrolling-row {
    grid-column-gap: var(--grid-gaps--tight);
    grid-row-gap: var(--grid-gaps--tight);
  }

  .service-item {
    max-width: 240px;
  }

  .service-item.inside-grid {
    max-width: 100%;
  }

  .service-icon-box {
    aspect-ratio: 1;
    background-color: var(--light-blue);
  }

  .services-scrolling-row-wrap {
    overflow: auto;
  }

  .customer-quote-section {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .customer-quote-section.wide {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .zoom-image-link {
    width: 100%;
  }

  .zoom-image {
    min-height: 100px;
    overflow: clip;
  }

  .zoom-image.customer-mini-image {
    width: 100%;
    max-width: 100%;
  }

  .customer-quote-text-wrap {
    padding: 24px;
  }

  .customer-quote-follow-link.inside-mini {
    justify-content: center;
    align-items: center;
  }

  .icon-link-grid {
    flex-flow: column;
    display: flex;
  }

  .process-with-sidebar {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .process-list {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .industry-sidebar-slide {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    display: flex;
  }

  .customer-metric-text {
    max-width: 160px;
  }

  .follow-on-link-wrap {
    grid-column-gap: 9px;
    grid-row-gap: 9px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .blog-grid {
    flex-flow: column;
    display: flex;
  }

  .cta-content {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .buttons {
    flex-flow: column;
  }

  .hero-scrim {
    background-image: linear-gradient(0deg, #000c 25%, #0000);
  }

  .article {
    margin-top: -86px;
  }

  .category-selector {
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .icon-link-thirds {
    grid-row-gap: 24px;
    flex-flow: column;
    display: flex;
  }

  .icon-link-b {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .wide-text-box-contents {
    background-color: var(--colors-interface--dark);
    padding: 18px;
  }

  .wide-text-box-contents.narrow {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .logos {
    grid-column-gap: 48px;
    grid-row-gap: 24px;
    flex-flow: wrap;
  }

  .tabs-menu {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    text-align: center;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: start;
    display: grid;
  }

  .customer-mini {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    padding: 24px 0;
  }

  .customer-mini-text {
    justify-content: flex-start;
    align-items: center;
  }

  .boxed-video-cta {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: #0000;
    border-radius: 0;
    padding: 0;
  }

  .video.about-hero-video {
    display: none;
  }

  .accordion-wrap.boxed {
    margin-bottom: 24px;
  }

  .accordion-title.padded, .accordion-content.padding-s, .accordion-content.padding-s {
    padding-left: 18px;
    padding-right: 18px;
  }

  .card-link {
    aspect-ratio: 1;
  }

  .wide-video-box {
    aspect-ratio: 3 / 2;
  }

  .video-box-title, .video-text-box-text {
    display: none;
  }

  .customer-metric-card-copy {
    padding: 18px;
  }

  .image-with-box-caption {
    border-radius: 0;
  }

  .caption-box.below-image {
    background-color: var(--light-blue);
    border-radius: 0;
    position: static;
  }

  .caption-box.relative {
    padding-bottom: 18px;
  }

  .box-wrap {
    border-radius: var(--border-radius--default);
    flex-flow: column-reverse;
    display: flex;
    overflow: hidden;
  }

  .video-mobile-poster {
    opacity: 1;
  }

  .icon-link-c {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .icon-link-c-arrow {
    display: none;
  }

  .service-item-title {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-flow: column;
    flex: 1;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .paragraph-with-signature-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .signature-wrap.whi-bac, .signature {
    width: 100%;
  }

  .team-grid {
    grid-row-gap: 12px;
    flex-flow: column;
    display: flex;
  }

  .team-card.sidebar {
    max-width: 100%;
  }

  .team-member-details {
    grid-column-gap: 54px;
    grid-row-gap: 54px;
  }

  .metrics-row {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
  }

  .box-tabs-menu {
    margin-bottom: 12px;
  }

  .career-link-meta {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
  }

  .form {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    padding: 22px;
  }

  .form-input {
    padding-left: 12px;
    padding-right: 12px;
  }

  .form-input.text-area {
    padding-top: 12px;
  }

  .process-step {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .process-title {
    flex-flow: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
  }

  .logo-grid {
    flex-flow: column;
    display: flex;
  }

  .logo-grid-item {
    height: 108px;
  }

  .follow-on-cta {
    flex-flow: column;
  }

  .service-grid {
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .customer-card-body {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .customer-card-bottom {
    justify-content: space-between;
    align-items: center;
  }

  .featured-customer-wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding-bottom: 48px;
  }

  .quote-author-avatar {
    max-height: 54px;
  }

  .quote-author-text {
    color: var(--colors-interface--white);
  }

  .customer-story-wide-logo {
    margin-bottom: 0;
  }

  .customer-meta {
    flex-flow: column;
    display: flex;
  }

  .customer-meta-item {
    height: 108px;
  }

  .icon-center-item {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .rounded-portrait-image {
    aspect-ratio: 1;
  }

  .table-row {
    background-color: #0000;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 12px;
  }

  .table-row.header {
    top: 30px;
  }

  .table-row-comparison {
    text-align: left;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .table-cell {
    border-radius: var(--border-radius--small);
  }

  .table-cell.highlight, .table-cell.highlight.round-top, .table-cell.highlight.round-bottom, .table-cell.highlight, .table-cell.highlight.round-top, .table-cell.highlight.round-bottom, .table-cell.highlight.round-top, .table-cell.highlight.round-bottom {
    background-color: var(--light-blue);
  }

  .table-rows {
    padding-bottom: 24px;
  }

  .wide-feature-box-content {
    padding: 18px;
  }

  .feature-box-title {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column-reverse;
  }

  .text-feature-halves {
    grid-column-gap: var(--grid-gaps--default);
    grid-row-gap: var(--grid-gaps--default);
    flex-flow: column;
    display: flex;
  }

  .narrow-icon-thirds {
    grid-row-gap: 12px;
  }

  .small-icon-item {
    width: 100%;
    max-width: 100%;
  }

  .page-nav {
    flex-flow: column;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    position: static;
  }

  .industry-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .industry-detail-card {
    padding: 18px;
  }

  .contact-methods {
    grid-column-gap: var(--grid-gaps--default);
    grid-row-gap: var(--grid-gaps--default);
  }

  .pricing-grid {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .pricing-plan {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .price-wrap {
    margin-top: 24px;
  }

  .stat-card-wrap {
    padding: 0;
  }

  .block-header {
    padding-left: 18px;
    padding-right: 18px;
  }

  .block-content {
    padding: 18px;
  }

  .about-2-hero-content {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    padding-top: 48px;
    padding-bottom: 0;
  }

  .wide-cta-blob-wrapper-a {
    top: -37.6vw;
    left: 31.6vw;
    transform: rotate(77deg);
  }

  .heading-h3-copy.long-text {
    font-size: var(--typography--h4-size);
    line-height: var(--typography--h4-line-height);
    font-size: var(--typography--h4-size);
    line-height: var(--typography--h4-line-height);
  }

  .square-copy {
    background-color: var(--colors-interface--white);
  }

  .display-heading-copy {
    font-size: var(--typography--display-size);
  }

  .heading-h3-copy.long-text {
    font-size: var(--typography--h4-size);
    line-height: var(--typography--h4-line-height);
    font-size: var(--typography--h4-size);
    line-height: var(--typography--h4-line-height);
  }

  .heading-h2-copy.long-title {
    font-size: var(--typography--h3-size);
    line-height: var(--typography--h3-line-height);
    font-size: var(--typography--h3-size);
    line-height: var(--typography--h3-line-height);
  }

  .badge-cta-wrap {
    justify-content: flex-start;
    align-items: center;
  }

  .article-copy {
    margin-top: -86px;
  }

  .bg-hero-video {
    flex-flow: column;
    justify-content: flex-end;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-btm-wrap {
    display: flex;
    position: static;
  }

  .video-wrap {
    width: 100%;
    height: 100%;
    display: none;
  }

  .heading-wrap {
    grid-column-gap: 22px;
    grid-row-gap: 22px;
    padding-bottom: 22px;
    top: 0;
  }

  .video-code-embed {
    width: 100%;
  }

  .button-component-primary {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .button-component-primary:where(.w-variant-190363e1-f26a-887a-1377-9bc8b2c760f3) {
    width: auto;
  }

  .font-family-serif {
    font-style: italic;
  }

  .contact-section-contents {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .location-wrap {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  ._20px-section-padding {
    padding: 10px;
  }

  .privacy-policy-tos {
    margin-top: -86px;
  }
}

#w-node-_1b0708c6-e4ed-5786-ce8a-bec6b0f13b15-08693dce {
  grid-area: 1 / 1 / 2 / 2;
  justify-self: stretch;
}

#w-node-_2c5d425a-afdb-b0a5-6d28-6bd332dbd596-08693dce {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-ea2a0b89-9c59-245a-e1be-485f748f8a83-08693dce {
  grid-area: 2 / 1 / 3 / 2;
}

@media screen and (max-width: 991px) {
  #w-node-f5ee0d7a-297b-3bed-98d2-38489e376a5a-08693dce {
    align-self: stretch;
  }
}
