@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

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

:root {
  --color--background: var(--black);
  --color--text: var(--white);
  --grey: #999;
  --white: #fcfcfa;
  --light--background: var(--white);
  --light--text: var(--black);
  --black: #0a0a0a;
  --neon: #96ff7c;
  --color--button-background: var(--neon);
  --secondary-yellow: #ffbc03;
  --dark--background: var(--black);
  --dark--text: var(--white);
  --grey-light: #f6f6f6;
  --color--button-text: var(--black);
  --color--para: var(--grey);
  --dark--button-background: var(--neon);
  --dark--button-text: var(--black);
  --dark--para: var(--grey);
  --light--button-background: var(--neon);
  --light--button-text: var(--black);
  --light--para: var(--grey);
}

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

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

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

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

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

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

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

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

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

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

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

body {
  background-color: var(--color--background);
  color: var(--color--text);
  font-family: Satoshi, Georgia, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.875rem;
}

h1 {
  letter-spacing: -2px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Satoshi, Georgia, sans-serif;
  font-size: 4.3125rem;
  font-weight: 500;
  line-height: 4.75rem;
}

h2 {
  letter-spacing: -2px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Satoshi, Georgia, sans-serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1;
}

h3 {
  letter-spacing: -.2px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Satoshi, Georgia, sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.2;
}

h4 {
  letter-spacing: -1px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Satoshi, Georgia, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Satoshi, Georgia, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Satoshi, Georgia, sans-serif;
  font-size: .75rem;
  font-weight: 500;
  line-height: 2;
}

p {
  color: var(--grey);
  letter-spacing: -.8px;
  margin-bottom: 0;
}

li {
  letter-spacing: -.5px;
}

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

.max-width-full {
  width: 100%;
  max-width: none;
}

.fs-styleguide_label {
  color: #fff;
  background-color: #2d62ff;
  border-radius: .25rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .75rem .3rem;
  font-weight: 600;
  display: flex;
}

.fs-styleguide_label.is-tag {
  background-color: #dd23bb;
}

.text-size-tiny {
  font-size: .75rem;
}

.nav_menu_link {
  color: #fff;
  padding: 1rem;
}

.fs-styleguide_section-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid #eee;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-bottom: 3rem;
  line-height: 1.4;
  display: grid;
}

.padding-section-large {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.padding-section-large.no-bottom-pad {
  padding-bottom: 0;
}

.icon-1x1-medium {
  width: 2rem;
  height: 2rem;
}

.fs-styleguide_hero-label {
  color: #000;
  text-transform: uppercase;
  background-color: #eee;
  border-radius: .25rem;
  padding: .25rem .375rem;
  font-size: .75rem;
  font-weight: 500;
  text-decoration: none;
}

.padding-custom3 {
  padding: 3.5rem;
}

.heading-style-h6 {
  font-size: 1.625rem;
}

.spacer-xxhuge {
  width: 100%;
  padding-top: 12rem;
}

.fs-styleguide_background {
  border: 1px solid #0000001a;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

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

.spacer-xhuge {
  width: 100%;
  padding-top: 8rem;
}

.overflow-visible {
  overflow: visible;
}

.fs-styleguide_header-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

.overflow-hidden {
  overflow: hidden;
}

.pointer-events-none {
  pointer-events: none;
}

.margin-xsmall {
  margin: .5rem;
}

.icon-1x1-large {
  width: 2.5rem;
  height: 2.5rem;
}

.margin-horizontal {
  margin-top: 0;
  margin-bottom: 0;
}

.fs-styleguide_item-header {
  border-bottom: 1px solid #0000001a;
  width: 100%;
  padding-bottom: 2rem;
}

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

.fs-styleguide_heading-header {
  font-size: 6rem;
}

.fs-styleguide_item-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.text-weight-xbold {
  font-weight: 800;
}

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

.fs-styleguide_section.is-vertical {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-columns: 1fr;
}

.icon-1x1-small {
  flex: none;
  width: 1rem;
  height: 1rem;
}

.form_checkbox {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.padding-small {
  padding: 1rem;
}

.fs-styleguide_header {
  color: #fff;
  background-color: #000;
  background-image: radial-gradient(circle at 100% 100%, #dd23bb40, #0000 40%), radial-gradient(circle at 0 100%, #2d62ff4d, #0000 60%);
}

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

.pointer-events-auto {
  pointer-events: auto;
}

.max-width-medium {
  width: 100%;
  max-width: 32rem;
}

.text-color-alternate.max-width-27 {
  max-width: 27rem;
}

.text-color-alternate.pricing {
  font-size: 1.8rem;
}

.text-color-alternate.tagtext {
  font-size: .9rem;
}

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

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

.text-weight-medium.text-size-large {
  letter-spacing: -.2px;
  flex: 1;
}

.spacer-medium {
  width: 100%;
  padding-top: 2rem;
}

.text-style-muted {
  opacity: .6;
}

.margin-custom1 {
  margin: 1.5rem;
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.text-size-regular {
  font-size: 1rem;
  line-height: 1.5;
}

.text-size-regular.opacity-60 {
  opacity: .6;
}

.fs-styleguide_spacing-all {
  display: none;
}

.form_component {
  margin-bottom: 0;
}

.spacer-xxlarge {
  width: 100%;
  padding-top: 5rem;
}

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

.spacer-huge {
  width: 100%;
  padding-top: 6rem;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-small {
  margin: 1rem;
}

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

.text-align-center.max-width-xlarge {
  letter-spacing: -2.5px;
  line-height: 1.1;
}

.text-align-center.align-center.max-width-60 {
  max-width: 60rem;
}

.hide {
  display: none;
}

.heading-style-h1 {
  font-size: 4.33rem;
  line-height: 1.2;
}

.overflow-scroll {
  overflow: scroll;
}

.margin-tiny {
  margin: .125rem;
}

.padding-xhuge {
  padding: 8rem;
}

.max-width-small {
  width: 100%;
  max-width: 20rem;
}

.icon-height-small {
  height: 1rem;
}

.padding-xxhuge {
  padding: 12rem;
}

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

.text-color-primary.tagtest {
  font-size: .9rem;
}

.padding-large {
  padding: 3rem;
}

.aspect-ratio-portrait {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-group.is-center {
  justify-content: center;
}

.button-group.is-center.hidden {
  display: none;
}

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

.text-align-right {
  text-align: right;
}

.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.aspect-ratio-landscape {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.text-weight-normal {
  font-weight: 400;
}

.padding-custom1 {
  padding: 1.5rem;
}

.form_radio {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

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

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

.spacer-xlarge {
  width: 100%;
  padding-top: 4rem;
}

.padding-0 {
  padding: 0;
}

.overflow-auto {
  overflow: auto;
}

.text-style-italic {
  font-style: italic;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.margin-xxhuge {
  margin: 12rem;
}

.text-weight-semibold {
  font-weight: 600;
}

.padding-custom2 {
  padding: 2.5rem;
}

.fs-styleguide_2-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.fs-styleguide_2-col.is-align-start {
  align-items: start;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.fs-styleguide_empty-box {
  z-index: -1;
  background-color: #2d40ea0d;
  border: 1px dashed #2d40ea;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.text-color-secondary {
  color: var(--grey);
}

.margin-vertical {
  margin-left: 0;
  margin-right: 0;
}

.main-wrapper.is-light {
  background-color: var(--light--background);
  color: var(--light--text);
}

.spacer-tiny {
  width: 100%;
  padding-top: .125rem;
}

.aspect-ratio-widescreen {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.heading-style-h4 {
  line-height: 1.4;
}

.margin-large {
  margin: 3rem;
}

.margin-0 {
  margin: 0;
}

.icon-height-large {
  height: 3rem;
}

.margin-xxsmall {
  margin: .25rem;
}

.form_message-success {
  color: #114e0b;
  background-color: #cef5ca;
  padding: 1.25rem;
}

.aspect-ratio-square {
  aspect-ratio: 1;
  object-fit: cover;
}

.background-color-alternate {
  background-color: #fff;
}

.heading-style-h3.text-color-primary {
  color: var(--black);
}

.fs-styleguide_heading-medium {
  font-size: 4rem;
}

.margin-xlarge {
  margin: 4rem;
}

.button {
  background-color: var(--neon);
  color: var(--black);
  text-align: center;
  border-radius: .8rem;
  padding: .5rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
}

.button:hover {
  outline-offset: 0px;
  outline: 3px solid rgba(150, 255, 124, 0.5);
}

.button.is-text {
  color: var(--white);
  background-color: #0000;
  border: 2px solid #0000;
}

.button.is-secondary {
  color: var(--white);
  background-color: #0000;
  border: 1px solid #222;
}

.button.is-secondary:hover {
  outline-color: #99999980;
}

.button.is-large {
  padding: 1rem 2rem;
}

.button.is-icon {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.button.is-small {
  padding: .5rem 1.25rem;
}

.button.is-nav {
  padding: .3rem .8rem;
  font-size: .85rem;
}

.button.is-link {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button.is-link.is-icon {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.button.is-arrow {
  background-color: #0000;
  border-radius: 0;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  line-height: 100%;
  text-decoration: none;
  display: flex;
}

.button.is-arrow:hover {
  outline-offset: 0px;
  outline: 3px rgba(150, 255, 124, 0.5);
}

.button.is-arrow.home {
  color: var(--white);
}

.margin-medium {
  margin: 2rem;
}

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

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.text-style-allcaps {
  text-transform: uppercase;
}

.fs-styleguide_spacing {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-image: linear-gradient(to top, #2d40ea1a, #fff0);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start stretch;
  display: grid;
  position: relative;
}

.margin-custom2 {
  margin: 2.5rem;
}

.nav_button {
  padding: 1rem;
}

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

.padding-medium {
  padding: 2rem;
}

.form_radio-icon {
  width: .875rem;
  height: .875rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.form_radio-icon.w--redirected-checked {
  border-width: .25rem;
  width: .875rem;
  height: .875rem;
}

.form_radio-icon.w--redirected-focus {
  width: .875rem;
  height: .875rem;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.fs-styleguide_background-space {
  width: 1px;
  height: 1px;
  margin: 5rem;
}

.text-size-small {
  font-size: .875rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.text-size-large.text-color-white-secondary {
  max-width: 20rem;
}

.form_message-error {
  color: #3b0b0b;
  background-color: #f8e4e4;
  margin-top: .75rem;
  padding: .75rem;
}

.padding-xsmall {
  padding: .5rem;
}

.spacer-xsmall {
  width: 100%;
  padding-top: .5rem;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

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

.container-large.nav-spacing {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.fs-styleguide_4-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.heading-style-h5.text-color-primary {
  color: var(--black);
}

.spacer-small {
  width: 100%;
  padding-top: 1rem;
}

.fs-styleguide_3-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  display: grid;
}

.fs-styleguide_3-col.is-align-start {
  align-items: start;
}

.fs-styleguide_item {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  border-bottom: 1px solid #0000001a;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 3rem;
  display: grid;
  position: relative;
}

.fs-styleguide_item.is-stretch {
  justify-items: stretch;
}

.text-style-nowrap {
  white-space: nowrap;
}

.margin-huge {
  margin: 6rem;
}

.page-wrapper.fixed-nav {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100svh;
  padding-bottom: 3.5rem;
  display: flex;
  position: relative;
}

.page-wrapper.position-rel {
  position: relative;
}

.page-wrapper.is-light {
  background-color: var(--light--background);
  color: var(--light--text);
}

.nav_component {
  background-color: #000;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  inset: 0% 0% auto;
}

.padding-xxsmall {
  padding: .25rem;
}

.z-index-2 {
  z-index: 2;
  position: relative;
}

.margin-top {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-top.margin-medium {
  margin-bottom: 2rem;
}

.margin-xhuge {
  margin: 8rem;
}

.padding-huge {
  padding: 6rem;
}

.fs-styleguide_spacer-box {
  background-color: #2d40ea1a;
  border: 1px dashed #2d40ea;
  width: 100%;
  position: relative;
}

.form_input {
  background-color: #0000;
  border: 1px solid #eee;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
  font-size: 1rem;
}

.form_input::placeholder, .form_input.is-select-input {
  color: #222;
}

.form_input.is-text-area {
  min-height: 8rem;
  padding-top: .75rem;
  font-size: 1rem;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.padding-global.padding-top {
  padding-top: 1rem;
}

.padding-global.padding_case-study {
  padding-top: 6rem;
  padding-bottom: 4.75rem;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 12rem;
}

.text-style-link {
  color: #2d62ff;
  text-decoration: underline;
}

.padding-tiny {
  padding: .125rem;
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.margin-right {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.max-width-xsmall {
  width: 100%;
  max-width: 16rem;
}

.background-color-tertiary {
  background-color: var(--neon);
}

.text-size-medium {
  font-size: 1.25rem;
}

.padding-xlarge {
  padding: 4rem;
}

.margin-left {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.fs-styleguide_row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.spacer-large {
  padding-top: 3rem;
}

.background-color-primary {
  color: #fff;
  background-color: #000;
}

.container-medium {
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.text-style-quote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.spacer-xxsmall {
  width: 100%;
  padding-top: .25rem;
}

.fs-styleguide_1-col {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.fs-styleguide_message {
  color: #5e5515;
  background-color: #fcf8d8;
  border-radius: .25rem;
  padding: .25rem .5rem;
  font-size: .875rem;
}

.nav_logo {
  width: 10rem;
}

.margin-custom3 {
  margin: 3.5rem;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.form_checkbox-icon {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-checked {
  background-size: 90%;
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-focus {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.nav_container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.icon-height-medium {
  height: 2rem;
}

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

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.heading {
  color: #fcfcfa;
}

.hero_text-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.max-width-40 {
  width: 100%;
  max-width: 40rem;
}

.button_flex-horizontal {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: space-between;
  display: flex;
}

.button_flex-horizontal.about {
  justify-content: flex-start;
}

.glowing-wrapper-button {
  z-index: 1;
  color: #fff;
  letter-spacing: -.01em;
  border: 1px solid #ffffff1a;
  border-radius: 62.5rem;
  padding: .1rem 1.5rem;
  font-size: .88rem;
  line-height: 1.42;
  text-decoration: none;
  display: flex;
  position: relative;
}

.glowing-wrapper-button.hub-tag {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.glowing-wrapper-animations {
  opacity: 0;
  width: 100%;
  transition: opacity 1s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.glowing-wrapper {
  border-radius: 62.5rem;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.glowing-wrapper-borders {
  opacity: 1;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.glowing-wrapper-mask-wrapper {
  opacity: 1;
}

.glowing-wrapper-borders-masker {
  opacity: 0;
  border-radius: 62.5rem;
  width: 100%;
  padding: .06rem;
  line-height: 100%;
  transition: opacity 1s;
  position: absolute;
  top: 0;
  left: 0;
}

.glowing-wrapper-glow {
  opacity: .12;
  filter: blur(8px);
}

.glowing-wrapper-mask {
  opacity: 1;
}

.button-text {
  z-index: 2;
  color: #0000;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#fff6, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 500;
  position: relative;
}

.button-text.is-smaller {
  letter-spacing: -.01px;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.2;
}

.styles---glowing-button {
  display: none;
}

.menu-outer {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #1a1b1e66;
  border: 1px solid #222325;
  border-radius: 100px;
  flex-direction: column;
  max-width: 100%;
  padding: 9px;
  display: flex;
  position: sticky;
}

.menu-expand {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #1a1b1e;
  border-radius: 23px;
  flex-direction: column;
  max-width: 100%;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.menu-expand-header {
  color: #313235;
  border-bottom: 1px solid #222325;
  margin-top: 24px;
  margin-left: 24px;
  margin-right: 24px;
  padding-bottom: 13px;
  font-size: 10px;
  line-height: 120%;
}

.menu-expand-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  margin-bottom: 24px;
  margin-left: 24px;
  margin-right: 24px;
  display: grid;
}

.menu-expand-link {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 142.857%;
  text-decoration: none;
  transition: all .2s ease-in-out;
}

.menu-expand-link:hover {
  text-decoration: underline;
}

.menu-inner {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #1a1b1e;
  border-radius: 92px;
  justify-content: space-between;
  width: 100%;
  padding: 12px;
  display: flex;
  overflow: auto;
}

.menu-link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  cursor: pointer;
  border: 1px solid #222325;
  border-radius: 80px;
  flex: none;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 114.286%;
  text-decoration: none;
  transition: background-color .2s ease-in-out;
  display: flex;
}

.menu-link:hover {
  background-color: #36353a;
}

.menu-link.get-in-touch {
  background-color: #36353a;
  transition: color .2s ease-in-out, background-color .2s ease-in-out;
}

.menu-link.get-in-touch:hover {
  color: #111;
  background-color: #fff;
}

.line-rounded-icon.dropdown-arrow {
  color: var(--white);
  margin-left: 8px;
}

.line-rounded-icon.link-icon-left {
  margin-right: 6px;
  display: inline-block;
}

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

.grid-1-column.dropdown-link-column {
  grid-column-gap: 0px;
  grid-row-gap: 18px;
  justify-items: start;
}

.btn-primary {
  color: #fff;
  text-align: center;
  transform-style: preserve-3d;
  background-color: #4a3aff;
  border-radius: 48px;
  justify-content: center;
  padding: 26px 38px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .3s, transform .3s, color .3s;
}

.btn-primary:hover {
  color: #fff;
  background-color: #3324d5;
  transform: translate3d(0, -3px, .01px);
}

.btn-primary.small {
  padding: 18px 24px;
  font-size: 16px;
  line-height: 18px;
}

.btn-primary.small.header-btn-hidde-on-mb {
  background-color: var(--neon);
  color: var(--black);
  margin-left: 24px;
}

.dropdown-column-wrapper {
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 20px;
  overflow: hidden;
  transform: translate(-50%);
  box-shadow: 0 2px 12px #14142b14;
}

.header-logo {
  max-width: 240px;
}

.brix---btn-header-hidden-on-mbl {
  margin-left: 24px;
}

.brix---btn-header-hidden-on-mbl.v16 {
  margin-left: 0;
}

.brix---header-wrapper-rounded {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #0a0a0acc;
  border: 1px solid #9999994d;
  border-radius: 12px;
  max-width: 55rem;
  box-shadow: 0 3px 10px #211f5414;
}

.hamburger-menu-wrapper {
  padding: 0;
}

.hamburger-menu-wrapper.w--open {
  background-color: #0000;
}

.header-nav-link {
  color: var(--white);
  padding: 0;
  font-size: .8rem;
}

.header-nav-link:hover {
  color: var(--grey);
}

.brix---header-left-col {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  display: flex;
}

.dropdown-link {
  color: #6e7191;
  width: 100%;
  padding: 0;
  line-height: 20px;
}

.dropdown-link:hover {
  color: #4a3aff;
}

.dropdown-toggle {
  align-items: center;
  padding: 0;
  transition: color .3s;
  display: flex;
}

.dropdown-toggle:hover {
  color: #4a3aff;
}

.dropdown-pd {
  padding: 40px;
}

.brix---header-right-col {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

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

.link-wrapper {
  color: #211f54;
  transition: none;
  display: inline-block;
}

.link-wrapper:hover {
  color: #4a3aff;
}

.header-logo-link {
  transform-style: preserve-3d;
  padding-left: 0;
  transition: transform .3s, color .3s;
}

.header-logo-link:hover {
  transform: scale3d(.96, .96, 1.01);
}

.header-logo-link.left {
  padding-right: 40px;
}

.header-logo-link.left.w--current {
  padding-right: .125rem;
}

.brix---container-default {
  max-width: 1218px;
  padding: .65rem 1rem;
}

.header-nav-menu-list {
  z-index: 1;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.link-text {
  transition: color .3s;
  display: inline-block;
}

.header-nav-list-item {
  margin-bottom: 0;
  padding-left: 32px;
}

.header-nav-list-item.left {
  padding-left: 0;
  padding-right: 1.6rem;
}

.header-nav-list-item.show-in-tablet {
  display: none;
}

.hamburger-menu-bar {
  background-color: #211f54;
  border-radius: 20px;
  width: 52px;
  height: 4px;
  margin-top: 12px;
  margin-bottom: 12px;
}

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

.navbar {
  z-index: 9999;
  position: sticky;
  top: .25rem;
}

.logos-quote-divider {
  border-bottom: 1px solid #e4ebf3;
  padding: 60px 30px;
  position: relative;
}

.container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.clients-wrapper-two {
  justify-content: space-between;
  align-items: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.clients-info-two {
  flex-direction: column;
  align-items: flex-start;
  max-width: 350px;
  display: flex;
}

.clients-quote-two {
  margin-top: 10px;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}

.clients-divider {
  background-color: #e4ebf3;
  width: 90%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.clients-info {
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  display: flex;
}

.clients-info-image {
  object-fit: cover;
  width: 50px;
  height: 50px;
  margin-right: 24px;
}

.marquee-infinite-slide-wrapper {
  width: 100vw;
  padding: 5.625rem 0 1.5rem;
  overflow: hidden;
}

.marquee-infinite-slide-box {
  grid-column-gap: 2rem;
  display: flex;
  position: static;
}

.marquee-infinite-slide-block {
  border-radius: 12px;
  width: 40%;
}

.marquee-infinite-slide-wrapper-alt {
  width: 100vw;
  padding-left: 0;
  padding-right: 0;
  display: block;
  overflow: hidden;
}

.marquee-infinite-slide-box-alt {
  grid-column-gap: 2rem;
  width: 100vw;
  display: flex;
  position: static;
}

.logos-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.logos-title-small {
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}

.logos-title-small.padding-section-large.is-no-bottom {
  padding-bottom: 4.2rem;
}

.clients-tag {
  text-align: center;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 20px;
}

.clients-wrapper-three {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  display: flex;
}

.clients-image-three {
  margin-bottom: 10px;
  margin-left: 15px;
  margin-right: 15px;
}

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

.tag {
  box-shadow: 0 1px 20px -10px var(--white);
  text-align: center;
  border: 1px solid #9996;
  border-radius: 12px;
  padding: .25rem .6rem;
}

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

.card-wrapper {
  height: 15.5rem;
  color: var(--black);
  background-color: #fcfcfa;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
}

.card-wrapper.green {
  background-color: #d0e957;
}

.card-wrapper.orange {
  background-color: var(--secondary-yellow);
}

.problems-section_text {
  letter-spacing: -.2px;
  font-size: 1.625rem;
  line-height: 2.25rem;
}

.tag-solution {
  box-shadow: 0 1px 14px -3px var(--neon);
  text-align: center;
  border: 1px solid #9999994d;
  border-radius: 12px;
  padding: .25rem .6rem;
}

.process_overlay-top {
  z-index: 2;
  background-image: linear-gradient(#fcfcfa75, #0000);
  height: 8rem;
  position: absolute;
  inset: 0% 0% auto;
}

.process_item-image_container {
  grid-row-gap: 0rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.process_item-image_container.step-3 {
  width: 70%;
  height: auto;
  inset: 0% 0% 0% auto;
}

.text-style-callout {
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
}

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

.process_container {
  position: relative;
}

.process_item-container {
  z-index: 5;
  background-color: #000;
  background-image: linear-gradient(#1f1f1f, #0b0d01);
  border-radius: 2rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 20rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.process_item-container.is-3 {
  background-image: url('../images/Screenshot-2025-02-16-at-4.51.03-PM.webp'), linear-gradient(#1f1f1f, #0b0d01);
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
}

.process_step {
  grid-column-gap: 2rem;
  border-radius: 2rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 4rem 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: grid;
  position: relative;
}

.process_item-description {
  z-index: 3;
  position: relative;
}

.text-color-secondary-2 {
  color: #0b0d01a3;
}

.process_item-indicator {
  z-index: 2;
  background-color: var(--neon);
  border-radius: 128rem;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  display: flex;
  position: relative;
  box-shadow: 0 0 0 1.5rem #fff;
}

.process_timeline-progress {
  z-index: -1;
  background-color: var(--black);
  width: .1875rem;
  height: 0;
}

.process_overlay-bottom {
  z-index: 2;
  background-image: linear-gradient(0deg, #fcfcfa75, #0000);
  height: 8rem;
  position: absolute;
  inset: auto 0% 0%;
}

.process_wrapper {
  z-index: 5;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 40% 10% 40%;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

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

.process_item-image.step-1 {
  inset: 0%;
  transform: scale(1)translate(0, -3rem)rotate(-15deg);
}

.process_item-image.step-3-1 {
  transform: translate(0, 10%)scale(.8);
}

.process_item-image.step-3-3 {
  top: 10%;
  transform: translate(0, -10%)scale(.8);
}

.process_item-image.step-3-2 {
  top: 5%;
  transform: translate(0)scale(.8);
}

.process_item-image.step-2-arrow {
  max-width: 40%;
}

.process_timeline {
  z-index: 1;
  background-color: #0b0d011f;
  width: .1875rem;
  height: 100%;
  position: absolute;
  box-shadow: inset 0 -3px 3px -8px #fff;
}

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

.list-item {
  grid-column-gap: .75rem;
  align-self: flex-start;
  align-items: center;
  display: flex;
}

.plan_right {
  grid-row-gap: 3rem;
  background-color: #0b0d01;
  background-image: linear-gradient(#343434, #141414);
  border-radius: 2rem;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  display: flex;
  overflow: hidden;
}

.plan_right.shadow-card {
  box-shadow: 0 2px 13px 0 var(--grey);
  background-image: linear-gradient(#343434, #141414);
}

.page-padding {
  z-index: 1;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.text_eyebrow {
  color: #9353ff;
  text-transform: uppercase;
  font-weight: 500;
}

.plan_left {
  grid-row-gap: 3rem;
  background-color: #fff;
  border-radius: 2rem;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  display: flex;
  overflow: hidden;
}

.plan_left.shadow-card {
  box-shadow: 0 1px 20px -11px var(--neon);
}

.plan_left.shadow-card-black {
  box-shadow: 0 2px 13px #99999936;
}

.plan_name-container {
  grid-row-gap: .5rem;
  text-align: center;
  border-bottom: .0625rem solid #ffffff29;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 3rem;
  display: flex;
}

.plan_name-container.left {
  border-bottom-color: #0b0d011f;
}

.plan_price-container {
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.plans_container {
  grid-column-gap: 2rem;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.button-plans {
  color: #0b0d01;
  text-align: center;
  background-color: #fafafa;
  justify-content: center;
  padding: 2rem 3rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  transition: background-color .3s ease-in-out;
}

.button-plans:hover {
  background-color: #e0e0e0;
}

.button-plans.green {
  background-color: var(--neon);
}

.button-plans.green:hover {
  background-color: #c1e049;
}

.icon-1x1-small-2 {
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1;
}

.section-home-plans {
  background-image: url('../images/pricing-circle.svg');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.plan_features-icon {
  border-radius: .75rem;
  justify-content: center;
  align-items: center;
  padding: .5rem;
  display: flex;
}

.plan_features-icon.green {
  color: #dbfe52;
}

.plan_features-icon.black {
  color: #dbfe52;
  background-color: #ffffff29;
}

.plan_features-icon.white {
  background-color: #dbfe52;
}

.text-size-medium-2 {
  font-size: 1.25rem;
  line-height: 1.3;
}

.text-size-medium-2.text-color-secondary.text-color-transparent {
  color: #9990;
}

.plan_features-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  align-self: center;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
}

.plan_price-text {
  grid-column-gap: .25rem;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
}

.plan_price-text.left {
  color: #0b0d01;
}

.text-color-white-secondary {
  color: #ffffffb3;
}

.text-color-white {
  color: #fff;
}

.text-color-white.pricing {
  font-size: 1.8rem;
}

.section-header {
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.heading-2 {
  letter-spacing: -.2px;
}

.abous-grid.padding-top {
  padding-top: 7rem;
}

.content-wrapper, .para-wrap.max-width-medium {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.image-wrapper {
  border-radius: 24px;
  width: 100%;
  display: flex;
  position: relative;
  overflow: clip;
}

.section_testimonial.is-case-study {
  background-color: var(--light--background);
  color: var(--light--text);
}

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

.faq_section-title {
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: 32rem;
  display: flex;
  position: sticky;
  top: 25%;
}

.faq_answer {
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.graphic_faq {
  max-width: 53rem;
  position: absolute;
  top: -169%;
  left: -24%;
}

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

.faq_expand-icon {
  background-color: var(--neon);
  border-radius: .75rem;
  justify-content: center;
  align-self: center;
  align-items: center;
  padding: .5rem;
  display: flex;
}

.faq_expand-icon.is-case-study {
  background-color: var(--white);
}

.faq_item {
  border-bottom: .0625rem solid #0b0d011f;
}

.faq_item.last-child {
  border: 1px #000;
}

.section-home-faq {
  position: relative;
}

.section-home-faq.is-case-study {
  background-color: var(--color--text);
  color: var(--black);
}

.faq_question-expand.is-case-study {
  opacity: 0;
}

.faq_answer-content {
  padding-bottom: 2rem;
}

.faq_question {
  z-index: 2;
  grid-column-gap: 2rem;
  cursor: pointer;
  justify-content: space-between;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  position: relative;
}

.faq_section-content {
  flex-direction: column;
  flex: 1;
  display: flex;
}

.text-style-link-2 {
  text-decoration: underline;
}

.faq_section {
  grid-column-gap: 3rem;
  flex-direction: row;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.faq_section.is-case-study {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.banner-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  width: 100%;
  height: 80svh;
  box-shadow: 0 1px 17px -11px var(--neon);
  border: 1px solid #9999994a;
  border-radius: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 4rem;
  display: flex;
}

.footer-dark {
  background-color: var(--black);
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 30px 15px;
  position: relative;
}

.container-2 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.title-small {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.footer-link {
  color: #1a1b1f;
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
}

.footer-link:hover {
  color: #1a1b1fbf;
}

.footer-social-block {
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  margin-left: -12px;
  display: flex;
}

.footer-social-link {
  margin-left: 12px;
}

.footer-divider {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 15px;
}

.footer-copyright-center {
  text-align: center;
  font-size: 14px;
  line-height: 16px;
}

.footer-subscribe {
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 30px 40px;
  position: relative;
}

.footer-form-two {
  background-color: #f5f7fa;
  margin-bottom: 40px;
  padding: 64px;
}

.footer-form-container-two {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-form-title {
  font-size: 24px;
  line-height: 32px;
}

.footer-form-block-two {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.footer-form-input {
  background-color: var(--white);
  border: 1px #000;
  border-radius: .8rem;
  width: 18.75rem;
  height: 44px;
  margin-bottom: 0;
  padding: 12px 20px;
}

.footer-form-input::placeholder {
  color: #1a1b1fcc;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.button-primary.footer-form-button {
  padding: 8px 18px;
}

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

.footer-block-three {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.footer-link-three {
  color: var(--grey);
  letter-spacing: -.2px;
  margin-left: 20px;
  margin-right: 20px;
  font-size: .9rem;
  text-decoration: none;
}

.footer-link-three:hover {
  color: var(--white);
}

.footer-social-block-three {
  justify-content: flex-start;
  align-items: center;
  margin-left: -32px;
  display: flex;
}

.footer-social-link-three {
  margin-left: 32px;
}

.footer-divider-two {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

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

.footer-copyright {
  color: #3a4554;
}

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

.footer-legal-link {
  color: #3a4554;
  margin-left: 24px;
}

.footer-legal-link:hover {
  color: #3a4554;
}

.section_footer {
  border-top: 1px solid #9999994d;
  width: 100%;
  overflow: hidden;
}

.footer_left-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  display: flex;
}

.image {
  margin-left: -20px;
}

.footer-text {
  max-width: 30rem;
  color: var(--white);
  font-size: 1.125rem;
}

.footer-text.para {
  max-width: 25rem;
  color: var(--grey);
  font-size: .9rem;
  line-height: 1.4rem;
}

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

.marquee_track {
  flex-flow: column;
  flex: none;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

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

.marquee_flex {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.marquee_item {
  flex: none;
  width: 100%;
  margin-bottom: 1rem;
}

.marquee_img-wrap {
  width: 100%;
  padding-top: 59%;
  position: relative;
}

.marquee_img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.marquee {
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.basenine_img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.marquee_track_reverse {
  flex-flow: column;
  flex: none;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.clients-wrapper-three-copy {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.home-logo-left-gradient {
  background-image: linear-gradient(90deg, var(--black), #fff0);
  width: 10%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.home-logo-left-gradient.right {
  background-image: linear-gradient(270deg, var(--black), #fff0);
  inset: 0% 0% 0% auto;
}

.client-logo {
  opacity: .8;
  object-fit: contain;
  width: 100%;
  max-width: 6rem;
  min-height: 5rem;
  max-height: 5.5rem;
  transition: opacity .4s;
}

.client-logo:hover {
  opacity: 1;
}

.client-logo.is-bigger {
  max-width: 7rem;
}

.client-logo.is-smaller {
  max-width: 6rem;
}

.client-logo.is-biggest {
  max-width: 8rem;
}

.overline {
  color: var(--white);
  text-align: center;
  letter-spacing: .08rem;
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 500;
}

.clients-grid-2 {
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  opacity: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.clients-grid-2.logo-animate-alt {
  grid-column-gap: 3rem;
  flex: none;
  width: 100rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: auto;
  display: flex;
}

.clients-grid-2.logo-animate {
  grid-column-gap: 3rem;
  opacity: 1;
  flex: none;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100rem;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  display: flex;
}

.embed {
  display: none;
}

.home-logo-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-logo-wrapper.bottom {
  margin-top: -2rem;
}

.home-logo-wrapper.bottom.hide-dekstop {
  display: none;
}

.logos-marquee {
  width: 100%;
}

.max-width-27 {
  max-width: 27rem;
}

.collection-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  height: 100%;
  display: flex;
}

.review-component {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1.25fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  height: 100%;
  max-height: 37rem;
  display: flex;
  overflow: hidden;
}

.vertical-text {
  color: #0000;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #7e3fff;
  font-size: 10rem;
}

.icon {
  color: #7e3fff;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.paragraph {
  font-size: 1.3rem;
  line-height: 1.7rem;
}

.scroll {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  min-height: 100%;
  display: flex;
  overflow: visible;
}

.left-content {
  width: 70%;
}

.collection-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  height: 100%;
  display: flex;
}

.left-reviews-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  display: flex;
}

.fixed-block {
  z-index: -1;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% -10% 0% auto;
}

.cms-text {
  color: #fff;
  background-color: #7e3fff;
  border-radius: 11px;
  padding: .3rem .5rem;
  display: inline-block;
}

.more-reviews-text {
  color: #fff;
  background-color: #7e3fff;
  border-radius: 5px;
  padding: .4rem .8rem;
  font-size: 1rem;
  line-height: 1.3rem;
}

.reviews-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  width: 100%;
  height: 100%;
  margin-left: 2rem;
  display: flex;
  position: relative;
  transform: rotate(0);
}

.more-review-block {
  cursor: pointer;
  background-color: #fff;
  border-radius: 5px;
  padding: .4rem;
  text-decoration: none;
  transition: box-shadow .25s;
  position: absolute;
  inset: auto 3% 3% auto;
}

.more-review-block:hover {
  box-shadow: 0 0 20px #7e3fff7d;
}

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

.section_reviews {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  margin-bottom: 0;
  display: block;
  overflow: hidden;
}

.star-container {
  grid-column-gap: .2rem;
  grid-row-gap: .2rem;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.right-reviews-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: center;
  display: flex;
  overflow: visible;
}

.review-item {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--black);
  cursor: pointer;
  border: .01px solid #9999995e;
  border-radius: 14px;
  flex-direction: column;
  padding: 1.3rem 1.4rem;
  transition: all .5s;
  display: flex;
}

.review-item:hover {
  z-index: 10;
  box-shadow: none;
  position: relative;
}

.review-text {
  color: var(--color--text);
  font-size: 1rem;
  line-height: 1.3rem;
}

.reviewer-profile-wrapper {
  grid-column-gap: 1.2rem;
  grid-row-gap: 1.2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.reviewer {
  font-size: 1.25rem;
}

.review-star {
  color: #7e3fff;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  display: flex;
}

.testimonial-img {
  object-fit: cover;
  border-radius: 100px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.testimonial_img-wrapper {
  width: 3rem;
  height: 2.7rem;
  position: relative;
  overflow: clip;
}

.reviewer-wrapper {
  flex-flow: column;
  display: flex;
}

.text-block-3 {
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.2;
}

.review-fade {
  flex-flow: column;
  display: flex;
  position: relative;
}

.gradient {
  z-index: 50;
  background-image: linear-gradient(#0a0a0a, #0a0a0a1a);
  flex-flow: column;
  width: 100%;
  height: 10svh;
  display: flex;
  position: absolute;
}

.gradient.bottom {
  background-image: linear-gradient(0deg, #0a0a0a, #0a0a0a1a);
  inset: auto 0% 0%;
}

.tag-content-text-1 {
  z-index: 2;
  color: var(--white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4.312rem;
  font-weight: 500;
  line-height: 4.75rem;
  position: relative;
}

.tag-content-text-1.is-service {
  font-size: 3.5rem;
}

.tag-canvas {
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: scale(1);
}

.tag-content-text-2 {
  z-index: 2;
  color: #ced1dc;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 66px;
  font-weight: 600;
  line-height: 110%;
  position: relative;
}

.tag-vector-3 {
  position: absolute;
  inset: auto auto -22px -17px;
}

.tag-vector-1 {
  position: absolute;
  inset: -17px auto auto -17px;
}

.tag-vector-2 {
  position: absolute;
  inset: -17px -17px auto auto;
}

.tag-content-wrapper {
  z-index: 99;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  width: 100%;
  max-width: 70rem;
  display: flex;
  position: absolute;
  inset: 130px auto auto 50%;
  transform: translate(-50%);
}

.tag-content-text-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 1rem;
  display: flex;
  overflow: hidden;
}

.tag-element {
  border: 1px solid #5259634d;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
}

.tag-vector-4 {
  position: absolute;
  inset: auto -17px -22px auto;
}

.tag-wrapper {
  width: 100%;
  height: 75svh;
}

.clients-grid {
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  opacity: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.clients-grid.logo-animate-alt {
  grid-column-gap: 3rem;
  flex: none;
  width: 100rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: auto;
  display: flex;
}

.clients-grid.logo-animate {
  grid-column-gap: 3rem;
  opacity: 1;
  flex: none;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 106rem;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  display: flex;
  transform: translate(-98rem);
}

.clients-grid.logos {
  width: 80%;
}

.layout485_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
  position: relative;
}

.layout485_content-left {
  align-items: flex-start;
  height: 14rem;
  display: flex;
  position: sticky;
  top: 20%;
  overflow: hidden;
}

.layout485_number {
  font-size: 14rem;
  font-weight: 500;
  line-height: 1;
}

.layout485_number.show-mobile-landscape {
  display: none;
}

.layout485_number-wrapper {
  text-align: center;
}

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

.layout485_progress-wrapper {
  background-color: #9993;
  width: 100%;
  height: 2px;
  margin-bottom: 2rem;
}

.layout485_progress-bar {
  background-color: var(--\<unknown\|relume-variable-text-color-1\>);
  width: 2rem;
  height: 2px;
}

.text-style-tagline {
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.icon-embed-xxsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.img-wrap {
  border-radius: 1rem;
  width: 30svw;
  height: 45%;
  margin-top: 1.5rem;
  position: relative;
  overflow: clip;
}

.image-2, .process-img {
  width: 100%;
  height: 100%;
}

.section_cta25 {
  position: relative;
}

.component-instructions-delete {
  z-index: 1;
  background-color: var(--black);
  text-align: left;
  padding: 2rem;
  position: relative;
}

.component-instructions-list {
  padding-left: 1.25rem;
}

.component-instructions-item {
  padding-left: .5rem;
}

.rl-styleguide_label {
  color: #1e51f7;
  white-space: nowrap;
  cursor: context-menu;
  background-color: #ebeffa;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block;
}

.layout416_card {
  border: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
  background-color: #fff;
  border-radius: 0;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 1.5rem;
  padding: 2rem;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.layout416_card.card-2 {
  z-index: 1;
  background-color: var(--neon);
  color: var(--black);
  border-style: none;
  border-radius: 1rem;
  transform: rotate(3deg);
}

.layout416_card.card-2.z-index-3 {
  z-index: 3;
}

.layout416_card.card-3 {
  background-color: var(--secondary-yellow);
  color: var(--black);
  border-style: none;
  border-radius: 1rem;
  transform: rotate(6deg);
}

.layout416_card.card-3.z-index-3 {
  z-index: 3;
}

.layout416_card.card-1 {
  z-index: 2;
  background-color: var(--white);
  border-style: none;
  border-radius: 1rem;
  padding-right: 2.5rem;
}

.layout416_component {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 300vh;
  position: relative;
}

.layout416_content {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  height: 100vh;
  display: grid;
  position: sticky;
  top: 0;
}

.layout416_content-right {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

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

.layout416_ix-trigger {
  z-index: -1;
  margin-top: 100vh;
  position: absolute;
  inset: 0%;
}

.text-blackish {
  color: #5f5a5a;
}

.card-icon-wrap {
  width: 8rem;
  display: flex;
}

.layout373_grid-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

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

.layout373_card-large {
  border: 1px none var(--\<unknown\|relume-variable-border-color-1\>);
  background-color: #fff;
  border-radius: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: flex;
  overflow: hidden;
}

.layout373_card-large-content {
  flex-direction: column;
  flex: 1;
  justify-content: space-around;
  padding: 3rem;
  display: flex;
}

.layout373_item-icon-wrapper {
  display: inline-block;
}

.layout373_card-small {
  border: 1px none var(--\<unknown\|relume-variable-border-color-1\>);
  background-color: #fff;
  border-radius: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: flex;
  overflow: hidden;
}

.layout373_card-small-content {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 1.5rem;
  display: flex;
}

.webflow-badge {
  white-space: nowrap;
  cursor: pointer;
  visibility: visible;
  z-index: 2147483647;
  color: #aaadb0;
  max-width: 11rem;
  overflow: unset;
  width: 100%;
  height: auto;
  margin: 0;
  font-size: 12px;
  line-height: 14px;
  text-decoration: none;
  display: inline-block;
  position: fixed;
  inset: auto 12px 12px auto;
  transform: none;
}

.hero-header_component {
  grid-column-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.hero-header_content-left {
  max-width: 35rem;
  margin-left: 5vw;
  margin-right: 5rem;
}

.hero-header_content-right {
  grid-column-gap: 1rem;
  align-items: center;
  height: 90svh;
  padding-right: 5vw;
  overflow: hidden;
}

.hero-header_images-layout {
  grid-column-gap: 1rem;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
  position: relative;
}

.hero-header_image-list-left {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  column-count: 2;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-self: center;
  column-gap: 1.5rem;
  width: 100%;
  height: 100%;
  margin-top: -120%;
  display: grid;
}

.hero-header_image-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.hero-header_image-wrapper {
  width: 100%;
  padding-top: 75%;
  position: relative;
}

.hero-header_image {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  position: absolute;
  inset: 0%;
}

.hero-header_image-list-right {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.heading-style-h1-alt {
  font-size: 3.625rem;
  line-height: 1;
}

.marquee-gradient {
  background-image: linear-gradient(#0a0a0a00, #0a0a0a 95%);
  width: 100%;
  height: 8rem;
  position: absolute;
  inset: auto 0% 0%;
}

.marquee-gradient.top {
  background-image: linear-gradient(0deg, #0a0a0a00, #0a0a0a 70%);
  inset: 0% 0% auto;
}

.section_success-stories {
  display: block;
}

.section_success-stories.is-case-study {
  background-color: var(--light--background);
  color: var(--light--text);
}

.success-stories_component.is-case-study {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.success-stories_list {
  grid-column-gap: 2rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.success-stories_item {
  border-radius: 1.5rem;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.success-stories_item.is-light {
  background-color: var(--white);
}

.layout178_image-wrapper {
  border-radius: 1.5rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.success-stories_image {
  box-sizing: border-box;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.category-wrapper {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.client-industry {
  grid-column-gap: .375rem;
  grid-row-gap: .375rem;
  justify-content: flex-start;
  align-items: center;
  font-size: .8rem;
  line-height: 1rem;
  display: flex;
}

.success-stories_content {
  padding-bottom: 2.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.button-showreel {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid #222;
  border-radius: .8rem;
  justify-content: center;
  align-items: center;
  padding: .5rem 1.5rem;
  text-decoration: none;
  display: flex;
}

.text_of-icon-button {
  font-size: 1rem;
  text-decoration: none;
}

.hub-hero_component {
  grid-template-rows: auto;
  grid-template-columns: .75fr 1.25fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.hub-hero_left {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  flex-flow: column;
  padding-top: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.hub-hero_left.display-mobile {
  display: none;
}

.hub-hero_right-content {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  flex-flow: column;
  align-items: flex-start;
  margin-left: 1.875rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
}

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

.hub-hero_content {
  color: var(--grey);
  letter-spacing: -.44px;
  font-size: .875rem;
  line-height: 1.375rem;
}

.hub-hero_right {
  position: relative;
}

.hub-hero_border {
  background-image: linear-gradient(180deg, var(--black), var(--neon) 37.88%, var(--white) 45.5%, var(--neon) 51.83%, var(--black));
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.hub-tools_wrapper {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  align-items: flex-start;
  margin-top: .625rem;
  display: flex;
}

.hub-scope_wrapper {
  grid-column-gap: .625rem;
  grid-row-gap: .325rem;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: start stretch;
  display: flex;
}

.glowing-tag-wrapper {
  background-image: linear-gradient(90deg, var(--black), var(--neon));
  border-radius: 100000000px;
  padding: .5rem 1.5rem;
  display: inline-block;
}

.glowing-tag_text {
  font-size: 1rem;
  line-height: 1.1rem;
}

.hub-hero_title {
  letter-spacing: -1.88px;
  font-size: 1.875rem;
  line-height: 2.5rem;
}

.muted-tag-wrapper {
  border: 1px solid var(--grey);
  border-radius: 3rem;
  padding: .3rem 1.5rem;
}

.muted-tag-text {
  text-transform: uppercase;
  font-size: .875rem;
}

.glowing-tag-text {
  font-size: .85rem;
  line-height: 1.25rem;
}

.hub-mockup_wrapper {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  background-color: var(--white);
  border-radius: 1.25rem;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  padding: .625rem;
  display: grid;
}

.hub-mockup_image {
  object-fit: cover;
  border-radius: .75rem;
  width: 100%;
  max-width: none;
  height: 100%;
}

.hub-website_grid {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  background-color: var(--white);
  border-radius: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: .75rem;
  display: grid;
}

.hub-website_wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.hub-before_tag {
  color: var(--black);
  background-image: none;
  border-radius: 1rem;
  padding: .5rem 1.5rem;
  position: relative;
}

.hub-before_tag.hub-after_tag {
  border: 1px solid var(--black);
  border-radius: 1rem;
  padding: .5rem 1.3rem;
  transform: none;
}

.hub-before_tag.hidden {
  display: none;
}

.hub-website_image {
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  width: 100%;
}

.hub-after_tag {
  background-color: var(--neon);
  color: var(--black);
  border-radius: 1rem;
  padding: .5rem 1.5rem;
}

.hub-mockup_left {
  grid-column-gap: 0rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  display: flex;
}

.styles-tag-border {
  display: none;
}

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

.hub_image {
  border-radius: 1.3rem;
  width: 100%;
  margin-bottom: 1.3rem;
}

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

.hub_title {
  letter-spacing: -1.38px;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.75rem;
}

.flex-horizontal-0-75rem {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  display: flex;
}

.flex-horizontal-0-25rem {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  display: flex;
}

.showreel-popup-component {
  z-index: 9999;
  background-color: #43434382;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0;
}

.showreel-popup-wrapper {
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 70rem;
  position: relative;
  overflow: hidden;
}

.popup-close {
  z-index: 2;
  justify-content: center;
  align-items: center;
  padding-top: .75rem;
  padding-right: .75rem;
  position: absolute;
  top: 0;
  right: 0;
}

.showreel-popup-video {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 56.25%;
  position: relative;
}

.project-card {
  background-color: #0a0a0a;
  border-radius: 26px;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.project-cards-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-top: 64px;
  display: grid;
}

.project-card-image-area {
  background-color: #fff;
  border-radius: 26px;
  height: 280px;
  position: relative;
  overflow: hidden;
}

.project-card-content {
  flex-direction: column;
  gap: 12px;
  padding: 24px 13px;
  display: flex;
}

.project-card-tags {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.project-card-tag {
  color: #fcfcfa;
  letter-spacing: -.4px;
  text-transform: capitalize;
  background-color: #0000;
  border: .7px solid #999;
  border-radius: 22px;
  padding: 4px 10px;
  font-family: Satoshi, sans-serif;
  font-size: 9px;
  font-weight: 500;
}

.project-card-title {
  color: #fcfcfa;
  letter-spacing: -1.4px;
  font-family: Satoshi, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
}

.project-card-industry {
  letter-spacing: -.4px;
  align-items: center;
  gap: 3px;
  font-family: Satoshi, sans-serif;
  font-size: 9px;
  display: flex;
}

.project-card-description {
  color: #999;
  letter-spacing: -.4px;
  font-family: Satoshi, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}

.section_problems {
  background-color: #0a0a0a;
  padding-top: 80px;
  padding-bottom: 80px;
}

.problems_container {
  width: 100%;
  max-width: 945px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.problems_heading {
  color: #fcfcfa;
  text-align: center;
  letter-spacing: -1.9px;
  margin-bottom: 48px;
  font-family: Satoshi, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.4;
}

.problems_grid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
}

.problems_card {
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  height: 209px;
  padding: 43px 27px 44px;
  display: flex;
}

.problems_card.is-white {
  background-color: #fcfcfa;
}

.problems_card.is-green {
  background-color: #d0e957;
}

.problems_card.is-orange {
  background-color: #ffbc03;
}

.problems_text {
  color: #0a0a0a;
  letter-spacing: -.15px;
  font-family: Satoshi, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
}

.problems_section_hero {
  background-color: #1a1a1a;
  padding: 67.5px 33.75px;
}

.problems_heading_large {
  color: #fcfcfa;
  text-align: center;
  letter-spacing: -1.875px;
  margin-bottom: 40.5px;
  font-family: Satoshi, sans-serif;
  font-size: 40.5px;
  font-weight: 500;
  line-height: 58.05px;
}

.problems_grid_layout {
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

.problems_card_base {
  background-color: #fcfcfa;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  width: 315.997px;
  height: 209.25px;
  padding: 43.313px 27px 43.875px;
  display: flex;
}

.problems_card_base.problems_card_green {
  background-color: #d0e957;
}

.problems_card_base.problems_card_yellow {
  background-color: #ffbc03;
}

.problems_card_text {
  color: #0a0a0a;
  text-align: left;
  letter-spacing: -.15px;
  font-family: Satoshi, sans-serif;
  font-size: 21.975px;
  font-weight: 500;
  line-height: 30.375px;
}

.success-stories_item-2 {
  background-color: #0a0a0a;
  border-radius: 1.5rem;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-decoration: none;
  overflow: hidden;
}

.success-stories_item-2.is-case-study {
  background-color: var(--light--background);
  color: var(--light--text);
}

.category-tag {
  border: 1px solid #999;
  border-radius: 1.5rem;
  justify-content: center;
  align-items: center;
  padding-left: .75rem;
  padding-right: .75rem;
  font-size: .8rem;
  font-weight: 500;
  line-height: 2;
  text-decoration: none;
}

.text-color-secondary-3 {
  color: #999;
}

.sucess-stories-wrapper {
  text-decoration: none;
}

.testimonial34_tabs {
  background-color: var(--white);
  border-radius: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
  overflow: hidden;
}

.testimonial34_tabs-menu {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: flex;
}

.testimonial34_tab-link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
}

.testimonial34_tab-link.w--current {
  background-color: #0000;
  border-top-color: #0000;
}

.testimonial34_tab-link.tabs-last {
  border-right-style: none;
}

.testimonial34_tab-logo {
  max-height: 2rem;
}

.testimonial34_tab-logo.dark {
  filter: contrast(500%);
}

.testimonial34_tabs-content {
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-foreground\>);
}

.testimonial34_tab-pane {
  height: 100%;
}

.testimonial34_card {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 3rem;
  display: flex;
}

.testimonial34_card.is-case-study {
  background-color: var(--dark--background);
  color: var(--dark--text);
  border-radius: 1rem;
}

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

.testimonial34_rating-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: .25rem;
  display: flex;
}

.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.testimonial34_client-image-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.testimonial34_client-image {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.testimonial34_client-info {
  color: var(--black);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.testimonial34_client-info.is-case-study {
  background-color: var(--dark--background);
  color: var(--dark--text);
}

.testimonial34_text {
  color: var(--black);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
}

.testimonial34_text.is-case-study {
  background-color: var(--dark--background);
  color: var(--color--text);
}

.testimonial34_content {
  width: 100%;
}

.testimonial34_tab-content_logo {
  opacity: .3;
  max-height: 2rem;
  position: absolute;
  inset: 2rem auto auto 1.75rem;
}

.testimonial34_tab-content_logo.supermove {
  max-width: 10rem;
}

.is-case-study {
  background-color: var(--dark--background);
  color: var(--dark--text);
}

.image_bg-gray {
  background-color: var(--grey-light);
  border-radius: 1.5rem;
  padding: 5rem 2.5rem;
}

.case_studies_image {
  border-radius: 1rem;
  width: 100%;
  box-shadow: 0 16px 64px #0000001a;
}

.case_studies_image.no-shadow {
  box-shadow: none;
}

.case_studies_image.no-shadow.white {
  box-shadow: none;
  background-color: #fff;
}

.case_studies_image.no-shadow.uniqkey {
  border-radius: 3rem;
}

.case_studies_image.no-shadow.uniqkey-2 {
  mix-blend-mode: darken;
}

.case_studies-details-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  color: var(--black);
  grid-template-rows: auto;
  grid-template-columns: auto 53%;
  grid-auto-columns: 1fr;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.25rem;
  display: grid;
}

.case_studies-right-box {
  grid-column-gap: 3.125rem;
  grid-row-gap: 3.125rem;
  flex-flow: column;
  display: flex;
}

.case_studies-points-wrapper {
  grid-column-gap: 2.75rem;
  grid-row-gap: 2.75rem;
  flex-flow: column;
  display: flex;
}

.case_studies-point {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  font-size: 1rem;
  line-height: 100%;
  display: flex;
}

.case_studies-point-heading {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 100%;
}

.section_video {
  position: relative;
  overflow: hidden;
}

.case_study-video-bg {
  z-index: 0;
  background-image: linear-gradient(#deecf5, #0041aa);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.case_study-video-bg.uniqkey {
  background-image: linear-gradient(100.77deg, #ddffd8 .69%, #96ecfb 96.7%);
}

.case_study-video-bg.kodex {
  background-image: linear-gradient(#fff, #ae939b);
}

.case_study-video-bg.feds {
  background-image: linear-gradient(#ffb9b9, #a82e2e);
}

.case_study-video-bg.supermove {
  background-image: linear-gradient(#a1c1fc, #3a7bf3);
}

.case_study-video-adding {
  padding-top: 6rem;
}

.case_study-video-wrapper {
  z-index: 2;
  aspect-ratio: 2;
  object-fit: cover;
  position: relative;
}

.case_study-video-wrapper.supermove {
  aspect-ratio: 54 / 35;
  margin-left: 0;
}

.case_study-video-wrapper.kodex {
  aspect-ratio: 1.74;
  overflow: hidden;
}

.case_study-video-image {
  z-index: 5;
  aspect-ratio: 2;
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
  width: 100%;
  position: relative;
  box-shadow: 0 16px 64px #3452ff80;
}

.case_study-video-image.uniqkey {
  box-shadow: 0 16px 64px #0006;
}

.case_study-video-image.kodex {
  aspect-ratio: auto;
  box-shadow: none;
  object-fit: cover;
}

.case_study-video-image.feds {
  aspect-ratio: auto;
  height: 100%;
  box-shadow: none;
}

.case_study-video {
  z-index: 10;
  aspect-ratio: 2;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  width: 100%;
  position: absolute;
  inset: 0;
}

.case_study-video.supermove {
  z-index: 20;
  aspect-ratio: 1.85;
  height: 100%;
}

.case_study-video.feds {
  aspect-ratio: auto;
}

.case_study-hero-box {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.case_study-hero-box.left {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  max-width: 16.313rem;
}

.case_study-client-logo {
  max-width: 8rem;
}

.case_study-tags-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: wrap;
  display: flex;
}

.case_study-tag {
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  padding: .25rem .375rem;
  font-size: .813rem;
  font-weight: 500;
  line-height: 100%;
  display: flex;
}

.case_study-tag.orange {
  color: #926321;
  background-color: #fff7eb;
}

.case_study-tag.green {
  color: #2b6045;
  background-color: #e6f0eb;
}

.case_study-tag.blue {
  color: #2b5e9d;
  background-color: #ebf4ff;
}

.case_study-tag.purple {
  color: #230f6a;
  background-color: #e5deff;
}

.case_study-stack-wrapper {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  flex-flow: wrap;
  display: flex;
}

.case-study-stack-logo {
  border: 1px solid #ddd;
  border-radius: .75rem;
  justify-content: center;
  align-items: center;
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
}

.case_studies_image-wrapper {
  grid-column-gap: 4.5rem;
  grid-row-gap: 4.5rem;
  background-color: #0b0a21;
  border-radius: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  padding: 2rem;
  display: flex;
}

.case_studies_image-wrapper.white {
  background-color: #fffffd;
  padding: 7.5rem 0;
  box-shadow: 0 16px 64px #0000001a;
}

.case_studies_image-wrapper.white.no-padding {
  padding: 0;
}

.case_studies_image-wrapper.white.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.case_studies_image-wrapper.uniqkey {
  background-color: #0d181f;
}

.case_studies_image-wrapper.uniqkey.padding-vertical-1rem {
  padding: 1rem 0;
}

.case_studies_image-wrapper.no-padding {
  padding: 0;
}

.case_studies_image-wrapper.no-padding.uniqkey {
  background-color: #fffffd;
  padding-bottom: 2rem;
}

.case_studies_image-wrapper.no-padding.white.technical {
  aspect-ratio: 1.85;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.case_studies_image-wrapper.no-padding.transparent {
  background-color: #0000;
}

.case_studies_image-wrapper.no-padding.uniqkey-marquee {
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
}

.case_studies_image-wrapper.no-padding.kodex-zoom {
  aspect-ratio: 2.35;
  background-color: #0000;
  overflow: hidden;
}

.case_studies_image-wrapper.no-padding.kodex-main {
  aspect-ratio: 2.4;
  object-fit: cover;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.case_studies_image-wrapper.no-padding.kodex-marquee {
  background-color: #0b121e;
  justify-content: center;
  align-items: center;
}

.case_studies_image-wrapper.no-padding.feds-zoom {
  background-color: #0000;
  overflow: hidden;
}

.case_studies_image-wrapper.supermove {
  color: var(--dark--text);
  text-align: center;
  background-color: #000;
  padding: 7rem 0;
  font-size: 2rem;
}

.case_studies_image-wrapper.uniqkey-video {
  padding: 0;
  overflow: hidden;
}

.case_studies_image-wrapper.shikenso-video {
  aspect-ratio: 1.7;
  object-fit: contain;
  justify-content: center;
  align-items: center;
}

.case_studies_image-wrapper.supermove-grid {
  background-color: #000;
  padding-left: 10rem;
  padding-right: 10rem;
}

.case_studies_video {
  z-index: 10;
  border-radius: 1rem;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 16px 64px #0000001a;
}

.case_studies_video.no-shadow {
  box-shadow: none;
}

.case_studies_video.blend-lighten {
  mix-blend-mode: lighten;
}

.case_studies_video.techinical-capabilities {
  width: 110%;
  margin-left: auto;
  margin-right: auto;
  inset: 0 auto 0 50%;
  transform: translate(-50%);
}

.case_studies_video.uniqkey-marquee {
  width: 110%;
  inset: 0 auto 0 50%;
  transform: translate(-50%);
}

.case_studies_video.uniqkey-video {
  width: 110%;
  inset: auto auto auto 50%;
  transform: translate(-50%);
}

.case_studies_video.kodex-zoom {
  justify-content: center;
  align-items: flex-end;
  width: 105%;
  display: flex;
  left: 50%;
  transform: translate(-50%);
}

.case_studies_video.kodex-main {
  object-fit: cover;
  width: 101%;
  left: 50%;
  transform: translate(-50%);
}

.case_studies_video.shikenso-video {
  height: 100%;
}

.case_studies_video.feds-zoom {
  width: 101%;
  left: 50%;
  transform: translate(-50%);
}

.case_studies_video.supermove-grid {
  mix-blend-mode: lighten;
  object-fit: contain;
}

.success-stories_location {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.bn_home-video {
  z-index: 20;
  object-fit: cover;
  height: 100%;
}

.bn_home-video-wrapper {
  aspect-ratio: 1.86;
  object-fit: cover;
}

.case_studies-icon.home {
  color: var(--white);
}

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

.text-color-muted {
  color: #696969;
}

.case_studies-slider {
  border-radius: 1rem;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 64px #0000001a;
}

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

.slider_after-image {
  object-fit: cover;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.slider_icon {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slider_line {
  z-index: 1;
  background-color: var(--grey-light);
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
}

.slider_before-label {
  z-index: 5;
  background-color: var(--color--background);
  color: var(--dark--text);
  border-radius: .75rem;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1rem;
  text-decoration: none;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.slider_after-label {
  z-index: 5;
  background-color: var(--white);
  color: var(--black);
  border-radius: .75rem;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1rem;
  text-decoration: none;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.case_studies-slider-wrapper {
  padding-top: 4rem;
  position: relative;
}

.text-inline {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  display: inline-flex;
}

.flag_footer-img {
  border-radius: 3px;
  width: 100%;
  max-width: 2.7rem;
}

@media screen and (max-width: 991px) {
  h3 {
    font-size: 2rem;
  }

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

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .spacer-xxhuge {
    padding-top: 8rem;
  }

  .spacer-xhuge {
    padding-top: 6rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .fs-styleguide_heading-header {
    font-size: 4rem;
  }

  .fs-styleguide_section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

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

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

  .spacer-medium {
    padding-top: 1.5rem;
  }

  .spacer-xxlarge {
    padding-top: 4rem;
  }

  .spacer-huge {
    padding-top: 5rem;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .spacer-xlarge {
    padding-top: 3rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

  .fs-styleguide_2-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .fs-styleguide_heading-medium {
    font-size: 3rem;
  }

  .margin-xlarge {
    margin: 3rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

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

  .nav_button {
    color: #fff;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

  .fs-styleguide_4-col, .fs-styleguide_3-col {
    grid-template-columns: 1fr;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .hide-tablet {
    display: none;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .padding-xlarge {
    padding: 3rem;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .spacer-large {
    padding-top: 2.5rem;
  }

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

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

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .brix---header-menu-wrapper-v2 {
    background-color: #fff;
    border: 1px solid #eff0f6;
    border-radius: 28px;
    margin-top: 19px;
    padding: 24px;
  }

  .btn-primary {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .dropdown-column-wrapper {
    box-shadow: none;
    border-width: 0;
    border-radius: 0;
  }

  .dropdown-column-wrapper.w--open {
    position: static;
  }

  .brix---btn-header-hidden-on-mbl.v16 {
    margin-left: 0;
  }

  .hamburger-menu-wrapper.w--open {
    background-color: #0000;
  }

  .header-nav-link {
    color: var(--black);
    font-size: 1rem;
  }

  .dropdown-pd {
    padding: 20px 0 14px;
  }

  .header-nav-menu-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-nav-list-item {
    margin-bottom: 12px;
    padding-left: 0;
  }

  .header-nav-list-item.show-in-tablet {
    display: block;
  }

  .hamburger-menu-bar {
    width: 44px;
    height: 3px;
  }

  .hamburger-menu-bar.bottom {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .container {
    max-width: 728px;
  }

  .clients-quote-two {
    font-size: 28px;
    line-height: 36px;
  }

  .clients-image-three {
    margin-bottom: 30px;
  }

  .process_item-image_container {
    width: 100%;
    height: auto;
  }

  .process_item-image_container.step-3 {
    width: auto;
    height: 100%;
  }

  .process_item-container {
    height: 20rem;
    display: flex;
  }

  .process_step {
    justify-items: stretch;
  }

  .process_item-image.step-1 {
    transform: scale(1)translate(0, .6rem)rotate(-15deg);
  }

  .process_item-image.step-3-1 {
    height: 22%;
    top: 16%;
    transform: scale(.8);
  }

  .process_item-image.step-3-3 {
    max-width: 100%;
    height: 22%;
    top: 58%;
    transform: scale(.8);
  }

  .process_item-image.step-3-2 {
    height: 22%;
    top: 37%;
    transform: scale(.8);
  }

  .process_item-image.step-2-arrow {
    max-width: 35%;
  }

  .plans_container {
    grid-column-gap: 1rem;
  }

  .faq_section-title {
    width: 100%;
    max-width: 32rem;
    position: static;
  }

  .graphic_faq {
    max-width: 36rem;
    top: -13.8rem;
    left: 1.6rem;
  }

  .faq_bg {
    z-index: 0;
  }

  .faq_answer-content {
    padding-bottom: 1.5rem;
  }

  .faq_question {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .faq_section-content {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .faq_section {
    grid-row-gap: 5rem;
    flex-flow: column wrap;
  }

  .container-2 {
    max-width: 728px;
  }

  .footer-content {
    grid-column-gap: 60px;
  }

  .footer-form-two {
    padding: 40px;
  }

  .footer-form-title {
    margin-right: 15px;
  }

  .footer-form-input {
    width: 400px;
    padding-right: 180px;
  }

  .footer-wrapper-three {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-social-block-three {
    margin-top: 40px;
  }

  .home-logo-wrapper.bottom.hide-dekstop {
    margin-top: 0;
    display: flex;
  }

  .logos-marquee {
    display: none;
  }

  .scroll {
    width: 100%;
    min-height: 100%;
  }

  .left-content {
    width: 100%;
  }

  .fixed-block {
    right: 0%;
  }

  .reverse.scroll {
    display: none;
  }

  .reviews-wrapper {
    width: 100%;
  }

  .tag-content-text-1 {
    font-size: 40px;
    font-weight: 600;
  }

  .tag-content-text-2 {
    font-size: 40px;
  }

  .layout485_component {
    grid-column-gap: 2rem;
    grid-template-columns: .75fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .layout416_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    height: 300svh;
    min-height: auto;
  }

  .layout416_content {
    height: 100svh;
  }

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

  .layout373_card-large-content, .layout373_card-small-content {
    padding: 2rem;
  }

  .hero-header_component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
    padding-top: 6rem;
  }

  .hero-header_content-left {
    margin-left: 5%;
    margin-right: 5%;
  }

  .hero-header_content-right {
    height: 40rem;
    padding-left: 5vw;
  }

  .marquee-gradient.top {
    background-image: linear-gradient(0deg, #0a0a0a00, #0a0a0a 95%);
  }

  .success-stories_list {
    grid-row-gap: 2.5rem;
  }

  .testimonial34_tabs {
    grid-column-gap: 3rem;
  }

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

  .case_studies_image-wrapper.supermove {
    padding-top: 5rem;
    padding-bottom: 5rem;
    font-size: 1.5rem;
  }

  .case_studies_image-wrapper.supermove-grid {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .case_studies_video.supermove-wave {
    height: 20rem;
  }
}

@media screen and (max-width: 767px) {
  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-style-h2 {
    font-size: 2rem;
  }

  .fs-styleguide_section-header {
    font-size: .875rem;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .heading-style-h6 {
    font-size: .75rem;
  }

  .spacer-xxhuge {
    padding-top: 4.5rem;
  }

  .spacer-xhuge {
    padding-top: 4rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

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

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

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

  .spacer-medium {
    padding-top: 1.25rem;
  }

  .spacer-xxlarge {
    padding-top: 3rem;
  }

  .spacer-huge {
    padding-top: 3.5rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

  .padding-large {
    padding: 1.5rem;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .spacer-xlarge {
    padding-top: 2rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .heading-style-h4 {
    font-size: 1rem;
  }

  .margin-large {
    margin: 1.5rem;
  }

  .heading-style-h3 {
    font-size: 1.5rem;
  }

  .fs-styleguide_heading-medium {
    font-size: 2rem;
  }

  .margin-xlarge {
    margin: 2rem;
  }

  .margin-medium {
    margin: 1.25rem;
  }

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

  .padding-medium {
    padding: 1.25rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .text-size-large {
    font-size: 1.25rem;
  }

  .heading-style-h5 {
    font-size: .875rem;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .padding-global.padding_case-study {
    padding-top: 4rem;
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .padding-xlarge {
    padding: 2rem;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .spacer-large {
    padding-top: 1.5rem;
  }

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

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .menu-expand-content {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .btn-primary {
    padding: 20px 32px;
  }

  .btn-primary.small {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .btn-primary.small.header-btn-hidde-on-mb {
    display: none;
  }

  .header-logo {
    max-width: 220px;
  }

  .brix---btn-header-hidden-on-mbl {
    display: none;
  }

  .hamburger-menu-bar.top, .hamburger-menu-bar.bottom {
    background-color: var(--neon);
    width: 33px;
  }

  .logos-quote-divider {
    padding: 60px 15px;
  }

  .clients-wrapper-two {
    flex-direction: column;
  }

  .clients-info-two {
    max-width: none;
    margin-bottom: 40px;
  }

  .logos-title-small {
    padding: 60px 15px;
  }

  .clients-wrapper-three {
    margin-bottom: -30px;
  }

  .clients-image-three {
    margin-bottom: 30px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .process_step {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 4rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .process_timeline {
    align-self: flex-start;
    margin-left: 2rem;
  }

  .plan_right.shadow-card {
    width: 100%;
  }

  .page-padding {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .plan_left.shadow-card, .plan_left.shadow-card-black {
    width: 100%;
  }

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

  .faq_answer {
    margin-bottom: 1.25rem;
  }

  .graphic_faq {
    max-width: 25rem;
    top: -9.2rem;
    left: -1rem;
  }

  .faq_answer-content {
    padding-bottom: 1.25rem;
  }

  .faq_question {
    padding-top: 1.25rem;
    padding-bottom: 1rem;
  }

  .faq_section {
    grid-row-gap: 3.5rem;
  }

  .footer-dark {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block {
    align-items: center;
  }

  .footer-link:hover {
    color: #1a1b1fbf;
  }

  .footer-social-block {
    margin-top: 20px;
    margin-left: -20px;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .footer-divider {
    margin-top: 60px;
  }

  .footer-subscribe {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-form-container-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-form-title {
    margin-right: 0;
  }

  .footer-form-block-two {
    width: 100%;
    margin-top: 20px;
  }

  .footer-form-input {
    width: 100%;
  }

  .footer-block-three {
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-link-three {
    margin-bottom: 10px;
  }

  .footer-social-block-three {
    margin-top: 10px;
  }

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

  .footer-copyright {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-legal-block {
    margin-top: 15px;
    margin-left: -24px;
  }

  .footer-legal-link {
    font-size: 14px;
    line-height: 20px;
  }

  .clients-wrapper-three-copy {
    margin-bottom: -30px;
  }

  .clients-grid-2 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    width: 100%;
    margin-left: 0;
  }

  .collection-list {
    flex-direction: row;
  }

  .review-component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-direction: column;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .vertical-text {
    font-size: 7rem;
  }

  .scroll {
    flex-direction: row;
  }

  .left-content {
    width: 90%;
  }

  .collection-item {
    flex-direction: row;
  }

  .fixed-block {
    position: absolute;
    right: 12%;
  }

  .section_reviews {
    min-height: auto;
  }

  .right-reviews-container {
    flex-direction: row;
  }

  .tag-content-text-1 {
    font-size: 20px;
  }

  .tag-canvas {
    width: 125%;
    height: 125%;
    transform: scale(.8);
  }

  .tag-content-text-2 {
    font-size: 20px;
  }

  .clients-grid {
    grid-column-gap: 27px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    width: 100%;
    margin-left: 0;
  }

  .layout485_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .layout485_content-left {
    display: none;
    position: static;
  }

  .layout485_number {
    font-size: 6rem;
  }

  .layout485_number.show-mobile-landscape {
    margin-top: 2.5rem;
    display: flex;
  }

  .layout485_content-right {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .layout485_content {
    height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .layout485_progress-wrapper {
    margin-top: 2rem;
  }

  .layout416_card {
    margin-left: 1.5rem;
  }

  .layout416_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .layout416_content {
    grid-template-columns: 1fr;
    align-content: start;
    height: 100%;
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: static;
  }

  .layout416_content-right {
    min-height: 24.5rem;
    position: sticky;
    top: 25%;
  }

  .layout373_grid-list {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .layout373_row {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .layout373_card-large {
    grid-template-columns: 1fr;
  }

  .layout373_card-large-content {
    padding: 1.5rem;
  }

  .layout373_card-small {
    grid-template-columns: 1fr;
  }

  .layout373_card-small-content {
    padding: 1.5rem;
  }

  .hero-header_component {
    padding-top: 4rem;
  }

  .hero-header_content-right {
    height: 30rem;
  }

  .heading-style-h1-alt {
    font-size: 2.5rem;
  }

  .success-stories_list {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .hub-hero_component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .hub-hero_left.display-mobile {
    display: flex;
  }

  .hub-hero_right-content {
    margin-left: 0;
  }

  .hub-hero_border {
    display: none;
  }

  .showreel-popup-component {
    justify-content: center;
    align-items: flex-start;
    padding-top: 9.4rem;
  }

  .testimonial34_tabs {
    border-bottom-style: solid;
    grid-template-columns: 1fr;
  }

  .testimonial34_tabs-menu {
    border-top: 1px none var(--\<unknown\|relume-variable-neutral-shade-7\>);
    flex-flow: column;
  }

  .testimonial34_tab-link {
    border-bottom: 1px none var(--\<unknown\|relume-variable-neutral-shade-7\>);
    border-right-style: none;
    justify-content: center;
    align-items: center;
    padding: 1rem 1.5rem;
  }

  .testimonial34_tab-link.w--current {
    border-top-color: #000;
  }

  .testimonial34_tab-logo {
    max-height: 2.5rem;
  }

  .testimonial34_card {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    grid-template-columns: 1fr;
    padding: 1.5rem 1.5rem 2.5rem;
  }

  .testimonial34_client {
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .testimonial34_text {
    font-size: 1.75rem;
  }

  .testimonial34_tab-content_logo {
    max-height: 2.5rem;
  }

  .image_bg-gray {
    padding: 2rem 1.5rem;
  }

  .case_studies-details-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: auto;
  }

  .case_studies-right-box, .case_studies-points-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .case_studies-point-heading {
    font-size: 1rem;
  }

  .case_studies_image-wrapper.no-padding.supermove-truck {
    max-height: 19rem;
  }

  .case_studies_image-wrapper.supermove {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    color: var(--dark--text);
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    font-size: 1.25rem;
  }

  .case_studies_image-wrapper.supermove-grid {
    justify-content: center;
    align-items: center;
    max-height: 30rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .case_studies_video.supermove-wave {
    height: 15rem;
  }

  .slider_before-label {
    padding: .8rem;
    font-size: .8rem;
  }

  .slider_after-label {
    padding: .8rem;
    font-size: .8rem;
    top: .5rem;
    right: .5rem;
  }

  .case_studies-slider-wrapper {
    padding-top: 3rem;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 3rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 2.0625rem;
    line-height: 1.3;
  }

  h3 {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  h4 {
    font-size: 1.25rem;
  }

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

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

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

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

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

  .text-align-center.align-center.max-width-60 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

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

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .fs-styleguide_row {
    flex-wrap: wrap;
  }

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

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .button_flex-horizontal.about {
    flex-flow: column;
  }

  .btn-primary {
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .header-logo {
    max-width: 170px;
  }

  .brix---header-wrapper-rounded {
    width: 100%;
    max-width: 90svw;
  }

  .brix---container-default {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-nav-list-item {
    text-align: left;
    width: 100%;
  }

  .header-nav-list-item.show-in-tablet {
    justify-content: flex-start;
    width: 100%;
    display: flex;
  }

  .hamburger-menu-bar.top {
    width: 33px;
  }

  .hamburger-menu-bar.bottom {
    background-color: var(--color--button-background);
    width: 33px;
  }

  .container {
    max-width: none;
  }

  .clients-quote-two {
    font-size: 24px;
    line-height: 32px;
  }

  .clients-info-image {
    margin-right: 16px;
  }

  .full-container {
    width: 90%;
  }

  .marquee-infinite-slide-wrapper {
    padding-top: 5rem;
  }

  .marquee-infinite-slide-block {
    width: 50%;
  }

  .clients-wrapper-three {
    grid-column-gap: 20px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    margin-bottom: 0;
    display: grid;
  }

  .clients-image-three {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .problem-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

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

  .card-wrapper {
    height: 12rem;
  }

  .process_overlay-top {
    height: 4rem;
  }

  .process_step {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 2rem;
  }

  .process_item-indicator {
    width: 2rem;
    height: 2rem;
  }

  .process_overlay-bottom {
    height: 4rem;
  }

  .process_timeline {
    margin-left: 1rem;
  }

  .section-home-plans {
    background-size: auto, auto;
  }

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

  .image-wrapper {
    height: 20rem;
  }

  .graphic_faq {
    max-width: 14rem;
    top: -3.1rem;
    left: 3.9rem;
  }

  .container-2 {
    max-width: none;
  }

  .footer-form-two {
    padding: 20px;
  }

  .footer-form-block-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-form-input {
    width: 70%;
    margin-bottom: 10px;
    padding-right: 20px;
  }

  .button-primary.footer-form-button {
    position: relative;
    right: 0;
  }

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

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

  .clients-wrapper-three-copy {
    grid-column-gap: 20px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    margin-bottom: 0;
    display: grid;
  }

  .client-logo {
    object-position: 0% 50%;
    max-width: 6rem;
    min-height: 4rem;
  }

  .clients-grid-2 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .clients-grid-2.logo-animate {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 26px;
  }

  .home-logo-wrapper.bottom, .home-logo-wrapper.bottom.hide-dekstop {
    margin-top: 2rem;
  }

  .collection-list {
    width: 100%;
  }

  .review-component {
    height: auto;
  }

  .vertical-text {
    font-size: 7rem;
  }

  .scroll {
    min-width: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .collection-item {
    width: 18rem;
  }

  .tag-content-text-1 {
    font-size: 20px;
  }

  .tag-content-text-1.is-service {
    font-weight: 500;
  }

  .tag-content-text-2 {
    font-size: 20px;
  }

  .tag-content-wrapper {
    top: 50px;
  }

  .max-width-mob {
    max-width: 20rem;
  }

  .clients-grid {
    grid-column-gap: 25px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 0;
  }

  .clients-grid.logo-animate {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 26px;
  }

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

  .layout485_content-right {
    grid-row-gap: 3rem;
  }

  .layout485_content {
    height: auto;
  }

  .img-wrap {
    width: 90svw;
    height: auto;
  }

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

  .layout373_row {
    display: block;
  }

  .layout373_card-large, .layout373_card-small {
    margin-bottom: 1.5rem;
  }

  .hero-header_component {
    grid-template-columns: 1fr;
  }

  .hero-header_content-right {
    height: 25rem;
  }

  .success-stories_list {
    grid-template-columns: 1fr;
  }

  .hub-hero_component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .hub-hero_right-content {
    margin-left: 0;
  }

  .hub-hero_border {
    display: none;
  }

  .hub-mockup_wrapper, .hub-website_grid {
    grid-template-columns: 1fr;
  }

  .showreel-popup-component {
    justify-content: center;
    align-items: flex-start;
    padding-top: 9.4rem;
  }

  .popup-close {
    padding-top: 0;
    padding-right: .3rem;
  }

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

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

  .testimonial34_client-info.is-case-study {
    text-align: left;
  }

  .testimonial34_text {
    font-size: 1.5rem;
  }

  .testimonial34_tab-content_logo.supermove {
    max-width: 5rem;
    top: 1rem;
    left: 1rem;
  }

  .case_studies_image-wrapper.no-padding.supermove-truck {
    max-height: 10rem;
  }

  .case_studies_image-wrapper.supermove {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 1rem;
  }

  .case_studies_image-wrapper.supermove-grid {
    max-height: 15rem;
    padding: 1rem;
  }

  .case_studies_video.supermove-grid {
    width: 100%;
  }

  .case_studies_video.supermove-wave {
    height: 6rem;
  }
}

#w-node-_5c9f73a4-6b35-261c-e80f-9c89d1d3a549-8cf390e7 {
  justify-self: end;
}

#w-node-ffd2887f-b7cb-cb03-158b-008f5b159cdb-8cf390e7, #w-node-ffd2887f-b7cb-cb03-158b-008f5b159cdd-8cf390e7, #w-node-ffd2887f-b7cb-cb03-158b-008f5b159cdf-8cf390e7, #w-node-_5b3538e4-d865-20ff-4ec1-945ba9e4ed17-8cf390e7, #w-node-_33e68fce-fc01-7456-ca5d-42e8858948da-8cf390e7, #w-node-_33e68fce-fc01-7456-ca5d-42e8858948dc-8cf390e7, #w-node-_33e68fce-fc01-7456-ca5d-42e8858948e1-8cf390e7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b09aed59-a2c3-08b8-8501-c044f9bef3ee-8cf390e7 {
  align-self: end;
}

#w-node-_5068b220-626c-896b-8112-269f13750fd6-8cf390e7 {
  justify-self: stretch;
}

#w-node-a993238e-68fb-f661-d554-7ddc42c30e56-8cf390e7 {
  align-self: stretch;
}

#w-node-_6fb882c2-737a-a030-42f4-123add1eca72-8cf390e7 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-df12d443-505d-c791-8e7c-7943002ac972-953bac79 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-df12d443-505d-c791-8e7c-7943002ac991-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002ac996-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002ac99b-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002ac9a0-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002ac9a6-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002ac9ac-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002ac9b2-953bac79 {
  justify-self: start;
}

#w-node-df12d443-505d-c791-8e7c-7943002aca94-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002aca9c-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acab3-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acacc-953bac79 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-df12d443-505d-c791-8e7c-7943002acacf-953bac79 {
  justify-self: start;
}

#w-node-df12d443-505d-c791-8e7c-7943002acad1-953bac79 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-df12d443-505d-c791-8e7c-7943002acad4-953bac79 {
  justify-self: start;
}

#w-node-df12d443-505d-c791-8e7c-7943002acb24-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acb2e-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acb2f-953bac79 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-df12d443-505d-c791-8e7c-7943002acba1-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acba6-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acbab-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acbb0-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acbb5-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acbba-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acbc4-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acbc9-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acbce-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acbd3-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acbd8-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acbdd-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acbe2-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acbe7-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acbec-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acbf1-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acbf6-953bac79 {
  justify-self: start;
}

#w-node-df12d443-505d-c791-8e7c-7943002acbfa-953bac79 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-df12d443-505d-c791-8e7c-7943002acbfb-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc00-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc05-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc0a-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc1e-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc23-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc28-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc2d-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc32-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc37-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc41-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc46-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc4b-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc50-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc55-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc5a-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc5f-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc64-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc69-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc6e-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc73-953bac79 {
  justify-self: start;
}

#w-node-df12d443-505d-c791-8e7c-7943002acc77-953bac79 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-df12d443-505d-c791-8e7c-7943002acc78-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc7d-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc82-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc87-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc98-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acc9d-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acca2-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acca7-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002accac-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002accb1-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002accb6-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002accbb-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002accc0-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002accc5-953bac79 {
  justify-self: start;
}

#w-node-df12d443-505d-c791-8e7c-7943002accc9-953bac79 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-df12d443-505d-c791-8e7c-7943002accca-953bac79 {
  justify-self: start;
}

#w-node-df12d443-505d-c791-8e7c-7943002acccd-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acd4e-953bac79, #w-node-df12d443-505d-c791-8e7c-7943002acd7b-953bac79 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-df12d443-505d-c791-8e7c-7943002acdb9-953bac79 {
  justify-self: start;
}

#w-node-e908a9b8-10db-d741-ac3a-8fd035757a74-400e689a, #w-node-_803a2cf9-eb0f-83c6-b52e-c2f42009c53b-400e689a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_803a2cf9-eb0f-83c6-b52e-c2f42009c53c-400e689a {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_765eb64a-7443-a6e9-fa29-46d3ecee826f-80f8409c {
  justify-self: start;
}

#w-node-_751c24d4-cfef-f896-3158-19481d803702-80f8409c {
  justify-self: center;
}

#w-node-_44478f09-4c15-f0f3-0ffe-fa2e42d5fb01-d1556ad6 {
  justify-self: start;
}

#w-node-_44478f09-4c15-f0f3-0ffe-fa2e42d5fb46-d1556ad6 {
  justify-self: center;
}

#w-node-_44478f09-4c15-f0f3-0ffe-fa2e42d5fb01-eccc2a81 {
  justify-self: start;
}

#w-node-_44478f09-4c15-f0f3-0ffe-fa2e42d5fb46-eccc2a81, #w-node-_2cb3fe44-1d4d-5a86-22b8-93f42edbdae5-eccc2a81, #w-node-f31b33cd-0146-cc54-ec25-a022f8aa93e9-eccc2a81 {
  justify-self: center;
}

#w-node-_44478f09-4c15-f0f3-0ffe-fa2e42d5fb01-2c516e91 {
  justify-self: start;
}

#w-node-_44478f09-4c15-f0f3-0ffe-fa2e42d5fb46-2c516e91, #w-node-_2cb3fe44-1d4d-5a86-22b8-93f42edbdae5-2c516e91, #w-node-f31b33cd-0146-cc54-ec25-a022f8aa93e9-2c516e91 {
  justify-self: center;
}

#w-node-_9e9e7856-381a-a129-237c-329456e38559-2c516e91 {
  justify-self: stretch;
}

#w-node-_44478f09-4c15-f0f3-0ffe-fa2e42d5fb01-dd4af3a0 {
  justify-self: start;
}

#w-node-_08d014bb-6117-1d36-81b4-cee02ee90624-dd4af3a0, #w-node-_200e358d-41bb-1681-dd06-34fea226348f-dd4af3a0, #w-node-a23443aa-762b-6f86-270c-7968ee8e2128-dd4af3a0 {
  justify-self: center;
}

#w-node-_7dc9cb16-2fe2-7c9a-147c-f57faf2989a5-dd4af3a0 {
  justify-self: stretch;
}

#w-node-_44478f09-4c15-f0f3-0ffe-fa2e42d5fb01-c616becc {
  justify-self: start;
}

#w-node-_44478f09-4c15-f0f3-0ffe-fa2e42d5fb46-c616becc, #w-node-ba9419dc-5255-b96f-8bad-654f7b30e630-c616becc, #w-node-_86ecd673-04b0-ea8b-2b1c-82fa73bfe3ff-c616becc, #w-node-_14507b1a-7e15-681d-4a83-bc7e6c05e56b-c616becc, #w-node-_82068351-235d-0bb4-0704-c97dfbb118f4-c616becc, #w-node-a23bb633-5dec-7b4c-2da3-73f08a973136-c616becc {
  justify-self: center;
}

#w-node-_44478f09-4c15-f0f3-0ffe-fa2e42d5fb01-85c03e1d {
  justify-self: start;
}

#w-node-_44478f09-4c15-f0f3-0ffe-fa2e42d5fb46-85c03e1d, #w-node-dd82711d-229b-f65d-2be6-b4b109b17752-85c03e1d, #w-node-ba9419dc-5255-b96f-8bad-654f7b30e630-85c03e1d, #w-node-_86ecd673-04b0-ea8b-2b1c-82fa73bfe3ff-85c03e1d {
  justify-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_5c9f73a4-6b35-261c-e80f-9c89d1d3a549-8cf390e7 {
    justify-self: start;
  }
}

@media screen and (max-width: 767px) {
  #w-node-ffd2887f-b7cb-cb03-158b-008f5b159cdf-8cf390e7, #w-node-_33e68fce-fc01-7456-ca5d-42e8858948e1-8cf390e7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a993238e-68fb-f661-d554-7ddc42c30e3b-8cf390e7 {
    grid-area: 1 / 2 / 2 / 4;
  }

  #w-node-a993238e-68fb-f661-d554-7ddc42c30e3e-8cf390e7 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-a993238e-68fb-f661-d554-7ddc42c30e41-8cf390e7 {
    grid-area: 2 / 2 / 3 / 4;
  }

  #w-node-a993238e-68fb-f661-d554-7ddc42c30e48-8cf390e7 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-a993238e-68fb-f661-d554-7ddc42c30e4e-8cf390e7 {
    grid-area: 1 / 1 / 3 / 2;
    justify-self: start;
  }

  #w-node-a993238e-68fb-f661-d554-7ddc42c30e51-8cf390e7, #w-node-a993238e-68fb-f661-d554-7ddc42c30e56-8cf390e7 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-a993238e-68fb-f661-d554-7ddc42c30e5b-8cf390e7 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-a993238e-68fb-f661-d554-7ddc42c30e5e-8cf390e7 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_6fb882c2-737a-a030-42f4-123add1eca69-8cf390e7 {
    order: 9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_751c24d4-cfef-f896-3158-19481d803702-80f8409c, #w-node-_44478f09-4c15-f0f3-0ffe-fa2e42d5fb46-d1556ad6, #w-node-_44478f09-4c15-f0f3-0ffe-fa2e42d5fb46-eccc2a81, #w-node-_2cb3fe44-1d4d-5a86-22b8-93f42edbdae5-eccc2a81, #w-node-f31b33cd-0146-cc54-ec25-a022f8aa93e9-eccc2a81, #w-node-_44478f09-4c15-f0f3-0ffe-fa2e42d5fb46-2c516e91, #w-node-_2cb3fe44-1d4d-5a86-22b8-93f42edbdae5-2c516e91, #w-node-f31b33cd-0146-cc54-ec25-a022f8aa93e9-2c516e91, #w-node-_08d014bb-6117-1d36-81b4-cee02ee90624-dd4af3a0, #w-node-_200e358d-41bb-1681-dd06-34fea226348f-dd4af3a0, #w-node-a23443aa-762b-6f86-270c-7968ee8e2128-dd4af3a0, #w-node-_44478f09-4c15-f0f3-0ffe-fa2e42d5fb46-c616becc, #w-node-ba9419dc-5255-b96f-8bad-654f7b30e630-c616becc, #w-node-_86ecd673-04b0-ea8b-2b1c-82fa73bfe3ff-c616becc, #w-node-_14507b1a-7e15-681d-4a83-bc7e6c05e56b-c616becc, #w-node-_82068351-235d-0bb4-0704-c97dfbb118f4-c616becc, #w-node-a23bb633-5dec-7b4c-2da3-73f08a973136-c616becc, #w-node-_44478f09-4c15-f0f3-0ffe-fa2e42d5fb46-85c03e1d, #w-node-dd82711d-229b-f65d-2be6-b4b109b17752-85c03e1d, #w-node-ba9419dc-5255-b96f-8bad-654f7b30e630-85c03e1d, #w-node-_86ecd673-04b0-ea8b-2b1c-82fa73bfe3ff-85c03e1d {
    justify-self: start;
  }
}


@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist Pixel Circle';
  src: url('../fonts/GeistPixel-Circle.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist Pixel Grid';
  src: url('../fonts/GeistPixel-Grid.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist Pixel Line';
  src: url('../fonts/GeistPixel-Line.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist Pixel Square';
  src: url('../fonts/GeistPixel-Square.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist Pixel Triangle';
  src: url('../fonts/GeistPixel-Triangle.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.case-study-primary-cta {
  align-items: center;
  background: #0a0a0a;
  border-radius: 10px;
  color: #ffffff;
  display: inline-flex;
  gap: 12px;
  height: 50px;
  justify-content: center;
  margin-top: 8px;
  padding: 0 20px;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}

.case-study-primary-cta:hover {
  background: #171717;
  color: #ffffff;
  transform: translateY(-1px);
}

.case-study-primary-cta span:last-child {
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  white-space: nowrap;
}

.case-study-primary-cta .pixel-mark {
  display: grid;
  flex: 0 0 auto;
  gap: 3px;
  grid-template-columns: repeat(4, 1fr);
  height: 22px;
  width: 22px;
}

.case-study-primary-cta .pixel-mark i {
  background: rgba(150, 255, 124, 0.31);
  border-radius: 1px;
  box-shadow: 0 0 3px rgba(34, 197, 94, 0.19), 0 0 5px rgba(34, 197, 94, 0.09);
  display: block;
}

.case-study-primary-cta .pixel-mark i:nth-child(1),
.case-study-primary-cta .pixel-mark i:nth-child(4),
.case-study-primary-cta .pixel-mark i:nth-child(13),
.case-study-primary-cta .pixel-mark i:nth-child(16) {
  opacity: 0;
}

.case-study-primary-cta .pixel-mark i:nth-child(6),
.case-study-primary-cta .pixel-mark i:nth-child(7),
.case-study-primary-cta .pixel-mark i:nth-child(10),
.case-study-primary-cta .pixel-mark i:nth-child(11) {
  background: #96ff7c;
  box-shadow: 0 0 6px rgba(150, 255, 124, 0.55), 0 0 12px rgba(150, 255, 124, 0.3);
}

.footer-parallax-wrap {
  background: url('../assets/footer/clouds.jpg') center / cover no-repeat;
  color: #fffef4;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.footer-parallax-wrap__video {
  height: 112%;
  left: 0;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.site-footer {
  background: transparent;
  color: #fffef4;
  min-height: 100svh;
  padding: 72px 40px 36.944px;
  position: relative;
  z-index: 1;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto;
  max-width: 1152px;
  min-height: calc(100svh - 108.944px);
  width: 100%;
}

.site-footer__brand-row {
  height: clamp(168px, 19vw, 274px);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.site-footer__brand-stack {
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.site-footer__brand-layer {
  --footer-brand-scale: 1;
  background: linear-gradient(180deg, #fffef4 0%, #fffef4 54%, #e8eef6 70%, #bccbde 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #fffef4;
  display: flex;
  flex-direction: column;
  font-size: clamp(92px, 17.6vw, 254px);
  font-weight: 400;
  height: clamp(168px, 19vw, 274px);
  justify-content: center;
  letter-spacing: 0.369px;
  line-height: 21.24px;
  margin: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(var(--footer-brand-scale));
  transform-origin: left center;
  transition: opacity 140ms linear;
  top: 0;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  width: max-content;
}

.site-footer__brand-layer.is-triangle {
  font-family: 'Geist Pixel Triangle', monospace;
}

.site-footer__brand-layer.is-square {
  font-family: 'Geist Pixel Square', monospace;
  opacity: 1;
}

.site-footer__brand-layer.is-line {
  font-family: 'Geist Pixel Line', monospace;
}

.site-footer__brand-layer.is-grid {
  font-family: 'Geist Pixel Grid', monospace;
}

.site-footer__brand-layer.is-circle {
  font-family: 'Geist Pixel Circle', monospace;
}

.site-footer__brand-layer span {
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(18px, 2.8vw, 40px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  right: -0.12em;
  top: 50%;
  transform: translateY(12%);
}

.site-footer__mark {
  --footer-slider-x: 50%;
  align-items: center;
  background: #fffef4;
  border-radius: 30px;
  display: flex;
  height: 44px;
  justify-content: center;
  left: auto;
  position: absolute;
  right: min(4.5vw, 64px);
  top: 9px;
  width: 189px;
  z-index: 2;
}

.site-footer__mark-icon {
  display: block;
  left: var(--footer-slider-x);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: left 120ms linear, opacity 140ms linear;
}

.site-footer__mark-icon.is-triangle {
  border-bottom: 24px solid #0a0a0a;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  height: 0;
  width: 0;
}

.site-footer__mark-icon.is-square {
  background: #0a0a0a;
  height: 22px;
  width: 24px;
}

.site-footer__mark-icon.is-line {
  height: 22px;
  width: 30px;
}

.site-footer__mark-icon.is-line::before {
  background: repeating-linear-gradient(to bottom,
      #0a0a0a 0 3px,
      transparent 3px 8px);
  content: "";
  inset: 0;
  position: absolute;
}

.site-footer__mark-icon.is-grid {
  background:
    linear-gradient(#0a0a0a 0 0) 0 0 / 7px 7px,
    linear-gradient(#0a0a0a 0 0) 50% 0 / 7px 7px,
    linear-gradient(#0a0a0a 0 0) 100% 0 / 7px 7px,
    linear-gradient(#0a0a0a 0 0) 0 50% / 7px 7px,
    linear-gradient(#0a0a0a 0 0) 50% 50% / 7px 7px,
    linear-gradient(#0a0a0a 0 0) 100% 50% / 7px 7px,
    linear-gradient(#0a0a0a 0 0) 0 100% / 7px 7px,
    linear-gradient(#0a0a0a 0 0) 50% 100% / 7px 7px,
    linear-gradient(#0a0a0a 0 0) 100% 100% / 7px 7px;
  background-repeat: no-repeat;
  height: 27px;
  width: 27px;
}

.site-footer__mark-icon.is-circle {
  background: #0a0a0a;
  border-radius: 50%;
  height: 22px;
  width: 22px;
}

.site-footer__mark-icon.is-active {
  opacity: 1;
}

.site-footer__slider {
  appearance: none;
  background: transparent;
  cursor: ew-resize;
  inset: 0;
  margin: 0;
  opacity: 1;
  outline: 0;
  position: absolute;
  width: 100%;
  z-index: 3;
}

.site-footer__slider:focus,
.site-footer__slider:focus-visible {
  outline: none;
}

.site-footer__slider::-webkit-slider-runnable-track {
  background: transparent;
  height: 44px;
}

.site-footer__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  height: 44px;
  width: 44px;
}

.site-footer__slider::-moz-range-track {
  background: transparent;
  height: 44px;
}

.site-footer__slider::-moz-range-thumb {
  background: transparent;
  border: 0;
  height: 44px;
  width: 44px;
}

.site-footer__booking {
  align-self: center;
  height: clamp(380px, 44svh, 460px);
  max-width: 1040px;
  overflow: visible;
  width: min(100%, 1040px);
}

.site-footer__cal {
  height: 100%;
  overflow: scroll;
  width: 100%;
}

.site-footer__bottom {
  align-items: center;
  color: #ffffff;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: auto;
  width: 100%;
}

.site-footer__links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 21.1px;
}

.site-footer__links a,
.site-footer__bottom p {
  color: #ffffff;
  font-size: 18.5px;
  font-weight: 400;
  letter-spacing: 0.369px;
  line-height: 21.24px;
  text-decoration: none;
}

.site-footer__bottom p {
  margin: 0;
  text-align: right;
}

.footer-parallax-wrap__dark {
  display: none;
}

@media (max-width: 760px) {
  .site-footer {
    padding: 72px 20px 28px;
  }

  .site-footer__inner {
    gap: 24px;
    min-height: calc(100svh - 100px);
  }

  .site-footer__brand-row,
  .site-footer__brand-layer {
    height: clamp(112px, 30vw, 142px);
  }

  .site-footer__brand-layer {
    font-size: clamp(58px, 20vw, 92px);
  }

  .site-footer__booking {
    height: clamp(430px, 58svh, 560px);
  }

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

  .site-footer__links {
    gap: 14px 18px;
  }

  .site-footer__links a,
  .site-footer__bottom p {
    font-size: 15px;
    letter-spacing: 0.2px;
    line-height: 20px;
  }

  .site-footer__bottom p {
    text-align: left;
  }
}
