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

@font-face {
  font-family: Barlow;
  src: url('../fonts/Barlow-Italic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url('../fonts/Barlow-BoldItalic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

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

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

@font-face {
  font-family: Barlow;
  src: url('../fonts/Barlow-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url('../fonts/Barlow-MediumItalic.ttf') format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url('../fonts/Barlow-SemiBoldItalic.ttf') format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Calsans;
  src: url('../fonts/CalSans-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --colors--black: #03061c;
  --colors--blue: #0068ff;
  --colors--green: #00ff93;
  --colors--white: white;
  --colors--transparent: #fff0;
  --blue-hover: #0053cc;
}

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

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

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

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

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

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

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

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

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

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

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

body {
  color: var(--colors--black);
  font-family: Barlow, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

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

p {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.5;
}

a {
  text-decoration: underline;
}

ul, ol {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  display: flex;
}

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

blockquote {
  border-left: 1px #000;
  margin-bottom: 0;
  padding: 0;
  font-size: 2rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
}

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

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

.text-rich-text blockquote, .text-rich-text img {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.fs-styleguide_label {
  background-color: var(--colors--blue);
  color: #fff;
  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(--colors--blue);
}

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

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

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

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

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

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

.padding-custom3 {
  padding: 3.5rem;
}

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

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

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

.bg-color-blue {
  background-color: var(--colors--blue);
}

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

.overflow-visible {
  overflow: visible;
}

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

.overflow-hidden {
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.padding-small {
  padding: 1rem;
}

.fs-styleguide_header {
  background-color: var(--colors--black);
  color: #fff;
}

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

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

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

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

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

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

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

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

.margin-custom1 {
  margin: 1.5rem;
}

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

.text-size-regular {
  font-size: 18px;
}

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

.form_component {
  margin-bottom: 0;
}

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

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

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

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

.margin-xxlarge {
  margin: 5rem;
}

.margin-small {
  margin: 1rem;
}

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

.hide {
  display: none;
}

.heading-style-h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
}

.overflow-scroll {
  overflow: scroll;
}

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

.padding-xhuge {
  padding: 8rem;
}

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

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

.padding-xxhuge {
  padding: 12rem;
}

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

.padding-large {
  padding: 3rem;
}

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

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

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

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

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

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

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

.padding-custom1 {
  padding: 1.5rem;
}

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

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

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

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

.padding-0 {
  padding: 0;
}

.overflow-auto {
  overflow: auto;
}

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

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

.margin-xxhuge {
  margin: 12rem;
}

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

.padding-custom2 {
  padding: 2.5rem;
}

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

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

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

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

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

.max-width-large.align-right {
  margin-left: auto;
}

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

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

.main-wrapper.for-sections {
  margin-left: 305px;
  overflow: hidden;
}

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

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

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

.margin-large {
  margin: 3rem;
}

.margin-0 {
  margin: 0;
}

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

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

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

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

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

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

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

.margin-xlarge {
  margin: 4rem;
}

.button {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border: 1px solid var(--colors--green);
  background-color: var(--colors--transparent);
  color: var(--colors--green);
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  padding: .75rem 2.5rem .75rem 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button.page-button {
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  width: 35%;
  min-width: 250px;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
  line-height: 1.2;
}

.button.page-button.left {
  text-align: right;
  justify-content: flex-end;
  padding-left: 2.5rem;
  padding-right: 1.5rem;
}

.margin-medium {
  margin: 2rem;
}

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

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

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

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

.margin-custom2 {
  margin: 2.5rem;
}

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

.padding-medium {
  padding: 2rem;
}

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

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

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

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

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

.padding-xxlarge {
  padding: 5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.margin-huge {
  margin: 6rem;
}

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

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

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

.margin-xhuge {
  margin: 8rem;
}

.padding-huge {
  padding: 6rem;
}

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

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

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

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

.padding-global {
  width: 100%;
  height: 100%;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

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

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

.padding-global.show-mobile-portrait {
  display: none;
}

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

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

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

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

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

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

.bg-color-green {
  background-color: var(--colors--green);
}

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

.padding-xlarge {
  padding: 4rem;
}

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

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

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

.bg-color-black {
  background-color: var(--colors--black);
  color: #fff;
}

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

.text-style-quote {
  font-style: italic;
  font-weight: 700;
}

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

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

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

.margin-custom3 {
  margin: 3.5rem;
}

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

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

.form_checkbox-icon.w--redirected-checked {
  background-color: var(--colors--blue);
  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;
}

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

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

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

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

.bg-color-transparent {
  background-color: var(--colors--transparent);
}

.fs-styleguide-sizing-elements {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: none;
}

.section_home-hero {
  justify-content: center;
  align-items: center;
  height: 900px;
  margin-left: 2.5rem;
  margin-right: 2.5rem;
  display: flex;
}

.no-break {
  white-space: nowrap;
}

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

.sections_grid.tablet {
  display: none;
}

.sections_middle {
  border-bottom: 20px solid var(--colors--green);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.text-style-eyebrow {
  color: var(--colors--green);
  text-transform: uppercase;
  font-size: 1.5rem;
}

.text-style-eyebrow.for-nav {
  color: var(--colors--white);
  text-align: center;
  font-size: 1rem;
}

.sections_number {
  font-family: Calsans, Arial, sans-serif;
  font-size: 10rem;
  font-weight: 400;
  line-height: .75;
}

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

.hero_grid {
  grid-column-gap: 1rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: minmax(25px, 1fr) minmax(50px, 2fr) minmax(75%, 12fr);
  place-items: end stretch;
}

.hero_grid-white {
  background-color: var(--colors--white);
  height: 50px;
}

.footer_grid-green {
  background-color: var(--colors--green);
  height: 25px;
}

.footer_grid-blue {
  background-color: var(--colors--blue);
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.footer_logo {
  width: 150px;
  margin-top: 1rem;
  margin-bottom: 5rem;
  margin-right: 200px;
}

.footer_100 {
  float: right;
  width: 200px;
  margin-bottom: -3px;
}

.footer_overlay {
  background-image: linear-gradient(180deg, #03061c80, var(--colors--transparent));
  position: absolute;
  inset: 0%;
}

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

.section-nav {
  z-index: 100;
  background-color: var(--colors--blue);
  width: 305px;
  height: 100vh;
  position: fixed;
}

.nav_component {
  background-color: var(--colors--transparent);
  width: 100%;
  height: 100%;
}

.nav_container {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 100%;
  position: relative;
}

.nav_brand {
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  display: flex;
}

.nav_brand.hide-desktop {
  margin-top: 0;
  margin-left: 0;
  display: none;
}

.nav_logo {
  filter: invert();
  max-width: 150px;
}

.nav_menu {
  z-index: 3;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--colors--blue);
  flex-flow: column;
  width: 100%;
  height: 100%;
  padding-bottom: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  position: relative;
}

.nav_button {
  padding: 0;
}

.section_hero {
  flex-flow: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero_h1 {
  z-index: 3;
  margin-top: 0;
  margin-bottom: -12px;
  position: relative;
}

.hero_h1.long-headline {
  margin-bottom: -7px;
  font-size: 4rem;
  line-height: 1;
}

.section_image-text {
  position: relative;
}

.image-text_grid {
  z-index: 2;
  grid-column-gap: 5vw;
  grid-row-gap: 5vw;
  grid-template-rows: auto;
  place-items: center start;
  width: 100%;
  height: 100%;
  position: relative;
}

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

.image-text_image.company-plaque {
  object-fit: contain;
  max-height: 450px;
}

.section_quote-center {
  display: flex;
  position: relative;
}

.quote-center {
  z-index: 2;
  text-align: center;
  position: relative;
}

.quote-center_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.arrow {
  z-index: 1;
  opacity: .4;
  width: 200px;
  position: absolute;
}

.arrow.our-values {
  inset: -20% -2% auto auto;
}

.arrow.our-founder {
  inset: 0% auto auto 0%;
}

.arrow.power-of-understanding {
  bottom: 25px;
  right: 0%;
}

.arrow._5cs {
  inset: auto auto 0% -110px;
}

.values_image {
  float: right;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  width: 100%;
}

.section_values {
  position: relative;
}

.green-words_block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  width: 100%;
  height: 100%;
  color: var(--colors--green);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 5vw;
  display: flex;
}

.green-words_block._5cs {
  padding-left: 0;
}

.green-words_block.our-values {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  padding-left: 0;
}

.values_grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto auto auto auto;
  place-items: start;
  height: 100%;
  position: relative;
}

.green-words_text {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

.green-words_text.our-values, .green-words_text.our-values-1 {
  font-size: 3rem;
}

.nav_page-nav-wrapper {
  text-align: center;
  flex-flow: column;
  display: flex;
}

.nav_rule {
  background-color: var(--colors--black);
  width: 100%;
  height: 1px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.nav_page-nav {
  justify-content: center;
  align-items: center;
  display: flex;
}

.page-nav_arrow {
  width: auto;
  height: 32px;
  display: none;
}

.page-nav_number {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}

.page-nav_embed {
  height: 100%;
  color: var(--colors--white);
  transition: color .2s;
}

.page-nav_embed:hover {
  color: var(--colors--green);
}

.nav_section-links-wrapper {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.section-links_link {
  width: 100%;
  color: var(--colors--white);
  border-radius: 6px;
  padding: .75rem 1rem;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  transition: background-color .15s ease-in-out;
}

.section-links_link:hover, .section-links_link.w--current {
  background-color: var(--blue-hover);
}

.section-links_link.w--current:hover {
  color: var(--colors--white);
}

.button_text {
  z-index: 2;
  color: var(--colors--white);
  margin-top: -1px;
  position: relative;
}

.button_animated-fill {
  z-index: 1;
  background-color: var(--colors--green);
  justify-content: flex-end;
  align-items: stretch;
  height: 100%;
  padding: .75rem 1rem;
  display: flex;
  position: absolute;
  inset: 100% 0% 0%;
}

.button_arrow {
  z-index: 3;
  width: 9px;
  margin-top: 1px;
  position: relative;
}

.button_arrow.text-color-black.page-button_left {
  left: 1rem;
  right: auto;
  transform: rotate(180deg);
}

.button_arrow.text-color-green {
  z-index: 3;
  position: absolute;
  inset: 0% 1rem 0% auto;
}

.button_arrow.text-color-green.page-button_left {
  left: 1rem;
  right: auto;
  transform: rotate(180deg);
}

.button_arrow.text-color-black {
  z-index: 2;
  color: #03061c;
  position: absolute;
  inset: 0% 1rem 0% auto;
}

.sections_right {
  border-bottom: 20px solid var(--colors--blue);
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 2.5rem;
  padding-right: 2.5rem;
  display: flex;
}

.sections_left {
  border-bottom: 20px solid var(--colors--white);
}

.sections_link-bg {
  z-index: 2;
  background-color: var(--colors--green);
  width: 100%;
  color: var(--colors--black);
  padding: 40px 40px 20px;
  position: relative;
}

.sections_grid-heading {
  z-index: 3;
  margin-top: 0;
  margin-bottom: -7px;
  line-height: 1;
  position: relative;
}

.sections_grid-arrow {
  z-index: 1;
  width: 200px;
  position: absolute;
  inset: 0% -5vw 0% auto;
}

.sections_heading-wrapper {
  width: auto;
  position: relative;
}

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

.sections_link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--colors--black);
  text-decoration: none;
  display: flex;
}

.link_arrow {
  z-index: 3;
  width: 9px;
  margin-top: 1px;
  position: relative;
}

.hero_grid-green {
  background-color: var(--colors--green);
  height: 50px;
}

.hero_grid-blue {
  z-index: 2;
  background-color: var(--colors--blue);
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 115px;
  display: flex;
  position: relative;
}

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

.hero_heading-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: flex-end;
  height: 150px;
  display: flex;
  position: relative;
}

.hero_arrow {
  z-index: 1;
  width: 32px;
  margin-bottom: 32px;
  position: relative;
}

.hero_100 {
  z-index: 0;
  width: auto;
  height: 150px;
  position: absolute;
  inset: 0% -100px auto auto;
}

.hero_100.long-headline {
  right: -50px;
}

.footer_grid-white {
  background-color: var(--colors--white);
  height: 25px;
}

.footer_grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: minmax(50px, 1fr) minmax(100px, 2fr) minmax(75%, 12fr);
  place-items: end stretch;
}

.nav_burger {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav_burger-line {
  background-color: #444;
  border-radius: 2px;
  width: 22.5px;
  height: 3px;
  margin-top: 2px;
  margin-bottom: 2px;
}

.section_quote {
  display: flex;
  position: relative;
}

.quote-credit.letter-spacing-tight {
  letter-spacing: -.25px;
}

.image_scroll-up {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.image_scroll-up.max-height-550px {
  max-height: 550px;
}

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

.image-caption {
  margin-top: 8px;
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
}

.image-caption.no-margin {
  margin-top: 0;
}

.image-caption.align-left {
  align-self: flex-start;
}

.image-caption.align-right {
  align-self: flex-end;
}

.max-width-550px {
  max-width: 550px;
}

.max-width-550px.no-margin {
  margin-bottom: 0;
}

.page-buttons_wrapper {
  justify-content: space-between;
  display: flex;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.text-right_wrapper {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.section_image {
  display: flex;
  position: relative;
}

.no-margin {
  margin-bottom: 0;
}

.no-margin.letter-spacing-tight {
  letter-spacing: -.25px;
}

.text-right_our-founder {
  margin-top: 50px;
  margin-bottom: 0;
}

.section_carousel {
  margin-bottom: 75px;
  position: relative;
}

.leaders_slider {
  background-color: var(--colors--transparent);
  height: auto;
}

.leaders_slider-mask {
  margin-left: 80px;
  margin-right: 80px;
}

.leaders_slider-arrow {
  height: 400px;
}

.leaders_slider-arrow.right {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  inset: 0% 0% auto auto;
}

.leaders_slider-arrow.left {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  inset: 0% auto auto 0%;
}

.leaders_slider-nav {
  justify-content: center;
  align-items: flex-end;
  max-width: 80%;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: flex;
  inset: auto 0% -75px;
}

.leaders_slider-grid {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(250px, auto));
  place-items: start center;
  height: 100%;
}

.leaders_slider-image {
  object-fit: cover;
  width: 100%;
  max-width: 350px;
  height: auto;
}

.leaders_slider-content {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  display: flex;
}

.leaders_slider-content-top {
  border-bottom: 1px solid var(--colors--white);
  flex-flow: column;
  padding-bottom: 24px;
  display: flex;
}

.max-width-750px {
  max-width: 750px;
}

.section_quote-right {
  display: flex;
  position: relative;
}

.quote-right_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin-left: auto;
  display: flex;
  position: relative;
}

.arrow-wrapper {
  position: relative;
}

.section_green-text {
  display: flex;
  position: relative;
}

.max-width-600px {
  max-width: 600px;
}

.text-style-eyebrow-2 {
  color: #00ff93;
  text-transform: uppercase;
  font-size: 1.5rem;
}

.max-width-860px {
  max-width: 860px;
}

.leaders_slider-name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.leaders_slider-quote {
  font-size: 24px;
}

.leaders_slider-quote.letter-spacing-tight {
  letter-spacing: -.25px;
}

.leaders_slider-paragraph {
  margin-bottom: 0;
  font-size: 18px;
}

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

.leaders-h2 {
  color: var(--colors--green);
  text-align: center;
  font-size: 2rem;
}

.leaders-dates {
  color: var(--colors--green);
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
}

.quote-left_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 800px;
  margin-left: auto;
  display: flex;
  position: relative;
}

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

  h2 {
    font-size: 3.5rem;
  }

  blockquote {
    font-size: 2rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .margin-xxlarge {
    margin: 4rem;
  }

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

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

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

  .margin-xxhuge {
    margin: 8rem;
  }

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

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

  .main-wrapper.for-sections {
    margin-left: 0;
    padding-top: 100px;
    overflow: hidden;
  }

  .margin-large {
    margin: 2.5rem;
  }

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

  .margin-xlarge {
    margin: 3rem;
  }

  .button.page-button {
    width: 48%;
  }

  .margin-medium {
    margin: 1.5rem;
  }

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

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

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

  .margin-huge {
    margin: 5rem;
  }

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

  .margin-xhuge {
    margin: 6rem;
  }

  .padding-huge {
    padding: 5rem;
  }

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

  .padding-global.padding-section-large.padding-top-half {
    padding-top: 3rem;
  }

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

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

  .hide-tablet {
    display: none;
  }

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

  .padding-xlarge {
    padding: 3rem;
  }

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

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

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

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

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

  .section_home-hero {
    height: 100vw;
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .sections_grid.desktop {
    display: none;
  }

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

  .text-style-eyebrow {
    font-size: 1.25rem;
  }

  .sections_number {
    font-size: 10rem;
  }

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

  .hero_grid-white, .footer_grid-green {
    min-width: 0;
  }

  .footer_logo {
    width: 125px;
    margin-right: 175px;
  }

  .footer_100 {
    width: 175px;
  }

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

  .section-nav {
    background-color: var(--colors--black);
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100px;
    display: flex;
  }

  .nav_container {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    display: flex;
    position: relative;
  }

  .nav_brand {
    width: 100%;
  }

  .nav_brand.hide-desktop {
    margin-left: 2rem;
    display: block;
  }

  .nav_logo {
    filter: none;
  }

  .nav_logo.mobile-menu {
    filter: invert();
  }

  .nav_menu {
    z-index: 4;
    width: 400px;
    height: 100vh;
    padding: .5rem 2rem 2rem;
    position: absolute;
    inset: 0% 0% 0% auto;
  }

  .nav_button {
    color: #fff;
    min-width: 44px;
    min-height: 44px;
    margin-right: 2rem;
    display: flex;
  }

  .nav_button.w--open {
    z-index: 5;
    background-color: var(--colors--transparent);
  }

  .hero_h1 {
    margin-bottom: -10px;
  }

  .image-text_grid {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .image-text_image {
    object-fit: cover;
  }

  .arrow {
    width: 180px;
  }

  .values_image {
    position: static;
  }

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

  .green-words_text {
    font-size: 3rem;
  }

  .green-words_text.our-values {
    font-size: 2.5rem;
  }

  .nav_page-nav-wrapper {
    width: 100%;
  }

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

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

  .sections_grid-heading {
    margin-bottom: -6px;
  }

  .hero_grid-green {
    min-width: 0;
  }

  .hero_heading-wrapper {
    height: 150px;
  }

  .hero_arrow {
    margin-bottom: 26px;
  }

  .hero_100 {
    height: 150px;
    right: -150px;
  }

  .footer_grid-white {
    min-width: 0;
  }

  .footer_grid {
    grid-column-gap: 1rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr 2fr minmax(65%, 1fr);
  }

  .nav_burger {
    min-width: 44px;
    min-height: 44px;
  }

  .nav_burger-line {
    background-color: var(--colors--white);
  }

  .section_carousel {
    padding-bottom: 5px;
  }

  .leaders_slider-mask {
    margin-left: 0;
    margin-right: 0;
  }

  .leaders_slider-slide {
    vertical-align: top;
  }

  .leaders_slider-arrow {
    bottom: -100px;
  }

  .leaders_slider-arrow.right {
    justify-content: flex-end;
    align-items: flex-end;
    inset: auto 0% -75px auto;
  }

  .leaders_slider-arrow.left {
    justify-content: flex-start;
    align-items: flex-end;
    inset: auto auto -75px 0%;
  }

  .leaders_slider-image {
    width: 100%;
  }

  .text-style-eyebrow-2 {
    font-size: 1.25rem;
  }
}

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

  h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1rem;
  }

  h5 {
    font-size: .875rem;
  }

  h6 {
    font-size: .75rem;
  }

  blockquote {
    font-size: 1.5rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .margin-xxlarge {
    margin: 3rem;
  }

  .text-align-center.left-on-mobile {
    text-align: left;
  }

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

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

  .padding-large {
    padding: 1.5rem;
  }

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

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

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

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

  .margin-xxhuge {
    margin: 4.5rem;
  }

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

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

  .margin-large {
    margin: 1.5rem;
  }

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

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

  .margin-xlarge {
    margin: 2rem;
  }

  .button.page-button {
    width: auto;
    min-width: 0;
    max-width: 100%;
  }

  .button.page-button.left {
    width: auto;
    max-width: 100%;
  }

  .margin-medium {
    margin: 1.25rem;
  }

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

  .padding-medium {
    padding: 1.25rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

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

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

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

  .margin-huge {
    margin: 3.5rem;
  }

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

  .margin-xhuge {
    margin: 4rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

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

  .padding-global.padding-section-large.padding-top-half {
    padding-top: 2rem;
  }

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

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

  .padding-xlarge {
    padding: 2rem;
  }

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

  .margin-left.margin-huge.no-margin-mobile, .margin-left.margin-large.no-margin-mobile {
    margin-left: 0;
  }

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

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

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

  .section_home-hero {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .sections_one {
    display: block;
  }

  .sections_grid {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    grid-template-columns: 2fr;
  }

  .text-style-eyebrow {
    font-size: 1rem;
  }

  .sections_number {
    font-size: 8rem;
  }

  .sections_number.tablet {
    display: none;
  }

  .section_footer {
    overflow: hidden;
  }

  .hero_grid {
    grid-template-columns: minmax(25px, 1fr) minmax(50px, 2fr) minmax(75%, 12fr);
  }

  .footer_grid-blue {
    min-width: 275px;
  }

  .footer_logo {
    width: 100px;
    margin-right: 150px;
  }

  .footer_100 {
    width: 150px;
  }

  .section-nav {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100px;
    display: flex;
    top: 0;
  }

  .nav_container {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav_brand {
    padding-left: 0;
  }

  .nav_brand.hide-desktop {
    z-index: 0;
    margin-left: 1.5rem;
  }

  .nav_menu {
    z-index: 100;
    background-color: var(--colors--blue);
    width: 100%;
    max-width: 100%;
    height: 100vh;
    padding: 1.5rem;
    position: absolute;
    inset: 0%;
  }

  .nav_button {
    margin-right: 1.5rem;
  }

  .hero_h1 {
    margin-bottom: -9px;
  }

  .hero_h1.long-headline {
    margin-bottom: -5px;
    font-size: 3rem;
  }

  .image-text_grid {
    grid-template-columns: 1fr;
  }

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

  .quote-center_wrapper {
    text-align: left;
    justify-content: center;
    align-items: flex-start;
  }

  .arrow {
    display: none;
  }

  .green-words_block {
    margin-left: 0;
  }

  .green-words_block.our-values {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .green-words_text {
    font-size: 2.5rem;
  }

  .green-words_text.our-values {
    font-size: 2rem;
  }

  .nav_section-links-wrapper {
    margin-top: 3rem;
  }

  .sections_grid-heading {
    margin-bottom: -5px;
  }

  .hero_heading-wrapper {
    height: 100px;
  }

  .hero_arrow {
    margin-bottom: 20px;
  }

  .hero_100 {
    height: 100px;
    right: -50px;
  }

  .hero_100.long-headline {
    right: 0;
  }

  .footer_grid {
    grid-template-columns: 1fr 2fr minmax(50%, 1fr);
  }

  .max-width-550px.no-margin {
    max-width: 100%;
  }

  .page-buttons_wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    width: 100%;
  }

  .text-right_our-founder {
    margin-top: 0;
  }

  .leaders_slider-grid {
    grid-template-columns: repeat(auto-fit, 100%);
  }

  .quote-right_wrapper {
    text-align: left;
    justify-content: center;
    align-items: flex-start;
  }

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

  .quote-left_wrapper {
    text-align: left;
    justify-content: center;
    align-items: flex-start;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

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

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

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

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

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

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

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

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

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

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

  .padding-global.show-mobile-portrait {
    display: flex;
  }

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

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

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

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

  .text-style-quote {
    white-space: pre-wrap;
  }

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

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

  .no-break {
    white-space: nowrap;
  }

  .hero_grid {
    grid-row-gap: 2rem;
    grid-template-columns: minmax(25px, 1fr) minmax(50px, 2fr) minmax(50%, 12fr);
  }

  .hero_grid-white {
    min-width: 30px;
  }

  .footer_grid-green {
    min-width: 75px;
  }

  .footer_grid-blue {
    min-width: 200px;
  }

  .footer_logo {
    width: 80px;
    margin-right: 100px;
  }

  .footer_100 {
    width: 100px;
  }

  .nav_menu {
    width: 100%;
  }

  .hero_h1 {
    margin-bottom: 0;
  }

  .hero_h1.long-headline {
    font-size: 2.75rem;
  }

  .hero_heading-wrapper.mobile {
    height: auto;
    display: flex;
  }

  .hero_heading-wrapper.mobile.dedicated-leadership {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hero_100 {
    display: none;
  }

  .footer_grid-white {
    min-width: 30px;
  }

  .footer_grid {
    grid-template-columns: 1fr 3fr 5fr;
  }

  .leaders_slider-grid {
    grid-template-columns: repeat(auto-fit, minmax(100%, auto));
  }
}

#w-node-f805dab4-b0a0-0173-122d-dce4673e4e23-89ab59b2, #w-node-_33ca3146-3dd3-8962-46f7-eae55d654020-89ab59b2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fd3ef303-463c-6259-a6aa-60e605b5c925-89ab59b2 {
  grid-area: 1 / 3 / 2 / 4;
  justify-self: end;
}

#w-node-_370b4a0d-a2b8-f0f5-2df2-6b63fb886fbc-89ab59b2 {
  grid-area: 4 / 1 / 5 / 2;
}

#w-node-_370b4a0d-a2b8-f0f5-2df2-6b63fb886fbd-89ab59b2 {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-_370b4a0d-a2b8-f0f5-2df2-6b63fb886fbe-89ab59b2 {
  grid-area: 2 / 3 / 5 / 4;
}

#w-node-_96b65709-dc91-7ce1-1da2-6f46d746d705-97ba72b0, #w-node-_96b65709-dc91-7ce1-1da2-6f46d746d827-97ba72b0, #w-node-_96b65709-dc91-7ce1-1da2-6f46d746d82f-97ba72b0, #w-node-_96b65709-dc91-7ce1-1da2-6f46d746d846-97ba72b0, #w-node-_96b65709-dc91-7ce1-1da2-6f46d746d85f-97ba72b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_96b65709-dc91-7ce1-1da2-6f46d746d862-97ba72b0 {
  justify-self: start;
}

#w-node-_96b65709-dc91-7ce1-1da2-6f46d746d864-97ba72b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_96b65709-dc91-7ce1-1da2-6f46d746d867-97ba72b0 {
  justify-self: start;
}

#w-node-_96b65709-dc91-7ce1-1da2-6f46d746d8b7-97ba72b0, #w-node-_3dee7b85-f995-1d48-5ba8-ee9bada8ed97-97ba72b0, #w-node-_3dee7b85-f995-1d48-5ba8-ee9bada8ed98-97ba72b0, #w-node-_96b65709-dc91-7ce1-1da2-6f46d746d8c1-97ba72b0, #w-node-_96b65709-dc91-7ce1-1da2-6f46d746d8c2-97ba72b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_96b65709-dc91-7ce1-1da2-6f46d746db4c-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15aff6d-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15aff72-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15aff77-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15aff7c-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15aff82-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15aff88-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15aff8e-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15affec-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15afff1-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15afff6-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15afffb-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b0000-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b0005-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b000f-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b0014-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b0019-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b001e-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b0023-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b0028-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b002d-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b0032-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b0037-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b003c-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b0041-97ba72b0 {
  justify-self: start;
}

#w-node-_633ba245-ce9b-13b9-40f7-f807f15b0045-97ba72b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_633ba245-ce9b-13b9-40f7-f807f15b0046-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b004b-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b0050-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b0055-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b0069-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b006e-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b0073-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b0078-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b007d-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b0082-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b008c-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b0091-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b0096-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b009b-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b00a0-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b00a5-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b00aa-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b00af-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b00b4-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b00b9-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b00be-97ba72b0 {
  justify-self: start;
}

#w-node-_633ba245-ce9b-13b9-40f7-f807f15b00c2-97ba72b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_633ba245-ce9b-13b9-40f7-f807f15b00c3-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b00c8-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b00cd-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b00d2-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b00e3-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b00e8-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b00ed-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b00f2-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b00f7-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b00fc-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b0101-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b0106-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b010b-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b0110-97ba72b0 {
  justify-self: start;
}

#w-node-_633ba245-ce9b-13b9-40f7-f807f15b0114-97ba72b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_633ba245-ce9b-13b9-40f7-f807f15b0115-97ba72b0 {
  justify-self: start;
}

#w-node-_633ba245-ce9b-13b9-40f7-f807f15b0118-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b0156-97ba72b0, #w-node-_633ba245-ce9b-13b9-40f7-f807f15b0183-97ba72b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6970107a-c894-0f85-935f-af6fcce357f9-abf9df54 {
  justify-self: center;
}

#w-node-_10b3ea83-6638-9977-8223-809fa39a4747-abf9df54 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-ffd1f9eb-0110-ed1c-021d-478747fc1bab-abf9df54 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_2963df7f-9b74-b3c3-1e35-04af5c0defa3-abf9df54 {
  grid-area: 3 / 1 / 5 / 3;
}

#w-node-_2b3596b8-8e69-0e36-1902-4c0d4d01e0ce-abf9df54 {
  grid-area: 1 / 3 / 2 / 4;
  justify-self: end;
}

#w-node-_2b3596b8-8e69-0e36-1902-4c0d4d01e0cf-abf9df54 {
  grid-area: 4 / 1 / 5 / 2;
}

#w-node-_2b3596b8-8e69-0e36-1902-4c0d4d01e0d0-abf9df54 {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-_2b3596b8-8e69-0e36-1902-4c0d4d01e0d1-abf9df54 {
  grid-area: 2 / 3 / 5 / 4;
}

#w-node-_6970107a-c894-0f85-935f-af6fcce357f9-16e8c389 {
  justify-self: center;
}

#w-node-_2b3596b8-8e69-0e36-1902-4c0d4d01e0ce-16e8c389 {
  grid-area: 1 / 3 / 2 / 4;
  justify-self: end;
}

#w-node-_2b3596b8-8e69-0e36-1902-4c0d4d01e0cf-16e8c389 {
  grid-area: 4 / 1 / 5 / 2;
}

#w-node-_2b3596b8-8e69-0e36-1902-4c0d4d01e0d0-16e8c389 {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-_2b3596b8-8e69-0e36-1902-4c0d4d01e0d1-16e8c389 {
  grid-area: 2 / 3 / 5 / 4;
}

#w-node-_350050e5-3c71-979c-d6ca-b946a5546872-80a790b3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2b3596b8-8e69-0e36-1902-4c0d4d01e0ce-80a790b3 {
  grid-area: 1 / 3 / 2 / 4;
  justify-self: end;
}

#w-node-_2b3596b8-8e69-0e36-1902-4c0d4d01e0cf-80a790b3 {
  grid-area: 4 / 1 / 5 / 2;
}

#w-node-_2b3596b8-8e69-0e36-1902-4c0d4d01e0d0-80a790b3 {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-_2b3596b8-8e69-0e36-1902-4c0d4d01e0d1-80a790b3 {
  grid-area: 2 / 3 / 5 / 4;
}

#w-node-_6c27492b-7d14-41bf-57aa-675335da66f3-e14865a2, #w-node-_6970107a-c894-0f85-935f-af6fcce357f9-e14865a2 {
  justify-self: center;
}

#w-node-_2b3596b8-8e69-0e36-1902-4c0d4d01e0ce-e14865a2 {
  grid-area: 1 / 3 / 2 / 4;
  justify-self: end;
}

#w-node-_2b3596b8-8e69-0e36-1902-4c0d4d01e0cf-e14865a2 {
  grid-area: 4 / 1 / 5 / 2;
}

#w-node-_2b3596b8-8e69-0e36-1902-4c0d4d01e0d0-e14865a2 {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-_2b3596b8-8e69-0e36-1902-4c0d4d01e0d1-e14865a2 {
  grid-area: 2 / 3 / 5 / 4;
}

#w-node-_6970107a-c894-0f85-935f-af6fcce357f9-35cddb3c {
  justify-self: center;
}

#w-node-_2b3596b8-8e69-0e36-1902-4c0d4d01e0ce-35cddb3c {
  grid-area: 1 / 3 / 2 / 4;
  justify-self: end;
}

#w-node-_2b3596b8-8e69-0e36-1902-4c0d4d01e0cf-35cddb3c {
  grid-area: 4 / 1 / 5 / 2;
}

#w-node-_2b3596b8-8e69-0e36-1902-4c0d4d01e0d0-35cddb3c {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-_2b3596b8-8e69-0e36-1902-4c0d4d01e0d1-35cddb3c {
  grid-area: 2 / 3 / 5 / 4;
}

@media screen and (max-width: 991px) {
  #w-node-_33ca3146-3dd3-8962-46f7-eae55d654040-89ab59b2 {
    justify-self: end;
  }
}

@media screen and (max-width: 767px) {
  #w-node-f805dab4-b0a0-0173-122d-dce4673e4e23-89ab59b2, #w-node-_33ca3146-3dd3-8962-46f7-eae55d654020-89ab59b2 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_6970107a-c894-0f85-935f-af6fcce357f9-abf9df54 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_10b3ea83-6638-9977-8223-809fa39a4747-abf9df54 {
    grid-row: 2 / 3;
  }

  #w-node-ffd1f9eb-0110-ed1c-021d-478747fc1bab-abf9df54 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_2963df7f-9b74-b3c3-1e35-04af5c0defa3-abf9df54 {
    grid-row: 3 / 4;
    grid-column-end: 2;
  }

  #w-node-_661dc869-7c47-459a-6576-73a3479a7f0e-abf9df54 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_6970107a-c894-0f85-935f-af6fcce357f9-16e8c389, #w-node-_6c27492b-7d14-41bf-57aa-675335da66f3-e14865a2, #w-node-_6970107a-c894-0f85-935f-af6fcce357f9-e14865a2, #w-node-_6970107a-c894-0f85-935f-af6fcce357f9-35cddb3c {
    grid-area: 2 / 1 / 3 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_0bbb267b-3c5f-adb7-0858-382bd291cbbf-abf9df54, #w-node-_0bbb267b-3c5f-adb7-0858-382bd291cbbf-16e8c389, #w-node-_0bbb267b-3c5f-adb7-0858-382bd291cbbf-80a790b3, #w-node-_0bbb267b-3c5f-adb7-0858-382bd291cbbf-e14865a2, #w-node-_0bbb267b-3c5f-adb7-0858-382bd291cbbf-35cddb3c {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }
}


@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Calsans';
  src: url('../fonts/CalSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}