:root {
  --background-color--background-primary: var(--base-color-neutral--white);
  --text-color--text-primary: var(--base-color-neutral--black);
  --link-color--link-primary: var(--base-color-neutral--black);
  --blue: #1107ed;
  --border-color--border-primary: var(--base-color-neutral--black);
  --base-color-neutral--black: black;
  --base-color-neutral--white: white;
  --black-archive\<deleted\|variable-dccb7db6\>: black;
  --background-color--background-secondary: var(--base-color-neutral--neutral-lightest);
  --base-color-brand--white: var(--color-neutral--white);
  --link-color--link-alternate: var(--base-color-neutral--white);
  --background-color--background-tertiary: var(--base-color-neutral--neutral-light);
  --background-color--background-alternate: var(--base-color-neutral--black);
  --text-color--text-alternate: var(--base-color-neutral--white);
  --text-color--text-secondary: var(--base-color-neutral--black);
  --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);
  --base-color-neutral--neutral-lightest: #eee;
  --text--primary: #000;
  --background-color--primary: #fff;
  --color-neutral--black: #000;
  --color-neutral--white: #fff;
  --color-neutral--neutral: #666;
  --border--primary: #000;
  --color-neutral--neutral-lightest: #eee;
  --base-color-brand--black: black;
  --white-archive\<deleted\|variable-1766b841\>: white;
  --background: #f8f5f3;
  --base-color-neutral--neutral-lighter: #ccc;
  --base-color-neutral--neutral-light: #aaa;
  --base-color-neutral--neutral: #666;
  --base-color-neutral--neutral-dark: #444;
  --base-color-neutral--neutral-darker: #222;
  --base-color-neutral--neutral-darkest: #111;
  --base-color-system--success-green: #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--alternate: #fff;
  --color-neutral--white-2: #fff;
  --color-neutral--neutral-2: #666;
}

.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: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

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

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

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

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

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  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(--link-color--link-primary);
  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;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.overflow-hidden {
  overflow: hidden;
}

.global-styles {
  display: block;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

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

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

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

.page-wrapper {
  background-color: #f9f5f3;
  overflow: hidden;
}

.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-large.align-center {
  max-width: 80rem;
}

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

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

.margin-bottom.margin-small.z {
  z-index: 10;
  position: relative;
}

.margin-bottom.margin-large, .margin-bottom.margin-0, .margin-bottom.margin-xlarge, .margin-bottom.margin-xhuge, .margin-bottom.margin-xxhuge, .margin-bottom.margin-huge, .margin-bottom.margin-xxsmall, .margin-bottom.margin-custom2, .margin-bottom.margin-xsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-small {
  text-align: center;
}

.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-top.padding-xhuge-copy {
  padding: 4% 0 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-left: 0;
  padding-right: 0;
}

.padding-vertical.padding-xxlarge {
  padding: 0 0 7rem;
}

.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-vertical.padding-xxlarge {
  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 {
  color: var(--blue);
  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 {
  text-align: left;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.rl-styleguide_callout-link-wrapper-colors {
  background-image: linear-gradient(135deg, rgba(255, 116, 72, .15), rgba(255, 72, 72, .15) 50%, rgba(98, 72, 255, .15)), 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;
  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 rgba(0, 0, 0, .14);
}

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

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

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

.heading-style-h5 {
  font-family: Roboto Mono, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

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

.heading-style-h1 {
  color: var(--blue);
  font-size: 3.5rem;
  font-weight: 700;
  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-neutral--black);
  background-color: var(--base-color-neutral--black);
  color: var(--base-color-neutral--white);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button.is-link {
  color: var(--base-color-neutral--black);
  background-color: rgba(0, 0, 0, 0);
  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: rgba(0, 0, 0, 0);
}

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

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

.button.is-secondary {
  color: var(--base-color-neutral--black);
  background-color: #fff;
  border-color: #00f;
  border-radius: 20px;
  font-family: Roboto Mono, sans-serif;
  font-weight: 400;
  box-shadow: 4px 4px 1px -1px #b2bdf3;
}

.button.is-secondary.is-alternate {
  color: var(--base-color-neutral--white);
  background-color: rgba(0, 0, 0, 0);
}

.button.is-small {
  background-color: #00f;
  border-style: none;
  padding: .5rem 1.25rem;
  font-family: Roboto Mono, sans-serif;
}

.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 {
  color: var(--base-color-neutral--black);
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
}

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

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

.heading-style-h4 {
  text-align: left;
  font-family: Roboto Mono, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
}

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

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

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

.rl-styleguide_item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  justify-content: start;
  align-items: start;
  justify-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 rgba(0, 0, 0, .18);
}

.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: rgba(190, 74, 165, .1);
}

.text-size-regular {
  font-family: Roboto Mono, sans-serif;
  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 {
  font-family: Roboto Mono, sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  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: rgba(0, 0, 0, .6);
}

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

.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;
  align-items: center;
  justify-items: start;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: grid;
}

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

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

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

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

.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 rgba(0, 0, 0, .05);
}

.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 rgba(0, 0, 0, .1), 0 1px 2px rgba(0, 0, 0, .06);
}

.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);
  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-family: Roboto Mono, sans-serif;
  font-size: .875rem;
}

.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 rgba(0, 0, 0, .08), 0 8px 8px -4px rgba(0, 0, 0, .03);
}

.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 rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .06);
}

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

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

.shadow-medium {
  box-shadow: 0 12px 16px -4px rgba(0, 0, 0, .08), 0 4px 6px -2px rgba(0, 0, 0, .03);
}

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

.text-size-large.text-weight-bold {
  color: var(--base-color-brand--white);
  font-family: Caveat, sans-serif;
  font-weight: 400;
}

.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: #eee;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.rl-styleguide_spacing {
  border: 1px dashed #d3d3d3;
}

.padding-global {
  background-color: #f9f5f3;
  border: 0 solid #f9f5f3;
  padding: 5%;
}

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

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

.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: #161616;
  border-radius: .75rem;
  margin-top: 1rem;
  padding: .5rem;
  position: -webkit-sticky;
  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 {
  color: var(--link-color--link-primary);
  background-color: #fff;
}

.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(--text-color--text-secondary);
}

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

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

.rl-styleguide_ratio-bg {
  z-index: -1;
  background-color: #eee;
  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_container {
  opacity: 1;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-right: auto;
  display: flex;
}

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

.navbar1_component {
  border-bottom: 1px solid var(--border-color--border-primary);
  background-color: var(--base-color-neutral--white);
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.navbar1_menu-button {
  padding: 0;
}

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

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

.navbar1_dropdown-toggle {
  grid-column-gap: .5rem;
  align-items: center;
  padding: .5rem 1rem;
  display: flex;
}

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

.navbar1_link {
  padding: .5rem 1rem;
}

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

.navbar1_dropdown-link {
  padding: .5rem 1rem;
}

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

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

.image-overlay-layer {
  z-index: 1;
  background-color: rgba(0, 0, 0, .5);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.image-overlay-layer.hide {
  display: none;
}

.home_hero-header_component {
  flex-direction: column;
  height: 100svh;
  min-height: 100svh;
  display: flex;
}

.home_hero-header_content-wrapper {
  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_hero-header_image-wrapper {
  flex: 1;
  position: relative;
}

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

.home_hero-header_background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

.home_feature_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_image {
  width: 100%;
  height: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

.home_contact_item {
  display: flex;
}

.home_contact_map {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

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

.home_contact_map-wrapper {
  width: 100%;
  height: 35rem;
  position: relative;
}

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

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

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

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

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

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

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

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

.footer2_social-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;
  align-items: start;
  justify-items: start;
  display: grid;
}

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

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

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

.line-divider {
  background-color: var(--base-color-neutral--black);
  width: 100%;
  height: 1px;
}

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

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

.navbar {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  height: 72px;
  padding-left: 64px;
  padding-right: 64px;
  text-decoration: none;
  display: flex;
  box-shadow: inset 0 -1px #000;
}

.container {
  grid-column-gap: 16px;
  border: 1px solid var(--text--primary);
  flex: 0 auto;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 24px;
  text-decoration: none;
  display: flex;
}

.column {
  grid-column-gap: 32px;
  grid-row-gap: 24px;
  background-color: #fff;
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.vectors-wrapper {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 63px;
  height: 27px;
  text-decoration: none;
  display: flex;
}

.column-2 {
  grid-column-gap: 32px;
  background-color: #fff;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.column-3 {
  grid-column-gap: 32px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.text {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.nav-link-dropdown {
  grid-column-gap: 4px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.vectors-wrapper-2 {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  text-decoration: none;
  display: flex;
}

.button-2 {
  grid-column-gap: 8px;
  background-color: #000;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  text-decoration: none;
  display: flex;
}

.text-2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.breakpoint-desktop {
  background-color: var(--background-color--primary);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  height: 1024px;
  text-decoration: none;
  display: flex;
}

.content {
  grid-column-gap: 80px;
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 80px 64px;
  text-decoration: none;
  display: flex;
}

.medium-length-hero-headline-goes-here {
  color: var(--text--primary);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 120%;
  text-decoration: none;
}

.error-73520162-5772-08aa-e047-79f2598a0ec8 {
  color: var(--text--primary);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.actions {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 480px;
  padding-top: 16px;
  text-decoration: none;
  display: flex;
}

.button {
  grid-column-gap: 8px;
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 8px 20px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
  display: flex;
}

.style-primary-small-false-dark-mode-false-icon-position-no-icon {
  grid-column-gap: 8px;
  background-color: #000;
  border: 1px solid #000;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  text-decoration: none;
  display: flex;
}

.style-secondary-small-false-dark-mode-false-icon-position-no-icon {
  grid-column-gap: 8px;
  border: 1px solid var(--color-neutral--black);
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  text-decoration: none;
  display: flex;
}

.event-item-header-4-desktop {
  grid-row-gap: 80px;
  background-color: var(--background-color--primary);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1440px;
  padding: 112px 64px;
  text-decoration: none;
  display: flex;
}

.heading {
  color: var(--text--primary);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  text-decoration: none;
}

.text {
  color: var(--text--primary);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.form {
  grid-column-gap: 16px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.text-input {
  grid-column-gap: 8px;
  border: 1px solid var(--color-neutral--black);
  background-color: var(--color-neutral--white);
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 12px;
  text-decoration: none;
  display: flex;
}

.placeholder {
  color: var(--color-neutral--neutral);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.error-732fb550-1695-d286-d441-787bc0800474 {
  color: var(--text--primary);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.events-date {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.date {
  color: var(--text--primary);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  text-decoration: none;
}

.event-content {
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.event-time {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 64px;
  text-decoration: none;
  display: flex;
}

.divider {
  border: undefinedpx solid var(--border--primary);
}

.tag {
  background-color: var(--color-neutral--neutral-lightest);
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 4px 8px;
  text-decoration: none;
  display: flex;
}

.category {
  color: var(--text--primary);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  text-decoration: none;
}

.style-link-small-false-dark-mode-false-icon-position-leading {
  grid-column-gap: 8px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.type-default {
  grid-column-gap: 8px;
  border: 1px solid var(--color-neutral--black);
  background-color: var(--color-neutral--white);
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 560px;
  padding: 12px;
  text-decoration: none;
  display: flex;
}

.navbar-1 {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  height: 72px;
  padding-left: 64px;
  padding-right: 64px;
  text-decoration: none;
  display: flex;
  box-shadow: inset 0 -1px #000;
}

.vector {
  background-color: #000;
}

.link-one, .link-two, .link-three, .link-four {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.navbar1_link-2 {
  color: var(--link-color--link-primary);
  padding: .5rem 1rem;
  font-family: Roboto Mono, sans-serif;
}

.navbar1_link-2.w--current {
  color: var(--base-color-neutral--black);
  font-family: Roboto Mono, sans-serif;
}

.navbar1_component-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  opacity: 1;
  background-color: #fff;
  border: 2px solid #00f;
  border-radius: 1px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 4.5rem;
  display: flex;
}

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

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

.navbar1_dropdown-link-2 {
  color: var(--link-color--link-primary);
  padding: .5rem 1rem;
}

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

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

.header9_component {
  flex-direction: column;
  height: 120svh;
  min-height: 110svh;
  display: flex;
}

.section_header9 {
  display: block;
}

.header9_content-wrapper {
  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;
}

.header9_image-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #f9f5f3;
  background-image: url('../images/izziavanibg3.jpg');
  background-position: 0 0;
  background-size: contain;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  min-height: 80%;
  padding-bottom: 0;
  display: block;
  position: relative;
  overflow: visible;
}

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

.header9_background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.event-item-header4_countdown-divider {
  background-color: var(--base-color-neutral--black);
  border: 1px solid #1107ed;
  width: 1px;
}

.event-item-header4_title-wrapper {
  flex-direction: column;
  display: flex;
}

.event-item-header4_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;
  margin-bottom: 10%;
  display: grid;
}

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

.event-item-header4_form-block {
  max-width: 30rem;
  margin-bottom: 0;
}

.event-item-header4_number-changes {
  display: none;
}

.event-item-header-4-instructions-delete {
  background-color: var(--base-color-neutral--neutral-lightest);
  text-align: left;
  padding: 2rem;
}

.event-item-header4_countdown {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: rgba(255, 255, 255, 0);
  border: 2px solid #1107ed;
  padding: 1rem 1.5rem;
  display: flex;
}

.event-item-header4_form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  margin-bottom: 1rem;
  display: grid;
}

.event-item-header4_countdown-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-left: 0;
  display: flex;
}

.event-item-header4_instructions-callout {
  background-color: rgba(0, 0, 0, .1);
  align-items: center;
  padding: 1.5rem;
  line-height: 1.6;
}

.event-item-header4_instructions-callout-image {
  margin-top: 1.5rem;
}

.section_event-item-header4 {
  border: 0 solid #000;
}

.event-item-header4_tag-item {
  background-color: var(--base-color-neutral--neutral-lightest);
  margin-top: 1rem;
  padding: .25rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}

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

.event-item-header4_number-change {
  display: none;
}

.event-item-header4_number-wrapper {
  flex-direction: column;
  align-items: center;
  min-width: 4.5rem;
  display: flex;
}

.heading-2 {
  color: var(--blue);
  text-align: center;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: var(--base-color-brand--black);
  margin: -2.3rem -2.3rem -6rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 16rem;
  line-height: 1;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.padding-global-copy {
  background-color: #f9f5f3;
  border: 0 solid #1107ed;
  padding-left: 5%;
  padding-right: 5%;
}

.text-size-medium-copy {
  color: var(--base-color-brand--black);
  font-size: 1.125rem;
}

.event18_category {
  background-color: var(--base-color-neutral--neutral-lightest);
  padding: .25rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

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

.event18_list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  outline-offset: 0px;
  border-radius: 0;
  outline: 3px #000;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
}

.event18_icon-wrapper {
  flex: none;
  margin-right: .5rem;
}

.event18_category-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  display: flex;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.event18_image-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.section_event18 {
  background-color: #fff;
}

.event18_meta-tag {
  align-items: center;
  display: flex;
}

.event18_button-wrapper {
  margin-top: 1.5rem;
  display: flex;
}

.text-size-medium-2 {
  color: var(--base-color-brand--black);
  font-family: Roboto Mono, sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
}

.text-size-medium-2.text-weight-bold {
  color: var(--base-color-brand--black);
  font-weight: 500;
}

.event18_link {
  border: 2px solid var(--blue);
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 10px 3px #b2bdf3;
}

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

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

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

.event18_item-content {
  background-color: #fff;
  padding: 1.5rem;
}

.event18_image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background-color: #dd7b7b;
  width: 100%;
  height: 100%;
}

.event18_item {
  outline-offset: 0px;
  border-radius: 0;
  outline: 2px #000;
}

.event18_meta-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-family: Roboto Mono, sans-serif;
  display: flex;
}

.section_layout414 {
  overflow: hidden;
}

.layout414_content-bottom {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  display: flex;
  overflow: hidden;
}

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

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

.layout414_content-top {
  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;
}

.padding-global-3 {
  background-color: #f8f5f3;
  padding-top: 3%;
  padding-left: 5%;
  padding-right: 5%;
}

.layout414_image-wrapper {
  border: 4px solid #000;
  border-radius: 6px;
  width: 30vw;
}

.layout414_image {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.padding-global-3-copy {
  padding-bottom: 23px;
  padding-left: 0%;
  padding-right: 0%;
}

.padding-section-large-copy {
  background-color: #f9f5f3;
  padding-top: 0;
  padding-bottom: 0;
}

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

.contact27_map {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.contact27_location {
  width: 100%;
}

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

.contact27_map-wrapper {
  width: 100%;
  height: 24rem;
  position: relative;
}

.header108_image-list {
  z-index: 1;
  grid-template-rows: auto;
  grid-template-columns: 32% 36% 32%;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80vh;
  display: grid;
}

.header108_image-wrapper {
  flex: none;
  position: relative;
}

.header108_image-wrapper.is-image-small {
  width: 20vw;
}

.header108_image-wrapper.is-image-large {
  width: 36vw;
  height: 80vh;
}

.header108_image-group-right {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-items: center;
  justify-items: end;
  padding-left: 1rem;
  padding-right: 1rem;
  display: grid;
}

.header108_ix-trigger {
  z-index: -1;
  margin-top: 100vh;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.header108_component {
  height: 120vh;
  position: relative;
}

.header108_image-group-left {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-items: center;
  justify-items: end;
  padding-left: 1rem;
  padding-right: 1rem;
  display: grid;
}

.header108_image3, .header108_image5 {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
}

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

.header108_image2 {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

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

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

.header108_content-bottom {
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.header108_small-image-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 18vw;
  display: grid;
  position: relative;
}

.header108_image6 {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.layout488_component {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200vh;
  position: relative;
}

.layout488_content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: #f8f5f3;
  grid-template-rows: auto;
  grid-template-columns: 40% max-content 40%;
  grid-auto-columns: 1fr;
  align-content: center;
  justify-content: center;
  align-items: center;
  justify-items: center;
  height: 100vh;
  padding-left: 5%;
  padding-right: 5%;
  display: grid;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.layout488_image {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 9999px;
  width: 100%;
  height: 100%;
}

.layout488_image-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 4rem;
  max-width: 24rem;
  display: flex;
  position: relative;
}

.layout488_ix-trigger {
  z-index: -1;
  margin-top: 100vh;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.layout488_circle {
  z-index: -1;
  background-color: var(--base-color-brand--white);
  border-radius: 99999px;
  width: 4vh;
  height: 4vh;
  position: absolute;
}

.layout488_heading {
  z-index: 1;
  white-space: nowrap;
  font-size: 6rem;
  position: relative;
}

.layout488_heading.heading-1 {
  color: var(--blue);
  text-align: left;
  font-family: Roboto Mono, sans-serif;
}

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

.layout488_heading.heading-2 {
  color: var(--blue);
  text-align: right;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 0;
  font-family: Roboto Mono, sans-serif;
}

.banner15_image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 6rem;
}

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

.banner15_inner-wrapper {
  justify-content: flex-end;
  display: flex;
}

.banner15_image-wrapper {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.banner15_component {
  justify-content: flex-end;
  width: 100vw;
  max-width: 100%;
  display: flex;
  overflow: hidden;
}

.banner15_heading-wrapper {
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
}

.banner15_marquee {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: space-around;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: grid;
}

.faq6_accordion {
  border: 2px solid var(--blue);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.faq6_question {
  cursor: pointer;
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  display: flex;
}

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

.faq6_answer {
  background-color: #fff;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-family: Roboto Mono, sans-serif;
  font-weight: 300;
  overflow: hidden;
}

.faq6_icon-wrapper {
  align-self: flex-start;
  width: 2rem;
  margin-left: 1.5rem;
  display: flex;
}

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

.image {
  max-width: 30%;
}

.layout408_card-content {
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  display: flex;
}

.layout408_card {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border: 1px solid var(--border-color--border-primary);
  background-color: var(--base-color-neutral--white);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  align-items: stretch;
  height: 80vh;
  margin-bottom: 10vh;
  display: grid;
  position: -webkit-sticky;
  position: sticky;
  top: 10%;
  overflow: hidden;
}

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

.layout408_component {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.layout361_card-content {
  background-color: #fff;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 3rem;
  display: flex;
}

.button-3 {
  border: 1px solid var(--black-archive\<deleted\|variable-dccb7db6\>);
  background-color: var(--black-archive\<deleted\|variable-dccb7db6\>);
  color: var(--white-archive\<deleted\|variable-1766b841\>);
  text-align: center;
  padding: .75rem 1.5rem;
}

.button-3.is-link {
  color: var(--black-archive\<deleted\|variable-dccb7db6\>);
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

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

.button-3.is-secondary {
  color: var(--black-archive\<deleted\|variable-dccb7db6\>);
  background-color: rgba(0, 0, 0, 0);
}

.layout361_image-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.layout361_row {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.layout361_card {
  border: 2px solid #00f;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: flex;
}

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

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

.layout374_card-small-image-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.layout374_card-large-content {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding: 3rem;
  display: flex;
}

.layout374_card-large-image-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.layout374_card-small-content {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  padding: 1.5rem;
  display: flex;
}

.layout374_card-small {
  border: 1px solid var(--border-color--border-primary);
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: flex;
}

.layout374_card-small-image {
  background-image: url('../images/IMG_7214.jpg');
  background-position: 0 0;
  background-size: cover;
}

.layout374_card-large {
  border: 1px solid var(--border-color--border-primary);
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: flex;
}

.button-4 {
  border: 1px solid var(--base-color-neutral--black);
  background-color: var(--base-color-neutral--black);
  color: var(--base-color-neutral--white);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-4.is-link {
  color: var(--base-color-neutral--black);
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

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

.button-4.is-secondary {
  color: var(--base-color-neutral--black);
  background-color: rgba(0, 0, 0, 0);
}

.layout361_image-wrapper-copy {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.image-2 {
  padding-top: 10px;
}

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

.heading-style-h1-3 {
  color: var(--blue);
  text-align: justify;
  font-family: Caveat, sans-serif;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.header1_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;
  padding-top: 5%;
  display: grid;
}

.header1_image {
  background-color: #fff;
  border: 2px #00f;
  border-radius: 1px;
  width: 100%;
  height: 100%;
  box-shadow: -8px 10px 2px -4px #b2bdf3;
}

.button-5 {
  border: 1px solid var(--base-color-neutral--black);
  background-color: var(--base-color-neutral--black);
  color: var(--base-color-neutral--white);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-5.is-secondary {
  color: var(--base-color-neutral--black);
  background-color: rgba(0, 0, 0, 0);
}

.header9_component-2 {
  flex-direction: column;
  height: 100svh;
  min-height: 100svh;
  margin-top: 0%;
  margin-bottom: 0%;
  display: flex;
}

.header9_image-wrapper-2 {
  background-color: #f8f5f3;
  background-image: url('../images/izziavani56.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  flex: 1;
  margin: 2% 0 36px;
  padding-bottom: 0;
  position: relative;
}

.heading-style-h1-4 {
  color: var(--base-color-brand--white);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.button-6 {
  border: 1px solid var(--base-color-neutral--black);
  background-color: var(--base-color-neutral--black);
  color: var(--base-color-neutral--white);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-6.is-secondary {
  color: var(--base-color-neutral--black);
  background-color: rgba(0, 0, 0, 0);
}

.section_banner14 {
  overflow: hidden;
}

.banner14_component {
  border-top: 1px solid var(--border-color--border-primary);
  border-bottom: 1px solid var(--border-color--border-primary);
  white-space: nowrap;
  display: flex;
}

.banner14_marquee-wrapper {
  white-space: nowrap;
  background-color: #00f;
  align-items: center;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  overflow: hidden;
}

.banner14_marquee {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  margin-left: 3rem;
  display: grid;
}

.section_banner11 {
  background-color: #f8f5f3;
  border-bottom: 1px #000;
  padding-top: 3%;
}

.banner11_component {
  border-bottom: 1px solid var(--border-color--border-primary);
  width: 100vw;
  max-width: 100%;
  padding-top: 0;
  display: flex;
  overflow: hidden;
}

.banner11_wrapper {
  width: 200vw;
  padding-top: 0;
  display: flex;
}

.banner11_marquee {
  background-color: #00f;
  border: 0 #000;
  justify-content: space-around;
  align-items: center;
  width: 100vw;
  padding-top: .25rem;
  padding-bottom: .25rem;
  display: flex;
}

.banner11_text-wrapper {
  justify-content: center;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

.banner11_text {
  color: var(--base-color-brand--white);
  font-family: Caveat, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.heading-3 {
  font-family: Caveat, sans-serif;
}

.section_banner11-copy {
  background-color: #f8f5f3;
  border-bottom: 1px #000;
  padding-top: 3%;
}

.image-3 {
  max-width: 70%;
}

.image-4 {
  text-align: center;
  max-width: 60%;
}

.image-5 {
  object-fit: none;
}

.paragraph {
  text-align: left;
}

.paragraph-2 {
  text-align: left;
  font-family: Roboto Mono, sans-serif;
  font-weight: 300;
}

.paragraph-3, .paragraph-4, .paragraph-5, .paragraph-6 {
  text-align: left;
}

.padding-global-3-copy {
  background-color: #f8f5f3;
  padding-top: 0%;
  padding-left: 5%;
  padding-right: 5%;
}

.heading-4, .heading-5, .heading-6, .heading-7 {
  text-align: left;
  font-family: Roboto Mono, sans-serif;
  font-weight: 600;
}

.heading-8 {
  text-align: left;
  font-family: Roboto Mono, sans-serif;
}

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

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

.text-size-medium-3 {
  font-family: Roboto Mono, sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
}

.padding-global-copy {
  background-color: #f9f5f3;
  border: 0 solid #f9f5f3;
  padding: 5% 5% 0%;
}

.image-6 {
  max-width: 60%;
}

.container-large-copy {
  width: 20%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
}

.section_banner11-copy-copy {
  background-color: #f8f5f3;
  border-bottom: 1px #000;
  padding-top: 0%;
}

.paragraph-7, .paragraph-8, .paragraph-9, .paragraph-10 {
  font-family: Roboto Mono, sans-serif;
  font-weight: 300;
}

.text-size-medium-2-copy {
  color: var(--base-color-brand--black);
  font-family: Roboto Mono, sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
}

.text-size-medium-2-copy.text-weight-bold {
  color: var(--base-color-brand--black);
  font-weight: 500;
}

.padding-global-5 {
  background-color: #f8f5f3;
  padding-left: 5%;
  padding-right: 5%;
}

.banner5_wrapper {
  border: 2px solid var(--blue);
  background-color: var(--blue);
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
  padding: .5rem 1rem;
  display: flex;
  position: relative;
}

.banner5_content {
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-left: 3rem;
  display: flex;
}

.banner5_close-button {
  margin-left: 1rem;
}

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

.margin-bottom-copy, .margin-bottom-copy.margin-xxlarge, .margin-bottom-copy.margin-medium, .margin-bottom-copy.margin-custom3, .margin-bottom-copy.margin-custom1, .margin-bottom-copy.margin-tiny, .margin-bottom-copy.margin-small {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom-copy.margin-large, .margin-bottom-copy.margin-0, .margin-bottom-copy.margin-xlarge, .margin-bottom-copy.margin-xhuge, .margin-bottom-copy.margin-xxhuge, .margin-bottom-copy.margin-huge, .margin-bottom-copy.margin-xxsmall, .margin-bottom-copy.margin-custom2, .margin-bottom-copy.margin-xsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom-copy.margin-small-copy {
  text-align: center;
  margin-bottom: 0;
}

.text-block {
  color: var(--base-color-brand--white);
  font-family: Roboto Mono, sans-serif;
}

.text-span {
  color: var(--base-color-brand--white);
  text-decoration: underline;
}

.text-block-copy {
  color: var(--base-color-brand--white);
  font-family: Roboto Mono, sans-serif;
}

.margin-bottom-copy, .margin-bottom-copy.margin-xxlarge, .margin-bottom-copy.margin-medium, .margin-bottom-copy.margin-custom3, .margin-bottom-copy.margin-custom1, .margin-bottom-copy.margin-tiny, .margin-bottom-copy.margin-small {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom-copy.margin-small.z {
  z-index: 10;
  position: relative;
}

.margin-bottom-copy.margin-large, .margin-bottom-copy.margin-0, .margin-bottom-copy.margin-xlarge, .margin-bottom-copy.margin-xhuge, .margin-bottom-copy.margin-xxhuge, .margin-bottom-copy.margin-huge, .margin-bottom-copy.margin-xxsmall, .margin-bottom-copy.margin-custom2, .margin-bottom-copy.margin-xsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom-copy.margin-small, .margin-bottom-copy.margin-small-copy, .margin-bottom-copy.margin-small-copy-copy {
  text-align: center;
}

.margin-bottom-copy-copy, .margin-bottom-copy-copy.margin-xxlarge, .margin-bottom-copy-copy.margin-medium, .margin-bottom-copy-copy.margin-custom3, .margin-bottom-copy-copy.margin-custom1, .margin-bottom-copy-copy.margin-tiny, .margin-bottom-copy-copy.margin-small {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom-copy-copy.margin-small.z {
  z-index: 10;
  position: relative;
}

.margin-bottom-copy-copy.margin-large, .margin-bottom-copy-copy.margin-0, .margin-bottom-copy-copy.margin-xlarge, .margin-bottom-copy-copy.margin-xhuge, .margin-bottom-copy-copy.margin-xxhuge, .margin-bottom-copy-copy.margin-huge, .margin-bottom-copy-copy.margin-xxsmall, .margin-bottom-copy-copy.margin-custom2, .margin-bottom-copy-copy.margin-xsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom-copy-copy.margin-small, .margin-bottom-copy-copy.margin-small-copy {
  text-align: center;
}

.margin-bottom-copy-copy.margin-small-copy-copy {
  text-align: center;
  padding-bottom: 4%;
}

@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: 0;
    padding-bottom: 0;
  }

  .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-top {
    background-color: var(--base-color-neutral--black);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .dropdown-chevron {
    top: auto;
    bottom: auto;
    left: auto;
    right: 0%;
  }

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

  .navbar1_menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

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

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

  .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-buttons {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 1.5rem;
    margin-left: 0;
  }

  .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_link {
    width: auto;
    padding: .75rem 0;
    font-size: 1.125rem;
  }

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

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

  .navbar1_menu {
    border-bottom: 1px solid var(--border-color--border-primary);
    background-color: var(--base-color-neutral--white);
    -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;
  }

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

  .home_hero-header_content-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

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

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

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

  .home_contact_map-wrapper {
    height: 30rem;
  }

  .footer2_bottom-wrapper {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }

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

  .footer2_social-list {
    margin-bottom: 2rem;
  }

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

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

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

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

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

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

  .navbar1_menu-2 {
    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-2.is-page-height-tablet {
    height: 100dvh;
    padding-bottom: 6.5rem;
    transition: height .5s;
  }

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

  .event-item-header4_component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .event-item-header4_form {
    grid-column-gap: 1rem;
  }

  .event-item-header4_countdown-wrapper {
    align-items: flex-start;
  }

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

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

  .padding-section-large-copy {
    padding-top: 0;
    padding-bottom: 0;
  }

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

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

  .contact27_map-wrapper {
    height: 20rem;
  }

  .header108_image-list {
    height: 70vh;
  }

  .header108_image-wrapper.is-image-small {
    width: 25vw;
  }

  .layout488_content {
    height: 100svh;
  }

  .layout488_heading {
    font-size: 4rem;
  }

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

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

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

  .layout408_card-content, .layout361_card-content {
    padding: 2rem;
  }

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

  .layout374_card-large-content {
    padding: 2rem;
  }

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

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

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

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

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

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

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

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

@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: 0;
    padding-bottom: 0;
  }

  .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_component {
    height: auto;
    min-height: 4rem;
  }

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

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

  .home_hero-header_component {
    height: auto;
    max-height: none;
  }

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

  .home_feature_component, .home_benefits_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .home_newsletter_component {
    grid-row-gap: 3rem;
  }

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

  .home_contact_map-wrapper {
    height: 25rem;
  }

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

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

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

  .footer2_credit-text {
    margin-top: 1rem;
  }

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

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

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

  .header9_component {
    height: auto;
    max-height: none;
  }

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

  .header9_image-wrapper {
    background-position: 50%;
  }

  .event-item-header4_component {
    grid-row-gap: 3rem;
  }

  .event-item-header4_form {
    grid-column-gap: 1rem;
  }

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

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

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

  .layout414_content-top {
    grid-template-columns: 1fr;
  }

  .layout414_image-wrapper {
    width: 40vw;
  }

  .padding-section-large-copy {
    padding-top: 0;
    padding-bottom: 0;
  }

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

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

  .header108_image-list {
    grid-template-columns: 25% 50% 25%;
    height: 60vh;
  }

  .header108_image-wrapper.is-image-small {
    display: none;
  }

  .header108_image-wrapper.is-image-large {
    width: 50vw;
    height: 60vh;
  }

  .header108_small-image-group {
    width: 40vw;
  }

  .layout488_component {
    height: 200vh;
  }

  .layout488_content {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 60%;
  }

  .layout488_heading {
    font-size: 3rem;
  }

  .layout488_heading.heading-1 {
    display: none;
  }

  .layout488_heading.show-mobile-landscape {
    margin-top: 2.5rem;
    display: flex;
  }

  .layout488_heading.heading-2 {
    display: none;
  }

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

  .banner15_image-wrapper {
    height: 4rem;
  }

  .faq6_question {
    padding: 1rem 1.25rem;
  }

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

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

  .faq6_icon-wrapper {
    width: 1.75rem;
  }

  .layout408_card-content {
    padding: 1.5rem;
  }

  .layout408_card {
    grid-template-columns: 1fr;
    height: auto;
    margin-bottom: 0;
    position: static;
  }

  .layout408_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .layout361_card-content {
    padding: 1.5rem;
  }

  .layout361_row {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

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

  .layout361_component, .layout374_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .layout374_row {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
  }

  .layout374_card-large-content {
    padding: 1.5rem;
  }

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

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

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

  .header9_component-2 {
    height: auto;
    max-height: none;
  }

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

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

  .banner11_text {
    font-size: 1.125rem;
  }

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

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

  .banner5_wrapper {
    padding-right: .5rem;
  }

  .banner5_content {
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: 0;
    margin-right: 1rem;
  }

  .banner5_close-button {
    margin-left: 0;
  }

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

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

  .button.is-secondary {
    justify-content: center;
    align-items: center;
    min-width: 200px;
    max-width: 300px;
    display: flex;
  }

  .heading-style-h4 {
    display: none;
  }

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

  .rl-styleguide_component, .home_hero-header_content-wrapper, .home_feature_item-list, .home_feature_component, .home_benefits_item-list, .home_benefits_component {
    grid-template-columns: 1fr;
  }

  .signup-form-wrapper {
    grid-row-gap: .75rem;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .home_newsletter_component, .home_contact_component, .home_contact_contact-list {
    grid-template-columns: 1fr;
  }

  .footer2_left-wrapper {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .footer2_form {
    grid-row-gap: 12px;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .footer2_top-wrapper {
    grid-row-gap: 48px;
  }

  .header9_component {
    min-height: 100svh;
  }

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

  .event-item-header4_countdown-divider {
    display: none;
  }

  .event-item-header4_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .event-item-header4_countdown {
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    display: none;
  }

  .event-item-header4_form {
    grid-row-gap: .75rem;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .event-item-header4_countdown-wrapper {
    display: none;
  }

  .heading-2 {
    font-size: 3rem;
  }

  .event18_list {
    grid-row-gap: 3rem;
  }

  .event18_meta-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .layout414_content-top {
    grid-template-columns: 1fr;
  }

  .padding-global-3-copy {
    padding-bottom: 0;
    padding-left: 5%;
  }

  .padding-section-large-copy {
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .header108_image-wrapper {
    width: 40vw;
  }

  .layout488_content {
    grid-row-gap: 1rem;
  }

  .layout488_heading {
    font-size: 1.75rem;
  }

  .faq6_component, .layout361_row, .layout374_row {
    grid-template-columns: 1fr;
  }

  .layout374_card-large-content {
    display: block;
  }

  .layout374_card-large {
    flex-direction: column;
    display: flex;
  }

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

  .heading-style-h1-3 {
    text-align: left;
    margin-top: 1rem;
    font-size: 3.5rem;
    line-height: 1;
  }

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

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

  .image-3, .image-4 {
    max-width: 100%;
  }

  .heading-8 {
    font-weight: 500;
  }

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

  .image-6 {
    max-width: 90%;
  }

  .container-large-copy {
    width: 90%;
  }

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

  .margin-bottom-copy.margin-small-copy {
    padding-bottom: 5%;
  }

  .text-block, .text-block-copy {
    color: var(--base-color-brand--white);
  }

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

#w-node-_336be75c-ab2b-838b-5642-972b6cc86205-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86207-7f6e1c09 {
  justify-self: center;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8621b-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8621c-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86220-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86221-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86225-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86226-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622a-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622b-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622f-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86230-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86234-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86235-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8623f-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86240-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86244-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86245-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86249-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624a-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624e-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624f-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86253-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86254-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86258-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86259-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86263-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86264-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86268-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86269-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8626d-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8626e-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86272-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86273-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8627c-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8627d-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86286-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86287-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86299-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629a-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629e-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629f-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a3-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a4-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a8-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a9-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ad-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ae-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862b8-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862b9-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862bd-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862be-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c2-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c3-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c7-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c8-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862cc-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862cd-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862d1-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862d2-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862dd-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862de-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e2-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e3-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e7-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e8-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ec-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ed-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f1-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f2-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f6-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f7-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862fb-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862fc-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86300-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86301-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86305-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86306-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86310-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86311-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86315-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86316-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8631a-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8631b-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86322-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86323-7f6e1c09 {
  justify-self: start;
}

#w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd5fd-7f6e1c09, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd600-7f6e1c09, #w-node-_5260568a-938d-ea68-0c74-308a8209edce-7f6e1c09, #w-node-_5260568a-938d-ea68-0c74-308a8209edd1-7f6e1c09, #w-node-_06b32c98-aea3-8ba0-a51d-a7fca0302b82-7f6e1c09, #w-node-_06b32c98-aea3-8ba0-a51d-a7fca0302b85-7f6e1c09, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd604-7f6e1c09, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd605-7f6e1c09, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd608-7f6e1c09, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd609-7f6e1c09, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd60c-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc86393-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86394-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8638e-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8638f-7f6e1c09 {
  justify-self: start;
}

#w-node-_7304dac8-f593-d71d-1de4-011e92740d9b-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7304dac8-f593-d71d-1de4-011e92740d9c-7f6e1c09 {
  justify-self: start;
}

#w-node-c97d2f4c-a980-bb5b-78e5-2721ac744da4-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c97d2f4c-a980-bb5b-78e5-2721ac744da5-7f6e1c09 {
  justify-self: start;
}

#w-node-_06aa1bf4-9138-5698-358d-7b7066841d42-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_06aa1bf4-9138-5698-358d-7b7066841d43-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ba-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc863bd-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc863be-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c1-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c2-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c5-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c6-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ca-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc863cd-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ce-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d1-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d2-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d5-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc863dd-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc863de-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863df-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863e1-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc863e4-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc863e5-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863e6-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ea-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ed-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ee-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ef-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863f3-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc863f7-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863f8-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863fe-7f6e1c09, #w-node-e9f171cc-11b4-0905-714d-593dc5e729cd-7f6e1c09, #w-node-e9f171cc-11b4-0905-714d-593dc5e729ce-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e9f171cc-11b4-0905-714d-593dc5e729cf-7f6e1c09 {
  justify-self: start;
}

#w-node-e9f171cc-11b4-0905-714d-593dc5e729d3-7f6e1c09, #w-node-_803d93b2-f316-78e7-4b37-d40ff102217f-7f6e1c09, #w-node-_803d93b2-f316-78e7-4b37-d40ff1022180-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_803d93b2-f316-78e7-4b37-d40ff1022181-7f6e1c09 {
  justify-self: start;
}

#w-node-_803d93b2-f316-78e7-4b37-d40ff1022187-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc86402-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86403-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86407-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc8640a-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc8640f-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc86410-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86411-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86415-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc86418-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc86419-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8641a-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86420-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc86423-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc86424-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86425-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8642b-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc8642e-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc8642f-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86430-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86438-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc8643b-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc8643c-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8643d-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86449-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc8644a-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8644b-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8644f-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc86454-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc86455-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86456-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8645c-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc86461-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc86462-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86463-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86469-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc8646e-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc8646f-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86470-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86478-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc8647e-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8647f-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86485-7f6e1c09, #w-node-bf202792-073b-d0b9-2e3f-1ac68c32701c-7f6e1c09, #w-node-bf202792-073b-d0b9-2e3f-1ac68c32701d-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bf202792-073b-d0b9-2e3f-1ac68c32701e-7f6e1c09 {
  justify-self: start;
}

#w-node-bf202792-073b-d0b9-2e3f-1ac68c327022-7f6e1c09, #w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e1608-7f6e1c09, #w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e1609-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e160a-7f6e1c09 {
  justify-self: start;
}

#w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e1610-7f6e1c09, #w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece1-7f6e1c09, #w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece2-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece3-7f6e1c09 {
  justify-self: start;
}

#w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece9-7f6e1c09, #w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b7e-7f6e1c09, #w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b7f-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b80-7f6e1c09 {
  justify-self: start;
}

#w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b88-7f6e1c09, #w-node-_0a1c269a-9c65-cac5-d78d-08680a95253d-7f6e1c09, #w-node-_0a1c269a-9c65-cac5-d78d-08680a95253e-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a1c269a-9c65-cac5-d78d-08680a95253f-7f6e1c09 {
  justify-self: start;
}

#w-node-_0a1c269a-9c65-cac5-d78d-08680a952545-7f6e1c09, #w-node-ee513712-f44c-c02b-b1ea-6045fc69ab7c-7f6e1c09, #w-node-ee513712-f44c-c02b-b1ea-6045fc69ab7d-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee513712-f44c-c02b-b1ea-6045fc69ab7e-7f6e1c09 {
  justify-self: start;
}

#w-node-ee513712-f44c-c02b-b1ea-6045fc69ab86-7f6e1c09, #w-node-_40872103-aff7-c010-da67-704a8f3f1108-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_40872103-aff7-c010-da67-704a8f3f1109-7f6e1c09 {
  justify-self: start;
}

#w-node-_40872103-aff7-c010-da67-704a8f3f110f-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc8648f-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc86490-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc86491-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86492-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86494-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc86497-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649b-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649c-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649d-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a6-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a7-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a8-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b1-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b2-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b3-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864b4-7f6e1c09 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864ba-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc864bb-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc864bc-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864bd-7f6e1c09 {
  justify-self: start;
}

#w-node-da163454-3d7f-a6d2-8037-3b46b9c50abd-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c3-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c4-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c5-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864c6-7f6e1c09, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c8-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369290-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369294-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369295-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369297-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369299-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929a-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929c-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929e-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929f-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a1-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a3-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a4-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a6-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a8-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a9-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ab-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ad-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ae-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b0-7f6e1c09, #w-node-_8ec19c33-ae2e-90c5-80bf-3c4e7d639cd4-7f6e1c09, #w-node-_450fae6e-ea6c-c71d-c007-cbe7f109d617-7f6e1c09, #w-node-dcc5fc80-562f-447f-055c-339db14678d8-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b2-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b3-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b5-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b6-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b8-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b9-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bb-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bc-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692be-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bf-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c1-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c2-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c4-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c5-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c7-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692cd-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d1-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d2-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d4-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d6-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d7-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d9-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692db-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692dc-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692de-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e0-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e1-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e3-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e5-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e6-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e8-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ea-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692eb-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ed-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ef-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f0-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f2-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f4-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f5-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f7-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f9-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fa-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fc-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fe-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ff-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369301-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369303-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369304-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369306-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936930b-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936930f-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369311-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369314-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369319-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936931e-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369323-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369328-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936932f-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369330-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369332-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369333-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369335-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369336-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369338-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369339-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933b-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933c-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933e-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933f-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369341-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369342-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369344-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369345-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369347-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369348-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934a-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934b-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934d-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934e-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369350-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369351-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369353-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369354-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369356-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369357-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369359-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935a-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935c-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935d-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935f-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369360-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369362-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369363-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369365-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369366-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369368-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369369-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936b-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936c-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936e-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936f-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369371-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369372-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369374-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369375-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369377-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369378-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937a-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937b-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937d-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937e-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369380-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369381-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369383-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369384-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369386-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369387-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936938c-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369390-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369392-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369395-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936939a-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936939f-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693a4-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693a9-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b0-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b1-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b3-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b4-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b6-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b7-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b9-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ba-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bc-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bd-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bf-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c0-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c2-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c3-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c5-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c6-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c8-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c9-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cb-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cc-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ce-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cf-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d1-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d2-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d4-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d5-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d7-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d8-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693da-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693db-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693dd-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693de-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e0-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e1-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e3-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e4-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e6-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e7-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e9-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ea-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ec-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ed-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ef-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f0-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f2-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f3-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f5-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f6-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f8-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f9-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fb-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fc-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fe-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ff-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369401-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369402-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369404-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369405-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369407-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369408-7f6e1c09, #w-node-aba73718-5f03-827e-9e0b-61449dc1d37c-7f6e1c09, #w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448f8-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448f9-7f6e1c09 {
  justify-self: start;
}

#w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448fb-7f6e1c09, #w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448fc-7f6e1c09, #w-node-_16994295-7a31-57da-1001-8ec0ea846a1e-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_16994295-7a31-57da-1001-8ec0ea846a1f-7f6e1c09 {
  justify-self: start;
}

#w-node-_16994295-7a31-57da-1001-8ec0ea846a21-7f6e1c09, #w-node-_16994295-7a31-57da-1001-8ec0ea846a22-7f6e1c09, #w-node-_8f691932-76bb-1979-3d19-a80adf0a25f2-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8f691932-76bb-1979-3d19-a80adf0a25f3-7f6e1c09 {
  justify-self: start;
}

#w-node-_8f691932-76bb-1979-3d19-a80adf0a25f5-7f6e1c09, #w-node-_8f691932-76bb-1979-3d19-a80adf0a25f6-7f6e1c09, #w-node-f28919c2-e180-d075-d1c2-81b601b8a964-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f28919c2-e180-d075-d1c2-81b601b8a965-7f6e1c09 {
  justify-self: start;
}

#w-node-f28919c2-e180-d075-d1c2-81b601b8a967-7f6e1c09, #w-node-f28919c2-e180-d075-d1c2-81b601b8a968-7f6e1c09, #w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b3-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b4-7f6e1c09 {
  justify-self: start;
}

#w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b6-7f6e1c09, #w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b7-7f6e1c09, #w-node-ee961e8d-845a-edc3-3307-509470022457-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee961e8d-845a-edc3-3307-509470022458-7f6e1c09 {
  justify-self: start;
}

#w-node-ee961e8d-845a-edc3-3307-50947002245a-7f6e1c09, #w-node-ee961e8d-845a-edc3-3307-50947002245b-7f6e1c09, #w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e1-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e2-7f6e1c09 {
  justify-self: start;
}

#w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e4-7f6e1c09, #w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e5-7f6e1c09, #w-node-_626bd165-37fe-b21e-713f-accb16c57414-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_626bd165-37fe-b21e-713f-accb16c57415-7f6e1c09 {
  justify-self: start;
}

#w-node-_626bd165-37fe-b21e-713f-accb16c57417-7f6e1c09, #w-node-_626bd165-37fe-b21e-713f-accb16c57418-7f6e1c09, #w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f40-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f41-7f6e1c09 {
  justify-self: start;
}

#w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f43-7f6e1c09, #w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f44-7f6e1c09, #w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee5-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee6-7f6e1c09 {
  justify-self: start;
}

#w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee8-7f6e1c09, #w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee9-7f6e1c09, #w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe33-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe34-7f6e1c09 {
  justify-self: start;
}

#w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe36-7f6e1c09, #w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe37-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fa-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fe-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694ff-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369503-7f6e1c09, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369505-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369506-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950a-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950b-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950f-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369510-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369514-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369515-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369519-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951a-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951e-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951f-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369523-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369524-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369528-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369529-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952d-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952e-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369532-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369533-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953a-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953b-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953f-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369540-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369544-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369545-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369549-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954a-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954e-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954f-7f6e1c09 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369553-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369554-7f6e1c09 {
  justify-self: start;
}

#w-node-de8106d9-b098-80e3-076c-80f3a0fa5e54-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-de8106d9-b098-80e3-076c-80f3a0fa5e55-7f6e1c09 {
  justify-self: start;
}

#w-node-_680345d6-d141-aefc-5e81-01faad69a792-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_680345d6-d141-aefc-5e81-01faad69a793-7f6e1c09 {
  justify-self: start;
}

#w-node-dc962921-5c74-5687-77a4-c1371012b297-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dc962921-5c74-5687-77a4-c1371012b298-7f6e1c09 {
  justify-self: start;
}

#w-node-bbf5f4a2-0660-a8f8-7799-a71df583db57-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bbf5f4a2-0660-a8f8-7799-a71df583db58-7f6e1c09 {
  justify-self: start;
}

#w-node-_723dac19-3a6b-8f5e-89ce-53b9006ba92c-7f6e1c09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_723dac19-3a6b-8f5e-89ce-53b9006ba92d-7f6e1c09 {
  justify-self: start;
}

#w-node-c0b2ab99-a611-8a67-9016-e9e426f5241c-54b42bc0 {
  justify-self: end;
}

#w-node-c0b2ab99-a611-8a67-9016-e9e426f5241f-54b42bc0 {
  align-self: center;
}

#w-node-c0b2ab99-a611-8a67-9016-e9e426f52426-54b42bc0 {
  justify-self: start;
}

#w-node-c0b2ab99-a611-8a67-9016-e9e426f52427-54b42bc0 {
  align-self: center;
}

#w-node-_5e5b0a78-5e23-b44b-ee6a-36094edbe164-54b42bc0, #w-node-_5e5b0a78-5e23-b44b-ee6a-36094edbe17a-54b42bc0, #w-node-e3f89b4c-ac50-e5ff-3dc0-7725e93e918a-54b42bc0, #w-node-e3f89b4c-ac50-e5ff-3dc0-7725e93e9198-54b42bc0 {
  align-self: start;
}

#w-node-_8d492241-90d4-e092-746d-cf07beb341f9-54b42bc0 {
  justify-self: end;
}

#w-node-_8d492241-90d4-e092-746d-cf07beb341fe-54b42bc0, #w-node-_8d492241-90d4-e092-746d-cf07beb34200-54b42bc0 {
  justify-self: start;
}

@media screen and (max-width: 767px) {
  #w-node-_8d492241-90d4-e092-746d-cf07beb341fb-54b42bc0 {
    order: -9999;
  }

  #w-node-_8d492241-90d4-e092-746d-cf07beb34200-54b42bc0 {
    justify-self: center;
  }
}


