@font-face {
  font-family: Crimson pro;
  src: url('../fonts/CrimsonPro-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/inter-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/inter-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/inter-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/inter-latin-500-normal.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/inter-latin-300-normal.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #010101;
  --white: #fff;
  --_typography---font-styles--heading\<deleted\|relume-variable-font-style-heading\>:
    system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
    Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  --color-scheme-1--text\<deleted\|relume-variable-color-scheme-1-text\>: var(
    --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>
  );
  --_primitives---colors--white\<deleted\|relume-variable-neutral-white\>: #fff;
  --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>: black;
  --text-color--text-alternate\<deleted\|relume-variable-text-color-3\>: var(
    --base-color-neutral--white\<deleted\|relume-variable-color-neutral-2\>
  );
  --grey-light: #bababa;
  --_primitives---opacity--transparent\<deleted\|relume-variable-transparent\>: transparent;
  --dark: #151515;
  --grey-dark: #727272;
  --_primitives---opacity--neutral-darkest-60\<deleted\|relume-variable-neutral-shade-7-60\>: #0009;
  --_primitives---opacity--white-60\<deleted\|relume-variable-neutral-white-60\>: #fff9;
  --_ui-styles---stroke--border-width\<deleted\|relume-variable-border-width\>: 1px;
  --color-scheme-1--border\<deleted\|relume-variable-color-scheme-1-border\>: var(
    --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>
  );
  --_ui-styles---radius--medium\<deleted\|relume-variable-radius-medium\>: 0px;
  --color-scheme-1--foreground\<deleted\|relume-variable-color-scheme-1-foreground\>: var(
    --_primitives---colors--neutral-lightest\<deleted\|relume-variable-neutral-shade-1\>
  );
  --_typography---font-styles--body\<deleted\|relume-variable-font-style-body\>:
    system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
    Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  --background-color--background-secondary\<deleted\|relume-variable-background-color-2\>: var(
    --base-color-neutral--neutral-lightest\<deleted\|relume-variable-color-neutral-3\>
  );
  --border-color--border-primary\<deleted\|relume-variable-border-color-1\>: var(
    --base-color-neutral--black\<deleted\|relume-variable-color-neutral-1\>
  );
  --_ui-styles---radius--small\<deleted\|relume-variable-radius-small\>: 0px;
  --color-scheme-1--background\<deleted\|relume-variable-color-scheme-1-background\>: var(
    --_primitives---colors--white\<deleted\|relume-variable-neutral-white\>
  );
  --_primitives---colors--neutral-lightest\<deleted\|relume-variable-neutral-shade-1\>: #eee;
  --_ui-styles---radius--large\<deleted\|relume-variable-radius-large\>: 0px;
  --color-scheme-1--accent\<deleted\|relume-variable-color-scheme-1-accent\>: var(
    --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>
  );
  --base-color-neutral--white\<deleted\|relume-variable-color-neutral-2\>: white;
  --base-color-neutral--neutral-lightest\<deleted\|relume-variable-color-neutral-3\>: #eee;
  --base-color-neutral--black\<deleted\|relume-variable-color-neutral-1\>: 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-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

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

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

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

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

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

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

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

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

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

body {
  background-color: var(--black);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family:
    Crimson pro,
    Arial,
    sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family:
    Crimson pro,
    Arial,
    sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family:
    Crimson pro,
    Arial,
    sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family:
    Crimson pro,
    Arial,
    sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
}

h5 {
  font-family: var(
    --_typography---font-styles--heading\<deleted\|relume-variable-font-style-heading\>
  );
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

h6 {
  font-family: var(
    --_typography---font-styles--heading\<deleted\|relume-variable-font-style-heading\>
  );
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--color-scheme-1--text\<deleted\|relume-variable-color-scheme-1-text\>);
  text-decoration: underline;
}

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  padding-left: 0.5rem;
}

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

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

strong {
  color: var(--black);
  font-weight: 700;
}

blockquote {
  border-left: 0.1875rem solid
    var(--color-scheme-1--text\<deleted\|relume-variable-color-scheme-1-text\>);
  margin-bottom: 0;
  padding: 0.75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

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

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

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

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

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

.overflow-hidden {
  overflow: hidden;
}

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

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

.hide {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

.utility_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_form-block {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.utility_image {
  margin-bottom: 0.5rem;
  margin-left: auto;
  margin-right: auto;
}

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

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

.margin-tiny {
  margin: 0.25rem;
}

.margin-xxsmall {
  margin: 0.5rem;
}

.margin-xsmall {
  margin: 1rem;
}

.margin-small {
  margin: 1.5rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-large {
  margin: 3rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-huge {
  margin: 6rem;
}

.margin-xhuge {
  margin: 7rem;
}

.margin-xxhuge {
  margin: 10rem;
}

.margin-0 {
  margin: 0;
}

.padding-0 {
  padding: 0;
}

.padding-tiny {
  padding: 0.25rem;
}

.padding-xxsmall {
  padding: 0.5rem;
}

.padding-xsmall {
  padding: 1rem;
}

.padding-small {
  padding: 1.5rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-large {
  padding: 3rem;
}

.padding-xlarge {
  padding: 4rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.padding-huge {
  padding: 6rem;
}

.padding-xhuge {
  padding: 7rem;
}

.padding-xxhuge {
  padding: 10rem;
}

.margin-top,
.margin-top.margin-custom1,
.margin-top.margin-huge,
.margin-top.margin-small,
.margin-top.margin-tiny,
.margin-top.margin-custom3,
.margin-top.margin-medium,
.margin-top.margin-xxsmall,
.margin-top.margin-xxhuge,
.margin-top.margin-custom2,
.margin-top.margin-xsmall,
.margin-top.margin-large,
.margin-top.margin-xxlarge,
.margin-top.margin-xlarge,
.margin-top.margin-0,
.margin-top.margin-xhuge {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom,
.margin-bottom.margin-xxlarge,
.margin-bottom.margin-medium,
.margin-bottom.margin-custom3,
.margin-bottom.margin-custom1,
.margin-bottom.margin-tiny,
.margin-bottom.margin-small,
.margin-bottom.margin-large,
.margin-bottom.margin-0,
.margin-bottom.margin-xlarge,
.margin-bottom.margin-xhuge,
.margin-bottom.margin-xxhuge,
.margin-bottom.margin-huge,
.margin-bottom.margin-xxsmall,
.margin-bottom.margin-custom2,
.margin-bottom.margin-xsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-left,
.margin-left.margin-tiny,
.margin-left.margin-xxlarge,
.margin-left.margin-0,
.margin-left.margin-small,
.margin-left.margin-xsmall,
.margin-left.margin-large,
.margin-left.margin-huge,
.margin-left.margin-xlarge,
.margin-left.margin-custom3,
.margin-left.margin-xxsmall,
.margin-left.margin-custom1,
.margin-left.margin-custom2,
.margin-left.margin-xhuge,
.margin-left.margin-xxhuge,
.margin-left.margin-medium {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.margin-right,
.margin-right.margin-huge,
.margin-right.margin-xsmall,
.margin-right.margin-xxhuge,
.margin-right.margin-small,
.margin-right.margin-medium,
.margin-right.margin-xlarge,
.margin-right.margin-custom3,
.margin-right.margin-custom2,
.margin-right.margin-xxsmall,
.margin-right.margin-xhuge,
.margin-right.margin-custom1,
.margin-right.margin-large,
.margin-right.margin-0,
.margin-right.margin-xxlarge,
.margin-right.margin-tiny {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-vertical,
.margin-vertical.margin-medium,
.margin-vertical.margin-xlarge,
.margin-vertical.margin-xxsmall,
.margin-vertical.margin-xxlarge,
.margin-vertical.margin-huge,
.margin-vertical.margin-0,
.margin-vertical.margin-xxhuge,
.margin-vertical.margin-tiny,
.margin-vertical.margin-xsmall,
.margin-vertical.margin-custom1,
.margin-vertical.margin-small,
.margin-vertical.margin-large,
.margin-vertical.margin-xhuge,
.margin-vertical.margin-custom2,
.margin-vertical.margin-custom3 {
  margin-left: 0;
  margin-right: 0;
}

.margin-horizontal,
.margin-horizontal.margin-medium,
.margin-horizontal.margin-tiny,
.margin-horizontal.margin-custom3,
.margin-horizontal.margin-0,
.margin-horizontal.margin-xxlarge,
.margin-horizontal.margin-xhuge,
.margin-horizontal.margin-huge,
.margin-horizontal.margin-xlarge,
.margin-horizontal.margin-custom1,
.margin-horizontal.margin-xxsmall,
.margin-horizontal.margin-xsmall,
.margin-horizontal.margin-large,
.margin-horizontal.margin-custom2,
.margin-horizontal.margin-small,
.margin-horizontal.margin-xxhuge {
  margin-top: 0;
  margin-bottom: 0;
}

.padding-top,
.padding-top.padding-xhuge,
.padding-top.padding-xxhuge,
.padding-top.padding-0,
.padding-top.padding-large,
.padding-top.padding-custom2,
.padding-top.padding-xlarge,
.padding-top.padding-huge,
.padding-top.padding-xxsmall,
.padding-top.padding-custom3,
.padding-top.padding-tiny,
.padding-top.padding-medium,
.padding-top.padding-xxlarge,
.padding-top.padding-small,
.padding-top.padding-xsmall,
.padding-top.padding-custom1 {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-bottom,
.padding-bottom.padding-xlarge,
.padding-bottom.padding-small,
.padding-bottom.padding-xxhuge,
.padding-bottom.padding-large,
.padding-bottom.padding-xhuge,
.padding-bottom.padding-custom2,
.padding-bottom.padding-xxsmall,
.padding-bottom.padding-xxlarge,
.padding-bottom.padding-custom3,
.padding-bottom.padding-custom1,
.padding-bottom.padding-xsmall,
.padding-bottom.padding-huge,
.padding-bottom.padding-tiny,
.padding-bottom.padding-medium,
.padding-bottom.padding-0 {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-left,
.padding-left.padding-xhuge,
.padding-left.padding-xlarge,
.padding-left.padding-0,
.padding-left.padding-small,
.padding-left.padding-xsmall,
.padding-left.padding-medium,
.padding-left.padding-xxhuge,
.padding-left.padding-huge,
.padding-left.padding-custom1,
.padding-left.padding-tiny,
.padding-left.padding-xxsmall,
.padding-left.padding-custom3,
.padding-left.padding-custom2,
.padding-left.padding-xxlarge,
.padding-left.padding-large {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.padding-right,
.padding-right.padding-xxhuge,
.padding-right.padding-custom2,
.padding-right.padding-large,
.padding-right.padding-xlarge,
.padding-right.padding-tiny,
.padding-right.padding-custom3,
.padding-right.padding-custom1,
.padding-right.padding-xsmall,
.padding-right.padding-xxlarge,
.padding-right.padding-xxsmall,
.padding-right.padding-medium,
.padding-right.padding-xhuge,
.padding-right.padding-huge,
.padding-right.padding-0,
.padding-right.padding-small {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.padding-vertical,
.padding-vertical.padding-0,
.padding-vertical.padding-xxhuge,
.padding-vertical.padding-large,
.padding-vertical.padding-custom3,
.padding-vertical.padding-medium,
.padding-vertical.padding-tiny,
.padding-vertical.padding-xxlarge,
.padding-vertical.padding-custom1,
.padding-vertical.padding-xsmall,
.padding-vertical.padding-xhuge,
.padding-vertical.padding-xlarge,
.padding-vertical.padding-custom2,
.padding-vertical.padding-xxsmall,
.padding-vertical.padding-huge,
.padding-vertical.padding-small {
  padding-left: 0;
  padding-right: 0;
}

.padding-horizontal,
.padding-horizontal.padding-xxsmall,
.padding-horizontal.padding-0,
.padding-horizontal.padding-custom3,
.padding-horizontal.padding-huge,
.padding-horizontal.padding-xsmall,
.padding-horizontal.padding-medium,
.padding-horizontal.padding-xxlarge,
.padding-horizontal.padding-large,
.padding-horizontal.padding-xhuge,
.padding-horizontal.padding-custom1,
.padding-horizontal.padding-tiny,
.padding-horizontal.padding-custom2,
.padding-horizontal.padding-xxhuge,
.padding-horizontal.padding-small,
.padding-horizontal.padding-xlarge {
  padding-top: 0;
  padding-bottom: 0;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

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

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

.text-size-medium.text-weight-medium {
  font-weight: 400;
}

.margin-top-auto {
  margin-top: auto;
}

.text-style-quote {
  border-left: 0.1875rem solid
    var(--color-scheme-1--text\<deleted\|relume-variable-color-scheme-1-text\>);
  margin-bottom: 0;
  padding: 0.75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

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

.heading-style-h2 {
  font-family:
    Crimson pro,
    Arial,
    sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.rl-styleguide_heading {
  z-index: 4;
  font-family: var(
    --_typography---font-styles--heading\<deleted\|relume-variable-font-style-heading\>
  );
  margin-bottom: 1.5rem;
  padding: 0.25rem 0.5rem;
  font-size: 3.5rem;
  font-weight: 700;
}

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

.rl-styleguide_item-row {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 15rem 1fr;
  align-items: center;
}

.rl-styleguide_item-row.is-button-row {
  grid-template-columns: 19rem 1fr;
}

.icon-1x1-xsmall {
  width: 1.5rem;
  height: 1.5rem;
}

.rl-styleguide_empty-space {
  z-index: -1;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  display: flex;
  position: relative;
}

.shadow-xxlarge {
  box-shadow: 0 32px 64px -12px #00000024;
}

.rl-styleguide_icons-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

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

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

.form_radio.is-alternate {
  color: var(--_primitives---colors--white\<deleted\|relume-variable-neutral-white\>);
}

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

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

.heading-style-h1 {
  font-family:
    Crimson pro,
    Arial,
    sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
}

.form_checkbox-icon {
  border: 1px solid
    var(
      --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>
    );
  cursor: pointer;
  border-radius: 0;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: 0.5rem;
  transition: all 0.2s;
}

.form_checkbox-icon.w--redirected-checked {
  box-shadow: none;
  background-color: #000;
  background-size: 16px 16px;
  border-width: 1px;
  border-color: #000;
}

.form_checkbox-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
}

.form_checkbox-icon.is-alternate {
  border-color: var(
    --_primitives---colors--white\<deleted\|relume-variable-neutral-white\>
  );
}

.form_checkbox-label {
  margin-bottom: 0;
}

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

.form_field-label {
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.form_field-label.is-alternate {
  color: var(--text-color--text-alternate\<deleted\|relume-variable-text-color-3\>);
}

.button {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  background-color: var(--white);
  color: var(--black);
  text-align: center;
  border-radius: 100rem;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.5rem;
  font-family: Inter, Arial, sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition:
    background-color 0.333s,
    transform 0.333s;
  display: flex;
}

.button:hover {
  background-color: var(--grey-light);
  transform: scale(0.95);
}

.button.is-link {
  background-color: var(
    --_primitives---opacity--transparent\<deleted\|relume-variable-transparent\>
  );
  color: var(
    --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>
  );
  border-style: none;
  padding: 0.25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button.is-link.is-alternate {
  background-color: var(
    --_primitives---opacity--transparent\<deleted\|relume-variable-transparent\>
  );
  color: var(--_primitives---colors--white\<deleted\|relume-variable-neutral-white\>);
}

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

.button.is-icon {
  grid-column-gap: 0.75rem;
  grid-row-gap: 0.75rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button.is-secondary {
  background-color: var(
    --_primitives---opacity--transparent\<deleted\|relume-variable-transparent\>
  );
  color: var(
    --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>
  );
}

.button.is-secondary.is-alternate {
  background-color: var(
    --_primitives---opacity--transparent\<deleted\|relume-variable-transparent\>
  );
  color: var(--_primitives---colors--white\<deleted\|relume-variable-neutral-white\>);
}

.button.is-small {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}

.button.is-alternate {
  border-color: var(
    --_primitives---colors--white\<deleted\|relume-variable-neutral-white\>
  );
  background-color: var(
    --_primitives---colors--white\<deleted\|relume-variable-neutral-white\>
  );
  color: var(
    --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>
  );
}

.button.is-dark {
  background-color: var(--dark);
  color: var(--white);
}

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

.button.is-dark.is-small {
  height: 2rem;
}

.button.is-purple {
  min-width: 14.25rem;
  color: var(--white);
  background-color: #683fea;
  padding: 1.375rem 2.5rem;
  font-size: 1.125rem;
  transition:
    box-shadow 0.333s,
    background-color 0.333s,
    transform 0.333s;
  box-shadow:
    0 0 40px #683fea,
    0 0 0 4px #ffffff14,
    inset 0 -4px 2px #01010152,
    inset 0 2px 1px #ffffff3d;
}

.button.is-purple:hover {
  transform: scale(0.975);
  box-shadow:
    0 0 #683fea,
    0 0 0 4px #ffffff14,
    inset 0 -4px 2px #01010152,
    inset 0 2px 1px #ffffff3d;
}

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

.heading-style-h4 {
  font-family:
    Crimson pro,
    Arial,
    sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
}

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

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

.form_radio-label {
  margin-bottom: 0;
}

.rl-styleguide_item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 1rem;
  display: grid;
}

.rl-styleguide_item.is-stretch {
  grid-row-gap: 1rem;
  justify-items: stretch;
}

.icon-1x1-xlarge {
  width: 6.5rem;
  height: 6.5rem;
}

.shadow-xlarge {
  box-shadow: 0 24px 48px -12px #0000002e;
}

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

.rl-styleguide_label {
  color: #1e51f7;
  white-space: nowrap;
  cursor: context-menu;
  background-color: #e8edff;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  display: inline-block;
}

.rl-styleguide_label.is-html-tag {
  color: #bb4198;
  background-color: #f9eff6;
}

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

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

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

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

.icon-height-xlarge {
  height: 6.5rem;
}

.heading-style-h3 {
  font-family:
    Crimson pro,
    Arial,
    sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

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

.form_input {
  border: 1px solid
    var(
      --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>
    );
  background-color: var(
    --_primitives---colors--white\<deleted\|relume-variable-neutral-white\>
  );
  height: auto;
  min-height: 2.75rem;
  color: var(
    --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>
  );
  border-radius: 0;
  margin-bottom: 0;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form_input:focus {
  border-color: var(
    --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>
  );
}

.form_input::placeholder {
  color: var(
    --_primitives---opacity--neutral-darkest-60\<deleted\|relume-variable-neutral-shade-7-60\>
  );
}

.form_input.is-text-area {
  height: auto;
  min-height: 11.25rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  overflow: auto;
}

.form_input.is-select-input {
  background-image: url('../images/chevron-down.svg');
  background-position: 99%;
  background-repeat: no-repeat;
  background-size: auto;
}

.form_input.is-select-input.is-alternate {
  background-image: url('../images/chevron-down-white.svg');
}

.form_input.is-alternate {
  border-color: var(
    --_primitives---colors--white\<deleted\|relume-variable-neutral-white\>
  );
  background-color: var(
    --_primitives---opacity--transparent\<deleted\|relume-variable-transparent\>
  );
  color: var(--_primitives---colors--white\<deleted\|relume-variable-neutral-white\>);
}

.form_input.is-alternate::placeholder {
  color: var(
    --_primitives---opacity--white-60\<deleted\|relume-variable-neutral-white-60\>
  );
}

.rl-styleguide_button-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1.5rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: max-content;
  grid-auto-flow: row;
  place-items: center start;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: grid;
}

.rl-styleguide_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-bottom: 4rem;
}

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

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

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

.text-color-white {
  color: var(--_primitives---colors--white\<deleted\|relume-variable-neutral-white\>);
}

.background-color-white {
  background-color: var(
    --_primitives---colors--white\<deleted\|relume-variable-neutral-white\>
  );
}

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

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

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

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

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

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

.shadow-xxsmall {
  box-shadow: 0 1px 2px #0000000d;
}

.text-color-black {
  color: var(
    --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>
  );
}

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

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

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

.background-color-black {
  background-color: var(
    --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>
  );
}

.shadow-xsmall {
  box-shadow:
    0 1px 3px #0000001a,
    0 1px 2px #0000000f;
}

.icon-1x1-custom1 {
  width: 1.25rem;
  height: 1.25rem;
}

.rl-styleguide_header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
}

.rl-styleguide_subheading {
  z-index: 3;
  border: var(
      --_ui-styles---stroke--border-width\<deleted\|relume-variable-border-width\>
    )
    solid var(--color-scheme-1--border\<deleted\|relume-variable-color-scheme-1-border\>);
  border-radius: var(
    --_ui-styles---radius--medium\<deleted\|relume-variable-radius-medium\>
  );
  background-color: var(
    --color-scheme-1--foreground\<deleted\|relume-variable-color-scheme-1-foreground\>
  );
  font-family: var(
    --_typography---font-styles--heading\<deleted\|relume-variable-font-style-heading\>
  );
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.rl-styleguide_subheading.is-text-small {
  font-family: var(
    --_typography---font-styles--body\<deleted\|relume-variable-font-style-body\>
  );
  font-size: 1rem;
  font-weight: 400;
}

.form_radio-icon {
  border: 1px solid
    var(
      --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>
    );
  cursor: pointer;
  border-radius: 100px;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.125rem;
  margin-right: 0.5rem;
}

.form_radio-icon.w--redirected-checked {
  background-color: #fff;
  background-image: none;
  border-width: 6px;
  border-color: #000;
}

.form_radio-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
  margin-top: 0;
}

.form_radio-icon.is-alternate {
  border-color: var(
    --_primitives---colors--white\<deleted\|relume-variable-neutral-white\>
  );
}

.rl-styleguide_shadows-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: start;
}

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

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

.icon-height-custom1 {
  height: 1.25rem;
}

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

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

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

.form_field-wrapper {
  position: relative;
}

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

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

.shadow-large {
  box-shadow:
    0 20px 24px -4px #00000014,
    0 8px 8px -4px #00000008;
}

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

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

.class-label-row {
  grid-column-gap: 0.25rem;
  grid-row-gap: 0.25rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

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

.text-rich-text blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.text-rich-text h2 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 3rem;
}

.text-rich-text h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.text-rich-text h5,
.text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
  font-family:
    Crimson pro,
    Arial,
    sans-serif;
  font-weight: 400;
}

.text-rich-text p {
  color: var(--grey-dark);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.text-rich-text a {
  color: var(--dark);
  text-decoration: underline;
}

.text-rich-text figcaption {
  border-left: 2px solid
    var(--color-scheme-1--text\<deleted\|relume-variable-color-scheme-1-text\>);
  text-align: left;
  margin-top: 0.5rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.text-rich-text ul,
.text-rich-text ol,
.text-rich-text._2 {
  color: var(--grey-dark);
}

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

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

.form_checkbox.is-alternate {
  color: var(--_primitives---colors--white\<deleted\|relume-variable-neutral-white\>);
}

.shadow-small {
  box-shadow:
    0 4px 8px -2px #0000001a,
    0 2px 4px -2px #0000000f;
}

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

.shadow-medium {
  box-shadow:
    0 12px 16px -4px #00000014,
    0 4px 6px -2px #00000008;
}

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

.icon-height-xsmall {
  height: 1.5rem;
}

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

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

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

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

.rl-styleguide_empty-box {
  z-index: -1;
  background-color: var(
    --background-color--background-secondary\<deleted\|relume-variable-background-color-2\>
  );
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.rl-styleguide_spacing {
  border: 1px dashed
    var(--border-color--border-primary\<deleted\|relume-variable-border-color-1\>);
}

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

.padding-global._100 {
  width: 100%;
}

.padding-section-medium {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 7rem;
  padding-bottom: 7rem;
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

.rl-styleguide_nav {
  z-index: 1000;
  border: var(
      --_ui-styles---stroke--border-width\<deleted\|relume-variable-border-width\>
    )
    solid var(--color-scheme-1--border\<deleted\|relume-variable-color-scheme-1-border\>);
  border-radius: var(
    --_ui-styles---radius--medium\<deleted\|relume-variable-radius-medium\>
  );
  background-color: var(
    --color-scheme-1--foreground\<deleted\|relume-variable-color-scheme-1-foreground\>
  );
  margin-top: 1rem;
  padding: 0.5rem;
  position: sticky;
  top: 1rem;
}

.rl-styleguide_nav-link {
  border-radius: var(
    --_ui-styles---radius--small\<deleted\|relume-variable-radius-small\>
  );
  padding: 0.5rem 1rem;
  text-decoration: none;
}

.rl-styleguide_nav-link.w--current {
  background-color: var(
    --color-scheme-1--background\<deleted\|relume-variable-color-scheme-1-background\>
  );
}

.rl-styleguide_subheading-small {
  font-size: 1rem;
  font-weight: 400;
}

.rl-styleguide_background-color-list {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.rl-styleguide_color-spacer {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
  display: flex;
}

.aspect-ratio-square {
  aspect-ratio: 1;
}

.rl-styleguide_ratio-bg {
  z-index: -1;
  background-color: var(
    --background-color--background-secondary\<deleted\|relume-variable-background-color-2\>
  );
  min-width: 3rem;
  height: 100%;
  position: relative;
}

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

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

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

.form_message-success-wrapper {
  margin-top: 1rem;
  padding: 0;
}

.form_message-success {
  color: #027a48;
  background-color: #ecfdf3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
  display: flex;
}

.form_message-error {
  color: #b42318;
  background-color: #fef3f2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.form_message-error-wrapper {
  margin-top: 1rem;
  padding: 0;
}

.rl-styleguide_component {
  grid-column-gap: 0rem;
  color: #000;
  background-color: #f1f0ee;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  display: grid;
}

.rl-styleguide_image {
  object-fit: cover;
  object-position: 50% 100%;
  width: 100%;
  max-width: 50rem;
  height: 100vh;
  max-height: 60rem;
}

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

.delete-this {
  display: flex;
}

.rl-styleguide_image-wrapper {
  background-image: url('../images/Webflow-Background.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 1080px;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.rl-styleguide_form-wrapper {
  padding-right: 1.5rem;
}

.tag {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  border: 1px solid
    var(
      --_primitives---colors--neutral-lightest\<deleted\|relume-variable-neutral-shade-1\>
    );
  background-color: var(
    --_primitives---colors--neutral-lightest\<deleted\|relume-variable-neutral-shade-1\>
  );
  color: var(
    --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>
  );
  justify-content: center;
  align-items: center;
  padding: 0.175rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.tag.is-text {
  border-style: none;
  border-color: var(
    --_primitives---opacity--transparent\<deleted\|relume-variable-transparent\>
  );
  background-color: var(
    --_primitives---opacity--transparent\<deleted\|relume-variable-transparent\>
  );
  padding: 0;
  display: inline-block;
}

.tag.is-text.is-alternate {
  background-color: var(
    --_primitives---opacity--transparent\<deleted\|relume-variable-transparent\>
  );
  color: var(--_primitives---colors--white\<deleted\|relume-variable-neutral-white\>);
}

.tag.is-alternate {
  border-color: var(
    --_primitives---colors--white\<deleted\|relume-variable-neutral-white\>
  );
  background-color: var(
    --_primitives---colors--white\<deleted\|relume-variable-neutral-white\>
  );
  color: var(
    --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>
  );
}

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

.rl-styleguide_scheme-foreground {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  border: var(
      --_ui-styles---stroke--border-width\<deleted\|relume-variable-border-width\>
    )
    solid var(--color-scheme-1--border\<deleted\|relume-variable-color-scheme-1-border\>);
  border-radius: var(
    --_ui-styles---radius--medium\<deleted\|relume-variable-radius-medium\>
  );
  background-color: var(
    --color-scheme-1--foreground\<deleted\|relume-variable-color-scheme-1-foreground\>
  );
  flex-flow: column;
  padding: 1rem;
  display: flex;
}

.rl-styleguide_scheme-wrapper {
  padding: 1rem;
}

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

.rl-styleguide_scheme-card {
  border-radius: var(
    --_ui-styles---radius--large\<deleted\|relume-variable-radius-large\>
  );
  overflow: hidden;
}

.rl-styleguide-accent {
  color: var(--color-scheme-1--accent\<deleted\|relume-variable-color-scheme-1-accent\>);
}

.rl-styleguide_scheme {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
}

.rl-styleguide_radius-large-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.rl-styleguide_radius-large {
  aspect-ratio: 1;
  border: 1px solid
    var(--color-scheme-1--border\<deleted\|relume-variable-color-scheme-1-border\>);
  border-radius: var(
    --_ui-styles---radius--large\<deleted\|relume-variable-radius-large\>
  );
  object-fit: cover;
}

.rl-styleguide_radius-medium-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.rl-styleguide_radius-medium {
  aspect-ratio: 1;
  border: 1px solid
    var(--color-scheme-1--border\<deleted\|relume-variable-color-scheme-1-border\>);
  border-radius: var(
    --_ui-styles---radius--medium\<deleted\|relume-variable-radius-medium\>
  );
  object-fit: cover;
}

.rl-styleguide_radius-small-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.rl-styleguide_radius-small {
  aspect-ratio: 1;
  border: 1px solid
    var(--color-scheme-1--border\<deleted\|relume-variable-color-scheme-1-border\>);
  border-radius: var(
    --_ui-styles---radius--small\<deleted\|relume-variable-radius-small\>
  );
  object-fit: cover;
}

.tabs-menu {
  border: 1px solid
    var(--color-scheme-1--border\<deleted\|relume-variable-color-scheme-1-border\>);
  background-color: var(
    --color-scheme-1--foreground\<deleted\|relume-variable-color-scheme-1-foreground\>
  );
  align-self: center;
  margin-bottom: 3rem;
  padding: 0.25rem;
  display: flex;
}

.tab-link {
  border: 1px solid
    var(--_primitives---opacity--transparent\<deleted\|relume-variable-transparent\>);
  background-color: var(
    --_primitives---opacity--transparent\<deleted\|relume-variable-transparent\>
  );
  padding: 0.5rem 1.5rem;
}

.tab-link.w--current {
  border-color: var(
    --color-scheme-1--border\<deleted\|relume-variable-color-scheme-1-border\>
  );
  background-color: var(
    --color-scheme-1--background\<deleted\|relume-variable-color-scheme-1-background\>
  );
}

.category-filter-menu {
  align-items: center;
  width: 100%;
  margin-bottom: 4rem;
  display: flex;
}

.category-filter-menu.is-center {
  justify-content: center;
  align-items: center;
}

.category-filter-link {
  border: 1px solid
    var(--_primitives---opacity--transparent\<deleted\|relume-variable-transparent\>);
  background-color: var(
    --_primitives---opacity--transparent\<deleted\|relume-variable-transparent\>
  );
  white-space: nowrap;
  flex: none;
  padding: 0.5rem 1rem;
  text-decoration: none;
}

.category-filter-link.w--current {
  border-color: var(
    --color-scheme-1--border\<deleted\|relume-variable-color-scheme-1-border\>
  );
  background-color: var(
    --color-scheme-1--foreground\<deleted\|relume-variable-color-scheme-1-foreground\>
  );
}

.slider-arrow {
  border: 1px solid
    var(--color-scheme-1--border\<deleted\|relume-variable-color-scheme-1-border\>);
  background-color: var(
    --color-scheme-1--foreground\<deleted\|relume-variable-color-scheme-1-foreground\>
  );
  width: 3rem;
  height: 3rem;
  color: var(--color-scheme-1--text\<deleted\|relume-variable-color-scheme-1-text\>);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.slider-arrow.is-bottom-previous {
  inset: auto 4rem 0% auto;
}

.slider-arrow.is-bottom-next {
  inset: auto 0% 0% auto;
}

.slider-arrow.is-centre-previous,
.slider-arrow.is-centre-next {
  bottom: 4rem;
}

.slider-arrow-icon_default {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.hidden-ui-elements {
  display: none;
}

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

.rl-styleguide_logo {
  width: 10rem;
}

.navbar11_component {
  background-color: var(--black);
  align-items: center;
  width: 100%;
  padding: 1.25rem 5%;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar11_container {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar11_logo-link {
  padding-left: 0;
  transition: transform 0.333s;
}

.navbar11_logo-link:hover {
  transform: scale(1.025);
}

.navbar11_logo {
  height: 2rem;
}

.navbar11_menu {
  align-items: center;
  display: flex;
  position: static;
}

.navbar11_menu-links {
  font-size: 0.875rem;
}

.navbar11_link {
  z-index: 2;
  color: var(--white);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  transition: color 0.333s;
}

.navbar11_link:hover {
  color: var(--grey-light);
}

.navbar11_link.w--current,
.navbar11_link.is-last.w--current {
  color: var(--white);
}

.navbar11_dropdown-toggle {
  grid-column-gap: 0.25rem;
  align-items: center;
  padding: 0.5rem 0.75rem;
  display: flex;
}

.dropdown-chevron {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.navbar11_dropdown-list.w--open {
  width: 6.25rem;
}

.navbar11_dropdown-link-list {
  grid-column-gap: 0px;
  flex-flow: column;
  grid-template-rows: max-content;
  grid-template-columns: 1fr;
  grid-auto-rows: max-content;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.navbar11_dropdown-link {
  grid-column-gap: 0.75rem;
  grid-row-gap: 0px;
  background-color: var(--white);
  width: 100%;
  color: var(--black);
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  padding: 0.75rem;
  font-weight: 400;
  text-decoration: none;
  transition: background-color 0.333s;
  display: flex;
}

.navbar11_dropdown-link:hover {
  background-color: #e8e8e8;
}

.navbar11_dropdown-link.is-1 {
  border-bottom: 0.0625rem solid #e1e1e1;
}

.navbar11_icon-wrapper {
  flex: none;
}

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

.navbar11_menu-buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-left: 1rem;
  display: flex;
}

.navbar11_menu-button {
  padding: 0;
}

.section_home-1 {
  background-image: url('../images/01.-Hero-2_1.avif');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-start;
  align-items: flex-end;
  height: 100vh;
  padding-bottom: 6rem;
  display: flex;
}

.div-block {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 59.3125rem;
  display: flex;
}

.div-block._2 {
  max-width: 42rem;
}

.div-block-2 {
  max-width: 37rem;
}

.div-block-3 {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.div-block-4 {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.div-block-5 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 56rem;
  display: flex;
}

.div-block-5.is-hiw {
  max-width: 42rem;
}

.subtitle {
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 500;
}

.div-block-6 {
  justify-content: flex-start;
  align-items: flex-end;
  max-width: 18.875rem;
  display: flex;
}

.div-block-6.is-hiw {
  max-width: 24.1875rem;
}

.div-block-7 {
  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;
  width: 100%;
  display: grid;
}

.div-block-8 {
  grid-column-gap: 6.625rem;
  grid-row-gap: 6.625rem;
  border-left: 0.0625rem solid #fff3;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 1.5rem;
  display: flex;
}

.paragraph,
.paragraph-2 {
  font-size: 3rem;
}

.div-block-9 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.scroll-highlight {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-family:
    Crimson pro,
    Arial,
    sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.4;
  display: flex;
}

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

.image {
  aspect-ratio: 405 / 319;
  object-fit: cover;
  min-width: 100%;
}

.div-block-11 {
  background-color: var(--dark);
}

.div-block-12 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 1.5rem;
  padding-bottom: 5rem;
  display: flex;
}

.div-block-13 {
  background-color: #292929;
  flex: none;
  width: 100%;
  height: 0.0625rem;
}

.div-block-14 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
}

.section_home-5 {
  background-color: var(--white);
  color: var(--black);
}

.div-block-15 {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-16 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 52.75rem;
  display: flex;
}

.div-block-17 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.div-block-18 {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr min-content 1fr min-content 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.div-block-19 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-20 {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 0.75rem;
  display: flex;
}

.div-block-21 {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
}

.div-block-22 {
  background-color: var(--black);
  border-radius: 100%;
  width: 0.375rem;
  height: 0.375rem;
}

.image-2 {
  aspect-ratio: 400 / 190;
  object-fit: cover;
  min-width: 100%;
}

.div-block-23 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.paragraph-3 {
  font-size: 3rem;
}

.paragraph-4 {
  font-family:
    Crimson pro,
    Arial,
    sans-serif;
  font-size: 3rem;
  line-height: 1.3;
}

.div-block-24 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

.div-block-25 {
  background-color: #e1e1e1;
  width: 0.0625rem;
  height: 100%;
}

.section_home-6 {
  background-image: url('../images/digital-world-banner-background-remixed-from-public-domain-by-nasa-1_1.avif');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.div-block-26 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-27 {
  max-width: 22.5rem;
}

.div-block-28 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr min-content 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: start stretch;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.div-block-29 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 30rem;
  display: flex;
}

.div-block-30 {
  grid-column-gap: 0.75rem;
  grid-row-gap: 0.75rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

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

.code-embed {
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.div-block-31 {
  background-color: #fff3;
  flex: none;
  align-self: stretch;
  width: 0.0625rem;
  height: 100%;
  min-height: 100%;
}

.section_home-9 {
  background-color: var(--white);
  color: var(--dark);
}

.div-block-32 {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-33 {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.div-block-34 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-35 {
  max-width: 38.8rem;
}

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

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

.image-3 {
  aspect-ratio: 405 / 384;
  object-fit: cover;
  min-width: 100%;
}

.div-block-37 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

.footer2_top-wrapper {
  grid-column-gap: 8vw;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 0.5fr;
  align-items: start;
}

.footer2_left-wrapper {
  grid-column-gap: 3.625rem;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 4rem;
  display: flex;
}

.footer2_logo-link {
  padding-left: 0;
  transition: transform 0.333s;
}

.footer2_logo-link:hover {
  transform: scale(1.025);
}

.footer2_logo {
  height: 2.5rem;
}

.footer2_link-column {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer2_link-list {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: flex-start start;
  display: flex;
}

.footer2_link {
  color: var(--grey-dark);
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.333s;
}

.footer2_link:hover {
  color: var(--white);
}

.footer2_right-wrapper {
  flex-direction: column;
  display: flex;
}

.footer2_form-block {
  max-width: 35rem;
  margin-bottom: 0;
}

.footer2_form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  margin-bottom: 0.75rem;
  display: flex;
}

.button-2 {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  background-color: var(--white);
  color: var(--black);
  text-align: center;
  border-radius: 100rem;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.5rem;
  font-family: Inter, Arial, sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition:
    background-color 0.333s,
    transform 0.333s;
  display: flex;
}

.button-2:hover {
  background-color: var(--grey-light);
  transform: scale(0.95);
}

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

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

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

.divider-horizontal {
  background-color: #ffffff1a;
  width: 100%;
  height: 0.0625rem;
}

.footer2_bottom-wrapper {
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  display: flex;
}

.footer2_legal-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  display: flex;
}

.footer2_credit-text {
  font-size: 0.875rem;
}

.footer2_legal-link {
  font-size: 0.875rem;
  text-decoration: underline;
}

.footer2_social-list {
  grid-column-gap: 0.75rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  place-items: start;
  display: flex;
}

.footer2_social-link {
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.333s;
  display: flex;
}

.footer2_social-link:hover {
  color: var(--grey-dark);
}

.div-block-38 {
  grid-column-gap: 2.25rem;
  grid-row-gap: 2.25rem;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  width: 12.5rem;
  display: flex;
}

.code-embed-2 {
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
}

.link-block-2 {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  justify-content: flex-start;
  align-items: center;
  transition: color 0.333s;
  display: flex;
}

.link-block-2:hover {
  color: var(--grey-light);
}

.top {
  height: 0;
}

.div-block-39 {
  flex: 1;
}

.div-block-40 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.scroll-highlight-copy {
  font-family:
    Crimson pro,
    Arial,
    sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.4;
}

.scroll-highlight-copy p {
  margin-bottom: 3rem;
}

.div-block-41 {
  max-width: 12.1875rem;
}

.section_lp-hero {
  background-image: url('../images/01.-Hero-2_1.avif');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 6.5rem;
  padding-bottom: 3.875rem;
  display: flex;
}

.lp_nav {
  justify-content: center;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.image-4 {
  height: 2.5rem;
}

.heading {
  margin-bottom: 1rem;
  font-size: 3rem;
}

.div-block-43 {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-44 {
  max-width: 30rem;
  margin-bottom: 1.5rem;
}

.div-block-45 {
  -webkit-backdrop-filter: blur(0.9375rem);
  backdrop-filter: blur(0.9375rem);
  background-color: #ebebeb2e;
  border-radius: 100rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
}

.image-5 {
  height: 20.875rem;
}

.div-block-46 {
  margin-top: 1rem;
  margin-bottom: 1.75rem;
  position: relative;
}

.div-block-47 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 8.875rem;
  display: flex;
  position: absolute;
  inset: 0%;
}

.image-6 {
  width: 3rem;
  height: 3rem;
}

.div-block-48 {
  max-width: 60rem;
  margin-bottom: 1rem;
}

.div-block-48.mob {
  display: none;
}

.div-block-49 {
  margin-bottom: 1.625rem;
}

.section_lp-2 {
  z-index: 2;
  background-color: var(--white);
  color: var(--black);
  padding-top: 8rem;
  padding-bottom: 4rem;
  position: relative;
}

.div-block-50 {
  grid-column-gap: 10rem;
  grid-row-gap: 10rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-51 {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.div-block-52 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr min-content 1fr min-content 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.div-block-53 {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-54 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

.image-7 {
  width: 2rem;
  height: 2rem;
}

.section_lp-3 {
  background-color: var(--white);
  color: var(--black);
  padding-top: 4rem;
  padding-bottom: 7rem;
}

.div-block-55 {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-56 {
  z-index: 2;
  max-width: 42.5rem;
  position: relative;
}

.section_timeline9 {
  z-index: -3;
  background-color: var(
    --color-scheme-1--background\<deleted\|relume-variable-color-scheme-1-background\>
  );
}

.component-instructions-delete {
  z-index: 1;
  background-color: var(
    --_primitives---colors--neutral-lightest\<deleted\|relume-variable-neutral-shade-1\>
  );
  color: var(
    --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>
  );
  text-align: left;
  padding: 2rem;
  position: relative;
}

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

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

.timeline9_content {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  display: grid;
  position: relative;
}

.timeline9_progress {
  z-index: 0;
  flex-direction: column;
  align-items: center;
  width: 2rem;
  height: 100%;
  display: flex;
  position: absolute;
}

.timeline9_fade-overlay-top {
  z-index: 1;
  background-image: linear-gradient(
    180deg,
    var(
      --color-scheme-1--background\<deleted\|relume-variable-color-scheme-1-background\>
    ),
    #0000
  );
  width: 0.0625rem;
  height: 4rem;
  position: absolute;
}

.timeline9_progress-line {
  z-index: 0;
  background-color: var(
    --color-scheme-1--text\<deleted\|relume-variable-color-scheme-1-text\>
  );
  width: 0.0625rem;
  height: 50vh;
  margin-top: -50vh;
  position: sticky;
  top: 0;
}

.timeline9_line {
  background-color: #ebebeb;
  width: 0.0625rem;
  height: 100%;
}

.timeline9_fade-overlay-bottom {
  z-index: 1;
  background-image: linear-gradient(
    180deg,
    #fff0,
    var(
      --color-scheme-1--background\<deleted\|relume-variable-color-scheme-1-background\>
    )
  );
  width: 0.0625rem;
  height: 4rem;
  position: absolute;
  bottom: 0%;
}

.timeline9_progress-line-cover {
  z-index: 2;
  background-color: var(--white);
  width: 100%;
  height: 50vh;
  position: absolute;
  top: -50vh;
}

.timeline9_list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.timeline9_row {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.timeline9_empty-space {
  width: 100%;
}

.timeline9_circle-wrapper {
  z-index: 1;
  justify-content: center;
  width: 2rem;
  height: 100%;
  display: flex;
  position: relative;
}

.timeline9_circle {
  z-index: 2;
  background-color: #ebebeb;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  margin-top: 0;
}

.timeline9_item {
  z-index: 2;
  grid-template-rows: auto;
  grid-template-columns: 1fr 12rem 1fr;
  grid-auto-columns: 1fr;
}

.timeline9_item.item-left {
  text-align: right;
  align-items: flex-end;
}

.image-8 {
  width: 9.25rem;
  height: 9.25rem;
}

.div-block-57 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-58 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-59 {
  z-index: 2;
  grid-column-gap: 0.625rem;
  grid-row-gap: 0.625rem;
  color: var(--black);
  text-transform: uppercase;
  background-color: #ebebeb;
  border-radius: 100rem;
  justify-content: flex-start;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  position: relative;
}

.div-block-59._2 {
  cursor: pointer;
  margin-bottom: -3.25rem;
  margin-left: 1rem;
}

.div-block-60 {
  background-color: var(--dark);
  border-radius: 100rem;
  flex: none;
  width: 0.375rem;
  height: 0.375rem;
}

.section_lp-4 {
  background-image: url('../images/digital-world-banner-background-remixed-from-public-domain-by-nasa-1-3_1.avif');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 16.25rem;
  padding-bottom: 16.25rem;
}

.div-block-61 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-62 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-63 {
  max-width: 36rem;
}

.section_lp-5 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.div-block-64 {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-65 {
  text-align: center;
  max-width: 33.25rem;
}

.div-block-66 {
  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;
  width: 100%;
  display: grid;
}

.div-block-67 {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  border-left: 0.0625rem solid #fff3;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 1.5rem;
  display: flex;
}

.div-block-68 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.image-9 {
  width: 4rem;
  height: 4rem;
}

.div-block-69 {
  max-width: 8rem;
}

.section_lp-6 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.div-block-70 {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-71 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 49rem;
  display: flex;
}

.div-block-72 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-73 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 53.625rem;
  display: flex;
}

.image-10 {
  height: 36rem;
}

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

.div-block-75 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: absolute;
  inset: 13.5rem auto auto -4.25rem;
}

.div-block-75._2 {
  z-index: 3;
  top: 6rem;
  left: 7.25rem;
}

.div-block-75._3 {
  top: 10rem;
  left: 13rem;
}

.div-block-75._4 {
  inset: 8.25rem auto auto 28.9rem;
}

.div-block-75._5 {
  min-width: 14.75rem;
  inset: 27rem -4.7rem auto auto;
}

.div-block-76 {
  pointer-events: none;
  min-width: 14.75rem;
  max-width: 14.75rem;
  color: var(--black);
  background-color: #f5f5f5;
  padding: 4.5rem 1.75rem 1rem 1rem;
  position: relative;
  bottom: auto;
}

.section_lp-7 {
  background-color: var(--white);
  color: var(--black);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.div-block-77 {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-78 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.div-block-79 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-80 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  background-color: #f5f5f5;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1.5rem;
  display: flex;
}

.div-block-80._2 {
  color: #737373;
  background-color: #f5f5f500;
}

.div-block-81 {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  border-bottom: 0.0625rem dashed #e1e1e1;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
}

.image-11 {
  width: 1.5rem;
  height: 1.5rem;
}

.div-block-82 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.section_lp-8 {
  background-color: var(--white);
  color: var(--black);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.div-block-83 {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.div-block-84 {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  border-top: 0.0625rem solid #e1e1e1;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
}

.image-12 {
  width: 2.5rem;
  height: 2.5rem;
}

.div-block-85 {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-86 {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.div-block-87 {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text-block,
.text-block-2 {
  font-size: 2rem;
  line-height: 1.3;
}

.section_lp-9 {
  background-image: url('../images/digital-world-banner-background-remixed-from-public-domain-by-nasa-1-5_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.div-block-88 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  background-color: var(--white);
  height: 30rem;
  color: var(--black);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.div-block-88._2 {
  height: 28rem;
}

.image-13 {
  height: 1.5rem;
}

.div-block-89 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-90 {
  max-width: 23.625rem;
}

.div-block-91 {
  grid-column-gap: 0.75rem;
  grid-row-gap: 0.75rem;
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 400;
  display: flex;
}

.div-block-92 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.section_lp-10 {
  background-color: var(--white);
  color: var(--black);
  padding-top: 4rem;
  padding-bottom: 7rem;
}

.div-block-93 {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 39.25rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.section_faq4 {
  background-color: var(
    --color-scheme-1--background\<deleted\|relume-variable-color-scheme-1-background\>
  );
  color: var(--color-scheme-1--text\<deleted\|relume-variable-color-scheme-1-text\>);
}

.faq4_list {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: start stretch;
  display: grid;
}

.faq4_accordion {
  border-top: 0.0625rem solid #e1e1e1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  overflow: hidden;
}

.faq4_question {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  color: var(--black);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  display: flex;
}

.faq4_icon-wrappper {
  align-self: flex-start;
  display: flex;
}

.faq4_answer {
  color: #737373;
  overflow: hidden;
}

.section_lp-11 {
  background-color: var(--white);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.div-block-94 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-95 {
  background-color: #e1e1e1;
  flex: 1;
  height: 0.0625rem;
}

.sectiom_lp-12 {
  color: var(--black);
  background-color: #f5f5f5;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.div-block-96 {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.div-block-97 {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-98 {
  grid-column-gap: 2.25rem;
  grid-row-gap: 2.25rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-99 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.link {
  color: #404040;
  white-space: nowrap;
  font-size: 0.875rem;
  transition: color 0.333s;
}

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

.div-block-100 {
  color: #404040;
}

.div-block-101 {
  color: #9b9b9b;
  text-align: center;
}

.div-block-102 {
  color: #9b9b9b;
}

.div-block-103 {
  display: none;
}

.section_newsletter {
  background-image: url('../images/image_1.avif');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 7.5rem;
  padding-bottom: 3rem;
}

.section_faq-1 {
  background-image: url('../images/digital-world-banner-background-remixed-from-public-domain-by-nasa-1-6_1.avif');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-start;
  align-items: flex-end;
  height: 100vh;
  padding-bottom: 6rem;
  display: flex;
}

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

.tabs {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  display: grid;
}

.tabs-menu-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--grey-dark);
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 1.5rem;
  display: flex;
  position: sticky;
  top: 8rem;
}

.tab-link-tab-2 {
  color: var(--grey-dark);
  background-color: #ddd0;
  padding: 0;
  font-family:
    Crimson pro,
    Arial,
    sans-serif;
  font-size: 1.5rem;
  line-height: 1.3;
  position: relative;
}

.tab-link-tab-2.w--current {
  color: var(--black);
  background-color: #ddd0;
  line-height: 1.3;
  text-decoration: none;
}

.code-embed-3 {
  position: absolute;
  inset: 0%;
}

.div-block-106 {
  background-color: var(--black);
  width: 0%;
  height: 0.0625rem;
  min-height: 0.0625rem;
}

.div-block-copy {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 59.3125rem;
  display: flex;
}

.div-block-107 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 59.375rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.code-embed-4 {
  position: absolute;
  inset: 0%;
}

.div-block-108 {
  background-color: var(--white);
  width: 36rem;
  height: 30.125rem;
  padding: 2rem;
}

.code-embed-5 {
  display: flex;
  position: absolute;
  inset: 0%;
}

.div-block-109 {
  display: none;
}

.navbar-dropdown4_component {
  margin-left: 0;
  margin-right: 0;
  position: static;
}

.navbar-dropdown4_dropdown-toggle {
  grid-column-gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 0.75rem;
  display: flex;
}

.navbar-dropdown4_dropdown-list.w--open {
  z-index: -1;
  background-color: var(--black);
  border-top: 1px solid #ffffff3d;
  width: 100vw;
  max-width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
}

.navbar-dropdown4_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar-dropdown4_dropdown-content {
  width: 100%;
  display: flex;
}

.navbar-dropdown4_dropdown-content-left {
  grid-row-gap: 3rem;
  flex-flow: column;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 4rem;
  padding-bottom: 5rem;
  padding-left: 0;
  display: flex;
}

.navbar-dropdown4_dropdown-link-list {
  grid-column-gap: 0px;
  grid-row-gap: 1rem;
  grid-template-rows: max-content;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

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

.navbar-dropdown4_item-text {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.navbar-dropdown4_bottom-bar {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  position: relative;
}

.navbar-dropdown4_bottom-bar-background {
  background-color: var(
    --color-scheme-1--foreground\<deleted\|relume-variable-color-scheme-1-foreground\>
  );
  width: 200vw;
  position: absolute;
  inset: 0% -50vw;
}

.navbar-dropdown4_bottom-bar-left {
  grid-column-gap: 0.5rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: max-content minmax(max-content, 1fr);
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.navbar-dropdown4_bottom-bar-right {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  display: flex;
  position: relative;
}

.navbar7_icon-wrapper {
  flex: none;
}

.navbar7_item-right {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

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

.link-block-4 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  transition: color 0.333s;
  display: flex;
}

.link-block-4:hover {
  color: var(--grey-light);
}

.image-14 {
  width: 2.5rem;
  height: 2.5rem;
}

.div-block-111 {
  grid-column-gap: 0.75rem;
  grid-row-gap: 0.75rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-112 {
  width: 120%;
  height: 100px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.form-block {
  margin-bottom: 0;
}

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

.div-block-113 {
  grid-column-gap: 0.375rem;
  grid-row-gap: 0.375rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.text-field {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--grey-light);
  height: 3rem;
  color: var(--black);
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

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

.text-block-3 {
  color: var(--black);
  font-size: 0.75rem;
}

.div-block-114 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.success-message {
  background-color: #ddd0;
  padding: 0;
}

.section_article-hero {
  background-color: var(--white);
  color: var(--black);
}

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

.div-block-115 {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.link-2 {
  color: var(--grey-dark);
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.333s;
}

.link-2:hover,
.link-2.w--current {
  color: var(--black);
}

.image-15 {
  width: 1rem;
  height: 1rem;
}

.div-block-116 {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  justify-content: flex-start;
  align-items: center;
  width: 60rem;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.div-block-117 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.div-block-118 {
  background-color: var(--dark);
  border-radius: 100%;
  width: 0.375rem;
  height: 0.375rem;
}

.div-block-119 {
  grid-column-gap: 0.75rem;
  grid-row-gap: 0.75rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.image-16 {
  aspect-ratio: 1440 / 760;
  object-fit: cover;
  min-width: 100%;
}

.div-block-120 {
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

.section_article-2 {
  background-color: var(--white);
  color: var(--black);
}

.div-block-121 {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

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

.link-block-5 {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  display: flex;
}

.image-17 {
  aspect-ratio: 464 / 384;
  object-fit: cover;
}

.div-block-122 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-123 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-124 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 30rem;
  display: flex;
}

.div-block-125 {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.section_listing {
  background-image: url('../images/digital-world-banner-background-remixed-from-public-domain-by-nasa-1-2_1.avif');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-start;
  align-items: flex-end;
  height: 100vh;
  padding-bottom: 6rem;
  display: flex;
}

.div-block-2-copy {
  max-width: 42rem;
}

.section_listing-2 {
  background-color: var(--white);
  color: var(--black);
  padding-top: 3rem;
  padding-bottom: 7rem;
}

.tabs-2 {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
  overflow: visible;
}

.tabs-menu-3 {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1.5rem;
  display: flex;
}

.tabs-content {
  width: 100%;
  overflow: visible;
}

.div-block-126 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #0101013b;
  border-bottom: 0.0625rem solid #e1e1e1;
  grid-template-rows: auto;
  grid-template-columns: 4.625rem 1fr 1fr 1fr 1fr 10.75rem;
  grid-auto-columns: 1fr;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: grid;
}

.div-block-127 {
  border-bottom: 0.0625rem solid #e1e1e1;
  grid-template-rows: auto;
  grid-template-columns: 4.625rem 1fr 1fr 1fr 1fr 10.75rem;
  grid-auto-columns: 1fr;
  place-items: center start;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 0.125rem;
  font-size: 0.875rem;
  display: grid;
}

.image-18 {
  object-fit: cover;
  border-radius: 100%;
  width: 1.25rem;
  height: 1.25rem;
}

.div-block-128 {
  grid-column-gap: 0.75rem;
  grid-row-gap: 0.75rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.tab-link-tab-1 {
  grid-column-gap: 0.75rem;
  grid-row-gap: 0.75rem;
  color: var(--grey-dark);
  background-color: #ddd0;
  justify-content: center;
  align-items: center;
  padding: 0.25rem 1.25rem 0.25rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
}

.tab-link-tab-1.w--current {
  color: var(--black);
  background-color: #ddd0;
}

.tab-link-tab-1._2 {
  color: var(--grey-dark);
  padding-left: 1.25rem;
  padding-right: 0.75rem;
  transition: color 0.333s;
  position: relative;
}

.tab-link-tab-1._2.w--current {
  color: var(--black);
}

.code-embed-6 {
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.div-block-129 {
  background-color: var(--grey-light);
  width: 0.0625rem;
  height: 0.75rem;
  position: absolute;
  inset: auto auto auto 0%;
}

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

.div-block-131 {
  font-family:
    Crimson pro,
    Arial,
    sans-serif;
  font-size: 2rem;
  position: relative;
  bottom: -2.5rem;
  left: 0%;
  right: auto;
}

.tab-pane-tab-1 {
  overflow: visible;
}

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

.div-block-132 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  cursor: pointer;
  background-color: #f5f5f5;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1.5rem;
  display: flex;
  position: relative;
}

.div-block-133 {
  background-color: #e5e8ee;
  width: 100%;
  height: 0.0625rem;
}

.div-block-134 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-135 {
  grid-column-gap: 0.375rem;
  grid-row-gap: 0.375rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 2rem;
  line-height: 1.1;
  display: flex;
}

.text-font-crimson {
  font-family:
    Crimson pro,
    Arial,
    sans-serif;
}

.div-block-136 {
  grid-column-gap: 0.75rem;
  grid-row-gap: 0.75rem;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.div-block-137 {
  grid-column-gap: 0.375rem;
  grid-row-gap: 0.375rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-138 {
  grid-column-gap: 0.125rem;
  grid-row-gap: 0.125rem;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.div-block-139 {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.div-block-140 {
  height: 2rem;
  color: var(--black);
  cursor: pointer;
  border: 0.034375rem solid #010101;
  border-radius: 10rem;
  justify-content: center;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 500;
  transition: border-color 0.333s;
  display: flex;
  position: relative;
}

.div-block-140:hover {
  border-color: #0101014d;
}

.section_listing-3 {
  background-color: var(--white);
  color: var(--black);
  padding-top: 8.5rem;
  padding-bottom: 3rem;
  display: none;
}

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

.collection-list-wrapper-2 {
  display: none;
}

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

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

.button-3 {
  border: 1px solid
    var(
      --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>
    );
  background-color: var(
    --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>
  );
  color: var(--_primitives---colors--white\<deleted\|relume-variable-neutral-white\>);
  text-align: center;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
}

.modal1_component {
  z-index: 9999;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.modal1_close-button {
  width: 2rem;
  height: 2rem;
  transition: color 0.333s;
  position: absolute;
  top: 0;
  right: -2.625rem;
}

.modal1_close-button:hover {
  color: var(--grey-light);
}

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

.modal-content-replace-this-div {
  border: 2px dashed #0000001a;
  width: 100%;
  height: 150vh;
}

.modal1_content-wrapper {
  background-color: var(
    --_primitives---colors--white\<deleted\|relume-variable-neutral-white\>
  );
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 59.9375rem;
  height: 80vh;
  position: relative;
  overflow: visible;
}

.modal1_background-overlay {
  z-index: -1;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #010101cc;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.code-embed-7 {
  min-height: 100%;
  position: absolute;
  inset: 0%;
}

.section_contact {
  color: var(--black);
  padding-top: 14rem;
  padding-bottom: 5.5rem;
  position: relative;
  overflow: hidden;
}

.div-block-142 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-143 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 5rem;
  display: flex;
}

.div-block-144 {
  aspect-ratio: 572 / 482;
  border: 0.0625rem solid var(--grey-light);
  width: 100%;
  position: relative;
}

.div-block-145 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 28rem;
  display: flex;
}

.image-19 {
  object-fit: cover;
  object-position: 50% 100%;
  width: 50%;
  min-height: 100%;
  max-height: 100%;
  padding-top: 4.625rem;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.section_legal {
  color: var(--black);
  padding-top: 8.5rem;
  padding-bottom: 7rem;
}

.div-block-146 {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-147 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

.home-hero_presentation-embed {
  aspect-ratio: 3 / 2;
  border: 0.06rem solid #ffffff52;
  width: 42rem;
  margin-top: 1rem;
  margin-bottom: 1.75rem;
  display: flex;
}

.div-block-149 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.section_firm-1 {
  background-image: url('../images/image-4_1.avif');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-start;
  align-items: flex-end;
  height: 100vh;
  padding-bottom: 6rem;
  display: flex;
}

.section_firm-3 {
  background-color: var(--white);
  color: var(--black);
}

.div-block-150 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.div-block-151 {
  border-bottom: 0.0625rem solid var(--grey-light);
  padding-bottom: 1rem;
}

.div-block-152 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  width: 37rem;
  max-width: 37rem;
  display: flex;
}

.div-block-153 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-154 {
  max-width: 12rem;
}

.div-block-155 {
  flex: 1;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.div-block-156 {
  flex-flow: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  display: flex;
}

.div-block-157 {
  max-width: 25.875rem;
}

.image-20 {
  width: 26rem;
  height: 26rem;
}

.div-block-158 {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.div-block-159 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 31.5rem;
  display: flex;
}

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

.div-block-161 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.div-block-162 {
  grid-column-gap: 0.625rem;
  grid-row-gap: 0.625rem;
  background-color: var(--white);
  width: 6.5rem;
  color: var(--black);
  text-transform: uppercase;
  border-radius: 100rem;
  justify-content: flex-end;
  align-items: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-right: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
}

.div-block-163 {
  background-color: var(--black);
  border-radius: 100rem;
  width: 0.375rem;
  height: 0.375rem;
}

.div-block-164 {
  background-color: var(--dark);
  width: 0.0625rem;
  height: 6.375rem;
}

.div-block-165 {
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: center;
  min-width: 7.5rem;
  display: flex;
}

.div-block-166 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.section_firm-5 {
  background-color: var(--white);
  color: var(--black);
}

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

.div-block-168 {
  max-width: 37rem;
}

.div-block-169 {
  max-width: 16.375rem;
  position: sticky;
  top: 6rem;
}

.section_career-1 {
  background-image: url('../images/image-4_1.avif');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  padding-bottom: 0;
  display: flex;
}

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

.div-block-171 {
  flex-flow: column;
  flex: none;
  width: 26.125rem;
  height: 21.75rem;
  display: flex;
}

.div-block-172 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--white);
  color: var(--black);
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1.5rem;
  display: flex;
}

.div-block-172._2 {
  border-top: 0.0625rem solid var(--grey-light);
  flex: 0 auto;
}

.div-block-173 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 18.375rem;
  display: flex;
}

.div-block-174 {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-175 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 53.75rem;
  display: flex;
}

.list-item {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
}

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

.div-block-176 {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-177 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.div-block-178 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 53.75rem;
  display: flex;
}

.div-block-179 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.div-block-180 {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.button-4 {
  border: 1px solid
    var(
      --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>
    );
  background-color: var(
    --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>
  );
  color: var(--_primitives---colors--white\<deleted\|relume-variable-neutral-white\>);
  text-align: center;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
}

.button-4.is-secondary {
  background-color: var(
    --_primitives---opacity--transparent\<deleted\|relume-variable-transparent\>
  );
  color: var(
    --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>
  );
}

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

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

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

.faq6_list-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: start stretch;
  width: 100%;
  display: grid;
}

.faq6_accordion {
  border-bottom: 1px solid var(--grey-dark);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  overflow: hidden;
}

.section_faq6 {
  background-color: var(
    --color-scheme-1--background\<deleted\|relume-variable-color-scheme-1-background\>
  );
  color: var(--color-scheme-1--text\<deleted\|relume-variable-color-scheme-1-text\>);
}

.faq6_icon-wrapper {
  background-color: var(--dark);
  width: 3rem;
  height: 3rem;
  color: var(--white);
  border-radius: 100rem;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  display: flex;
}

.faq6_question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 2.625rem 1.5rem 2.625rem 2rem;
  transition: background-color 0.333s;
  display: flex;
}

.faq6_question:hover {
  background-color: var(--white);
  color: var(--black);
}

.faq6_answer {
  padding-left: 2rem;
  padding-right: 5rem;
  overflow: hidden;
}

.div-block-181 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

._34324 {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.list-2 {
  margin-top: 0;
  margin-bottom: 0;
}

.list-item-2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.section_career-4 {
  overflow: hidden;
}

.div-block-182 {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

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

.div-block-184 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  display: flex;
}

.div-block-185 {
  border-right: 0.0625rem solid #fff3;
  flex-flow: column;
  flex: none;
  justify-content: space-between;
  align-items: flex-start;
  width: 16.875rem;
  height: 23.25rem;
  padding: 1.5rem;
  transition: background-color 0.333s;
  display: flex;
}

.div-block-185:hover {
  background-color: var(--white);
  color: var(--black);
}

.div-block-162-copy {
  grid-column-gap: 0.625rem;
  grid-row-gap: 0.625rem;
  width: auto;
  color: var(--black);
  text-transform: uppercase;
  background-color: #ebebeb;
  border-radius: 100rem;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
}

.div-block-186 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-187 {
  overflow: hidden;
}

.sectin_career-5 {
  background-color: var(--white);
  color: var(--black);
}

.div-block-188 {
  grid-column-gap: 3.375rem;
  grid-row-gap: 3.375rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-189 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 53.75rem;
  display: flex;
}

.div-block-190 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.div-block-191 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.div-block-192 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: #f5f5f5;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 1.5rem;
  display: flex;
}

.div-block-193 {
  grid-column-gap: 0.75rem;
  grid-row-gap: 0.75rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.section_valution-1 {
  background-image: url('../images/digital-world-banner-background-remixed-from-public-domain-by-nasa-1-4_1.avif');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-start;
  align-items: flex-end;
  height: 100vh;
  padding-bottom: 6rem;
  display: flex;
}

.div-block-194 {
  max-width: 28rem;
}

.section_valution-4 {
  background-image: url('../images/digital-world-banner-background-remixed-from-public-domain-by-nasa-1-5_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.div-block-195 {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-196 {
  background-color: var(--white);
  flex-flow: column;
  width: 16rem;
  height: 20rem;
  display: none;
  position: absolute;
  inset: auto 1rem 2rem auto;
  box-shadow: 2px 8px 1.25rem #0003;
}

.div-block-196._2 {
  z-index: 9;
  inset: -13.1rem -5rem auto auto;
}

.image-21 {
  aspect-ratio: 256 / 120;
  object-fit: cover;
}

.div-block-197 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0.75rem 1rem 1rem;
  display: flex;
  overflow: scroll;
}

.div-block-198 {
  grid-column-gap: 0.375rem;
  grid-row-gap: 0.375rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-199 {
  background-color: var(--dark);
  opacity: 0.2;
  width: 0.0625rem;
  height: 1rem;
}

.div-block-200 {
  grid-column-gap: 0.25rem;
  grid-row-gap: 0.25rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.button-5 {
  border: 1px solid
    var(
      --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>
    );
  background-color: var(
    --_primitives---colors--neutral-darkest\<deleted\|relume-variable-neutral-shade-7\>
  );
  color: var(--_primitives---colors--white\<deleted\|relume-variable-neutral-white\>);
  text-align: center;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
}

.modal1_component-2 {
  z-index: 999;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.modal1_close-button-2 {
  width: 2rem;
  height: 2rem;
  color: var(--white);
  justify-content: center;
  align-items: center;
  transition: color 0.333s;
  display: flex;
  position: absolute;
  inset: 0% -2.625rem auto auto;
}

.modal1_close-button-2:hover {
  color: var(--grey-light);
}

.icon-embed-small-4 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3rem;
  display: flex;
}

.modal1_content-wrapper-2 {
  background-color: var(
    --_primitives---colors--white\<deleted\|relume-variable-neutral-white\>
  );
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 59.75rem;
  height: 32.5rem;
  max-height: 90vh;
  display: flex;
  position: relative;
  overflow: visible;
}

.modal1_background-overlay-2 {
  z-index: -1;
  background-color: #010101cc;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.image-22 {
  object-fit: cover;
  max-width: 21.25rem;
  min-height: 100%;
}

.div-block-201 {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  max-height: 100%;
  padding: 1.5rem;
  display: flex;
  overflow: scroll;
}

.div-block-202 {
  grid-column-gap: 0.25rem;
  grid-row-gap: 0.25rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-203 {
  background-color: var(--black);
  opacity: 0.2;
  width: 0.0625rem;
  height: 1rem;
}

.div-block-204 {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  display: flex;
}

.div-block-205 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-206 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.div-block-207 {
  overflow: visible;
}

.valuation_grid-4 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  display: grid;
}

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

.valuation_grid-item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  display: flex;
}

.valuation_step-number {
  color: #fff;
  background-color: #1a1a2e;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
}

.valuation_hero-center {
  grid-row-gap: 1.5rem;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

  h2 {
    font-size: 2.25rem;
    line-height: 1.1;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .hide-tablet {
    display: none;
  }

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

  .margin-large {
    margin: 2.5rem;
  }

  .margin-xlarge {
    margin: 3.5rem;
  }

  .margin-xxlarge {
    margin: 4.5rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-xxhuge {
    margin: 7.5rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .padding-xlarge {
    padding: 3.5rem;
  }

  .padding-xxlarge {
    padding: 4.5rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 7.5rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .rl-styleguide_item-row {
    grid-template-columns: auto 1fr;
  }

  .rl-styleguide_icons-list {
    grid-auto-flow: row;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .rl-styleguide_image {
    height: 100%;
    max-height: none;
  }

  .rl-styleguide_content {
    max-width: none;
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .rl-styleguide_image-wrapper {
    height: 640px;
  }

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

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

  .navbar11_container {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    border-bottom: 0.0625rem solid #f5f5f500;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .navbar11_menu {
    border-bottom: 1px solid
      var(--color-scheme-1--border\<deleted\|relume-variable-color-scheme-1-border\>);
    background-color: var(
      --color-scheme-1--background\<deleted\|relume-variable-color-scheme-1-background\>
    );
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    padding: 1rem 5% 2rem;
    position: absolute;
    overflow: auto;
  }

  .navbar11_menu.is-page-height-tablet {
    background-color: var(--black);
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    height: 100dvh;
    max-height: 100dvh;
    padding-top: 1.25rem;
    padding-bottom: 5rem;
    transition: height 0.5s;
  }

  .navbar11_menu-links {
    grid-column-gap: 0.75rem;
    grid-row-gap: 0.75rem;
    color: var(--white);
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    font-family:
      Crimson pro,
      Arial,
      sans-serif;
    font-size: 2.5rem;
    line-height: 1.2;
    display: flex;
  }

  .navbar11_link {
    width: 100%;
    color: var(--white);
    margin-left: 0;
    margin-right: 0;
    padding: 0.75rem 0;
    font-size: 2.5rem;
  }

  .navbar11_menu-dropdown {
    width: 100%;
    font-size: 2.5rem;
  }

  .navbar11_dropdown-toggle {
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 2.5rem;
    display: flex;
  }

  .dropdown-chevron {
    width: 2rem;
    height: 2rem;
    inset: auto 0% auto auto;
  }

  .navbar11_dropdown-list {
    position: static;
    overflow: hidden;
  }

  .navbar11_dropdown-list.w--open {
    background-color: #ddd0;
    width: auto;
    padding: 0;
  }

  .navbar11_dropdown-link-list {
    grid-column-gap: 0.5rem;
    grid-row-gap: 0.5rem;
    padding-left: 2rem;
  }

  .navbar11_dropdown-link.is-1 {
    border-bottom-style: none;
  }

  .navbar11_menu-buttons {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-left: 0;
  }

  .navbar11_menu-button.w--open {
    background-color: var(
      --_primitives---opacity--transparent\<deleted\|relume-variable-transparent\>
    );
  }

  .menu-icon1 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon1_line-top {
    background-color: var(--white);
    width: 1.5rem;
    height: 0.0625rem;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon1_line-middle {
    background-color: var(--white);
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 0.0625rem;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon1_line-middle-inner {
    width: 0.25rem;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon1_line-bottom {
    background-color: var(--white);
    width: 1.5rem;
    height: 0.0625rem;
    padding-bottom: 0;
    padding-right: 0;
  }

  .section_home-1 {
    padding-bottom: 4rem;
  }

  .div-block-3 {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
  }

  .div-block-4 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .div-block-6 {
    max-width: 32rem;
  }

  .div-block-7 {
    grid-template-columns: 1fr 1fr;
  }

  .div-block-8 {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

  .scroll-highlight {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    font-size: 2rem;
  }

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

  .div-block-11 {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
  }

  .div-block-12 {
    padding-bottom: 2rem;
  }

  .div-block-15 {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
  }

  .paragraph-4 {
    font-size: 2.5rem;
  }

  .div-block-36 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .footer2_top-wrapper {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .footer2_left-wrapper {
    grid-column-gap: 3.625rem;
    grid-row-gap: 3rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

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

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

  .scroll-highlight-copy {
    font-size: 2rem;
  }

  .scroll-highlight-copy p {
    margin-bottom: 2rem;
  }

  .div-block-42 {
    flex: 1;
    justify-content: center;
    align-items: flex-end;
    display: flex;
    position: relative;
    inset: auto 0% 0%;
  }

  .link-block-3 {
    color: var(--dark);
  }

  .section_lp-hero {
    padding-bottom: 4rem;
  }

  .section_lp-2 {
    padding-top: 5rem;
  }

  .div-block-50 {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
  }

  .div-block-51 {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .div-block-53 {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

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

  .timeline9_item {
    grid-template-columns: 1fr 10rem 1fr;
  }

  .image-8 {
    width: 8rem;
    height: 8rem;
  }

  .div-block-59._2 {
    margin-bottom: -2.25rem;
    top: 1rem;
  }

  .section_lp-4 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .section_lp-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .div-block-66 {
    grid-template-columns: 1fr 1fr;
  }

  .div-block-67 {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

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

  .div-block-70 {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
  }

  .div-block-75.tab {
    position: relative;
    top: auto;
    left: auto;
  }

  .div-block-76 {
    display: none;
  }

  .div-block-76.tab {
    pointer-events: auto;
    flex: 1;
    min-width: 100%;
    max-width: 100%;
    display: flex;
  }

  .div-block-77 {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

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

  .div-block-84 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

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

  .section_lp-9 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .section_lp-10 {
    padding-bottom: 6rem;
  }

  .div-block-103 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
  }

  .section_faq-1 {
    padding-bottom: 4rem;
  }

  .tabs {
    grid-template-columns: 0.5fr 1fr;
  }

  .navbar-dropdown4_component {
    width: 100%;
  }

  .navbar-dropdown4_dropdown-toggle {
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1.125rem;
    display: flex;
  }

  .navbar-dropdown4_dropdown-list {
    position: relative;
    overflow: hidden;
  }

  .navbar-dropdown4_dropdown-list.w--open {
    border-style: none;
    align-items: flex-start;
    padding: 0 0 0;
    position: relative;
    top: 0;
  }

  .navbar-dropdown4_dropdown-content {
    flex-direction: column;
  }

  .navbar-dropdown4_dropdown-content-left {
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
    align-content: start;
    align-items: start;
    padding: 2rem 0;
  }

  .navbar-dropdown4_bottom-bar {
    flex-direction: column;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }

  .navbar-dropdown4_bottom-bar-left {
    margin-bottom: 1rem;
  }

  .div-block-110 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .div-block-112 {
    display: none;
  }

  .section_listing {
    padding-bottom: 4rem;
  }

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

  .modal1_content-wrapper {
    width: 90%;
    max-width: none;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .section_contact {
    padding-top: 10rem;
    padding-bottom: 4rem;
  }

  .div-block-142 {
    grid-template-columns: 1fr;
  }

  .div-block-143 {
    padding-left: 0;
  }

  .image-19 {
    display: none;
  }

  .section_firm-1 {
    padding-bottom: 4rem;
  }

  .div-block-150 {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
  }

  .div-block-156 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .image-20 {
    width: auto;
    height: auto;
  }

  .div-block-164 {
    height: 6rem;
  }

  .div-block-167 {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    flex-flow: column;
    position: relative;
  }

  .div-block-168 {
    max-width: 100%;
  }

  .div-block-169 {
    position: relative;
    top: 0;
  }

  .section_career-1 {
    height: auto;
    min-height: 100vh;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .div-block-170 {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .div-block-171 {
    height: 18rem;
  }

  .div-block-174 {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .div-block-177 {
    flex-flow: column;
  }

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

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

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

  ._34324 {
    padding-bottom: 1rem;
  }

  .list-item-2 {
    font-size: 1.25rem;
  }

  .div-block-184 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .div-block-185 {
    width: 100%;
    height: 21rem;
    color: var(--black);
    background-color: #f5f5f5;
    padding-bottom: 1.5rem;
  }

  .div-block-188 {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .div-block-191 {
    grid-template-columns: 1fr 1fr;
  }

  .section_valution-1 {
    padding-bottom: 4rem;
  }

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

  .modal1_content-wrapper-2 {
    width: 90%;
    max-width: none;
    height: auto;
  }

  .image-22 {
    align-self: stretch;
  }

  .valuation_grid-4 {
    grid-template-columns: 1fr 1fr;
  }

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

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

  h2,
  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

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

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

  .margin-xsmall {
    margin: 0.75rem;
  }

  .margin-small {
    margin: 1.25rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-large {
    margin: 2rem;
  }

  .margin-xlarge {
    margin: 2.5rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-xxhuge {
    margin: 5rem;
  }

  .padding-xsmall {
    padding: 0.75rem;
  }

  .padding-small {
    padding: 1.25rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-large {
    padding: 2rem;
  }

  .padding-xlarge {
    padding: 2.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 5rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .text-size-medium.text-weight-medium.mob-text-12 {
    font-size: 0.75rem;
  }

  .text-size-medium.text-weight-medium.mob-text-16 {
    font-size: 1rem;
  }

  .text-style-quote {
    font-size: 1.125rem;
  }

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

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

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

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

  .button.is-purple {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
  }

  .heading-style-h4 {
    font-size: 1.25rem;
    line-height: 1.4;
  }

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

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

  .text-rich-text h1 {
    font-size: 2rem;
  }

  .text-rich-text h2 {
    font-size: 1.75rem;
  }

  .text-rich-text h3 {
    font-size: 1.5rem;
  }

  .text-rich-text h4 {
    font-size: 1.375rem;
  }

  .text-rich-text p {
    font-size: 1rem;
  }

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

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

  .padding-global.mob-0 {
    padding-left: 0%;
    padding-right: 0%;
  }

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

  .spacer-xsmall {
    padding-top: 0.75rem;
  }

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

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

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

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

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

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

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

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

  .rl-styleguide_component {
    padding-top: 4rem;
  }

  .rl-styleguide_content {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .category-filter-menu {
    width: 100vw;
    margin-left: -5vw;
    padding-left: 5vw;
    overflow: scroll;
  }

  .navbar11_component {
    min-height: 4rem;
  }

  .navbar11_container {
    border-bottom-style: none;
  }

  .navbar11_menu.is-page-height-tablet {
    padding: 0 0% 6rem;
  }

  .navbar11_menu-links {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    font-family: Inter, Arial, sans-serif;
    font-size: 0.875rem;
  }

  .navbar11_link {
    border-top: 0.0625rem solid #424344;
    padding: 1.125rem 5%;
  }

  .navbar11_link.is-last {
    border-bottom: 0.0625rem solid #424344;
  }

  .dropdown-chevron {
    width: 1rem;
    height: 1rem;
  }

  .navbar11_dropdown-link-list {
    grid-row-gap: 0.5rem;
    max-width: none;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .navbar11_dropdown-link {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .section_home-1 {
    height: auto;
    padding-top: 12.5rem;
  }

  .div-block-7 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    display: flex;
  }

  .div-block-8 {
    grid-column-gap: 4.25rem;
    grid-row-gap: 4.25rem;
    border-top: 0.0625rem solid #fff3;
    border-left-style: none;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 0;
  }

  .paragraph-2 {
    font-size: 2.5rem;
  }

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

  .div-block-10 {
    flex-flow: column;
    display: flex;
  }

  .div-block-12 {
    padding-bottom: 5rem;
  }

  .div-block-15 {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .div-block-16 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

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

  .div-block-18 {
    flex-flow: column;
    display: flex;
  }

  .div-block-25 {
    width: 100%;
    height: 0.0625rem;
  }

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

  .div-block-31 {
    width: 100%;
    height: 0.0625rem;
    min-height: auto;
  }

  .div-block-33 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .div-block-34 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .div-block-36 {
    flex-flow: column;
    display: flex;
  }

  .footer2_top-wrapper {
    grid-row-gap: 3rem;
  }

  .footer2_left-wrapper {
    grid-column-gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
  }

  .footer2_bottom-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .footer2_legal-list {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    grid-auto-flow: row;
  }

  .footer2_credit-text {
    margin-top: 1rem;
  }

  .section_lp-hero {
    height: auto;
    padding-top: 3.5rem;
    padding-bottom: 2.25rem;
  }

  .lp_nav {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .image-4 {
    height: 1.5rem;
  }

  .heading {
    max-width: 15rem;
    margin-bottom: 1.25rem;
    font-size: 2.25rem;
  }

  .div-block-44 {
    max-width: 19.375rem;
    margin-bottom: 1.25rem;
  }

  .div-block-45 {
    max-width: 19rem;
    font-size: 0.75rem;
  }

  .image-5 {
    aspect-ratio: 326 / 184;
    object-fit: cover;
    min-width: 100%;
    height: auto;
  }

  .div-block-46 {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 0.625rem;
  }

  .div-block-48 {
    max-width: 26rem;
    display: none;
  }

  .div-block-48.mob {
    max-width: 19.5rem;
    margin-bottom: 1.875rem;
    display: block;
  }

  .div-block-49 {
    margin-bottom: 1.25rem;
  }

  .section_lp-2 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .div-block-50 {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .div-block-51 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .div-block-52 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .div-block-53 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .div-block-54 {
    grid-column-gap: 0.75rem;
    grid-row-gap: 0.75rem;
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .section_lp-3 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .div-block-55 {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .timeline9_component,
  .timeline9_content {
    max-width: 100%;
  }

  .timeline9_progress {
    display: none;
  }

  .timeline9_list {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    width: 100%;
    max-width: 100%;
  }

  .timeline9_row {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    border-bottom: 0.0625rem solid #e1e1e1;
    flex-flow: column;
    grid-template-columns: max-content 1fr;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    display: flex;
  }

  .timeline9_empty-space {
    display: none;
  }

  .timeline9_circle-wrapper {
    display: none;
    left: 0;
  }

  .timeline9_circle {
    margin-top: 1.75rem;
  }

  .timeline9_item {
    grid-template-rows: auto auto;
    grid-template-columns: 4rem 1fr;
    width: 100%;
  }

  .timeline9_item.item-left {
    text-align: left;
    align-items: flex-start;
  }

  .image-8 {
    order: -1;
    width: 4rem;
    height: 4rem;
  }

  .div-block-57 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    justify-content: flex-start;
    align-items: center;
  }

  .div-block-58 {
    grid-column-gap: 0.75rem;
    grid-row-gap: 0.75rem;
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .section_lp-4 {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .div-block-61 {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

  .div-block-62 {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
  }

  .section_lp-5 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .div-block-64 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .div-block-66 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .div-block-67 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    text-align: center;
    border-bottom: 0.0625rem solid #fff3;
    border-left-style: none;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 1.5rem;
    padding-left: 0;
  }

  .div-block-68 {
    grid-column-gap: 0.75rem;
    grid-row-gap: 0.75rem;
    justify-content: flex-start;
    align-items: center;
  }

  .section_lp-6 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .div-block-70 {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .div-block-71 {
    grid-column-gap: 0.75rem;
    grid-row-gap: 0.75rem;
  }

  .div-block-73 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .image-10 {
    height: 21.4375rem;
  }

  .div-block-75 {
    top: 11.9rem;
    left: 0.05rem;
  }

  .div-block-75._2 {
    top: 0.4rem;
    left: -0.95rem;
  }

  .div-block-75._3 {
    top: 4.3rem;
    left: 10.9rem;
  }

  .div-block-75._4 {
    top: 7.85rem;
    left: 16.8rem;
  }

  .div-block-75._5 {
    top: 14.6rem;
  }

  .section_lp-7 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .div-block-77 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .div-block-78 {
    flex-flow: column;
    display: flex;
  }

  .section_lp-8 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .div-block-83 {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .div-block-84 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .div-block-84.is-1 {
    border-top-style: none;
    padding-top: 0;
  }

  .div-block-85 {
    grid-column-gap: 0.75rem;
    grid-row-gap: 0.75rem;
  }

  .section_lp-9 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .div-block-88 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    background-color: #f5f5f5;
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .div-block-89 {
    grid-column-gap: 0.75rem;
    grid-row-gap: 0.75rem;
  }

  .section_lp-10 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .div-block-93 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .faq4_question {
    padding: 0.75rem 0;
  }

  .faq4_icon-wrappper {
    width: 1.75rem;
  }

  .faq4_answer {
    padding-left: 0;
    padding-right: 0;
    font-size: 0.875rem;
  }

  .section_lp-11 {
    display: none;
  }

  .sectiom_lp-12 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .div-block-97 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .div-block-99 {
    grid-column-gap: 0.75rem;
    grid-row-gap: 0.75rem;
    flex-flow: wrap;
  }

  .div-block-103 {
    flex-flow: column;
    display: flex;
  }

  .mob-text-12 {
    font-size: 0.75rem;
  }

  ._2-5rem {
    font-size: 2.5rem;
  }

  .section_faq-1 {
    height: auto;
    padding-top: 12.5rem;
  }

  .div-block-108 {
    display: block;
  }

  .navbar-dropdown4_dropdown-toggle {
    border-top: 0.0625rem solid #424344;
    padding: 1.125rem 5%;
  }

  .navbar-dropdown4_dropdown-content-left {
    grid-row-gap: 1.5rem;
    border-top: 0.0625rem solid #424344;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .navbar-dropdown4_dropdown-link-list {
    grid-row-gap: 0.5rem;
    max-width: none;
  }

  .div-block-110 {
    padding-left: 5%;
    padding-right: 5%;
  }

  .div-block-111 {
    grid-column-gap: 0.375rem;
    grid-row-gap: 0.375rem;
  }

  .div-block-116 {
    flex-flow: wrap;
    max-width: 100%;
  }

  .section_listing {
    height: auto;
    padding-top: 12.5rem;
  }

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

  .div-block-131 {
    margin-bottom: 3rem;
    padding-left: 5%;
    padding-right: 5%;
    font-size: 2.5rem;
    bottom: 0;
  }

  .collection-list-2 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .collection-list-wrapper-2 {
    display: flex;
  }

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

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

  .modal1_component {
    align-items: flex-start;
  }

  .modal1_close-button {
    z-index: 999;
    color: var(--dark);
    top: 1rem;
    right: 1rem;
  }

  .modal1_content-wrapper {
    width: 100%;
    height: 100vh;
    max-height: none;
    padding-bottom: 7rem;
    padding-left: 5%;
    padding-right: 5%;
  }

  .section_firm-1 {
    height: auto;
    padding-top: 12.5rem;
  }

  .div-block-151 {
    max-width: 100%;
  }

  .div-block-152 {
    width: 100%;
    max-width: 100%;
  }

  .div-block-153 {
    max-width: 100%;
  }

  .div-block-156 {
    flex-flow: column;
    display: flex;
  }

  .section_career-1 {
    justify-content: flex-start;
    align-items: flex-end;
    height: auto;
    padding-top: 12.5rem;
  }

  .list-item {
    font-size: 1rem;
  }

  .div-block-180 {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

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

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

  .faq6_icon-wrapper {
    flex: none;
  }

  .faq6_question {
    padding: 1rem 1.25rem;
  }

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

  .div-block-182 {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .div-block-184 {
    flex-flow: column;
    display: flex;
  }

  .div-block-185 {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    height: auto;
  }

  .div-block-191 {
    flex-flow: column;
    display: flex;
  }

  .section_valution-1 {
    height: auto;
    padding-top: 12.5rem;
  }

  .section_valution-4 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .modal1_component-2 {
    justify-content: center;
    align-items: center;
  }

  .modal1_content-wrapper-2 {
    flex-flow: column;
    max-height: 90%;
  }

  .image-22 {
    aspect-ratio: 343 / 200;
    min-width: 100%;
    max-width: none;
  }

  .valuation_grid-4 {
    grid-template-columns: 1fr;
  }

  .valuation_hero-center {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .text-size-medium.text-weight-medium.mob-text-16,
  .text-size-medium.mob-text-16 {
    font-size: 1rem;
  }

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

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

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

  .rl-styleguide_component {
    grid-template-columns: 1fr;
  }

  .navbar11_logo {
    height: 1.5rem;
  }

  .navbar11_link.is-last {
    color: var(--white);
  }

  .navbar11_dropdown-link {
    padding-left: 0;
  }

  .menu-icon1 {
    width: 2rem;
    height: 2rem;
  }

  .div-block-12 {
    padding-top: 1rem;
  }

  .div-block-14 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .div-block-36 {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .image-3 {
    aspect-ratio: 343 / 384;
  }

  .footer2_top-wrapper {
    grid-row-gap: 48px;
  }

  .footer2_left-wrapper {
    grid-column-gap: 1.875rem;
    grid-row-gap: 1.875rem;
    margin-bottom: 2.5rem;
  }

  .footer2_logo {
    height: 1.5rem;
  }

  .footer2_form {
    grid-row-gap: 0.75rem;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .footer2_bottom-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 0;
  }

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

  .div-block-41 {
    max-width: none;
  }

  .section_lp-hero {
    padding-top: 3.25rem;
  }

  .section_lp-hero._2 {
    justify-content: center;
    align-items: flex-start;
    padding-top: 3rem;
  }

  .lp_nav {
    overflow: hidden;
  }

  .heading {
    margin-bottom: 1.125rem;
    line-height: 1;
  }

  .div-block-44 {
    margin-bottom: 1.125rem;
    line-height: 1.4;
  }

  .div-block-45 {
    line-height: 1.4;
  }

  .div-block-46 {
    max-width: 20.375rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .div-block-47 {
    justify-content: center;
    align-items: center;
    padding-top: 0;
  }

  .div-block-48.mob {
    margin-bottom: 1.75rem;
    line-height: 1.4;
  }

  .div-block-49 {
    margin-bottom: 1.125rem;
  }

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

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

  .timeline9_item {
    grid-template-columns: 3rem 1fr;
  }

  .section_lp-6 {
    overflow: hidden;
  }

  .div-block-75._4 {
    left: 15.1rem;
  }

  .div-block-88 {
    height: 36rem;
    padding-left: 5%;
    padding-right: 5%;
  }

  .div-block-104 {
    max-width: 16rem;
  }

  .div-block-105 {
    max-width: 18rem;
  }

  .section_newsletter {
    padding-top: 12.5rem;
    padding-bottom: 6.5rem;
  }

  .section_faq-1 {
    padding-top: 12.5rem;
    padding-bottom: 13.9375rem;
  }

  .tabs {
    flex-flow: column;
    display: flex;
  }

  .tabs-menu-2 {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    position: relative;
    top: 0;
  }

  .div-block-copy {
    max-width: 10rem;
  }

  .div-block-107 {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .div-block-108 {
    width: 100%;
    min-width: 100vw;
    margin-left: -5%;
    padding: 2.25rem 5%;
  }

  .div-block-109 {
    background-color: var(--white);
    height: 30.625rem;
    display: block;
  }

  .navbar-dropdown4_dropdown-content-left {
    grid-template-columns: 1fr;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

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

  .navbar-dropdown4_bottom-bar {
    align-items: flex-start;
  }

  .navbar-dropdown4_bottom-bar-left {
    grid-template-rows: auto auto;
    grid-template-columns: max-content;
  }

  .navbar-dropdown4_bottom-bar-right {
    flex-direction: column;
    width: 100%;
  }

  .image-16 {
    min-width: 100vw;
    margin-left: -5.5%;
  }

  .div-block-121 {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .collection-list {
    flex-flow: column;
    display: flex;
  }

  .section_listing-2 {
    padding-bottom: 3rem;
  }

  .tabs-2 {
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 0%;
    padding-right: 0%;
    position: static;
  }

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

  .tabs-content {
    position: static;
  }

  .div-block-126 {
    grid-template-columns: 3rem 1fr 1fr 1fr 1fr 4.625rem;
    place-items: center start;
  }

  .div-block-127 {
    grid-template-columns: 3rem 1fr 1fr 1fr 1fr 4.625rem;
  }

  .div-block-128 {
    grid-column-gap: 0.375rem;
    grid-row-gap: 0.375rem;
  }

  .div-block-130 {
    flex: none;
    width: 40rem;
    position: static;
    overflow: scroll;
  }

  .div-block-131 {
    padding-left: 5%;
    padding-right: 5%;
  }

  .tab-pane-tab-1 {
    position: static;
  }

  .collection-list-2 {
    flex-flow: column;
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
  }

  .div-block-135 {
    font-size: 1.5rem;
  }

  .div-block-140 {
    background-color: var(--dark);
    height: 3rem;
    color: var(--white);
  }

  .section_listing-3 {
    padding-top: 7.5rem;
    padding-bottom: 0;
    display: none;
  }

  .modal1_component {
    display: none;
  }

  .div-block-141 {
    justify-content: flex-start;
    align-items: center;
    min-width: 100vw;
    max-width: 100vw;
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
    position: static;
    overflow: auto;
    transform: translate(0);
  }

  .section_contact {
    padding-top: 8.5rem;
  }

  .div-block-144 {
    aspect-ratio: 343 / 800;
  }

  .section_legal {
    padding-top: 8.5rem;
    padding-bottom: 4rem;
  }

  .home-hero_presentation-embed {
    width: 100%;
    max-width: 100%;
    display: block;
  }

  .div-block-153 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 12rem;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .div-block-160 {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .div-block-161 {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .div-block-164 {
    display: none;
  }

  .div-block-165 {
    min-width: auto;
  }

  .section_career-1 {
    padding-top: 12.5rem;
  }

  .div-block-171 {
    width: 100%;
    height: 16rem;
  }

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

  .list-item-2 {
    font-size: 1.125rem;
  }

  .div-block-185 {
    height: 21.5rem;
  }

  .modal1_component-2 {
    display: flex;
  }
}

#w-node-_82940060-0010-95a8-98f3-1a5511b96907-2ee0f570 {
  justify-self: end;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86205-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86207-2ee0f573 {
  justify-self: center;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8621b-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8621c-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86220-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86221-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86225-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86226-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622a-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622b-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622f-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86230-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86234-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86235-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8623f-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86240-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86244-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86245-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86249-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624a-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624e-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624f-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86253-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86254-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86258-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86259-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86263-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86264-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86268-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86269-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8626d-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8626e-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86272-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86273-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8627c-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8627d-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86286-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86287-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86299-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629a-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629e-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629f-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a3-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a4-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a8-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a9-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ad-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ae-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862b8-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862b9-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862bd-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862be-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c2-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c3-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c7-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c8-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862cc-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862cd-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862d1-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862d2-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862dd-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862de-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e2-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e3-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e7-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e8-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ec-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ed-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f1-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f2-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f6-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f7-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862fb-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862fc-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86300-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86301-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86305-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86306-2ee0f573 {
  justify-self: start;
}

#w-node-aceb9adc-ab11-ae9c-832d-ba0cb63794ca-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-aceb9adc-ab11-ae9c-832d-ba0cb63794cb-2ee0f573 {
  justify-self: start;
}

#w-node-a01e4585-6913-dc47-ad7c-9500af9e534b-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a01e4585-6913-dc47-ad7c-9500af9e534c-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86310-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86311-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86315-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86316-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8631a-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8631b-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86322-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86323-2ee0f573 {
  justify-self: start;
}

#w-node-f850239f-5feb-931e-45b8-7b579b43a164-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc863dd-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc863de-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863df-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863e1-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc863e4-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc863e5-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863e6-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ea-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc863ed-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc863ee-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ef-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863f3-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc863f7-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863f8-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863fe-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc86402-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86403-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86407-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc8640a-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc8640f-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc86410-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86411-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86415-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc86418-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc86419-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8641a-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86420-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc86423-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc86424-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86425-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8642b-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc8642e-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc8642f-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86430-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86438-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc8643b-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc8643c-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8643d-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86449-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc8644a-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8644b-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8644f-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc86454-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc86455-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86456-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8645c-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc86461-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc86462-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86463-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86469-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc8646e-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc8646f-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86470-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86478-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc8647e-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8647f-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86485-2ee0f573,
#w-node-_3266fde1-3acf-73c3-0dbd-a11049606f17-2ee0f573,
#w-node-_3266fde1-3acf-73c3-0dbd-a11049606f18-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3266fde1-3acf-73c3-0dbd-a11049606f19-2ee0f573 {
  justify-self: start;
}

#w-node-_3266fde1-3acf-73c3-0dbd-a11049606f1d-2ee0f573,
#w-node-_3266fde1-3acf-73c3-0dbd-a11049606f22-2ee0f573,
#w-node-_3266fde1-3acf-73c3-0dbd-a11049606f23-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3266fde1-3acf-73c3-0dbd-a11049606f24-2ee0f573 {
  justify-self: start;
}

#w-node-_3266fde1-3acf-73c3-0dbd-a11049606f2a-2ee0f573,
#w-node-_3266fde1-3acf-73c3-0dbd-a11049606f2f-2ee0f573,
#w-node-_3266fde1-3acf-73c3-0dbd-a11049606f30-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3266fde1-3acf-73c3-0dbd-a11049606f31-2ee0f573 {
  justify-self: start;
}

#w-node-_3266fde1-3acf-73c3-0dbd-a11049606f37-2ee0f573,
#w-node-_3266fde1-3acf-73c3-0dbd-a11049606f3c-2ee0f573,
#w-node-_3266fde1-3acf-73c3-0dbd-a11049606f3d-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3266fde1-3acf-73c3-0dbd-a11049606f3e-2ee0f573 {
  justify-self: start;
}

#w-node-_3266fde1-3acf-73c3-0dbd-a11049606f46-2ee0f573,
#w-node-_3266fde1-3acf-73c3-0dbd-a11049606f4c-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3266fde1-3acf-73c3-0dbd-a11049606f4d-2ee0f573 {
  justify-self: start;
}

#w-node-_3266fde1-3acf-73c3-0dbd-a11049606f53-2ee0f573,
#w-node-d37b2579-9d18-04c9-4090-52481ef792d1-2ee0f573,
#w-node-d37b2579-9d18-04c9-4090-52481ef792d2-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d37b2579-9d18-04c9-4090-52481ef792d3-2ee0f573 {
  justify-self: start;
}

#w-node-d37b2579-9d18-04c9-4090-52481ef792dc-2ee0f573,
#w-node-d37b2579-9d18-04c9-4090-52481ef792dd-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d37b2579-9d18-04c9-4090-52481ef792de-2ee0f573 {
  justify-self: start;
}

#w-node-d37b2579-9d18-04c9-4090-52481ef792e7-2ee0f573,
#w-node-d37b2579-9d18-04c9-4090-52481ef792e8-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d37b2579-9d18-04c9-4090-52481ef792e9-2ee0f573 {
  justify-self: start;
}

#w-node-_4a155e2a-eb56-5e64-2ca9-d86b21d2d284-2ee0f573,
#w-node-_4a155e2a-eb56-5e64-2ca9-d86b21d2d285-2ee0f573,
#w-node-a9020bef-146e-1178-2cc2-7b5aa4506421-2ee0f573,
#w-node-a9020bef-146e-1178-2cc2-7b5aa4506422-2ee0f573,
#w-node-_0c03b128-114e-b839-dd05-3a93ee2fd443-2ee0f573,
#w-node-_0c03b128-114e-b839-dd05-3a93ee2fd444-2ee0f573,
#w-node-_0c03b128-114e-b839-dd05-3a93ee2fd44a-2ee0f573,
#w-node-_0c03b128-114e-b839-dd05-3a93ee2fd44b-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc8648f-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc86490-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc86491-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86492-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86494-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc86497-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc8649b-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc8649c-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc8649d-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc864a6-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc864a7-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc864a8-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc864b1-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc864b2-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc864b3-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864b4-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864ba-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc864bb-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc864bc-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864bd-2ee0f573 {
  justify-self: start;
}

#w-node-da163454-3d7f-a6d2-8037-3b46b9c50abd-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc864c3-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc864c4-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc864c5-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864c6-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc864c8-2ee0f573 {
  justify-self: start;
}

#w-node-efe47a2c-71a3-58fc-52e2-5719cef52200-2ee0f573,
#w-node-_4992825b-ed2c-cb01-ffba-02b107e55803-2ee0f573,
#w-node-_4992825b-ed2c-cb01-ffba-02b107e55804-2ee0f573,
#w-node-_4992825b-ed2c-cb01-ffba-02b107e55805-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4992825b-ed2c-cb01-ffba-02b107e55806-2ee0f573 {
  justify-self: start;
}

#w-node-_4992825b-ed2c-cb01-ffba-02b107e55808-2ee0f573,
#w-node-_4992825b-ed2c-cb01-ffba-02b107e5580b-2ee0f573,
#w-node-_4992825b-ed2c-cb01-ffba-02b107e5580f-2ee0f573,
#w-node-_4992825b-ed2c-cb01-ffba-02b107e55810-2ee0f573,
#w-node-_4992825b-ed2c-cb01-ffba-02b107e55811-2ee0f573,
#w-node-_4992825b-ed2c-cb01-ffba-02b107e5581a-2ee0f573,
#w-node-_4992825b-ed2c-cb01-ffba-02b107e5581b-2ee0f573,
#w-node-_4992825b-ed2c-cb01-ffba-02b107e5581c-2ee0f573,
#w-node-_4992825b-ed2c-cb01-ffba-02b107e55825-2ee0f573,
#w-node-_4992825b-ed2c-cb01-ffba-02b107e55826-2ee0f573,
#w-node-_4992825b-ed2c-cb01-ffba-02b107e55827-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4992825b-ed2c-cb01-ffba-02b107e55828-2ee0f573 {
  justify-self: start;
}

#w-node-_4992825b-ed2c-cb01-ffba-02b107e5582e-2ee0f573,
#w-node-_4992825b-ed2c-cb01-ffba-02b107e5582f-2ee0f573,
#w-node-_4992825b-ed2c-cb01-ffba-02b107e55830-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4992825b-ed2c-cb01-ffba-02b107e55831-2ee0f573 {
  justify-self: start;
}

#w-node-_4992825b-ed2c-cb01-ffba-02b107e55833-2ee0f573,
#w-node-_4992825b-ed2c-cb01-ffba-02b107e55837-2ee0f573,
#w-node-_4992825b-ed2c-cb01-ffba-02b107e55838-2ee0f573,
#w-node-_4992825b-ed2c-cb01-ffba-02b107e55839-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4992825b-ed2c-cb01-ffba-02b107e5583a-2ee0f573,
#w-node-_4992825b-ed2c-cb01-ffba-02b107e5583c-2ee0f573 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ba-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc863bd-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc863be-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc863c1-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc863c2-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc863c5-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc863c6-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc863ca-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc863cd-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc863ce-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc863d1-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc863d2-2ee0f573,
#w-node-_336be75c-ab2b-838b-5642-972b6cc863d5-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369290-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369294-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369295-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369297-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369299-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929a-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929c-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929e-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929f-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a1-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a3-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a4-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a6-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a8-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a9-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ab-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ad-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ae-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b0-2ee0f573,
#w-node-_8ec19c33-ae2e-90c5-80bf-3c4e7d639cd4-2ee0f573,
#w-node-_450fae6e-ea6c-c71d-c007-cbe7f109d617-2ee0f573,
#w-node-dcc5fc80-562f-447f-055c-339db14678d8-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b2-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b3-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b5-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b6-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b8-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b9-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bb-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bc-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692be-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bf-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c1-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c2-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c4-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c5-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c7-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692cd-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d1-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d2-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d4-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d6-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d7-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d9-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692db-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692dc-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692de-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e0-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e1-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e3-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e5-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e6-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e8-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ea-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692eb-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ed-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ef-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f0-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f2-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f4-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f5-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f7-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f9-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fa-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fc-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fe-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ff-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369301-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369303-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369304-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369306-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936930b-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936930f-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369311-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369314-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369319-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936931e-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369323-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369328-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936932f-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369330-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369332-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369333-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369335-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369336-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369338-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369339-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933b-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933c-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933e-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933f-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369341-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369342-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369344-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369345-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369347-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369348-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934a-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934b-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934d-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934e-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369350-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369351-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369353-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369354-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369356-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369357-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369359-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935a-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935c-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935d-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935f-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369360-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369362-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369363-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369365-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369366-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369368-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369369-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936b-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936c-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936e-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936f-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369371-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369372-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369374-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369375-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369377-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369378-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937a-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937b-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937d-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937e-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369380-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369381-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369383-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369384-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369386-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369387-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936938c-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369390-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369392-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369395-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936939a-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936939f-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693a4-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693a9-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b0-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b1-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b3-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b4-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b6-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b7-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b9-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ba-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bc-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bd-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bf-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c0-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c2-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c3-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c5-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c6-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c8-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c9-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cb-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cc-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ce-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cf-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d1-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d2-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d4-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d5-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d7-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d8-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693da-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693db-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693dd-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693de-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e0-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e1-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e3-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e4-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e6-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e7-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e9-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ea-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ec-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ed-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ef-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f0-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f2-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f3-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f5-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f6-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f8-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f9-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fb-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fc-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fe-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ff-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369401-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369402-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369404-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369405-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369407-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369408-2ee0f573,
#w-node-aba73718-5f03-827e-9e0b-61449dc1d37c-2ee0f573,
#w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448f8-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448f9-2ee0f573 {
  justify-self: start;
}

#w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448fb-2ee0f573,
#w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448fc-2ee0f573,
#w-node-_16994295-7a31-57da-1001-8ec0ea846a1e-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_16994295-7a31-57da-1001-8ec0ea846a1f-2ee0f573 {
  justify-self: start;
}

#w-node-_16994295-7a31-57da-1001-8ec0ea846a21-2ee0f573,
#w-node-_16994295-7a31-57da-1001-8ec0ea846a22-2ee0f573,
#w-node-_8f691932-76bb-1979-3d19-a80adf0a25f2-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8f691932-76bb-1979-3d19-a80adf0a25f3-2ee0f573 {
  justify-self: start;
}

#w-node-_8f691932-76bb-1979-3d19-a80adf0a25f5-2ee0f573,
#w-node-_8f691932-76bb-1979-3d19-a80adf0a25f6-2ee0f573,
#w-node-f28919c2-e180-d075-d1c2-81b601b8a964-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f28919c2-e180-d075-d1c2-81b601b8a965-2ee0f573 {
  justify-self: start;
}

#w-node-f28919c2-e180-d075-d1c2-81b601b8a967-2ee0f573,
#w-node-f28919c2-e180-d075-d1c2-81b601b8a968-2ee0f573,
#w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b3-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b4-2ee0f573 {
  justify-self: start;
}

#w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b6-2ee0f573,
#w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b7-2ee0f573,
#w-node-ee961e8d-845a-edc3-3307-509470022457-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee961e8d-845a-edc3-3307-509470022458-2ee0f573 {
  justify-self: start;
}

#w-node-ee961e8d-845a-edc3-3307-50947002245a-2ee0f573,
#w-node-ee961e8d-845a-edc3-3307-50947002245b-2ee0f573,
#w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e1-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e2-2ee0f573 {
  justify-self: start;
}

#w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e4-2ee0f573,
#w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e5-2ee0f573,
#w-node-_626bd165-37fe-b21e-713f-accb16c57414-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_626bd165-37fe-b21e-713f-accb16c57415-2ee0f573 {
  justify-self: start;
}

#w-node-_626bd165-37fe-b21e-713f-accb16c57417-2ee0f573,
#w-node-_626bd165-37fe-b21e-713f-accb16c57418-2ee0f573,
#w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f40-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f41-2ee0f573 {
  justify-self: start;
}

#w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f43-2ee0f573,
#w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f44-2ee0f573,
#w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee5-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee6-2ee0f573 {
  justify-self: start;
}

#w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee8-2ee0f573,
#w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee9-2ee0f573,
#w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe33-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe34-2ee0f573 {
  justify-self: start;
}

#w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe36-2ee0f573,
#w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe37-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fa-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fe-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694ff-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369503-2ee0f573,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369505-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369506-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950a-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950b-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950f-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369510-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369514-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369515-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369519-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951a-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951e-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951f-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369523-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369524-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369528-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369529-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952d-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952e-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369532-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369533-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953a-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953b-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953f-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369540-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369544-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369545-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369549-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954a-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954e-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954f-2ee0f573 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369553-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369554-2ee0f573 {
  justify-self: start;
}

#w-node-de8106d9-b098-80e3-076c-80f3a0fa5e54-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-de8106d9-b098-80e3-076c-80f3a0fa5e55-2ee0f573 {
  justify-self: start;
}

#w-node-_680345d6-d141-aefc-5e81-01faad69a792-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_680345d6-d141-aefc-5e81-01faad69a793-2ee0f573 {
  justify-self: start;
}

#w-node-dc962921-5c74-5687-77a4-c1371012b297-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dc962921-5c74-5687-77a4-c1371012b298-2ee0f573 {
  justify-self: start;
}

#w-node-bbf5f4a2-0660-a8f8-7799-a71df583db57-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bbf5f4a2-0660-a8f8-7799-a71df583db58-2ee0f573 {
  justify-self: start;
}

#w-node-_723dac19-3a6b-8f5e-89ce-53b9006ba92c-2ee0f573 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_723dac19-3a6b-8f5e-89ce-53b9006ba92d-2ee0f573 {
  justify-self: start;
}

#w-node-_16412c03-96dc-1ead-0a45-2c5aa5122f64-ae1fcde2,
#w-node-acd88861-d4d8-3e5d-cc3b-d2b240141e21-ae1fcde2,
#w-node-_255e379c-e105-515a-5169-a797102225d2-ae1fcde2,
#w-node-_59c63844-e464-485a-220f-9ba938673d33-ae1fcde2 {
  place-self: center;
}

#w-node-da8afe29-c8ea-929c-7ee4-d66dd93018bf-4de06bb7 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_56ecbc72-1a4a-0957-b055-7a2e5c9da0de-675b5c31,
#w-node-b0b2111f-3248-979c-2727-0041bf0f99a8-675b5c31 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_40e3134c-7829-5a21-6560-24ed28446df0-65d81bbb {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_16412c03-96dc-1ead-0a45-2c5aa5122f64-2c387dbe,
#w-node-acd88861-d4d8-3e5d-cc3b-d2b240141e21-2c387dbe,
#w-node-_255e379c-e105-515a-5169-a797102225d2-2c387dbe,
#w-node-_59c63844-e464-485a-220f-9ba938673d33-2c387dbe {
  place-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_8afbbb4d-a497-7b7b-1902-cd5fde29f740-de29f73b {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_40e3134c-7829-5a21-6560-24ed28446df0-65d81bbb {
    grid-column-start: 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_8afbbb4d-a497-7b7b-1902-cd5fde29f740-de29f73b {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_8afbbb4d-a497-7b7b-1902-cd5fde29f77a-de29f73b {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-ad90224d-c543-1aba-48b1-3894501082c8-ae1fcde2,
  #w-node-ad90224d-c543-1aba-48b1-3894501082c8-2c387dbe {
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_8afbbb4d-a497-7b7b-1902-cd5fde29f740-de29f73b,
  #w-node-_8afbbb4d-a497-7b7b-1902-cd5fde29f768-de29f73b {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_1eb184b0-29b3-df0f-15a8-559cf09cf346-675b5c31 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9a898433-21a0-8483-477e-289e1c5b78b6-eb32812f {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_2f79df2f-a0c1-01fa-bf5b-888694608871-eb32812f {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-da1c9b74-c25f-6b14-281f-2cf7b7b4cb82-eb32812f {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-da1c9b74-c25f-6b14-281f-2cf7b7b4cb84-eb32812f {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_41119961-1e27-6267-2342-f59ee7df613c-eb32812f {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_41119961-1e27-6267-2342-f59ee7df613e-eb32812f {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-a9a4f98d-0d41-8c7f-074e-eaf300f50a04-eb32812f {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-a9a4f98d-0d41-8c7f-074e-eaf300f50a06-eb32812f {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-f185907c-7699-fc21-d11b-72fe8b0a8186-eb32812f {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-f185907c-7699-fc21-d11b-72fe8b0a8188-eb32812f {
    grid-area: 2 / 2 / 3 / 3;
  }
}

@font-face {
  font-family: 'Crimson pro';
  src: url('../fonts/CrimsonPro-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-500-normal.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-300-normal.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
