:root {
  --background-color--background-blue: #1b224b;
  --text-color--text-primary: var(--base-color-neutral--black);
  --link-color--link-primary: var(--base-color-neutral--black);
  --border-color--border-primary: var(--base-color-neutral--black);
  --link-color--link-secondary: var(--base-color-neutral--neutral-light);
  --base-color-brand--gradient-pink: #ed2970;
  --base-color-brand--gradient-green: #9bca3b;
  --base-color-brand--brand-yellow: #ffc940;
  --link-color--link-alternate: var(--base-color-neutral--white);
  --base-color-neutral--white: white;
  --base-color-neutral--black: black;
  --text-color--text-alternate: var(--base-color-neutral--white);
  --black-archive\<deleted\|variable-dccb7db6\>: black;
  --background-color--background-secondary: var(--base-color-neutral--neutral-lightest);
  --background-color--background-alternate: var(--base-color-neutral--black);
  --background-color--background-primary: var(--base-color-neutral--white);
  --background-color--background-tertiary: var(--base-color-neutral--neutral-light);
  --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);
  --text-color--text-brand: #ffc940;
  --background-color--color: #131a38;
  --base-color-brand--white: white;
  --base-color-brand--black: #0000;
  --base-color-neutral--neutral-lightest: #eee;
  --border-color--border-alternate: var(--base-color-neutral--white);
  --base-color-brand--gradient-yellow: #d8a228;
  --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;
  --base-color-system--gradient-purple: #aa5ca3;
  --base-color-system--gradient-purple-dark: #534d9f;
  --base-color-system--gradient-purple-blue: #2cabe1;
  --border-color--border-secondary: var(--base-color-neutral--neutral-light);
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

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

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

body {
  background-color: var(--background-color--background-blue);
  color: var(--text-color--text-primary);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Apex Mk 2", Arial, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Apex Mk 2", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Apex Mk 2", Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Apex Mk 2", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Apex Mk 2", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Apex Mk 2", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

p {
  margin-bottom: 0;
  font-family: Lato, sans-serif;
}

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;
  inset: 0%;
}

.overflow-hidden {
  overflow: hidden;
}

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

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

.hide {
  display: none;
}

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

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

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

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

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

.page-wrapper {
  overflow: hidden;
}

.container-large {
  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-small {
  width: 100%;
  max-width: 30rem;
}

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

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

.utility_form-block {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

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

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

.main-wrapper {
  overflow: hidden;
}

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

.container-medium.flex {
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.container-medium.slider {
  width: 100%;
  max-width: 64rem;
}

.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-xxlarge, .margin-bottom.margin-medium, .margin-bottom.margin-custom3, .margin-bottom.margin-custom1 {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-custom1.logos {
  z-index: 10;
  width: 100%;
  margin-bottom: .5rem;
  position: absolute;
  inset: auto 0% 0%;
}

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

.margin-bottom.margin-xsmall {
  align-self: stretch;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.text-align-left.max-width-full.margin-tiny {
  margin-bottom: 0;
}

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

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

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

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

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

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

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

.padding-left.slide-1 {
  padding-left: 1.5rem;
}

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

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

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

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

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

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

.text-size-medium.text-color-alternate.chs {
  font-size: 2rem;
}

.text-size-medium.text-color-alternate.vn {
  font-family: Open Sans, sans-serif;
}

.text-size-medium.text-color-alternate.jp {
  word-break: break-all;
}

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

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

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

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

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

.rl-styleguide_heading {
  z-index: 4;
  color: var(--text-color--text-primary);
  margin-bottom: 1.5rem;
  padding: .25rem .5rem;
  font-size: 3.5rem;
  font-weight: 700;
}

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

.heading-style-h6.text-align-center.text-color-brand {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.6rem;
}

.heading-style-h6.team {
  font-size: 1.4rem;
  font-weight: 700;
}

.heading-style-h6.team.text-color-white {
  font-size: 1.6rem;
  line-height: 1.1;
}

.heading-style-h6.team.text-color-white.ch, .heading-style-h6.team.text-color-white.jp {
  font-size: 1.6rem;
}

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

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

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

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

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

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

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

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

.heading-style-h5.text-color-brand {
  z-index: 10;
  font-size: 2rem;
  position: relative;
}

.heading-style-h5.text-color-brand.chs {
  font-size: 2rem;
}

.heading-style-h5.text-color-brand.jp {
  font-size: 3rem;
}

.heading-style-h5.text-color-brand.vn {
  font-family: Open Sans, sans-serif;
}

.heading-style-h5.banner {
  color: #ffc941;
  -webkit-text-stroke-width: .1px;
  -webkit-text-stroke-color: #ffe4a1;
  text-shadow: 0 1px 1px #0006;
  font-size: 2rem;
  font-weight: 700;
}

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

.heading-style-h1 {
  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 {
  text-transform: uppercase;
  font-size: .7rem;
}

.text-size-tiny.text-color-white {
  text-transform: none;
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.5;
}

.text-size-tiny.text-color-white.opensans {
  font-family: Open Sans, sans-serif;
}

.text-size-tiny.text-style-italic {
  font-size: .6rem;
}

.text-size-tiny.text-style-italic.text-spacing-tight {
  line-height: 1.3;
}

.text-size-tiny.text-style-italic.text-spacing-tight.ch {
  font-size: .7rem;
}

.text-size-tiny.text-color-grey {
  color: var(--link-color--link-secondary);
  text-transform: none;
  margin-left: .5rem;
  line-height: 1;
}

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

.button {
  background-image: linear-gradient(90deg, var(--base-color-brand--gradient-pink), var(--base-color-brand--gradient-green));
  color: var(--text-color--text-primary);
  text-align: center;
  border-radius: 50vh;
  padding: .75rem 1.5rem;
  font-family: Josefinsans Variablefont Wght, sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.button.is-link {
  border-bottom: 1px solid var(--base-color-brand--brand-yellow);
  color: var(--link-color--link-alternate);
  white-space: nowrap;
  background-color: #0000;
  background-image: none;
  border-radius: 0;
  padding: .25rem 0;
  font-size: .8rem;
  line-height: 1;
  text-decoration: none;
}

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

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

.button.is-link._2 {
  display: none;
}

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

.button.is-secondary {
  border: 2px solid var(--base-color-brand--brand-yellow);
  color: var(--link-color--link-alternate);
  background-color: #0000;
  background-image: none;
  padding-top: .8rem;
  padding-bottom: .5rem;
  font-size: .8rem;
  line-height: 1;
}

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

.button.is-secondary.is-small {
  background-image: none;
}

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

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

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

.button.is-tertiary {
  border-color: transparent transparent var(--base-color-brand--brand-yellow);
  color: var(--text-color--text-alternate);
  background-color: #0000;
  background-image: none;
  border-bottom-width: 2px;
  border-radius: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Lato, sans-serif;
}

.button.is-tertiary.is-small {
  background-image: none;
}

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

.button.max-width-full {
  font-family: Josefinsans Variablefont Wght, sans-serif;
  font-weight: 500;
}

.button.max-width-small {
  background-image: linear-gradient(90deg, var(--base-color-brand--gradient-pink), var(--base-color-brand--brand-yellow) 50%, var(--base-color-brand--gradient-green));
  padding-top: 1rem;
}

.button.max-width-small.vn {
  font-family: Open Sans, sans-serif;
  font-weight: 700;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.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-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h3.text-color-brand {
  font-size: 2.5rem;
}

.heading-style-h3.text-color-brand.chs {
  font-size: 5rem;
}

.heading-style-h3.text-color-brand.jp {
  font-size: 4rem;
}

.heading-style-h3.text-color-brand.vn {
  font-family: Open Sans, sans-serif;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-color-black {
  color: var(--black-archive\<deleted\|variable-dccb7db6\>);
}

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

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

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

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

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

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

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

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

.form_radio-icon {
  border: 1px solid var(--border-color--border-primary);
  cursor: pointer;
  border-radius: 100px;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.125rem;
  margin-right: .5rem;
}

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

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

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

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

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

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

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

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

.text-align-center.display-inlineflex {
  z-index: 1;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: stretch;
  margin-left: -4.5rem;
  margin-right: -4.5rem;
  position: relative;
}

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

.text-size-small.title {
  color: var(--text-color--text-alternate);
  font-family: "Apex Mk 2", Arial, sans-serif;
  font-weight: 700;
}

.text-size-small.title.vn {
  font-family: Open Sans, sans-serif;
  font-weight: 700;
}

.text-size-small.text-weight-bold.text-color-alternate {
  font-size: .7rem;
  line-height: 1;
}

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

.form_field-wrapper {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-1x1-medium.coin-tilted {
  width: 9rem;
  height: auto;
}

.icon-1x1-medium.voyage {
  width: 14rem;
  height: auto;
}

.icon-1x1-medium.globe {
  width: 8rem;
  height: auto;
}

.icon-1x1-medium.coins {
  width: 50vw;
  height: auto;
}

.icon-1x1-medium.game-dev {
  width: 10rem;
}

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

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

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

.text-size-large.text-color-alternate.text-line-closer {
  line-height: 1.2;
}

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

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

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

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

.display-inlineflex.gap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: center;
  align-items: center;
}

.display-inlineflex.price-ticker-coin {
  justify-content: center;
  align-items: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rl-styleguide_nav {
  z-index: 1000;
  background-color: var(--background-color--background-alternate);
  border-radius: .75rem;
  margin-top: 1rem;
  padding: .5rem;
  position: sticky;
  top: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

.text-color-secondary {
  color: var(--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: var(--background-color--background-secondary);
  min-width: 3rem;
  height: 100%;
  position: relative;
}

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

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

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

.form_message-success-wrapper {
  padding: 0;
}

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

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

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

.rl-styleguide_component {
  grid-column-gap: 0rem;
  color: #fff;
  background-color: #161616;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  display: grid;
}

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

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

.delete-this {
  display: flex;
}

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

.section_header30 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.section_header30.taller {
  background-image: url('../images/gamers-img3x.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.section_header30.taller._2 {
  background-image: url('../images/SEC-BG-13x.webp');
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.header30_content {
  justify-content: center;
  align-items: center;
}

.header30_content._2 {
  justify-content: center;
  align-items: center;
  height: 60vh;
  display: flex;
}

.header30_background-image-wrapper {
  z-index: -1;
  justify-content: center;
  align-items: center;
}

.header30_background-image-wrapper.display-inlineflex._4 {
  width: 100%;
  position: absolute;
}

.header30_background-image-wrapper.display-inlineflex.for-gamers {
  z-index: 1;
}

.header30_background-image-wrapper.big-circle {
  max-width: none;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  inset: auto 0% 20%;
}

.image-overlay-layer {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.header30_background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: auto 0% 0%;
}

.header30_background-image.ripple {
  width: 60vw;
}

.header30_background-image.scifi {
  object-fit: contain;
  width: 50%;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  position: static;
}

.header30_background-image.scifi._2 {
  width: 100%;
  max-width: none;
  position: absolute;
}

.header30_background-image.scifi._3 {
  width: 100%;
  max-width: none;
}

.header30_background-image.big-circle {
  max-width: none;
  height: auto;
  inset: auto 0% 0%;
}

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

.image {
  width: 100%;
  position: absolute;
  inset: 0%;
}

.grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 80vw;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.scifi-separate {
  z-index: 0;
  width: 100%;
}

.navbar1_component {
  z-index: 999;
  background-color: #ddd0;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar1_container {
  z-index: 10;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 75vw;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.navbar1_logo-link {
  width: 9rem;
}

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

.navbar1_link {
  color: var(--link-color--link-alternate);
  text-transform: uppercase;
  padding: .5rem 1rem;
  font-family: Josefinsans Variablefont Wght, sans-serif;
  font-size: .8rem;
  font-weight: 500;
}

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

.navbar1_link.media {
  display: none;
}

.navbar1_menu-dropdown {
  display: flex;
}

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

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

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

.navbar1_dropdown-link {
  color: var(--link-color--link-alternate);
  padding: .5rem 1rem;
  font-size: .8rem;
}

.navbar1_dropdown-link.w--current {
  color: var(--text-color--text-brand);
}

.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: 3rem;
  display: none;
  position: relative;
}

.navbar1_menu-button {
  padding: 0;
}

.div_pill {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: flex;
  position: absolute;
}

.image-2 {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.section_layout316 {
  position: relative;
}

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

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

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

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

.section_layout330 {
  position: relative;
}

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

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

.layout330_list._2 {
  grid-column-gap: 0rem;
  place-items: center stretch;
}

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

.layout330_background-image-wrapper {
  z-index: -1;
  position: absolute;
  inset: 0%;
}

.layout330_background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.team12_component.margin-bottom.margin-xxhuge {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.team12_list-wrapper {
  width: 50vw;
  max-width: 50em;
  margin-left: auto;
  margin-right: auto;
}

.team12_list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.team12_list.partners {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  place-content: stretch;
}

.team12_item {
  text-align: center;
  background-image: linear-gradient(#fff0, #fff0 67%, #fff3);
  border-radius: 2rem;
  flex-direction: column;
  align-items: stretch;
  padding: 2rem 3rem 1rem;
  display: flex;
}

.team12_item.partners {
  background-image: linear-gradient(#fff0, #fff0 5%, #fff3);
  border-radius: 1rem;
  justify-content: flex-start;
  align-items: stretch;
  height: 100%;
  padding: 1rem;
}

.team12_image-wrapper {
  background-image: url('../images/frame-developer.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  padding: 3rem;
}

.team12_image-wrapper.partners {
  background-image: none;
  padding: 0;
  display: flex;
}

.team12_image {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  max-width: 100%;
}

.team12_image.partners {
  aspect-ratio: auto;
}

.team12_image.partners.neon {
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.team12_title-wrapper {
  color: var(--text-color--text-brand);
}

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

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

.section-spacer {
  position: relative;
}

.image-3 {
  max-width: 50rem;
}

.slanted-l {
  width: 30vw;
  position: absolute;
  inset: auto auto -5% -10%;
}

.slanted-l._2 {
  width: 25vw;
  inset: -5% auto auto 0%;
}

.slanted-l.footer {
  width: 30vw;
  min-height: 100%;
  inset: auto auto 0% 0%;
}

.slanted-r {
  width: 30vw;
  position: absolute;
  inset: auto -10% -5% auto;
}

.slanted-r._2 {
  width: 25vw;
  inset: -5% 0% auto auto;
}

.slanted-r.footer {
  width: 30vw;
  min-height: 100%;
  inset: auto 0% 0% auto;
}

.grids-card {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.card {
  text-align: center;
  border-radius: 2rem;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.bigicon-wrapper {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 70%;
  margin-bottom: -5rem;
  position: relative;
}

.bigicon-wrapper._2 {
  width: 82%;
}

.bigicon._3 {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  top: 5%;
}

.bigicon._2 {
  inset: 0%;
}

.card-wrapper {
  width: 100%;
  height: 100%;
  padding: 0;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.card_title-wrapper {
  color: var(--text-color--text-brand);
  padding-left: 1rem;
  padding-right: 1rem;
  position: absolute;
  inset: 60% 0% auto;
}

.card_list-wrapper {
  max-width: 60vw;
  margin-left: auto;
  margin-right: auto;
}

.card_list-wrapper.team {
  width: 60vw;
  max-width: none;
}

.card_list-wrapper.gamers {
  width: auto;
  max-width: 50rem;
}

.image-4 {
  width: 34rem;
}

.voyage {
  z-index: 2;
  width: 40vw;
  position: relative;
}

.section_header76 {
  justify-content: center;
  align-items: center;
  height: 50svh;
  margin: 3rem auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header76_component {
  grid-column-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

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

.header76_content-right {
  grid-column-gap: 1rem;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.header76_images-layout {
  grid-column-gap: 1rem;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.header76_image-list-left {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  column-count: 2;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-self: center;
  column-gap: 1.5rem;
  width: 100%;
  height: 100%;
  margin-top: -120%;
  display: grid;
}

.header76_image-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.header76_image-wrapper {
  width: 100%;
  padding-top: 120%;
  position: relative;
}

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

.header76_image-list-right {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.masked {
  z-index: 2;
  background-image: linear-gradient(180deg, var(--background-color--background-blue), #1b224b00 30%, #1b224b00 70%, var(--background-color--background-blue));
  width: 100vw;
  height: 100%;
  position: absolute;
}

.section_header64.team {
  padding-top: 3rem;
  padding-bottom: 20rem;
}

.m-logo-big {
  width: 7rem;
}

.footer11_component {
  background-color: var(--background-color--color);
  position: relative;
}

.footer11_top-wrapper {
  grid-column-gap: 4vw;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  align-items: start;
  padding: 3rem;
}

.footer11_logo-link {
  float: none;
  padding-left: 0;
}

.footer11_social-list {
  grid-column-gap: 3rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr 1fr 1fr;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  place-items: center start;
  display: flex;
}

.footer11_social-link {
  color: var(--link-color--link-primary);
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.footer11_menu-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: auto;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
}

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

.footer11_link-list._2, .footer11_link-list._3, .footer11_link-list.image-4 {
  display: none;
}

.footer11_link-list._1 {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
}

.footer11_link {
  color: var(--text-color--text-alternate);
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.footer11_bottom-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer11_credit-text {
  color: var(--text-color--text-alternate);
  font-size: .875rem;
}

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

.footer11_legal-link {
  color: var(--text-color--text-alternate);
  font-size: .875rem;
  text-decoration: underline;
}

.navbar-background {
  background-color: var(--background-color--color);
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0%;
}

.card-frame {
  position: static;
  inset: 0%;
}

.card-wrapper {
  inset: 0%;
}

.card-text {
  margin-bottom: 2rem;
  position: absolute;
  inset: auto 0% 0%;
}

.button-connect {
  justify-content: center;
  align-self: center;
  align-items: stretch;
  width: 9rem;
  display: flex;
  position: relative;
}

.image-8 {
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.code-embed {
  aspect-ratio: 3 / 2;
  object-fit: fill;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: .8rem;
  position: absolute;
  inset: 0%;
}

.code-embed.login {
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.button-color-text {
  color: var(--text-color--text-alternate);
  text-align: center;
  white-space: nowrap;
  word-break: normal;
  padding: 1rem 1.2rem;
  font-size: .8rem;
}

.button-color_wrapper {
  font-size: .8rem;
  line-height: 1;
}

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

.div-block-2 {
  background-color: #000;
  background-image: url('../images/Voyage_1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 250px;
  height: 50px;
}

.button-login {
  justify-content: center;
  align-self: center;
  align-items: stretch;
  width: 9rem;
  display: flex;
  position: relative;
}

.image-9 {
  width: 16rem;
}

.image-10 {
  width: 7.5rem;
}

.div-pill-frame {
  width: 100%;
  height: 7rem;
  position: absolute;
}

.text-block {
  color: var(--text-color--text-alternate);
  font-family: Josefinsans Variablefont Wght, sans-serif;
}

.vn {
  font-family: Open Sans, sans-serif;
}

.client-track {
  align-items: center;
  width: 100%;
  display: block;
  overflow: hidden;
}

.marquee-list {
  flex-flow: row;
  flex: none;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.marquee-image {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 12em;
  max-height: 80px;
  margin-left: 1em;
  display: flex;
  position: static;
}

.marquee-image.withblock {
  background-color: var(--base-color-brand--white);
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.marquee-image.withblock.smallpadding {
  padding-top: 0;
  padding-bottom: 0;
}

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

.cardteam-front {
  backface-visibility: hidden;
  text-align: center;
  background-image: linear-gradient(#2d4b7f, #2d4b7f);
  border-radius: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0 .6rem;
  display: flex;
  position: absolute;
  inset: 0%;
}

.team_image {
  border-radius: .5rem;
}

.team_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.image-11 {
  width: 1rem;
}

.cardteam {
  border-radius: 1rem;
  padding-top: 190%;
  transition: all .2s linear;
  display: flex;
  position: relative;
}

.cardteam:hover {
  box-shadow: 0 2px 20px #2eeeffe6;
}

.cardteam_wrapper {
  perspective: 1000px;
  margin-top: 2rem;
}

.cardteam-back {
  backface-visibility: hidden;
  text-align: center;
  transform-style: preserve-3d;
  background-color: #142441;
  border-radius: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: .8rem;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: auto;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

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

.cell {
  display: block;
}

.quick-stack {
  padding: .625rem;
}

.cell-2, .cell-3, .cell-4, .cell-5 {
  display: block;
}

.image-12 {
  width: .8rem;
  margin-right: .5rem;
  padding-bottom: 4px;
}

.link_partners {
  transition: all .3s ease-in-out;
}

.link_partners:hover {
  transform: translate(0, -1rem);
}

.image-13 {
  width: 1rem;
  margin-right: .5rem;
}

.marquee-wrapper {
  width: 100%;
  height: 5em;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.marquee-track {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
}

.price-ticker-wrapper {
  background-color: var(--base-color-brand--brand-yellow);
  justify-content: flex-end;
  align-items: center;
  padding-left: 4rem;
  padding-right: 4rem;
  display: flex;
}

.price-ticker-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.price-ticker-coin.text-color-alternate {
  margin-right: .5rem;
  font-size: 1rem;
  line-height: 1;
}

.price-ticker-coin.ttext-color-green {
  color: #37f998;
}

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

.price-ticker-price.text-color-yellow {
  font-size: .8rem;
  line-height: 1;
}

.marquee-item {
  color: var(--base-color-brand--white);
  justify-content: space-between;
  align-items: center;
  font-family: Lato, sans-serif;
  font-size: 1rem;
  display: flex;
}

.unifi_coin {
  width: 1.7rem;
}

.coin_logo_div {
  background-color: #000;
  border-radius: 50vw;
  justify-content: center;
  align-items: center;
  padding: 4px;
  display: flex;
}

.bold-text-3, .bold-text-4, .bold-text-5, .bold-text-6, .bold-text-7, .bold-text-8, .bold-text-9, .bold-text-10, .bold-text-11, .bold-text-12, .bold-text-13, .bold-text-14, .bold-text-15, .bold-text-16, .bold-text-17, .bold-text-18, .bold-text-19, .bold-text-20, .bold-text-21, .bold-text-22, .bold-text-23, .bold-text-24, .bold-text-25, .bold-text-26, .bold-text-27, .bold-text-28, .bold-text-29, .bold-text-30, .bold-text-31, .bold-text-32, .bold-text-33, .bold-text-34, .bold-text-35, .bold-text-36, .bold-text-37, .bold-text-38, .bold-text-39, .bold-text-40, .bold-text-41, .bold-text-42, .bold-text-43, .bold-text-44, .bold-text-45, .bold-text-46, .bold-text-47 {
  color: var(--base-color-brand--brand-yellow);
}

.text-span, .text-span-2 {
  color: var(--base-color-brand--white);
}

.card_list-wrapper-team {
  width: 75vw;
  max-width: 75vw;
  margin-left: auto;
  margin-right: auto;
}

.card_list-wrapper-team.team {
  width: 60vw;
  max-width: none;
}

.card_list-wrapper-team.gamers {
  width: auto;
  max-width: 50rem;
}

.team12_list-wrapper-team {
  width: 75vw;
  margin-left: auto;
  margin-right: auto;
}

.cell-6 {
  display: block;
}

.mask {
  padding-top: 1rem;
  padding-bottom: 3rem;
  overflow: hidden;
}

.slider {
  background-color: #ddd0;
  height: 100%;
  display: block;
}

.left-arrow {
  justify-content: space-between;
  align-items: center;
  display: flex;
  inset: 0% auto 0% -10%;
}

.icon {
  margin-left: 1rem;
  font-size: 1rem;
}

.right-arrow {
  right: -10%;
}

.icon-2 {
  font-size: 1rem;
}

.slide-nav {
  font-size: .5rem;
}

.bold-text-48 {
  font-weight: 400;
}

.cell-7 {
  display: block;
}

.slider-hero {
  background-color: #1b224b;
  width: 100%;
  min-height: 75vh;
}

.slide-nav-2 {
  inset: auto 0% 3.5rem;
}

.slide {
  background-image: url('../images/hero-img3x.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-2 {
  background-image: url('../images/bg-Welcome-to-the-Gameverse.webp');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.div-block-4 {
  background-color: var(--base-color-brand--brand-yellow);
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(0deg, #eb9100, #a8840000 24%);
  -webkit-background-clip: text;
  background-clip: text;
}

.welcometothegameverse {
  object-fit: cover;
}

.welcometothegameverse.th, .welcometothegameverse.kr, .welcometothegameverse.vn {
  width: 32rem;
  max-width: none;
}

.welcometothegameverse.chs {
  width: 20rem;
}

.div-block-6 {
  padding-top: 30%;
  position: relative;
}

.image-15 {
  width: 100%;
  max-width: none;
  display: block;
}

.div-block-6-copy {
  padding-top: 30%;
  position: relative;
}

.banner-slider_wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 80vw;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 4%;
  display: grid;
}

.banner-slider_wrapper._2 {
  justify-content: center;
  align-items: center;
  height: 60vh;
  display: flex;
}

.banner-slider_wrapper.slide-2 {
  background-image: none;
}

.banner_button {
  background-color: var(--base-color-brand--black);
  background-image: linear-gradient(90deg, #8b00d1, #0090ff);
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  padding: 0 .2rem;
  display: flex;
  box-shadow: 0 3px 10px #fff2009c, 0 10px 8px -2px #0009;
}

.banner_button.discover {
  background-image: linear-gradient(#f31b1b, #fc660b);
  border-width: 3px;
  border-color: #ffb300;
  overflow: hidden;
}

.banner_button.discover.kr {
  width: 90%;
  height: 4rem;
}

.banner_button.discover.id {
  width: 90%;
  height: 3.4rem;
}

.banner_button.discover.chs {
  width: 75%;
  height: 3.5rem;
}

.banner_button.discover.jp {
  width: 70%;
  height: 3.4rem;
}

.banner_button.discover.pointer-events-none {
  width: 75%;
}

.banner_button.discover.th {
  width: 90%;
}

.banner_button.purchase {
  width: 100%;
}

.banner_button.purchase.th {
  width: 100%;
  height: 4rem;
  padding-left: 0;
  padding-right: 0;
  overflow: clip;
}

.banner_text {
  color: var(--base-color-brand--white);
  text-align: center;
  letter-spacing: -.05em;
  -webkit-text-stroke-width: .5px;
  -webkit-text-stroke-color: var(--background-color--background-success);
  text-transform: uppercase;
  text-shadow: none;
  font-family: "Apex Mk 2", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.banner_text_gradient-div {
  background-color: #fff;
  background-image: linear-gradient(180deg, var(--base-color-neutral--neutral-lightest), #e4e4e4 39%, #999);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.slide-3 {
  background-image: url('../images/bg-Level_Up_Your_Game_plain.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-3_button-outer {
  background-color: #f000;
  background-image: linear-gradient(81deg, #ce72ff, #00f0ff);
  border-radius: 1rem;
  padding-left: .1rem;
  padding-right: .1rem;
  box-shadow: 0 1px 8px #00d8ff;
}

.banner-slider_button-flex-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: center stretch;
  display: grid;
}

.slide-2_button.kr {
  height: 5rem;
}

.slide-2_button.id {
  height: 3.4rem;
}

.slide-2_button.chs {
  height: 6rem;
}

.slide-2_button.jp {
  height: 3rem;
}

.slide-2_button.vn {
  height: 3.4rem;
}

.link-block-2 {
  display: block;
}

.purchase {
  object-fit: cover;
}

.purchase.kr {
  object-fit: cover;
  height: 6rem;
}

.purchase.th {
  height: 4rem;
}

.purchase.chs {
  width: 9rem;
}

.purchase.jp {
  height: 3.5rem;
}

.purchase.vn {
  height: 4.5rem;
}

.slide-3_button-link {
  width: 100%;
}

.big_m_logo-wrapper {
  padding-top: 100%;
  display: block;
  position: relative;
}

.slide-3_mlogo {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: visible;
}

.m-only-mobile {
  display: none;
}

.slide-3_heading.th {
  width: 33rem;
  max-width: none;
}

.slide-3_heading.kr {
  width: 32rem;
  max-width: none;
}

.slide-3_heading.vn {
  width: 34rem;
  max-width: none;
}

.slide-3_heading.jp {
  width: 32rem;
  max-width: none;
}

.slide-3_button {
  background-color: var(--base-color-brand--black);
  background-image: linear-gradient(90deg, #8b00d1, #0090ff);
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  padding: .2rem;
  display: flex;
  box-shadow: 0 3px 10px #fff2009c, 0 10px 8px -2px #0009;
}

.slide-3_button.discover {
  background-image: linear-gradient(#f31b1b, #fc660b);
  border-width: 3px;
  border-color: #ffb300;
  overflow: hidden;
}

.slide-3_button.discover.kr {
  width: 90%;
  height: 4rem;
}

.slide-3_button.discover.id {
  width: 90%;
  height: 3.4rem;
}

.slide-3_button.discover.chs {
  width: 75%;
  height: 3.5rem;
}

.slide-3_button.discover.jp {
  width: 70%;
  height: 3.4rem;
}

.slide-3_button.discover.pointer-events-none {
  width: 75%;
}

.slide-3_button.discover.th {
  width: 90%;
}

.slide-3_button.purchase {
  width: 100%;
}

.slide-3_button.purchase.th {
  width: 100%;
  height: 4rem;
  padding-left: 0;
  padding-right: 0;
  overflow: clip;
}

.slide-3_button.th {
  height: 3.4rem;
}

.slide-3_button.kr {
  height: 3.5rem;
}

.slide-3_button.jp {
  height: 3.2rem;
}

.slide-3_button.vn {
  height: 4rem;
}

@media screen and (min-width: 1920px) {
  .max-width-xxsmall.gv {
    max-width: none;
  }

  .max-width-small {
    max-width: 40rem;
  }

  .margin-bottom.margin-custom1.logos {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .text-size-medium.text-color-alternate {
    font-size: 1.5rem;
  }

  .heading-style-h6.text-align-center.text-color-brand {
    width: 70%;
    font-size: 1.9rem;
  }

  .heading-style-h6.team.text-color-white {
    font-size: 1.7rem;
  }

  .heading-style-h6.team.text-color-white.ch, .heading-style-h6.team.text-color-white.vn {
    font-size: 2rem;
  }

  .heading-style-h5.text-color-brand {
    font-size: 2.5rem;
  }

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

  .text-size-tiny, .text-size-tiny.text-color-white {
    font-size: .8rem;
  }

  .text-size-tiny.text-color-white.ch {
    font-size: 1rem;
  }

  .text-size-tiny.text-style-italic {
    font-size: .8rem;
  }

  .text-size-tiny.text-style-italic.text-spacing-tight.ch, .button.is-link {
    font-size: 1rem;
  }

  .button.is-link._2 {
    font-size: 1.2rem;
  }

  .button.is-secondary {
    font-size: 1rem;
  }

  .button.max-width-small {
    font-size: 1.4rem;
  }

  .heading-style-h3.text-color-brand {
    font-size: 4rem;
  }

  .text-color-white.text-size-regular {
    font-size: 1.5rem;
  }

  .text-size-small.text-color-alternate, .text-size-small.title {
    font-size: 1.2rem;
  }

  .icon-1x1-medium.coin-tilted {
    width: 11rem;
  }

  .icon-1x1-medium.voyage {
    width: 20rem;
  }

  .icon-1x1-medium.coins {
    width: 50vw;
  }

  .icon-1x1-medium.game-dev {
    width: 14rem;
  }

  .display-inlineflex.price-ticker-coin {
    margin-right: 1rem;
  }

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

  .header30_background-image.scifi {
    width: 80%;
    max-width: none;
  }

  .header30_background-image.big-circle {
    width: 100%;
  }

  .text-color-brand {
    font-size: 1rem;
  }

  .navbar1_component {
    min-height: 6rem;
  }

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

  .slanted-l.footer, .slanted-r.footer {
    width: 21vw;
  }

  .card {
    flex-flow: column;
    justify-content: flex-end;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }

  .bigicon-wrapper {
    width: 70%;
    margin-bottom: -5rem;
  }

  .card_list-wrapper {
    max-width: 60vw;
  }

  .card_list-wrapper.gamers {
    max-width: 50vw;
  }

  .footer11_link {
    font-size: 1rem;
  }

  .footer11_credit-text {
    font-size: 1.2rem;
  }

  .footer11_legal-list {
    display: grid;
  }

  .footer11_legal-link {
    font-size: 1.2rem;
    display: none;
  }

  .card-frame, .card-wrapper {
    position: static;
  }

  .card-text {
    position: absolute;
    inset: auto 0% 0%;
  }

  .image-9 {
    width: 22rem;
  }

  .image-10 {
    width: 11rem;
  }

  .div-pill-frame {
    height: 10rem;
  }

  .marquee-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding-left: 0;
    padding-right: 0;
  }

  .marquee-image {
    object-fit: contain;
    width: 11em;
    margin-left: 1em;
    margin-right: 1em;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
  }

  .marquee_item-content-wrapper {
    vertical-align: baseline;
    object-fit: contain;
    width: 100%;
    display: block;
  }

  .cardteam-front {
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .team_list {
    grid-template-rows: repeat(auto-fit, 32rem);
    grid-auto-columns: 40rem;
    width: 80%;
  }

  .image-11 {
    width: 2rem;
  }

  .cardteam {
    padding-top: 190%;
  }

  .cardteam-back {
    transform: rotateX(0)rotateY(180deg)rotateZ(0);
  }

  .marquee-wrapper {
    height: 6em;
    overflow: visible;
  }

  .image-logo {
    vertical-align: baseline;
    object-fit: contain;
    width: 100%;
    height: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .price-ticker-div {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .text-span, .text-span-2 {
    color: var(--base-color-brand--white);
  }

  .card_list-wrapper-team {
    width: 60vw;
    max-width: 60em;
  }

  .card_list-wrapper-team.gamers {
    max-width: 50rem;
  }

  .slider-hero {
    min-height: 70vh;
  }

  .slide {
    background-repeat: no-repeat;
    background-size: cover;
  }

  .slide-2 {
    background-size: contain;
  }

  .welcometothegameverse.chs {
    width: 18rem;
  }

  .banner-slider_wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 85vw;
    padding-left: 4%;
    display: grid;
  }

  .slide-3 {
    background-image: url('../images/bg-Level_Up_Your_Game_plain.webp');
    background-repeat: no-repeat;
    background-size: cover;
  }

  .purchase.kr {
    height: 7rem;
  }

  .purchase.th {
    object-fit: cover;
    width: 11rem;
    height: 7rem;
  }

  .purchase.chs {
    width: 13rem;
  }

  .purchase.jp {
    height: 5rem;
  }

  .purchase.vn {
    height: 6rem;
  }

  .big_m_logo-wrapper {
    padding-top: 80%;
    display: block;
  }

  .slide-3_mlogo {
    inset: 0%;
  }

  .h1-gradient {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--border-color--border-alternate);
  }

  .slide-3_heading.th, .slide-3_heading.kr, .slide-3_heading.vn {
    width: 45rem;
  }

  .slide-3_heading.jp {
    width: 48rem;
  }

  .slide-3_button.th {
    height: 5rem;
  }

  .slide-3_button.kr {
    height: 4rem;
  }

  .slide-3_button.jp {
    height: 5rem;
  }
}

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

  h5 {
    font-size: 1.2rem;
  }

  h6 {
    font-size: 1rem;
  }

  .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-bottom.margin-custom1 {
    position: absolute;
    inset: auto 0% 0%;
  }

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

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

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

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

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

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

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

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

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

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

  .text-size-medium.text-color-alternate {
    font-size: .9rem;
  }

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

  .heading-style-h6.text-align-center.text-color-brand {
    font-size: 1rem;
  }

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

  .heading-style-h5.text-color-brand {
    z-index: 5;
    font-size: 1.5rem;
  }

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

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

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

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

  .heading-style-h3.text-color-brand {
    font-size: 1.9rem;
  }

  .heading-style-h3.text-color-brand.jp {
    font-size: 3.4rem;
  }

  .text-color-white.text-size-regular, .text-size-small.title {
    font-size: .7rem;
  }

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

  .icon-1x1-medium.coin-tilted {
    width: 6rem;
  }

  .icon-1x1-medium.voyage {
    width: 12rem;
  }

  .icon-1x1-medium.coins {
    width: 70vw;
  }

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

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

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

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

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

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

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

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

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

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

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

  .section_header30 {
    position: relative;
  }

  .header30_background-image-wrapper.display-inlineflex {
    width: 100%;
    height: auto;
  }

  .header30_background-image-wrapper.big-circle {
    max-width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .header30_background-image-wrapper.padding-vertical.padding-medium {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .header30_background-image.ripple {
    width: 100vw;
    height: 100%;
    inset: 0%;
  }

  .header30_background-image.scifi {
    width: 70%;
    max-width: none;
  }

  .header30_background-image.scifi._2 {
    width: 80%;
  }

  .header30_background-image.big-circle {
    max-width: none;
    height: 65%;
    inset: auto 0% 0%;
  }

  .grid {
    width: 90vw;
  }

  .navbar1_component {
    min-height: 5rem;
  }

  .navbar1_container {
    position: static;
  }

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

  .navbar1_menu.is-page-height-tablet {
    z-index: 20;
    background-color: var(--background-color--color);
    justify-content: center;
    align-items: flex-start;
    transition: height .5s;
    display: flex;
  }

  .navbar1_link {
    text-align: center;
    padding: .75rem 0;
  }

  .navbar1_menu-dropdown {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    font-size: 1.125rem;
  }

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

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

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

  .navbar1_dropdown-list.w--open {
    border-style: none;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
    display: flex;
  }

  .navbar1_dropdown-link {
    width: auto;
    padding: .75rem 0 .75rem 0%;
    font-size: .8rem;
  }

  .navbar1_dropdown-link.w--current {
    padding-left: 0%;
    font-size: .8rem;
  }

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

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

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

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

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

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

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

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

  .layout330_list {
    grid-column-gap: .5rem;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }

  .layout330_list._2 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 80%;
  }

  .layout330_item {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .team12_list-wrapper {
    width: 90vw;
  }

  .team12_list {
    grid-column-gap: 2rem;
  }

  .team12_list.partners {
    grid-column-gap: 1.2rem;
    grid-row-gap: 1.2rem;
  }

  .team12_item.partners {
    justify-content: center;
    align-items: center;
  }

  .team12_image-wrapper {
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
  }

  .team12_image {
    width: 70%;
  }

  .team12_image.partners {
    margin-left: auto;
    margin-right: auto;
  }

  .slanted-l.footer, .slanted-r.footer {
    display: none;
  }

  .bigicon-wrapper {
    position: relative;
  }

  .bigicon {
    width: 100%;
    inset: 0%;
  }

  .card_list-wrapper {
    width: 100%;
  }

  .card_list-wrapper.team {
    width: 80vw;
  }

  .card_list-wrapper.gamers {
    width: 100%;
  }

  .voyage {
    width: 60vw;
  }

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

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

  .header76_content-right {
    height: 40rem;
  }

  .m-logo-big {
    width: 6rem;
  }

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

  .image-9 {
    width: 12rem;
  }

  .image-10 {
    width: 6rem;
  }

  .div-pill-frame {
    height: 5rem;
  }

  .bold-text {
    font-size: 2.5rem;
  }

  .marquee-list {
    padding-left: 40px;
    padding-right: 40px;
  }

  .team_image-wrapper {
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }

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

  .team_list {
    grid-column-gap: 1rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    width: 70%;
  }

  .cardteam {
    padding-top: 180%;
  }

  .card_list-wrapper-team {
    width: 100%;
  }

  .card_list-wrapper-team.team {
    width: 80vw;
  }

  .card_list-wrapper-team.gamers {
    width: 100%;
  }

  .team12_list-wrapper-team {
    width: 90vw;
  }

  .slider-hero {
    min-height: 60vh;
    display: block;
  }

  .slide-nav-2 {
    font-size: .6rem;
  }

  .welcometothegameverse.th {
    width: 21rem;
  }

  .welcometothegameverse.kr, .welcometothegameverse.vn {
    width: 22rem;
  }

  .banner-slider_wrapper {
    width: 90vw;
  }

  .banner-slider_wrapper.slide-2 {
    background-image: none;
  }

  .banner_button-wrapper {
    width: 12rem;
    display: flex;
  }

  .banner_button.discover.id {
    width: 80%;
  }

  .banner_button.discover.th {
    width: 90%;
  }

  .banner_button.purchase.th {
    height: 3rem;
  }

  .slide-3 {
    background-repeat: no-repeat;
    background-size: cover;
  }

  .banner-slider_button-flex-wrapper {
    grid-template-rows: auto auto auto auto;
  }

  .slide-2_button.th {
    height: 4rem;
  }

  .purchase {
    object-fit: cover;
  }

  .purchase.kr {
    height: 4rem;
  }

  .purchase.th {
    object-fit: contain;
    height: 4rem;
  }

  .purchase.chs {
    width: 8rem;
  }

  .purchase.jp {
    object-fit: contain;
    height: 2.5rem;
  }

  .purchase.vn {
    height: 3.5rem;
  }

  .icon-3 {
    width: 1.7rem;
  }

  .slide-3_heading.th {
    width: 22rem;
  }

  .slide-3_heading.kr {
    width: 20rem;
    max-width: none;
  }

  .slide-3_heading.vn {
    width: 22rem;
  }

  .slide-3_heading.jp {
    width: 20rem;
    max-width: none;
  }

  .slide-3_button.discover.id {
    width: 80%;
  }

  .slide-3_button.discover.th {
    width: 90%;
  }

  .slide-3_button.purchase.th {
    height: 3rem;
  }

  .slide-3_button.th {
    height: 3.2rem;
  }

  .slide-3_button.no-y-padding {
    padding-top: 0;
    padding-bottom: 0;
  }

  .slide-3_button.kr {
    height: 3rem;
  }

  .slide-3_button.jp {
    height: 2.4rem;
  }

  .slide-3_button.vn {
    height: 3rem;
  }
}

@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: 1rem;
  }

  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-left.slide-1 {
    padding-left: 1rem;
  }

  .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-size-medium.text-color-alternate {
    font-size: .875rem;
  }

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

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

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

  .heading-style-h6.text-align-center.text-color-brand {
    width: 80%;
    font-size: 1rem;
  }

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

  .heading-style-h5.text-color-brand.jp {
    font-size: 2rem;
  }

  .heading-style-h5.text-color-brand.vn {
    font-size: 1rem;
  }

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

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

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

  .heading-style-h3.text-color-brand.vn {
    font-size: 1.6rem;
  }

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

  .icon-1x1-medium.coin-tilted {
    width: 4rem;
  }

  .icon-1x1-medium.coins {
    width: 80vw;
  }

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

  .text-size-large.text-color-alternate {
    font-size: 1rem;
  }

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

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

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

  .spacer-xsmall {
    padding-top: .75rem;
  }

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

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

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

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

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

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

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

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

  .rl-styleguide_component {
    padding-top: 4rem;
  }

  .rl-styleguide_content {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .section_header30.taller {
    min-height: 50svh;
  }

  .header30_background-image.ripple {
    height: 100%;
  }

  .header30_background-image.scifi {
    width: 90%;
  }

  .header30_background-image.scifi._2 {
    width: 100%;
  }

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

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

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

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

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

  .team12_list.partners {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .team12_image-wrapper {
    height: 100%;
  }

  .team12_image {
    width: 100%;
  }

  .grids-card {
    grid-row-gap: 3rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .bigicon-wrapper, .card-wrapper {
    height: 100%;
  }

  .voyage {
    width: 80vw;
  }

  .header76_component {
    padding-top: 4rem;
  }

  .header76_content-right {
    height: 30rem;
  }

  .m-logo-big {
    width: 4rem;
  }

  .footer11_top-wrapper {
    grid-row-gap: 3rem;
    padding: 2rem;
  }

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

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

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

  .image-9 {
    width: 10rem;
  }

  .image-10 {
    width: 5rem;
  }

  .marquee-list {
    display: flex;
  }

  .team_image-wrapper {
    height: 100%;
  }

  .team_image {
    width: 100%;
  }

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

  .image-11 {
    background-image: none;
    background-position: 0 0;
    background-size: auto;
  }

  .cardteam_wrapper {
    display: block;
  }

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

  .price-ticker-wrapper {
    height: 6rem;
  }

  .slider-hero {
    min-height: 50vh;
  }

  .banner-slider_wrapper {
    padding-left: 0%;
  }

  .banner_button-wrapper {
    width: 10rem;
  }

  .slide-3 {
    background-size: cover;
  }

  .banner-slider_button-flex-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .purchase.kr {
    height: 4rem;
  }

  .purchase.th {
    height: 3rem;
  }

  .purchase.chs {
    width: 7rem;
  }

  .purchase.vn {
    height: 3rem;
  }

  .icon-4, .icon-5 {
    display: none;
  }

  .slide-3_heading.kr, .slide-3_heading.jp {
    width: 19rem;
  }

  .slide-3_button.th {
    height: 2.7rem;
  }

  .slide-3_button.kr {
    height: 2.6rem;
  }

  .slide-3_button.jp {
    height: 2.7rem;
  }

  .slide-3_button.vn {
    height: 2.5rem;
  }
}

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

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

  .container-small.margin-large {
    margin-bottom: 0;
  }

  .margin-top {
    margin-bottom: 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-bottom.padding-medium {
    padding-bottom: 0;
  }

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

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

  .padding-left.slide-1 {
    padding-left: 1rem;
  }

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

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

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

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

  .text-size-medium.text-color-alternate.chs {
    font-size: 1.5rem;
  }

  .text-size-medium.text-color-alternate.vn {
    font-size: .7rem;
  }

  .text-size-medium.text-color-alternate.jp {
    padding-left: 15%;
    padding-right: 15%;
  }

  .heading-style-h6.text-align-center.text-color-brand {
    width: 95%;
    font-size: .8rem;
  }

  .heading-style-h6.team.text-color-white {
    font-size: 1.2em;
  }

  .heading-style-h6.team.text-color-white.ch {
    font-size: 1.4rem;
  }

  .heading-style-h5.text-color-brand {
    font-size: 1.3rem;
  }

  .heading-style-h5.text-color-brand.chs {
    font-size: 1.2rem;
  }

  .heading-style-h5.text-color-brand.jp {
    font-size: 1.5rem;
  }

  .heading-style-h5.text-color-brand.vn {
    font-size: .8rem;
  }

  .text-size-tiny.text-color-white {
    text-transform: none;
    font-size: .7rem;
  }

  .text-size-tiny.text-style-italic {
    font-size: .5rem;
  }

  .text-size-tiny.text-style-italic.text-spacing-tight {
    margin-bottom: .5rem;
  }

  .heading-style-h3.text-color-brand {
    font-size: 1.6rem;
  }

  .heading-style-h3.text-color-brand.chs {
    font-size: 4rem;
  }

  .heading-style-h3.text-color-brand.jp {
    padding-left: 15%;
    padding-right: 15%;
    font-size: 2rem;
  }

  .heading-style-h3.text-color-brand.vn {
    font-size: 1.4rem;
  }

  .text-color-white.text-size-regular {
    font-size: .6rem;
  }

  .icon-1x1-medium.coins {
    width: 100vw;
  }

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

  .padding-global {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .header30_background-image-wrapper.display-inlineflex {
    width: 100%;
  }

  .header30_background-image.ripple {
    height: 100%;
    inset: 0%;
  }

  .header30_background-image.scifi {
    width: 100%;
  }

  .header30_background-image.scifi._2 {
    max-width: none;
  }

  .text-color-brand {
    font-size: .7rem;
  }

  .navbar1_container {
    max-width: none;
  }

  .navbar1_logo-link {
    width: 6rem;
  }

  .navbar1_menu.is-page-height-tablet {
    width: 100%;
  }

  .navbar1_menu-dropdown {
    flex-flow: column;
  }

  .image-2 {
    font-size: 1rem;
    inset: 0%;
  }

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

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

  .layout330_list._2 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 90%;
  }

  .team12_list-wrapper.gamer {
    width: 100vw;
    max-width: 11em;
  }

  .team12_list {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .team12_list.partners {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    max-width: 80%;
  }

  .team12_image-wrapper {
    width: 80%;
  }

  .slanted-l._2, .slanted-l._1, .slanted-r {
    display: none;
  }

  .grids-card {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .card-wrapper {
    padding-top: 66%;
  }

  .card_list-wrapper {
    width: 90vw;
    max-width: none;
  }

  .card_list-wrapper.team {
    width: 100%;
  }

  .card_list-wrapper.gamers {
    width: 70%;
  }

  .voyage {
    width: 90vw;
  }

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

  .footer11_social-list {
    grid-column-gap: 2rem;
  }

  .footer11_menu-wrapper {
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    place-items: center;
    width: 100%;
  }

  .footer11_link-list._1 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .footer11_bottom-wrapper {
    padding-bottom: 1rem;
  }

  .footer11_credit-text {
    text-align: center;
    font-size: .75rem;
  }

  .image-9 {
    width: 9rem;
  }

  .image-10 {
    width: 4rem;
  }

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

  .team_list-wrapper {
    width: 90%;
  }

  .cardteam {
    padding-top: 200%;
  }

  .cardteam_wrapper.half-width {
    width: 50%;
  }

  .cardteam-back {
    transform: rotateX(0)rotateY(180deg)rotateZ(0);
  }

  .cell-5 {
    justify-content: center;
    align-items: center;
  }

  .price-ticker-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .price-ticker-coin {
    font-size: .8rem;
  }

  .price-ticker-coin.text-color-alternate {
    margin-left: 0;
    margin-right: .5rem;
  }

  .price-ticker-coin.text-color-yellow {
    font-size: .7rem;
  }

  .price-ticker-div {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
  }

  .price-ticker-price {
    font-size: .8rem;
  }

  .marquee-item {
    font-size: .8rem;
    line-height: 1;
  }

  .unifi_coin {
    width: 1.5rem;
  }

  .card_list-wrapper-team {
    width: 90vw;
    max-width: none;
  }

  .card_list-wrapper-team.team {
    width: 100%;
  }

  .card_list-wrapper-team.gamers {
    width: 70%;
  }

  .quick-stack-2 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

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

  .slider-hero {
    background-color: #a23c3c00;
    min-height: 60vh;
  }

  .slide {
    background-size: cover;
  }

  .slide-2 {
    background-image: linear-gradient(#0003, #0003), url('../images/bg-Welcome-to-the-Gameverse.webp');
    background-position: 0 0, 50% 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .welcometothegameverse.th {
    width: 18rem;
  }

  .welcometothegameverse.kr {
    width: 100%;
  }

  .welcometothegameverse.vn {
    width: 20rem;
    max-width: none;
  }

  .banner-slider_wrapper {
    grid-template-columns: 1fr;
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0%;
    padding-right: 0%;
  }

  .banner-slider_wrapper.slide-2 {
    padding-right: 10%;
  }

  .banner_button.discover {
    max-width: 80%;
  }

  .banner_button.discover.kr {
    width: 80%;
    max-width: none;
    height: 3rem;
  }

  .banner_button.discover.id {
    width: 80%;
    height: 3rem;
  }

  .banner_button.discover.chs {
    height: 3rem;
  }

  .banner_button.discover.jp, .banner_button.discover.pointer-events-none {
    width: 90%;
  }

  .banner_button.discover.th {
    width: 90%;
    max-width: none;
  }

  .banner_button.purchase.th {
    height: 2.4rem;
  }

  .slide-3 {
    background-image: linear-gradient(#0003, #0003), url('../images/bg-Level_Up_Your_Game_plain.webp');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .banner-slider_button-flex-wrapper {
    flex-flow: column;
    grid-template-rows: auto auto auto;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .slide-2_button.kr, .slide-2_button.chs {
    height: 4rem;
  }

  .slide-2_button.vn, .slide-2_button.th {
    height: 3rem;
  }

  .purchase.kr {
    height: 3.5rem;
  }

  .purchase.th {
    height: 3rem;
  }

  .purchase.chs {
    width: 7rem;
  }

  .purchase.jp {
    height: 2.5rem;
  }

  .icon-4, .icon-5 {
    inset: auto 0% 5rem;
  }

  .banner-slider_image {
    display: none;
  }

  .m-only-mobile {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    inset: 0%;
  }

  .m_only_logo-wrapper {
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: static;
  }

  .m-only-image-height {
    padding-top: 100%;
    position: relative;
  }

  .slide-3_heading.th, .slide-3_heading.kr {
    width: 22rem;
  }

  .slide-3_heading.vn {
    width: 22rem;
    max-width: none;
  }

  .slide-3_heading.jp {
    width: 22rem;
  }

  .slide-3_button.discover {
    max-width: 80%;
  }

  .slide-3_button.discover.kr {
    width: 80%;
    max-width: none;
    height: 3rem;
  }

  .slide-3_button.discover.id {
    width: 80%;
    height: 3rem;
  }

  .slide-3_button.discover.chs {
    height: 3rem;
  }

  .slide-3_button.discover.jp, .slide-3_button.discover.pointer-events-none {
    width: 90%;
  }

  .slide-3_button.discover.th {
    width: 90%;
    max-width: none;
  }

  .slide-3_button.purchase.th {
    height: 2.4rem;
  }

  .slide-3_button.th {
    height: 2.3rem;
  }

  .slide-3_button.jp {
    height: 2.4rem;
  }
}

#w-node-_59c3e659-719c-987d-eee9-c76d8be9fcea-0769b983 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a4363b07-90e7-59cf-a443-23ad768f7aa1-0769b983, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa2-0769b983, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa3-0769b983, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa4-0769b983, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa6-0769b983, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa7-0769b983, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa8-0769b983, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa9-0769b983, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aaa-0769b983, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aab-0769b983, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aac-0769b983, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aad-0769b983, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aae-0769b983, #w-node-f6327b1f-4190-8874-d435-98c839761199-0769b983, #w-node-f6327b1f-4190-8874-d435-98c83976119a-0769b983, #w-node-f6327b1f-4190-8874-d435-98c83976119b-0769b983, #w-node-f6327b1f-4190-8874-d435-98c83976119c-0769b983, #w-node-f6327b1f-4190-8874-d435-98c83976119d-0769b983, #w-node-f6327b1f-4190-8874-d435-98c83976119e-0769b983, #w-node-f6327b1f-4190-8874-d435-98c83976119f-0769b983, #w-node-f6327b1f-4190-8874-d435-98c8397611a0-0769b983, #w-node-f6327b1f-4190-8874-d435-98c8397611a1-0769b983, #w-node-f6327b1f-4190-8874-d435-98c8397611a2-0769b983, #w-node-f6327b1f-4190-8874-d435-98c8397611a3-0769b983, #w-node-f6327b1f-4190-8874-d435-98c8397611a4-0769b983, #w-node-f6327b1f-4190-8874-d435-98c8397611a5-0769b983, #w-node-f6327b1f-4190-8874-d435-98c8397611a6-0769b983, #w-node-f7257313-75c3-4487-ac6a-fa772ac49784-0769b983, #w-node-f7257313-75c3-4487-ac6a-fa772ac49785-0769b983, #w-node-f7257313-75c3-4487-ac6a-fa772ac49786-0769b983, #w-node-f7257313-75c3-4487-ac6a-fa772ac49787-0769b983, #w-node-f7257313-75c3-4487-ac6a-fa772ac49788-0769b983, #w-node-f7257313-75c3-4487-ac6a-fa772ac49789-0769b983, #w-node-f7257313-75c3-4487-ac6a-fa772ac4978a-0769b983, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977d-0769b983, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977e-0769b983, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977f-0769b983, #w-node-f7257313-75c3-4487-ac6a-fa772ac49780-0769b983, #w-node-f7257313-75c3-4487-ac6a-fa772ac49782-0769b983, #w-node-f7257313-75c3-4487-ac6a-fa772ac49783-0769b983, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5a-0769b983, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5b-0769b983, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5c-0769b983, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5d-0769b983, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5e-0769b983, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5f-0769b983, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e60-0769b983, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e53-0769b983, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e54-0769b983, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e55-0769b983, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e56-0769b983, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e57-0769b983, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e58-0769b983, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e59-0769b983, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb7-0769b983, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb8-0769b983, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb9-0769b983, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fba-0769b983, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbb-0769b983, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbc-0769b983, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbd-0769b983, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbe-0769b983, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbf-0769b983, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc0-0769b983, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc1-0769b983, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc3-0769b983, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc4-0769b983 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c93968fa-d3ed-e689-138d-cbb7e412c99d-0769b983 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950f-0769b9a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369510-0769b9a0 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369514-0769b9a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369515-0769b9a0 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369519-0769b9a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951a-0769b9a0 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951e-0769b9a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951f-0769b9a0 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369523-0769b9a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369524-0769b9a0 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369528-0769b9a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369529-0769b9a0 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952d-0769b9a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952e-0769b9a0 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369532-0769b9a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369533-0769b9a0 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953a-0769b9a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953b-0769b9a0 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953f-0769b9a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369540-0769b9a0 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369544-0769b9a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369545-0769b9a0 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369549-0769b9a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954a-0769b9a0 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954e-0769b9a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954f-0769b9a0 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369553-0769b9a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369554-0769b9a0 {
  justify-self: start;
}

#w-node-de8106d9-b098-80e3-076c-80f3a0fa5e54-0769b9a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-de8106d9-b098-80e3-076c-80f3a0fa5e55-0769b9a0 {
  justify-self: start;
}

#w-node-_680345d6-d141-aefc-5e81-01faad69a792-0769b9a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_680345d6-d141-aefc-5e81-01faad69a793-0769b9a0 {
  justify-self: start;
}

#w-node-dc962921-5c74-5687-77a4-c1371012b297-0769b9a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dc962921-5c74-5687-77a4-c1371012b298-0769b9a0 {
  justify-self: start;
}

#w-node-bbf5f4a2-0660-a8f8-7799-a71df583db57-0769b9a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bbf5f4a2-0660-a8f8-7799-a71df583db58-0769b9a0 {
  justify-self: start;
}

#w-node-_723dac19-3a6b-8f5e-89ce-53b9006ba92c-0769b9a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_723dac19-3a6b-8f5e-89ce-53b9006ba92d-0769b9a0 {
  justify-self: start;
}

#w-node-_95feac99-4302-7b82-dcf4-baed5fe2a42b-4cfea767 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a4363b07-90e7-59cf-a443-23ad768f7aa1-4cfea767, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa2-4cfea767, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa3-4cfea767, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa4-4cfea767, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa6-4cfea767, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa7-4cfea767, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa8-4cfea767, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa9-4cfea767, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aaa-4cfea767, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aab-4cfea767, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aac-4cfea767, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aad-4cfea767, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aae-4cfea767, #w-node-f6327b1f-4190-8874-d435-98c839761199-4cfea767, #w-node-f6327b1f-4190-8874-d435-98c83976119a-4cfea767, #w-node-f6327b1f-4190-8874-d435-98c83976119b-4cfea767, #w-node-f6327b1f-4190-8874-d435-98c83976119c-4cfea767, #w-node-f6327b1f-4190-8874-d435-98c83976119d-4cfea767, #w-node-f6327b1f-4190-8874-d435-98c83976119e-4cfea767, #w-node-f6327b1f-4190-8874-d435-98c83976119f-4cfea767, #w-node-f6327b1f-4190-8874-d435-98c8397611a0-4cfea767, #w-node-f6327b1f-4190-8874-d435-98c8397611a1-4cfea767, #w-node-f6327b1f-4190-8874-d435-98c8397611a2-4cfea767, #w-node-f6327b1f-4190-8874-d435-98c8397611a3-4cfea767, #w-node-f6327b1f-4190-8874-d435-98c8397611a4-4cfea767, #w-node-f6327b1f-4190-8874-d435-98c8397611a5-4cfea767, #w-node-f6327b1f-4190-8874-d435-98c8397611a6-4cfea767, #w-node-f7257313-75c3-4487-ac6a-fa772ac49784-4cfea767, #w-node-f7257313-75c3-4487-ac6a-fa772ac49785-4cfea767, #w-node-f7257313-75c3-4487-ac6a-fa772ac49786-4cfea767, #w-node-f7257313-75c3-4487-ac6a-fa772ac49787-4cfea767, #w-node-f7257313-75c3-4487-ac6a-fa772ac49788-4cfea767, #w-node-f7257313-75c3-4487-ac6a-fa772ac49789-4cfea767, #w-node-f7257313-75c3-4487-ac6a-fa772ac4978a-4cfea767, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977d-4cfea767, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977e-4cfea767, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977f-4cfea767, #w-node-f7257313-75c3-4487-ac6a-fa772ac49780-4cfea767, #w-node-f7257313-75c3-4487-ac6a-fa772ac49782-4cfea767, #w-node-f7257313-75c3-4487-ac6a-fa772ac49783-4cfea767, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5a-4cfea767, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5b-4cfea767, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5c-4cfea767, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5d-4cfea767, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5e-4cfea767, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5f-4cfea767, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e60-4cfea767, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e53-4cfea767, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e54-4cfea767, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e55-4cfea767, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e56-4cfea767, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e57-4cfea767, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e58-4cfea767, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e59-4cfea767, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb7-4cfea767, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb8-4cfea767, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb9-4cfea767, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fba-4cfea767, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbb-4cfea767, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbc-4cfea767, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbd-4cfea767, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbe-4cfea767, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbf-4cfea767, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc0-4cfea767, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc1-4cfea767, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc3-4cfea767, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc4-4cfea767 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9dddda19-ce2e-f47c-186f-649f42785bba-4cfea767 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

#w-node-e2cf0c29-4dfd-be38-7319-62eefbb43f5a-50ac1614 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a4363b07-90e7-59cf-a443-23ad768f7aa1-50ac1614, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa2-50ac1614, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa3-50ac1614, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa4-50ac1614, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa6-50ac1614, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa7-50ac1614, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa8-50ac1614, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa9-50ac1614, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aaa-50ac1614, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aab-50ac1614, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aac-50ac1614, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aad-50ac1614, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aae-50ac1614, #w-node-f6327b1f-4190-8874-d435-98c839761199-50ac1614, #w-node-f6327b1f-4190-8874-d435-98c83976119a-50ac1614, #w-node-f6327b1f-4190-8874-d435-98c83976119b-50ac1614, #w-node-f6327b1f-4190-8874-d435-98c83976119c-50ac1614, #w-node-f6327b1f-4190-8874-d435-98c83976119d-50ac1614, #w-node-f6327b1f-4190-8874-d435-98c83976119e-50ac1614, #w-node-f6327b1f-4190-8874-d435-98c83976119f-50ac1614, #w-node-f6327b1f-4190-8874-d435-98c8397611a0-50ac1614, #w-node-f6327b1f-4190-8874-d435-98c8397611a1-50ac1614, #w-node-f6327b1f-4190-8874-d435-98c8397611a2-50ac1614, #w-node-f6327b1f-4190-8874-d435-98c8397611a3-50ac1614, #w-node-f6327b1f-4190-8874-d435-98c8397611a4-50ac1614, #w-node-f6327b1f-4190-8874-d435-98c8397611a5-50ac1614, #w-node-f6327b1f-4190-8874-d435-98c8397611a6-50ac1614, #w-node-f7257313-75c3-4487-ac6a-fa772ac49784-50ac1614, #w-node-f7257313-75c3-4487-ac6a-fa772ac49785-50ac1614, #w-node-f7257313-75c3-4487-ac6a-fa772ac49786-50ac1614, #w-node-f7257313-75c3-4487-ac6a-fa772ac49787-50ac1614, #w-node-f7257313-75c3-4487-ac6a-fa772ac49788-50ac1614, #w-node-f7257313-75c3-4487-ac6a-fa772ac49789-50ac1614, #w-node-f7257313-75c3-4487-ac6a-fa772ac4978a-50ac1614, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977d-50ac1614, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977e-50ac1614, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977f-50ac1614, #w-node-f7257313-75c3-4487-ac6a-fa772ac49780-50ac1614, #w-node-f7257313-75c3-4487-ac6a-fa772ac49782-50ac1614, #w-node-f7257313-75c3-4487-ac6a-fa772ac49783-50ac1614, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5a-50ac1614, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5b-50ac1614, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5c-50ac1614, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5d-50ac1614, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5e-50ac1614, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5f-50ac1614, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e60-50ac1614, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e53-50ac1614, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e54-50ac1614, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e55-50ac1614, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e56-50ac1614, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e57-50ac1614, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e58-50ac1614, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e59-50ac1614, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb7-50ac1614, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb8-50ac1614, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb9-50ac1614, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fba-50ac1614, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbb-50ac1614, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbc-50ac1614, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbd-50ac1614, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbe-50ac1614, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbf-50ac1614, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc0-50ac1614, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc1-50ac1614, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc3-50ac1614, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc4-50ac1614 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_03c43f3a-9432-f2f4-ac87-2c85e34aeac4-50ac1614 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

#w-node-b23632b4-97b4-94f1-aa24-639bb91ab679-669364d4 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a4363b07-90e7-59cf-a443-23ad768f7aa1-669364d4, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa2-669364d4, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa3-669364d4, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa4-669364d4, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa6-669364d4, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa7-669364d4, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa8-669364d4, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa9-669364d4, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aaa-669364d4, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aab-669364d4, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aac-669364d4, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aad-669364d4, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aae-669364d4, #w-node-f6327b1f-4190-8874-d435-98c839761199-669364d4, #w-node-f6327b1f-4190-8874-d435-98c83976119a-669364d4, #w-node-f6327b1f-4190-8874-d435-98c83976119b-669364d4, #w-node-f6327b1f-4190-8874-d435-98c83976119c-669364d4, #w-node-f6327b1f-4190-8874-d435-98c83976119d-669364d4, #w-node-f6327b1f-4190-8874-d435-98c83976119e-669364d4, #w-node-f6327b1f-4190-8874-d435-98c83976119f-669364d4, #w-node-f6327b1f-4190-8874-d435-98c8397611a0-669364d4, #w-node-f6327b1f-4190-8874-d435-98c8397611a1-669364d4, #w-node-f6327b1f-4190-8874-d435-98c8397611a2-669364d4, #w-node-f6327b1f-4190-8874-d435-98c8397611a3-669364d4, #w-node-f6327b1f-4190-8874-d435-98c8397611a4-669364d4, #w-node-f6327b1f-4190-8874-d435-98c8397611a5-669364d4, #w-node-f6327b1f-4190-8874-d435-98c8397611a6-669364d4, #w-node-f7257313-75c3-4487-ac6a-fa772ac49784-669364d4, #w-node-f7257313-75c3-4487-ac6a-fa772ac49785-669364d4, #w-node-f7257313-75c3-4487-ac6a-fa772ac49786-669364d4, #w-node-f7257313-75c3-4487-ac6a-fa772ac49787-669364d4, #w-node-f7257313-75c3-4487-ac6a-fa772ac49788-669364d4, #w-node-f7257313-75c3-4487-ac6a-fa772ac49789-669364d4, #w-node-f7257313-75c3-4487-ac6a-fa772ac4978a-669364d4, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977d-669364d4, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977e-669364d4, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977f-669364d4, #w-node-f7257313-75c3-4487-ac6a-fa772ac49780-669364d4, #w-node-f7257313-75c3-4487-ac6a-fa772ac49782-669364d4, #w-node-f7257313-75c3-4487-ac6a-fa772ac49783-669364d4, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5a-669364d4, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5b-669364d4, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5c-669364d4, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5d-669364d4, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5e-669364d4, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5f-669364d4, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e60-669364d4, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e53-669364d4, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e54-669364d4, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e55-669364d4, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e56-669364d4, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e57-669364d4, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e58-669364d4, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e59-669364d4, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb7-669364d4, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb8-669364d4, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb9-669364d4, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fba-669364d4, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbb-669364d4, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbc-669364d4, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbd-669364d4, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbe-669364d4, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbf-669364d4, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc0-669364d4, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc1-669364d4, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc3-669364d4, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc4-669364d4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_047dc9f7-b227-53de-9067-46cda481ba68-669364d4 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

#w-node-_1dd42d7d-b847-41d9-a8aa-c96e6620a458-71f967d6 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a4363b07-90e7-59cf-a443-23ad768f7aa1-71f967d6, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa2-71f967d6, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa3-71f967d6, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa4-71f967d6, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa6-71f967d6, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa7-71f967d6, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa8-71f967d6, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa9-71f967d6, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aaa-71f967d6, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aab-71f967d6, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aac-71f967d6, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aad-71f967d6, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aae-71f967d6, #w-node-f6327b1f-4190-8874-d435-98c839761199-71f967d6, #w-node-f6327b1f-4190-8874-d435-98c83976119a-71f967d6, #w-node-f6327b1f-4190-8874-d435-98c83976119b-71f967d6, #w-node-f6327b1f-4190-8874-d435-98c83976119c-71f967d6, #w-node-f6327b1f-4190-8874-d435-98c83976119d-71f967d6, #w-node-f6327b1f-4190-8874-d435-98c83976119e-71f967d6, #w-node-f6327b1f-4190-8874-d435-98c83976119f-71f967d6, #w-node-f6327b1f-4190-8874-d435-98c8397611a0-71f967d6, #w-node-f6327b1f-4190-8874-d435-98c8397611a1-71f967d6, #w-node-f6327b1f-4190-8874-d435-98c8397611a2-71f967d6, #w-node-f6327b1f-4190-8874-d435-98c8397611a3-71f967d6, #w-node-f6327b1f-4190-8874-d435-98c8397611a4-71f967d6, #w-node-f6327b1f-4190-8874-d435-98c8397611a5-71f967d6, #w-node-f6327b1f-4190-8874-d435-98c8397611a6-71f967d6, #w-node-f7257313-75c3-4487-ac6a-fa772ac49784-71f967d6, #w-node-f7257313-75c3-4487-ac6a-fa772ac49785-71f967d6, #w-node-f7257313-75c3-4487-ac6a-fa772ac49786-71f967d6, #w-node-f7257313-75c3-4487-ac6a-fa772ac49787-71f967d6, #w-node-f7257313-75c3-4487-ac6a-fa772ac49788-71f967d6, #w-node-f7257313-75c3-4487-ac6a-fa772ac49789-71f967d6, #w-node-f7257313-75c3-4487-ac6a-fa772ac4978a-71f967d6, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977d-71f967d6, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977e-71f967d6, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977f-71f967d6, #w-node-f7257313-75c3-4487-ac6a-fa772ac49780-71f967d6, #w-node-f7257313-75c3-4487-ac6a-fa772ac49782-71f967d6, #w-node-f7257313-75c3-4487-ac6a-fa772ac49783-71f967d6, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5a-71f967d6, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5b-71f967d6, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5c-71f967d6, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5d-71f967d6, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5e-71f967d6, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5f-71f967d6, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e60-71f967d6, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e53-71f967d6, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e54-71f967d6, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e55-71f967d6, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e56-71f967d6, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e57-71f967d6, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e58-71f967d6, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e59-71f967d6, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb7-71f967d6, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb8-71f967d6, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb9-71f967d6, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fba-71f967d6, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbb-71f967d6, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbc-71f967d6, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbd-71f967d6, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbe-71f967d6, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbf-71f967d6, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc0-71f967d6, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc1-71f967d6, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc3-71f967d6, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc4-71f967d6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f3d5035e-0d2f-40d8-0f42-2b51a6615b26-71f967d6 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

#w-node-_25b9b14d-9fc7-711e-536f-bfe846fd8a11-2c2566ad {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a4363b07-90e7-59cf-a443-23ad768f7aa1-2c2566ad, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa2-2c2566ad, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa3-2c2566ad, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa4-2c2566ad, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa6-2c2566ad, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa7-2c2566ad, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa8-2c2566ad, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa9-2c2566ad, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aaa-2c2566ad, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aab-2c2566ad, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aac-2c2566ad, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aad-2c2566ad, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aae-2c2566ad, #w-node-f6327b1f-4190-8874-d435-98c839761199-2c2566ad, #w-node-f6327b1f-4190-8874-d435-98c83976119a-2c2566ad, #w-node-f6327b1f-4190-8874-d435-98c83976119b-2c2566ad, #w-node-f6327b1f-4190-8874-d435-98c83976119c-2c2566ad, #w-node-f6327b1f-4190-8874-d435-98c83976119d-2c2566ad, #w-node-f6327b1f-4190-8874-d435-98c83976119e-2c2566ad, #w-node-f6327b1f-4190-8874-d435-98c83976119f-2c2566ad, #w-node-f6327b1f-4190-8874-d435-98c8397611a0-2c2566ad, #w-node-f6327b1f-4190-8874-d435-98c8397611a1-2c2566ad, #w-node-f6327b1f-4190-8874-d435-98c8397611a2-2c2566ad, #w-node-f6327b1f-4190-8874-d435-98c8397611a3-2c2566ad, #w-node-f6327b1f-4190-8874-d435-98c8397611a4-2c2566ad, #w-node-f6327b1f-4190-8874-d435-98c8397611a5-2c2566ad, #w-node-f6327b1f-4190-8874-d435-98c8397611a6-2c2566ad, #w-node-f7257313-75c3-4487-ac6a-fa772ac49784-2c2566ad, #w-node-f7257313-75c3-4487-ac6a-fa772ac49785-2c2566ad, #w-node-f7257313-75c3-4487-ac6a-fa772ac49786-2c2566ad, #w-node-f7257313-75c3-4487-ac6a-fa772ac49787-2c2566ad, #w-node-f7257313-75c3-4487-ac6a-fa772ac49788-2c2566ad, #w-node-f7257313-75c3-4487-ac6a-fa772ac49789-2c2566ad, #w-node-f7257313-75c3-4487-ac6a-fa772ac4978a-2c2566ad, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977d-2c2566ad, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977e-2c2566ad, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977f-2c2566ad, #w-node-f7257313-75c3-4487-ac6a-fa772ac49780-2c2566ad, #w-node-f7257313-75c3-4487-ac6a-fa772ac49782-2c2566ad, #w-node-f7257313-75c3-4487-ac6a-fa772ac49783-2c2566ad, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5a-2c2566ad, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5b-2c2566ad, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5c-2c2566ad, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5d-2c2566ad, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5e-2c2566ad, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5f-2c2566ad, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e60-2c2566ad, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e53-2c2566ad, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e54-2c2566ad, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e55-2c2566ad, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e56-2c2566ad, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e57-2c2566ad, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e58-2c2566ad, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e59-2c2566ad, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb7-2c2566ad, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb8-2c2566ad, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb9-2c2566ad, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fba-2c2566ad, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbb-2c2566ad, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbc-2c2566ad, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbd-2c2566ad, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbe-2c2566ad, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbf-2c2566ad, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc0-2c2566ad, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc1-2c2566ad, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc3-2c2566ad, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc4-2c2566ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a7c08d0c-9c73-987f-162a-53aace87b5ea-2c2566ad {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

#w-node-abd48d2e-6283-53e4-010b-e49e04d3dfab-26285637 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a4363b07-90e7-59cf-a443-23ad768f7aa1-26285637, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa2-26285637, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa3-26285637, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa4-26285637, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa6-26285637, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa7-26285637, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa8-26285637, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa9-26285637, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aaa-26285637, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aab-26285637, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aac-26285637, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aad-26285637, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aae-26285637, #w-node-f6327b1f-4190-8874-d435-98c839761199-26285637, #w-node-f6327b1f-4190-8874-d435-98c83976119a-26285637, #w-node-f6327b1f-4190-8874-d435-98c83976119b-26285637, #w-node-f6327b1f-4190-8874-d435-98c83976119c-26285637, #w-node-f6327b1f-4190-8874-d435-98c83976119d-26285637, #w-node-f6327b1f-4190-8874-d435-98c83976119e-26285637, #w-node-f6327b1f-4190-8874-d435-98c83976119f-26285637, #w-node-f6327b1f-4190-8874-d435-98c8397611a0-26285637, #w-node-f6327b1f-4190-8874-d435-98c8397611a1-26285637, #w-node-f6327b1f-4190-8874-d435-98c8397611a2-26285637, #w-node-f6327b1f-4190-8874-d435-98c8397611a3-26285637, #w-node-f6327b1f-4190-8874-d435-98c8397611a4-26285637, #w-node-f6327b1f-4190-8874-d435-98c8397611a5-26285637, #w-node-f6327b1f-4190-8874-d435-98c8397611a6-26285637, #w-node-f7257313-75c3-4487-ac6a-fa772ac49784-26285637, #w-node-f7257313-75c3-4487-ac6a-fa772ac49785-26285637, #w-node-f7257313-75c3-4487-ac6a-fa772ac49786-26285637, #w-node-f7257313-75c3-4487-ac6a-fa772ac49787-26285637, #w-node-f7257313-75c3-4487-ac6a-fa772ac49788-26285637, #w-node-f7257313-75c3-4487-ac6a-fa772ac49789-26285637, #w-node-f7257313-75c3-4487-ac6a-fa772ac4978a-26285637, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977d-26285637, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977e-26285637, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977f-26285637, #w-node-f7257313-75c3-4487-ac6a-fa772ac49780-26285637, #w-node-f7257313-75c3-4487-ac6a-fa772ac49782-26285637, #w-node-f7257313-75c3-4487-ac6a-fa772ac49783-26285637, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5a-26285637, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5b-26285637, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5c-26285637, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5d-26285637, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5e-26285637, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5f-26285637, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e60-26285637, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e53-26285637, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e54-26285637, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e55-26285637, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e56-26285637, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e57-26285637, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e58-26285637, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e59-26285637, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb7-26285637, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb8-26285637, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb9-26285637, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fba-26285637, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbb-26285637, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbc-26285637, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbd-26285637, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbe-26285637, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbf-26285637, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc0-26285637, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc1-26285637, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc3-26285637, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc4-26285637 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a174e61-ca49-663e-a912-d9838b91a38e-26285637 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

#w-node-_20dcf48b-0000-1ec5-b701-66fee800f4e3-f1f17c86 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a4363b07-90e7-59cf-a443-23ad768f7aa1-f1f17c86, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa2-f1f17c86, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa3-f1f17c86, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa4-f1f17c86, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa6-f1f17c86, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa7-f1f17c86, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa8-f1f17c86, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aa9-f1f17c86, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aaa-f1f17c86, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aab-f1f17c86, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aac-f1f17c86, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aad-f1f17c86, #w-node-a4363b07-90e7-59cf-a443-23ad768f7aae-f1f17c86, #w-node-f6327b1f-4190-8874-d435-98c839761199-f1f17c86, #w-node-f6327b1f-4190-8874-d435-98c83976119a-f1f17c86, #w-node-f6327b1f-4190-8874-d435-98c83976119b-f1f17c86, #w-node-f6327b1f-4190-8874-d435-98c83976119c-f1f17c86, #w-node-f6327b1f-4190-8874-d435-98c83976119d-f1f17c86, #w-node-f6327b1f-4190-8874-d435-98c83976119e-f1f17c86, #w-node-f6327b1f-4190-8874-d435-98c83976119f-f1f17c86, #w-node-f6327b1f-4190-8874-d435-98c8397611a0-f1f17c86, #w-node-f6327b1f-4190-8874-d435-98c8397611a1-f1f17c86, #w-node-f6327b1f-4190-8874-d435-98c8397611a2-f1f17c86, #w-node-f6327b1f-4190-8874-d435-98c8397611a3-f1f17c86, #w-node-f6327b1f-4190-8874-d435-98c8397611a4-f1f17c86, #w-node-f6327b1f-4190-8874-d435-98c8397611a5-f1f17c86, #w-node-f6327b1f-4190-8874-d435-98c8397611a6-f1f17c86, #w-node-f7257313-75c3-4487-ac6a-fa772ac49784-f1f17c86, #w-node-f7257313-75c3-4487-ac6a-fa772ac49785-f1f17c86, #w-node-f7257313-75c3-4487-ac6a-fa772ac49786-f1f17c86, #w-node-f7257313-75c3-4487-ac6a-fa772ac49787-f1f17c86, #w-node-f7257313-75c3-4487-ac6a-fa772ac49788-f1f17c86, #w-node-f7257313-75c3-4487-ac6a-fa772ac49789-f1f17c86, #w-node-f7257313-75c3-4487-ac6a-fa772ac4978a-f1f17c86, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977d-f1f17c86, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977e-f1f17c86, #w-node-f7257313-75c3-4487-ac6a-fa772ac4977f-f1f17c86, #w-node-f7257313-75c3-4487-ac6a-fa772ac49780-f1f17c86, #w-node-f7257313-75c3-4487-ac6a-fa772ac49782-f1f17c86, #w-node-f7257313-75c3-4487-ac6a-fa772ac49783-f1f17c86, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5a-f1f17c86, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5b-f1f17c86, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5c-f1f17c86, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5d-f1f17c86, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5e-f1f17c86, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e5f-f1f17c86, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e60-f1f17c86, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e53-f1f17c86, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e54-f1f17c86, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e55-f1f17c86, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e56-f1f17c86, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e57-f1f17c86, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e58-f1f17c86, #w-node-ea8ae28d-8e40-7abc-27eb-b7d899d95e59-f1f17c86, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb7-f1f17c86, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb8-f1f17c86, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fb9-f1f17c86, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fba-f1f17c86, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbb-f1f17c86, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbc-f1f17c86, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbd-f1f17c86, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbe-f1f17c86, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fbf-f1f17c86, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc0-f1f17c86, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc1-f1f17c86, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc3-f1f17c86, #w-node-_05c9e5f6-07a6-9b4f-1f2f-f9ed66ee7fc4-f1f17c86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_47471bd7-a4a4-a8f4-4c04-0b6d67a04b62-f1f17c86 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

@media screen and (min-width: 1920px) {
  #w-node-_25b9b14d-9fc7-711e-536f-bfe846fd8a1b-2c2566ad {
    align-self: center;
  }
}

@media screen and (max-width: 991px) {
  #w-node-c93968fa-d3ed-e689-138d-cbb7e412c99d-0769b983 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  #w-node-_353dd60a-c67c-d7df-d634-ebf4f4606af4-f4606af1 {
    place-self: center;
  }

  #w-node-_9dddda19-ce2e-f47c-186f-649f42785bba-4cfea767, #w-node-_03c43f3a-9432-f2f4-ac87-2c85e34aeac4-50ac1614, #w-node-_047dc9f7-b227-53de-9067-46cda481ba68-669364d4, #w-node-f3d5035e-0d2f-40d8-0f42-2b51a6615b26-71f967d6, #w-node-a7c08d0c-9c73-987f-162a-53aace87b5ea-2c2566ad, #w-node-_9a174e61-ca49-663e-a912-d9838b91a38e-26285637 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  #w-node-_20dcf48b-0000-1ec5-b701-66fee800f4e7-f1f17c86, #w-node-_20dcf48b-0000-1ec5-b701-66fee800f4ed-f1f17c86 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_47471bd7-a4a4-a8f4-4c04-0b6d67a04b62-f1f17c86 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  #w-node-c93968fa-d3ed-e689-138d-cbb7e412c99d-0769b983 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_1e02d33b-ee95-5c83-26f5-a1c704a7881b-0769b983 {
    grid-column: span 1 / span 1;
  }

  #w-node-_95feac99-4302-7b82-dcf4-baed5fe2a42f-4cfea767, #w-node-_95feac99-4302-7b82-dcf4-baed5fe2a435-4cfea767 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_9dddda19-ce2e-f47c-186f-649f42785bba-4cfea767 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_9dddda19-ce2e-f47c-186f-649f42785c46-4cfea767 {
    grid-column: span 1 / span 1;
  }

  #w-node-e2cf0c29-4dfd-be38-7319-62eefbb43f5e-50ac1614, #w-node-e2cf0c29-4dfd-be38-7319-62eefbb43f63-50ac1614 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_03c43f3a-9432-f2f4-ac87-2c85e34aeac4-50ac1614 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_03c43f3a-9432-f2f4-ac87-2c85e34aeb50-50ac1614 {
    grid-column: span 1 / span 1;
  }

  #w-node-_047dc9f7-b227-53de-9067-46cda481ba68-669364d4 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_047dc9f7-b227-53de-9067-46cda481baf4-669364d4 {
    grid-column: span 1 / span 1;
  }

  #w-node-_1dd42d7d-b847-41d9-a8aa-c96e6620a45c-71f967d6, #w-node-_1dd42d7d-b847-41d9-a8aa-c96e6620a462-71f967d6 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-f3d5035e-0d2f-40d8-0f42-2b51a6615b26-71f967d6 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-f3d5035e-0d2f-40d8-0f42-2b51a6615bb2-71f967d6 {
    grid-column: span 1 / span 1;
  }

  #w-node-_25b9b14d-9fc7-711e-536f-bfe846fd8a15-2c2566ad, #w-node-_25b9b14d-9fc7-711e-536f-bfe846fd8a1b-2c2566ad {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a7c08d0c-9c73-987f-162a-53aace87b5ea-2c2566ad {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-a7c08d0c-9c73-987f-162a-53aace87b676-2c2566ad {
    grid-column: span 1 / span 1;
  }

  #w-node-abd48d2e-6283-53e4-010b-e49e04d3dfaf-26285637, #w-node-abd48d2e-6283-53e4-010b-e49e04d3dfb5-26285637 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_9a174e61-ca49-663e-a912-d9838b91a38e-26285637 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_9a174e61-ca49-663e-a912-d9838b91a41a-26285637 {
    grid-column: span 1 / span 1;
  }

  #w-node-_20dcf48b-0000-1ec5-b701-66fee800f4e7-f1f17c86, #w-node-_20dcf48b-0000-1ec5-b701-66fee800f4ed-f1f17c86 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_47471bd7-a4a4-a8f4-4c04-0b6d67a04b62-f1f17c86 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_47471bd7-a4a4-a8f4-4c04-0b6d67a04bee-f1f17c86 {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_69a405b6-95ba-ca5a-ffa6-724ed679d1fd-0769b983 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_59c3e659-719c-987d-eee9-c76d8be9fcea-0769b983 {
    grid-column-end: 2;
    place-self: end center;
  }

  #w-node-_69a405b6-95ba-ca5a-ffa6-724ed679d204-0769b983 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_69a405b6-95ba-ca5a-ffa6-724ed679d200-0769b983 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_1d11531f-5af6-2fc9-d738-a5b822c0e204-0769b983 {
    grid-area: 1 / 2 / 3 / 3;
    place-self: end stretch;
  }

  #w-node-c93968fa-d3ed-e689-138d-cbb7e412c99d-0769b983 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-c25daf83-6c85-bc17-1014-7c1f841f428d-0769b983 {
    grid-column: span 2 / span 2;
  }

  #w-node-_95feac99-4302-7b82-dcf4-baed5fe2a425-4cfea767 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_95feac99-4302-7b82-dcf4-baed5fe2a42b-4cfea767 {
    grid-column-end: 2;
    place-self: end center;
  }

  #w-node-_95feac99-4302-7b82-dcf4-baed5fe2a42f-4cfea767 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_95feac99-4302-7b82-dcf4-baed5fe2a438-4cfea767 {
    grid-area: 1 / 2 / 3 / 3;
    place-self: end stretch;
  }

  #w-node-_9dddda19-ce2e-f47c-186f-649f42785bba-4cfea767 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_9dddda19-ce2e-f47c-186f-649f42785c46-4cfea767 {
    grid-column: span 1 / span 1;
  }

  #w-node-_5a27d4cf-1e79-bf5d-460e-6df03a688b76-4cfea767 {
    grid-column: span 2 / span 2;
  }

  #w-node-e2cf0c29-4dfd-be38-7319-62eefbb43f54-50ac1614 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-e2cf0c29-4dfd-be38-7319-62eefbb43f5a-50ac1614 {
    grid-column-end: 2;
    place-self: end center;
  }

  #w-node-e2cf0c29-4dfd-be38-7319-62eefbb43f5e-50ac1614 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-e2cf0c29-4dfd-be38-7319-62eefbb43f63-50ac1614 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-e2cf0c29-4dfd-be38-7319-62eefbb43f67-50ac1614 {
    grid-area: 1 / 2 / 3 / 3;
    place-self: end stretch;
  }

  #w-node-_03c43f3a-9432-f2f4-ac87-2c85e34aeac4-50ac1614 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_03c43f3a-9432-f2f4-ac87-2c85e34aeb50-50ac1614 {
    grid-column: span 1 / span 1;
  }

  #w-node-_7e9aacbd-d572-9460-3aca-c41de65a809e-50ac1614 {
    grid-column: span 2 / span 2;
  }

  #w-node-b23632b4-97b4-94f1-aa24-639bb91ab673-669364d4 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-b23632b4-97b4-94f1-aa24-639bb91ab679-669364d4 {
    grid-column-end: 2;
    place-self: end center;
  }

  #w-node-b23632b4-97b4-94f1-aa24-639bb91ab67d-669364d4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b23632b4-97b4-94f1-aa24-639bb91ab686-669364d4 {
    grid-area: 1 / 2 / 3 / 3;
    place-self: end stretch;
  }

  #w-node-_047dc9f7-b227-53de-9067-46cda481ba68-669364d4 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_047dc9f7-b227-53de-9067-46cda481baf4-669364d4 {
    grid-column: span 1 / span 1;
  }

  #w-node-_6f688507-21fe-73c7-59d3-90217027a95b-669364d4 {
    grid-column: span 2 / span 2;
  }

  #w-node-_1dd42d7d-b847-41d9-a8aa-c96e6620a452-71f967d6 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_1dd42d7d-b847-41d9-a8aa-c96e6620a458-71f967d6 {
    grid-column-end: 2;
    place-self: end center;
  }

  #w-node-_1dd42d7d-b847-41d9-a8aa-c96e6620a45c-71f967d6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1dd42d7d-b847-41d9-a8aa-c96e6620a465-71f967d6 {
    grid-area: 1 / 2 / 3 / 3;
    place-self: end stretch;
  }

  #w-node-f3d5035e-0d2f-40d8-0f42-2b51a6615b26-71f967d6 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-f3d5035e-0d2f-40d8-0f42-2b51a6615bb2-71f967d6 {
    grid-column: span 1 / span 1;
  }

  #w-node-_45c3d431-a072-be29-f904-873970c6058b-71f967d6 {
    grid-column: span 2 / span 2;
  }

  #w-node-_25b9b14d-9fc7-711e-536f-bfe846fd8a0b-2c2566ad {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_25b9b14d-9fc7-711e-536f-bfe846fd8a11-2c2566ad {
    grid-column-end: 2;
    place-self: end center;
  }

  #w-node-_25b9b14d-9fc7-711e-536f-bfe846fd8a15-2c2566ad {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_25b9b14d-9fc7-711e-536f-bfe846fd8a1b-2c2566ad {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_25b9b14d-9fc7-711e-536f-bfe846fd8a1e-2c2566ad {
    grid-area: 1 / 2 / 3 / 3;
    place-self: end stretch;
  }

  #w-node-a7c08d0c-9c73-987f-162a-53aace87b5ea-2c2566ad {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-a7c08d0c-9c73-987f-162a-53aace87b676-2c2566ad {
    grid-column: span 1 / span 1;
  }

  #w-node-c4dd371b-b4f6-4c7f-1be1-42045b922e17-2c2566ad {
    grid-column: span 2 / span 2;
  }

  #w-node-abd48d2e-6283-53e4-010b-e49e04d3dfa5-26285637 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-abd48d2e-6283-53e4-010b-e49e04d3dfab-26285637 {
    grid-column-end: 2;
    place-self: end center;
  }

  #w-node-abd48d2e-6283-53e4-010b-e49e04d3dfaf-26285637 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-abd48d2e-6283-53e4-010b-e49e04d3dfb8-26285637 {
    grid-area: 1 / 2 / 3 / 3;
    place-self: end stretch;
  }

  #w-node-_9a174e61-ca49-663e-a912-d9838b91a38e-26285637 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_9a174e61-ca49-663e-a912-d9838b91a41a-26285637 {
    grid-column: span 1 / span 1;
  }

  #w-node-_3e73ad87-baa5-3762-53e6-f6ce1c4f3932-26285637 {
    grid-column: span 2 / span 2;
  }

  #w-node-_20dcf48b-0000-1ec5-b701-66fee800f4dd-f1f17c86 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_20dcf48b-0000-1ec5-b701-66fee800f4e3-f1f17c86 {
    grid-column-end: 2;
    place-self: end center;
  }

  #w-node-_20dcf48b-0000-1ec5-b701-66fee800f4e7-f1f17c86 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_20dcf48b-0000-1ec5-b701-66fee800f4f0-f1f17c86 {
    grid-area: 1 / 2 / 3 / 3;
    place-self: end stretch;
  }

  #w-node-_47471bd7-a4a4-a8f4-4c04-0b6d67a04b62-f1f17c86 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_47471bd7-a4a4-a8f4-4c04-0b6d67a04bee-f1f17c86 {
    grid-column: span 1 / span 1;
  }

  #w-node-_029b4361-17f2-010c-4336-277a6723c4ae-f1f17c86 {
    grid-column: span 2 / span 2;
  }
}


@font-face {
  font-family: 'Josefinsans Variablefont Wght';
  src: url('../fonts/JosefinSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Apex Mk 2';
  src: url('../fonts/apex-mk2.bold-extended.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.image-9 {
  display: none;
  margin-bottom: -20rem;
}