:root {
  --background-color--background-primary: var(--base-color-neutral--white);
  --text-color--text-primary: var(--base-color-brand--primary-blue);
  --base-color-brand--primary-blue: #2a3568;
  --link-color--link-primary: var(--base-color-neutral--black);
  --base-color-brand--primary-red: #e9465f;
  --border-color--border-primary: var(--base-color-neutral--black);
  --base-color-neutral--white: white;
  --base-color-brand--white: white;
  --base-color-neutral--black: black;
  --black-archive\<deleted\|variable-dccb7db6\>: black;
  --background-color--background-secondary: var(--base-color-neutral--neutral-lightest);
  --background-color--background-alternate: var(--base-color-neutral--black);
  --link-color--link-alternate: var(--base-color-neutral--white);
  --background-color--background-tertiary: var(--base-color-neutral--neutral-light);
  --text-color--text-alternate: var(--base-color-neutral--white);
  --background-color--background-success: var(--base-color-system--success-green-light);
  --text-color--text-success: var(--base-color-system--success-green);
  --background-color--background-error: var(--base-color-system--error-red-light);
  --text-color--text-error: var(--base-color-system--error-red);
  --background-color--background-blue-dard: #2a3568;
  --background-color--background-blue: #f1f7fa;
  --base-color-neutral--neutral-lightest: #eee;
  --base-color-neutral--neutral-lighter: #ccc;
  --base-color-brand--black: black;
  --base-color-brand--secondary-blue: #b9d6e7;
  --base-color-neutral--neutral-light: #aaa;
  --base-color-neutral--neutral: #666;
  --base-color-neutral--neutral-dark: #444;
  --base-color-neutral--neutral-darker: #222;
  --base-color-neutral--neutral-darkest: #111;
  --base-color-system--success-green: #027a48;
  --base-color-system--success-green-light: #ecfdf3;
  --base-color-system--error-red: #b42318;
  --base-color-system--error-red-light: #fef3f2;
  --border-color--border-secondary: var(--base-color-neutral--neutral-light);
  --border-color--border-alternate: var(--base-color-neutral--white);
  --link-color--link-secondary: var(--base-color-neutral--neutral-light);
  --text-color--text-secondary: var(--base-color-neutral--black);
}

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

.w-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(--background-color--background-primary);
  color: var(--text-color--text-primary);
  font-family: Inter, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
}

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

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

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
}

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

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

p {
  margin-bottom: 0;
}

a {
  color: var(--base-color-brand--primary-blue);
  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: .25rem;
  margin-bottom: .25rem;
  padding-left: .5rem;
}

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

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

blockquote {
  border-left: .1875rem solid var(--text-color--text-primary);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

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

figcaption {
  text-align: center;
  margin-top: .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 {
  color: var(--link-color--link-primary);
  text-decoration: underline;
}

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

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

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

.form-message-error {
  margin-top: .75rem;
  padding: .75rem;
}

.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: .5rem;
  margin-left: auto;
  margin-right: auto;
}

.main-wrapper {
  position: relative;
}

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

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

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

.margin-xxsmall {
  margin: .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: .25rem;
}

.padding-xxsmall {
  padding: .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-top.margin-features {
  margin-top: 2rem;
}

.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-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-xsmall {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

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

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

.text-style-quote {
  border-left: .1875rem solid var(--text-color--text-primary);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

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

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

.heading-style-h2.is-regular {
  font-weight: 400;
}

.rl-styleguide_callout-link-wrapper-colors {
  background-image: linear-gradient(135deg, #ff744826, #ff484826 50%, #6248ff26), linear-gradient(#fff, #fff);
  border-radius: .6875rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: .75rem 1rem;
  display: flex;
}

.rl-styleguide_heading {
  z-index: 4;
  color: var(--text-color--text-primary);
  margin-bottom: 1.5rem;
  padding: .25rem .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;
}

.icon-embed-medium.text-color-secondary {
  color: var(--base-color-brand--primary-red);
}

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

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

.heading-style-h5.is-blog_header {
  font-weight: 400;
}

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

.heading-style-h1 {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.form_checkbox-icon {
  border: 1px solid var(--border-color--border-primary);
  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: .5rem;
  transition: all .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-label {
  margin-bottom: 0;
}

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

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

.button {
  border: 1px solid var(--base-color-brand--primary-red);
  background-color: var(--base-color-brand--primary-red);
  color: var(--base-color-neutral--white);
  text-align: center;
  border-radius: 4px;
  padding: .75rem 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.button.is-link {
  color: var(--base-color-brand--primary-blue);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button.is-link.is-alternate {
  color: var(--base-color-neutral--white);
  background-color: #0000;
}

.button.is-link.is-icon {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  transition: all .2s cubic-bezier(.25, .46, .45, .94);
}

.button.is-link.is-icon:hover {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  color: #2a3568b3;
}

.button.is-link.header-link {
  color: var(--base-color-brand--white);
}

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

.button.is-secondary {
  border-color: var(--base-color-brand--primary-blue);
  background-color: var(--base-color-brand--primary-blue);
  color: var(--base-color-brand--white);
}

.button.is-secondary.is-alternate {
  color: var(--base-color-neutral--white);
  background-color: #0000;
}

.button.is-small {
  padding: .5rem 1.25rem;
  transition: transform .2s ease-in;
}

.button.is-small:hover {
  transform: scale(1.05);
  box-shadow: 4px 2px 5px #0003;
}

.button.is-small.is-icon-only {
  padding-left: .5rem;
  padding-right: .5rem;
}

.button.is-alternate {
  border-color: var(--base-color-neutral--white);
  background-color: var(--base-color-neutral--white);
  color: var(--base-color-neutral--black);
}

.button.is-tertiary {
  border-color: var(--base-color-brand--primary-blue);
  color: var(--base-color-brand--primary-blue);
  background-color: #0000;
}

.button.is-icon-only {
  padding-left: .75rem;
  padding-right: .75rem;
}

.button.is-secondary {
  color: var(--base-color-brand--white);
  border-color: var(--base-color-brand--primary-blue);
  background-color: #0000;
  background-color: var(--base-color-brand--primary-blue);
}

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

.heading-style-h4 {
  color: var(--base-color-brand--primary-blue);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.heading-style-h4.is-regular {
  font-weight: 400;
}

.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: #ebeffa;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block;
}

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

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

.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 {
  color: var(--base-color-brand--primary-blue);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

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

.form_input {
  border: 1px solid var(--base-color-neutral--black);
  background-color: var(--base-color-neutral--white);
  color: var(--text-color--text-primary);
  border-radius: 0;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form_input:focus {
  border-color: #000;
}

.form_input::placeholder {
  color: #0009;
}

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

.form_input.is-select-input {
  background-image: none;
}

.form_input.is-newsletter {
  border-color: var(--base-color-neutral--white);
  border-radius: 4px;
}

.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: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

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

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

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

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

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

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

.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(--black-archive\<deleted\|variable-dccb7db6\>);
}

.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.5rem;
  height: 1.5rem;
  display: flex;
}

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

.background-color-black {
  background-color: var(--base-color-neutral--black);
}

.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: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
}

.rl-styleguide_subheading {
  z-index: 3;
  background-color: var(--background-color--background-secondary);
  color: var(--text-color--text-primary);
  border-radius: .75rem;
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.form_radio-icon {
  border: 1px solid var(--border-color--border-primary);
  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: .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;
}

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

.rl-styleguide_callout-link_colors {
  background-color: #fff;
  background-image: linear-gradient(135deg, #ff7448, #ff4848 50%, #6248ff);
  border-radius: .75rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

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

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

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

.text-size-small.text-weight-semibold {
  display: none;
}

.text-size-small.text-weight-semibold.text-inline {
  font-weight: 400;
  display: inline;
}

.class-label-column {
  grid-column-gap: .75rem;
  grid-row-gap: .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: .25rem;
  grid-row-gap: .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, .text-rich-text h3, .text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

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

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

.text-rich-text figcaption {
  border-left: 2px solid var(--text-color--text-primary);
  text-align: left;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

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

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

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

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

.rl-styleguide_button-row {
  grid-column-gap: 1rem;
  display: flex;
}

.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: 3rem;
  padding-bottom: 3rem;
}

.rl-styleguide_empty-box {
  z-index: -1;
  background-color: var(--background-color--background-secondary);
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.rl-styleguide_spacing {
  border: 1px dashed var(--border-color--border-primary);
}

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

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

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

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

.spacer-xxsmall {
  width: 100%;
  padding-top: .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;
  background-color: var(--background-color--background-alternate);
  border-radius: .75rem;
  margin-top: 1rem;
  padding: .5rem;
  position: sticky;
  top: 1rem;
}

.rl-styleguide_nav-link {
  color: var(--link-color--link-alternate);
  border-radius: .25rem;
  padding: .5rem 1rem;
  text-decoration: none;
}

.rl-styleguide_nav-link.w--current {
  background-color: var(--background-color--background-primary);
  color: var(--link-color--link-primary);
}

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

.rl-styleguide_callout-heading-wrapper {
  font-size: 1.25rem;
  font-weight: 600;
}

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

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

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

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

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

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

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

.text-color-secondary {
  color: var(--base-color-brand--primary-red);
}

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

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

.rl-styleguide_ratio-bg {
  z-index: -1;
  background-color: var(--background-color--background-secondary);
  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 {
  padding: 0;
}

.form_message-success {
  background-color: var(--background-color--background-success);
  color: var(--text-color--text-success);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
  display: flex;
}

.form_message-error {
  background-color: var(--background-color--background-error);
  color: var(--text-color--text-error);
  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: #fff;
  background-color: #161616;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  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;
}

.navbar1_menu-button {
  padding: 0;
}

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

.dropdown-chevron {
  color: var(--text-color--text-primary);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

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

.navbar1_container {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.navbar1_dropdown-link {
  color: var(--background-color--background-blue-dard);
  text-transform: uppercase;
  padding: .5rem 1rem;
}

.navbar1_dropdown-link.w--current {
  color: var(--base-color-neutral--black);
}

.navbar1_dropdown-toggle {
  grid-column-gap: .5rem;
  color: var(--text-color--text-primary);
  text-transform: uppercase;
  align-items: center;
  padding: .5rem 1rem;
  display: flex;
}

.navbar1_component {
  border-bottom: 1px solid var(--border-color--border-primary);
  background-color: var(--background-color--background-primary);
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 5rem;
  padding-left: 3.75rem;
  padding-right: 3.75rem;
  display: flex;
  position: sticky;
  top: 0;
}

.navbar1_logo-link {
  padding-left: 0;
}

.navbar1_dropdown-list.w--open {
  border: 1px solid var(--border-color--border-primary);
  background-color: var(--background-color--background-primary);
  padding: .5rem;
}

.navbar1_link {
  color: var(--text-color--text-primary);
  text-transform: uppercase;
  padding: .5rem 1rem;
  transition: transform .2s cubic-bezier(.77, 0, .175, 1);
}

.navbar1_link:hover {
  color: var(--base-color-brand--primary-red);
  transform: scale(1.05);
}

.navbar1_link:active, .navbar1_link.w--current {
  color: var(--base-color-brand--primary-red);
}

.image-overlay-layer {
  z-index: 1;
  background-image: linear-gradient(270deg, #b9d6e780, #2a3568);
  position: absolute;
  inset: 0%;
}

.section_home_hero-header {
  position: relative;
}

.home_hero-header_background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.home_hero-header_content {
  justify-content: flex-start;
  align-items: center;
  min-height: 100svh;
  max-height: 60rem;
  display: flex;
}

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

.home_feature-1_item-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.home_feature-1_image {
  width: 100%;
  height: 100%;
}

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

.home_feature-2_image {
  width: 100%;
  height: 100%;
}

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

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

.text-weight-semibold.text-color-secondary {
  flex: 1;
}

.home_logo-list_logo {
  max-height: 5rem;
}

.home_logo-list_component {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.home_features-list-1_component {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.home_features-list-1_item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.home_features-list-1_image {
  border-radius: 50px;
  width: 100%;
  height: 100%;
}

.home_features-list-1_list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  display: grid;
}

.home_features-list-1_image-wrapper {
  width: 100%;
  position: relative;
}

.home_features-list-2_background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.home_features-list-2_background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.section_home_features-list-2 {
  position: relative;
}

.home_download-app_text-wrapper {
  text-decoration: none;
  transition: opacity .2s;
}

.home_download-app_text-wrapper:hover {
  opacity: .8;
}

.home_download-app_timeline-icon-wrapper {
  z-index: 1;
  margin-top: -1.5rem;
  padding: 1rem;
  position: relative;
}

.home_download-app_timeline-right {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.home_download-app_timeline-wrapper {
  position: relative;
}

.home_download-app_progress-bar {
  background-color: #e9465f;
  width: 2px;
  height: 100%;
}

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

.home_download-app_content-left {
  flex-flow: column;
  height: 100%;
  display: flex;
  position: relative;
}

.home_download-app_timeline-left {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  position: relative;
}

.home_download-app_timeline-step {
  grid-column-gap: 2.5rem;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
}

.home_download-app_progress-bar-wrapper {
  background-color: #00000026;
  width: 2px;
  height: 86%;
  position: absolute;
  top: 3%;
  left: 2.4375rem;
  right: auto;
}

.home_testimonial_rating-wrapper {
  display: flex;
}

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

.home_testimonial_client-info {
  margin-bottom: 1rem;
}

.home_testimonial_rating-icon {
  color: var(--base-color-brand--primary-red);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: .25rem;
  display: flex;
}

.home_testimonial_client-image-wrapper {
  margin-bottom: 1rem;
}

.home_testimonial_client-image {
  object-fit: cover;
  border-radius: 100%;
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
  min-height: 3.5rem;
}

.home_testimonial_client {
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.home_testimonial_logo {
  max-height: 3rem;
}

.home_testimonial_content {
  background-color: var(--background-color--background-blue);
  border-radius: 50px;
  flex-direction: column;
  align-items: flex-start;
  padding: 50px;
  display: flex;
}

.home_faq_answer {
  overflow: hidden;
}

.home_faq_accordion {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.section_home_faq {
  display: none;
}

.home_faq_question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border-top: 1px solid var(--base-color-brand--white);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
}

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

.home_faq_list {
  border-bottom: 1px solid var(--base-color-brand--white);
}

.home_faq_icon-wrapper {
  align-self: flex-start;
  width: 2rem;
  display: flex;
}

.footer7_legal-link {
  font-size: .875rem;
  text-decoration: underline;
}

.footer7_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: grid;
}

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

.footer7_logo-link {
  margin-bottom: 2rem;
  padding-left: 0;
}

.footer7_bottom-wrapper {
  justify-content: space-between;
  display: flex;
}

.footer7_link {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.footer7_link:hover {
  color: var(--base-color-brand--primary-red);
}

.line-divider {
  background-color: var(--border-color--border-primary);
  width: 100%;
  height: 1px;
}

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

.footer7_top-wrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.section_about-us_header {
  position: relative;
}

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

.about-us_header_background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.about-us_about_lightbox {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50%;
  display: none;
  position: relative;
}

.lightbox-play-icon {
  z-index: 2;
  color: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

.about-us_about_lightbox-image {
  object-fit: cover;
  width: 100%;
  max-height: 30rem;
}

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

.video-overlay-layer {
  z-index: 1;
  background-color: #00000080;
  position: absolute;
  inset: 0%;
}

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

.about-us_team_image {
  object-fit: cover;
  border-radius: 100%;
  width: 5rem;
  min-width: 5rem;
  height: 5rem;
  min-height: 5rem;
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.about-us_team_item {
  text-align: center;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.section_about-us_team {
  display: none;
  position: relative;
}

.about-us_team_social {
  grid-column-gap: .875rem;
  grid-row-gap: .875rem;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-self: center;
  margin-top: 1.5rem;
  display: grid;
}

.about-us_award-logos-list_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.section_about-us_award-logos-list {
  display: none;
}

.about-us_award-logos-list_list {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
}

.about-us_award-logos-list_wrapper {
  background-color: var(--base-color-neutral--neutral-lightest);
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: .875rem;
  display: flex;
}

.about-us_award-logos-list_logo {
  max-height: 3.5rem;
}

.about-us_partner-logos-list_logo {
  max-height: 5rem;
}

.about-us_partner-logos-list_component {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: flex;
}

.about-us_download-app_background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.about-us_download-app_background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.section_about-us_download-app {
  position: relative;
}

.blog_featured-blog-list-header_text-divider {
  margin-left: .5rem;
  margin-right: .5rem;
}

.blog_featured-blog-list-header_author-image {
  object-fit: cover;
  border-radius: 100%;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  min-height: 3rem;
}

.blog_featured-blog-list-header_category-link {
  margin-bottom: .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}

.blog_featured-blog-list-header_category-link.w--current {
  border-bottom: 2px solid var(--base-color-neutral--black);
}

.blog_featured-blog-list-header_image-wrapper {
  aspect-ratio: 4.8 / 4.25;
  border-radius: 60px;
  width: 100%;
  overflow: hidden;
}

.blog_featured-blog-list-header_image-wrapper.is-alternate {
  aspect-ratio: 4.8 / 2.8;
}

.blog_featured-blog-list-header_title-link {
  margin-bottom: .5rem;
  text-decoration: none;
  display: block;
}

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

.blog_featured-blog-list-header_featured-image-link {
  width: 100%;
}

.blog_featured-blog-list-header_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog_featured-blog-list-header_category-menu {
  align-items: center;
  width: 100%;
  margin-bottom: 4rem;
  display: flex;
}

.blog_featured-blog-list-header_category-menu.no-scrollbar {
  justify-content: center;
  align-items: center;
  display: none;
}

.blog_featured-blog-list-header_author-image-wrapper {
  margin-right: 1rem;
  display: none;
}

.blog_featured-blog-list-header_author-wrapper {
  align-items: center;
  margin-top: 1.5rem;
  display: flex;
}

.blog_featured-blog-list-header_menu-link {
  white-space: nowrap;
  border: 1px solid #0000;
  flex: none;
  padding: .5rem 1rem;
  text-decoration: none;
}

.blog_featured-blog-list-header_menu-link.w--current {
  border: 1px solid var(--border-color--border-primary);
}

.blog_featured-blog-list-header_featured-image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog_featured-blog-list-header_featured-item {
  grid-column-gap: 7.5rem;
  grid-row-gap: 7.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-bottom: 4rem;
  display: grid;
}

.blog_featured-blog-list-header_date-wrapper {
  align-items: center;
  display: flex;
}

.blog_featured-blog-list-header_featured-item-content {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.blog_featured-blog-list-header_featured-title-link {
  margin-bottom: 1rem;
  text-decoration: none;
  display: block;
}

.blog_featured-blog-list-header_item {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
}

.blog_featured-blog-list-header_image-link, .blog_list_image-link {
  width: 100%;
  margin-bottom: 1.5rem;
}

.blog_list_title-link {
  margin-bottom: .5rem;
  text-decoration: none;
  display: block;
}

.blog_list_image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

.blog_list_author-image {
  object-fit: cover;
  border-radius: 100%;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  min-height: 3rem;
}

.blog_list_button-row {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.blog_list_text-divider {
  margin-left: .5rem;
  margin-right: .5rem;
}

.blog_list_image-wrapper {
  width: 100%;
  overflow: hidden;
}

.blog_list_author-wrapper {
  align-items: center;
  margin-top: 1.5rem;
  display: flex;
}

.blog_list_author-image-wrapper {
  margin-right: 1rem;
}

.blog_list_component {
  flex-direction: column;
  align-items: center;
}

.blog_list_date-wrapper {
  align-items: center;
  display: flex;
}

.blog_list_category-link {
  margin-bottom: .5rem;
  margin-right: 1rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}

.blog_list_category-link.w--current {
  border-bottom: 2px solid var(--base-color-neutral--black);
}

.blog-post_header_date-wrapper {
  margin-top: .25rem;
  display: flex;
}

.blog-post_header_image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 40px;
  width: 100%;
  height: 100%;
}

.blog-post_header_category-link {
  border: 2px solid var(--base-color-brand--primary-blue);
  background-color: var(--base-color-neutral--neutral-lightest);
  border-radius: 4px;
  margin-right: 3rem;
  padding: .5rem .75rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  display: none;
}

.blog-post_header_category-link.w--current {
  border-bottom: 2px solid var(--base-color-neutral--black);
}

.blog-post_header_date {
  margin-left: .25rem;
  font-size: .875rem;
}

.blog-post_header_meta-wrapper {
  margin-bottom: 1.5rem;
}

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

.blog-post_header_image-wrapper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.blog-post_header_title-wrapper {
  flex-direction: column;
}

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

.blog-post_body_newsletter {
  border: 1px solid var(--border-color--border-primary);
  background-color: var(--base-color-brand--primary-blue);
  border-radius: 40px;
  padding: 2rem;
  position: sticky;
  top: 7rem;
}

.blog-post_body_form {
  margin-bottom: 0;
}

.blog-post_body_content {
  margin-bottom: 4rem;
}

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

.employers_feature-1_item-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: grid;
}

.employers_feature-1_image {
  width: 100%;
  height: 100%;
}

.employers_feature-1_item-icon-wrapper {
  flex: none;
  align-self: flex-start;
  margin-right: 1rem;
}

.employers_feature-1_item {
  display: flex;
}

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

.employers_feature-2_image {
  width: 100%;
  height: 100%;
}

.employers_feature-2_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.employers_features-list_list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  display: grid;
}

.employers_features-list_item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 40px;
  display: flex;
}

.employers_features-list_item.background-color-blue {
  border-radius: 50px;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}

.employers_features-list_component {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.employers_testimonial_rating-wrapper {
  display: flex;
}

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

.employers_testimonial_client-info {
  margin-bottom: 1rem;
}

.employers_testimonial_rating-icon {
  color: var(--base-color-neutral--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: .25rem;
  display: flex;
}

.employers_testimonial_client-image-wrapper {
  margin-bottom: 1rem;
}

.employers_testimonial_client-image {
  object-fit: cover;
  border-radius: 100%;
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
  min-height: 3.5rem;
}

.employers_testimonial_client {
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.employers_testimonial_logo {
  max-height: 3rem;
}

.employers_testimonial_content {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

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

.employers_faq_question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.employers_faq_accordion {
  border: 1px solid var(--border-color--border-primary);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.employers_faq_answer {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
}

.employers_faq_icon-wrappper {
  align-self: flex-start;
  width: 2rem;
  display: flex;
}

.employers_download-app_background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

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

.section_employers_download-app {
  position: relative;
}

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

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

.workers_feature-1_image, .workers_feature-2_image {
  width: 100%;
  height: 100%;
}

.workers_feature-2_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.workers_feature-2_item-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.workers_features-list_image {
  width: 100%;
  height: 100%;
}

.home4-features_image-wrapper {
  width: 100%;
  position: relative;
}

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

.workers_features-list_component {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.workers_features-list_item {
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.workers_testimonial_component {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.workers_testimonial_logo {
  max-height: 3rem;
}

.workers_testimonial_rating-wrapper {
  display: flex;
}

.workers_testimonial_rating-icon {
  color: var(--base-color-neutral--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: .25rem;
  display: flex;
}

.workers_testimonial_client {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  text-align: left;
  align-items: center;
  display: flex;
}

.workers_testimonial_divider {
  background-color: var(--base-color-neutral--black);
  align-self: stretch;
  width: 1px;
}

.workers_testimonial_client-image {
  object-fit: cover;
  border-radius: 100%;
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
  min-height: 3.5rem;
}

.workers_faq_question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border-top: 1px solid var(--border-color--border-primary);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
}

.workers_faq_accordion {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.workers_faq_answer {
  overflow: hidden;
}

.workers_faq_component {
  border-bottom: 1px solid var(--border-color--border-primary);
}

.workers_faq_icon-wrapper {
  align-self: flex-start;
  width: 2rem;
  display: flex;
}

.workers_download-app_background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

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

.section_workers_download-app {
  position: relative;
}

.the-h-app_feature-1_image {
  width: 100%;
  height: 100%;
}

.the-h-app_feature-1_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.the-h-app_feature-1_item-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.the-h-app_feature-2_image {
  width: 100%;
  height: 100%;
}

.the-h-app_feature-2_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.the-h-app_features-list_item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

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

.the-h-app_features-list_component {
  border-radius: 50px;
  flex-direction: column;
  align-items: flex-start;
  padding: 50px;
  display: flex;
}

.the-h-app_features-list_list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.the-h-app_how-it-works_image-wrapper {
  width: 100%;
  position: relative;
}

.the-h-app_how-it-works_image {
  width: 100%;
  height: 100%;
}

.the-h-app_how-it-works_list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  display: grid;
}

.the-h-app_how-it-works_component {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.the-h-app_how-it-works_item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.the-h-app_testimonial_client-image-wrapper {
  margin-bottom: 1rem;
}

.the-h-app_testimonial_component {
  background-color: #0000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-bottom: 4rem;
}

.the-h-app_testimonial_slide-nav {
  height: 1.75rem;
  font-size: .5rem;
}

.the-h-app_testimonial_logo {
  max-height: 3.5rem;
}

.the-h-app_testimonial_content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 48rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.the-h-app_testimonial_arrow-icon {
  color: var(--base-color-neutral--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.the-h-app_testimonial_client-image {
  object-fit: cover;
  border-radius: 100%;
  width: 4rem;
  min-width: 4rem;
  height: 4rem;
  min-height: 4rem;
}

.the-h-app_testimonial_slide {
  padding-left: 4rem;
  padding-right: 4rem;
}

.the-h-app_testimonial_arrow {
  border: 1px solid var(--border-color--border-primary);
  background-color: var(--base-color-neutral--white);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
}

.the-h-app_stats_item {
  border-left: 2px solid var(--base-color-neutral--black);
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-left: 2rem;
}

.the-h-app_stats_component {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.the-h-app_stats_content {
  grid-column-gap: 5.25rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  display: grid;
}

.the-h-app_stats_number {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.3;
}

.the-h-app_stats_list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  width: 100%;
  display: grid;
}

.the-h-app_download-app_background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.the-h-app_download-app_background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.section_the-h-app_download-app, .section_contact-us_header {
  position: relative;
}

.contact-us_header_background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

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

.contact-us_contact_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: block;
}

.contact-us_contact_contact-list {
  grid-column-gap: 1rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-us_contact_map {
  width: 100%;
  height: 100%;
}

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

.background-curve {
  border-radius: 20px;
}

.background-curve.background-color-blue {
  border-radius: 50px;
}

.background-curve.background-color-dark-blue {
  background-color: #2a3568;
}

.spacing-questions-div {
  padding: 79px 50px;
}

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

.signup-form-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  margin-bottom: 1rem;
  display: grid;
}

.cta8_form-block {
  max-width: 30rem;
  margin-bottom: 0;
}

.cta8_content {
  flex: 1;
}

.cta8_component {
  grid-column-gap: 5rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: start;
  display: grid;
}

.error-message {
  margin-top: 1.5rem;
  padding: .875rem 1rem;
}

.error-text {
  color: #e23939;
}

.success-message {
  background-color: var(--base-color-neutral--neutral-lightest);
  padding: 1.5rem;
}

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

.schedule-a-demo_locations_tabs-menu {
  grid-column-gap: 1rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.schedule-a-demo_locations_tab-pane {
  height: 100%;
}

.schedule-a-demo_locations_tabs-link {
  background-color: #0000;
  border-left: 2px solid #0000;
  padding: 0 0 0 2rem;
  display: block;
}

.schedule-a-demo_locations_tabs-link.w--current {
  opacity: 1;
  background-color: #0000;
  border-left-color: #000;
}

.schedule-a-demo_locations_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.schedule-a-demo_locations_map {
  width: 100%;
  height: 100%;
}

.schedule-a-demo_locations_map-wrapper {
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.form_checkbox-icon-2 {
  border: 1px solid var(--base-color-neutral--black);
  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: .5rem;
  transition: all .2s;
}

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

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

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

.form_radio-icon-2 {
  border: 1px solid var(--base-color-neutral--black);
  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: .5rem;
}

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

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

.schedule-a-demo_contact-form_component {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
}

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

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

.footer7_legal-link-2 {
  color: var(--link-color--link-primary);
  font-size: .875rem;
  text-decoration: underline;
}

.footer7_link-2 {
  color: var(--link-color--link-primary);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.schedule-a-demo_gallery_image {
  aspect-ratio: 16 / 9;
  vertical-align: middle;
  object-fit: cover;
  position: relative;
}

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

.schedule-a-demo_gallery_lightbox-link {
  width: 100%;
  height: 100%;
}

.schedule-a-demo_gallery_image-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.contact3_component {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
}

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

.form_checkbox-icon-3 {
  border: 1px solid var(--border-color--border-primary);
  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: .5rem;
  transition: all .2s;
}

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

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

.background-red-h2 {
  z-index: -1;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.image-2 {
  z-index: -1;
  position: absolute;
  inset: 0% 0% 0% 12%;
}

.h2-image-background {
  position: absolute;
  inset: 0%;
}

.text-wrap-balance {
  text-wrap: balance;
}

.hero_heading {
  font-size: 4.1875rem;
  font-weight: 400;
  line-height: 1.3;
}

.blog_post-latest-button {
  font-weight: 400;
}

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

.background_vector-wrapper {
  z-index: -1;
  width: 100%;
  position: absolute;
  inset: 12% 0% 0%;
}

.background_vector-wrapper.is_blog-left {
  width: 50%;
  inset: 8% auto 0% 0%;
}

.background_vector-wrapper.is_blog-right {
  width: 50%;
  inset: 25% 0% 0% auto;
}

.background_vector {
  width: 100%;
  height: auto;
}

.blog_catagory-title {
  font-weight: 300;
}

.fs-radio_field {
  border: 2px solid var(--base-color-brand--primary-blue);
  background-color: var(--base-color-neutral--neutral-lightest);
  color: var(--text-color--text-primary);
  cursor: pointer;
  border-radius: .25rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding: .5rem;
  font-weight: 500;
  display: flex;
  position: relative;
}

.fs-radio_field:hover {
  color: #696969;
  border-color: #696969;
}

.fs-radio_field.is-active {
  background-color: var(--base-color-brand--primary-blue);
  color: var(--base-color-brand--white);
  border-style: none;
  border-width: 0;
}

.fs-radio_button {
  border-style: none;
  border-radius: 0;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  display: block;
  position: absolute;
  inset: 0%;
  box-shadow: 1px 1px 3px #0000;
}

.fs-radio_button.w--redirected-focus {
  box-shadow: none;
  border-style: none;
}

.fs-radio_button.w--redirected-focus-visible {
  box-shadow: none;
  outline-offset: 4px;
  outline: 2px solid #9b9b9b;
}

.fs-radio_label {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
}

.form {
  justify-content: space-around;
  width: 100%;
  display: flex;
}

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

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

.footer1_logo-link {
  padding-left: 0;
}

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

.footer1_form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  margin-bottom: .75rem;
  display: grid;
}

.footer1_menu-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}

.footer1_link-list {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: flex-start start;
  display: flex;
}

.footer1_link {
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .875rem;
  text-decoration: none;
}

.footer1_social-link {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .875rem;
  text-decoration: none;
  display: flex;
}

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

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

.footer1_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: grid;
}

.footer1_legal-link {
  font-size: .875rem;
  text-decoration: underline;
}

.image-3 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.image-4 {
  vertical-align: middle;
}

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

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

.contact14_map {
  width: 100%;
  height: 100%;
}

.image-5 {
  max-height: 2.5rem;
}

.margin-icon {
  padding-right: .5rem;
}

.background-video {
  z-index: 1;
}

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

.layout294_item {
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.layout147_component {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.layout147_lightbox {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

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

.layout146_component {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.layout146_image {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.background-video-2 {
  z-index: 1;
  aspect-ratio: 16 / 9;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  box-shadow: 10px 10px 10px #0003;
}

.padding-tools {
  padding-bottom: 2rem;
}

.image-6 {
  object-fit: contain;
  min-width: 2rem;
  max-height: 2rem;
}

.background-video-3 {
  aspect-ratio: 4 / 8;
}

.margin-phone-background {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.social-icons1_list {
  grid-column-gap: .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: grid;
}

.social-icons1_link {
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.michamba_feature-1_content, .michamba_feature-2_content {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.michamba_feature-2_item-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.michamba_feature-2_item-icon-wrapper {
  display: inline-block;
}

.michamba_feature-3_content {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

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

.michamba_feature-3_item-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.michamba_feature-3_image {
  width: 100%;
  height: 100%;
}

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

.michamba_feature-4_item-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.michamba_feature-4_item-icon-wrapper {
  display: inline-block;
}

.michamba_feature-4_image {
  width: 100%;
  height: 100%;
}

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

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

.michamba_features-list_item {
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.michamba_features-list_image-wrapper {
  width: 100%;
  position: relative;
}

.michamba_features-list_image {
  width: 100%;
  height: 100%;
}

.michamba_testimonial_content {
  text-align: center;
}

.michamba_testimonial_logo {
  max-height: 3.5rem;
}

.michamba_testimonial_client-image {
  object-fit: cover;
  border-radius: 100%;
  width: 4rem;
  min-width: 4rem;
  height: 4rem;
  min-height: 4rem;
}

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

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

.fs-consent_component {
  display: block;
}

.fs-consent_banner {
  z-index: 9999;
  background-color: var(--base-color-brand--white);
  border: 1px solid #000;
  max-width: 45rem;
  padding: 2rem;
  display: block;
  position: fixed;
  inset: auto 0% 2rem auto;
}

.fs-consent_banner_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.fs-consent_banner_paragraph {
  margin-bottom: 0;
}

.fs-consent_banner_buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  display: flex;
}

.fs-consent_allow {
  background-color: var(--base-color-brand--primary-red);
  color: #fff;
  border-radius: 4px;
  padding: .5rem 1rem;
  font-weight: 700;
  text-decoration: none;
  display: block;
}

.fs-consent_prefs_submit {
  background-color: #000;
  padding: .5rem 1rem;
}

.fs-consent_prefs_buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.fs-consent_prefs_popup {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  height: 100%;
  padding: 2rem;
  display: flex;
  overflow: scroll;
}

.fs-consent_prefs_header {
  border-bottom: 1px solid #0003;
  padding-bottom: 1.5rem;
}

.fs-consent_prefs_heading {
  font-size: 1.25rem;
}

.fs-consent_prefs_close {
  color: #fff;
  cursor: pointer;
  background-color: #000;
  padding: .5rem;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.fs-consent_prefs_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.fs-consent_prefs_form-block {
  z-index: 2;
  margin-bottom: 0;
  position: relative;
}

.fs-consent_decline {
  color: #333;
  background-color: #ddd;
  padding: .5rem 1rem;
  text-decoration: none;
  display: block;
}

.fs-consent_prefs_wrapper {
  z-index: 997;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding: 2rem;
  display: flex;
  position: fixed;
  inset: 0%;
}

.fs-consent_prefs_overlay {
  z-index: 1;
  background-color: #0000001a;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fs-consent_prefs {
  z-index: 9997;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: none;
  position: fixed;
  inset: 0%;
}

.fs-consent_prefs_close-icon {
  width: 1rem;
  line-height: 0;
}

.fs-consent_prefs_form {
  background-color: #fff;
  width: 100%;
  max-width: 36.25rem;
  height: 100%;
  max-height: 70vh;
  margin-bottom: 0;
  position: relative;
}

.fs-consent_open-prefs {
  z-index: 9998;
  color: #333;
  -webkit-text-decoration: block;
  text-decoration: block;
  cursor: pointer;
  background-color: #ddd;
  display: block;
  position: fixed;
  inset: auto auto .75rem .75rem;
}

.fs-consent_open-prefs_wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  background-color: #000;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding: .5rem .75rem;
  display: flex;
}

.fs-consent_open-prefs_icon {
  width: 1.5rem;
  line-height: 0;
  display: flex;
}

.fs-consent_prefs_option {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border-bottom: 1px solid #0003;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  padding-bottom: 1rem;
  display: flex;
}

.fs-consent_checkbox_field {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  display: flex;
}

.fs-consent_checkbox_label {
  margin-bottom: 0;
  margin-right: .75rem;
}

.fs-consent_prefs_description {
  margin-bottom: 0;
  font-size: 12px;
}

.fs-consent_checkbox_field-2 {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  display: flex;
}

.fs-consent_checkbox {
  margin-top: 0;
  margin-right: .5rem;
}

.fs-consent_prefs_link {
  color: #333;
  border-bottom: 1px solid #000;
  padding-top: .5rem;
  padding-bottom: .5rem;
  text-decoration: none;
}

.cookie-popup_component {
  z-index: 9500;
  max-width: 25rem;
  position: fixed;
  inset: auto 1.25rem 1.25rem auto;
}

.cookie-modal_component {
  background-color: #ececec;
  border-radius: .25rem;
  flex-direction: column;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  font-size: .9375rem;
  line-height: 1.4;
  display: flex;
  position: relative;
  box-shadow: 0 4px 1rem #2629260d;
}

.cookie-modal_styles {
  display: none;
}

.cookie-modal_closebutton {
  z-index: 5;
  cursor: pointer;
  background-color: #0000;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 1.25rem 1.25rem -2.5rem auto;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
}

.cookie-modal_closebutton_line {
  background-color: #0000;
  width: 1rem;
  height: 2px;
  position: absolute;
}

.cookie-modal_closebutton_line.is-left {
  transform: rotate(45deg);
}

.cookie-modal_closebutton_line.is-right {
  transform: rotate(-45deg);
}

.screenreader-only {
  width: 1px;
  height: 1px;
  margin: -1px;
  position: absolute;
  overflow: hidden;
}

.cookie-modal_content-wrap {
  padding: 1.75rem 2rem;
}

.cookie-modal_title {
  margin-bottom: .1875em;
  font-size: 1.25rem;
  font-weight: 700;
}

.cookie-modal_link {
  transition: color .15s cubic-bezier(.25, .46, .45, .94);
}

.cookie-modal_button-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #0000;
  border-radius: 0 0 .25rem .25rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
}

.cookie-modal_button {
  text-align: center;
  border-radius: .25rem;
  padding: .875em 1.5em 1rem;
  font-size: .9375rem;
  text-decoration: none;
  transition: color .2s cubic-bezier(.25, .46, .45, .94), background-color .2s cubic-bezier(.25, .46, .45, .94);
}

.cookie-modal_button.is-secondary {
  border-color: var(--base-color-brand--primary-blue);
  background-color: var(--base-color-brand--primary-blue);
  color: var(--base-color-brand--white);
}

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

.layout194_image {
  width: 100%;
  height: 100%;
}

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

.sticky-wrapper {
  width: 100%;
  height: 600vh;
  position: relative;
  overflow: visible;
}

.sticky_triggers {
  position: absolute;
  inset: 0%;
}

.sticky-trigger {
  position: absolute;
  inset: 0% 0% auto;
}

.sticky-trigger._20 {
  z-index: 1;
  top: 20%;
}

.sticky-trigger._40 {
  z-index: 1;
  top: 40%;
}

.sticky-trigger._60 {
  z-index: 1;
  top: 60%;
}

.sticky-trigger._80 {
  z-index: 1;
  top: 80%;
}

.sticky_container {
  width: 100%;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 5rem;
}

.sticky-content {
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: stretch;
}

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

.feature_content-relative, .feature_image-wrapper {
  position: relative;
}

.sticky_text-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: minmax(2.5rem, 2.5rem) 1fr;
  grid-auto-columns: 1fr;
  text-decoration: none;
  display: grid;
}

.sticky_text-wrapper.step-1 {
  margin-bottom: 1.5rem;
  position: relative;
}

.sticky_text-wrapper.step-2, .sticky_text-wrapper.step-3 {
  margin-bottom: 1.5rem;
}

.elispe {
  background-color: var(--base-color-neutral--neutral-lighter);
  color: var(--base-color-brand--primary-blue);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: 10%;
  display: flex;
}

.elipse-txt {
  margin-left: -2%;
  font-size: 1.5rem;
}

.sticky_txt-detail.step-1, .sticky_txt-detail.step-2, .sticky_txt-detail.step-3, .sticky_txt-detail.step-4 {
  height: 0;
}

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

.feature_content-image._2, .feature_content-image._3, .feature_content-image._4 {
  position: absolute;
  inset: 0%;
}

.feature_content-container {
  width: 75%;
  height: 100vh;
  padding: 3rem 2rem;
}

.section {
  padding-top: 8%;
  padding-bottom: 8%;
  position: relative;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.sticky-triggers {
  position: absolute;
  inset: 0%;
}

.sticky-container {
  width: 100%;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
}

.sticky-center {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: relative;
}

.sticky-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.position-relative {
  position: relative;
}

.sticky-text_wrapper {
  color: #363636;
  margin-top: 8vh;
  margin-bottom: 8vh;
  text-decoration: none;
  display: block;
  position: relative;
}

.sticky-text_wrapper.steps {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 60px 1fr;
  grid-auto-columns: 1fr;
  margin-top: 4vh;
  margin-bottom: 4vh;
  display: grid;
}

.sticky-text_wrapper.steps.first.w--current, .sticky-text_wrapper.steps.second {
  grid-template-columns: 2.5rem 1fr;
  margin-top: 0;
  margin-bottom: 2rem;
}

.sticky-text_wrapper.steps.third {
  grid-template-columns: 2.5rem 1fr;
}

.sticky-text_wrapper.steps.fourth, .sticky-text_wrapper.steps.five, .sticky-text_wrapper.steps.six {
  grid-template-columns: 2.5rem 1fr;
  margin-bottom: 0;
}

.circle-number {
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-top: -16px;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
}

.circle-number.steps1, .circle-number.steps2, .circle-number.steps3, .circle-number.steps4 {
  background-color: var(--base-color-neutral--neutral-lightest);
  width: 2.5rem;
  height: 2.5rem;
  margin-top: 10%;
}

.circle-number.steps4, .circle-number.steps3, .circle-number.steps1, .circle-number.steps2 {
  background-color: #eee;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: 10%;
}

.stick-text_detail {
  transform-origin: 50% 0;
  overflow: hidden;
}

.paragraph-l {
  font-size: 1.125rem;
}

.paragraph-l.cc-sm-small.mb-0 {
  margin-bottom: 0;
}

.paragraph-l.cc-sm-small.mb-0.text-dark {
  display: block;
}

.sticky-img_wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
}

.phone-mock_wrapper {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}

.phone-mock {
  background-color: #cacaca;
  border-radius: 2em;
  width: 70%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px #0000000f;
}

.phone-screen_wrapper {
  border-radius: 1.5em;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.phone-screen {
  position: relative;
}

.phone-screen_img {
  object-fit: cover;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex: none;
  width: 100%;
  height: 100%;
}

.phone-screen_img.second, .phone-screen_img.third, .phone-screen_img.fourth, .phone-screen_img.five, .phone-screen_img.six {
  position: absolute;
  inset: 0%;
}

.phone-mock_tab {
  background-color: #cacaca;
  border-bottom-right-radius: 1em;
  border-bottom-left-radius: 1em;
  width: 50%;
  height: 6%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0% 0% auto;
}

.phone-mock_border {
  z-index: 1;
  border: 12px solid #cacaca;
  border-radius: 2em;
  position: absolute;
  inset: 0%;
}

.text-block {
  margin-left: -2%;
  font-size: 1.5rem;
}

.text-block-2, .text-block-3, .text-block-4 {
  font-size: 1.5rem;
}

.section_features {
  padding-bottom: 3rem;
  position: relative;
}

.cta {
  background-color: var(--background-color--background-blue);
  border-radius: 1.25rem;
  padding: 2rem;
}

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

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

.cta_img {
  object-fit: contain;
  border-radius: 1rem;
  height: 30rem;
}

.cta_logo {
  height: 1.5rem;
}

.cta_logo-wrap {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: flex;
}

.cta_logo-2 {
  width: 100%;
  height: 2rem;
}

.text-wrap.is-help {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  margin-top: 1rem;
  display: flex;
}

.logos-wrap {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: flex;
}

.app-logo {
  height: 2rem;
}

.text-block-5, .text-block-6 {
  font-size: 1.5rem;
}

.heading-style-h4-2 {
  color: #2a3568;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-block-7 {
  font-size: 1.5rem;
}

.banner {
  background-color: var(--background-color--background-blue);
  border-radius: 1.5rem;
  padding: 3rem 4rem;
}

.banner_grid {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1.1fr .9fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.banner_left {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.banner_right {
  border-radius: 1rem;
  overflow: hidden;
}

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

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

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

.banner_wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.banner_text {
  text-align: center;
  flex-flow: column;
  display: flex;
}

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

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

.text-rich-text-terms h2 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.text-rich-text-terms h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.text-rich-text-terms h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

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

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

.text-rich-text-terms figcaption {
  border-left: 2px solid var(--text-color--text-primary);
  text-align: left;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

.icon {
  object-fit: contain;
  width: 2rem;
  height: 2rem;
}

.process_img {
  object-fit: contain;
  height: 20rem;
}

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

.sticky_card {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  background-color: var(--base-color-brand--white);
  border-radius: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 2rem;
  display: grid;
  position: sticky;
  top: 6rem;
  box-shadow: 0 12px 5px #b8b3b31a;
}

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

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

.sticky_card_img {
  height: 30rem;
}

.timeline_img_wrap {
  flex-flow: column;
  height: 100%;
  margin-top: 1rem;
  display: flex;
}

.timeline_img_block {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  height: 22rem;
  position: sticky;
  top: 8rem;
}

.timeline_img {
  object-fit: contain;
  height: 18rem;
}

.timeline_card {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  background-color: var(--base-color-neutral--white);
  flex-flow: column;
  height: 22rem;
  display: flex;
  position: absolute;
}

.built_img {
  width: 100%;
}

.lightbox {
  width: 100%;
  display: none;
}

.streamline_img, .features_hero_img {
  width: 100%;
}

@media screen and (min-width: 1440px) {
  .max-width-medium {
    max-width: 30rem;
  }

  .heading-style-h4.is-how {
    font-size: 1.7rem;
  }

  .home_logo-list_logo {
    max-height: 6rem;
  }

  .blog-post_body_component {
    grid-template-columns: .75fr .5fr;
  }

  .the-h-app_features-list_item {
    flex-flow: column;
    height: 100%;
    display: flex;
  }

  .the-h-app_features-list_list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .background_vector-wrapper.is_blog-left {
    left: -5%;
  }

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

  .image-6 {
    object-fit: contain;
    min-width: 2.2rem;
  }

  .feature_content-container {
    width: 70%;
  }

  .position-relative {
    top: 3rem;
  }

  .cta {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .cta_left {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .cta_img {
    height: 40rem;
  }

  .cta_logo-2 {
    height: 2.2rem;
  }

  .banner {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .banner_left {
    justify-content: center;
    align-items: flex-start;
    max-width: 80%;
  }

  .sticky_wrap {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .sticky_card {
    border: 1px solid var(--base-color-neutral--neutral-lightest);
  }
}

@media screen and (min-width: 1920px) {
  .background_vector-wrapper.is_blog-left {
    top: -1%;
    left: -3%;
  }

  .background_vector {
    object-fit: cover;
    width: 100%;
    height: auto;
  }
}

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

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

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

  .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: 2.25rem;
  }

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

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

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

  .menu-icon1_line-middle {
    background-color: var(--base-color-neutral--black);
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

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

  .navbar1_menu-button.w--open {
    background-color: #0000;
  }

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

  .dropdown-chevron {
    inset: auto 0% auto auto;
  }

  .menu-icon1_line-top {
    background-color: var(--base-color-neutral--black);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar1_menu {
    border-bottom: 1px solid var(--border-color--border-primary);
    background-color: var(--background-color--background-primary);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    padding: 1rem 5% 2rem;
    position: absolute;
    overflow: auto;
  }

  .navbar1_menu.is-page-height-tablet {
    height: 100dvh;
    padding-bottom: 6.5rem;
    transition: height .5s;
  }

  .navbar1_menu-dropdown {
    width: 100%;
    font-size: 1.125rem;
  }

  .navbar1_dropdown-link {
    width: auto;
    padding: .75rem 0 .75rem 5%;
  }

  .navbar1_dropdown-toggle {
    align-items: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 0;
    display: flex;
  }

  .menu-icon1_line-bottom {
    background-color: var(--base-color-neutral--black);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

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

  .navbar1_dropdown-list.w--open {
    border-style: none;
    padding: 0;
  }

  .navbar1_link {
    width: auto;
    padding: .75rem 0;
    font-size: 1.125rem;
  }

  .menu-icon_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

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

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

  .home_features-list-1_list {
    grid-column-gap: 2rem;
  }

  .section_home_download-app {
    padding-bottom: 5rem;
  }

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

  .home_download-app_timeline-step {
    grid-column-gap: 24px;
  }

  .home_testimonial_component {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

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

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

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

  .about-us_team_list {
    grid-template-columns: 1fr 1fr;
  }

  .about-us_award-logos-list_component {
    grid-column-gap: 3rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .blog_featured-blog-list-header_list, .blog_featured-blog-list-header_featured-item {
    grid-template-columns: 1fr;
  }

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

  .blog-post_header_component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

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

  .blog-post_body_newsletter {
    position: static;
  }

  .blog-post_body_content {
    margin-bottom: 3rem;
  }

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

  .employers_features-list_list, .employers_testimonial_component {
    grid-column-gap: 2rem;
  }

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

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

  .workers_features-list_list {
    grid-column-gap: 2rem;
  }

  .the-h-app_feature-1_component, .the-h-app_feature-2_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .the-h-app_features-list_content {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .the-h-app_features-list_list, .the-h-app_how-it-works_list {
    grid-column-gap: 2rem;
  }

  .the-h-app_stats_content {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .the-h-app_stats_number {
    font-size: 4rem;
  }

  .the-h-app_stats_list {
    grid-column-gap: 2rem;
  }

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

  .cta8_content {
    margin-right: 0;
  }

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

  .schedule-a-demo_header_component {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .schedule-a-demo_locations_component {
    grid-column-gap: 3rem;
    grid-row-gap: 4rem;
  }

  .background-red-h2 {
    display: none;
  }

  .hero_heading.text-color-alternate {
    font-size: 3.5rem;
  }

  .background_vector-wrapper {
    inset: 15% 0% 0%;
  }

  .background_vector-wrapper.is_blog-left {
    width: 50%;
    top: 14%;
  }

  .fs-radio_field {
    flex: none;
  }

  .form {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: flex-start;
    align-items: center;
  }

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

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

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

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

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

  .michamba_feature-1_content, .michamba_feature-2_content, .michamba_feature-3_content, .michamba_feature-4_content {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

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

  .michamba_features-list_list {
    grid-column-gap: 2rem;
  }

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

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

  .sticky-container {
    top: 0;
  }

  .sticky-text_wrapper.steps {
    margin-top: 3vh;
    margin-bottom: 3vh;
  }

  .circle-number {
    margin-top: 0;
    margin-bottom: 24px;
  }

  .phone-mock {
    border-radius: 1.5em;
    width: 90%;
    padding: 8px;
  }

  .phone-screen_wrapper {
    border-radius: 1.2em;
  }

  .phone-mock_tab {
    height: 3vw;
  }

  .phone-mock_border {
    border-width: 8px;
    border-radius: 1.5em;
  }

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

  .banner_grid {
    flex-flow: column;
    display: flex;
  }
}

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

  h2 {
    font-size: 2.25rem;
  }

  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: .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: .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 {
    font-size: 1rem;
  }

  .text-style-quote {
    font-size: 1.125rem;
  }

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

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

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

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

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

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

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

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

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

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

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

  .spacer-xsmall {
    padding-top: .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;
  }

  .navbar1_menu.is-page-height-tablet {
    padding-bottom: 6rem;
  }

  .navbar1_component {
    height: auto;
    min-height: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .navbar1_logo-link {
    padding-left: 0;
  }

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

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

  .home_logo-list_logo {
    max-height: 3rem;
  }

  .home_logo-list_component {
    grid-column-gap: 2rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: center;
    padding-top: 1rem;
    display: grid;
  }

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

  .home_download-app_timeline-icon-wrapper {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .home_download-app_component {
    grid-template-columns: 1fr;
  }

  .home_download-app_progress-bar-wrapper {
    left: 2rem;
  }

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

  .home_testimonial_client-image-wrapper {
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .home_testimonial_client {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .home_faq_question {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

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

  .home_faq_icon-wrapper {
    width: 1.75rem;
  }

  .footer7_legal-list {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-auto-flow: row;
    justify-items: center;
  }

  .footer7_credit-text {
    margin-top: 2rem;
  }

  .footer7_bottom-wrapper {
    flex-direction: column-reverse;
    align-items: center;
    padding-bottom: 1rem;
  }

  .footer7_link-list {
    grid-column-gap: 0px;
    grid-row-gap: 1.5rem;
    grid-auto-flow: row;
    justify-items: center;
  }

  .about-us_about_component {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .about-us_team_list, .about-us_award-logos-list_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .about-us_award-logos-list_wrapper {
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .about-us_award-logos-list_logo, .about-us_partner-logos-list_logo {
    max-height: 3rem;
  }

  .about-us_partner-logos-list_component {
    padding-top: 1rem;
  }

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

  .blog_featured-blog-list-header_category-menu {
    width: 100vw;
    margin-bottom: 3rem;
    margin-left: -5vw;
    padding-left: 5vw;
    overflow: scroll;
  }

  .blog_featured-blog-list-header_category-menu.no-scrollbar {
    justify-content: flex-start;
  }

  .blog_featured-blog-list-header_menu-link.last-link {
    margin-right: 2rem;
  }

  .blog_featured-blog-list-header_featured-item {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    margin-bottom: 3.5rem;
    display: grid;
  }

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

  .blog-post_header_component {
    grid-row-gap: 3rem;
  }

  .blog-post_body_content {
    margin-bottom: 2rem;
  }

  .employers_feature-1_component, .employers_feature-2_component, .employers_features-list_list, .employers_testimonial_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .employers_testimonial_client-image-wrapper {
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .employers_testimonial_client {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .employers_faq_question {
    padding: 1rem 1.25rem;
  }

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

  .employers_faq_icon-wrappper {
    width: 1.75rem;
  }

  .workers_header_component {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .workers_feature-1_component, .workers_feature-2_component, .workers_features-list_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .workers_testimonial_client-image-wrapper {
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .workers_testimonial_client-info {
    margin-bottom: 1rem;
  }

  .workers_testimonial_client {
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .workers_testimonial_divider {
    display: none;
  }

  .workers_faq_question {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .workers_faq_icon-wrapper {
    width: 1.75rem;
  }

  .the-h-app_feature-1_component, .the-h-app_feature-2_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .the-h-app_features-list_content {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .the-h-app_features-list_list, .the-h-app_how-it-works_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .the-h-app_testimonial_component {
    padding-bottom: 3rem;
  }

  .the-h-app_testimonial_slide {
    padding-left: 0;
    padding-right: 0;
  }

  .the-h-app_stats_content {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .the-h-app_stats_number {
    font-size: 3.5rem;
  }

  .the-h-app_stats_list {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .contact-us_contact_map-wrapper {
    height: 25rem;
  }

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

  .cta8_content {
    margin-right: 0;
  }

  .cta8_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .schedule-a-demo_header_component {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .schedule-a-demo_locations_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .schedule-a-demo_locations_map {
    height: 20rem;
  }

  .form_field-2col.is-mobile-1col {
    grid-template-columns: 1fr;
  }

  .schedule-a-demo_gallery_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .hero_heading.text-color-alternate {
    font-size: 3rem;
  }

  .background_vector-wrapper {
    top: 10%;
  }

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

  .footer1_top-wrapper {
    grid-row-gap: 3rem;
  }

  .footer1_menu-wrapper {
    grid-column-gap: 1.5rem;
  }

  .footer1_bottom-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .footer1_credit-text {
    margin-top: 1.5rem;
  }

  .footer1_legal-list {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-auto-flow: row;
  }

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

  .contact14_map-wrapper {
    height: 25rem;
  }

  .layout294_component, .michamba_feature-1_content, .michamba_feature-2_content, .michamba_feature-3_content, .michamba_feature-4_content {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .michamba_features-list_content {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .michamba_features-list_list, .michamba_faq_content {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .michamba_faq_list {
    grid-row-gap: 2.5rem;
  }

  .cookie-modal_closebutton {
    margin-right: 1.25rem;
  }

  .cookie-modal_content-wrap {
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .cookie-modal_button-wrap {
    padding: 1.5rem;
  }

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

  .layout89_content {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .container {
    width: 100%;
    padding-left: 28px;
    padding-right: 28px;
  }

  .sticky-container {
    height: auto;
  }

  .sticky-text_wrapper {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
  }

  .sticky-text_wrapper.steps {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 40px 1fr;
  }

  .sticky-text_wrapper.steps.first {
    flex-flow: column;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
  }

  .circle-number {
    font-size: 1.1rem;
  }

  .circle-number.steps2, .circle-number.steps3, .circle-number.steps4, .circle-number.steps4, .circle-number.steps3 {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .circle-number.steps1 {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }

  .circle-number.steps2 {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .paragraph-l {
    font-size: 1.1rem;
  }

  .paragraph-l.cc-sm-small {
    font-size: 1rem;
  }

  .sticky-img_wrapper {
    width: 100%;
  }

  .phone-mock_wrapper {
    position: absolute;
    left: auto;
    right: -28px;
    overflow: hidden;
  }

  .phone-mock {
    box-shadow: none;
    width: 150%;
  }

  .phone-mock_tab {
    border-bottom-right-radius: .5em;
    border-bottom-left-radius: .5em;
    height: 29px;
  }

  .cta_grid {
    grid-column-gap: 1.4rem;
    grid-row-gap: 1.4rem;
    flex-flow: column;
    display: flex;
  }

  .cta_img {
    height: auto;
  }

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

  .banner {
    padding: 2rem;
  }

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

  .text-rich-text-terms h2 {
    margin-bottom: .5rem;
    font-size: 1.7rem;
  }

  .text-rich-text-terms h3 {
    margin-bottom: .5rem;
    font-size: 1.3rem;
  }

  .sticky_card {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    padding: 1rem;
    display: flex;
  }

  .sticky_card_left {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .sticky_card_img {
    height: 20rem;
  }

  .timeline_img_block {
    height: 21.5rem;
  }

  .timeline_img {
    height: 15rem;
  }

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

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

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

  .navbar1_component {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .home_feature-1_item-list, .home_feature-1_component, .home_feature-2_component {
    grid-template-columns: 1fr;
  }

  .home_logo-list_logo {
    max-height: 2.5rem;
  }

  .home_logo-list_component {
    justify-content: center;
  }

  .home_features-list-1_list, .home_download-app_component, .home_faq_component, .about-us_about_component, .about-us_team_list, .about-us_award-logos-list_component {
    grid-template-columns: 1fr;
  }

  .about-us_award-logos-list_wrapper {
    justify-content: center;
    align-items: flex-start;
  }

  .about-us_partner-logos-list_component {
    justify-content: center;
  }

  .blog_featured-blog-list-header_list {
    grid-row-gap: 4rem;
  }

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

  .blog-post_body_form-wrapper {
    grid-row-gap: 12px;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .employers_feature-1_component, .employers_feature-2_component, .employers_features-list_list, .workers_header_component, .workers_feature-1_component, .workers_feature-2_component, .workers_feature-2_item-list, .workers_features-list_list, .the-h-app_feature-1_component, .the-h-app_feature-1_item-list, .the-h-app_feature-2_component, .the-h-app_features-list_content, .the-h-app_features-list_list, .the-h-app_how-it-works_list {
    grid-template-columns: 1fr;
  }

  .the-h-app_stats_content {
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .the-h-app_stats_list {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

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

  .signup-form-wrapper {
    grid-row-gap: .75rem;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .schedule-a-demo_header_component {
    grid-template-columns: 1fr;
  }

  .schedule-a-demo_locations_component {
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .hero_heading.text-color-alternate {
    font-size: 2.25rem;
  }

  .background_vector-wrapper {
    top: 11%;
  }

  .form {
    overflow: scroll;
  }

  .footer1_top-wrapper {
    grid-row-gap: 48px;
  }

  .footer1_form {
    grid-row-gap: 12px;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .footer1_menu-wrapper {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .contact14_component, .layout294_component, .michamba_feature-1_content, .michamba_feature-2_content, .michamba_feature-2_item-list, .michamba_feature-3_content, .michamba_feature-3_item-list, .michamba_feature-4_content, .michamba_feature-4_item-list, .michamba_features-list_content, .michamba_features-list_list {
    grid-template-columns: 1fr;
  }

  .fs-consent_banner_buttons {
    text-align: center;
    flex-flow: column;
    align-items: stretch;
  }

  .fs-consent_prefs_heading {
    font-size: 1rem;
  }

  .cookie-popup_component {
    max-width: 100%;
    inset: auto 0% 0%;
  }

  .cookie-modal_component {
    max-width: 100%;
  }

  .cookie-modal_closebutton {
    margin-top: 1rem;
    margin-right: 1rem;
  }

  .cookie-modal_button {
    flex: auto;
    padding-left: 1.25em;
    padding-right: 1.25em;
  }

  .layout194_content, .layout89_content {
    grid-template-columns: 1fr;
  }

  .feature_content-container {
    width: 100%;
    height: auto;
    padding: 1rem 2rem 0 0;
  }

  .section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .container {
    padding-left: 28px;
    padding-right: 28px;
  }

  .sticky-container {
    top: 5.5rem;
  }

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

  .sticky-text_wrapper.steps {
    grid-template-columns: 1fr;
  }

  .sticky-text_wrapper.steps.first.w--current, .sticky-text_wrapper.steps.second, .sticky-text_wrapper.steps.third, .sticky-text_wrapper.steps.fourth, .sticky-text_wrapper.steps.five, .sticky-text_wrapper.steps.six {
    display: flex;
  }

  .circle-number.steps1, .circle-number.steps2, .circle-number.steps3, .circle-number.steps4, .circle-number.steps4, .circle-number.steps3, .circle-number.steps1, .circle-number.steps2 {
    display: none;
  }

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

  .phone-mock_wrapper {
    width: auto;
  }

  .phone-mock {
    width: auto;
    padding: 6px;
  }

  .phone-mock_tab {
    height: 5vw;
  }

  .phone-mock_border {
    border-width: 5px;
  }

  .cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .cta_logo-wrap {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .sticky_card {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .sticky_card_img {
    height: 18rem;
  }
}

#w-node-_4eb8958f-f16e-2bde-b448-9e799375a3f7-ddb3d160 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ad7fc0d2-b6a1-db25-81e3-0b4b20a59633-ddb3d160, #w-node-bed7dc21-afae-e8bd-15e6-f39f87d06b0d-ddb3d160 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_11703036-669f-ee54-0e39-5d3377e1ecc2-ddb3d160 {
  place-self: center start;
}

#w-node-dacc0e34-4c06-58a4-9f2e-c0643fe7ab8e-ddb3d160 {
  justify-self: end;
}

#w-node-_6d62d0f4-1ff7-d885-9c72-8a597624182c-ddb3d160 {
  align-self: end;
}

#w-node-_4eb8958f-f16e-2bde-b448-9e799375a49c-ddb3d160 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b14e0a87-ff31-2ce9-eee2-102091211d59-91211d53 {
  justify-self: center;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86205-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86207-ddb3d163 {
  justify-self: center;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8621b-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8621c-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86220-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86221-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86225-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86226-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622a-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622b-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622f-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86230-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86234-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86235-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8623f-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86240-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86244-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86245-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86249-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624a-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624e-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624f-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86253-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86254-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86258-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86259-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86263-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86264-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86268-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86269-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8626d-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8626e-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86272-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86273-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8627c-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8627d-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86286-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86287-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86299-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629a-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629e-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629f-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a3-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a4-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a8-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a9-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ad-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ae-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862b8-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862b9-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862bd-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862be-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c2-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c3-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c7-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c8-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862cc-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862cd-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862d1-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862d2-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862dd-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862de-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e2-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e3-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e7-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e8-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ec-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ed-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f1-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f2-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f6-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f7-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862fb-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862fc-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86300-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86301-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86305-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86306-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86310-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86311-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86315-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86316-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8631a-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8631b-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86322-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86323-ddb3d163 {
  justify-self: start;
}

#w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd5fd-ddb3d163, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd600-ddb3d163, #w-node-_5260568a-938d-ea68-0c74-308a8209edce-ddb3d163, #w-node-_5260568a-938d-ea68-0c74-308a8209edd1-ddb3d163, #w-node-_06b32c98-aea3-8ba0-a51d-a7fca0302b82-ddb3d163, #w-node-_06b32c98-aea3-8ba0-a51d-a7fca0302b85-ddb3d163, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd604-ddb3d163, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd605-ddb3d163, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd608-ddb3d163, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd609-ddb3d163, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd60c-ddb3d163, #w-node-_645b1bc0-dfb0-4f5a-9011-fefba78f4deb-ddb3d163, #w-node-_645b1bc0-dfb0-4f5a-9011-fefba78f4dee-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc86393-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86394-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8638e-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8638f-ddb3d163 {
  justify-self: start;
}

#w-node-_7304dac8-f593-d71d-1de4-011e92740d9b-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7304dac8-f593-d71d-1de4-011e92740d9c-ddb3d163 {
  justify-self: start;
}

#w-node-c97d2f4c-a980-bb5b-78e5-2721ac744da4-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c97d2f4c-a980-bb5b-78e5-2721ac744da5-ddb3d163 {
  justify-self: start;
}

#w-node-_06aa1bf4-9138-5698-358d-7b7066841d42-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_06aa1bf4-9138-5698-358d-7b7066841d43-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ba-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc863bd-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc863be-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c1-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c2-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c5-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c6-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ca-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc863cd-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ce-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d1-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d2-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d5-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc863dd-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc863de-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863df-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863e1-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc863e4-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc863e5-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863e6-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ea-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ed-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ee-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ef-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863f3-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc863f7-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863f8-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863fe-ddb3d163, #w-node-e9f171cc-11b4-0905-714d-593dc5e729cd-ddb3d163, #w-node-e9f171cc-11b4-0905-714d-593dc5e729ce-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e9f171cc-11b4-0905-714d-593dc5e729cf-ddb3d163 {
  justify-self: start;
}

#w-node-e9f171cc-11b4-0905-714d-593dc5e729d3-ddb3d163, #w-node-_803d93b2-f316-78e7-4b37-d40ff102217f-ddb3d163, #w-node-_803d93b2-f316-78e7-4b37-d40ff1022180-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_803d93b2-f316-78e7-4b37-d40ff1022181-ddb3d163 {
  justify-self: start;
}

#w-node-_803d93b2-f316-78e7-4b37-d40ff1022187-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc86402-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86403-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86407-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc8640a-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc8640f-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc86410-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86411-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86415-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc86418-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc86419-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8641a-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86420-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc86423-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc86424-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86425-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8642b-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc8642e-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc8642f-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86430-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86438-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc8643b-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc8643c-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8643d-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86449-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc8644a-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8644b-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8644f-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc86454-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc86455-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86456-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8645c-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc86461-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc86462-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86463-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86469-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc8646e-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc8646f-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86470-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86478-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc8647e-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8647f-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86485-ddb3d163, #w-node-bf202792-073b-d0b9-2e3f-1ac68c32701c-ddb3d163, #w-node-bf202792-073b-d0b9-2e3f-1ac68c32701d-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bf202792-073b-d0b9-2e3f-1ac68c32701e-ddb3d163 {
  justify-self: start;
}

#w-node-bf202792-073b-d0b9-2e3f-1ac68c327022-ddb3d163, #w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e1608-ddb3d163, #w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e1609-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e160a-ddb3d163 {
  justify-self: start;
}

#w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e1610-ddb3d163, #w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece1-ddb3d163, #w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece2-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece3-ddb3d163 {
  justify-self: start;
}

#w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece9-ddb3d163, #w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b7e-ddb3d163, #w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b7f-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b80-ddb3d163 {
  justify-self: start;
}

#w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b88-ddb3d163, #w-node-_0a1c269a-9c65-cac5-d78d-08680a95253d-ddb3d163, #w-node-_0a1c269a-9c65-cac5-d78d-08680a95253e-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a1c269a-9c65-cac5-d78d-08680a95253f-ddb3d163 {
  justify-self: start;
}

#w-node-_0a1c269a-9c65-cac5-d78d-08680a952545-ddb3d163, #w-node-ee513712-f44c-c02b-b1ea-6045fc69ab7c-ddb3d163, #w-node-ee513712-f44c-c02b-b1ea-6045fc69ab7d-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee513712-f44c-c02b-b1ea-6045fc69ab7e-ddb3d163 {
  justify-self: start;
}

#w-node-ee513712-f44c-c02b-b1ea-6045fc69ab86-ddb3d163, #w-node-_40872103-aff7-c010-da67-704a8f3f1108-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_40872103-aff7-c010-da67-704a8f3f1109-ddb3d163 {
  justify-self: start;
}

#w-node-_40872103-aff7-c010-da67-704a8f3f110f-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc8648f-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc86490-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc86491-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86492-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86494-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc86497-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649b-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649c-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649d-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a6-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a7-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a8-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b1-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b2-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b3-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864b4-ddb3d163 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864ba-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc864bb-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc864bc-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864bd-ddb3d163 {
  justify-self: start;
}

#w-node-da163454-3d7f-a6d2-8037-3b46b9c50abd-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c3-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c4-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c5-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864c6-ddb3d163, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c8-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369290-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369294-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369295-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369297-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369299-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929a-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929c-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929e-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929f-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a1-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a3-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a4-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a6-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a8-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a9-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ab-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ad-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ae-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b0-ddb3d163, #w-node-_8ec19c33-ae2e-90c5-80bf-3c4e7d639cd4-ddb3d163, #w-node-_450fae6e-ea6c-c71d-c007-cbe7f109d617-ddb3d163, #w-node-dcc5fc80-562f-447f-055c-339db14678d8-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b2-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b3-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b5-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b6-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b8-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b9-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bb-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bc-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692be-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bf-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c1-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c2-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c4-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c5-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c7-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692cd-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d1-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d2-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d4-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d6-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d7-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d9-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692db-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692dc-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692de-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e0-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e1-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e3-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e5-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e6-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e8-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ea-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692eb-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ed-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ef-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f0-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f2-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f4-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f5-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f7-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f9-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fa-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fc-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fe-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ff-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369301-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369303-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369304-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369306-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936930b-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936930f-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369311-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369314-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369319-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936931e-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369323-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369328-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936932f-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369330-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369332-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369333-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369335-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369336-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369338-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369339-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933b-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933c-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933e-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933f-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369341-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369342-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369344-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369345-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369347-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369348-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934a-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934b-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934d-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934e-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369350-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369351-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369353-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369354-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369356-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369357-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369359-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935a-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935c-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935d-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935f-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369360-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369362-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369363-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369365-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369366-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369368-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369369-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936b-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936c-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936e-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936f-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369371-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369372-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369374-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369375-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369377-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369378-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937a-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937b-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937d-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937e-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369380-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369381-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369383-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369384-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369386-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369387-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936938c-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369390-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369392-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369395-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936939a-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936939f-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693a4-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693a9-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b0-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b1-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b3-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b4-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b6-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b7-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b9-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ba-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bc-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bd-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bf-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c0-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c2-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c3-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c5-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c6-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c8-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c9-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cb-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cc-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ce-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cf-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d1-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d2-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d4-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d5-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d7-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d8-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693da-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693db-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693dd-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693de-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e0-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e1-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e3-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e4-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e6-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e7-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e9-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ea-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ec-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ed-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ef-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f0-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f2-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f3-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f5-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f6-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f8-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f9-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fb-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fc-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fe-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ff-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369401-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369402-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369404-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369405-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369407-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369408-ddb3d163, #w-node-aba73718-5f03-827e-9e0b-61449dc1d37c-ddb3d163, #w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448f8-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448f9-ddb3d163 {
  justify-self: start;
}

#w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448fb-ddb3d163, #w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448fc-ddb3d163, #w-node-_16994295-7a31-57da-1001-8ec0ea846a1e-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_16994295-7a31-57da-1001-8ec0ea846a1f-ddb3d163 {
  justify-self: start;
}

#w-node-_16994295-7a31-57da-1001-8ec0ea846a21-ddb3d163, #w-node-_16994295-7a31-57da-1001-8ec0ea846a22-ddb3d163, #w-node-_8f691932-76bb-1979-3d19-a80adf0a25f2-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8f691932-76bb-1979-3d19-a80adf0a25f3-ddb3d163 {
  justify-self: start;
}

#w-node-_8f691932-76bb-1979-3d19-a80adf0a25f5-ddb3d163, #w-node-_8f691932-76bb-1979-3d19-a80adf0a25f6-ddb3d163, #w-node-f28919c2-e180-d075-d1c2-81b601b8a964-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f28919c2-e180-d075-d1c2-81b601b8a965-ddb3d163 {
  justify-self: start;
}

#w-node-f28919c2-e180-d075-d1c2-81b601b8a967-ddb3d163, #w-node-f28919c2-e180-d075-d1c2-81b601b8a968-ddb3d163, #w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b3-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b4-ddb3d163 {
  justify-self: start;
}

#w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b6-ddb3d163, #w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b7-ddb3d163, #w-node-ee961e8d-845a-edc3-3307-509470022457-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee961e8d-845a-edc3-3307-509470022458-ddb3d163 {
  justify-self: start;
}

#w-node-ee961e8d-845a-edc3-3307-50947002245a-ddb3d163, #w-node-ee961e8d-845a-edc3-3307-50947002245b-ddb3d163, #w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e1-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e2-ddb3d163 {
  justify-self: start;
}

#w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e4-ddb3d163, #w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e5-ddb3d163, #w-node-_626bd165-37fe-b21e-713f-accb16c57414-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_626bd165-37fe-b21e-713f-accb16c57415-ddb3d163 {
  justify-self: start;
}

#w-node-_626bd165-37fe-b21e-713f-accb16c57417-ddb3d163, #w-node-_626bd165-37fe-b21e-713f-accb16c57418-ddb3d163, #w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f40-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f41-ddb3d163 {
  justify-self: start;
}

#w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f43-ddb3d163, #w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f44-ddb3d163, #w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee5-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee6-ddb3d163 {
  justify-self: start;
}

#w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee8-ddb3d163, #w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee9-ddb3d163, #w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe33-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe34-ddb3d163 {
  justify-self: start;
}

#w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe36-ddb3d163, #w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe37-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fa-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fe-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694ff-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369503-ddb3d163, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369505-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369506-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950a-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950b-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950f-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369510-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369514-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369515-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369519-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951a-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951e-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951f-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369523-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369524-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369528-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369529-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952d-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952e-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369532-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369533-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953a-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953b-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953f-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369540-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369544-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369545-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369549-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954a-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954e-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954f-ddb3d163 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369553-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369554-ddb3d163 {
  justify-self: start;
}

#w-node-de8106d9-b098-80e3-076c-80f3a0fa5e54-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-de8106d9-b098-80e3-076c-80f3a0fa5e55-ddb3d163 {
  justify-self: start;
}

#w-node-_680345d6-d141-aefc-5e81-01faad69a792-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_680345d6-d141-aefc-5e81-01faad69a793-ddb3d163 {
  justify-self: start;
}

#w-node-dc962921-5c74-5687-77a4-c1371012b297-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dc962921-5c74-5687-77a4-c1371012b298-ddb3d163 {
  justify-self: start;
}

#w-node-bbf5f4a2-0660-a8f8-7799-a71df583db57-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bbf5f4a2-0660-a8f8-7799-a71df583db58-ddb3d163 {
  justify-self: start;
}

#w-node-_723dac19-3a6b-8f5e-89ce-53b9006ba92c-ddb3d163 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_723dac19-3a6b-8f5e-89ce-53b9006ba92d-ddb3d163 {
  justify-self: start;
}

#w-node-a8b673ae-a814-9a24-4346-f2badf369064-ddb3d164, #w-node-_90baa81c-9f47-9c22-7bf2-c206aacfa3c8-ddb3d164, #w-node-e5b31954-23be-3741-16bf-af6d92201c3f-ddb3d164, #w-node-_0e9558c0-314a-34c9-6635-8334f31dc518-ddb3d164 {
  justify-self: center;
}

#w-node-e86e5d1d-3b45-0a6d-2c8b-d1724d96cd7a-ddb3d167, #w-node-e86e5d1d-3b45-0a6d-2c8b-d1724d96cd80-ddb3d167, #w-node-e86e5d1d-3b45-0a6d-2c8b-d1724d96cd86-ddb3d167 {
  align-self: start;
}

#w-node-e86e5d1d-3b45-0a6d-2c8b-d1724d96cdb1-ddb3d167 {
  align-self: stretch;
}

#w-node-_22e9c24b-fb6a-8b7b-35c7-3884b6f6374f-ddb3d169 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_785421e5-3d14-15c8-a012-1dd37dae523f-ddb3d169, #w-node-_189c4127-3abb-75af-af86-6c77afc0de7f-ddb3d169 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-_21505b88-7022-a1a6-8c07-6fbde03a06d3-ddb3d16a {
  justify-self: start;
}

#w-node-_7b420a29-9489-7a36-49f0-cd60693fe330-ddb3d16b, #w-node-_7b420a29-9489-7a36-49f0-cd60693fe339-ddb3d16b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7b420a29-9489-7a36-49f0-cd60693fe36c-ddb3d16b, #w-node-_1ca9a8e2-be70-43d0-364f-614640e112fa-ddb3d171, #w-node-ca9da8ff-68f8-35b8-76b6-08f2ebe1d285-ddb3d171, #w-node-_961d34a4-01b8-76ff-22ff-e3e3502d2e0f-ddb3d171, #w-node-_069f6051-1147-7308-f69b-cbd06018db99-ddb3d171 {
  justify-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-b14e0a87-ff31-2ce9-eee2-102091211d59-91211d53 {
    justify-self: center;
  }

  #w-node-f263ad1b-6892-880f-f955-a11a741b7dbf-ddb3d165 {
    grid-area: 1 / 1 / 3 / 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-ca9da8ff-68f8-35b8-76b6-08f2ebe1d287-ddb3d171, #w-node-_069f6051-1147-7308-f69b-cbd06018db9b-ddb3d171 {
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-b14e0a87-ff31-2ce9-eee2-102091211d59-91211d53 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_0e2af75c-eb7f-f7d0-d5ba-e690c3747f0e-ddb3d173 {
    align-self: auto;
  }
}


