:root {
  --poppins: Poppins, sans-serif;
  --text-color--text-secondary: #7ebc5a;
  --background-color--background-primary: #00264b;
  --text-color--text-alternate: var(--base-color-neutral--white);
  --text-color--text-primary: #00264b;
  --background-color--background-success: var(--base-color-system--success-green);
  --text-color--text-contact: #abcfe1;
  --base-color-brand--blue-dark: #080331;
  --border-color--border-primary: var(--base-color-neutral--neutral-lightest);
  --background-color--background-alternate: #7ebc5a80;
  --background-color--background-secondary: #7ebc5a;
  --link-color--link-primary: #1961ac;
  --background-color--background-tertiary: #0d6efd;
  --background-color--background-error: var(--base-color-system--error-red);
  --text-color--text-error: var(--base-color-system--error-red-dark);
  --30px: 30px;
  --background-color--background-warning: var(--base-color-system--warning-yellow);
  --text-color--text-warning: var(--base-color-system--warning-yellow-dark);
  --transparent: transparent;
  --link-color--link-alternate: var(--base-color-neutral--white);
  --base-color-neutral--white: #fff;
  --whitesmoke: whitesmoke;
  --base-color-neutral--black: #000;
  --base-color-neutral--neutral-lightest: #eee;
  --base-color-system--success-green: #cef5ca;
  --base-color-brand--blue-light: #d9e5ff;
  --base-color-brand--blue: #2d62ff;
  --base-color-brand--pink-light: #ffaefe;
  --base-color-brand--pink: #dd23bb;
  --base-color-brand--pink-dark: #3c043b;
  --base-color-neutral--neutral-lighter: #ccc;
  --base-color-neutral--neutral-light: #aaa;
  --base-color-neutral--neutral: #666;
  --base-color-neutral--neutral-dark: #444;
  --base-color-neutral--neutral-darker: #222;
  --base-color-neutral--neutral-darkest: #111;
  --base-color-system--success-green-dark: #114e0b;
  --base-color-system--warning-yellow: #fcf8d8;
  --base-color-system--warning-yellow-dark: #5e5515;
  --base-color-system--error-red: #f8e4e4;
  --base-color-system--error-red-dark: #3b0b0b;
  --base-color-system--focus-state: #2d62ff;
  --border-color--border-secondary: var(--base-color-brand--blue);
  --border-color--border-alternate: var(--base-color-neutral--neutral-darker);
  --link-color--link-secondary: var(--base-color-neutral--black);
}

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

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

.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 {
  font-family: var(--poppins);
  color: #000;
  font-size: 1.063rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.438rem;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--text-color--text-secondary);
}

ul, ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: .1rem;
}

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

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

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

figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.utility-page_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility-page_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 20rem;
  display: flex;
}

.utility-page_form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.utility-page_image {
  margin-left: auto;
  margin-right: auto;
}

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

.margin-custom2 {
  margin: 2.5rem;
}

.padding-xlarge {
  padding: 4rem;
}

.margin-xlarge {
  margin: 4rem;
}

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

.padding-xhuge {
  padding: 8rem;
}

.margin-custom1 {
  margin: 1.5rem;
}

.padding-0 {
  padding: 0;
}

.padding-xxhuge {
  padding: 12rem;
}

.padding-huge {
  padding: 6rem;
}

.margin-large {
  margin: 3rem;
}

.padding-xxlarge {
  padding: 5rem;
}

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

.padding-custom3 {
  padding: 3.5rem;
}

.padding-large {
  padding: 3.75rem;
}

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

.padding-small {
  padding: 1rem;
}

.padding-custom2 {
  padding: 2.5rem;
}

.margin-custom3 {
  margin: 3.5rem;
}

.padding-custom1 {
  padding: 1.5rem;
}

.margin-huge {
  margin: 6rem;
}

.padding-medium {
  padding: 2rem;
}

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

.margin-xxlarge {
  margin: 5rem;
}

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

.margin-xhuge {
  margin: 8rem;
}

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

.margin-small {
  margin: 1rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-xxhuge {
  margin: 12rem;
}

.margin-0 {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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;
}

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

.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;
}

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

.overflow-auto {
  overflow: auto;
}

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

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

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

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

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

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

.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;
}

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

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

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

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

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

.text-color-primary.max-width-small {
  max-width: 31rem;
}

.text-color-primary.centered {
  text-align: center;
}

.text-color-primary.text-align-center.margin-top {
  margin-top: 10px;
}

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

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

.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;
}

.form_message-success {
  background-color: var(--background-color--background-success);
  color: var(--text-color--text-contact);
  padding: 1.25rem;
}

.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;
}

.heading-style-h3 {
  font-size: 1.5rem;
  line-height: 1.2;
}

.heading-style-h3.is-secondary {
  color: var(--text-color--text-secondary);
  font-size: 1.35rem;
  font-weight: 500;
}

.text-rich-text h1, .text-rich-text h2, .text-rich-text h3, .text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.text-rich-text h5, .text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.text-rich-text p {
  margin-bottom: 1rem;
}

.text-rich-text ul, .text-rich-text ol {
  margin-bottom: 1.5rem;
}

.text-rich-text blockquote {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

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

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

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

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

.heading-style-h1 {
  color: var(--base-color-brand--blue-dark);
  font-size: 2.8125rem;
  font-weight: 500;
  line-height: 1.2;
}

.heading-style-h1.text-color-secondary {
  color: var(--text-color--text-secondary);
}

.padding-global {
  width: 100%;
  height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  overflow: hidden;
}

.padding-global.padding-section-header {
  padding-top: 10rem;
  padding-bottom: 11rem;
}

.padding-global.padding-section-small {
  overflow: visible;
}

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

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

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

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

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

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

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

.overflow-hidden {
  overflow: hidden;
}

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

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

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

.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;
}

.overflow-visible {
  overflow: visible;
}

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

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

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

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

.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;
}

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

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

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

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

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

.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;
}

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

.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;
}

.background-color-alternate {
  background-color: var(--background-color--background-alternate);
}

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

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

.heading-style-h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

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

.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;
}

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

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

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

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

.form_input::placeholder, .form_input.is-select-input {
  color: var(--text-color--text-secondary);
}

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

.heading-style-h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

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

.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;
}

.text-style-link {
  color: var(--link-color--link-primary);
  text-decoration: underline;
}

.text-size-large {
  font-size: 1.5rem;
}

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

.heading-style-h2 {
  font-size: 2.1875rem;
  line-height: 2.8125rem;
}

.heading-style-h2.text-color-primary.text-weight-medium {
  margin-bottom: 1rem;
}

.heading-style-h2.text-color-primary.text-weight-medium.text-align-center.margin-bottom {
  margin-bottom: 4rem;
}

.heading-style-h2.text-color-green.text-weight-medium.text-align-center.margin-bottom {
  color: var(--text-color--text-secondary);
  margin-bottom: 4rem;
}

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

.fs-styleguide_label {
  background-color: var(--background-color--background-secondary);
  color: var(--text-color--text-alternate);
  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: var(--background-color--background-tertiary);
}

.heading-style-h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.container-large {
  width: 100%;
  max-width: 82.5rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}

.container-large.is-relative {
  position: relative;
}

.container-large.overflow-show {
  overflow: visible;
}

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

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

.overflow-scroll {
  overflow: scroll;
}

.form_message-error {
  background-color: var(--background-color--background-error);
  color: var(--text-color--text-error);
  margin-top: .75rem;
  padding: .75rem;
}

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

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

.form_component {
  margin-bottom: 0;
}

.main-wrapper {
  overflow: visible;
}

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

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

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

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

.button {
  border-radius: var(--30px);
  background-color: var(--background-color--background-secondary);
  color: var(--text-color--text-alternate);
  text-align: center;
  text-transform: uppercase;
  padding: .75rem 3.125rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  transition: all .2s;
}

.button:hover {
  background-color: var(--background-color--background-primary);
}

.button.is-text {
  color: #000;
  background-color: #0000;
  border: 2px solid #0000;
}

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

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

.button.is-secondary {
  background-color: var(--background-color--background-primary);
}

.button.is-secondary:hover {
  background-color: var(--background-color--background-secondary);
}

.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-brand {
  background-color: var(--background-color--background-secondary);
}

.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;
}

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

.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;
}

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

.hide {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fs-styleguide_message {
  background-color: var(--background-color--background-warning);
  color: var(--text-color--text-warning);
  border-radius: .25rem;
  padding: .25rem .5rem;
  font-size: .875rem;
}

.nav_component {
  background-color: var(--transparent);
  box-shadow: none;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  width: 100%;
  position: fixed;
  inset: 0% 0% auto;
}

.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;
}

.nav_logo {
  width: 18rem;
}

.nav_logo.footer {
  width: 18.75rem;
}

.nav_menu_link {
  color: var(--text-color--text-primary);
  text-transform: none;
  padding: .5rem 1rem;
  font-weight: 500;
  transition: all .2s;
}

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

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

.nav_menu_link.alternate {
  background-color: var(--link-color--link-primary);
  color: var(--link-color--link-alternate);
  border-radius: 1rem;
  margin-left: 4rem;
}

.nav_menu_link.alternate:hover {
  background-color: var(--background-color--background-secondary);
}

.nav_button {
  padding: 1rem;
}

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

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

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

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

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

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

.hero_content {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  max-width: 70rem;
  display: grid;
  position: relative;
}

.hero_image {
  border-radius: 1rem;
  margin-top: 0;
}

.hero_heading {
  font-size: 4rem;
}

.section_hero {
  color: #fff;
  background-color: #000;
  background-image: radial-gradient(circle at 0 100%, #2d62ff4d, #0000 50%), radial-gradient(circle at 100% 60%, #2d62ff4d, #1110 20%), radial-gradient(circle at 100% 100%, #d600c433, #0000 45%);
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  display: flex;
  position: relative;
}

.hero_grid {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.nav_fixed {
  z-index: 2147483647;
  position: absolute;
  inset: 0% 0% auto;
}

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

.section_header.is_home {
  background-image: url('../images/FSF_9232.webp');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section_header.is_laadoplossingen {
  background-image: linear-gradient(-90deg, #00264b00, var(--background-color--background-primary)), url('../images/shutterstock_charging-1_1.webp');
  background-position: 0 0, 100%;
  height: 41.563rem;
}

.section_header.is_contact {
  background-image: linear-gradient(-90deg, #00264b00, var(--background-color--background-primary)), url('../images/ff_contact-scaled-auto_1.webp');
  background-position: 0 0, 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  height: 41.563rem;
}

.section_header.is_about {
  background-image: linear-gradient(-90deg, #00264b00, var(--background-color--background-primary)), url('../images/ff_over-ons-scaled-auto_1.webp');
  background-position: 0 0, 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  height: 41.563rem;
}

.section_header.is_loadbalancing {
  background-image: linear-gradient(-90deg, #00264b00, var(--background-color--background-primary)), url('../images/foto1_1.webp');
  background-position: 0 0, 100%;
  height: 41.563rem;
}

.na {
  width: 220px;
}

.dropdown-icon {
  width: 18px;
  height: 18px;
  margin-left: .5rem;
}

.nav-wrapper {
  grid-column-gap: 5.625rem;
  grid-row-gap: 5.625rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 3.75rem;
  display: flex;
}

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

.nav_bg {
  z-index: -1;
  background-color: var(--base-color-neutral--white);
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  width: 100vw;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.hero-text-div {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 420px;
  height: 420px;
  display: flex;
  position: relative;
  top: -120px;
  right: -120px;
}

.hero-bg {
  background-color: var(--background-color--background-secondary);
  mix-blend-mode: multiply;
  border-radius: 100000000000000px;
  position: absolute;
  inset: 0%;
}

.relative-text {
  position: relative;
}

.text-style-underline {
  text-transform: none;
  text-decoration: underline;
}

.section_mobility {
  z-index: 1;
  margin-top: -7.5rem;
  margin-bottom: 3.75rem;
  position: relative;
}

.section_mobility.mg-top {
  margin-top: -10rem;
}

.mobility-wrapper {
  max-width: 60rem;
  padding-right: 13.75rem;
  position: relative;
}

.mobility-wrapper.is-small {
  max-width: 46rem;
}

.mobility-bg {
  z-index: -1;
  background-color: var(--background-color--background-primary);
  border-top-right-radius: 100000000000px;
  border-bottom-right-radius: 1000000000px;
  width: 100vw;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.mobility-main-wrapper {
  justify-content: flex-start;
  display: flex;
}

.inner-section {
  background-color: var(--whitesmoke);
  position: relative;
}

.inner-section.footer {
  position: relative;
  overflow: visible;
}

.grid-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 500px;
  display: grid;
  overflow: visible;
}

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

.grid-wrapper.auto {
  height: auto;
}

.grid-left-div {
  justify-content: center;
  align-items: center;
  padding-right: 1.25rem;
  display: flex;
  position: relative;
}

.grid-left-div.is-reverse {
  padding-left: 1.25rem;
  padding-right: 0;
}

.grid-left-div.is-contact {
  margin-right: 5.625rem;
}

.grid-right-div {
  padding-left: 3.75rem;
}

.grid-right-div.is-reverse {
  padding-left: 0;
  padding-right: 3.75rem;
}

.grid-image {
  border-radius: var(--30px);
  object-fit: cover;
  width: 75rem;
  min-width: 75rem;
  max-width: 60vw;
  height: 500px;
  margin-right: 5.625rem;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.grid-image.is-reverse {
  box-sizing: border-box;
  object-fit: cover;
  object-position: 50% 50%;
  width: auto;
  min-width: auto;
  margin-left: 5.625rem;
  margin-right: 0;
  display: inline-flex;
  inset: 0% auto 0% 0%;
}

.grid-image.is-small {
  width: 32.75rem;
  min-width: 100%;
  height: 32.75rem;
  margin-right: 0;
  padding-right: 0;
  display: none;
}

.grid-image.cover-left {
  object-position: 0% 50%;
}

.grid-image.cover-left.unique-123 {
  width: auto;
  min-width: auto;
}

.grid-icon-div {
  background-color: var(--background-color--background-primary);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.grid-right-top-div {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: flex-start;
  align-items: center;
  max-width: 550px;
  display: flex;
}

.grid-right-top-div.vertical {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.grid-icon {
  z-index: 1;
  width: 4.375rem;
  position: relative;
}

.grid-icon.is-large {
  width: 6.875rem;
}

.grid-icon-bg {
  background-image: linear-gradient(380deg, var(--background-color--background-primary), var(--transparent));
  border-top-left-radius: 100%;
  width: 50%;
  height: 50%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.coin-gradient {
  border-radius: 100px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 8.125rem;
  height: 8.125rem;
  padding: 1rem;
}

.coin-gradient.is-large {
  width: 13.125rem;
  height: 13.125rem;
  padding: 2rem;
}

.section_solution {
  background-color: var(--background-color--background-primary);
}

.section_grid {
  overflow: hidden;
}

.border-bg {
  z-index: 1;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: var(--background-color--background-secondary);
  border-top-right-radius: 40%;
  width: 100vw;
  height: 100%;
  position: absolute;
  inset: 46% 0% 0% auto;
}

.section-contact {
  position: relative;
}

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

.bullet-div {
  justify-content: center;
  align-items: center;
}

.bullet-image {
  width: 10.625rem;
}

.bullet-icon-div {
  background-color: var(--background-color--background-primary);
  border-radius: 100%;
  margin-bottom: 1.875rem;
  margin-left: 1.875rem;
  margin-right: 1.875rem;
  padding: 1.875rem;
}

.div-block {
  width: 100%;
  height: 100%;
  position: relative;
  bottom: -50px;
  right: -20px;
  overflow: hidden;
}

.section_table {
  border-top: 2px solid var(--background-color--background-secondary);
}

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

.table-link {
  border-radius: var(--30px);
  background-color: var(--background-color--background-primary);
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
}

.table-img {
  object-fit: cover;
  width: 100%;
  height: 305px;
}

.table-img-div {
  position: relative;
}

.table-icon {
  z-index: 1;
  width: 110px;
  position: absolute;
  bottom: -40px;
  left: 10px;
  right: auto;
}

.table-icon.reverse {
  transform: rotate(180deg);
}

.table-text-div {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  padding: 2rem 1.875rem;
  display: flex;
}

.section_footer {
  background-color: var(--background-color--background-alternate);
  width: 100%;
  overflow: visible;
}

.follow-wrapper {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

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

.social-link {
  background-color: var(--background-color--background-primary);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  padding: 15px;
  display: flex;
}

.social-link-icon {
  color: var(--base-color-neutral--white);
  width: 90%;
  height: 100%;
}

.social-link-icon.is_small {
  width: 60%;
}

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

.footer-wrapper.padding-section-large {
  overflow: visible;
}

.footer-left-bg {
  background-color: var(--background-color--background-primary);
  border-top-right-radius: 300px;
  width: 100vw;
  height: 100%;
  position: absolute;
  inset: 0% 30% 0% auto;
}

.footer-left-wrapper {
  z-index: 1;
  position: relative;
}

.footer-link {
  grid-column-gap: .4rem;
  grid-row-gap: .4rem;
  color: var(--text-color--text-alternate);
  text-transform: none;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.footer-link.is_right {
  color: var(--text-color--text-primary);
}

.footer-link.is_right:hover {
  color: var(--text-color--text-secondary);
}

.footer-link-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-link-wrapper.is_right {
  grid-column-gap: .2rem;
  grid-row-gap: .2rem;
  justify-content: flex-start;
  align-items: flex-end;
}

.footer-link-circle {
  border: 3px solid var(--background-color--background-secondary);
  border-radius: 100%;
  width: 18px;
  height: 18px;
  position: relative;
  top: -3px;
}

.footer-main-link-div {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-right-bg {
  background-color: var(--base-color-neutral--white);
  border-top-left-radius: 300px;
  width: 100vw;
  position: absolute;
  inset: 0% auto 0% 55%;
}

.footer-right-wrapper {
  z-index: 1;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.dropdown-list {
  background-color: var(--background-color--background-primary);
  color: var(--base-color-neutral--white);
  border-radius: 1rem;
  overflow: hidden;
}

.dropdown-link {
  color: var(--text-color--text-alternate);
}

.dropdown-link:hover {
  background-color: var(--background-color--background-secondary);
}

.nav-menu-close {
  display: none;
}

.header-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

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

.contact-field {
  border-radius: var(--30px);
  background-color: var(--whitesmoke);
  color: var(--base-color-neutral--black);
  border: 0 solid #000;
  height: 4.25rem;
  margin-bottom: .938rem;
  padding: 1.25rem 1.875rem;
  font-size: 1.063rem;
  line-height: 1.75rem;
  transition: all .25s;
}

.contact-field:focus-visible, .contact-field[data-wf-focus-visible] {
  background-color: var(--background-color--background-secondary);
  color: var(--text-color--text-alternate);
}

.contact-field::placeholder {
  color: var(--text-color--text-contact);
}

.contact-field.is-large {
  height: 15.625rem;
}

.contact-checkbox-div {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.contact-checkbox {
  margin-top: 0;
  margin-right: 1rem;
}

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

.contact-img {
  border: 3px solid var(--base-color-neutral--neutral-lightest);
  object-fit: cover;
  border-radius: 50%;
  width: 16.2rem;
  height: 16.2rem;
  padding: .188rem;
}

.contact-img.smaller {
  width: 8rem;
  height: 8rem;
}

.phone-icon {
  width: 1.125rem;
}

.contact-phone {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-contact-div {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: center;
  display: none;
}

.social-icon {
  width: 100%;
  height: 100%;
}

.social-contact {
  border: 2px solid var(--background-color--background-secondary);
  color: var(--text-color--text-secondary);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: .5rem;
  display: flex;
}

.social-contact:hover {
  border-color: var(--background-color--background-primary);
  color: var(--text-color--text-primary);
}

.social-contact.hide-desktop {
  display: none;
}

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

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

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

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

.button_div {
  display: flex;
}

.button_div.is-center {
  justify-content: center;
  align-items: center;
}

.green-line {
  border-top: 2px solid var(--background-color--background-secondary);
  border-right: 2px solid var(--background-color--background-secondary);
  border-top-right-radius: 200px;
  width: 50%;
  min-width: 50%;
  height: 60%;
  min-height: 60%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.green-line.is-right {
  border-width: 0 0 2px 2px;
  border-bottom-style: solid;
  border-bottom-color: var(--background-color--background-secondary);
  border-left-style: solid;
  border-left-color: var(--background-color--background-secondary);
  border-top-right-radius: 0;
  height: 50%;
  min-height: 50%;
  inset: 0% 0% auto auto;
}

.green-line.home {
  height: 40%;
  min-height: 40%;
  display: none;
  bottom: 40%;
}

.button-2 {
  border: 1px solid var(--\<unknown\|relume-variable-neutral-shade-7\>);
  background-color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
  color: var(--\<unknown\|relume-variable-neutral-white\>);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-2.is-secondary {
  background-color: var(--\<unknown\|relume-variable-transparent\>);
  color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
}

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

.button-2.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.section_layout306 {
  background-color: var(--whitesmoke);
}

.text-style-tagline {
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.text-size-medium-2 {
  font-size: 1.125rem;
}

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

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

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

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

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

.heading-style-h2-2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.layout306_image-wrapper {
  border-radius: var(--\<unknown\|relume-variable-radius-medium\>);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.heading-style-h5-2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.heading-style-h5-2.text-color-primary {
  font-size: 1.25rem;
}

.padding-global-2 {
  padding-left: 5%;
  padding-right: 5%;
}

.layout306_image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 3rem 0 3rem 0;
  width: 100%;
  height: 100%;
}

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

.layout306_item {
  background-color: var(--base-color-neutral--white);
  border-radius: 3rem 0 3rem 0;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 30rem;
  padding-bottom: 2rem;
  box-shadow: 0 2px 5px #0003;
}

.text-block-usp-s {
  padding: .5rem 1rem;
}

.heading-style-h6-2 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.padding-global-3 {
  padding-left: 5%;
  padding-right: 5%;
}

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

.stats28_number {
  color: var(--text-color--text-primary);
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.3;
}

.heading-style-h3-2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

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

.stats28_item {
  background-color: var(--background-color--background-alternate);
  border: 1px #000;
  border-top-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 2rem;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 5px #0003;
}

.image-wrapper.flexbox-centered {
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-wrapper.height-40rem {
  height: 15rem;
}

.image-small {
  width: 156px;
}

.usp-heading {
  color: var(--text-color--text-primary);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.usp-paragraph {
  color: var(--text-color--text-primary);
  font-size: 1.063rem;
}

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

.loadbalancing-list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.loadbalancing-item {
  background-color: var(--base-color-neutral--white);
  border-radius: 3rem 3rem 0 0;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 28rem;
  box-shadow: 0 2px 5px #0003;
}

.usp-title {
  color: var(--text-color--text-primary);
  font-size: 1.5rem;
  font-weight: 500;
}

.loadbalancing-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
  width: 100%;
  height: 100%;
}

.flexbox-horizontal {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.green-dot {
  background-color: var(--base-color-system--success-green);
  border-radius: 1000rem;
  width: 100%;
  height: 3rem;
}

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

.section-laadpalen {
  background-color: var(--background-color--background-alternate);
}

._2-images {
  grid-column-gap: 2rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.image-item {
  background-color: #0000;
  border: 1px #000;
  border-top-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 2rem;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 5px #0003;
}

.max-width-big {
  max-width: 48rem;
}

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

.section_header137.margin-top-small {
  margin-top: 8rem;
}

.header137_component {
  grid-column-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  display: grid;
}

.header137_component.align-top {
  place-items: start stretch;
}

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

.header137_content.no-padding0right {
  margin-right: 0;
}

.button-3 {
  border-radius: var(--30px);
  background-color: var(--background-color--background-secondary);
  color: var(--text-color--text-alternate);
  text-align: center;
  text-transform: uppercase;
  padding: .75rem 3.125rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  transition: all .2s;
}

.button-3:hover, .button-3.is-secondary {
  background-color: var(--background-color--background-primary);
}

.button-3.is-secondary:hover {
  background-color: var(--background-color--background-secondary);
}

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

.button-3.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.header137_image-group {
  align-items: center;
  display: flex;
  position: relative;
}

.header137_image-wrapper2 {
  border-radius: var(--\<unknown\|relume-variable-radius-medium\>);
  width: 45%;
  position: absolute;
  overflow: hidden;
}

.header137_image2 {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.header137_image-wrapper {
  margin-top: 6rem;
  margin-left: 15%;
}

.header137_image1 {
  object-fit: fill;
  border-top-left-radius: 5rem;
  width: 100%;
  min-width: 100%;
  height: auto;
  max-height: 60rem;
}

.header137_image1.new-image._1 {
  margin-left: 2%;
}

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

.grid-2-col {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
}

.radius-1rem {
  border-radius: 1rem;
}

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

.layout307_component.sticky {
  width: 100%;
  height: 100%;
  position: relative;
  top: 10vh;
}

.layout307_list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  height: 100%;
  display: flex;
  position: relative;
  top: 1px;
}

.layout307_item {
  background-color: var(--base-color-neutral--white);
  border-radius: 3rem 0 3rem 0;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 28rem;
  position: static;
  top: 25px;
  box-shadow: 0 2px 5px #0003;
}

.layout307_item.card-point-1 {
  position: sticky;
  top: 20px;
}

.layout307_item.card-point-2 {
  position: sticky;
  top: 60px;
}

.layout307_item.height-100 {
  height: 40rem;
}

.layout307_item.height-100.card-1 {
  box-shadow: none;
  height: 32.5rem;
  position: static;
  top: 5rem;
}

.layout307_item.height-100.card-2 {
  margin-top: 0;
}

.layout307_item.height-100.card-3 {
  margin-top: 0;
  position: sticky;
}

.layout307_item.height-100.card-4 {
  box-shadow: none;
  height: 32.5rem;
  position: static;
  top: 5rem;
}

.layout307_image-wrapper {
  border-radius: var(--\<unknown\|relume-variable-radius-medium\>);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.layout307_image {
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 3rem 0 3rem 0;
  width: 100%;
  height: 100%;
}

.section-referenties {
  position: relative;
}

.section_logo3 {
  overflow: hidden;
}

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

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

.logo3_component {
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.logo3_component.grid-overview {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.logo3_list {
  grid-column-gap: 4.5rem;
  grid-row-gap: 1rem;
  white-space: nowrap;
  flex-wrap: wrap;
  flex: 0 auto;
  grid-template-rows: auto;
  grid-template-columns: 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem;
  grid-auto-columns: 1fr;
  justify-content: stretch;
  place-items: center start;
  margin-right: 75px;
  display: grid;
}

.logo3_list.right {
  place-items: center end;
}

.logo3_list.right.grid {
  display: block;
}

.logo3_list.right.grid.new1 {
  margin-right: 0;
  display: flex;
}

.logo3_list.grid-2x1 {
  display: block;
}

.logo3_list.grid-2x1.new1 {
  flex-flow: column;
  margin-right: 0;
  display: flex;
}

.logo3_list.block {
  display: block;
}

.logo3_list.block.new1 {
  display: flex;
}

.logo3_wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: flex-start;
  align-items: center;
  width: 280px;
  height: 140px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.logo3_logo {
  max-height: 3.5rem;
}

.logo3_logo.smaller {
  width: 150px;
}

.logo3_block {
  background-color: var(--whitesmoke);
  border-radius: .5rem;
  order: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: 10px;
  margin-right: 10px;
  transition: background-color .3s cubic-bezier(.645, .045, .355, 1);
  display: flex;
}

.logo3_block:hover {
  background-color: var(--text-color--text-secondary);
}

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

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

.logo3_logo-2 {
  max-height: 3.5rem;
}

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

.heading-style-h2-3 {
  font-size: 2.1875rem;
  line-height: 2.8125rem;
}

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

.heading-style-h2-4 {
  font-size: 2.1875rem;
  line-height: 2.8125rem;
}

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

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

.layout353_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.layout353_content-left {
  position: sticky;
  top: 30%;
}

.heading-style-h2-5 {
  font-size: 2.1875rem;
  line-height: 2.8125rem;
}

.layout353_content-item {
  border: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
  background-color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  margin-bottom: 2rem;
  padding: 2rem;
  position: sticky;
}

.layout353_content-item.content-item-1 {
  top: 30%;
}

.layout353_content-item.content-item-2 {
  top: 32%;
}

.layout353_content-item.content-item-3 {
  top: 34%;
}

.layout353_content-item.content-item-4 {
  top: 36%;
}

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

.heading-style-h5-3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

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

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

.heading-style-h2-6 {
  font-size: 2.1875rem;
  line-height: 2.8125rem;
}

.heading-style-h5-4 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-cards-list {
  transition: all .2s;
  position: relative;
}

._w-cards-list {
  padding-bottom: 100px;
  padding-left: 20px;
  padding-right: 20px;
  position: sticky;
  top: 1px;
}

.c-card {
  width: 100%;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  transition: all .25s;
  position: relative;
}

.c-card._1 {
  margin-left: 2%;
}

.c-card._2 {
  position: sticky;
  top: 100px;
}

.c-card._3 {
  position: sticky;
  top: 180px;
}

.c-card._4 {
  position: sticky;
  top: 260px;
}

.c-card._5 {
  position: sticky;
  top: 340px;
}

._w-card {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 100px;
  padding: 30px;
  position: relative;
  box-shadow: 1px 1px 15px #13131380;
}

.c-card-title {
  margin-bottom: 10px;
}

.card-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5em;
  line-height: 1em;
}

.card-subtitle {
  margin-top: 0;
  margin-bottom: 0;
}

.c-card-content-divider {
  border-bottom: 1px dashed #bbb;
  width: 100%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.c-card-details {
  margin-bottom: 20px;
}

.card-details {
  margin-bottom: 0;
}

.div-block-2 {
  position: relative;
}

.sticky-container {
  width: 100%;
  height: 600vw;
  display: flex;
  position: relative;
}

.sticky-wrap {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.scroll-inner {
  align-items: flex-end;
  width: 300vw;
  height: 100%;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.scroll-card {
  background-color: #fff;
  border: .0625rem solid #83838329;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  flex-direction: column;
  flex: 1;
  align-items: center;
  width: 30vw;
  height: 80%;
  min-height: 32rem;
  margin-left: 1rem;
  margin-right: 1rem;
  display: flex;
  position: relative;
  bottom: -5%;
  overflow: hidden;
}

.media-wrapper {
  width: 100%;
  height: 61.8034%;
  position: relative;
  inset: 0% 0% auto;
}

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

.content-wrapper {
  flex: 1;
  width: 100%;
  padding: 2rem;
  position: relative;
}

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

.heading {
  color: #1d1d1f;
  letter-spacing: -.025em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
}

.description {
  opacity: .75;
  color: #1d1d1f;
  letter-spacing: -.025em;
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}

.grow-background {
  z-index: 0;
  background-color: #f5f5f5;
  height: 0%;
  position: absolute;
  inset: auto 0% 0%;
}

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

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

.heading-style-h2-7 {
  font-size: 2.1875rem;
  line-height: 2.8125rem;
}

.section-usp-animated {
  height: 300vh;
  position: relative;
}

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

.features-card-img {
  margin-bottom: 30px;
}

.features-card-title {
  letter-spacing: -1px;
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 500;
  line-height: 36px;
}

.features-right {
  grid-row-gap: 100px;
  flex-direction: column;
  width: 100%;
  display: flex;
  position: relative;
}

.section {
  background-color: #fff;
  padding: 36px 20px;
}

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

.features-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.features-card {
  transform-origin: 50% 0;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 15px;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  display: flex;
  position: sticky;
  top: 150px;
}

.features-card.third {
  background-color: #0000;
  width: 32%;
  margin-bottom: 30px;
  margin-left: 70%;
  padding: 0;
  top: 150px;
}

.features-card.first {
  background-color: #0000;
  width: 30%;
  margin-bottom: 30px;
  padding: 0;
}

.features-card.second {
  background-color: #0000;
  width: 30%;
  margin-bottom: 30px;
  margin-left: 35%;
  padding: 0;
  top: 150px;
}

.grid-2x1 {
  grid-template-rows: auto;
}

.grid-2x1._1-5fr-1fr {
  grid-template-columns: 1.5fr 1fr;
}

.grid-2x1._1-5fr-1fr.reverse {
  grid-template-columns: 1fr 1.5fr;
}

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

.collage-image.first, .collage-image.second, .collage-image.third, .collage-image.fourth, .collage-image.fith, .collage-image.sixth, .collage-image.seventh {
  object-position: 50% 15%;
  border-radius: 1rem;
}

.collage-item {
  border-radius: 1rem;
  height: 12rem;
  position: relative;
}

.collage-item.flexbox-centered {
  justify-content: center;
  align-items: center;
  display: flex;
}

.collage-item.height-40rem {
  height: 15rem;
}

.grid-3x1 {
  grid-template-rows: auto;
}

.grid-3x1._1-5fr-1fr {
  grid-template-columns: .7125fr .75fr 1fr;
}

.collage-text {
  padding: 1rem;
  display: none;
  position: absolute;
  inset: 0% auto auto 0%;
}

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

.logo-sectie.position-bottom-4rem {
  padding-bottom: 4rem;
}

.logo-fleet {
  max-width: 300px;
}

.text-color-dark-blue {
  color: var(--base-color-brand--blue-dark);
}

@media screen and (max-width: 991px) {
  .padding-xlarge {
    padding: 3rem;
  }

  .margin-xlarge {
    margin: 3rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

  .margin-0._100 {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .hide-tablet {
    display: none;
  }

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

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

  .heading-style-h3 {
    font-size: 1.3rem;
  }

  .heading-style-h1 {
    font-size: 2.25rem;
  }

  .padding-global.padding-section-header {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }

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

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

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

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

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

  .heading-style-h2 {
    font-size: 1.625rem;
    line-height: 1.2;
  }

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

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

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

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

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

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

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

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

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

  .nav_brand {
    z-index: 2;
  }

  .nav_menu {
    z-index: 5;
    background-color: var(--background-color--background-primary);
    justify-content: center;
    align-items: center;
    width: 40vw;
    padding: 7.25rem 1.875rem;
    position: fixed;
    inset: 0% 0% 0% auto;
  }

  .nav_menu_link {
    color: var(--text-color--text-alternate);
    border-bottom: 1px solid #ffffff40;
    width: 100%;
    margin: 0;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .nav_menu_link:hover {
    color: var(--text-color--text-alternate);
    background-color: #ffffff1a;
  }

  .nav_menu_link.is_dropdown {
    justify-content: space-between;
    align-items: center;
  }

  .nav_menu_link.alternate {
    margin-top: 1rem;
    margin-left: 0;
  }

  .nav_button {
    z-index: 2;
    background-color: var(--transparent);
    color: #fff;
    padding: 0;
  }

  .nav_button.w--open {
    background-color: var(--transparent);
  }

  .section_hero {
    padding-top: 3rem;
  }

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

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

  .section_header.is_laadoplossingen, .section_header.is_contact, .section_header.is_about, .section_header.is_loadbalancing {
    height: 36.563rem;
  }

  .nav-wrapper {
    background-color: var(--background-color--background-secondary);
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    padding-right: 6%;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    place-items: center;
  }

  .nav_bg {
    z-index: 1;
    right: 15%;
  }

  .hero-text-div {
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 5rem;
    right: 0;
  }

  .z-index-1.is-left {
    order: -1;
    height: 100%;
    position: absolute;
    inset: 0% auto 0% 0%;
  }

  .z-index-1.is-right {
    order: -1;
    height: 100%;
    position: absolute;
    inset: 0% 0% 0% auto;
  }

  .section_mobility {
    background-color: var(--background-color--background-primary);
    margin-top: 0;
    margin-bottom: 0;
  }

  .mobility-wrapper.padding-section-medium {
    max-width: 100%;
    padding-right: 0;
  }

  .mobility-bg {
    display: none;
  }

  .grid-wrapper {
    grid-column-gap: 1.875rem;
    grid-row-gap: 1.875rem;
    grid-template-columns: 1fr;
    height: auto;
  }

  .grid-wrapper.swap {
    flex-flow: column-reverse;
    display: flex;
  }

  .grid-left-div {
    border-radius: var(--30px);
    padding-right: 0;
    overflow: hidden;
  }

  .grid-left-div.is-reverse {
    padding-left: 0;
    display: block;
  }

  .grid-left-div.is-contact {
    margin-right: 0;
    display: none;
  }

  .grid-right-div {
    padding-left: 0;
  }

  .grid-right-div.is-reverse {
    padding-right: 0;
  }

  .grid-right-div.padding-0.max-width-medium {
    max-width: none;
  }

  .grid-image {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 400px;
    margin-right: 0;
    position: relative;
  }

  .grid-image.is-reverse {
    width: 100%;
    margin-left: 0;
  }

  .grid-image.is-small {
    width: 100%;
    height: 100%;
  }

  .grid-right-top-div {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    max-width: none;
  }

  .grid-icon {
    width: 3.6rem;
  }

  .coin-gradient {
    width: 7rem;
    height: 7rem;
  }

  .coin-gradient.is-large {
    display: none;
  }

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

  .table-icon {
    bottom: -36px;
  }

  .footer-main-link-div {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    grid-template-columns: 1fr;
  }

  .footer-right-bg {
    left: 40%;
  }

  .nav-menu-icon {
    width: 30px;
    height: 30px;
  }

  .dropdown-list {
    border-radius: 0;
    position: relative;
  }

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

  .nav-menu-inner-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    display: flex;
  }

  .nav-menu-close {
    display: block;
    position: absolute;
    inset: 5% 10% auto auto;
  }

  .nav-close {
    width: 30px;
    height: 30px;
  }

  .header-wrapper {
    grid-template-columns: 1fr;
    justify-content: space-between;
    place-items: center;
  }

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

  .contact-phone {
    display: none;
  }

  .social-contact.hide-desktop {
    display: flex;
  }

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

  .team-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr 1fr;
    margin-top: 1rem;
  }

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

  .green-line {
    display: none;
  }

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

  .heading-style-h2-2 {
    font-size: 2.75rem;
  }

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

  .stats28_number {
    font-size: 4rem;
  }

  .heading-style-h3-2 {
    font-size: 2.25rem;
  }

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

  .loadbalancing-list {
    grid-template-columns: 1fr 1fr;
  }

  ._2-images {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

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

  .header137_content {
    margin-left: 5%;
    margin-right: 5%;
  }

  .header137_image-wrapper2 {
    padding-left: 5%;
  }

  .header137_image2, .header137_image1 {
    height: auto;
    max-height: none;
  }

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

  .layout307_item.height-100.card-1, .layout307_item.height-100.card-4 {
    height: auto;
    min-height: auto;
  }

  .logo3_component.grid-overview {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .logo3_list.block.new1 {
    justify-content: flex-start;
    align-items: center;
    margin-right: 0;
  }

  .logo3_list.block.new1.center {
    justify-content: center;
    align-items: center;
  }

  .heading-style-h2-3, .heading-style-h2-4 {
    font-size: 1.625rem;
    line-height: 1.2;
  }

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

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

  .heading-style-h2-5 {
    font-size: 1.625rem;
    line-height: 1.2;
  }

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

  .heading-style-h2-6 {
    font-size: 1.625rem;
    line-height: 1.2;
  }

  .scroll-inner {
    width: 600vw;
  }

  .scroll-card {
    width: 60vw;
    height: 61.8%;
    bottom: 0%;
  }

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

  .heading-style-h2-7 {
    font-size: 1.625rem;
    line-height: 1.2;
  }

  .features-right {
    grid-row-gap: 1rem;
  }

  .features-wrapper {
    flex-flow: column;
  }

  .features-card.third {
    width: 100%;
    margin-left: 0%;
    position: static;
  }

  .features-card.first {
    width: 100%;
    position: static;
  }

  .features-card.second {
    width: 100%;
    margin-left: 0%;
    position: static;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: .875rem;
  }

  .padding-xlarge {
    padding: 2rem;
  }

  .margin-xlarge {
    margin: 2rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .margin-large {
    margin: 1.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-large {
    padding: 1.5rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .padding-medium {
    padding: 1.25rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-medium {
    margin: 1.25rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .hide-mobile-landscape {
    display: none;
  }

  .heading-style-h3 {
    font-size: 1.2rem;
  }

  .heading-style-h1 {
    font-size: 1.8rem;
  }

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

  .padding-global.padding-section-header {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }

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

  .fs-styleguide_section-header {
    font-size: .875rem;
  }

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

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

  .heading-style-h4 {
    font-size: 1rem;
  }

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

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

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

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

  .heading-style-h2 {
    font-size: 1.563rem;
  }

  .heading-style-h5 {
    font-size: .875rem;
  }

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

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

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

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

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

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

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

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

  .nav_logo {
    width: 15rem;
  }

  .nav_logo.footer {
    width: 16rem;
  }

  .nav_menu {
    width: 50vw;
  }

  .nav-wrapper {
    padding-right: 9%;
  }

  .nav_bg {
    right: 20%;
  }

  .hero-text-div {
    justify-content: center;
    align-items: center;
    width: 380px;
    height: 380px;
    padding-bottom: 0;
    top: 0;
  }

  .z-index-1 {
    height: 100%;
  }

  .z-index-1.max-width {
    max-width: 260px;
    height: auto;
  }

  .inner-section.footer {
    background-color: var(--base-color-neutral--white);
  }

  .grid-left-div {
    height: 300px;
  }

  .grid-left-div.is-reverse {
    height: 260px;
  }

  .grid-right-top-div {
    grid-column-gap: 1.6rem;
    grid-row-gap: 1.6rem;
  }

  .grid-icon {
    width: 3rem;
  }

  .coin-gradient {
    width: 5.5rem;
    height: 5.5rem;
    padding: .8rem;
  }

  .bullet-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .bullet-image {
    width: 6rem;
  }

  .table-wrapper {
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
  }

  .table-img {
    aspect-ratio: 1;
    height: 100%;
  }

  .footer-wrapper.padding-section-large {
    grid-template-columns: 1fr;
  }

  .footer-left-bg, .footer-left-wrapper {
    display: none;
  }

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

  .footer-right-bg {
    display: none;
  }

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

  .nav-menu-icon {
    width: 28px;
    height: 28px;
  }

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

  .contact-img {
    width: 70%;
    height: 100%;
  }

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

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

  .text-size-medium-2 {
    font-size: 1rem;
  }

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

  .heading-style-h2-2 {
    font-size: 2.25rem;
  }

  .heading-style-h5-2 {
    font-size: 1.25rem;
  }

  .layout306_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

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

  .stats28_number {
    font-size: 3.5rem;
  }

  .heading-style-h3-2 {
    font-size: 2rem;
  }

  .stats28_list {
    flex: 1;
    grid-template-columns: 1fr;
  }

  .usp-heading {
    font-size: 1.125rem;
  }

  .loadbalancing-list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  ._2-images {
    flex: 1;
    grid-template-columns: 1fr;
  }

  .header137_component {
    padding-top: 4rem;
  }

  .layout307_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .layout307_item.height-100.card-1, .layout307_item.height-100.card-4 {
    height: auto;
    padding-bottom: 2rem;
  }

  .logo3_list {
    grid-column-gap: 1rem;
    grid-template-columns: 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem;
    padding-top: 1rem;
  }

  .logo3_wrapper {
    padding: .75rem 1rem;
  }

  .logo3_logo, .logo3_logo-2 {
    max-height: 3rem;
  }

  .heading-style-h2-3, .heading-style-h2-4 {
    font-size: 1.563rem;
  }

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

  .layout353_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .layout353_content-left {
    position: static;
  }

  .heading-style-h2-5 {
    font-size: 1.563rem;
  }

  .heading-style-h5-3 {
    font-size: .875rem;
  }

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

  .heading-style-h2-6 {
    font-size: 1.563rem;
  }

  .heading-style-h5-4 {
    font-size: .875rem;
  }

  .sticky-wrap {
    height: auto;
    overflow: visible;
  }

  .scroll-inner {
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
  }

  .scroll-card {
    border-bottom-right-radius: 2rem;
    border-bottom-left-radius: 2rem;
    width: 100%;
    margin: 1rem 0;
  }

  .heading {
    font-size: 1.75rem;
  }

  .description {
    margin-top: .875rem;
    font-size: 1.125rem;
  }

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

  .heading-style-h2-7 {
    font-size: 1.563rem;
  }
}

@media screen and (max-width: 479px) {
  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

  .fs-styleguide_row {
    flex-wrap: wrap;
  }

  .heading-style-h3 {
    font-size: 1rem;
  }

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

  .heading-style-h1 {
    font-size: 1.5rem;
  }

  .text-color-alternate {
    flex-flow: wrap;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .heading-style-h2 {
    font-size: 1.3rem;
  }

  .button {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .nav_logo {
    width: 11rem;
  }

  .nav_logo.footer {
    width: 15rem;
  }

  .nav_menu {
    width: 80vw;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .hero_heading {
    font-size: 2.5rem;
  }

  .nav-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    padding-top: .8rem;
    padding-bottom: .8rem;
    padding-right: 8%;
  }

  .hero-text-div {
    width: 280px;
    height: 280px;
  }

  .z-index-1.max-width {
    max-width: 230px;
  }

  .grid-wrapper.swap {
    flex-flow: column-reverse;
    display: flex;
  }

  .grid-image {
    height: 260px;
  }

  .grid-right-top-div {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .bullet-wrapper {
    margin-top: 1rem;
  }

  .bullet-image {
    width: 3rem;
  }

  .bullet-icon-div {
    margin-bottom: 1rem;
    padding: 1.5rem;
  }

  .table-wrapper {
    max-width: none;
  }

  .social-link {
    width: 48px;
    height: 48px;
  }

  .nav-menu-icon {
    width: 24px;
    height: 24px;
  }

  .nav-close {
    width: 28px;
    height: 28px;
  }

  .contact-img {
    width: 70%;
    height: 100%;
  }

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

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

  .loadbalancing-list {
    grid-template-columns: 1fr;
  }

  ._2-images {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .section_header137 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

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

  .button-3 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .header137_image-group {
    display: none;
  }

  .grid-2-col {
    flex-flow: column;
    display: flex;
  }

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

  .logo3_component.grid-overview {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
    display: flex;
  }

  .logo3_list {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
    justify-content: center;
  }

  .logo3_list.right.grid.new1 {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .logo3_list.grid-2x1.new1 {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    display: block;
  }

  .logo3_list.block.new1 {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    justify-content: center;
    align-items: center;
    margin-right: 0;
    padding-top: 0;
  }

  .logo3_list.block.new1.center {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
  }

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

  .heading-style-h2-3, .heading-style-h2-4 {
    font-size: 1.3rem;
  }

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

  .heading-style-h2-5, .heading-style-h2-6 {
    font-size: 1.3rem;
  }

  .c-card._2 {
    top: 80px;
  }

  .c-card._3 {
    top: 140px;
  }

  .c-card._4 {
    top: 200px;
  }

  .c-card._5 {
    top: 260px;
  }

  ._w-card {
    margin-bottom: 40px;
    padding: 20px;
  }

  .card-title {
    font-size: 2.5em;
  }

  .card-subtitle {
    font-size: 1.3em;
    line-height: 1em;
  }

  .c-card-content-divider {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .card-details {
    font-size: .9em;
    line-height: 1.2em;
  }

  .heading-style-h2-7 {
    font-size: 1.3rem;
  }

  .grid-2x1._1-5fr-1fr {
    flex-flow: column;
    display: flex;
  }

  .grid-3x1._1-5fr-1fr {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-flow: column;
    display: flex;
  }

  .image {
    max-width: 200px;
  }

  .logo-fleet {
    max-width: 175px;
  }
}

#w-node-_55c67e3b-be34-1281-c7f5-b871fa4b14f9-fa37ad3b {
  justify-self: end;
}

#w-node-_37cc7bb5-32ab-e1cf-2283-48a900849be5-fa37ad3b, #w-node-_0f6b4eb7-66b0-2313-eb04-c27d21e35e4a-fa37ad3b, #w-node-f63c0667-eb74-3da1-a652-266dcda8628a-fa37ad3b {
  justify-self: center;
}

#w-node-_0be7cf8e-6d99-1f2d-bcb5-00aa9f2fa1bb-fa37ad3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_421f7fe0-68c4-6dd6-0aff-aa9b0f07804a-fa37ad3b, #w-node-a8fdd704-3ebc-b71f-997d-3ae43d296ebe-fa37ad3b, #w-node-_3e2427ed-4e8f-745d-6d98-b931cbfd3942-fa37ad3b, #w-node-ec3b0650-aa74-40d7-018e-b7df42b7c0e6-fa37ad3b, #w-node-ec3b0650-aa74-40d7-018e-b7df42b7c0e9-fa37ad3b, #w-node-ec3b0650-aa74-40d7-018e-b7df42b7c0ec-fa37ad3b {
  justify-self: center;
}

#w-node-ec3b0650-aa74-40d7-018e-b7df42b7c0ef-fa37ad3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-ec3b0650-aa74-40d7-018e-b7df42b7c0f2-fa37ad3b, #w-node-ec3b0650-aa74-40d7-018e-b7df42b7c0f5-fa37ad3b, #w-node-ec3b0650-aa74-40d7-018e-b7df42b7c0f8-fa37ad3b, #w-node-_985569d7-fdf4-85f6-5fb5-113244ca75b8-fa37ad3b, #w-node-_985569d7-fdf4-85f6-5fb5-113244ca75bb-fa37ad3b, #w-node-_985569d7-fdf4-85f6-5fb5-113244ca75be-fa37ad3b {
  justify-self: center;
}

#w-node-_985569d7-fdf4-85f6-5fb5-113244ca75c1-fa37ad3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_985569d7-fdf4-85f6-5fb5-113244ca75c4-fa37ad3b, #w-node-_985569d7-fdf4-85f6-5fb5-113244ca75c7-fa37ad3b, #w-node-_985569d7-fdf4-85f6-5fb5-113244ca75ca-fa37ad3b, #w-node-_985569d7-fdf4-85f6-5fb5-113244ca75ce-fa37ad3b, #w-node-_985569d7-fdf4-85f6-5fb5-113244ca75d1-fa37ad3b, #w-node-_985569d7-fdf4-85f6-5fb5-113244ca75d4-fa37ad3b {
  justify-self: center;
}

#w-node-_985569d7-fdf4-85f6-5fb5-113244ca75d7-fa37ad3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_985569d7-fdf4-85f6-5fb5-113244ca75da-fa37ad3b, #w-node-_985569d7-fdf4-85f6-5fb5-113244ca75dd-fa37ad3b, #w-node-_985569d7-fdf4-85f6-5fb5-113244ca75e0-fa37ad3b, #w-node-_81a58376-b8c0-4aed-1594-96cd47f560eb-fa37ad3b {
  justify-self: center;
}

#w-node-fb30d89f-3356-748f-1bdf-13c0635ad421-fa37ad3b, #w-node-fb30d89f-3356-748f-1bdf-13c0635ad426-fa37ad3b, #w-node-fb30d89f-3356-748f-1bdf-13c0635ad42b-fa37ad3b {
  place-self: center;
}

#w-node-_223a08df-e83e-f35d-f5a5-1ed432cd4b61-32cd4b4e {
  align-self: center;
}

#w-node-_223a08df-e83e-f35d-f5a5-1ed432cd4bba-32cd4b4e {
  justify-self: auto;
}

#w-node-b224ec27-30fa-be84-48bf-7ed471542af3-fa37ad3e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627ca17-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca1c-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca21-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca26-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca2c-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca32-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca38-fa37ad3e {
  justify-self: start;
}

#w-node-_5d224905-8a1e-1460-7532-d38cb7ec37c1-fa37ad3e, #w-node-_40538c8c-870b-b365-34c4-2a06f0f8567d-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cb45-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cb5e-fa37ad3e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb61-fa37ad3e {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb63-fa37ad3e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb66-fa37ad3e {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cbb8-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cbc2-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cbc3-fa37ad3e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc31-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc36-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc3b-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc40-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc45-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc4a-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc54-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc59-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc5e-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc63-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc68-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc6d-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc72-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc77-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc7c-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc81-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc86-fa37ad3e {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc8a-fa37ad3e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc8b-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc90-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc95-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc9a-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccaf-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccb4-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccb9-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccbe-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccc3-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccc8-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccd2-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccd7-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccdc-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cce1-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cce6-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cceb-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccf0-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccf5-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccfa-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccff-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd04-fa37ad3e {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cd08-fa37ad3e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cd09-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd0e-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd13-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd18-fa37ad3e, #w-node-_30684373-af34-3818-02a4-e58b3ffef3e5-fa37ad3e, #w-node-_30684373-af34-3818-02a4-e58b3ffef3ea-fa37ad3e, #w-node-_30684373-af34-3818-02a4-e58b3ffef3ef-fa37ad3e, #w-node-_30684373-af34-3818-02a4-e58b3ffef3f4-fa37ad3e, #w-node-_30684373-af34-3818-02a4-e58b3ffef3f9-fa37ad3e, #w-node-_30684373-af34-3818-02a4-e58b3ffef3fe-fa37ad3e, #w-node-_30684373-af34-3818-02a4-e58b3ffef403-fa37ad3e, #w-node-_30684373-af34-3818-02a4-e58b3ffef408-fa37ad3e, #w-node-_30684373-af34-3818-02a4-e58b3ffef40d-fa37ad3e, #w-node-_30684373-af34-3818-02a4-e58b3ffef412-fa37ad3e {
  justify-self: start;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef416-fa37ad3e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef417-fa37ad3e {
  justify-self: start;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef41a-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd6b-fa37ad3e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd98-fa37ad3e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cdc7-fa37ad3e {
  justify-self: start;
}

#w-node-_9e6c1df3-64b0-d5cd-7282-fa249599b9fc-2f837ee9 {
  justify-self: end;
}

#w-node-_11be2e76-f075-05b8-a4cd-e39f012325f0-2f837ee9, #w-node-_1f36ccc7-5e65-5414-d916-a177dd970ca1-2f837ee9, #w-node-_56bcbf20-1dfd-2a5e-119b-919ca1c873d6-2f837ee9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_028a8b15-3e8d-4698-e7af-58ea286f057e-2f837ee9 {
  align-self: center;
}

#w-node-_028a8b15-3e8d-4698-e7af-58ea286f0585-2f837ee9 {
  justify-self: start;
}

#w-node-_028a8b15-3e8d-4698-e7af-58ea286f058b-2f837ee9 {
  justify-self: end;
}

#w-node-_028a8b15-3e8d-4698-e7af-58ea286f058d-2f837ee9 {
  place-self: center end;
}

#w-node-_028a8b15-3e8d-4698-e7af-58ea286f05bf-2f837ee9 {
  place-self: center start;
}

#w-node-_028a8b15-3e8d-4698-e7af-58ea286f05d9-2f837ee9 {
  justify-self: start;
}

#w-node-e0ee5b4e-7462-62b6-38a8-884be816079e-2f837ee9 {
  justify-self: end;
}

#w-node-e0ee5b4e-7462-62b6-38a8-884be81607a0-2f837ee9 {
  place-self: center end;
}

#w-node-_207d5819-00d6-f29d-2a88-30c4f70a2f6b-2f837ee9 {
  align-self: center;
}

#w-node-_37bf6a55-6549-32d0-bf2d-494660597576-b9828d4e {
  place-self: center end;
}

#w-node-_207d5819-00d6-f29d-2a88-30c4f70a2f6b-b9828d4e, #w-node-fdc1a121-23df-0a1d-1765-fd1925fb9eff-b9828d4e {
  align-self: center;
}

#w-node-_74046d1d-5a3b-265d-9865-392aa7ed004f-b9828d4e {
  justify-self: start;
}

#w-node-_5bba18af-61cf-7ead-39f1-b9ef2a0084cd-9a17996c {
  justify-self: end;
}

#w-node-_5bba18af-61cf-7ead-39f1-b9ef2a0084cf-9a17996c {
  place-self: center end;
}

#w-node-eb340bee-0c66-df65-117c-619c8d94a5d0-323baa21 {
  justify-self: end;
}

#w-node-_11be2e76-f075-05b8-a4cd-e39f012325f0-323baa21, #w-node-_1f36ccc7-5e65-5414-d916-a177dd970ca1-323baa21, #w-node-_56bcbf20-1dfd-2a5e-119b-919ca1c873d6-323baa21 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_207d5819-00d6-f29d-2a88-30c4f70a2f6b-323baa21 {
  align-self: center;
}

#w-node-eee3b85e-b574-8e3d-1070-030b699a8a23-3679e1c0 {
  justify-self: end;
}

#w-node-_11be2e76-f075-05b8-a4cd-e39f012325f0-3679e1c0, #w-node-_1f36ccc7-5e65-5414-d916-a177dd970ca1-3679e1c0, #w-node-_56bcbf20-1dfd-2a5e-119b-919ca1c873d6-3679e1c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_207d5819-00d6-f29d-2a88-30c4f70a2f6b-3679e1c0, #w-node-_207d5819-00d6-f29d-2a88-30c4f70a2f6b-a363d4ec {
  align-self: center;
}

#w-node-_1a229aff-fbd8-6293-6f76-03cef279a8a9-a363d4ec, #w-node-c029997a-e958-9784-47d4-0b70d92f6021-a363d4ec, #w-node-e9fafb9d-86d7-357b-789c-7c330b83aa04-a363d4ec {
  place-self: center;
}

#w-node-b13f5308-2034-fff3-2813-01624679c65d-18293e3a {
  justify-self: end;
}

#w-node-d56b7278-ebb6-814a-a05f-5f49668bed94-3117e2cf, #w-node-d56b7278-ebb6-814a-a05f-5f49668bed97-3117e2cf, #w-node-d56b7278-ebb6-814a-a05f-5f49668bed9a-3117e2cf {
  justify-self: center;
}

#w-node-d56b7278-ebb6-814a-a05f-5f49668bed9d-3117e2cf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-d56b7278-ebb6-814a-a05f-5f49668beda0-3117e2cf, #w-node-d56b7278-ebb6-814a-a05f-5f49668beda3-3117e2cf, #w-node-d56b7278-ebb6-814a-a05f-5f49668beda6-3117e2cf, #w-node-d56b7278-ebb6-814a-a05f-5f49668bedc6-3117e2cf, #w-node-d56b7278-ebb6-814a-a05f-5f49668bedc9-3117e2cf, #w-node-d56b7278-ebb6-814a-a05f-5f49668bedcc-3117e2cf {
  justify-self: center;
}

#w-node-d56b7278-ebb6-814a-a05f-5f49668bedcf-3117e2cf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-d56b7278-ebb6-814a-a05f-5f49668bedd2-3117e2cf, #w-node-d56b7278-ebb6-814a-a05f-5f49668bedd5-3117e2cf, #w-node-d56b7278-ebb6-814a-a05f-5f49668bedd8-3117e2cf, #w-node-d56b7278-ebb6-814a-a05f-5f49668beddc-3117e2cf, #w-node-d56b7278-ebb6-814a-a05f-5f49668beddf-3117e2cf, #w-node-d56b7278-ebb6-814a-a05f-5f49668bede2-3117e2cf {
  justify-self: center;
}

#w-node-d56b7278-ebb6-814a-a05f-5f49668bede5-3117e2cf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-d56b7278-ebb6-814a-a05f-5f49668bede8-3117e2cf, #w-node-d56b7278-ebb6-814a-a05f-5f49668bedeb-3117e2cf, #w-node-d56b7278-ebb6-814a-a05f-5f49668bedee-3117e2cf, #w-node-d56b7278-ebb6-814a-a05f-5f49668bedaa-3117e2cf, #w-node-d56b7278-ebb6-814a-a05f-5f49668bedad-3117e2cf, #w-node-d56b7278-ebb6-814a-a05f-5f49668bedb0-3117e2cf {
  justify-self: center;
}

#w-node-d56b7278-ebb6-814a-a05f-5f49668bedb3-3117e2cf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-d56b7278-ebb6-814a-a05f-5f49668bedb6-3117e2cf, #w-node-d56b7278-ebb6-814a-a05f-5f49668bedb9-3117e2cf, #w-node-d56b7278-ebb6-814a-a05f-5f49668bedbc-3117e2cf {
  justify-self: center;
}

#w-node-_9e6c1df3-64b0-d5cd-7282-fa249599b9fc-f48d33e6, #w-node-_028a8b15-3e8d-4698-e7af-58ea286f058b-f48d33e6 {
  justify-self: end;
}

#w-node-_028a8b15-3e8d-4698-e7af-58ea286f058d-f48d33e6 {
  place-self: center end;
}

#w-node-_028a8b15-3e8d-4698-e7af-58ea286f05bf-f48d33e6 {
  place-self: center start;
}

#w-node-_028a8b15-3e8d-4698-e7af-58ea286f05d9-f48d33e6 {
  justify-self: start;
}

#w-node-dd3e54b8-3367-eced-dcbc-71f34592dee8-f48d33e6, #w-node-dd3e54b8-3367-eced-dcbc-71f34592deeb-f48d33e6, #w-node-dd3e54b8-3367-eced-dcbc-71f34592deee-f48d33e6 {
  justify-self: center;
}

#w-node-dd3e54b8-3367-eced-dcbc-71f34592def1-f48d33e6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-dd3e54b8-3367-eced-dcbc-71f34592def4-f48d33e6, #w-node-dd3e54b8-3367-eced-dcbc-71f34592def7-f48d33e6, #w-node-dd3e54b8-3367-eced-dcbc-71f34592defa-f48d33e6, #w-node-dd3e54b8-3367-eced-dcbc-71f34592defe-f48d33e6, #w-node-dd3e54b8-3367-eced-dcbc-71f34592df01-f48d33e6, #w-node-dd3e54b8-3367-eced-dcbc-71f34592df04-f48d33e6 {
  justify-self: center;
}

#w-node-dd3e54b8-3367-eced-dcbc-71f34592df07-f48d33e6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-dd3e54b8-3367-eced-dcbc-71f34592df0a-f48d33e6, #w-node-dd3e54b8-3367-eced-dcbc-71f34592df0d-f48d33e6, #w-node-dd3e54b8-3367-eced-dcbc-71f34592df10-f48d33e6, #w-node-dd3e54b8-3367-eced-dcbc-71f34592df1a-f48d33e6, #w-node-dd3e54b8-3367-eced-dcbc-71f34592df1d-f48d33e6, #w-node-dd3e54b8-3367-eced-dcbc-71f34592df20-f48d33e6 {
  justify-self: center;
}

#w-node-dd3e54b8-3367-eced-dcbc-71f34592df23-f48d33e6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-dd3e54b8-3367-eced-dcbc-71f34592df26-f48d33e6, #w-node-dd3e54b8-3367-eced-dcbc-71f34592df29-f48d33e6, #w-node-dd3e54b8-3367-eced-dcbc-71f34592df2c-f48d33e6, #w-node-dd3e54b8-3367-eced-dcbc-71f34592df30-f48d33e6, #w-node-dd3e54b8-3367-eced-dcbc-71f34592df33-f48d33e6, #w-node-dd3e54b8-3367-eced-dcbc-71f34592df36-f48d33e6 {
  justify-self: center;
}

#w-node-dd3e54b8-3367-eced-dcbc-71f34592df39-f48d33e6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-dd3e54b8-3367-eced-dcbc-71f34592df3c-f48d33e6, #w-node-dd3e54b8-3367-eced-dcbc-71f34592df3f-f48d33e6, #w-node-dd3e54b8-3367-eced-dcbc-71f34592df42-f48d33e6 {
  justify-self: center;
}

#w-node-_207d5819-00d6-f29d-2a88-30c4f70a2f6b-f48d33e6 {
  align-self: center;
}

#w-node-_9e6c1df3-64b0-d5cd-7282-fa249599b9fc-8439a2a3 {
  justify-self: end;
}

#w-node-_207d5819-00d6-f29d-2a88-30c4f70a2f6b-8439a2a3 {
  align-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_55c67e3b-be34-1281-c7f5-b871fa4b14f9-fa37ad3b, #w-node-_9e6c1df3-64b0-d5cd-7282-fa249599b9fc-2f837ee9 {
    justify-self: start;
  }

  #w-node-_028a8b15-3e8d-4698-e7af-58ea286f0585-2f837ee9 {
    order: 9999;
  }

  #w-node-_028a8b15-3e8d-4698-e7af-58ea286f058b-2f837ee9 {
    justify-self: auto;
  }

  #w-node-_028a8b15-3e8d-4698-e7af-58ea286f05d9-2f837ee9 {
    order: -9999;
  }

  #w-node-e0ee5b4e-7462-62b6-38a8-884be816079e-2f837ee9 {
    justify-self: auto;
  }

  #w-node-_74046d1d-5a3b-265d-9865-392aa7ed004f-b9828d4e {
    order: 9999;
  }

  #w-node-_5bba18af-61cf-7ead-39f1-b9ef2a0084cd-9a17996c {
    justify-self: auto;
  }

  #w-node-eb340bee-0c66-df65-117c-619c8d94a5d0-323baa21, #w-node-eee3b85e-b574-8e3d-1070-030b699a8a23-3679e1c0, #w-node-b13f5308-2034-fff3-2813-01624679c65d-18293e3a, #w-node-_9e6c1df3-64b0-d5cd-7282-fa249599b9fc-f48d33e6 {
    justify-self: start;
  }

  #w-node-_028a8b15-3e8d-4698-e7af-58ea286f058b-f48d33e6 {
    justify-self: auto;
  }

  #w-node-_028a8b15-3e8d-4698-e7af-58ea286f05d9-f48d33e6 {
    order: -9999;
  }

  #w-node-_9e6c1df3-64b0-d5cd-7282-fa249599b9fc-8439a2a3 {
    justify-self: start;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_028a8b15-3e8d-4698-e7af-58ea286f05d9-2f837ee9, #w-node-_028a8b15-3e8d-4698-e7af-58ea286f05d9-f48d33e6 {
    order: 9999;
  }
}


