@font-face {
  font-family: "Fa 400";
  src: url('../fonts/fa-regular-400.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa Brands 400";
  src: url('../fonts/fa-brands-400.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa Solid 900";
  src: url('../fonts/fa-solid-900.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

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

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

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

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

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

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

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

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

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

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

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

body {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-primary);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, 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-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

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

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

p {
  margin-bottom: 0;
}

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

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

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

li {
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding-left: .5rem;
}

img {
  text-align: left;
  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;
}

.max-width-full.more-bottom {
  padding-bottom: 7rem;
}

.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-xlarge.align-center {
  text-align: center;
  text-shadow: none;
  width: auto;
  padding-top: .25rem;
  font-size: 1rem;
}

.max-width-xlarge.align-center.more {
  max-width: none;
  margin-left: 5%;
  margin-right: 5%;
}

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

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

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

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

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

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

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

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

.max-width-large.align-center.more-top {
  margin-top: 1rem;
}

.max-width-large.align-center.larger {
  font-size: 2.2rem;
  line-height: 2.8rem;
}

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

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

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

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

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

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

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

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

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

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

.margin-xsmall {
  margin: 1rem;
}

.margin-small {
  margin: 1.5rem;
}

.margin-small.little-more {
  margin-bottom: 2rem;
}

.margin-small.text-align-left {
  text-align: right;
}

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

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

.margin-top.margin-medium.trans.feature-2 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.margin-top.margin-medium.trans.feature-2.less {
  margin-top: 0;
  margin-bottom: 0;
}

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

.margin-bottom.margin-xxlarge.less-bottom {
  margin-bottom: 0;
}

.margin-bottom.margin-xxlarge.animiation {
  margin-bottom: 1rem;
}

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

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

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

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

.margin-bottom.margin-small.max-width-full.remove {
  background-color: #fff0;
  padding: 0;
}

.margin-bottom.margin-medium {
  margin: 0 0 1rem;
}

.margin-bottom.margin-small {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  font-family: Oswald, sans-serif;
}

.margin-bottom.margin-small.less-bottom {
  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-top.padding-xhuge, .padding-top.padding-xxhuge, .padding-top.padding-0, .padding-top.padding-large, .padding-top.padding-custom2, .padding-top.padding-xlarge, .padding-top.padding-huge, .padding-top.padding-xxsmall, .padding-top.padding-custom3, .padding-top.padding-tiny, .padding-top.padding-medium, .padding-top.padding-xxlarge, .padding-top.padding-small, .padding-top.padding-xsmall, .padding-top.padding-custom1 {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

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

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

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

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

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

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

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

.text-size-medium {
  color: var(--base-color-neutral--white);
  text-shadow: 14px 5px 18px #000c;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.125;
}

.text-size-medium.text-color-black {
  color: #070735;
  text-shadow: none;
  font-family: neue-haas-grotesk-display, sans-serif;
}

.text-size-medium.spacer-small.align-center {
  text-align: center;
  text-shadow: none;
  width: auto;
  padding-top: .25rem;
  font-size: 1rem;
}

.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-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h2.more-bottom {
  margin-bottom: 2rem;
}

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

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

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

.heading-style-h6.bigger {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.5rem;
}

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

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

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

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

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

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

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

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

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

.heading-style-h5 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

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

.heading-style-h1 {
  color: var(--base-color-neutral--white);
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h1.herotext {
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 5px 8px 20px #000;
  margin-top: 2rem;
  margin-bottom: 14rem;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 5.8rem;
  font-weight: 900;
  line-height: 5.9rem;
  position: relative;
  top: 0;
}

.heading-style-h1.herotext.dinner {
  text-shadow: 5px 8px 20px #00000063;
  margin-top: 0;
  margin-bottom: 2rem;
  margin-right: 1rem;
  font-size: 5rem;
  line-height: 5.2rem;
}

.heading-style-h1.herotext.conference {
  text-shadow: 5px 8px 20px #00000063;
  margin-top: 0;
  margin-bottom: 2rem;
  margin-right: 1rem;
  font-size: 4.5rem;
  line-height: 4.8rem;
}

.heading-style-h1.herotext.conference.text-color-red {
  color: var(--base-color-brand--white);
  text-shadow: none;
  -webkit-text-fill-color: transparent;
  background-image: url('../images/iStock-2156293682.jpg');
  background-position: 100% 100%;
  background-size: auto;
  -webkit-background-clip: text;
  background-clip: text;
}

.heading-style-h1.text-color-black, .heading-style-h1.dinner {
  font-family: neue-haas-grotesk-display, sans-serif;
}

.heading-style-h1.dinner-2 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  line-height: 4.5rem;
}

.heading-style-h1.dinner-2.extra-bottom {
  color: var(--base-color-neutral--white);
  text-shadow: none;
  -webkit-text-fill-color: inherit;
  background-color: #0000;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  background-clip: border-box;
  margin-bottom: 2rem;
}

.heading-style-h1.dinner-2.smaller {
  font-size: 3.5rem;
  line-height: 3.75rem;
}

.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-icon.is-alternate {
  border-color: var(--base-color-neutral--white);
}

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

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

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

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

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

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

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

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

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

.button.is-secondary {
  color: var(--base-color-neutral--black);
  background-color: #0000;
  border-radius: 5px;
  font-family: neue-haas-grotesk-display, sans-serif;
}

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

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

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

.button.is-small.is-round {
  border-radius: 50px;
  font-family: Inter, sans-serif;
}

.button.is-small.is-round.red {
  background-color: #c41220;
  font-family: neue-haas-grotesk-text, sans-serif;
}

.button.is-alternate {
  border-color: var(--base-color-brand--white);
  background-color: var(--base-color-brand--white);
  color: var(--base-color-neutral--black);
  border-radius: 8px;
  width: 100%;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 700;
}

.button.is-tertiary {
  color: var(--base-color-neutral--black);
  background-color: #0000;
  border-color: #0000;
}

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

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

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

.heading-style-h4 {
  font-family: neue-haas-grotesk-display, sans-serif;
  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-size-regular.text-color-white {
  -webkit-text-fill-color: inherit;
  background-color: #030327;
  background-image: none;
  background-clip: border-box;
  font-family: Open Sans, sans-serif;
}

.text-size-regular.text-color-white.text-weight-bold.oswald.caps.bigger {
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1.5rem;
  line-height: 1.8rem;
}

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

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

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

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

.heading-style-h3 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

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

.form_input {
  border: 1px solid var(--base-color-neutral--black);
  background-color: var(--base-color-neutral--white);
  color: var(--base-color-neutral--black);
  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: url('../images/chevron-down.svg');
  background-position: 99%;
  background-repeat: no-repeat;
  background-size: auto;
}

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

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

.form_input.is-alternate::placeholder {
  color: #fff9;
}

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

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

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

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

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

.text-color-white {
  color: var(--base-color-neutral--white);
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#fff, #fff);
  -webkit-background-clip: text;
  background-clip: text;
}

.text-color-white.disclaimer {
  color: var(--base-color-neutral--neutral-light);
  text-align: left;
  padding-left: 2rem;
  padding-right: 2rem;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 15px;
  line-height: 18px;
}

.text-color-white.disclaimer.align-center {
  text-align: center;
  background-image: linear-gradient(#ffffff82, #ffffff82);
  font-family: neue-haas-grotesk-text, sans-serif;
}

.text-color-white.disclaimer.align-center.darker {
  color: var(--base-color-neutral--black);
  font-family: neue-haas-grotesk-text, sans-serif;
  font-weight: 400;
}

.text-color-white.disclaimer.align-center.darker.black {
  background-image: linear-gradient(#000, #000);
}

.text-color-white.disclaimer.align-center.darker-3 {
  background-color: var(--base-color-neutral--neutral-dark);
  color: var(--base-color-neutral--black);
  background-image: none;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-weight: 400;
}

.text-color-white.disclaimer.align-center.mid {
  background-image: linear-gradient(#ffffff80, #ffffff80);
}

.text-color-white.disclaimer.smaller {
  color: #cecece;
  background-image: linear-gradient(#ffffff8c, #ffffff8c);
  padding-left: 1rem;
  padding-right: 1rem;
}

.text-color-white.disclaimer.xsmall {
  color: #cecece;
  background-image: linear-gradient(#ffffff8c, #ffffff8c);
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 8px;
  line-height: 12px;
}

.text-color-white.no-shadow {
  text-shadow: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form_radio-icon.is-alternate {
  border-color: var(--base-color-neutral--white);
}

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

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

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

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

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

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

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

.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 a {
  color: var(--base-color-brand--white);
}

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

.text-rich-text.policies {
  font-family: neue-haas-grotesk-text, sans-serif;
}

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

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

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

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

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

.icon-1x1-medium.rb {
  color: #fff;
  width: 11rem;
  height: auto;
}

.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-white {
  margin-top: 0;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 2.5rem;
  line-height: 2.8rem;
}

.text-size-large.text-color-white.smaller {
  font-size: 1.8rem;
  line-height: 2.2rem;
}

.text-size-large.text-color-white.smaller.more-top {
  justify-content: flex-start;
  align-items: center;
  margin-top: .5rem;
  display: flex;
}

.text-size-large.text-color-white.smaller.more-top.reduce-size {
  margin-top: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6rem;
}

.text-size-large.text-color-white.smaller.more-top.less-top {
  border-right: 1px #000;
  margin-top: 0;
  font-size: 1.4rem;
  line-height: 1.8rem;
}

.text-size-large.text-color-white.smaller.more-top.less-top.border {
  border-right: 2px solid var(--base-color-system--error-red);
}

.text-size-large.text-color-white.xsmaller {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-size-large.text-color-white.xsmaller.more-top {
  justify-content: flex-start;
  align-items: center;
  margin-top: .5rem;
  display: flex;
}

.text-size-large.text-color-white.xsmaller.more-top.reduce-size {
  margin-top: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6rem;
}

.text-size-large.text-color-white.xsmaller.more-top.less-top {
  border-right: 1px #000;
  margin-top: 0;
  font-size: 1.4rem;
  line-height: 1.8rem;
}

.text-size-large.text-color-white.xsmaller.more-top.less-top.border {
  border-right: 2px solid var(--base-color-system--error-red);
}

.text-size-large.text-color-dark {
  margin-top: 0;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 2.5rem;
  line-height: 2.8rem;
}

.text-size-large.text-color-dark.smaller {
  font-size: 1.8rem;
  line-height: 2.2rem;
}

.text-size-large.text-color-dark.smaller.more-top {
  justify-content: flex-start;
  align-items: center;
  margin-top: .5rem;
  display: flex;
}

.text-size-large.text-color-dark.smaller.more-top.reduce-size {
  margin-top: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6rem;
}

.text-size-large.text-color-dark.smaller.more-top.less-top {
  color: #070735;
  border-right: 1px #000;
  margin-top: 0;
  font-size: 1.4rem;
  line-height: 1.8rem;
}

.text-size-large.text-color-dark.smaller.more-top.less-top.border {
  border-right: 2px solid var(--base-color-system--error-red);
  color: #070735;
}

.text-size-large.text-color-dark.smaller.more-top.less-top.add-left {
  padding-left: 20px;
}

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

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

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

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

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

.padding-section-small.text-align-center.no-top {
  padding-top: 0;
  padding-bottom: 5rem;
}

.padding-section-small.text-align-center.no-top.more-bottom {
  padding-bottom: 6rem;
}

.padding-section-small.less-bottom {
  margin-bottom: 0;
}

.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 {
  z-index: 1;
  background-color: #0000;
  margin-left: 0;
  padding-left: 5%;
  padding-right: 5%;
  position: relative;
}

.padding-global.cta {
  background-color: #000;
  background-image: radial-gradient(circle, #131385 43%, #000), url('../images/Grain_Latest.png');
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat-x;
  background-size: auto, 300px;
}

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

.padding-section-medium.brust {
  background-image: radial-gradient(circle, #0b0b46 40%, #fff0);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.padding-section-medium.more-top {
  padding-top: 7rem;
}

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

.padding-section-large {
  padding-top: 7rem;
  padding-bottom: 7rem;
  font-family: neue-haas-grotesk-display, sans-serif;
}

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

.padding-section-large.no-top, .padding-section-large.less-top {
  padding-top: 7rem;
}

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

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

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

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

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

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

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

.spacer-small.text-align-center {
  margin-left: auto;
}

.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 {
  margin-top: 1rem;
  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;
}

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

.tag {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border: 1px none var(--base-color-neutral--neutral-lightest);
  background-color: var(--base-color-neutral--neutral-lightest);
  color: var(--base-color-neutral--black);
  justify-content: center;
  align-items: center;
  padding: .25rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.tag.is-text {
  background-color: #0000;
  border-style: none;
  border-color: #0000;
  padding: 0;
  display: inline-block;
}

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

.tag.is-text.session-color {
  color: var(--base-color-brand--white);
  text-transform: uppercase;
  font-family: Exo, sans-serif;
  font-size: 1.5rem;
}

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

.header84_image {
  aspect-ratio: auto;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

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

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

.header84_card {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border: 1px solid var(--border-color--border-primary);
  background-color: #fff;
  border-radius: 0;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
  overflow: hidden;
}

.header84_card.background-color-black {
  background-color: var(--base-color-brand--black);
  border-radius: .4rem;
}

.header84_card.background-color-black.text-color-white {
  padding: 40px;
}

.header1_image-wrapper {
  border-radius: 0;
  overflow: hidden;
}

.header1_image-wrapper.dinner, .header1_image-wrapper.conference {
  margin-bottom: 0;
}

.header1_image {
  aspect-ratio: auto;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

.header1_component.round {
  background-color: #070735;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  border-radius: 50px;
  margin-bottom: 0;
  padding: 1rem 1rem 2rem 2rem;
}

.header1_component.round.dinner {
  padding-top: 2rem;
  padding-right: 2rem;
}

.header1_component.round.dinner.animation {
  background-image: linear-gradient(270deg, #0000 10%, #070735 77%), linear-gradient(#070735 44%, #04041e61), url('../images/ChatGPT-Image-Nov-9-2025-04_23_25-PM.webp');
  background-position: 0 0, 0 0, 100% 100%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, 55%;
}

.header1_component.round.dinner.animation.light-blue {
  background-color: #263ff7;
  background-image: radial-gradient(circle at 100% 100%, #040e52ba 22%, #0000 49%), linear-gradient(#0000, #0000007a), linear-gradient(270deg, #0000 17%, #002481ab 65%, #002481bf 99%), linear-gradient(#2661f7 44%, #04041e61), url('../images/coin-background.webp');
  background-position: 0 0, 0 0, 0 0, 0 0, 50% 100%;
  background-repeat: repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto;
}

.header1_component.round.dinner.animation.old {
  background-image: linear-gradient(270deg, #0000 10%, #070735 77%), linear-gradient(#070735 44%, #04041e61);
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat;
  background-size: auto, auto;
}

.section_header1 {
  color: var(--text-color--text-primary);
  background-color: #0000;
  position: relative;
  overflow: hidden;
}

.section_header1.bkg {
  background-image: linear-gradient(#0000 62%, #fff 71%);
}

.header1_content {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1.08fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  place-items: center;
  display: grid;
}

.header1_content.dinner {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-columns: 1.1fr .9fr;
}

.image-wrap {
  perspective: 1000px;
  object-fit: fill;
  flex-flow: wrap;
  justify-content: center;
  align-items: flex-start;
  transition: all .2s ease-in-out;
  display: flex;
  position: relative;
  top: 0;
  overflow: hidden;
  transform: perspective(1000px);
}

.image-wrap.dinner {
  aspect-ratio: 1;
  position: static;
  top: auto;
}

.image-wrap.dinner.new {
  aspect-ratio: auto;
}

._3d-image {
  aspect-ratio: auto;
  border: 1px none var(--base-color-brand--black);
  -webkit-backdrop-filter: contrast(200%);
  backdrop-filter: contrast(200%);
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  max-width: 90%;
  height: 100%;
  margin: 5%;
  padding: 2%;
  overflow: hidden;
}

._3d-image.filter {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  mix-blend-mode: normal;
  border-style: none;
  max-width: none;
  margin: 0%;
  padding: 0%;
}

._3d-image.filter.bottom {
  border-radius: 50px;
  height: auto;
  margin-bottom: 0;
  margin-left: 0;
  padding-bottom: 0%;
}

._3d-image.filter.bottom.new-photo {
  object-fit: cover;
  height: 100%;
  position: static;
}

.shine {
  opacity: .31;
  filter: blur(60px);
  background-color: #e0b65abf;
  border-radius: 50%;
  flex: 0 auto;
  width: 20rem;
  height: 20rem;
  margin: 1.6rem;
  padding: 1.8rem;
  position: absolute;
  inset: auto;
}

.navbar13_menu-button {
  padding: 0;
}

.navbar13_button-wrapper {
  grid-column-gap: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.navbar13_menu-link-wrapper {
  color: var(--base-color-neutral--white);
  display: flex;
}

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

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

.navbar-on-page {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.navbar13_logo {
  max-width: 220px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar13_dropdown-list.w--open {
  border: 1px solid var(--border-color--border-primary);
  background-color: var(--background-color--background-primary);
  color: var(--base-color-brand--black);
  padding: .5rem;
  position: absolute;
}

.navbar-13-instructions-delete {
  text-align: left;
  background-color: #fff;
  width: 100%;
  padding: 2rem;
}

.navbar13_instructions-list {
  padding-left: 1.25rem;
}

.navbar13_menu {
  align-items: center;
  position: static;
}

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

.navbar13_dropdown-link {
  padding: .5rem 1rem;
  font-family: neue-haas-grotesk-text, sans-serif;
}

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

.navbar13_container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #070735;
  background-image: url('../images/Grain_Latest.png');
  background-position: 50%;
  background-repeat: repeat;
  background-size: 300px;
  border: 1px solid #070735;
  border-radius: 50px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  height: auto;
  min-height: 4.5rem;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  box-shadow: 0 2px 20px 6px #ffffff8f;
}

.navbar13_container.disabled {
  position: relative;
}

.navbar13_link {
  color: var(--base-color-brand--white);
  padding: .5rem 1rem;
  font-family: neue-haas-grotesk-text, sans-serif;
}

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

.navbar13_instructions-list-item {
  padding-left: .5rem;
}

.navbar13_component {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  margin-left: 5%;
  margin-right: 5%;
  display: flex;
  position: fixed;
  top: 0%;
}

.navbar13_component.delete-this-class {
  display: block;
  position: relative;
}

.navbar13_component.delete-this-class.dinner {
  position: sticky;
  top: 1%;
}

.cta30_form-block {
  max-width: 30rem;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.cta30_component {
  z-index: 1;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  position: relative;
}

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

.section_cta30 {
  position: relative;
}

.error-text {
  color: #e23939;
}

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

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

.video-overlay-layer {
  z-index: 1;
  background-color: #0000;
  background-image: linear-gradient(#0006 67%, #000), radial-gradient(circle, #000000fa 9%, #ffffff1c), url('../images/Black-gold-wave_1Black-gold-wave.webp');
  background-position: 0 0, 0 0, 0 0;
  background-repeat: repeat, repeat, repeat-x;
  background-size: auto, auto, auto;
  position: absolute;
  inset: 0%;
}

.cta30_background-video {
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.fs-copyclip_wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--base-color-neutral--white);
  border-radius: 10px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  place-items: center start;
  padding: 1rem;
  display: grid;
  position: relative;
}

.fs-copyclip_button {
  color: #fff;
  text-align: center;
  background-color: #c41220;
  border-radius: 10px;
  width: auto;
  min-width: 168px;
  padding: .6rem 2rem .65rem;
  font-family: neue-haas-grotesk-text, sans-serif;
}

.fs-copyclip_button:hover {
  background-color: #960b16;
}

.fs-copyclip_text {
  color: var(--base-color-brand--black);
  font-family: neue-haas-grotesk-text, sans-serif;
}

.div-block {
  background-color: var(--base-color-brand--black);
  border-radius: 10px;
}

.text-block {
  color: var(--base-color-neutral--white);
  padding: .5rem;
  font-family: neue-haas-grotesk-text, sans-serif;
}

.font-icon {
  padding-right: .5rem;
  font-family: "Fa 400", Arial, sans-serif;
}

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

.div-block-2 {
  padding-right: 3rem;
}

.div-block-2.top {
  margin-top: 2rem;
  padding-right: 0;
}

.quote {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: #9090c730;
  background-image: url('../images/Grain_Latest.png'), url('../images/dt_signature.svg');
  background-position: 0 0, 50% 90%;
  background-repeat: repeat, no-repeat;
  background-size: 300px, 100px;
  border: 1px solid #d3b136;
  border-radius: 19px;
  margin-top: 4rem;
  padding: 0 1rem 1rem;
}

.quote.smaller {
  background-color: #0000;
  background-position: 0 0, 95% 120%;
  background-size: 300px, 125px;
  border-style: none;
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  top: -25px;
}

.quote.smaller.dinner {
  background-image: linear-gradient(#00000080, #00000080), url('../images/Grain_Latest.png');
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat;
  background-size: auto, 300px;
  border-radius: 30px;
  margin-top: .5rem;
  margin-bottom: 0;
  padding-bottom: 0;
  position: static;
  top: -157px;
  left: 0;
  right: 0;
}

.quote.smaller.dinner.padding-all {
  padding: 1rem;
}

.text-block-3 {
  color: var(--base-color-neutral--neutral-light);
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  padding-top: 20px;
  padding-bottom: 80px;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 2.3rem;
}

.text-block-3.dinner {
  color: var(--base-color-neutral--white);
  padding-bottom: 20px;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1.75rem;
  line-height: 2rem;
}

.div-block-3 {
  background-color: #d4b036;
}

.image {
  width: 150px;
}

.text-block-4 {
  text-align: center;
  font-family: Merriweather, serif;
  font-size: 3rem;
}

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

.banner12_component {
  justify-content: flex-end;
  width: 100vw;
  max-width: 100%;
  font-family: Merriweather, serif;
  display: flex;
  overflow: hidden;
}

.banner12_inner-wrapper {
  justify-content: flex-end;
  width: 200vw;
  display: flex;
}

.banner12_marquee {
  justify-content: space-between;
  align-items: center;
  width: 150vw;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

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

.banner12_text {
  word-break: keep-all;
  overflow-wrap: normal;
  font-size: 2.25rem;
  font-weight: 400;
}

.marquee {
  grid-column-gap: 1rem;
  color: var(--base-color-brand--white);
  background-color: #040420;
  background-image: linear-gradient(#03031917, #03031917), url('../images/Grain_50p.png');
  background-position: 0 0, 0 0;
  background-size: auto, 300px;
  border: 4px solid #c41220;
  border-left: 7px #c41220;
  border-right: 2px #c41220;
  width: 100%;
  margin-bottom: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  overflow: hidden;
}

.marquee-content {
  grid-column-gap: 1rem;
  flex: none;
  justify-content: space-around;
  min-width: 100%;
  display: flex;
}

.marquee-content.scroll {
  justify-content: space-around;
  align-items: center;
}

.text-block-5 {
  color: #fff;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #c5a44fad;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  background-image: url('../images/iStock-2156293682.jpg'), linear-gradient(176deg, #ebbb0f, #866a05);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
  -webkit-background-clip: text;
  background-clip: text;
  padding-left: 0;
  padding-right: 0;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 3vw;
  font-weight: 900;
  line-height: 1;
}

.text-block-5.trump {
  padding-left: 8rem;
  padding-right: 8rem;
}

.text-block-5.space {
  padding-left: 2rem;
  padding-right: 2rem;
}

.bold-text {
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 5rem;
}

.t-gold {
  color: #c41220;
}

.text-block-6 {
  font-family: Changa One, Impact, sans-serif;
  font-size: 2rem;
}

.trump-t {
  background-color: var(--base-color-brand--black);
  border-radius: 300px;
  justify-content: center;
  align-items: center;
  width: 12rem;
  height: 12rem;
  display: flex;
}

.text-outline {
  color: #070735;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: var(--base-color-neutral--white);
}

.section_layout415 {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-primary);
  height: 500px;
}

.heading-style-h2-2 {
  color: #070735;
  -webkit-text-fill-color: transparent;
  background-image: url('../images/intothe-rainbow-9.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 4.5rem;
}

.heading-style-h2-2.text-color-white {
  color: #d3b136;
  padding-bottom: 10px;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 3rem;
  line-height: 3.2rem;
}

.heading-style-h2-2.no-shadow {
  -webkit-text-fill-color: transparent;
  background-image: url('../images/intothe-rainbow-9.svg');
  background-position: 50%;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
}

.heading-style-h2-2.no-shadow.larger {
  font-size: 6rem;
  line-height: 6.5rem;
}

.heading-style-h2-2.no-shadow.larger.text-color-white {
  color: #fff;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
}

.heading-style-h2-2.no-shadow.smaller {
  font-size: 3.1rem;
  line-height: 3.8rem;
}

.heading-style-h2-2.no-shadow.white {
  color: #fff;
  -webkit-text-stroke-color: #fff;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
}

.layout415_icon-wrapper {
  display: inline-block;
}

.text-size-medium-2 {
  font-family: Inter, sans-serif;
  font-size: 1.125rem;
}

.layout415_card {
  border: 1px solid var(--border-color--border-primary);
  background-color: #fff;
  border-radius: 0;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 1.5rem;
  padding: 2rem;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.layout415_card.card-3 {
  z-index: 1;
  transform: rotate(6deg);
}

.layout415_card.card-3.z-index-3, .layout415_card.card-1 {
  z-index: 3;
}

.layout415_card.card-2 {
  z-index: 2;
  transform: rotate(3deg);
}

.layout415_card.card-2.z-index-3 {
  z-index: 3;
}

.layout415_card.card-4 {
  z-index: auto;
  transform: rotate(9deg);
}

.layout415_card.card-4.z-index-3 {
  z-index: 3;
}

.layout415_card-content {
  color: var(--base-color-neutral--neutral-darkest);
  font-family: Oswald, sans-serif;
}

.layout415_component {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 500px;
  position: relative;
}

.layout415_instructions-list {
  padding-left: 1.25rem;
}

.layout-415-instructions-delete {
  text-align: left;
  background-color: #fff;
  padding: 2rem;
}

.layout415_content {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  height: 500px;
  display: grid;
  position: sticky;
  top: 0;
}

.layout415_instructions-list-item {
  padding-left: .5rem;
}

.layout415_content-right {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.layout415_ix-trigger {
  z-index: -1;
  margin-top: 60px;
  position: absolute;
  inset: 0%;
}

.paragraph {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
}

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

.text-size-medium-3 {
  font-family: Inter, sans-serif;
  font-size: 1.125rem;
}

.layout353_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  border: 1px solid var(--base-color-neutral--white);
  background-color: #101058;
  background-image: url('../images/Grain_Latest.png'), radial-gradient(circle at 100%, #000030f7 25%, #fff0), url('../images/trump-silhouette.png');
  background-position: 0 0, 0 0, 0 0;
  background-size: 300px, auto, 150px;
  border-radius: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding: 4rem;
  display: grid;
}

.layout353_content-item {
  border: 1px solid var(--border-color--border-primary);
  background-color: var(--base-color-neutral--white);
  margin-bottom: 2rem;
  padding: 2rem;
  position: sticky;
}

.layout353_content-item.content-item-2 {
  border-color: #0059ff;
  border-radius: 20px;
  top: 32%;
  box-shadow: 0 2px 19px 5px #0331a585;
}

.layout353_content-item.content-item-1 {
  mix-blend-mode: normal;
  border-width: 1px;
  border-color: #0059ff;
  border-radius: 20px;
  top: 30%;
  box-shadow: 0 2px 19px 5px #0331a585;
}

.layout353_content-item.content-item-3 {
  border-color: #0059ff;
  border-radius: 20px;
  top: 34%;
  box-shadow: 0 2px 19px 5px #0331a585;
}

.layout353_content-item.content-item-4 {
  border-color: #0059ff;
  border-radius: 20px;
  top: 36%;
  box-shadow: 0 2px 19px 5px #0331a585;
}

.layout353_icon-wrapper {
  display: inline-block;
}

.layout353_content-left {
  position: sticky;
  top: 30%;
}

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

.padding-global-2.background-color-black.text-color-white {
  -webkit-text-fill-color: inherit;
  background-color: #030327;
  background-image: none;
  background-clip: border-box;
  font-family: Open Sans, sans-serif;
}

.padding-global-2.background-color-black.text-color-white.footer {
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
}

.padding-global-2.add-bottom {
  margin-bottom: 2rem;
}

.padding-global-2.bkg-icon {
  background-image: url('../images/iStock-2156293682.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section_layout353 {
  background-color: #070735;
}

.text-size-medium-4 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.125rem;
}

.section_faq4 {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-primary);
  background-image: url('../images/Grain_50p.png');
  background-position: 0 0;
  background-size: auto;
}

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

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

.faq4_accordion {
  border: 1px none var(--border-color--border-primary);
  background-color: #0000;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  overflow: hidden;
}

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

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

.span-color-gold {
  color: var(--base-color-brand--white);
  font-family: neue-haas-grotesk-display, sans-serif;
}

.section_cta25 {
  background-color: var(--base-color-neutral--neutral-lightest);
  color: var(--text-color--text-primary);
  background-image: radial-gradient(circle, #fff 31%, #0000 94%), url('../images/IMG_4923_clipped_rev_1.png'), url('../images/IMG_4923_clipped_rev_1.png'), url('../images/rippling-target-2.svg'), url('../images/Grain_50p.png');
  background-position: 0 0, 100%, 0%, 50%, 0 0;
  background-repeat: repeat, no-repeat, no-repeat, no-repeat, repeat;
  background-size: auto, 600px, 600px, 210%, 300px;
  border-top: 4px solid #c41220;
  border-bottom: 4px solid #c41220;
  position: relative;
}

.section_cta25.no-border {
  background-image: url('../images/Grain_50p.png');
  background-position: 0 0;
  background-repeat: repeat;
  background-size: 300px;
  border-top-style: none;
  border-bottom-style: none;
}

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

.button-group-2.wider {
  flex: 0 auto;
  margin-left: 3rem;
  margin-right: 3rem;
}

.button-group-2.wider-2 {
  flex: 1;
  margin-left: 3rem;
  margin-right: 3rem;
}

.button-group-2.more-top {
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

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

.button-primary-cta {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: #c41220;
  border: 1px solid #c41220;
  padding: 1.5rem;
  font-family: Inter, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.button-primary-cta:hover {
  background-color: #0d51ff;
  border-color: #0d51ff;
}

.button-primary-cta.max-width-medium {
  border-radius: 4px;
}

.button-primary-cta.max-width-medium.smaller {
  width: auto;
  max-width: none;
  padding-left: 5rem;
  padding-right: 5rem;
  font-family: neue-haas-grotesk-display, sans-serif;
}

.button-primary-cta.max-width-medium.smaller.wider {
  border-radius: 10px;
  flex: 1;
  width: 100%;
  padding: 1rem 4rem;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1.5rem;
  line-height: 1.7rem;
}

.button-primary-cta.max-width-medium.smaller.shadow {
  box-shadow: 0 2px 18px 3px #00000094;
}

.button-primary-cta.max-width-medium.smaller.no-caps {
  text-transform: none;
  font-weight: 400;
}

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

.pay-div {
  border: 1px solid var(--base-color-neutral--white);
  border-radius: 5px;
  flex-flow: column;
  width: 100px;
  height: 100px;
  padding: 1rem;
  display: flex;
}

.pay-div.white {
  border-color: #fff;
}

.pay-div.white.smaller {
  padding: 1.1rem;
}

.image-2 {
  height: 50px;
  position: relative;
  top: -12px;
}

.image-3 {
  height: 50px;
  position: relative;
  top: -24px;
}

.section_layout331 {
  position: relative;
}

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

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

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

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

.layout331_item {
  text-align: center;
  border: 1px solid #fff;
  border-radius: 20px;
  width: 100%;
  padding: 1rem;
}

.layout331_background-video {
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.layout331_component {
  z-index: 1;
  text-align: center;
  position: relative;
}

.heading-style-h5-2 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
}

.video-overlay-layer-2 {
  z-index: 1;
  background-color: #070735;
  background-image: radial-gradient(circle, #070731 38%, #fff0), url('../images/Grain_Latest.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat-x;
  background-size: auto, 210%;
  position: absolute;
  inset: 0%;
}

.video-overlay-layer-2.dinner {
  background-image: linear-gradient(#04042073, #04042073), url('../images/Grain_Latest.png'), url('../images/stars-stripes-3_1stars-stripes-3.webp');
  background-position: 0 0, 50%, 0 0;
  background-repeat: repeat, repeat, repeat;
  background-size: auto, 300px, auto;
}

.layout331_item-icon-wrapper {
  display: inline-block;
}

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

.list-item {
  color: #cecece;
  text-align: left;
  margin-bottom: 1rem;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.3;
}

.bullet-title-span {
  color: var(--base-color-brand--white);
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.8;
}

.silhouette {
  opacity: 1;
  background-image: url('../images/Grain_Latest.png');
  background-position: 0 0;
  background-size: 200px;
  position: absolute;
  inset: 0%;
  transform: translate(0, 25px)scale(1.5)rotate(-9deg);
}

.heading-style-h2-3 {
  color: #070735;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

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

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

.div-block-4 {
  color: var(--base-color-neutral--white);
  background-color: #070734;
  background-image: url('../images/Grain_Latest.png');
  background-position: 0 0;
  background-size: 300px;
  border-radius: 10px;
  padding: 2rem;
  font-family: Open Sans, sans-serif;
  font-size: 21px;
}

.div-block-4.alt-bkg {
  background-image: url('../images/Grain_Latest.png'), linear-gradient(#070734, #0a0a6d);
  background-position: 0 0, 0 0;
  background-size: 300px, auto;
  border-radius: 50px;
}

.text-block-7 {
  border-radius: 0;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1.4rem;
}

.bold-text-2 {
  color: var(--base-color-brand--white);
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 28px;
}

.bold-text-2.foil {
  -webkit-text-fill-color: transparent;
  background-image: url('../images/echoing-colors-9.svg');
  background-position: 50%;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2.5rem;
}

.bold-text-3, .bold-text-4 {
  color: #070735;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.7rem;
}

.paragraph-2, .paragraph-3 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 21px;
}

.paragraph-3.break.bkg-added {
  background-color: #ebebeb;
  flex-flow: column;
  padding: .9rem;
  display: flex;
}

.paragraph-3.break.bkg-added.top-margin {
  margin-top: 1rem;
}

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

.footer7_link {
  text-align: center;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
}

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

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

.footer7_credit-text {
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: .875rem;
}

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

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

.line-divider.more-top {
  margin-top: 2rem;
}

.footer7_logo {
  width: 300px;
}

.footer7_legal-link {
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: .875rem;
  text-decoration: underline;
}

.footer7_legal-link.w--current {
  font-family: neue-haas-grotesk-text, sans-serif;
}

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

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

.image-4 {
  -webkit-text-stroke-width: 0px;
  border: 2px #d3b136;
}

.text-block-8 {
  font-family: neue-haas-grotesk-text, sans-serif;
}

.text-block-9, .text-block-10 {
  font-family: neue-haas-grotesk-display, sans-serif;
}

.text-block-11 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 700;
}

.text-block-12 {
  font-family: neue-haas-grotesk-display, sans-serif;
}

.text-block-13 {
  color: #007bff;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
}

.success-div {
  display: none;
  position: absolute;
  inset: -50% 5% auto auto;
}

.heading-style-h2-4 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h2-4.bigger, .heading-style-h2-4.bigger-2 {
  color: #c41220;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  background-clip: border-box;
  font-size: 4.5rem;
  line-height: 4.6rem;
}

.text-size-medium-5 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.125rem;
}

.text-size-medium-5.bigger {
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1.5rem;
}

.section_cta1 {
  background-color: var(--base-color-neutral--neutral-lightest);
  color: var(--text-color--text-primary);
  background-image: url('../images/Grain_Latest.png');
  background-position: 0 0;
  background-size: 300px;
  padding-bottom: 6rem;
}

.cta1_image-wrapper {
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

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

.cta1_image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 20px;
  width: auto;
  min-width: 400px;
  height: 680px;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.cta1_content {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1.1fr .9fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.cta1_content.animiation {
  grid-template-columns: 1.1fr 1fr;
}

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

.div-block-6 {
  position: absolute;
  inset: 0%;
}

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

.disclaimer.extra-top {
  margin-top: 2rem;
}

.disclaimer.more-top {
  color: #fff;
  margin-top: 1rem;
}

.text-block-14 {
  color: var(--base-color-neutral--neutral-light);
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 15px;
  line-height: 18px;
}

.section_cta30-v1-block {
  position: relative;
}

.section_cta30-v1-block.text-color-alternate {
  border-top: 4px solid #c41220;
}

.section_cta30-v1-block.text-color-alternate.pre-hide {
  display: none;
}

.section_cta30-v2 {
  position: relative;
}

.section_cta25-v1-block {
  background-color: var(--base-color-neutral--neutral-lightest);
  color: var(--text-color--text-primary);
  background-image: radial-gradient(circle, #fff 31%, #0000 59%), url('../images/rippling-target-2.svg'), url('../images/Grain_50p.png');
  background-position: 0 0, 50%, 0 0;
  background-repeat: repeat, no-repeat, repeat;
  background-size: auto, 210%, 300px;
  border-top: 4px solid #c41220;
  border-bottom: 4px solid #c41220;
  position: relative;
}

.section_cta25-v1-block.no-border {
  background-image: url('../images/Grain_50p.png');
  background-position: 0 0;
  background-repeat: repeat;
  background-size: 300px;
  border-top-style: none;
  border-bottom-style: none;
}

.section_cta25-v1-block.pre-hide {
  display: none;
}

.section_cta25-v2 {
  background-color: var(--base-color-neutral--neutral-lightest);
  color: var(--text-color--text-primary);
  background-image: radial-gradient(circle, #fff 31%, #0000 94%), url('../images/IMG_4923_clipped_rev_1.png'), url('../images/IMG_4923_clipped_rev_1.png'), url('../images/rippling-target-2.svg'), url('../images/Grain_50p.png');
  background-position: 0 0, 100%, 0%, 50%, 0 0;
  background-repeat: repeat, no-repeat, no-repeat, no-repeat, repeat;
  background-size: auto, 600px, 600px, 210%, 300px;
  border-top: 4px solid #c41220;
  border-bottom: 4px solid #c41220;
  position: relative;
}

.section_cta25-v2.no-border {
  background-image: url('../images/Grain_50p.png');
  background-position: 0 0;
  background-repeat: repeat;
  background-size: 300px;
  border-top-style: none;
  border-bottom-style: none;
}

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

.layout240_image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0 0 10px 10px;
  width: 720px;
  height: 325px;
}

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

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

.layout240_list {
  grid-column-gap: 3rem;
  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;
}

.layout240_image-wrapper {
  border-radius: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.section-allocation {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-primary);
  background-image: url('../images/Grain_Latest.png'), url('../images/stars-stripes-3_1stars-stripes-3.webp');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: 300px, cover;
  border: 4px solid #c41220;
  border-left: 1px #000;
  border-right: 1px #000;
}

.section-allocation.pre-hide {
  display: none;
}

.layout240_item {
  text-align: center;
  width: 100%;
}

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

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

.text-size-medium-6 {
  letter-spacing: 1px;
  font-size: 1.125rem;
}

.text-style-tagline {
  color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.paragraph-4, .paragraph-5 {
  letter-spacing: 1px;
  font-family: neue-haas-grotesk-text, sans-serif;
}

.paragraph-6 {
  letter-spacing: 1px;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-weight: 400;
}

.community-image-header-text {
  color: var(--base-color-neutral--white);
  background-color: #12126d;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 1rem;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
}

.text-block-15, .text-block-16, .text-block-17 {
  font-size: 1.5rem;
}

.bold-text-6 {
  line-height: 1.8rem;
}

.icon-color.white {
  filter: invert();
}

.coin-div {
  background-color: #008fff;
  border-radius: 300px;
  padding: 3px;
}

.coin-div.black {
  background-color: #000;
}

.image-5 {
  height: 60px;
  padding: 6px;
}

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

.grid-2.tron {
  grid-template-columns: 1fr;
}

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

.text-size-medium-7.center {
  color: var(--base-color-brand--black);
  text-align: center;
  letter-spacing: 0;
  font-family: neue-haas-grotesk-text, sans-serif;
  line-height: 1.4rem;
}

.text-size-medium-7.center.bigger, .text-size-medium-7.left {
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1.5rem;
  line-height: 1.8rem;
}

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

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

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

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

.layout1_image-wrapper {
  border-radius: 0;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

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

.layout1_image.fit {
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 6px;
  min-width: 600px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.dropdown1_dropdown-list.w--open {
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
  margin-top: .5rem;
  padding: .5rem;
}

.navbar11_logo {
  width: 236px;
}

.contact20_component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-family: neue-haas-grotesk-text, sans-serif;
  display: grid;
}

.dropdown1_dropdown-link {
  color: var(--base-color-neutral--black);
  padding: .5rem 1rem;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-weight: 500;
}

.dropdown1_dropdown-link:hover {
  color: #c41220;
}

.dropdown1_dropdown-link.w--current {
  color: #000;
}

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

.text-weight-semibold.text-color-red {
  font-family: neue-haas-grotesk-text, sans-serif;
}

.text-weight-semibold.banner {
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

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

.text-block-78 {
  font-weight: 500;
}

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

.navbar11_component {
  z-index: 10;
  opacity: 1;
  color: #fff;
  background-color: #000;
  border: 1px #000;
  border-bottom: 1px solid #fff;
  align-items: center;
  width: 100%;
  min-height: 5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: sticky;
  top: 0;
}

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

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

.button-2 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: #c41220;
  border: 1px solid #c41220;
  padding: .75rem 1.5rem;
  font-family: Oswald, sans-serif;
  font-weight: 700;
}

.button-2:hover {
  background-color: #0d51ff;
  border-color: #0d51ff;
}

.button-2.is-small {
  background-color: #c41220;
  padding: .5rem 1.25rem;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-weight: 700;
}

.button-2.is-small:hover {
  background-color: #0d51ff;
}

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

.main-wrapper-2 {
  font-family: Inter, sans-serif;
}

.dropdown1_toggle {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #fff;
  align-items: center;
  padding: 0;
  display: flex;
}

.dropdown1_toggle:hover {
  color: #c41220;
  font-weight: 500;
}

.navbar11_menu-button {
  padding: 0;
}

.page-wrapper-2 {
  position: static;
  overflow: hidden;
}

.navbar11_container {
  color: #fff;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar11_link {
  color: #fff;
  text-align: center;
  padding: .5rem 1rem;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-weight: 500;
  line-height: 1.2;
}

.navbar11_link:hover {
  color: #c41220;
  font-weight: 500;
}

.navbar11_link.w--current {
  color: #d8bc61;
  font-family: neue-haas-grotesk-text, sans-serif;
}

.dropdown1_component {
  color: #fff;
  margin-left: 0;
  margin-right: 0;
  padding: .5rem 1rem;
  font-family: neue-haas-grotesk-text, sans-serif;
}

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

.heading {
  font-family: neue-haas-grotesk-text, sans-serif;
}

.padding-section-large-3 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  font-family: Inter, sans-serif;
}

.text-block-79 {
  font-weight: 500;
}

.legal1-content_component {
  font-family: Inter, sans-serif;
}

.page-wrapper-3 {
  position: static;
  overflow: hidden;
}

.text-size-medium-12 {
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1.125rem;
}

.heading-2 {
  font-family: neue-haas-grotesk-text, sans-serif;
}

.padding-section-large-4 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  font-family: Inter, sans-serif;
}

.text-block-80 {
  font-weight: 500;
}

.text-span-8 {
  text-transform: uppercase;
  font-weight: 700;
}

.link-gold {
  color: #ddbb4f;
  font-weight: 400;
  text-decoration: underline;
}

.gala-terms-rich-text {
  margin-top: 1.5rem;
}

.text-size-medium-13 {
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1.125rem;
}

.heading-3, .rich-text-block {
  font-family: neue-haas-grotesk-text, sans-serif;
}

.link {
  color: var(--base-color-brand--white);
  text-transform: none;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#d3b136, #d3b136);
  -webkit-background-clip: text;
  background-clip: text;
}

.link.black {
  color: var(--base-color-brand--white);
}

.link.email {
  text-transform: lowercase;
}

.links {
  color: var(--base-color-brand--white);
}

.links.w--current {
  background-color: var(--base-color-brand--white);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.links.black {
  color: var(--base-color-brand--white);
}

.grid-3 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  margin-bottom: 1rem;
}

.body {
  background-color: var(--base-color-neutral--white);
  background-image: linear-gradient(#0000 65%, #fff 80%), linear-gradient(#ffffff80, #ffffff80), url('../images/Grain_Latest.png'), url('../images/stars-stripes-3_1stars-stripes-3.webp');
  background-position: 0 0, 0 0, 0 0, 50% 0;
  background-repeat: repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, 300px, cover;
}

.section-community-hero {
  background-color: var(--base-color-neutral--neutral-light);
  background-image: radial-gradient(circle, #000 38%, #fff0), url('../images/Grain_Latest.png'), linear-gradient(#070733e6, #070733e6), url('../images/stars-stripes-2_1stars-stripes-2.webp');
  background-position: 0 0, 0 0, 0 0, 0 0;
  background-size: auto, 300px, auto, cover;
  padding-top: 7rem;
}

.image-74 {
  width: 100%;
  margin-top: 6rem;
}

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

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

.button-3.is-secondary {
  background-color: var(--\<unknown\|relume-variable-transparent\>);
  color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
}

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

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

.heading-style-h1-2 {
  color: var(--base-color-neutral--white);
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 4rem;
}

.div-block-7 {
  background-image: radial-gradient(circle, #18183b, #fff0 97%), url('../images/Community5_1Community5.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, auto 100%;
  justify-content: center;
  align-items: center;
  height: 800px;
  display: flex;
  position: relative;
}

.image-75 {
  width: 800px;
  max-width: 1000px;
  margin: auto;
  position: absolute;
  inset: 0%;
}

.div-block-8 {
  background-image: radial-gradient(circle, #000 29%, #0000 49%);
  width: 100%;
  height: 100%;
}

.text-block-81 {
  color: var(--base-color-neutral--white);
  margin-top: 2rem;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.7rem;
  line-height: 2.4rem;
}

.layout-content-right {
  position: sticky;
  top: 2rem;
}

.heading-4 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 4rem;
  line-height: 1;
}

.heading-4.shadow {
  text-shadow: 14px 5px 18px #000c;
}

.image-76 {
  height: 60px;
}

.text-block-82 {
  color: var(--base-color-neutral--white);
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.2rem;
}

.div-block-9 {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: .5rem;
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
}

.image-77 {
  width: 124px;
  margin-top: 0;
  margin-left: .25rem;
}

.image-77.sun {
  width: 100px;
  margin-left: .5rem;
}

.image-78 {
  width: 200px;
  margin-top: .75rem;
  margin-left: .5rem;
}

.div-block-10 {
  justify-content: center;
  align-items: center;
  margin-top: .5rem;
  display: inline-flex;
}

.button-primary-cta-mobile {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: #c41220;
  border: 1px solid #c41220;
  padding: 1.5rem;
  font-family: Inter, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.button-primary-cta-mobile:hover {
  background-color: #0d51ff;
  border-color: #0d51ff;
}

.button-primary-cta-mobile.max-width-medium {
  border-radius: 4px;
}

.button-primary-cta-mobile.max-width-medium.smaller {
  width: auto;
  max-width: none;
  padding-left: 5rem;
  padding-right: 5rem;
  font-family: neue-haas-grotesk-display, sans-serif;
}

.button-primary-cta-mobile.max-width-medium.smaller.wider {
  flex: 1;
  width: 100%;
}

.text-block-83 {
  color: var(--base-color-neutral--white);
  text-align: center;
  margin-bottom: 1rem;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.underline-2 {
  color: #c41220;
  text-shadow: none;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.text-span-9 {
  background-image: linear-gradient(to bottom, var(--base-color-neutral--white), var(--base-color-neutral--white));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.red-text {
  border: 4px none var(--base-color-neutral--white);
  color: #c41220;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 6rem;
  line-height: 10rem;
}

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

.button-group-2-buttons.wider {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  flex: 0 auto;
  margin-left: 3rem;
  margin-right: 3rem;
}

.button-group-2-buttons.wider-2 {
  flex: 1;
  margin-left: 3rem;
  margin-right: 3rem;
}

.image-79 {
  filter: invert();
}

.image-79.no-adj {
  filter: none;
}

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

.max-width-large-copy.align-center {
  max-width: 60rem;
}

.max-width-large-copy.align-center.more-top {
  margin-top: 1rem;
}

.div-block-13 {
  background-image: linear-gradient(#0000, #ededed 94%);
  height: 100px;
  position: absolute;
  inset: auto 0% 0%;
}

.backtotop_component {
  z-index: 2;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
}

.backtotop_button {
  background-color: var(--base-color-neutral--white);
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.banner7_text-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto auto auto;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-right: .5rem;
  display: grid;
}

.banner7_content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

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

.button-4.is-small {
  border-radius: 8px;
  padding: .5rem 1.25rem;
}

.banner7_icon-wrapper {
  flex: none;
}

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

.meme_banner_component {
  border-bottom: 1px none var(--border-color--border-primary);
  background-color: #fff;
  background-image: url('../images/Grain_Latest.png'), linear-gradient(90deg, #d8a140, #f7e670 50%, #d8a140);
  background-position: 50%, 0 0;
  background-size: 300px, auto;
  width: 100%;
  position: relative;
}

.banner7_content-wrapper {
  justify-content: center;
  align-items: center;
  padding-top: .75rem;
  padding-bottom: .75rem;
  display: flex;
}

.banner7_close-button {
  width: 2rem;
  height: 2rem;
  margin-left: 1rem;
}

.banner-text-1 {
  border-right: 1px solid #000;
  width: auto;
  padding-right: 1rem;
}

.text-block-84 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.text-block-85 {
  font-family: neue-haas-grotesk-text, sans-serif;
  font-weight: 700;
  line-height: 1.2rem;
}

.text-block-86 {
  line-height: 1.2rem;
}

.mobile-banner-text {
  display: none;
}

.div-block-14 {
  padding-left: 5%;
  padding-right: 5%;
}

.text-block-87 {
  text-align: center;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.link-2 {
  font-weight: 700;
  text-decoration: underline;
}

.section-how-it-works {
  background-image: url('../images/How-it-Works-bkg_1How-it-Works-bkg.webp');
  background-position: 50% 60%;
  background-repeat: no-repeat;
  background-size: 110%;
  background-attachment: scroll;
}

.section-how-it-works.light-blue-bkg {
  opacity: 1;
  background-color: #040420;
  background-image: linear-gradient(#040420cf, #040420cf), url('../images/Grain_Latest.png'), url('../images/stars-stripes-3_1stars-stripes-3.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, 300px, cover;
  background-attachment: scroll, scroll, scroll;
  overflow: hidden;
}

.padding-global-4 {
  padding: 4rem 5%;
  position: static;
}

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

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

.heading-11 {
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 4rem;
  font-weight: 500;
}

.layout142_image-wrapper-2 {
  position: relative;
}

.layout410_component {
  z-index: 1;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.step-card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #1e152b;
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 1rem;
  display: grid;
}

.step-card.step1 {
  box-shadow: 0 0 17px 1px var(--base-color-neutral--black);
  opacity: 1;
  background-color: #1e152b36;
  border: 1px solid #9936d345;
  grid-template-columns: .25fr 1fr;
  margin-bottom: 0;
}

.step-card.step1.conference {
  grid-template-columns: .25fr auto auto;
}

.step-card.step2 {
  background-color: #1e152b36;
  border: 1px solid #9936d345;
  grid-template-columns: .25fr 1fr;
  margin-bottom: 0;
  box-shadow: 0 0 17px 1px #000;
}

.step-card.step3 {
  box-shadow: 0 0 17px 1px var(--base-color-neutral--black);
  background-color: #1e152b36;
  border: 1px solid #9936d345;
  grid-template-columns: .3fr 1fr;
  margin-bottom: 0;
}

.step-card.step6 {
  background-color: #1e152b36;
  border: 1px solid #9936d345;
  grid-template-columns: .25fr 1fr;
  margin-bottom: 0;
  position: relative;
  box-shadow: 0 0 17px 1px #000;
}

.step-number {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  padding: 3.25rem 3rem 3rem;
  display: flex;
}

.text-block-88 {
  color: var(--base-color-brand--white);
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  background-image: url('../images/iStock-2156293682.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  border-radius: 0;
  font-family: Exo, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2rem;
  position: static;
}

.text-block-89 {
  color: var(--base-color-brand--white);
  -webkit-text-fill-color: transparent;
  background-image: url('../images/iStock-2156293682.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Exo, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 4rem;
}

.step-content {
  padding: 3rem 3rem 3rem 0;
}

.text-40 {
  color: #fff;
}

.text-40.text-style-allcaps {
  font-family: neue-haas-grotesk-display, sans-serif;
}

.text-40.speaker {
  text-shadow: 10px 10px 17px #000;
  font-family: neue-haas-grotesk-display, sans-serif;
}

.multi-color-line-divider {
  background-color: #0d51ff;
  width: 100%;
  height: 3px;
}

.multi-color-line-divider.dull-white {
  background-color: #d9d9d9;
}

.step-grid---mobile {
  display: none;
}

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

.text-24.text-color-white {
  -webkit-text-fill-color: inherit;
  background-color: #030327;
  background-image: none;
  background-clip: border-box;
  font-family: Open Sans, sans-serif;
}

.text-24.text-color-white.inter {
  font-family: Inter, sans-serif;
  line-height: 1.4;
}

.text-24.text-color-white.text-weight-bold.oswald.caps.bigger {
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1.5rem;
  line-height: 1.8rem;
}

.text-24.text-color-gold.oswald.text-style-allcaps.text-weight-semibold {
  font-weight: 600;
}

.color-spotlight---violet {
  background-image: radial-gradient(circle closest-side, #ec002a, #fff0);
  position: absolute;
  inset: 0%;
}

.color-spotlight---violet.left {
  opacity: .1;
  background-image: radial-gradient(circle closest-side, #ffacee, #fff0);
  left: -40%;
}

.color-spotlight---bpurple {
  background-image: radial-gradient(circle closest-side, #2600fc, #fff0);
  position: absolute;
  inset: 0%;
}

.color-spotlight---bpurple.right {
  opacity: .1;
  background-image: radial-gradient(circle closest-side, #7f92ff, #fff0);
  right: -40%;
}

.heading-12 {
  color: var(--base-color-system--error-red);
}

.heading-13 {
  color: var(--base-color-neutral--white);
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 2.4rem;
}

.heading-13.lighter {
  color: var(--base-color-neutral--neutral-light);
}

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

.heading-14 {
  color: var(--base-color-brand--white);
  white-space: nowrap;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  font-family: Exo, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2rem;
}

.heading-15 {
  color: var(--base-color-brand--white);
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  font-family: Exo, sans-serif;
  font-size: 4rem;
  line-height: 4rem;
}

.section_layout484 {
  background-image: url('../images/Grain_Latest.png'), linear-gradient(#0000, #fff 32%);
  background-position: 0 0, 0 0;
  background-size: 300px, auto;
}

.padding-global-5 {
  z-index: 1;
  background-color: #0000;
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 5%;
  padding-right: 5%;
  position: relative;
}

.padding-global-5.cta {
  background-color: #000;
  background-image: radial-gradient(circle, #131385 43%, #000), url('../images/Grain_Latest.png');
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat-x;
  background-size: auto, 300px;
}

.padding-section-large-5 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  font-family: neue-haas-grotesk-display, sans-serif;
}

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

.padding-section-large-5.no-bottom {
  padding-bottom: 0;
}

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

.padding-section-large-5.remove-top {
  padding-top: 0;
}

.padding-section-large-5.no-top, .padding-section-large-5.less-top {
  padding-top: 7rem;
}

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

.layout484_component.animation.conference {
  background-image: radial-gradient(circle, #ffffffa8, #ffffff4a), url('../images/stars-stripes-3_1stars-stripes-3.webp');
  background-position: 0 0, 50%;
  background-size: auto, auto;
  border: 1px solid #000;
  border-radius: 50px;
  margin-bottom: 0;
  padding-top: 8rem;
  padding-bottom: 3rem;
  position: relative;
}

.layout484_component.animation.conference.no-bakg {
  background-color: var(--base-color-neutral--white);
  background-image: none;
  background-position: 0 0;
}

.layout484_text {
  text-align: left;
  font-family: Inter, sans-serif;
  font-size: 2.75rem;
}

.layout484_text.alt {
  color: #070735;
  font-weight: 400;
}

.layout484_text.centered {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

.layout484_text.centered.red-text {
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: 3.2rem;
  line-height: 3rem;
}

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

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

.button-5.is-secondary {
  color: var(--base-color-neutral--black);
  background-color: #0000;
  border-radius: 5px;
  font-family: neue-haas-grotesk-display, sans-serif;
}

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

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

.layout484_split-text {
  display: none;
}

.layout484_text-copy {
  color: var(--base-color-brand--black);
  text-align: left;
  font-family: Inter, sans-serif;
}

.tngc {
  text-align: left;
  vertical-align: baseline;
  border-radius: 20px;
  display: inline-block;
}

.trump-national-image {
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
}

.section_gallery1 {
  background-color: #fff;
  background-image: url('../images/Grain_Latest.png');
  background-size: 300px;
  margin-top: 0;
}

.heading-style-h2-6 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-size-medium-15 {
  color: var(--base-color-neutral--white);
  text-shadow: 14px 5px 18px #000c;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.125;
}

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

.gallery1_lightbox-link {
  width: 100%;
  height: 100%;
}

.gallery1_image-wrapper {
  border-radius: var(--\<unknown\|relume-variable-radius-large\>);
  width: 100%;
  overflow: hidden;
}

.gallery1_image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 50px;
  width: 100%;
  max-width: 800px;
  height: 100%;
  margin-bottom: 2rem;
}

.tngc-div {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: auto;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.tngc-div.og-dinner {
  grid-template-columns: 1fr 1fr;
  max-width: none;
}

.div-block-65 {
  color: var(--base-color-neutral--white);
  background-color: #0000;
  background-image: url('../images/REd-Star-Burst.svg');
  background-position: 0 0;
  background-size: auto;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 250px;
  display: flex;
  position: absolute;
  inset: -15% auto auto -4%;
}

.text-block-90 {
  padding-left: 1rem;
  padding-right: 1rem;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1.65rem;
  line-height: 2rem;
  transform: rotate(-12deg);
}

.image-82 {
  border-radius: 50px;
  width: 100%;
}

.div-block-66 {
  border-radius: 50px;
  position: relative;
}

.text-block-91 {
  color: #fff;
  -webkit-text-stroke-width: .5px;
  -webkit-text-stroke-color: #fff;
  text-shadow: 11px 11px 11px #000000eb;
  background-color: #000000a3;
  border: 1px #000;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  padding: 1rem 2rem;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.2rem;
  position: absolute;
  inset: auto 0% 0%;
}

.section_header85 {
  background-color: var(--base-color-neutral--white);
  background-image: url('../images/Grain_Latest.png'), url('../images/intothe-rainbow-9.svg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: 300px, cover;
}

.section_header85.text-color-black {
  font-family: Inter, sans-serif;
}

.section_header85.dark-bkg {
  background-color: #040420;
  background-image: linear-gradient(#04042061, #04042061), url('../images/mar-a-lago-3-bkg.webp'), url('../images/stars-stripes-3_1stars-stripes-3.webp'), url('../images/Grain_Latest.png');
  background-position: 0 0, 50%, 0 0, 0 0;
  background-repeat: repeat, repeat, repeat, repeat;
  background-size: auto, cover, auto, 300px;
}

.section_header85.confetti {
  position: relative;
}

.header85_card {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border: var(--\<unknown\|relume-variable-border-width\>) none var(--\<unknown\|relume-variable-color-scheme-1-border\>);
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-foreground\>);
  border-radius: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
  overflow: hidden;
}

.header85_card-content {
  background-image: linear-gradient(#ffffff9c, #ffffff9c), url('../images/stars-stripes-2_1stars-stripes-2.webp');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, auto;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  font-family: neue-haas-grotesk-text, sans-serif;
  display: flex;
  position: relative;
}

.header85_card-content-top.text-color-black {
  z-index: 1;
  position: relative;
}

.text-size-medium-16 {
  color: var(--base-color-neutral--black);
  text-shadow: none;
  margin-bottom: 1rem;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 2.2rem;
}

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

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

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

.header85_image-wrapper {
  object-position: 50% 50%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.header85_image {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 0% 50%;
  width: 100%;
  height: 100%;
}

.text-size-medium-17 {
  color: var(--base-color-neutral--white);
  text-shadow: 14px 5px 18px #000c;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.125;
}

.header78_component {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-family: neue-haas-grotesk-display, sans-serif;
  display: flex;
}

.text-size-medium-18 {
  color: var(--base-color-neutral--white);
  text-shadow: 14px 5px 18px #000c;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 2.2rem;
}

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

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

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

.button-7.is-secondary {
  color: var(--base-color-neutral--black);
  background-color: #0000;
  border-radius: 5px;
  font-family: neue-haas-grotesk-display, sans-serif;
}

.header78_content-bottom {
  justify-content: flex-start;
  width: 100vw;
  display: flex;
  overflow: hidden;
}

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

.header78_image-list-top {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: center;
  width: 100%;
  display: grid;
}

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

.header78_image-wrapper {
  width: 26rem;
  padding-top: 75%;
  position: relative;
}

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

.header78_image-list-bottom {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-left: -62.7%;
  display: grid;
}

.text-span-10 {
  -webkit-text-fill-color: transparent;
  background-image: url('../images/iStock-2156293682.jpg');
  background-position: 50%;
  background-size: auto;
  -webkit-background-clip: text;
  background-clip: text;
}

.list-2 {
  font-family: Inter, sans-serif;
}

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

.layout137_icon-wrapper {
  display: inline-block;
}

.heading-style-h3-3 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 3.4rem;
}

.text-size-medium-19 {
  color: var(--base-color-neutral--white);
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2rem;
}

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

.text-block-93 {
  color: var(--base-color-neutral--white);
  font-size: 3rem;
  line-height: 3.4rem;
}

.text-block-93.add-top {
  margin-top: 1rem;
}

.text-block-93.add-top.smaller {
  font-size: 1.8rem;
  line-height: 2.1rem;
}

.text-block-93.text-align-left.black {
  color: var(--base-color-brand--black);
  font-style: italic;
}

.text-block-93.text-align-left.black.more-top {
  margin-top: 2rem;
}

.text-block-93.text-align-left.black.more-top.align-center.no-top {
  margin-top: 0;
}

.text-block-93.text-align-left.black.align-center {
  text-align: center;
}

.text-block-93.text-color-black {
  color: var(--base-color-brand--black);
}

.bonus-section {
  text-align: center;
  background-color: #0606139e;
  border-radius: 50px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 64rem;
  padding: 2.1rem;
  display: flex;
  box-shadow: 0 2px 18px 7px #ffffff6b;
}

.bonus-section.wh-bkg {
  padding: 2.1rem 2.1rem 3rem;
  box-shadow: 0 2px 18px 7px #ffffff6b;
}

.bonus-section.wh-bkg-2 {
  background-color: #f7f7f7cc;
  padding: 2.1rem 2.1rem 3rem;
  box-shadow: 0 2px 18px 7px #0000006b;
}

.image-83 {
  width: 5rem;
  height: 5rem;
  margin-bottom: 2rem;
}

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

.image-83.bigger.round {
  border-radius: 0;
  width: 8rem;
  height: 8rem;
}

.text-block-94 {
  color: var(--base-color-brand--white);
  font-size: 2.5rem;
  line-height: 2.8rem;
}

.text-block-94.text-color-black {
  color: var(--base-color-brand--black);
}

.highlight {
  color: #c41220;
}

.highlight.bold {
  color: #ffc800;
  text-shadow: 2px 3px 3px #000;
  font-weight: 700;
}

.highlight.bold.red {
  color: #c41220;
  text-shadow: none;
}

.underline-white {
  text-underline-position: under;
  text-decoration: underline;
}

.underline-white.reduced-space {
  text-underline-offset: -.5rem;
}

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

.div-block-67 {
  background-image: url('../images/iStock-1870722733-1_1iStock-1870722733 (1).webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 8rem;
  border-radius: 300px;
  width: 8rem;
  height: 8rem;
}

.heading-style-h3-4 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-size-medium-20 {
  color: var(--base-color-neutral--white);
  text-shadow: 14px 5px 18px #000c;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.125;
}

.text-size-medium-20.text-color-black {
  color: var(--base-color-brand--black);
  text-shadow: none;
}

.text-size-medium-20.text-color-black.text-align-left {
  font-size: 1.7rem;
  line-height: 1.8;
}

.text-size-medium-20.text-color-black.text-align-left.larger {
  font-size: 2.2rem;
  line-height: 2.8rem;
}

.text-size-medium-20.text-color-black.text-align-left.smaller {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 1.8rem;
}

.div-block-68 {
  background-image: linear-gradient(#b4b4b429, #7070701c), url('../images/stars-stripes-3_1stars-stripes-3.webp');
  background-position: 0 0, 50% 0;
  background-size: auto, auto;
  border: 1px solid #000;
  border-radius: 50px;
  margin-top: 4rem;
  padding: 2rem;
}

.div-block-68.no-top {
  margin-top: 0;
}

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

.container.custom {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 6rem;
  display: grid;
}

.lottie-animation {
  z-index: 0;
  opacity: 1;
  padding: 2rem;
  position: absolute;
  inset: 0%;
}

.space-before {
  padding-left: .5rem;
}

.div-block-70 {
  background-color: #0000;
  background-image: url('../images/REd-Star-Burst.svg');
  background-position: 0 0;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  padding: 1.5rem;
  display: flex;
  position: absolute;
  inset: -10% -6% auto auto;
}

.text-block-96 {
  color: var(--base-color-neutral--white);
  text-align: center;
  font-family: Inter, sans-serif;
  font-weight: 700;
  line-height: 1.2rem;
  transform: rotate(9deg);
}

.text-block-97 {
  color: var(--base-color-neutral--white);
  text-align: center;
  margin-top: .5rem;
  font-family: Inter, sans-serif;
}

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

.text-span-11 {
  font-size: 1.75rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.75rem;
}

.red-underline {
  text-underline-offset: 5px;
  -webkit-text-decoration: underline #c41220;
  text-decoration: underline #c41220;
}

.div-block-72 {
  border-top: 2px dashed #000;
  margin-bottom: 1.5rem;
}

.div-block-73 {
  background-color: #ffffff91;
  border-radius: 50px;
}

.text-block-98 {
  padding: 2rem;
}

.letter-red-text {
  color: #c41220;
  font-weight: 700;
}

.image-84 {
  filter: brightness(0%);
  width: 150px;
  margin-right: 4rem;
}

.div-block-74 {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: .25rem;
  margin-right: 0;
  display: flex;
}

.panel-text-smaller {
  font-size: 2.1rem;
  line-height: 2.4rem;
}

.small-italics {
  opacity: .65;
  padding-left: .25rem;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  line-height: 2rem;
}

.section_testimonial18 {
  background-image: url('../images/Grain_Latest.png'), linear-gradient(#ffffffd6, #ffffffd6);
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat;
  background-size: 300px, auto;
}

.heading-style-h2-7 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-size-medium-21 {
  color: var(--base-color-neutral--white);
  text-shadow: 14px 5px 18px #000c;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.125;
}

.testimonial18_list {
  column-count: 3;
  column-gap: 2rem;
}

.testimonial18_card {
  border: var(--\<unknown\|relume-variable-border-width\>) solid var(--\<unknown\|relume-variable-color-scheme-1-border\>);
  border-radius: var(--\<unknown\|relume-variable-radius-medium\>);
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-foreground\>);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 2rem;
  padding: 2rem;
  display: inline-block;
  overflow: hidden;
}

.testimonial18_rating-wrapper {
  display: flex;
}

.testimonial18_rating-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: .25rem;
  display: flex;
}

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

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

.testimonial18_component---desktop {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  column-count: 3;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  column-gap: 2rem;
  display: grid;
}

.testimonial18_content-2 {
  background-color: #fff;
  border: 1px #000;
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 2rem;
  padding: 2rem;
  display: inline-block;
}

.image-40 {
  border-radius: 14px;
  width: 100%;
  margin-bottom: 0;
}

.testimonial18_client-2 {
  text-align: left;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 700;
  display: flex;
}

.testimonial18_client-info-2 {
  align-self: center;
  align-items: center;
  display: flex;
}

.testi-name {
  font-family: Inter, sans-serif;
}

.icon-embed-small-16 {
  color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: .5rem;
  display: flex;
}

.text-size-medium-22 {
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1.125rem;
}

.text-size-medium-22.quote {
  text-align: left;
  background-color: #fff;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  border-style: none;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Inter, sans-serif;
  font-weight: 400;
}

.heading-17 {
  font-family: Oswald, sans-serif;
}

.heading-17.text-style-allcaps {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  line-height: 4rem;
}

.text-gold {
  color: #d8bc61;
}

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

.heading-style-h2-8 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h2-8.smaller {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 1.8rem;
}

.div-block-59 {
  text-align: right;
  margin-left: auto;
  position: relative;
  top: -28px;
}

.link-3 {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding-left: .25rem;
  font-size: 1.5rem;
  display: inline;
  position: static;
  top: -34px;
}

.button-div {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-self: center;
  align-items: center;
  margin-top: 2rem;
  display: flex;
}

.button-div.wider {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  flex: 0 auto;
  margin-left: 3rem;
  margin-right: 3rem;
}

.button-div.wider-2 {
  flex: 1;
  margin-left: 3rem;
  margin-right: 3rem;
}

.text-block-99 {
  margin-top: 4rem;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 400;
}

.text-span-12 {
  font-size: 18px;
}

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

.section_logo6.background-color-black {
  background-image: linear-gradient(#1f037a80, #1f037a80), url('../images/Grain_Latest.png');
  background-position: 0 0, 0 0;
  background-size: auto, 300px;
}

.logo6_list {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.logo6_wrapper {
  border-radius: var(--\<unknown\|relume-variable-radius-medium\>);
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-foreground\>);
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: .875rem;
  display: flex;
  overflow: hidden;
}

.logo6_logo {
  background-color: #fff;
  max-height: 3.5rem;
}

.disabled {
  z-index: 100;
  display: flex;
  position: absolute;
  inset: 0%;
}

.div-block-76 {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text-block-100 {
  text-align: center;
  width: 100%;
}

.text-highlight-gold {
  color: var(--base-color-brand--white);
}

.grid-5 {
  border-top: 1px none var(--base-color-neutral--white);
  border-bottom: 1px none var(--base-color-neutral--white);
  background-color: #ffffff14;
  border-radius: 20px;
  grid-template-columns: .7fr 1fr;
  max-width: 600px;
  margin-top: 2rem;
  padding: 1rem;
}

.section_layout395 {
  color: var(--base-color-neutral--white);
  background-color: #040420;
  background-image: linear-gradient(#040420cf, #040420cf), url('../images/Grain_Latest.png'), url('../images/stars-stripes-3_1stars-stripes-3.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
}

.heading-style-h2-9 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-size-medium-23 {
  color: var(--base-color-neutral--white);
  text-shadow: 14px 5px 18px #000c;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.125;
}

.text-size-medium-23.alt-font {
  color: #fff;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-weight: 400;
}

.text-size-medium-23.align-center {
  text-align: center;
}

.text-size-medium-23.spacer-small.align-center {
  text-align: center;
  text-shadow: none;
  width: auto;
  padding-top: .25rem;
  font-size: 1rem;
}

.text-size-medium-23.text-color-black {
  color: var(--base-color-brand--black);
  text-shadow: none;
}

.text-size-medium-23.text-color-black.text-align-left {
  font-size: 1.7rem;
  line-height: 1.8;
}

.text-size-medium-23.text-color-black.text-align-left.larger {
  font-size: 2.2rem;
  line-height: 2.8rem;
}

.text-size-medium-23.text-color-black.text-align-left.smaller {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 1.8rem;
}

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

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

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

.layout395_card {
  background-color: #110f25a3;
  border: 2px solid #0e3966;
  border-radius: 50px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 15px -2px #33449052;
}

.layout395_card-image-wrapper {
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 250px;
  display: flex;
}

.layout395_card-image {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50px;
  width: 100%;
  height: 250px;
  padding: 1rem;
}

.layout395_card-content {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 0 2rem 2rem;
  display: flex;
}

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

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

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

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

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

.cta39_component {
  background-color: var(--base-color-neutral--white);
  color: var(--base-color-neutral--neutral-lighter);
  background-image: url('../images/stars-stripes-3_1stars-stripes-3.webp');
  background-position: 50%;
  background-size: auto;
  border-radius: 50px;
}

.cta39_card {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border: var(--\<unknown\|relume-variable-border-width\>) solid var(--\<unknown\|relume-variable-color-scheme-1-border\>);
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-foreground\>);
  border-radius: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  padding-bottom: 2rem;
  display: grid;
  overflow: hidden;
}

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

.heading-style-h2-10 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h2-10.text-color-red {
  color: var(--base-color-system--error-red);
}

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

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

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

.button-9.is-secondary {
  color: var(--base-color-neutral--black);
  background-color: #0000;
  border-radius: 5px;
  font-family: neue-haas-grotesk-display, sans-serif;
}

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

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

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

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

.button-9.is-small.is-round {
  border-radius: 50px;
  font-family: Inter, sans-serif;
}

.button-9.is-small.is-round.red {
  background-color: #c41220;
  font-family: neue-haas-grotesk-text, sans-serif;
}

.button-9.is-alternate {
  border-color: var(--base-color-brand--white);
  background-color: var(--base-color-brand--white);
  color: var(--base-color-neutral--black);
  border-radius: 8px;
  width: 100%;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 700;
}

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

.cta39_image {
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
}

.text-size-medium-24 {
  color: var(--base-color-brand--black);
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.125;
}

.grid-6 {
  border-top: 2px solid var(--base-color-system--error-red);
  border-bottom: 2px solid var(--base-color-system--error-red);
  background-color: #ffffff14;
  border-radius: 0;
  grid-template-rows: auto;
  grid-template-columns: .7fr 1fr;
  max-width: none;
  margin-top: 2rem;
  padding: 1rem;
}

.bold-text-9 {
  padding-left: 5px;
}

.div-block-77 {
  text-align: center;
  background-color: #070734;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  padding: 1.5rem;
  position: absolute;
  inset: 0% 0% auto;
}

.div-block-77.gold-bkg {
  background-color: var(--base-color-brand--white);
}

.grid-7 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  padding-left: 2rem;
  padding-right: 2rem;
}

.div-block-78 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  background-color: #16193b1f;
  border: 1px solid #000;
  border-radius: 50px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  align-content: center;
  place-items: center stretch;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 2rem;
}

.div-block-79 {
  border: 2px solid var(--base-color-brand--white);
  background-color: var(--base-color-brand--white);
  border-radius: 20px;
}

.text-block-101 {
  color: #070734;
  font-size: 3rem;
}

.grid-8 {
  margin-top: 2rem;
}

.div-block-80 {
  color: var(--base-color-neutral--black);
  text-align: left;
}

.heading-18 {
  font-size: 1.8rem;
}

.div-block-81 {
  border: 1px solid #000;
  margin-top: 2rem;
}

.text-span-13 {
  color: var(--base-color-brand--white);
  font-weight: 700;
}

.image-85 {
  border-radius: 0;
}

.image-86 {
  border-radius: 15px;
}

.section_layout395-hide {
  color: var(--base-color-neutral--white);
  background-color: #ff0004;
  background-image: linear-gradient(#180100, #180100), url('../images/Grain_Latest.png'), url('../images/stars-stripes-3_1stars-stripes-3.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  display: block;
}

.padding-global-5---hide {
  z-index: 1;
  background-color: #0000;
  margin-left: 0;
  padding-left: 5%;
  padding-right: 5%;
  display: block;
  position: relative;
}

.section_layout519 {
  background-color: #040420;
  background-image: radial-gradient(circle at 100% 100%, #011efa99, #0000 49%), radial-gradient(circle at 0 100%, #c4122099, #0000 46%), linear-gradient(#040420cf, #040420cf), url('../images/Grain_Latest.png'), url('../images/stars-stripes-3_1stars-stripes-3.webp');
  background-position: 0 0, 0 0, 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, 300px, cover;
}

.heading-style-h2-11 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

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

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

.layout519_card {
  border-radius: 50px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  padding: 3rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.layout519_card.text-color-white {
  -webkit-text-fill-color: inherit;
  background-color: #030327;
  background-image: none;
  background-clip: border-box;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  padding-bottom: 0;
  font-family: Open Sans, sans-serif;
}

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

.image-overlay-layer {
  z-index: 1;
  background-image: linear-gradient(#fff0 36%, #000);
  position: absolute;
  inset: 0%;
}

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

.layout519_card-content {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.layout519_card-content-top {
  padding-top: 20rem;
}

.layout519_item-icon-wrapper {
  display: inline-block;
}

.heading-style-h3-5 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h3-5.text-color-gold {
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
}

.speaker-sub-text {
  color: var(--base-color-neutral--white);
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.25rem;
}

.tab5_component {
  flex-direction: column;
  margin-top: .5rem;
  display: flex;
}

.tab5_tabs-menu {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  color: #6f749b;
  margin-bottom: 4rem;
  display: flex;
}

.tab5_tab-link {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  opacity: 1;
  color: #666;
  text-align: left;
  background-color: #dddddd08;
  border-bottom: 1.5px solid #0000;
  flex-direction: column;
  width: 100%;
  padding: 1rem 1.5rem;
  font-family: neue-haas-grotesk-text, sans-serif;
  display: flex;
}

.tab5_tab-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.tab5_tab-link.w--current {
  border-bottom-color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
  color: #fff;
  text-align: left;
  background-color: #dddddd08;
}

.tab5_tabs-content, .tab5_tab-pane {
  overflow: visible;
}

.tab-content-replace-this-div {
  text-align: center;
  border: 2px dashed #0000001a;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 20rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.layout379_item-icon-wrapper {
  display: inline-block;
}

.layout379_item-icon-wrapper.mod {
  justify-content: flex-start;
  align-items: center;
  font-size: 2rem;
  display: flex;
}

.text-block-102 {
  color: #b0f;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1.5rem;
}

.text-block-103, .text-block-104 {
  font-family: neue-haas-grotesk-display, sans-serif;
  display: none;
}

.text-block-105 {
  opacity: 1;
  color: #2e7eff;
  text-align: center;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 100%;
  padding: .5rem;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  position: absolute;
  inset: -37% 0% auto auto;
}

.sub-head-title {
  color: #d9bc62;
  font-size: 3.5rem;
  line-height: 3.5rem;
}

.heading-19 {
  color: #d9bc62;
  text-transform: none;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  line-height: 4.5rem;
}

.text-red {
  color: #c41220;
}

.text-span-14 {
  text-decoration: underline;
}

.text-span-15 {
  position: static;
  inset: 0% 0% 0% -1%;
}

.div-block-82 {
  border: 3px dashed #000;
  width: 75%;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.div-block-82.narrow {
  border-style: none;
  width: 15%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5rem;
  line-height: 5rem;
}

.div-block-83 {
  background-color: #0000008a;
  border-radius: 50px;
  max-width: 64rem;
  margin-bottom: 2rem;
  padding: 2.6rem;
  position: static;
  overflow: hidden;
}

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

.heading-20.text-align-center.text-color-red {
  color: #fff;
}

.heading-20.text-align-center.text-color-mix {
  -webkit-text-fill-color: transparent;
  background-image: url('../images/iStock-2156293682.jpg');
  background-position: 50%;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
}

.hl-blue {
  color: #2e7eff;
}

.text-span-16 {
  padding-left: 5px;
  padding-right: 5px;
  font-weight: 700;
}

.hero-sub-text {
  color: var(--base-color-neutral--white);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6rem;
}

.hero-sub-text.larger {
  font-size: 2rem;
  line-height: 2.4rem;
}

.hero-sub-text.larger.overlay {
  text-shadow: 6px 8px 4px #000000bf;
  margin-bottom: 11rem;
  padding: 1rem;
  position: absolute;
  inset: auto 0% 0%;
}

.sub-text-underline, .text-span-17 {
  text-decoration: underline;
}

.text-span-18 {
  color: var(--base-color-brand--white);
  margin-top: 2rem;
  font-size: 2rem;
  display: block;
}

.link-4 {
  text-decoration: underline;
  -webkit-text-decoration-color: var(--base-color-system--error-red);
  text-decoration-color: var(--base-color-system--error-red);
}

.bold-text-10 {
  color: var(--base-color-system--error-red);
}

.heading-20b {
  color: var(--base-color-neutral--white);
}

.heading-20b.text-align-center {
  color: var(--base-color-brand--white);
  margin-top: 2rem;
  font-size: 3rem;
}

.heading-20b.text-align-center.mix {
  -webkit-text-fill-color: transparent;
  background-image: url('../images/iStock-2156293682.jpg');
  background-position: 50%;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  font-family: neue-haas-grotesk-display, sans-serif;
}

.text-span-19, .text-span-20 {
  text-decoration: underline;
}

.section_prizes {
  background-color: #040420;
  background-image: linear-gradient(#040420cf, #040420cf), url('../images/Grain_Latest.png'), url('../images/stars-stripes-3_1stars-stripes-3.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, 150%;
}

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

.heading-style-h2-12 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

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

.layout503_tabs-menu {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  align-items: center;
  margin-bottom: 4rem;
  display: flex;
  overflow: auto;
}

.layout503_tabs-menu.no-scrollbar {
  color: var(--base-color-neutral--neutral-lighter);
}

.layout503_tab-link {
  border-bottom: 1.5px solid var(--\<unknown\|relume-variable-transparent\>);
  background-color: var(--\<unknown\|relume-variable-transparent\>);
  color: var(--base-color-neutral--neutral-light);
  flex: none;
  padding: .5rem 0;
}

.layout503_tab-link.w--current {
  border-bottom-width: 3px;
  border-bottom-color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
  background-color: var(--\<unknown\|relume-variable-transparent\>);
  color: var(--base-color-brand--white);
  font-weight: 700;
}

.layout503_tabs-content {
  border: 1px solid var(--base-color-brand--white);
  border-radius: 50px;
}

.layout503_tab-card {
  border: var(--\<unknown\|relume-variable-border-width\>) solid var(--\<unknown\|relume-variable-color-scheme-1-border\>);
  border-radius: var(--\<unknown\|relume-variable-radius-large\>);
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-foreground\>);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
  overflow: hidden;
}

.layout503_tab-card-content {
  flex-flow: column;
  justify-content: center;
  padding: 3rem;
  display: flex;
}

.layout503_image-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

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

.text-block-106, .text-block-107 {
  font-size: 2rem;
}

.image-87 {
  border: 1px solid var(--base-color-brand--white);
  margin-top: 1rem;
}

.image-88 {
  width: 200px;
}

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

.div-block-85 {
  border: 1px solid var(--base-color-brand--white);
  border-radius: 50px;
}

.div-block-86 {
  border: 1px solid var(--base-color-brand--white);
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
}

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

.text-block-108 {
  color: var(--base-color-neutral--white);
  text-align: left;
  font-size: 1.7rem;
  line-height: 2.2rem;
}

.text-block-108.smaller {
  -webkit-text-fill-color: transparent;
  background-image: url('../images/Gold-Bar-with-Border.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.5rem;
}

.text-block-108.smaller.bold {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2rem;
}

.list-3 {
  color: var(--base-color-neutral--white);
  text-align: left;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.div-block-88 {
  text-align: center;
  width: 100%;
  padding: 1.5rem 1.5rem 1.5rem 3rem;
}

.prize-header-text {
  color: var(--base-color-neutral--white);
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3rem;
}

.image-89 {
  border: 1px solid var(--base-color-brand--white);
  object-fit: fill;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 0;
}

.div-block-89 {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.image-90 {
  flex: none;
  width: 200px;
}

.image-91 {
  max-width: 150px;
}

.div-block-91 {
  object-fit: cover;
  margin-right: 0;
  display: flex;
  overflow: visible;
}

.div-block-92 {
  background-image: url('../images/Trump-Ticket-Winners.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  margin-top: 0;
}

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

.banner-text-gold {
  color: #fff;
  -webkit-text-stroke-width: .5px;
  -webkit-text-stroke-color: #fff;
  text-shadow: 11px 11px 11px #000000eb;
  background-color: #000000a3;
  border: 1px #000;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  padding: 1rem 2rem;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.2rem;
  position: absolute;
  inset: auto 0% 0%;
}

.disclaimer-2 {
  margin-bottom: 0;
}

.text-block-109 {
  color: #cecece;
  margin: 1rem .25rem 0;
  padding-bottom: .25rem;
  padding-left: 0;
  padding-right: 1rem;
  font-size: 12px;
  line-height: 14px;
}

.red-highlight {
  background-image: linear-gradient(to bottom, var(--base-color-system--error-red), var(--base-color-system--error-red));
  color: var(--base-color-system--error-red);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

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

.div-block-95 {
  background-image: radial-gradient(circle at 50% 45%, #ffffff80 22%, #0000 65%);
  padding-left: .5rem;
  padding-right: .5rem;
}

.div-block-95.shoe {
  background-image: none;
}

.image-92 {
  width: 400px;
}

.header77_component {
  grid-column-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

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

.header77_content-right {
  grid-column-gap: 1rem;
  background-color: var(--base-color-neutral--neutral-lightest);
  align-items: center;
  height: 100vh;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
  overflow: hidden;
}

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

.header77_image-list-top {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: center;
  width: 100%;
  margin-left: -8.5%;
  display: grid;
}

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

.header77_image-wrapper {
  width: 26rem;
  padding-top: 75%;
  position: relative;
}

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

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

.flipcard-wrapper {
  position: relative;
}

.flipcard-wrapper:hover {
  border: 3px none var(--base-color-brand--white);
  border-radius: 30px;
}

.flipcard-front {
  backface-visibility: hidden;
  color: #fff;
  background-image: url('../images/Grain_Latest.png'), url('../images/intothe-rainbow-9.svg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 30px;
  height: 640px;
  padding-top: 72px;
  padding-left: 40px;
  padding-right: 51px;
  position: relative;
  box-shadow: 7px 7px 40px 6px #00000017;
}

.flipcard-front:hover {
  box-shadow: 7px 7px 40px 6px #00000026;
}

.flipcard-front.v2 {
  background-image: url('../images/Grain_Latest.png'), url('../images/intothe-rainbow-9.svg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  height: 500px;
}

.flipcard-title {
  color: var(--base-color-neutral--white);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  margin-top: 0;
  margin-bottom: 6px;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 62px;
  text-decoration: none;
}

.flipcard-title.smaller {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3.875rem;
}

.flipcard-title.larger {
  font-size: 3rem;
  line-height: 3.875rem;
}

.flipcard-subtitle {
  color: var(--base-color-neutral--white);
  max-width: none;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2rem;
}

.flipcard-more {
  filter: invert();
  color: #fff;
  cursor: pointer;
  width: auto;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.flipcard-back {
  backface-visibility: hidden;
  transform-style: preserve-3d;
  background-color: #fff;
  background-image: url('../images/stars-stripes-3_1stars-stripes-3.webp');
  background-position: 0 0;
  background-size: auto;
  border-radius: 30px;
  flex-direction: column;
  align-items: flex-start;
  height: 640px;
  padding-top: 66px;
  padding-left: 44px;
  padding-right: 107px;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
  box-shadow: 7px 7px 40px 6px #00000017;
}

.flipcard-back.v2 {
  transform-style: preserve-3d;
  height: 500px;
  padding-right: 90px;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.flipcard-back-title {
  background-image: linear-gradient(90deg, var(--base-color-system--error-red), #d75aca 50%, #121eff);
  color: var(--base-color-system--error-red);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 2.5rem;
  line-height: 3rem;
}

.flipcard-back-title.bigger {
  font-size: 3rem;
  line-height: 3.875rem;
}

.flipcard-less {
  cursor: pointer;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.image-93 {
  filter: drop-shadow(-8px 12px 12px #000000b3);
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: auto 0% 0%;
  transform: rotate(-9deg);
}

.text-block-110 {
  position: absolute;
  bottom: 25px;
  right: 25px;
}

.image-next100 {
  filter: drop-shadow(-8px 12px 12px #00000070);
  max-width: 70%;
  position: absolute;
  inset: auto 0% 7% 22%;
  transform: rotate(-4deg);
}

.more-details {
  color: #fff;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 20px;
}

.more-details-text {
  color: var(--base-color-neutral--white);
  cursor: pointer;
  width: auto;
  padding-left: 0;
  padding-right: 40px;
  position: absolute;
  bottom: 25px;
  right: 20px;
}

.slider {
  text-align: center;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  height: 200px;
  margin-top: 1rem;
  margin-left: 0;
  display: flex;
}

.image-94 {
  aspect-ratio: auto;
  filter: drop-shadow(1px 7px 6px #000000b3);
  vertical-align: baseline;
  cursor: auto;
  object-fit: fill;
  width: 75%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  inset: 0%;
}

.slide {
  margin-left: auto;
  margin-right: auto;
}

.image-95 {
  filter: drop-shadow(0 2px 5px #000000b3);
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.image-96 {
  filter: drop-shadow(0 2px 5px #000000b3);
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: block;
}

.mask {
  flex: 0 auto;
  align-self: center;
}

.rankings-span {
  background-color: #0000004d;
  border-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.not-included {
  color: var(--base-color-neutral--neutral-lighter);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 100;
}

.text-block-111 {
  margin-bottom: .5rem;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
}

.list-4 {
  margin-bottom: 0;
  font-size: 1.15rem;
  line-height: 1.65rem;
}

.list-item-2 {
  margin-bottom: .5rem;
}

.text-block-112 {
  color: var(--base-color-neutral--neutral);
  margin-top: 1rem;
}

.rankings-span-light {
  background-color: #0000;
  border: 2px #000;
  border-radius: 10px;
  padding-left: 0;
  padding-right: 0;
  text-decoration: underline;
}

.text-block-113 {
  color: var(--base-color-system--error-red);
}

.image-97 {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

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

.lottie-animation-2 {
  height: 150px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.lottie-animation---gift {
  height: 100px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.lottie-animation-3 {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -25% 0% auto;
}

.text-veiw-details {
  color: var(--base-color-neutral--neutral-light);
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  position: absolute;
  bottom: 23px;
  right: 55px;
}

.div-block-97 {
  background-color: var(--base-color-neutral--neutral-lightest);
  text-align: left;
  border-radius: 20px;
  align-self: center;
  max-width: 90%;
  padding: 1.5rem;
  font-family: neue-haas-grotesk-display, sans-serif;
}

.text-block-114 {
  padding-left: .25rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

.text-block-114.text-size-legal-1 {
  font-size: 1rem;
}

.text-block-114.text-size-legal-1.text-align-center {
  text-align: left;
}

.text-block-114.text-size-legal-1.text-align-center.align-center {
  text-align: center;
}

.text-block-114.bigger {
  color: #c41220;
  text-align: center;
  padding-bottom: .5rem;
  font-size: 2.5rem;
}

.bold-text-11 {
  text-decoration: underline;
}

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

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

.list-5 {
  margin-top: .5rem;
}

.text-size-button-small {
  text-transform: none;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 2.1;
}

.div-block-98 {
  background-color: #c41220;
  border: 1px solid #c41220;
  border-radius: 4px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 5rem;
  box-shadow: 0 2px 5px #00000094;
}

.text-block-115 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.lottie-animation-4 {
  opacity: .5;
  width: 100%;
  position: absolute;
  inset: 0%;
}

.lottie-animation-5 {
  aspect-ratio: 1;
  opacity: .2;
  object-fit: cover;
  object-position: 50% 50%;
  width: auto;
  position: absolute;
  inset: -55% 0% 0%;
  overflow: visible;
}

.image-98 {
  opacity: .38;
  position: absolute;
  inset: 0%;
}

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

.text-span-22 {
  text-decoration: underline;
}

.robinhood-block {
  background-color: #0000008a;
  border-radius: 50px;
  max-width: 64rem;
  margin: 3rem auto 0;
  padding: 2.6rem;
  position: static;
  overflow: hidden;
}

.robinhood-block.more-bottom {
  margin-bottom: 3rem;
}

.div-cta {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 4rem;
  display: grid;
}

.heading-style-h1-conf {
  color: var(--base-color-neutral--white);
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h1-conf.herotext {
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 5px 8px 20px #000;
  margin-top: 2rem;
  margin-bottom: 14rem;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 5.8rem;
  font-weight: 900;
  line-height: 5.9rem;
  position: relative;
  top: 0;
}

.heading-style-h1-conf.herotext.dinner {
  text-shadow: 5px 8px 20px #00000063;
  margin-top: 0;
  margin-bottom: 2rem;
  margin-right: 1rem;
  font-size: 5rem;
  line-height: 5.2rem;
}

.heading-style-h1-conf.herotext.conference {
  text-shadow: 5px 8px 20px #00000063;
  margin-top: 0;
  margin-bottom: 2rem;
  margin-right: 1rem;
  font-size: 4.5rem;
  line-height: 4.8rem;
}

.heading-style-h1-conf.herotext.conference.text-color-red {
  color: var(--base-color-brand--white);
  text-shadow: none;
  -webkit-text-fill-color: transparent;
  background-image: url('../images/iStock-2156293682.jpg');
  background-position: 100% 100%;
  background-size: auto;
  -webkit-background-clip: text;
  background-clip: text;
}

.heading-style-h1-conf.text-color-black, .heading-style-h1-conf.dinner {
  font-family: neue-haas-grotesk-display, sans-serif;
}

.heading-style-h1-conf.dinner-2 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  line-height: 4.5rem;
}

.heading-style-h1-conf.dinner-2.extra-bottom {
  color: var(--base-color-neutral--white);
  text-shadow: none;
  -webkit-text-fill-color: inherit;
  background-color: #0000;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  background-clip: border-box;
  margin-bottom: 2rem;
}

.heading-style-h1-conf.dinner-2.smaller {
  font-size: 3.5rem;
  line-height: 3.75rem;
}

.sub-head-text-bigger {
  font-size: 2rem;
  line-height: 2.75rem;
}

.below_photo_div {
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.header_content_mobile {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1.08fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  place-items: center;
  display: grid;
}

.header_content_mobile.dinner {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-columns: 1.1fr .9fr;
  display: none;
}

.header_content_desktop {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1.08fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  place-items: center;
  display: grid;
}

.header_content_desktop.dinner {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-columns: 1.1fr .9fr;
}

.page-wrapper-4.navbar-on-page.dinner {
  background-color: #171731;
}

.text-block-116 {
  font-family: neue-haas-grotesk-text, sans-serif;
}

.link-5 {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding-left: .25rem;
  font-size: 1.5rem;
  display: inline;
  position: static;
  top: -34px;
}

.text-block-117 {
  color: var(--base-color-neutral--neutral-light);
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  padding-top: 20px;
  padding-bottom: 80px;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 2.3rem;
}

.text-block-117.dinner {
  color: var(--base-color-neutral--white);
  padding-bottom: 20px;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1.75rem;
  line-height: 2rem;
}

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

.div-block-100 {
  color: var(--base-color-neutral--white);
  background-color: #0000;
  background-image: url('../images/REd-Star-Burst.svg');
  background-position: 0 0;
  background-size: auto;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 250px;
  display: flex;
  position: absolute;
  inset: -15% auto auto -4%;
}

.text-block-118 {
  padding-left: 1rem;
  padding-right: 1rem;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1.65rem;
  line-height: 2rem;
  transform: rotate(-12deg);
}

.heading-style-h2-13 {
  color: #070735;
  -webkit-text-fill-color: transparent;
  background-image: url('../images/intothe-rainbow-9.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 4.5rem;
}

.heading-style-h2-13.no-shadow {
  -webkit-text-fill-color: transparent;
  background-image: url('../images/intothe-rainbow-9.svg');
  background-position: 50%;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
}

.heading-style-h2-13.no-shadow.white {
  color: #fff;
  -webkit-text-stroke-color: #fff;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
}

.heading-style-h2-13.no-shadow.smaller {
  font-size: 3.1rem;
  line-height: 3.8rem;
}

.heading-style-h2-13.no-shadow.larger {
  font-size: 6rem;
  line-height: 6.5rem;
}

.heading-style-h2-13.no-shadow.larger.text-color-white {
  color: #fff;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
}

.heading-style-h2-13.text-color-white {
  color: #d3b136;
  padding-bottom: 10px;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 3rem;
  line-height: 3.2rem;
}

.grid-9 {
  border-top: 2px solid var(--base-color-system--error-red);
  border-bottom: 2px solid var(--base-color-system--error-red);
  background-color: #ffffff14;
  border-radius: 0;
  grid-template-rows: auto;
  grid-template-columns: .7fr 1fr;
  max-width: none;
  margin-top: 2rem;
  padding: 1rem;
}

.bold-text-12 {
  padding-left: 5px;
}

.text-size-medium-25 {
  color: var(--base-color-neutral--black);
  text-shadow: none;
  margin-bottom: 1rem;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 2.2rem;
}

.grid-10 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  padding-left: 2rem;
  padding-right: 2rem;
}

.image-99 {
  border-radius: 15px;
}

.image-100 {
  border-radius: 0;
}

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

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

.button-group-14.more-top {
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.button-group-14.more-top-2 {
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 1rem;
}

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

.list-item-3 {
  color: #cecece;
  text-align: left;
  margin-bottom: 1rem;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.3;
}

.text-block-119 {
  font-family: neue-haas-grotesk-display, sans-serif;
}

.text-block-120 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 700;
}

.text-block-121, .text-block-122 {
  font-family: neue-haas-grotesk-display, sans-serif;
}

.text-span-23 {
  text-decoration: underline;
}

.text-span-24 {
  position: static;
  inset: 0% 0% 0% -1%;
}

.link-6 {
  text-decoration: underline;
  -webkit-text-decoration-color: var(--base-color-system--error-red);
  text-decoration-color: var(--base-color-system--error-red);
}

.bold-text-13 {
  color: var(--base-color-system--error-red);
}

.lottie-animation-6 {
  z-index: 0;
  opacity: 1;
  padding: 2rem;
  position: absolute;
  inset: 0%;
}

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

.text-block-123 {
  color: var(--base-color-neutral--white);
  text-align: center;
  margin-top: .5rem;
  font-family: Inter, sans-serif;
}

.text-span-25 {
  -webkit-text-fill-color: transparent;
  background-image: url('../images/iStock-2156293682.jpg');
  background-position: 50%;
  background-size: auto;
  -webkit-background-clip: text;
  background-clip: text;
}

.grid-11 {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-columns: 1fr;
}

.image-101 {
  width: 5rem;
  height: 5rem;
  margin-bottom: 2rem;
}

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

.image-101.bigger.round {
  border-radius: 0;
  width: 8rem;
  height: 8rem;
}

.text-block-124 {
  color: var(--base-color-neutral--white);
  font-size: 3rem;
  line-height: 3.4rem;
}

.text-block-124.text-align-left.black {
  color: var(--base-color-brand--black);
  font-style: italic;
}

.text-block-124.text-align-left.black.align-center {
  text-align: center;
}

.text-block-124.text-align-left.black.more-top {
  margin-top: 2rem;
}

.text-block-124.text-align-left.black.more-top.align-center.no-top {
  margin-top: 0;
}

.text-block-124.add-top {
  margin-top: 1rem;
}

.text-block-124.add-top.smaller {
  font-size: 1.8rem;
  line-height: 2.1rem;
}

.text-block-125 {
  padding-left: .25rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

.text-block-125.text-size-legal-1 {
  font-size: 1rem;
}

.text-block-125.text-size-legal-1.text-align-center {
  text-align: left;
}

.text-block-125.text-size-legal-1.text-align-center.align-center {
  text-align: center;
}

.div-block-102 {
  border: 3px dashed #000;
  width: 75%;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.div-block-102.narrow {
  border-style: none;
  width: 15%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5rem;
  line-height: 5rem;
}

.text-block-126 {
  color: var(--base-color-brand--white);
  font-size: 2.5rem;
  line-height: 2.8rem;
}

.text-block-126.text-color-black {
  color: var(--base-color-brand--black);
}

.div-block-103 {
  background-color: var(--base-color-neutral--neutral-lightest);
  text-align: left;
  border-radius: 20px;
  align-self: center;
  max-width: 90%;
  padding: 1.5rem;
  font-family: neue-haas-grotesk-display, sans-serif;
}

.list-7 {
  margin-top: .5rem;
}

.bold-text-14 {
  text-decoration: underline;
}

.text-block-127 {
  margin-top: 4rem;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 400;
}

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

.heading-21.text-align-center {
  font-family: neue-haas-grotesk-display, sans-serif;
}

.heading-21.text-align-center.text-color-mix {
  -webkit-text-fill-color: transparent;
  background-image: url('../images/iStock-2156293682.jpg');
  background-position: 50%;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: neue-haas-grotesk-display, sans-serif;
}

.text-span-26 {
  text-decoration: underline;
}

.text-block-128 {
  color: #fff;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #c5a44fad;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  background-image: url('../images/iStock-2156293682.jpg'), linear-gradient(176deg, #ebbb0f, #866a05);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
  -webkit-background-clip: text;
  background-clip: text;
  padding-left: 0;
  padding-right: 0;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 3vw;
  font-weight: 900;
  line-height: 1;
}

.text-block-128.space {
  padding-left: 2rem;
  padding-right: 2rem;
}

.text-block-128.trump {
  padding-left: 8rem;
  padding-right: 8rem;
}

.image-102 {
  -webkit-text-stroke-width: 0px;
  border: 2px #d3b136;
}

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

.padding-global-6.background-color-black.text-color-white {
  -webkit-text-fill-color: inherit;
  background-color: #030327;
  background-image: none;
  background-clip: border-box;
  font-family: Open Sans, sans-serif;
}

.padding-global-6.background-color-black.text-color-white.footer {
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
}

.heading-22 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 4rem;
  line-height: 1;
}

.heading-22.shadow {
  text-shadow: 14px 5px 18px #000c;
}

.text-size-medium-26 {
  color: var(--base-color-neutral--white);
  text-shadow: 14px 5px 18px #000c;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 2.2rem;
}

.div-block-104 {
  background-color: #c41220;
  border: 1px solid #c41220;
  border-radius: 4px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 5rem;
  box-shadow: 0 2px 5px #00000094;
}

.text-block-129 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.padding-global-7 {
  padding: 0 5% 4rem;
  position: static;
}

.text-span-27 {
  color: var(--base-color-brand--white);
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: none;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.2rem;
  text-decoration: none;
}

.text-block-130 {
  color: #b0f;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1.5rem;
}

.text-block-130.mod {
  color: #fff;
  font-size: 2rem;
}

.text-block-131 {
  font-family: neue-haas-grotesk-display, sans-serif;
  display: none;
}

.text-block-132 {
  opacity: 1;
  color: #2e7eff;
  text-align: center;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 100%;
  padding: .5rem;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  position: absolute;
  inset: -48% 0% auto auto;
}

.text-block-133 {
  font-family: neue-haas-grotesk-display, sans-serif;
  display: none;
}

.heading-23 {
  color: var(--base-color-brand--white);
  white-space: nowrap;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  font-family: Exo, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2rem;
}

.heading-24 {
  color: var(--base-color-brand--white);
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  font-family: Exo, sans-serif;
  font-size: 4rem;
  line-height: 4rem;
}

.heading-25 {
  color: var(--base-color-neutral--white);
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 2.4rem;
}

.div-block-105 {
  background-color: #0000;
  background-image: url('../images/REd-Star-Burst.svg');
  background-position: 0 0;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  padding: 1.5rem;
  display: flex;
  position: absolute;
  inset: -10% -6% auto auto;
}

.text-block-134 {
  color: var(--base-color-neutral--white);
  text-align: center;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 700;
  line-height: 1.2rem;
  transform: rotate(9deg);
}

.text-span-28 {
  background-image: linear-gradient(to bottom, var(--base-color-neutral--white), var(--base-color-neutral--white));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

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

.heading-style-h5-4 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.paragraph-7 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
}

.text-block-136 {
  color: var(--base-color-neutral--white);
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.2rem;
}

.text-block-137 {
  color: var(--base-color-neutral--white);
  margin-top: 2rem;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.7rem;
  line-height: 2.4rem;
}

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

.text-size-medium-27.center {
  color: var(--base-color-brand--black);
  text-align: center;
  letter-spacing: 0;
  font-family: neue-haas-grotesk-text, sans-serif;
  line-height: 1.4rem;
}

.text-size-medium-27.center.bigger {
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1.5rem;
  line-height: 1.8rem;
}

.image-104 {
  filter: invert();
}

.image-105 {
  height: 50px;
  position: relative;
  top: -12px;
}

.image-106 {
  height: 50px;
  position: relative;
  top: -24px;
}

.image-107 {
  height: 60px;
}

.image-108 {
  height: 60px;
  padding: 6px;
}

.div-block-109 {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: .5rem;
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
}

.image-109 {
  width: 124px;
  margin-top: 0;
  margin-left: .25rem;
}

.div-block-110 {
  padding-right: 3rem;
}

.heading-style-h2-14 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h2-14.more-bottom {
  margin-bottom: 2rem;
}

.div-block-111 {
  background-color: var(--base-color-brand--black);
  border-radius: 10px;
}

.text-block-138 {
  color: var(--base-color-neutral--white);
  padding: .5rem;
  font-family: neue-haas-grotesk-text, sans-serif;
}

.text-block-139 {
  color: #007bff;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
}

.video-overlay-layer-3 {
  z-index: 1;
  background-color: #0000;
  background-image: linear-gradient(#0006 67%, #000), radial-gradient(circle, #000000fa 9%, #ffffff1c), url('../images/Black-gold-wave_1Black-gold-wave.webp');
  background-position: 0 0, 0 0, 0 0;
  background-repeat: repeat, repeat, repeat-x;
  background-size: auto, auto, auto;
  position: absolute;
  inset: 0%;
}

.heading-style-h2-15 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h2-15.bigger-2 {
  color: #c41220;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  background-clip: border-box;
  font-size: 4.5rem;
  line-height: 4.6rem;
}

.div-block-112 {
  color: var(--base-color-neutral--white);
  background-color: #070734;
  background-image: url('../images/Grain_Latest.png');
  background-position: 0 0;
  background-size: 300px;
  border-radius: 10px;
  padding: 2rem;
  font-family: Open Sans, sans-serif;
  font-size: 21px;
}

.div-block-112.alt-bkg {
  background-image: url('../images/Grain_Latest.png'), linear-gradient(#070734, #0a0a6d);
  background-position: 0 0, 0 0;
  background-size: 300px, auto;
  border-radius: 50px;
}

.text-block-140 {
  border-radius: 0;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1.4rem;
}

.bold-text-15 {
  color: var(--base-color-brand--white);
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 28px;
}

.bold-text-15.foil {
  -webkit-text-fill-color: transparent;
  background-image: url('../images/echoing-colors-9.svg');
  background-position: 50%;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2.5rem;
}

.list-8 {
  font-family: neue-haas-grotesk-display, sans-serif;
}

.div-block-114 {
  background-image: linear-gradient(#b4b4b429, #7070701c), url('../images/stars-stripes-3_1stars-stripes-3.webp');
  background-position: 0 0, 50% 0;
  background-size: auto, auto;
  border: 1px #000;
  border-radius: 50px;
  margin-top: 4rem;
  padding: 2rem;
}

.heading-style-h3-6 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

.div-block-115 {
  border-top: 2px dashed #000;
  margin-bottom: 1.5rem;
}

.div-block-116 {
  background-image: radial-gradient(circle, #18183b, #fff0 97%), url('../images/Community5_1Community5.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, auto 100%;
  justify-content: center;
  align-items: center;
  height: 800px;
  display: flex;
  position: relative;
}

.image-110 {
  width: 800px;
  max-width: 1000px;
  margin: auto;
  position: absolute;
  inset: 0%;
}

.div-block-117 {
  background-image: radial-gradient(circle, #000 29%, #0000 49%);
  width: 100%;
  height: 100%;
}

.heading-style-h1-3 {
  color: var(--base-color-neutral--white);
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 4rem;
}

.heading-style-h2-16 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

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

.div-block-119 {
  border: 1px solid var(--base-color-brand--white);
  border-radius: 50px;
}

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

.div-block-121 {
  text-align: center;
  width: 100%;
  padding: 1.5rem 1.5rem 1.5rem 3rem;
}

.text-block-141 {
  color: var(--base-color-neutral--white);
  text-align: left;
  font-size: 1.7rem;
  line-height: 2.2rem;
}

.text-block-141.smaller {
  -webkit-text-fill-color: transparent;
  background-image: url('../images/Gold-Bar-with-Border.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.5rem;
}

.text-block-141.smaller.bold {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2rem;
}

.div-block-122 {
  object-fit: cover;
  margin-right: 0;
  display: flex;
  overflow: visible;
}

.image-111 {
  border: 1px solid var(--base-color-brand--white);
  object-fit: fill;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 0;
}

.list-9 {
  color: var(--base-color-neutral--white);
  text-align: left;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.div-block-123 {
  background-image: url('../images/Trump-Ticket-Winners.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  margin-top: 0;
}

.div-block-124 {
  border: 1px solid var(--base-color-brand--white);
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
}

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

.div-block-126 {
  background-image: radial-gradient(circle at 50% 45%, #ffffff80 22%, #0000 65%);
  padding-left: .5rem;
  padding-right: .5rem;
}

.div-block-126.shoe {
  background-image: none;
}

.image-112 {
  width: 400px;
}

.image-113 {
  filter: drop-shadow(-8px 12px 12px #000000b3);
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: auto 0% 0%;
  transform: rotate(-9deg);
}

.lottie-animation-7 {
  height: 150px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.text-block-142 {
  margin-bottom: .5rem;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
}

.list-10 {
  margin-bottom: 0;
  font-size: 1.15rem;
  line-height: 1.65rem;
}

.list-item-4 {
  margin-bottom: .5rem;
}

.image-114 {
  aspect-ratio: auto;
  filter: drop-shadow(1px 7px 6px #000000b3);
  vertical-align: baseline;
  cursor: auto;
  object-fit: fill;
  width: 75%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  inset: 0%;
}

.image-115 {
  filter: drop-shadow(0 2px 5px #000000b3);
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.image-116 {
  filter: drop-shadow(0 2px 5px #000000b3);
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: block;
}

.text-block-143 {
  color: var(--base-color-neutral--neutral);
  margin-top: 1rem;
}

.text-size-medium-28 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.125rem;
}

.bold-text-16 {
  color: #070735;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.7rem;
}

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

.paragraph-8 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 21px;
}

.bold-text-17 {
  color: #070735;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.7rem;
}

.paragraph-9 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 21px;
}

.grid-12 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  margin-bottom: 1rem;
}

.text-block-144 {
  color: var(--base-color-neutral--neutral-light);
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 15px;
  line-height: 18px;
}

.max-width-larger {
  width: 100%;
  max-width: 60rem;
}

.max-width-larger.align-center.more-top {
  margin-top: 1rem;
}

.max-width-larger.align-center.larger {
  font-size: 2.2rem;
  line-height: 2.8rem;
}

.heading-style-h2-conf {
  color: #070735;
  -webkit-text-fill-color: transparent;
  background-image: url('../images/intothe-rainbow-9.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 4.5rem;
}

.heading-style-h2-conf.no-shadow {
  -webkit-text-fill-color: transparent;
  background-image: url('../images/intothe-rainbow-9.svg');
  background-position: 50%;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
}

.heading-style-h2-conf.no-shadow.white {
  color: #fff;
  -webkit-text-stroke-color: #fff;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
}

.heading-style-h2-conf.no-shadow.smaller {
  font-size: 3.1rem;
  line-height: 3.8rem;
}

.heading-style-h2-conf.no-shadow.larger {
  font-size: 6rem;
  line-height: 6.5rem;
}

.heading-style-h2-conf.no-shadow.larger.text-color-white {
  color: #fff;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  font-size: 5rem;
  line-height: 5.3rem;
}

.heading-style-h2-conf.text-color-white {
  color: #d3b136;
  padding-bottom: 10px;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 3rem;
  line-height: 3.2rem;
}

.div-block-127 {
  background-color: #0808083b;
  border-radius: 50px;
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding: 1rem 2rem 2.5rem;
  box-shadow: 0 2px 10px #fff3;
}

.text-size-medium-conf {
  color: var(--base-color-neutral--white);
  text-shadow: 14px 5px 18px #000c;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.125;
}

.text-size-medium-conf.alt-font {
  color: #fff;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-weight: 400;
}

.text-size-medium-conf.alt-font.spacer-small {
  max-width: 875px;
  font-size: 2rem;
  line-height: 2.2rem;
}

.text-size-medium-conf.align-center {
  text-align: center;
}

.text-size-medium-conf.spacer-small.align-center {
  text-align: center;
  text-shadow: none;
  width: auto;
  padding-top: .25rem;
  font-size: 1rem;
}

.text-size-medium-conf.text-color-black {
  color: var(--base-color-brand--black);
  text-shadow: none;
}

.text-size-medium-conf.text-color-black.text-align-left {
  font-size: 1.7rem;
  line-height: 1.8;
}

.text-size-medium-conf.text-color-black.text-align-left.larger {
  font-size: 2.2rem;
  line-height: 2.8rem;
}

.text-size-medium-conf.text-color-black.text-align-left.smaller {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 1.8rem;
}

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

.div-block-128 {
  justify-content: flex-start;
  align-items: center;
  display: none;
}

.div-block-129 {
  grid-column-gap: 3.3rem;
  grid-row-gap: 3.3rem;
  color: var(--base-color-brand--white);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  margin-top: 3rem;
  font-size: 1.125rem;
  display: grid;
}

.text-block-145 {
  text-transform: uppercase;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 700;
}

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

.div-block-130 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-block-146 {
  text-transform: uppercase;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-block-147 {
  opacity: 1;
  color: #2e7eff;
  text-align: left;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: 100%;
  padding: .5rem;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  position: static;
  inset: -48% 0% auto auto;
}

.text-block-147.mod {
  color: #fff;
  width: auto;
  padding-left: 0;
  font-size: 2rem;
}

.text-block-147.mod2 {
  color: #cbff00;
  width: auto;
  padding-left: 0;
  padding-right: 1rem;
  font-size: 2rem;
}

.text-block-148, .text-block-149, .div-block-131 {
  font-size: .5rem;
}

.image-subtext-block {
  text-align: center;
  font-size: 1rem;
}

.text-block-150 {
  color: var(--base-color-neutral--white);
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 400;
}

.bold-text-18 {
  text-decoration: none;
}

.text-span-29 {
  color: #cbff00;
}

.bold-text-19 {
  color: #fff;
}

.section_header1-conference {
  color: var(--text-color--text-primary);
  background-color: #0000;
  position: relative;
  overflow: hidden;
}

.section_layout142-rewards-hero {
  background-image: url('../images/How-it-Works-bkg_1How-it-Works-bkg.webp');
  background-position: 50% 60%;
  background-repeat: no-repeat;
  background-size: 110%;
  background-attachment: scroll;
}

.section_layout142-rewards-hero.light-blue-bkg {
  opacity: 1;
  background-color: #040420;
  background-image: linear-gradient(#040420cf, #040420cf), url('../images/Grain_Latest.png'), url('../images/stars-stripes-3_1stars-stripes-3.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, 300px, cover;
  background-attachment: scroll, scroll, scroll;
  overflow: hidden;
}

.card-wrapper {
  background-color: #000;
  border-radius: 50px;
}

.expand-bio-block {
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  flex-flow: column;
  height: auto;
  padding-bottom: 3rem;
  padding-left: 3rem;
  padding-right: 3rem;
  display: block;
}

.more-info-wrap {
  opacity: 1;
  display: none;
  overflow: hidden;
}

.less-info-link {
  color: var(--base-color-brand--white);
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.25rem;
  display: block;
}

.more-info-link {
  color: var(--base-color-brand--white);
  cursor: pointer;
  font-size: 1.25rem;
}

.less {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
  display: flex;
}

.more {
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
  display: flex;
}

.icon-embed-xxsmall-yellow {
  color: var(--base-color-brand--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 3px;
  padding-top: 0;
  display: flex;
}

.section-vip-bonus {
  background-color: var(--base-color-neutral--white);
  background-image: url('../images/Grain_Latest.png'), url('../images/intothe-rainbow-9.svg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: 300px, cover;
}

.section-vip-bonus.text-color-black {
  font-family: Inter, sans-serif;
}

.section-vip-bonus.dark-bkg {
  background-color: #040420;
  background-image: linear-gradient(#04042061, #04042061), url('../images/mar-a-lago-3-bkg.webp'), url('../images/stars-stripes-3_1stars-stripes-3.webp'), url('../images/Grain_Latest.png');
  background-position: 0 0, 50%, 0 0, 0 0;
  background-repeat: repeat, repeat, repeat, repeat;
  background-size: auto, cover, auto, 300px;
}

.section-vip-bonus.confetti {
  position: relative;
}

.hero-sub-underline {
  font-size: 2.8rem;
  line-height: 3.5rem;
  text-decoration: none;
}

.banner-text-desktop {
  text-align: center;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.banner-text-mobile {
  text-align: center;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  display: none;
}

.text-block-151 {
  text-align: center;
  background-color: #fdf3d340;
  border-radius: 8px;
  padding: .2rem .5rem;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.2rem;
}

.div-block-14-copy {
  padding-left: 0%;
  padding-right: 0%;
}

.hero-headline-block {
  margin-bottom: 2.5rem;
}

.heading-26 {
  color: var(--base-color-neutral--white);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 4.5rem;
}

.heading-27 {
  -webkit-text-fill-color: transparent;
  background-image: url('../images/iStock-2156293682.jpg');
  background-position: 50%;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 3.5rem;
}

.menu-icon4_line-middle-top {
  z-index: 2;
  width: 24px;
  height: 2px;
  position: absolute;
  inset: 0;
}

.button-10 {
  border: 1px solid var(--\<unknown\|relume-variable-neutral-shade-7\>);
  background-color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
  color: var(--\<unknown\|relume-variable-neutral-white\>);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-10.is-navbar4-button {
  z-index: 1;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.menu-icon4_line-middle-base {
  background-color: var(--base-color-neutral--white);
  width: 24px;
  height: 2px;
  position: absolute;
}

.navbar4_menu-dropdown {
  margin-left: 0;
}

.navbar4_dropdown-link {
  background-color: #ffffff0a;
  border-radius: 8px;
  margin-top: .5rem;
  margin-bottom: .5rem;
  margin-left: 1.5rem;
  padding: .5rem 1rem;
  font-size: 24px;
}

.navbar4_dropdown-link:hover {
  color: var(--base-color-brand--white);
  background-color: #ffffff1a;
}

.navbar4_dropdown-link.w--current {
  color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
}

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

.navbar4_menu-button {
  padding: 0;
}

.navbar4_menu-button.w--open {
  background-color: var(--\<unknown\|relume-variable-transparent\>);
}

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

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

.dropdown-chevron-2.is-navbar4 {
  width: 1.5rem;
  height: 1.5rem;
}

.navbar4_menu-wrapper {
  color: var(--base-color-neutral--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 35%;
  margin-top: -4.5rem;
  font-size: 1.5rem;
  display: flex;
}

.menu-icon4_line-bottom {
  background-color: var(--base-color-neutral--white);
  width: 24px;
  height: 2px;
}

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

.navbar4_dropdown-list.w--open {
  background-color: var(--\<unknown\|relume-variable-neutral-white\>);
  position: static;
}

.menu-icon4_line-top {
  background-color: #fff;
  width: 24px;
  height: 2px;
  padding-bottom: 0;
  padding-right: 0;
}

.navbar4_component {
  border-bottom: 0px solid var(--\<unknown\|relume-variable-color-scheme-1-background\>);
  background-color: #0000;
  align-items: center;
  width: 100%;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.navbar4_wrapper {
  grid-column-gap: 1rem;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.navbar4_link {
  background-color: #ffffff0a;
  border-radius: 8px;
  margin-top: .5rem;
  margin-bottom: .5rem;
  margin-left: 0;
  padding: .5rem 1rem;
  display: inline-block;
  position: static;
}

.navbar4_link:hover {
  color: var(--base-color-brand--white);
  background-color: #ffffff1a;
}

.navbar4_link.w--current {
  color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
}

.navbar4_menu {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #1e1e44e0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  padding-left: 5%;
  padding-right: 5%;
  transition: height .5s;
  display: flex;
  position: absolute;
  overflow: auto;
}

.navbar4_container {
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.menu-icon4 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  position: relative;
}

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

.navbar4_dropdown-toggle {
  grid-column-gap: 1rem;
  background-color: #ffffff0a;
  border-radius: 8px;
  align-items: center;
  margin-top: .5rem;
  margin-bottom: .5rem;
  padding: .5rem 1rem;
  display: flex;
}

.navbar4_dropdown-toggle:hover {
  color: var(--base-color-brand--white);
  background-color: #ffffff1a;
}

.text-span-31 {
  color: var(--base-color-neutral--white);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 3rem;
}

.text-block-152 {
  margin-top: .25rem;
}

.hero-sub-text-2 {
  color: var(--base-color-neutral--white);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6rem;
}

.hero-sub-text-2.larger {
  font-size: 2rem;
  line-height: 2.4rem;
}

.hero-sub-text-2.larger.overlay {
  text-shadow: 6px 8px 4px #000000bf;
  margin-bottom: 11rem;
  padding: 1rem;
  position: absolute;
  inset: auto 0% 0%;
}

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

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .hide-tablet {
    display: none;
  }

  .page-wrapper.navbar-on-page.dinner {
    position: relative;
  }

  .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-top.margin-medium {
    text-align: center;
    background-color: #000;
    border-radius: 20px;
  }

  .margin-top.margin-medium {
    text-align: center;
    background-color: #000;
  }

  .margin-top.margin-medium.trans {
    background-color: #0000;
  }

  .margin-top.margin-medium.trans.feature-2 {
    display: block;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .heading-style-h6.bigger {
    line-height: 1.8rem;
  }

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

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

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

  .heading-style-h1.herotext {
    margin-bottom: 2rem;
  }

  .heading-style-h1.herotext.dinner, .heading-style-h1.herotext.conference {
    font-size: 5.5rem;
    line-height: 5.5rem;
  }

  .heading-style-h1.dinner-2.extra-bottom.conf-style {
    font-size: 3.5rem;
    line-height: 3.8rem;
  }

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

  .text-size-regular.text-color-white.text-weight-bold.oswald {
    font-family: Oswald, sans-serif;
  }

  .text-size-regular.text-color-white.text-weight-bold.oswald.caps.bigger {
    background-color: #0000;
    font-family: neue-haas-grotesk-text, sans-serif;
  }

  .text-size-regular.text-color-white.spacer-xsmall.step-m {
    font-size: 1.2rem;
  }

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

  .text-color-white.disclaimer.smaller, .text-color-white.disclaimer.xsmall {
    padding-left: 0;
    padding-right: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .header84_card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .header1_image-wrapper {
    margin-left: auto;
    margin-right: auto;
  }

  .header1_image-wrapper.dinner, .header1_image-wrapper.conference {
    margin-top: 2rem;
  }

  .header1_component.round {
    border-radius: 30px;
    padding-left: 2rem;
  }

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

  .image-wrap.dinner {
    aspect-ratio: auto;
  }

  ._3d-image.filter {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  ._3d-image.filter.bottom {
    padding-left: 0;
    padding-right: 0;
  }

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

  .navbar13_menu-button {
    padding: 0;
  }

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

  .navbar13_button-wrapper {
    align-items: center;
  }

  .navbar13_menu-link-wrapper {
    border-style: none solid solid;
    border-width: 1px;
    border-color: var(--border-color--border-primary);
    background-color: var(--background-color--background-primary);
    color: var(--base-color-neutral--black);
    flex-direction: column;
    width: 100%;
    padding: 2rem;
  }

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

  .dropdown-chevron {
    background-color: var(--base-color-brand--black);
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#000, #000);
    -webkit-background-clip: text;
    background-clip: text;
    inset: auto 0% auto auto;
  }

  .navbar13_menu-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.125rem;
    display: flex;
  }

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

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

  .navbar13_dropdown-list.w--open {
    border-style: none;
    padding: 0;
    position: static;
  }

  .navbar13_menu {
    background-color: #0000;
    justify-content: center;
    padding-left: 5%;
    padding-right: 5%;
    position: absolute;
  }

  .navbar13_dropdown-toggle {
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    padding: .75rem 0;
    display: flex;
  }

  .navbar13_dropdown-link {
    text-align: center;
    width: auto;
    padding: .75rem 0;
    font-size: 16px;
  }

  .navbar13_container {
    grid-template-columns: auto 1fr;
    width: 100%;
  }

  .navbar13_link {
    text-align: center;
    padding: .75rem 0;
    font-size: 1.125rem;
  }

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

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

  .navbar13_component {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5%;
    padding-right: 5%;
  }

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

  .fs-copyclip_wrapper.full-width {
    grid-auto-flow: row;
    place-items: center;
    margin-top: 2rem;
  }

  .fs-copyclip_wrapper.full-width.smaller {
    margin-top: 1rem;
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .fs-copyclip_wrapper.full-width.less-top {
    grid-auto-flow: row;
  }

  .quote {
    background-position: 0 0, 50% 100%, 100% 70%, 4% 4%;
    background-size: 300px, 100px, auto 60px, auto 60px;
    width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .quote.smaller {
    text-align: center;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .text-block-3 {
    padding-top: 1rem;
    padding-bottom: 90px;
    font-size: 2rem;
    line-height: 2.6rem;
  }

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

  .text-block-5 {
    font-size: 3.5vw;
  }

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

  .heading-style-h2-2.text-color-white {
    text-shadow: none;
    font-size: 2.4rem;
    line-height: 2.5rem;
  }

  .heading-style-h2-2.no-shadow {
    text-shadow: none;
  }

  .heading-style-h2-2.no-shadow.larger {
    font-size: 4rem;
    line-height: 4rem;
  }

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

  .layout415_content {
    height: 100svh;
  }

  .layout353_component {
    grid-column-gap: 3rem;
    border-radius: 30px;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .section_cta25 {
    background-image: radial-gradient(circle, #fff 45%, #0000 94%), url('../images/IMG_4923_clipped_rev_1.png'), url('../images/IMG_4923_clipped_rev_1.png'), url('../images/rippling-target-2.svg'), url('../images/Grain_50p.png');
    background-position: 0 0, 100%, 0%, 50%, 0 0;
    background-repeat: repeat, no-repeat, no-repeat, no-repeat, repeat;
    background-size: auto, 600px, 600px, 210%, 300px;
  }

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

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

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

  .button-group-4.is-center {
    border-radius: 0;
  }

  .div-block-4 {
    border-radius: 10px;
  }

  .div-block-4.alt-bkg {
    background-image: url('../images/Grain_Latest.png'), linear-gradient(#070734, #0a0a6d);
    background-position: 0 0, 0 0;
    background-size: 300px, auto;
    border-radius: 20px;
  }

  .footer7_logo {
    width: 200px;
  }

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

  .heading-style-h2-4.bigger, .heading-style-h2-4.bigger-2 {
    font-size: 2.75rem;
    line-height: 2.9rem;
  }

  .section_cta1.less-bottom {
    padding-bottom: 2rem;
  }

  .cta1_image {
    object-fit: contain;
    width: 100%;
    height: 553px;
    display: none;
  }

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

  .cta1_content.animiation {
    grid-template-columns: 1.1fr;
  }

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

  .section_cta25-v1-block {
    background-image: radial-gradient(circle, #fff 47%, #0000 86%), url('../images/IMG_4923_clipped_rev_1.png'), url('../images/IMG_4923_clipped_rev_1.png'), url('../images/rippling-target-2.svg'), url('../images/Grain_50p.png');
    background-position: 0 0, 100%, 0%, 50%, 0 0;
    background-repeat: repeat, no-repeat, no-repeat, no-repeat, repeat;
    background-size: auto, 600px, 600px, 210%, 300px;
  }

  .section_cta25-v2 {
    background-image: radial-gradient(circle, #fff 45%, #0000 94%), url('../images/IMG_4923_clipped_rev_1.png'), url('../images/IMG_4923_clipped_rev_1.png'), url('../images/rippling-target-2.svg'), url('../images/Grain_50p.png');
    background-position: 0 0, 100%, 0%, 50%, 0 0;
    background-repeat: repeat, no-repeat, no-repeat, no-repeat, repeat;
    background-size: auto, 600px, 600px, 210%, 300px;
  }

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

  .layout240_image {
    object-fit: cover;
    width: 100%;
    height: 250px;
  }

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

  .heading-style-h5-3 {
    line-height: 1.8rem;
  }

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

  .paragraph-4, .paragraph-5 {
    font-family: neue-haas-grotesk-text, sans-serif;
  }

  .paragraph-6 {
    font-family: neue-haas-grotesk-text, sans-serif;
    font-weight: 400;
  }

  .text-block-15, .text-block-16, .text-block-17 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }

  .bold-text-5 {
    line-height: 1.8rem;
  }

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

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

  .layout1_image.fit {
    aspect-ratio: auto;
    height: auto;
    display: inline-block;
  }

  .dropdown1_dropdown-list {
    overflow: hidden;
  }

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

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

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

  .text-weight-semibold.banner {
    font-size: 1rem;
  }

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

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

  .menu-icon1_line-bottom {
    background-color: #fff;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar11_menu {
    -webkit-text-fill-color: inherit;
    background-color: #fff;
    background-clip: border-box;
    border-bottom: 1px solid #000;
    padding: 1rem 5% 2rem;
    position: absolute;
    overflow: auto;
  }

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

  .menu-icon1_line-top {
    background-color: #fff;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .dropdown1_toggle {
    color: #000;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#000, #000);
    -webkit-background-clip: text;
    background-clip: text;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .dropdown1_toggle:hover {
    background-image: linear-gradient(to bottom, var(--base-color-system--error-red), var(--base-color-system--error-red));
  }

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

  .menu-icon1_line-middle {
    background-color: #fff;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar11_link {
    color: var(--base-color-brand--black);
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#000, #000);
    -webkit-background-clip: text;
    background-clip: text;
    width: auto;
    padding: .75rem 0;
    font-size: 1.125rem;
    font-weight: 400;
  }

  .navbar11_link:hover {
    background-image: linear-gradient(to bottom, var(--base-color-system--error-red), var(--base-color-system--error-red));
  }

  .dropdown1_component {
    text-align: center;
    width: 100%;
    margin-right: 0;
    padding-left: 0;
    font-size: 1.125rem;
  }

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

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

  .image-74 {
    aspect-ratio: auto;
    text-align: center;
    object-fit: fill;
    width: 1000px;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    position: static;
  }

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

  .div-block-7 {
    height: 400px;
  }

  .image-75 {
    background-image: none;
    max-width: 70%;
  }

  .heading-4 {
    font-size: 2.75rem;
  }

  .text-block-82 {
    font-size: 2.75rem;
    line-height: 3rem;
  }

  .image-77, .image-78 {
    width: 150px;
    margin-top: 1.2rem;
  }

  .text-block-83 {
    margin-top: 2rem;
    margin-bottom: .5rem;
  }

  .button-group-2-buttons {
    justify-content: center;
  }

  .banner7_text-wrapper {
    margin-right: 0;
  }

  .banner7_content {
    padding-left: 0%;
    padding-right: 0%;
  }

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

  .banner7_icon-wrapper {
    display: block;
  }

  .banner7_content-wrapper {
    background-image: none;
  }

  .image-81 {
    width: 70%;
  }

  .section-how-it-works {
    background-position: 50%;
    background-size: 150%;
    overflow: hidden;
  }

  .layout142_component.padding-large.wider {
    padding-left: 0;
    padding-right: 0;
  }

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

  .step-card.step2, .step-card.step3 {
    grid-template-columns: .25fr auto;
  }

  .step-number.rewards {
    padding-top: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .step-number.points {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .step-grid---mobile {
    z-index: 1;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1.75fr;
    grid-auto-columns: 1fr;
    display: none;
    position: relative;
  }

  .step-card---mobile {
    text-align: left;
    background-color: #1e152b;
    border-radius: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem;
  }

  .div-block-63 {
    justify-content: flex-start;
    align-items: center;
    margin-bottom: .5rem;
    display: flex;
  }

  .text-24.text-color-white.inter.spacer-tiny, .text-24.text-color-white.inter.spacer-xsmall {
    font-size: 1.5rem;
  }

  .text-24.text-color-white.text-weight-bold.oswald {
    font-family: Oswald, sans-serif;
  }

  .text-24.text-color-white.text-weight-bold.oswald.caps.bigger {
    background-color: #0000;
    font-family: neue-haas-grotesk-text, sans-serif;
  }

  .text-24.text-color-white.spacer-xsmall.step-m {
    font-size: 1.2rem;
  }

  .text-24.text-color-gold.oswald {
    font-family: Oswald, sans-serif;
  }

  .text-24.text-color-gold.oswald.text-style-allcaps.text-weight-semibold {
    color: #d9bc62;
    margin-right: .5rem;
    font-family: Exo, sans-serif;
    line-height: 1.5rem;
  }

  .text-block-75 {
    color: #d8bc61;
    font-family: Oswald, sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 2.5rem;
  }

  .div-block-64 {
    background-color: #fff;
    align-items: center;
    height: 2px;
    max-height: 3px;
    margin-top: 1rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .color-spotlight---violet.left, .color-spotlight---bpurple.right {
    position: absolute;
  }

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

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

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

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

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

  .padding-section-large-5.less-bottom {
    padding-bottom: 3rem;
  }

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

  .div-block-65 {
    width: 150px;
    height: 150px;
  }

  .text-block-90 {
    font-size: 1rem;
    line-height: 1.2rem;
  }

  .text-block-91 {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }

  .header85_card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

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

  .text-block-93 {
    font-size: 2.2rem;
    line-height: 2.6rem;
  }

  .text-block-93.text-align-left.black {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }

  .text-block-94 {
    font-size: 2.2rem;
    line-height: 2.6rem;
  }

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

  .div-block-68 {
    border-radius: 20px;
  }

  .div-block-69 {
    z-index: 100;
    background-color: #000000f7;
    display: block;
    position: fixed;
    inset: 0%;
  }

  .container {
    margin-top: 10rem;
  }

  .container.custom {
    grid-template-columns: 1fr;
    margin-top: 4rem;
  }

  .text-block-95 {
    color: var(--base-color-neutral--white);
    text-align: center;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-size: 2rem;
    line-height: 2.4rem;
  }

  .image-84 {
    width: 100px;
  }

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

  .testimonial18_list {
    column-count: 2;
  }

  .testimonial18_component---desktop {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    column-count: 2;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .testimonial18_client-2.spacer-xsmall {
    font-size: 1.5rem;
  }

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

  .button-div {
    justify-content: center;
  }

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

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

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

  .cta39_card {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .cta39_card-content {
    padding: 3rem;
  }

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

  .button-group-13.is-center {
    border-radius: 0;
  }

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

  .layout519_card {
    padding: 2rem;
  }

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

  .tab5_component {
    margin-top: 4rem;
  }

  .layout379_item-icon-wrapper.mod {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .text-block-105 {
    top: -50%;
  }

  .hero-sub-text {
    font-size: 2rem;
  }

  .hero-sub-text.larger-mobile {
    font-size: 2.5rem;
  }

  .section_prizes {
    background-image: linear-gradient(to bottom, null, null), url('../images/Grain_Latest.png'), url('../images/stars-stripes-3_1stars-stripes-3.webp');
    background-repeat: repeat, repeat, repeat;
  }

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

  .layout503_tab-card-content {
    padding: 2rem;
  }

  .banner-text-gold {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }

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

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

  .header77_content-right {
    height: auto;
  }

  .flipcard-front.v2, .flipcard-back.v2 {
    height: 525px;
  }

  .image-93 {
    max-width: 85%;
  }

  .image-94 {
    width: 70%;
  }

  .lottie-animation-2 {
    height: 125px;
  }

  .text-size-button-small {
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.9rem;
  }

  .div-block-98 {
    background-color: #b42318;
    border-radius: 5px;
    padding: 1.5rem 5rem;
    box-shadow: 0 2px 5px #00000094;
  }

  .text-block-115 {
    font-family: neue-haas-grotesk-display, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
  }

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

  .heading-style-h1-conf.herotext {
    margin-bottom: 2rem;
  }

  .heading-style-h1-conf.herotext.dinner, .heading-style-h1-conf.herotext.conference {
    font-size: 5.5rem;
    line-height: 5.5rem;
  }

  .heading-style-h1-conf.herotext.conference.text-color-red {
    font-size: 5rem;
  }

  .below_photo_div {
    width: 100%;
    margin-top: 2rem;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

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

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

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

  .header_content_desktop.dinner {
    display: none;
  }

  .page-wrapper-4.navbar-on-page.dinner {
    position: relative;
  }

  .text-block-117 {
    padding-top: 1rem;
    padding-bottom: 90px;
    font-size: 2rem;
    line-height: 2.6rem;
  }

  .div-block-100 {
    width: 150px;
    height: 150px;
  }

  .text-block-118 {
    font-size: 1rem;
    line-height: 1.2rem;
  }

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

  .heading-style-h2-13.no-shadow {
    text-shadow: none;
  }

  .heading-style-h2-13.no-shadow.larger {
    font-size: 4rem;
    line-height: 4rem;
  }

  .heading-style-h2-13.text-color-white {
    text-shadow: none;
    font-size: 2.4rem;
    line-height: 2.5rem;
  }

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

  .text-block-124 {
    font-size: 2.2rem;
    line-height: 2.6rem;
  }

  .text-block-124.text-align-left.black {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }

  .text-block-126 {
    font-size: 2.2rem;
    line-height: 2.6rem;
  }

  .text-block-128 {
    font-size: 3.5vw;
  }

  .heading-22 {
    font-size: 2.75rem;
  }

  .div-block-104 {
    background-color: #b42318;
    border-radius: 5px;
    padding: 1.5rem 5rem;
    box-shadow: 0 2px 5px #00000094;
  }

  .text-block-129 {
    font-family: neue-haas-grotesk-display, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
  }

  .text-span-27 {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }

  .text-block-132 {
    top: -50%;
  }

  .div-block-106 {
    justify-content: flex-start;
    align-items: center;
    margin-bottom: .5rem;
    display: flex;
  }

  .text-block-135 {
    color: #d8bc61;
    font-family: Oswald, sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 2.5rem;
  }

  .div-block-107 {
    background-color: #fff;
    align-items: center;
    height: 2px;
    max-height: 3px;
    margin-top: 1rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .text-block-136 {
    font-size: 2.75rem;
    line-height: 3rem;
  }

  .image-109 {
    width: 150px;
    margin-top: 1.2rem;
  }

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

  .heading-style-h2-15.bigger-2 {
    font-size: 2.75rem;
    line-height: 2.9rem;
  }

  .div-block-112 {
    border-radius: 10px;
  }

  .div-block-112.alt-bkg {
    background-image: url('../images/Grain_Latest.png'), linear-gradient(#070734, #0a0a6d);
    background-position: 0 0, 0 0;
    background-size: 300px, auto;
    border-radius: 20px;
  }

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

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

  .div-block-114 {
    border-radius: 20px;
  }

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

  .div-block-116 {
    height: 400px;
  }

  .image-110 {
    background-image: none;
    max-width: 70%;
  }

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

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

  .image-113 {
    max-width: 85%;
  }

  .lottie-animation-7 {
    height: 125px;
  }

  .image-114 {
    width: 70%;
  }

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

  .heading-style-h2-conf.no-shadow {
    text-shadow: none;
  }

  .heading-style-h2-conf.no-shadow.larger {
    font-size: 4rem;
    line-height: 4rem;
  }

  .heading-style-h2-conf.no-shadow.larger.text-color-white {
    font-size: 4rem;
    line-height: 4.3rem;
  }

  .heading-style-h2-conf.text-color-white {
    text-shadow: none;
    font-size: 2.4rem;
    line-height: 2.5rem;
  }

  .text-size-medium-conf.alt-font.spacer-small {
    max-width: none;
  }

  .text-block-147 {
    top: -50%;
  }

  .text-block-147.mod, .text-block-147.mod2 {
    align-self: flex-start;
  }

  .section_layout142-rewards-hero {
    background-position: 50%;
    background-size: 150%;
    overflow: hidden;
  }

  .expand-bio-block {
    padding: 0 2rem 2rem;
  }

  .text-span-30 {
    font-size: 2rem;
    line-height: 2.4rem;
    text-decoration: none;
  }

  .text-span-30.bigger {
    font-size: 2.4rem;
    line-height: 2.8rem;
  }

  .heading-26 {
    font-size: 5rem;
    line-height: 5.2rem;
  }

  .heading-27 {
    line-height: 3.8rem;
  }

  .menu-icon4_line-middle-top {
    z-index: 2;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    inset: 0;
  }

  .menu-icon4_line-middle-base {
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: absolute;
  }

  .navbar4_menu-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: block;
    position: relative;
  }

  .navbar4_dropdown-link {
    margin-top: 0;
    margin-bottom: .5rem;
    padding: .5rem;
    font-size: 20px;
  }

  .navbar4_menu-button {
    margin-left: -.5rem;
    padding: 0;
  }

  .navbar4_menu-button.w--open {
    background-color: var(--\<unknown\|relume-variable-transparent\>);
  }

  .menu-icon4_line-middle {
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: static;
  }

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

  .dropdown-chevron-2.is-navbar4 {
    width: 1.25rem;
    height: 1.25rem;
  }

  .navbar4_menu-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
  }

  .menu-icon4_line-bottom {
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

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

  .navbar4_dropdown-list.w--open {
    border-style: none;
    padding: 0;
    position: static;
  }

  .menu-icon4_line-top {
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar4_link {
    margin-top: .5rem;
    margin-bottom: 0;
    padding: .5rem;
    font-size: 1.25rem;
    position: static;
  }

  .navbar4_menu {
    z-index: 1;
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    flex-direction: column;
    justify-content: center;
    margin-left: 0;
    display: block;
  }

  .navbar4_container {
    grid-auto-columns: 1fr;
  }

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

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

  .navbar4_dropdown-toggle {
    align-items: center;
    width: 100%;
    margin: 0;
    padding: .5rem;
    display: flex;
    position: relative;
  }

  .navbar4_dropdown-toggle.w--open {
    margin-bottom: .5rem;
  }

  .hero-sub-text-2 {
    font-size: 2rem;
    text-decoration: none;
  }

  .hero-sub-text-2.larger-mobile {
    font-size: 2.5rem;
  }
}

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

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

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

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

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

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

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

  .margin-small {
    margin: 1.25rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-large {
    margin: 2rem;
  }

  .margin-xlarge {
    margin: 2.5rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-xxhuge {
    margin: 5rem;
  }

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

  .padding-small {
    padding: 1.25rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-large {
    padding: 2rem;
  }

  .padding-xlarge {
    padding: 2.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 5rem;
  }

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

  .margin-top.margin-medium.trans.feature-2 {
    display: block;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .heading-style-h1.herotext {
    font-size: 3.8rem;
    line-height: 4rem;
  }

  .heading-style-h1.herotext.less-bottom {
    margin-bottom: 2rem;
  }

  .heading-style-h1.herotext.dinner, .heading-style-h1.herotext.conference {
    font-size: 4.5rem;
    line-height: 4.5rem;
  }

  .heading-style-h1.dinner-2.extra-bottom.conf-style {
    font-size: 2.6rem;
    line-height: 3rem;
  }

  .button.is-small.is-round.red {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

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

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

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

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

  .text-size-large.text-color-white {
    letter-spacing: 1px;
    line-height: 2.8rem;
  }

  .text-size-large.text-color-white.smaller.more-top, .text-size-large.text-color-white.xsmaller.more-top {
    display: block;
  }

  .text-size-large.text-color-dark {
    letter-spacing: 1px;
    line-height: 2.8rem;
  }

  .text-size-large.text-color-dark.smaller.more-top {
    display: block;
  }

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

  .padding-section-large.less-top {
    padding-top: 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;
  }

  .header84_card-content {
    padding: 2rem;
  }

  .header1_content {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    display: none;
  }

  .header1_content.dinner {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  ._3d-image.filter.bottom {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar13_menu-link-wrapper {
    padding: 1.25rem;
  }

  .navbar13_logo {
    width: 220px;
  }

  .navbar13_container {
    min-height: 4rem;
    margin-bottom: .5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .navbar13_container.disabled {
    margin-bottom: 1.5rem;
  }

  .navbar13_component {
    margin-top: 1.25rem;
  }

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

  .fs-copyclip_wrapper {
    grid-auto-flow: row;
    place-items: center;
  }

  .fs-copyclip_wrapper.full-width.less-top {
    margin-top: 1rem;
  }

  .fs-copyclip_text {
    text-align: center;
    white-space: normal;
    word-break: break-all;
  }

  .quote {
    width: auto;
    margin-top: 1rem;
    padding-top: 0;
  }

  .text-block-3 {
    font-size: 1.4rem;
    line-height: 1.5rem;
  }

  .text-block-3.larger {
    letter-spacing: .5px;
    font-size: 1.8rem;
    line-height: 2rem;
  }

  .banner12_text {
    font-size: 1.125rem;
  }

  .text-block-5.trump {
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 4vw;
  }

  .text-block-5.space {
    font-size: 4vw;
  }

  .heading-style-h2-2 {
    text-shadow: none;
    font-size: 2.25rem;
  }

  .heading-style-h2-2.text-color-white {
    line-height: 2.6rem;
  }

  .heading-style-h2-2.no-shadow.smaller {
    font-size: 3rem;
    line-height: 3.2rem;
  }

  .heading-style-h2-2.smaller {
    text-shadow: none;
  }

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

  .layout415_card {
    margin-left: 1.5rem;
  }

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

  .layout415_content {
    grid-template-columns: 1fr;
    align-content: start;
    height: 100%;
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: static;
  }

  .layout415_content-right {
    min-height: 24.5rem;
    position: sticky;
    top: 25%;
  }

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

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

  .layout353_content-left {
    position: static;
  }

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

  .faq4_question {
    padding: 1rem 1.25rem;
  }

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

  .faq4_icon-wrappper {
    width: 1.75rem;
  }

  .button-group-2.wider-2 {
    margin-left: 0;
    margin-right: 0;
  }

  .pay-div {
    width: 80px;
    height: 80px;
  }

  .image-2, .image-3 {
    height: 40px;
  }

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

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

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

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

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

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

  .footer7_logo {
    width: 200px;
  }

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

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

  .heading-style-h2-4.bigger {
    font-size: 2.25rem;
    line-height: 2.4rem;
  }

  .heading-style-h2-4.bigger.dinner {
    font-size: 3rem;
    line-height: 3.3rem;
  }

  .heading-style-h2-4.bigger-2 {
    font-size: 2.25rem;
    line-height: 2.4rem;
  }

  .heading-style-h2-4.bigger-2.dinner {
    font-size: 3rem;
    line-height: 3.3rem;
  }

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

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

  .cta1_content.animiation {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

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

  .header1_content_mobile.dinner {
    display: none;
  }

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

  .layout240_image {
    height: 450px;
  }

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

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

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

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

  .image-5 {
    height: 40px;
  }

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

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

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

  .layout1_image.fit {
    min-width: auto;
  }

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

  .text-weight-semibold.banner {
    font-size: .8rem;
    line-height: 1rem;
  }

  .navbar11_component {
    min-height: 4rem;
  }

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

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

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

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

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

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

  .section-community-hero {
    background-image: radial-gradient(circle, #000 42%, #fff0), url('../images/Grain_Latest.png'), linear-gradient(#070733, #070733), url('../images/stars-stripes-2_1stars-stripes-2.webp');
    background-position: 0 0, 0 0, 0 0, 0 0;
    background-size: auto, 300px, auto, cover;
  }

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

  .heading-style-h1-2 {
    margin-top: 2rem;
    font-size: 2.5rem;
    line-height: 2.8rem;
  }

  .div-block-7 {
    height: 500px;
  }

  .image-75 {
    max-width: 80%;
  }

  .heading-4 {
    font-size: 2.25rem;
  }

  .image-76 {
    height: 40px;
  }

  .image-77 {
    width: 125px;
    margin-top: 0;
  }

  .image-78 {
    width: 125px;
    margin-top: 1rem;
  }

  .button-group-2-buttons.wider-2 {
    margin-left: 0;
    margin-right: 0;
  }

  .banner7_text-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    grid-template-columns: auto auto auto 1fr;
    margin-bottom: 0;
    margin-right: 0;
  }

  .banner7_content {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
  }

  .button-4.is-small {
    white-space: nowrap;
    font-size: .8rem;
    line-height: 1rem;
  }

  .banner7_content-wrapper {
    background-image: none;
    flex-direction: column;
    align-items: stretch;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .banner7_close-button {
    margin-left: 0;
    position: absolute;
    inset: .5rem .5rem auto auto;
  }

  .banner-text-1 {
    padding-right: .5rem;
  }

  .text-block-84 {
    font-size: .8rem;
  }

  .arrow {
    display: none;
  }

  .link-2.text-red {
    line-height: 1.2;
  }

  .section-how-it-works {
    background-position: 50%;
    background-size: 300%;
  }

  .layout142_component.padding-large {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .layout410_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    align-items: stretch;
  }

  .step-card {
    margin-bottom: 1rem;
  }

  .step-card.step1.conference {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: .25fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    display: grid;
  }

  .step-number {
    padding-left: 2rem;
    padding-right: 1rem;
  }

  .step-content.mod {
    padding-top: 0;
  }

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

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

  .layout484_text {
    font-size: 2.2rem;
    line-height: 2.6rem;
  }

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

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

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

  .tngc-div {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .tngc-div.og-dinner {
    grid-template-columns: 1fr;
  }

  .div-block-65 {
    top: -4%;
  }

  .header85_card-content {
    padding: 2rem;
  }

  .text-size-medium-16 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

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

  .text-size-medium-18 {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }

  .header78_image-wrapper {
    width: 18rem;
  }

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

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

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

  .text-block-93, .text-block-93.text-align-left.black {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

  .bonus-section.wh-bkg, .bonus-section.wh-bkg-2, .bonus-section.wh-bkg-2 {
    padding: 1.5rem;
  }

  .text-block-94 {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

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

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

  .container.custom {
    grid-template-columns: 1fr;
    margin-top: 4rem;
  }

  .div-block-70 {
    top: -5%;
  }

  .div-block-74 {
    margin-top: .5rem;
  }

  .panel-text-smaller {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

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

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

  .testimonial18_list {
    column-count: 1;
  }

  .testimonial18_card {
    padding: 1.5rem;
  }

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

  .testimonial18_component---desktop {
    column-count: 1;
  }

  .testimonial18_content-2 {
    align-items: center;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem;
    display: flex;
  }

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

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

  .heading-17.text-style-allcaps {
    font-size: 3rem;
    line-height: 3rem;
  }

  .testimonial1_component {
    margin-left: 1rem;
    margin-right: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .div-block-59 {
    text-align: center;
    margin-top: 2rem;
    margin-right: auto;
  }

  .link-3 {
    vertical-align: text-top;
    padding-left: .125rem;
    font-size: 1.4rem;
    position: static;
  }

  .button-div.wider-2 {
    margin-left: 0;
    margin-right: 0;
  }

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

  .logo6_wrapper {
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .logo6_logo {
    max-height: 3rem;
  }

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

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

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

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

  .layout395_card-content {
    padding: 1.5rem;
  }

  .cta39_card-content {
    padding: 2rem;
  }

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

  .button-9.is-small.is-round.red {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

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

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

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

  .layout519_card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

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

  .tab5_tabs-menu {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
    flex-flow: column;
    margin-bottom: 3rem;
  }

  .tab5_tab-link {
    height: auto;
  }

  .text-block-105 {
    top: -65%;
  }

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

  .layout503_tabs-menu {
    width: 100vw;
    margin-bottom: 3rem;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .layout503_tabs-menu.no-scrollbar {
    justify-content: flex-start;
    margin-bottom: 3rem;
  }

  .layout503_tab-card {
    grid-template-columns: 1fr;
  }

  .layout503_tab-card-content {
    padding: 1.5rem;
  }

  .header77_component {
    padding-top: 4rem;
  }

  .header77_content-right {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .header77_image-wrapper {
    width: 18rem;
  }

  .flipcard-front.v2 {
    height: 600px;
  }

  .flipcard-subtitle {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }

  .flipcard-back.v2 {
    height: 600px;
  }

  .image-93 {
    max-width: 80%;
    bottom: 10%;
  }

  .image-94 {
    width: 90%;
    height: auto;
  }

  .lottie-animation-2 {
    height: 100px;
  }

  .text-size-button-small {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }

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

  .heading-style-h1-conf.herotext {
    font-size: 3.8rem;
    line-height: 4rem;
  }

  .heading-style-h1-conf.herotext.less-bottom {
    margin-bottom: 2rem;
  }

  .heading-style-h1-conf.herotext.dinner, .heading-style-h1-conf.herotext.conference {
    font-size: 4.5rem;
    line-height: 4.5rem;
  }

  .heading-style-h1-conf.herotext.conference.text-color-red {
    font-size: 3.8rem;
    line-height: 4rem;
  }

  .sub-head-text-bigger {
    font-size: 1.85rem;
    line-height: 2rem;
  }

  .header_content_mobile {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    display: none;
  }

  .header_content_mobile.dinner {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .header_content_desktop {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    display: none;
  }

  .header_content_desktop.dinner {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: none;
  }

  .link-5 {
    vertical-align: text-top;
    padding-left: .125rem;
    font-size: 1.4rem;
    position: static;
  }

  .text-block-117 {
    font-size: 1.4rem;
    line-height: 1.5rem;
  }

  .div-block-100 {
    top: -4%;
  }

  .heading-style-h2-13 {
    text-shadow: none;
    font-size: 2.25rem;
  }

  .heading-style-h2-13.no-shadow.smaller {
    font-size: 3rem;
    line-height: 3.2rem;
  }

  .heading-style-h2-13.text-color-white {
    line-height: 2.6rem;
  }

  .heading-style-h2-13.smaller {
    text-shadow: none;
  }

  .text-size-medium-25 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .text-block-124, .text-block-124.text-align-left.black, .text-block-126 {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

  .text-block-128.space {
    font-size: 4vw;
  }

  .text-block-128.trump {
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 4vw;
  }

  .heading-22 {
    font-size: 2.25rem;
  }

  .text-size-medium-26 {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }

  .text-span-27 {
    font-size: 2.2rem;
    line-height: 2.5rem;
  }

  .text-block-130.mod {
    font-size: 2rem;
  }

  .text-block-132 {
    top: -65%;
  }

  .div-block-105 {
    width: 125px;
    height: 125px;
    top: -5%;
  }

  .text-block-134 {
    font-size: .85rem;
    line-height: 1rem;
  }

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

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

  .image-105, .image-106, .image-107, .image-108 {
    height: 40px;
  }

  .image-109 {
    width: 125px;
    margin-top: 0;
  }

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

  .heading-style-h2-15.bigger-2 {
    font-size: 2.25rem;
    line-height: 2.4rem;
  }

  .heading-style-h2-15.bigger-2.dinner {
    font-size: 3rem;
    line-height: 3.3rem;
  }

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

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

  .div-block-116 {
    height: 500px;
  }

  .image-110 {
    max-width: 80%;
  }

  .heading-style-h1-3 {
    margin-top: 2rem;
    font-size: 2.5rem;
    line-height: 2.8rem;
  }

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

  .image-113 {
    max-width: 80%;
    bottom: 10%;
  }

  .lottie-animation-7 {
    height: 100px;
  }

  .image-114 {
    width: 90%;
    height: auto;
  }

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

  .heading-style-h2-conf {
    text-shadow: none;
    font-size: 2.25rem;
  }

  .heading-style-h2-conf.no-shadow.smaller {
    font-size: 3rem;
    line-height: 3.2rem;
  }

  .heading-style-h2-conf.no-shadow.larger.text-color-white {
    font-size: 3.5rem;
    line-height: 3.8rem;
  }

  .heading-style-h2-conf.text-color-white {
    line-height: 2.6rem;
  }

  .heading-style-h2-conf.smaller {
    text-shadow: none;
  }

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

  .text-block-147 {
    top: -65%;
  }

  .text-block-147.mod, .text-block-147.mod2 {
    padding-left: 0;
    font-size: 2rem;
  }

  .section_layout142-rewards-hero {
    background-position: 50%;
    background-size: 300%;
  }

  .expand-bio-block {
    padding: 0 1.5rem 1.5rem;
  }

  .banner-text-desktop {
    line-height: 1.1;
    display: none;
  }

  .banner-text-mobile {
    line-height: 1.1;
    display: block;
  }

  .text-block-151 {
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .hero-headline-block {
    margin-bottom: 2rem;
  }

  .heading-26 {
    font-size: 3.5rem;
    line-height: 3.7rem;
  }

  .heading-27 {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }

  .button-10.is-navbar4-button {
    padding: .25rem 1rem;
  }

  .navbar4_menu-wrapper {
    font-size: 1.25rem;
  }

  .navbar4_component {
    min-height: 4rem;
  }
}

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

  .max-width-full.more-bottom {
    padding-bottom: 4rem;
  }

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

  .max-width-xlarge.align-center {
    letter-spacing: .5px;
  }

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

  .margin-top.margin-medium.trans.feature-2 {
    display: block;
  }

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

  .margin-bottom.spacer-medium {
    margin-left: 1rem;
    margin-right: 1rem;
  }

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

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

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

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

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

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

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

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

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

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

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

  .text-size-medium.text-color-black.spacer-small, .text-size-medium.spacer-small.align-center {
    letter-spacing: .5px;
  }

  .heading-style-h6.bigger {
    font-family: neue-haas-grotesk-text, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
  }

  .heading-style-h1.herotext {
    font-size: 2.8rem;
    line-height: 2.8rem;
  }

  .heading-style-h1.herotext.less-bottom {
    text-shadow: none;
    margin-bottom: 1rem;
    font-size: 2.6rem;
    line-height: 3rem;
  }

  .heading-style-h1.herotext.dinner, .heading-style-h1.herotext.conference {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }

  .heading-style-h1.dinner-2.extra-bottom {
    font-size: 3rem;
    line-height: 3rem;
  }

  .heading-style-h1.dinner-2.extra-bottom.conf-style {
    margin-bottom: 0;
    font-size: 1.75rem;
    line-height: 2rem;
  }

  .button.is-small.is-round.red {
    order: 1;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .text-size-regular.text-color-white.text-weight-bold.oswald.caps.bigger {
    letter-spacing: .5px;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  .text-size-regular.text-color-white.spacer-xsmall.step-m {
    font-size: 1rem;
  }

  .heading-style-h3 {
    font-size: 2.5rem;
    line-height: 2.6rem;
  }

  .text-color-white.disclaimer {
    background-image: linear-gradient(to bottom, var(--base-color-neutral--neutral-light), var(--base-color-neutral--neutral-light));
    color: var(--base-color-neutral--neutral-light);
    padding-left: 0;
    padding-right: 0;
    line-height: 19px;
  }

  .text-color-white.disclaimer.align-center {
    text-align: left;
    letter-spacing: .5px;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-size: 11px;
    line-height: 12px;
  }

  .text-color-white.disclaimer.align-center.darker.black {
    background-image: linear-gradient(#000, #000);
    font-family: neue-haas-grotesk-display, sans-serif;
    font-size: 11px;
    line-height: 12px;
  }

  .text-color-white.disclaimer.align-center.darker-3 {
    background-color: var(--base-color-brand--black);
    margin-top: 0;
    font-family: neue-haas-grotesk-display, sans-serif;
  }

  .text-color-white.disclaimer.align-center.mid {
    text-align: left;
  }

  .text-color-white.disclaimer.smaller {
    font-size: 11px;
    line-height: 12px;
  }

  .text-color-white.disclaimer.smaller.align-center {
    text-align: center;
  }

  .text-color-white.disclaimer.xsmall {
    font-size: 11px;
    line-height: 12px;
  }

  .text-size-large.text-color-white {
    font-size: 1.75rem;
    line-height: 1.85rem;
  }

  .text-size-large.text-color-white.smaller {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }

  .text-size-large.text-color-white.smaller.more-top.reduce-size {
    margin-top: 2rem;
    font-size: 1.1rem;
    line-height: 1.4rem;
  }

  .text-size-large.text-color-white.smaller.more-top.less-top {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  .text-size-large.text-color-white.xsmaller {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }

  .text-size-large.text-color-white.xsmaller.more-top.reduce-size {
    margin-top: 2rem;
    font-size: 1.1rem;
    line-height: 1.4rem;
  }

  .text-size-large.text-color-white.xsmaller.more-top.less-top {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  .text-size-large.text-color-dark {
    font-size: 1.75rem;
    line-height: 1.85rem;
  }

  .text-size-large.text-color-dark.smaller {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }

  .text-size-large.text-color-dark.smaller.more-top.reduce-size {
    margin-top: 2rem;
    font-size: 1.1rem;
    line-height: 1.4rem;
  }

  .text-size-large.text-color-dark.smaller.more-top.less-top {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  .padding-section-small.text-align-center.no-top.more-bottom {
    padding-bottom: 4rem;
  }

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

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

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

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

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

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

  .padding-section-large.small-bottom.no-bottom {
    padding-bottom: 0;
  }

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

  .header1_image-wrapper.dinner {
    margin-top: .5rem;
  }

  .header1_image-wrapper.conference {
    margin-top: 2rem;
  }

  .header1_component.round {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .header1_component.round.dinner.animation {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .image-wrap {
    mix-blend-mode: normal;
    object-fit: fill;
    background-color: #0000;
    background-image: linear-gradient(#070735, #070735);
    transition: none;
    top: auto;
  }

  .image-wrap.dinner.new {
    background-image: none;
  }

  ._3d-image {
    border-radius: 10px;
    margin-left: 0%;
    margin-right: 0%;
    padding-left: 0%;
    padding-right: 0%;
  }

  ._3d-image.filter {
    -webkit-text-fill-color: inherit;
    mix-blend-mode: normal;
    object-fit: fill;
    background-clip: border-box;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  ._3d-image.filter.bottom {
    border-radius: 20px;
    margin-bottom: 0;
  }

  .shine {
    display: none;
  }

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

  .navbar13_button-wrapper {
    flex-flow: row;
    order: 1;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

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

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

  .navbar13_logo-link.w--current {
    order: -1;
  }

  .navbar13_logo {
    text-align: center;
    width: 200px;
    max-width: none;
  }

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

  .navbar13_container {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    border-radius: 30px;
    flex-flow: column;
    padding: 1.25rem 1rem;
  }

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

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

  .fs-copyclip_wrapper.full-width.less-top {
    grid-auto-flow: column;
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .fs-copyclip_button {
    min-width: auto;
    padding-left: .5rem;
    padding-right: .5rem;
    font-size: .75rem;
    line-height: 1rem;
  }

  .fs-copyclip_text {
    box-sizing: border-box;
    aspect-ratio: auto;
    text-align: center;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    object-fit: fill;
    width: 150px;
    font-size: .8rem;
    overflow: hidden;
  }

  .text-block {
    font-size: .75rem;
    line-height: 1.5;
  }

  .quote {
    background-color: #0000;
    background-position: 0 0, 50% 90%, 96% 65%, 4% 4%;
    background-size: 300px, 80px, auto 35px, auto 35px;
    border-style: none;
    margin-top: 2rem;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .quote.smaller.dinner {
    border-radius: 20px;
    margin-top: 0;
  }

  .text-block-3 {
    padding-top: 1rem;
  }

  .text-block-3.larger {
    padding-bottom: 70px;
  }

  .text-block-3.dinner {
    padding-left: .5rem;
    padding-right: .5rem;
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  .text-block-5 {
    font-size: 6vw;
  }

  .text-block-5.trump, .text-block-5.space {
    font-size: 5vw;
  }

  .trump-t {
    width: 6rem;
    height: 6rem;
  }

  .heading-style-h2-2 {
    text-shadow: none;
    -webkit-text-fill-color: transparent;
    background-color: #000;
    background-image: url('../images/intothe-rainbow-9.svg');
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 2.5rem;
    line-height: 2.6rem;
  }

  .heading-style-h2-2.text-color-white {
    font-size: 2.5rem;
    line-height: 2.6rem;
  }

  .heading-style-h2-2.no-shadow.larger {
    font-size: 3rem;
    line-height: 3.4rem;
  }

  .heading-style-h2-2.no-shadow.smaller {
    font-size: 2.2rem;
    line-height: 2.5rem;
  }

  .heading-style-h2-2.no-shadow.white.smaller {
    background-color: #0000;
  }

  .heading-style-h2-2.smaller {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }

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

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

  .padding-global-2.more-bottom {
    padding-bottom: 4rem;
  }

  .button-group-2.more-top {
    margin-top: 2rem;
  }

  .button-primary-cta.max-width-medium.smaller {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .button-primary-cta.max-width-medium.smaller.shadow.dinner {
    padding: 1.5rem;
  }

  .button-primary-cta.max-width-medium.dinner {
    padding: 1rem;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }

  .pay-div {
    width: 75px;
    height: 75px;
  }

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

  .video-overlay-layer-2 {
    background-image: radial-gradient(circle, #070731 38%, #fff0), url('../images/Grain_Latest.png');
    background-position: 0 0, 50%;
    background-repeat: repeat, repeat-x;
    background-size: auto, 210%;
  }

  .div-block-4 {
    padding: 1.2rem;
  }

  .div-block-4.alt-bkg {
    padding-top: 2rem;
  }

  .text-block-7 {
    letter-spacing: .5px;
    font-family: neue-haas-grotesk-display, sans-serif;
    line-height: 1.8rem;
  }

  .bold-text-3 {
    line-height: 1.9rem;
  }

  .bold-text-3.dinner {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }

  .bold-text-4 {
    line-height: 1.9rem;
  }

  .bold-text-4.dinner {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }

  .paragraph-2 {
    font-size: 20px;
    line-height: 28px;
  }

  .paragraph-3 {
    word-break: normal;
    font-size: 20px;
    line-height: 28px;
  }

  .paragraph-3.break {
    word-break: normal;
  }

  .footer7_logo {
    width: 200px;
  }

  .success-div {
    display: none;
    top: -22%;
    right: 34%;
  }

  .heading-style-h2-4.bigger, .heading-style-h2-4.bigger-2 {
    font-size: 2.5rem;
    line-height: 2.6rem;
  }

  .heading-style-h2-4.bigger-2.dinner {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .text-size-medium-5.bigger {
    font-family: neue-haas-grotesk-display, sans-serif;
    line-height: 1.8rem;
  }

  .cta1_image {
    min-width: auto;
  }

  .cta1_content {
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
  }

  .div-block-5 {
    text-align: center;
  }

  .header1_content_mobile {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    grid-template-columns: 1fr;
  }

  .disclaimer {
    margin-top: 1rem;
  }

  .disclaimer.spacer-medium {
    padding-top: 0;
  }

  .disclaimer.more-top {
    margin-top: 2rem;
  }

  .text-block-14 {
    font-size: 13px;
    line-height: 14px;
  }

  .section_cta25-v1-block {
    background-image: radial-gradient(circle, #fff 47%, #0000 86%), url('../images/rippling-target-2.svg'), url('../images/Grain_50p.png');
    background-position: 0 0, 50%, 0 0;
    background-repeat: repeat, no-repeat, repeat;
    background-size: auto, 210%, 300px;
  }

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

  .image-5 {
    width: 40px;
    height: 40px;
  }

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

  .text-size-medium-7.center.bigger {
    letter-spacing: .5px;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  .layout1_content {
    grid-column-gap: 1.3rem;
    grid-row-gap: 1.3rem;
    grid-template-columns: 1fr;
  }

  .navbar11_logo {
    max-width: 90%;
  }

  .text-weight-semibold.banner {
    text-align: center;
    display: none;
  }

  .dropdown1_toggle {
    font-weight: 400;
  }

  .section-community-hero {
    background-image: radial-gradient(circle, #000 42%, #fff0), url('../images/Grain_Latest.png'), linear-gradient(#070732, #070732), url('../images/stars-stripes-2_1stars-stripes-2.webp');
    background-position: 0 0, 0 0, 0 0, 0 0;
    background-size: auto, 300px, auto, cover;
    padding-top: 4rem;
  }

  .heading-style-h1-2 {
    margin-top: 1rem;
    margin-left: 1.75rem;
    margin-right: 1.75rem;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-size: 1.4rem;
    line-height: 1.6rem;
  }

  .div-block-7 {
    height: 250px;
  }

  .text-block-81 {
    font-family: neue-haas-grotesk-display, sans-serif;
    font-size: 1.25rem;
    line-height: 1.7rem;
  }

  .image-76 {
    width: 40px;
    height: 40px;
  }

  .text-block-82 {
    font-family: neue-haas-grotesk-display, sans-serif;
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .image-77 {
    margin-top: 0;
    margin-left: .25rem;
  }

  .image-78 {
    margin-left: .25rem;
  }

  .button-primary-cta-mobile.max-width-medium.smaller {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .button-primary-cta-mobile.max-width-medium.smaller.wider {
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    height: 100px;
    padding: 1rem;
    font-size: 1.1rem;
    line-height: 1.2rem;
    display: flex;
  }

  .underline {
    color: #c41220;
    -webkit-text-decoration: none;
    text-decoration: none;
    text-decoration-thickness: 5px;
  }

  .underline-2 {
    -webkit-text-decoration: none;
    text-decoration: none;
    text-decoration-thickness: 8px;
  }

  .text-span-9 {
    background-color: var(--base-color-neutral--white);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
  }

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

  .div-block-12 {
    background-image: linear-gradient(270deg, #fff 9%, #0000 52%);
    height: auto;
    max-height: 20px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    inset: 0%;
  }

  .red-text {
    font-size: 3rem;
    line-height: 5rem;
  }

  .bold-text-7 {
    font-size: 16px;
    line-height: 16px;
  }

  .image-80 {
    max-width: 80%;
  }

  .red-text2 {
    color: #c41220;
  }

  .red-text2.dinner {
    color: var(--base-color-neutral--white);
  }

  .banner7_text-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex: 0 auto;
    grid-template-columns: auto auto auto;
    align-self: auto;
    margin-right: 0;
  }

  .banner-text-1 {
    text-align: center;
    border-right-style: none;
    padding-right: 0;
    display: none;
  }

  .text-block-85, .text-block-86 {
    font-size: .8rem;
    line-height: 1rem;
  }

  .mobile-banner-text {
    display: block;
  }

  .banner-text-2 {
    display: none;
  }

  .padding-global-4 {
    flex: 0 auto;
  }

  .layout142_component.padding-large {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-11 {
    font-size: 2.5rem;
  }

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

  .step-card {
    grid-template-columns: 1fr;
  }

  .step-card.step1 {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .step-card.step1.conference {
    grid-template-columns: .25fr;
    display: block;
  }

  .step-card.step2 {
    grid-template-columns: .25fr;
  }

  .step-card.step3 {
    grid-template-columns: .3fr;
  }

  .step-card.step6 {
    grid-template-columns: .25fr;
  }

  .step-number {
    padding-top: 1rem;
    padding-bottom: 0;
    padding-left: 1rem;
  }

  .step-number.rewards, .step-number.points {
    padding-bottom: 1rem;
  }

  .text-block-88 {
    letter-spacing: .5px;
    font-family: neue-haas-grotesk-display, sans-serif;
    line-height: 1.8rem;
  }

  .step-content {
    padding: 0 1rem 1rem;
  }

  .step-content.mod {
    margin-top: 1.5rem;
  }

  .text-40.text-style-allcaps {
    font-size: 1.75rem;
    line-height: 2rem;
  }

  .text-24.text-color-white.text-weight-bold.oswald.caps.bigger {
    letter-spacing: .5px;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  .text-24.text-color-white.spacer-xsmall.step-m {
    font-size: 1rem;
  }

  .heading-13 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .heading-14 {
    font-size: 1.75rem;
  }

  .heading-15 {
    font-size: 3rem;
    line-height: 3rem;
  }

  .padding-section-large-5.less-top.min-bottom {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

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

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

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

  .padding-section-large-5.no-bottom {
    padding-bottom: 0;
  }

  .layout484_text {
    font-size: 1.8rem;
    line-height: 2.1rem;
  }

  .layout484_text.centered.red-text {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 2rem;
  }

  .gallery1_image {
    border-radius: 20px;
  }

  .div-block-65 {
    top: -10%;
  }

  .image-82 {
    border-radius: 20px;
  }

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

  .header85_card-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .header78_image-wrapper {
    width: 60vw;
  }

  .list-2 {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }

  .heading-style-h3-3 {
    font-size: 2.5rem;
    line-height: 2.6rem;
  }

  .text-block-93 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }

  .text-block-93.add-top.smaller {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  .text-block-93.text-align-left.black {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }

  .bonus-section.wh-bkg, .bonus-section.wh-bkg-2, .bonus-section.wh-bkg-2 {
    border-radius: 20px;
    padding: 1rem;
  }

  .text-block-94 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }

  .heading-style-h3-4 {
    font-size: 2.1rem;
    line-height: 2.4rem;
  }

  .text-size-medium-20.text-color-black.text-align-left.larger {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .div-block-68 {
    border-radius: 20px;
    padding: 1rem;
  }

  .container.custom {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .lottie-animation {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .div-block-70 {
    top: -4%;
  }

  .text-span-11 {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }

  .image-84 {
    margin-right: 1rem;
  }

  .panel-text-smaller {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }

  .testimonial18_content-2 {
    width: auto;
  }

  .testimonial1_component {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-99, .text-block-99.text-color-white {
    font-size: 11px;
    line-height: 12px;
  }

  .text-span-12 {
    overflow-wrap: anywhere;
  }

  .logo6_list {
    max-width: 250px;
  }

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

  .text-size-medium-23.spacer-small.align-center {
    letter-spacing: .5px;
  }

  .text-size-medium-23.text-color-black.text-align-left.larger {
    font-size: 1.5rem;
    line-height: 2rem;
  }

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

  .button-9.is-small.is-round.red {
    order: 1;
    padding-left: 2rem;
    padding-right: 2rem;
  }

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

  .heading-style-h3-5 {
    font-size: 2.5rem;
    line-height: 2.6rem;
  }

  .tab5_component {
    margin-top: 3rem;
  }

  .tab5_tabs-menu {
    grid-column-gap: 5.5rem;
    grid-row-gap: 5.5rem;
  }

  .text-block-105 {
    opacity: 100;
    top: -50%;
  }

  .hero-sub-text.larger {
    font-size: 1.25rem;
    line-height: 1.65rem;
  }

  .heading-20b.text-align-center.mix {
    font-size: 2rem;
  }

  .banner-text-gold {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }

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

  .header77_image-wrapper {
    width: 60vw;
  }

  .flipcard-front {
    padding-top: 60px;
    padding-left: 30px;
    padding-right: 41px;
  }

  .flipcard-front.v2 {
    height: 550px;
  }

  .flipcard-title.smaller {
    line-height: 3rem;
  }

  .flipcard-title.larger {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .flipcard-subtitle {
    font-size: 1.1rem;
    line-height: 1.6rem;
  }

  .flipcard-back {
    padding-top: 44px;
    padding-right: 60px;
    transform: rotateX(0)rotateY(180deg)rotateZ(0);
  }

  .flipcard-back.v2 {
    height: 550px;
    padding-top: 44px;
    padding-right: 60px;
    transform: rotateX(0)rotateY(180deg)rotateZ(0);
  }

  .flipcard-back-title, .flipcard-back-title.bigger {
    font-size: 2.2rem;
    line-height: 2.5rem;
  }

  .image-93 {
    max-width: 90%;
    bottom: 14%;
  }

  .image-94 {
    aspect-ratio: auto;
    object-fit: fill;
    height: auto;
    padding-top: 20px;
    display: block;
  }

  .slide {
    vertical-align: baseline;
    margin-top: 0;
  }

  .image-95 {
    width: auto;
    height: 100%;
    padding-top: 20px;
  }

  .image-96 {
    height: auto;
    padding-top: 20px;
  }

  .mask {
    align-self: center;
  }

  .text-block-111 {
    margin-bottom: 0;
    font-size: 1.3rem;
    line-height: 1.7rem;
  }

  .list-item-2 {
    font-size: 1rem;
    line-height: 1.4rem;
  }

  .text-block-112 {
    line-height: 1.4;
  }

  .div-block-97 {
    max-width: none;
    padding: 1rem;
  }

  .text-size-button-small {
    width: 100%;
  }

  .div-block-98 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .robinhood-block {
    padding: 2rem;
  }

  .robinhood-block.more-bottom {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .robinhood-block.less-margin {
    padding: 1.5rem;
  }

  .heading-style-h1-conf.herotext {
    font-size: 2.8rem;
    line-height: 2.8rem;
  }

  .heading-style-h1-conf.herotext.less-bottom {
    text-shadow: none;
    margin-bottom: 1rem;
    font-size: 2.6rem;
    line-height: 3rem;
  }

  .heading-style-h1-conf.herotext.dinner, .heading-style-h1-conf.herotext.conference {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }

  .heading-style-h1-conf.herotext.conference.text-color-red {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    line-height: 2.75rem;
  }

  .heading-style-h1-conf.dinner-2.extra-bottom {
    font-size: 3rem;
    line-height: 3rem;
  }

  .sub-head-text-bigger {
    font-size: 1.25rem;
    line-height: 1.65rem;
  }

  .header_content_mobile, .header_content_desktop {
    grid-template-columns: 1fr;
  }

  .text-block-117 {
    padding-top: 1rem;
  }

  .text-block-117.dinner {
    padding-left: .5rem;
    padding-right: .5rem;
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  .div-block-100 {
    top: -10%;
  }

  .heading-style-h2-13 {
    text-shadow: none;
    -webkit-text-fill-color: transparent;
    background-color: #000;
    background-image: url('../images/intothe-rainbow-9.svg');
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 2.5rem;
    line-height: 2.6rem;
  }

  .heading-style-h2-13.no-shadow.smaller {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }

  .heading-style-h2-13.no-shadow.larger {
    font-size: 3rem;
    line-height: 3.4rem;
  }

  .heading-style-h2-13.text-color-white {
    font-size: 2.5rem;
    line-height: 2.6rem;
  }

  .heading-style-h2-13.smaller {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }

  .button-group-14.more-top {
    margin-top: 2rem;
  }

  .button-group-14.more-top-2 {
    margin-top: 3rem;
  }

  .lottie-animation-6 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .text-block-124, .text-block-124.text-align-left.black {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }

  .text-block-124.add-top.smaller {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  .text-block-126 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }

  .text-block-127, .text-block-127.text-color-white {
    font-size: 11px;
    line-height: 12px;
  }

  .heading-21.text-align-center.text-color-mix {
    font-size: 2rem;
  }

  .heading-21.text-align-center.smaller {
    font-size: 1.75rem;
    line-height: 1.1;
  }

  .text-block-128 {
    font-size: 6vw;
  }

  .text-block-128.space, .text-block-128.trump {
    font-size: 5vw;
  }

  .padding-global-6.more-bottom {
    padding-bottom: 3rem;
  }

  .div-block-104 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .padding-global-7 {
    flex: 0 auto;
    padding-top: 1rem;
  }

  .text-span-27 {
    font-size: 1.8rem;
    line-height: 2rem;
  }

  .text-block-132 {
    opacity: 100;
    top: -50%;
  }

  .heading-23 {
    font-size: 1.75rem;
  }

  .heading-24 {
    font-size: 3rem;
    line-height: 3rem;
  }

  .heading-25 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .div-block-105 {
    top: -4%;
  }

  .text-span-28 {
    background-color: var(--base-color-neutral--white);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
  }

  .div-block-108 {
    text-align: center;
  }

  .image-103 {
    max-width: 80%;
  }

  .text-block-136 {
    font-family: neue-haas-grotesk-display, sans-serif;
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .text-block-137 {
    font-family: neue-haas-grotesk-display, sans-serif;
    font-size: 1.25rem;
    line-height: 1.7rem;
  }

  .text-size-medium-27.center.bigger {
    letter-spacing: .5px;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  .image-107, .image-108 {
    width: 40px;
    height: 40px;
  }

  .image-109 {
    margin-top: 0;
    margin-left: .25rem;
  }

  .text-block-138 {
    font-size: .75rem;
    line-height: 1.5;
  }

  .heading-style-h2-15.bigger-2 {
    font-size: 2.5rem;
    line-height: 2.6rem;
  }

  .heading-style-h2-15.bigger-2.dinner {
    margin-bottom: 3rem;
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .div-block-112 {
    padding: 1.2rem;
  }

  .div-block-112.alt-bkg {
    padding-top: 2rem;
  }

  .text-block-140 {
    letter-spacing: .5px;
    font-family: neue-haas-grotesk-display, sans-serif;
    line-height: 1.8rem;
  }

  .list-8 {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }

  .div-block-114 {
    border-radius: 20px;
    padding: 1rem;
  }

  .heading-style-h3-6 {
    font-size: 2.1rem;
    line-height: 2.4rem;
  }

  .div-block-116 {
    height: 250px;
  }

  .heading-style-h1-3 {
    margin-top: 1rem;
    margin-left: 1.75rem;
    margin-right: 1.75rem;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-size: 1.4rem;
    line-height: 1.6rem;
  }

  .image-113 {
    max-width: 90%;
    bottom: 14%;
  }

  .text-block-142 {
    margin-bottom: 0;
    font-size: 1.3rem;
    line-height: 1.7rem;
  }

  .list-item-4 {
    font-size: 1rem;
    line-height: 1.4rem;
  }

  .image-114 {
    aspect-ratio: auto;
    object-fit: fill;
    height: auto;
    padding-top: 20px;
    display: block;
  }

  .image-115 {
    width: auto;
    height: 100%;
    padding-top: 20px;
  }

  .image-116 {
    height: auto;
    padding-top: 20px;
  }

  .text-block-143 {
    line-height: 1.4;
  }

  .bold-text-16 {
    line-height: 1.9rem;
  }

  .bold-text-16.dinner {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }

  .paragraph-8 {
    font-size: 20px;
    line-height: 28px;
  }

  .bold-text-17 {
    line-height: 1.9rem;
  }

  .bold-text-17.dinner {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }

  .paragraph-9 {
    word-break: normal;
    font-size: 20px;
    line-height: 28px;
  }

  .paragraph-9.break {
    word-break: normal;
  }

  .text-block-144 {
    font-size: 13px;
    line-height: 14px;
  }

  .heading-style-h2-conf {
    text-shadow: none;
    -webkit-text-fill-color: transparent;
    background-color: #000;
    background-image: url('../images/intothe-rainbow-9.svg');
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 2.5rem;
    line-height: 2.6rem;
  }

  .heading-style-h2-conf.no-shadow.smaller {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }

  .heading-style-h2-conf.no-shadow.larger {
    font-size: 3rem;
    line-height: 3.4rem;
  }

  .heading-style-h2-conf.no-shadow.larger.text-color-white {
    background-color: #0000;
    margin-bottom: 2rem;
    font-size: 2.6rem;
    line-height: 3rem;
  }

  .heading-style-h2-conf.text-color-white {
    font-size: 2.5rem;
    line-height: 2.6rem;
  }

  .heading-style-h2-conf.smaller {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }

  .text-size-medium-conf.alt-font.spacer-small {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }

  .text-size-medium-conf.spacer-small.align-center {
    letter-spacing: .5px;
  }

  .text-size-medium-conf.text-color-black.text-align-left.larger {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .text-block-147 {
    opacity: 100;
    top: -50%;
  }

  .text-block-150 {
    font-size: 1rem;
    line-height: 1.2;
  }

  .expand-bio-block {
    padding: 0 1.5rem 1.5rem;
  }

  .text-span-30 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }

  .text-span-30.bigger {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .hero-headline-block {
    margin-bottom: 1.5rem;
  }

  .heading-26 {
    font-size: 2.6rem;
    line-height: 2.8rem;
  }

  .heading-27 {
    font-size: 2rem;
    line-height: 2.3rem;
  }

  .hero-sub-text-2 {
    margin-top: .25rem;
  }

  .hero-sub-text-2.larger {
    font-size: 1.25rem;
    line-height: 1.65rem;
  }
}

#w-node-_5a21d08b-02de-d4a1-9af6-b02f31535346-d95e0186 {
  justify-self: center;
}

#w-node-_5a21d08b-02de-d4a1-9af6-b02f3153535a-d95e0186 {
  justify-self: end;
}

#w-node-_592b6b56-7118-5e18-27a8-df2d5cb92cfc-d95e0186 {
  align-self: start;
}

#w-node-bbd75fed-6fb3-debc-b268-8410cae85384-d95e0186, #w-node-fbb5262f-94d4-ea37-481c-d73fc6da1889-d95e0186 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-fbb5262f-94d4-ea37-481c-d73fc6da189c-d95e0186 {
  justify-self: start;
}

#w-node-fbb5262f-94d4-ea37-481c-d73fc6da189f-d95e0186 {
  justify-self: end;
}

#w-node-_20cb4b0c-41a3-a5e9-84be-93daa803f969-d95e0186 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_20cb4b0c-41a3-a5e9-84be-93daa803f973-d95e0186 {
  justify-self: start;
}

#w-node-_20cb4b0c-41a3-a5e9-84be-93daa803f975-d95e0186 {
  justify-self: end;
}

#w-node-_7fcdb575-1a9c-43d5-a10c-64cdfed9f6ce-d95e0186 {
  justify-self: start;
}

#w-node-_33f3a436-5b0a-def9-8e05-437a7aeb4f75-d95e0186 {
  justify-self: end;
}

#w-node-cb83d75a-6faf-686f-3212-f2d29a31535d-d95e0186 {
  justify-self: start;
}

#w-node-cb83d75a-6faf-686f-3212-f2d29a315361-d95e0186 {
  justify-self: end;
}

#w-node-df932e87-3f43-dd95-a35e-42d06a4658f7-d95e0186 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3caab71e-b960-1f2a-b88a-701d1e640cb5-d95e0186, #w-node-_3caab71e-b960-1f2a-b88a-701d1e640cc4-d95e0186, #w-node-_3caab71e-b960-1f2a-b88a-701d1e640ce2-d95e0186, #w-node-a21d6996-987a-0809-3099-923bcdb69902-d95e0186, #w-node-a21d6996-987a-0809-3099-923bcdb69913-d95e0186, #w-node-a21d6996-987a-0809-3099-923bcdb69938-d95e0186 {
  align-self: stretch;
}

#w-node-b4417a1b-9bb1-2213-aef9-a238447dd2bb-d95e0186 {
  justify-self: start;
}

#w-node-b4417a1b-9bb1-2213-aef9-a238447dd2b9-d95e0186 {
  justify-self: end;
}

#w-node-_29fda6e8-37cd-6747-8ebf-7334407cef73-d95e0186 {
  justify-self: start;
}

#w-node-_29fda6e8-37cd-6747-8ebf-7334407cef75-d95e0186 {
  justify-self: end;
}

#w-node-_10e64d89-d737-9ca7-9ec1-6a62f666a878-d95e0186 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a98075a5-e190-77a0-9777-663c363cb94c-d95e0186, #w-node-a98075a5-e190-77a0-9777-663c363cb94a-d95e0186, #w-node-_5bec80f7-c4f0-5bac-e08c-eee5f0a2985c-d95e0186 {
  justify-self: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#w-node-aceb9adc-ab11-ae9c-832d-ba0cb63794ca-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-aceb9adc-ab11-ae9c-832d-ba0cb63794cb-d95e0189 {
  justify-self: start;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#w-node-efe47a2c-71a3-58fc-52e2-5719cef52200-d95e0189, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55803-d95e0189, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55804-d95e0189, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55805-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4992825b-ed2c-cb01-ffba-02b107e55806-d95e0189 {
  justify-self: start;
}

#w-node-_4992825b-ed2c-cb01-ffba-02b107e55808-d95e0189, #w-node-_4992825b-ed2c-cb01-ffba-02b107e5580b-d95e0189, #w-node-_4992825b-ed2c-cb01-ffba-02b107e5580f-d95e0189, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55810-d95e0189, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55811-d95e0189, #w-node-_4992825b-ed2c-cb01-ffba-02b107e5581a-d95e0189, #w-node-_4992825b-ed2c-cb01-ffba-02b107e5581b-d95e0189, #w-node-_4992825b-ed2c-cb01-ffba-02b107e5581c-d95e0189, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55825-d95e0189, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55826-d95e0189, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55827-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4992825b-ed2c-cb01-ffba-02b107e55828-d95e0189 {
  justify-self: start;
}

#w-node-_4992825b-ed2c-cb01-ffba-02b107e5582e-d95e0189, #w-node-_4992825b-ed2c-cb01-ffba-02b107e5582f-d95e0189, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55830-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4992825b-ed2c-cb01-ffba-02b107e55831-d95e0189 {
  justify-self: start;
}

#w-node-_4992825b-ed2c-cb01-ffba-02b107e55833-d95e0189, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55837-d95e0189, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55838-d95e0189, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55839-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4992825b-ed2c-cb01-ffba-02b107e5583a-d95e0189, #w-node-_4992825b-ed2c-cb01-ffba-02b107e5583c-d95e0189 {
  justify-self: start;
}

#w-node-_4a155e2a-eb56-5e64-2ca9-d86b21d2d284-d95e0189, #w-node-_4a155e2a-eb56-5e64-2ca9-d86b21d2d285-d95e0189, #w-node-a9020bef-146e-1178-2cc2-7b5aa4506421-d95e0189, #w-node-a9020bef-146e-1178-2cc2-7b5aa4506422-d95e0189, #w-node-_0c03b128-114e-b839-dd05-3a93ee2fd443-d95e0189, #w-node-_0c03b128-114e-b839-dd05-3a93ee2fd444-d95e0189, #w-node-_0c03b128-114e-b839-dd05-3a93ee2fd44a-d95e0189, #w-node-_0c03b128-114e-b839-dd05-3a93ee2fd44b-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369290-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369294-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b0-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b1-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b3-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b4-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b6-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b7-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b9-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ba-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bc-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bd-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bf-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c0-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c2-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c3-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c5-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c6-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c8-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c9-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cb-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cc-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ce-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cf-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d1-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d2-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d4-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d5-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d7-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d8-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693da-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693db-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693dd-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693de-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e0-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e1-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e3-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e4-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e6-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e7-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e9-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ea-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ec-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ed-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ef-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f0-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f2-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f3-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f5-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f6-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f8-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f9-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fb-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fc-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fe-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ff-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369401-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369402-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369404-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369405-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369407-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369408-d95e0189, #w-node-aba73718-5f03-827e-9e0b-61449dc1d37c-d95e0189, #w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448f8-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448f9-d95e0189 {
  justify-self: start;
}

#w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448fb-d95e0189, #w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448fc-d95e0189, #w-node-_16994295-7a31-57da-1001-8ec0ea846a1e-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_16994295-7a31-57da-1001-8ec0ea846a1f-d95e0189 {
  justify-self: start;
}

#w-node-_16994295-7a31-57da-1001-8ec0ea846a21-d95e0189, #w-node-_16994295-7a31-57da-1001-8ec0ea846a22-d95e0189, #w-node-_8f691932-76bb-1979-3d19-a80adf0a25f2-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8f691932-76bb-1979-3d19-a80adf0a25f3-d95e0189 {
  justify-self: start;
}

#w-node-_8f691932-76bb-1979-3d19-a80adf0a25f5-d95e0189, #w-node-_8f691932-76bb-1979-3d19-a80adf0a25f6-d95e0189, #w-node-f28919c2-e180-d075-d1c2-81b601b8a964-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f28919c2-e180-d075-d1c2-81b601b8a965-d95e0189 {
  justify-self: start;
}

#w-node-f28919c2-e180-d075-d1c2-81b601b8a967-d95e0189, #w-node-f28919c2-e180-d075-d1c2-81b601b8a968-d95e0189, #w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b3-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b4-d95e0189 {
  justify-self: start;
}

#w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b6-d95e0189, #w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b7-d95e0189, #w-node-ee961e8d-845a-edc3-3307-509470022457-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee961e8d-845a-edc3-3307-509470022458-d95e0189 {
  justify-self: start;
}

#w-node-ee961e8d-845a-edc3-3307-50947002245a-d95e0189, #w-node-ee961e8d-845a-edc3-3307-50947002245b-d95e0189, #w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e1-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e2-d95e0189 {
  justify-self: start;
}

#w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e4-d95e0189, #w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e5-d95e0189, #w-node-_626bd165-37fe-b21e-713f-accb16c57414-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_626bd165-37fe-b21e-713f-accb16c57415-d95e0189 {
  justify-self: start;
}

#w-node-_626bd165-37fe-b21e-713f-accb16c57417-d95e0189, #w-node-_626bd165-37fe-b21e-713f-accb16c57418-d95e0189, #w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f40-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f41-d95e0189 {
  justify-self: start;
}

#w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f43-d95e0189, #w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f44-d95e0189, #w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee5-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee6-d95e0189 {
  justify-self: start;
}

#w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee8-d95e0189, #w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee9-d95e0189, #w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe33-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe34-d95e0189 {
  justify-self: start;
}

#w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe36-d95e0189, #w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe37-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fa-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fe-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694ff-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369503-d95e0189, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369505-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369506-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950a-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950b-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950f-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369510-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369514-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369515-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369519-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951a-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951e-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951f-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369523-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369524-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369528-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369529-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952d-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952e-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369532-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369533-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953a-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953b-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953f-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369540-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369544-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369545-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369549-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954a-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954e-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954f-d95e0189 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369553-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369554-d95e0189 {
  justify-self: start;
}

#w-node-de8106d9-b098-80e3-076c-80f3a0fa5e54-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-de8106d9-b098-80e3-076c-80f3a0fa5e55-d95e0189 {
  justify-self: start;
}

#w-node-_680345d6-d141-aefc-5e81-01faad69a792-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_680345d6-d141-aefc-5e81-01faad69a793-d95e0189 {
  justify-self: start;
}

#w-node-dc962921-5c74-5687-77a4-c1371012b297-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dc962921-5c74-5687-77a4-c1371012b298-d95e0189 {
  justify-self: start;
}

#w-node-bbf5f4a2-0660-a8f8-7799-a71df583db57-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bbf5f4a2-0660-a8f8-7799-a71df583db58-d95e0189 {
  justify-self: start;
}

#w-node-_723dac19-3a6b-8f5e-89ce-53b9006ba92c-d95e0189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_723dac19-3a6b-8f5e-89ce-53b9006ba92d-d95e0189 {
  justify-self: start;
}

#w-node-_06bd9f8c-23d1-5078-085b-f1ee0cd3fd12-0cd3fd0c, #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc0009a-d95e018d {
  justify-self: center;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc000ae-d95e018d {
  justify-self: end;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc000c3-d95e018d {
  align-self: start;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc000da-d95e018d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc000e2-d95e018d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00102-d95e018d {
  justify-self: start;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00106-d95e018d {
  justify-self: end;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00157-d95e018d {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00158-d95e018d {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc0015a-d95e018d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc001d8-d95e018d, #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc001e9-d95e018d, #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc0020e-d95e018d {
  align-self: stretch;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00235-d95e018d {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00236-d95e018d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc0023b-d95e018d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00250-d95e018d {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00251-d95e018d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00256-d95e018d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00267-d95e018d {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00268-d95e018d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc0026d-d95e018d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc0027a-d95e018d {
  grid-area: 4 / 2 / 5 / 4;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc0027b-d95e018d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00280-d95e018d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc0028a-d95e018d {
  grid-area: 5 / 1 / 6 / 3;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc0028b-d95e018d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00290-d95e018d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc002a0-d95e018d {
  grid-area: 6 / 2 / 7 / 4;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc002a1-d95e018d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc002a6-d95e018d, #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc0030c-d95e018d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00377-d95e018d, #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00388-d95e018d, #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc003ad-d95e018d {
  align-self: stretch;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc003d7-d95e018d {
  justify-self: start;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc003d9-d95e018d {
  justify-self: end;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc003ee-d95e018d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00417-d95e018d, #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc005ae-d95e018d {
  justify-self: center;
}

#w-node-_316a6cb4-6c5c-2eb5-b85d-509a01c33bd8-3ace7978 {
  align-self: start;
}

#w-node-_316a6cb4-6c5c-2eb5-b85d-509a01c33c2c-3ace7978 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_316a6cb4-6c5c-2eb5-b85d-509a01c33c38-3ace7978 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_316a6cb4-6c5c-2eb5-b85d-509a01c33c3d-3ace7978 {
  align-self: start;
}

#w-node-_316a6cb4-6c5c-2eb5-b85d-509a01c33c8e-3ace7978 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_316a6cb4-6c5c-2eb5-b85d-509a01c33c9e-3ace7978 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_316a6cb4-6c5c-2eb5-b85d-509a01c33da1-3ace7978 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_316a6cb4-6c5c-2eb5-b85d-509a01c33da2-3ace7978 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_316a6cb4-6c5c-2eb5-b85d-509a01c33da4-3ace7978, #w-node-_5bc7912b-2a25-5d1d-c981-4491f6a7e6ab-3ace7978 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_316a6cb4-6c5c-2eb5-b85d-509a01c34214-3ace7978, #w-node-_77be8114-b0f2-3a53-1643-fc2de8c06649-e8c06621 {
  justify-self: center;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c0665d-e8c06621 {
  justify-self: end;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c06672-e8c06621 {
  align-self: start;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c06689-e8c06621 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c06691-e8c06621 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c066b1-e8c06621 {
  justify-self: start;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c066b5-e8c06621 {
  justify-self: end;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c06706-e8c06621 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c06707-e8c06621 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c06709-e8c06621 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c06787-e8c06621, #w-node-_77be8114-b0f2-3a53-1643-fc2de8c06798-e8c06621, #w-node-_77be8114-b0f2-3a53-1643-fc2de8c067bd-e8c06621 {
  align-self: stretch;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c067e4-e8c06621 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c067e5-e8c06621 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c067ea-e8c06621 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c067ff-e8c06621 {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c06800-e8c06621 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c06805-e8c06621 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c06816-e8c06621 {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c06817-e8c06621 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c0681c-e8c06621 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c06829-e8c06621 {
  grid-area: 4 / 2 / 5 / 4;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c0682a-e8c06621 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c0682f-e8c06621 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c06839-e8c06621 {
  grid-area: 5 / 1 / 6 / 3;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c0683a-e8c06621 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c0683f-e8c06621 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c0684f-e8c06621 {
  grid-area: 6 / 2 / 7 / 4;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c06850-e8c06621 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c06855-e8c06621, #w-node-_77be8114-b0f2-3a53-1643-fc2de8c068bb-e8c06621 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c06926-e8c06621, #w-node-_77be8114-b0f2-3a53-1643-fc2de8c06937-e8c06621, #w-node-_77be8114-b0f2-3a53-1643-fc2de8c0695c-e8c06621 {
  align-self: stretch;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c06986-e8c06621 {
  justify-self: start;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c06988-e8c06621 {
  justify-self: end;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c0699d-e8c06621 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_77be8114-b0f2-3a53-1643-fc2de8c069c6-e8c06621, #w-node-_77be8114-b0f2-3a53-1643-fc2de8c06b5d-e8c06621 {
  justify-self: center;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab653-447b2385 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab654-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab659-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab66b-447b2385 {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab66c-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab671-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab682-447b2385 {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab683-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab688-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab697-447b2385 {
  grid-area: 4 / 2 / 5 / 4;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab698-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab69d-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab6a7-447b2385 {
  grid-area: 5 / 1 / 6 / 3;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab6a8-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab6ad-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab6c0-447b2385 {
  grid-area: 6 / 2 / 7 / 4;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab6c1-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab6c6-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab718-447b2385 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab719-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab71e-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab72d-447b2385 {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab72e-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab733-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab744-447b2385 {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab745-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab74a-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab759-447b2385 {
  grid-area: 4 / 2 / 5 / 4;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab75a-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab75f-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab769-447b2385 {
  grid-area: 5 / 1 / 6 / 3;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab76a-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab76f-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab781-447b2385 {
  grid-area: 6 / 2 / 7 / 4;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab782-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab787-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6881159c-7af4-3d05-b951-c6083166fc09-447b2385 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_6881159c-7af4-3d05-b951-c6083166fc0a-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_6881159c-7af4-3d05-b951-c6083166fc0f-447b2385, #w-node-_311f88d4-89c2-5241-0bbf-178a9e73cd24-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6881159c-7af4-3d05-b951-c6083166fc21-447b2385 {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-_6881159c-7af4-3d05-b951-c6083166fc22-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_6881159c-7af4-3d05-b951-c6083166fc27-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6881159c-7af4-3d05-b951-c6083166fc38-447b2385 {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-_6881159c-7af4-3d05-b951-c6083166fc39-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_6881159c-7af4-3d05-b951-c6083166fc3e-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6881159c-7af4-3d05-b951-c6083166fc4d-447b2385 {
  grid-area: 4 / 2 / 5 / 4;
}

#w-node-_6881159c-7af4-3d05-b951-c6083166fc4e-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_6881159c-7af4-3d05-b951-c6083166fc53-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6881159c-7af4-3d05-b951-c6083166fc5d-447b2385 {
  grid-area: 5 / 1 / 6 / 3;
}

#w-node-_6881159c-7af4-3d05-b951-c6083166fc5e-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_6881159c-7af4-3d05-b951-c6083166fc63-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6881159c-7af4-3d05-b951-c6083166fc76-447b2385 {
  grid-area: 6 / 2 / 7 / 4;
}

#w-node-_6881159c-7af4-3d05-b951-c6083166fc77-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_6881159c-7af4-3d05-b951-c6083166fc7c-447b2385, #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab7ee-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab859-447b2385, #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab86a-447b2385, #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab88f-447b2385 {
  align-self: stretch;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab8b9-447b2385 {
  justify-self: start;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab8bb-447b2385 {
  justify-self: end;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab8d0-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab901-447b2385 {
  justify-self: center;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab94c-447b2385 {
  grid-area: 1 / 2 / 2 / 6;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab94e-447b2385 {
  justify-self: center;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab961-447b2385 {
  grid-area: 2 / 3 / 3 / 5;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab975-447b2385 {
  grid-area: 1 / 6 / 3 / 7;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab977-447b2385 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab97a-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab9a1-447b2385 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173abb48-447b2385 {
  justify-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_592b6b56-7118-5e18-27a8-df2d5cb92cfc-d95e0186 {
    grid-area: span 2 / span 2 / span 2 / span 2;
    place-self: start;
  }

  #w-node-_592b6b56-7118-5e18-27a8-df2d5cb92d08-d95e0186 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-fbb5262f-94d4-ea37-481c-d73fc6da1889-d95e0186 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-fbb5262f-94d4-ea37-481c-d73fc6da189c-d95e0186, #w-node-fbb5262f-94d4-ea37-481c-d73fc6da189f-d95e0186 {
    justify-self: center;
  }

  #w-node-_20cb4b0c-41a3-a5e9-84be-93daa803f969-d95e0186 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_20cb4b0c-41a3-a5e9-84be-93daa803f973-d95e0186, #w-node-_20cb4b0c-41a3-a5e9-84be-93daa803f975-d95e0186, #w-node-_33f3a436-5b0a-def9-8e05-437a7aeb4f75-d95e0186, #w-node-cb83d75a-6faf-686f-3212-f2d29a315361-d95e0186, #w-node-b4417a1b-9bb1-2213-aef9-a238447dd2bb-d95e0186, #w-node-b4417a1b-9bb1-2213-aef9-a238447dd2b9-d95e0186, #w-node-_29fda6e8-37cd-6747-8ebf-7334407cef73-d95e0186, #w-node-_29fda6e8-37cd-6747-8ebf-7334407cef75-d95e0186, #w-node-_5bec80f7-c4f0-5bac-e08c-eee5f0a2985c-d95e0186, #w-node-_06bd9f8c-23d1-5078-085b-f1ee0cd3fd12-0cd3fd0c {
    justify-self: center;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc000c3-d95e018d {
    grid-area: span 2 / span 2 / span 2 / span 2;
    place-self: start;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc000da-d95e018d {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00106-d95e018d {
    justify-self: center;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00158-d95e018d {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00235-d95e018d {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00250-d95e018d {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00267-d95e018d {
    grid-column-end: 4;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc0027a-d95e018d {
    grid-area: 4 / 1 / 5 / 4;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc0028a-d95e018d {
    grid-column-end: 4;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc002a0-d95e018d {
    grid-area: 6 / 1 / 7 / 4;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc002c1-d95e018d, #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc002ce-d95e018d, #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc002db-d95e018d {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc003d7-d95e018d, #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc003d9-d95e018d, #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00417-d95e018d, #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc005ae-d95e018d {
    justify-self: center;
  }

  #w-node-_316a6cb4-6c5c-2eb5-b85d-509a01c33bd8-3ace7978 {
    grid-area: span 2 / span 2 / span 2 / span 2;
    place-self: start;
  }

  #w-node-_316a6cb4-6c5c-2eb5-b85d-509a01c33c2c-3ace7978 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_316a6cb4-6c5c-2eb5-b85d-509a01c33c3d-3ace7978 {
    grid-area: span 2 / span 2 / span 2 / span 2;
    place-self: start;
  }

  #w-node-_316a6cb4-6c5c-2eb5-b85d-509a01c33c8e-3ace7978 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_316a6cb4-6c5c-2eb5-b85d-509a01c33da2-3ace7978 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_316a6cb4-6c5c-2eb5-b85d-509a01c34214-3ace7978 {
    justify-self: center;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c06672-e8c06621 {
    grid-area: span 2 / span 2 / span 2 / span 2;
    place-self: start;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c06689-e8c06621 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c066b5-e8c06621 {
    justify-self: center;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c06707-e8c06621 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c067e4-e8c06621 {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c067ff-e8c06621 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c06816-e8c06621 {
    grid-column-end: 4;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c06829-e8c06621 {
    grid-area: 4 / 1 / 5 / 4;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c06839-e8c06621 {
    grid-column-end: 4;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c0684f-e8c06621 {
    grid-area: 6 / 1 / 7 / 4;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c06870-e8c06621, #w-node-_77be8114-b0f2-3a53-1643-fc2de8c0687d-e8c06621, #w-node-_77be8114-b0f2-3a53-1643-fc2de8c0688a-e8c06621 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c06986-e8c06621, #w-node-_77be8114-b0f2-3a53-1643-fc2de8c06988-e8c06621, #w-node-_77be8114-b0f2-3a53-1643-fc2de8c069c6-e8c06621, #w-node-_77be8114-b0f2-3a53-1643-fc2de8c06b5d-e8c06621 {
    justify-self: center;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab653-447b2385 {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab66b-447b2385 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab682-447b2385 {
    grid-column-end: 4;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab697-447b2385 {
    grid-area: 4 / 1 / 5 / 4;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab6a7-447b2385 {
    grid-column-end: 4;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab6c0-447b2385 {
    grid-area: 6 / 1 / 7 / 4;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab6e3-447b2385, #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab6f0-447b2385, #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab6fd-447b2385 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab718-447b2385 {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab72d-447b2385 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab744-447b2385 {
    grid-column-end: 4;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab759-447b2385 {
    grid-area: 4 / 1 / 5 / 4;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab769-447b2385 {
    grid-column-end: 4;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab781-447b2385 {
    grid-area: 6 / 1 / 7 / 4;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab7a3-447b2385, #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab7b0-447b2385, #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab7bd-447b2385 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-_6881159c-7af4-3d05-b951-c6083166fc09-447b2385 {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-_6881159c-7af4-3d05-b951-c6083166fc21-447b2385 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_6881159c-7af4-3d05-b951-c6083166fc38-447b2385 {
    grid-column-end: 4;
  }

  #w-node-_6881159c-7af4-3d05-b951-c6083166fc4d-447b2385 {
    grid-area: 4 / 1 / 5 / 4;
  }

  #w-node-_6881159c-7af4-3d05-b951-c6083166fc5d-447b2385 {
    grid-column-end: 4;
  }

  #w-node-_6881159c-7af4-3d05-b951-c6083166fc76-447b2385 {
    grid-area: 6 / 1 / 7 / 4;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab8b9-447b2385, #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab8bb-447b2385, #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab901-447b2385, #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173abb48-447b2385 {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-fbb5262f-94d4-ea37-481c-d73fc6da189f-d95e0186, #w-node-_20cb4b0c-41a3-a5e9-84be-93daa803f975-d95e0186, #w-node-_33f3a436-5b0a-def9-8e05-437a7aeb4f75-d95e0186, #w-node-cb83d75a-6faf-686f-3212-f2d29a315361-d95e0186, #w-node-b4417a1b-9bb1-2213-aef9-a238447dd2bb-d95e0186, #w-node-b4417a1b-9bb1-2213-aef9-a238447dd2b9-d95e0186, #w-node-_29fda6e8-37cd-6747-8ebf-7334407cef73-d95e0186, #w-node-_29fda6e8-37cd-6747-8ebf-7334407cef75-d95e0186, #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00106-d95e018d, #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc003d7-d95e018d, #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc003d9-d95e018d, #w-node-_77be8114-b0f2-3a53-1643-fc2de8c066b5-e8c06621, #w-node-_77be8114-b0f2-3a53-1643-fc2de8c06986-e8c06621, #w-node-_77be8114-b0f2-3a53-1643-fc2de8c06988-e8c06621 {
    justify-self: center;
  }

  #w-node-_6881159c-7af4-3d05-b951-c6083166fc0a-447b2385 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-_311f88d4-89c2-5241-0bbf-178a9e73cd24-447b2385 {
    grid-area: 2 / 2 / 3 / 2;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab8b9-447b2385, #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab8bb-447b2385 {
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_3389a2a8-e43f-1dd3-2f58-e3659dfec228-d95e0186 {
    align-self: start;
  }

  #w-node-_0a925534-65f8-7480-b9a3-bb607bf8ad5f-d95e0186 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fbb5262f-94d4-ea37-481c-d73fc6da189c-d95e0186, #w-node-_20cb4b0c-41a3-a5e9-84be-93daa803f973-d95e0186, #w-node-_7fcdb575-1a9c-43d5-a10c-64cdfed9f6ce-d95e0186 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_33f3a436-5b0a-def9-8e05-437a7aeb4f75-d95e0186 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
  }

  #w-node-cb83d75a-6faf-686f-3212-f2d29a31535d-d95e0186 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-cb83d75a-6faf-686f-3212-f2d29a315361-d95e0186 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
  }

  #w-node-b4417a1b-9bb1-2213-aef9-a238447dd2bb-d95e0186, #w-node-_29fda6e8-37cd-6747-8ebf-7334407cef73-d95e0186 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_10e64d89-d737-9ca7-9ec1-6a62f666a884-d95e0186 {
    align-self: start;
  }

  #w-node-_5bec80f7-c4f0-5bac-e08c-eee5f0a2985c-d95e0186, #w-node-_06bd9f8c-23d1-5078-085b-f1ee0cd3fd12-0cd3fd0c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00078-d95e018d {
    align-self: start;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00080-d95e018d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00102-d95e018d {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00106-d95e018d {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc0015a-d95e018d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00235-d95e018d {
    grid-column-end: 4;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00236-d95e018d {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc0023b-d95e018d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00256-d95e018d {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc0026d-d95e018d {
    grid-column: span 2 / span 2;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00280-d95e018d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc00290-d95e018d, #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc002a6-d95e018d {
    grid-column: span 2 / span 2;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc003d7-d95e018d {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_91bd3628-4a00-d9bf-867b-d87d4cc005ae-d95e018d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_316a6cb4-6c5c-2eb5-b85d-509a01c33da4-3ace7978, #w-node-_5bc7912b-2a25-5d1d-c981-4491f6a7e6ab-3ace7978 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_316a6cb4-6c5c-2eb5-b85d-509a01c34214-3ace7978 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c06627-e8c06621 {
    align-self: start;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c0662f-e8c06621 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c066b1-e8c06621 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c066b5-e8c06621 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c06709-e8c06621 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c067e4-e8c06621 {
    grid-column-end: 4;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c067e5-e8c06621 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c067ea-e8c06621 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c06805-e8c06621 {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c0681c-e8c06621 {
    grid-column: span 2 / span 2;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c0682f-e8c06621 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c0683f-e8c06621, #w-node-_77be8114-b0f2-3a53-1643-fc2de8c06855-e8c06621 {
    grid-column: span 2 / span 2;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c06986-e8c06621 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_77be8114-b0f2-3a53-1643-fc2de8c06b5d-e8c06621 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab653-447b2385 {
    grid-column-end: 4;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab654-447b2385 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab659-447b2385 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab671-447b2385 {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab688-447b2385 {
    grid-column: span 2 / span 2;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab69d-447b2385 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab6ad-447b2385, #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab6c6-447b2385 {
    grid-column: span 2 / span 2;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab718-447b2385 {
    grid-column-end: 4;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab719-447b2385 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab71e-447b2385 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab733-447b2385 {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab74a-447b2385 {
    grid-column: span 2 / span 2;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab75f-447b2385 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab76f-447b2385, #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab787-447b2385 {
    grid-column: span 2 / span 2;
  }

  #w-node-_6881159c-7af4-3d05-b951-c6083166fc09-447b2385 {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-_6881159c-7af4-3d05-b951-c6083166fc0a-447b2385 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-_6881159c-7af4-3d05-b951-c6083166fc0f-447b2385, #w-node-_311f88d4-89c2-5241-0bbf-178a9e73cd24-447b2385 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_6881159c-7af4-3d05-b951-c6083166fc27-447b2385 {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_6881159c-7af4-3d05-b951-c6083166fc3e-447b2385 {
    grid-column: span 2 / span 2;
  }

  #w-node-_6881159c-7af4-3d05-b951-c6083166fc53-447b2385 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_6881159c-7af4-3d05-b951-c6083166fc63-447b2385, #w-node-_6881159c-7af4-3d05-b951-c6083166fc7c-447b2385 {
    grid-column: span 2 / span 2;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173ab8b9-447b2385 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_7a4ed5fa-c2fd-1e02-3638-5cef173abb48-447b2385 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Brands 400';
  src: url('../fonts/fa-brands-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Solid 900';
  src: url('../fonts/fa-solid-900.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}