:root {
  --base-color-brand--white: white;
  --link-color--link-primary: var(--base-color-neutral--black);
  --text-color--text-primary: var(--base-color-neutral--black);
  --border-color--border-primary: var(--base-color-neutral--black);
  --base-color-brand--black: black;
  --base-color-neutral--black: black;
  --base-color-neutral--white: white;
  --brand--yellow: #ecf550;
  --black-archive\<deleted\|variable-dccb7db6\>: black;
  --background-color--background-tertiary: var(--base-color-neutral--neutral-light);
  --link-color--link-alternate: var(--base-color-neutral--white);
  --background-color--background-primary: var(--base-color-neutral--white);
  --background-color--background-secondary: var(--base-color-neutral--neutral-lightest);
  --background-color--background-alternate: var(--base-color-neutral--black);
  --text-color--text-alternate: var(--base-color-neutral--white);
  --text-color--text-secondary: var(--base-color-neutral--black);
  --background-color--background-success: var(--base-color-system--success-green-light);
  --text-color--text-success: var(--base-color-system--success-green);
  --background-color--background-error: var(--base-color-system--error-red-light);
  --text-color--text-error: var(--base-color-system--error-red);
  --boarder-color--yellow: #ac9070;
  --border-color--border-secondary: var(--base-color-neutral--neutral-light);
  --border-width--regular: 1px;
  --base-color-neutral--neutral-darkest: #111;
  --base-color-neutral--neutral-lightest: #eee;
  --base-color-neutral--neutral-lighter: #ccc;
  --base-color-neutral--neutral-light: #aaa;
  --base-color-neutral--neutral: #666;
  --base-color-neutral--neutral-dark: #444;
  --base-color-neutral--neutral-darker: #222;
  --base-color-system--success-green: #027a48;
  --base-color-system--success-green-light: #ecfdf3;
  --base-color-system--error-red: #b42318;
  --base-color-system--error-red-light: #fef3f2;
  --border-color--border-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 {
  color: var(--base-color-brand--white);
  background-color: #000;
  font-family: ibm-plex-mono, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: covik-sans-mono, sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: covik-sans-mono, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: covik-sans-mono, sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  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-family: covik-sans-mono, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: covik-sans-mono, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}

p {
  margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.overflow-hidden {
  overflow: hidden;
}

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

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

.hide {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.margin-xsmall {
  margin: 1rem;
}

.margin-small {
  margin: 1.5rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-large {
  margin: 3rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-huge {
  margin: 6rem;
}

.margin-xhuge {
  margin: 7rem;
}

.margin-xxhuge {
  margin: 10rem;
}

.margin-0 {
  margin: 0;
}

.padding-0 {
  padding: 0;
}

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

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

.padding-xsmall {
  padding: 1rem;
}

.padding-small {
  padding: 1.5rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-large {
  padding: 3rem;
}

.padding-xlarge {
  padding: 4rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.padding-huge {
  padding: 6rem;
}

.padding-xhuge {
  padding: 7rem;
}

.padding-xxhuge {
  padding: 10rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

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

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

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

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

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

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

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

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

.rl-styleguide_heading {
  z-index: 4;
  margin-bottom: 1.5rem;
  padding: .25rem .5rem;
  font-family: covik-sans-mono, sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
}

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

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

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

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

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

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

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

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

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

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

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

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

.form_checkbox-icon {
  border: 1px solid var(--border-color--border-primary);
  cursor: pointer;
  border-radius: 0;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: .5rem;
  transition: all .2s;
}

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

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

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

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

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

.button {
  color: var(--base-color-brand--black);
  text-align: center;
  text-transform: uppercase;
  background-color: #edf54f;
  border: 1px solid #ecf55000;
  flex: 1;
  padding: .75rem 1.5rem;
  font-weight: 500;
  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 {
  border-color: var(--brand--yellow);
  color: var(--brand--yellow);
  background-color: #0000;
}

.button.is-secondary.is-alternate {
  border-color: var(--brand--yellow);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--base-color-neutral--white);
  background-color: #0000;
  flex: 0 auto;
}

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

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

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

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

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

.button.is-navbar16-button {
  z-index: 1;
  padding-top: .5rem;
  padding-bottom: .5rem;
  position: relative;
}

.button.is-hero-secondary {
  color: #edf54f;
  background-color: #edf54f00;
  border-color: #ecf550;
  flex: 1;
}

.button.is-hero-secondary:hover {
  color: #fff;
  background-color: #edf54f36;
}

.button.navbar16_menu-button {
  padding-left: .4rem;
  padding-right: .4rem;
}

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

.heading-style-h4 {
  font-size: 2rem;
  font-weight: 300;
  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: #be4aa51a;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rl-styleguide_subheading {
  z-index: 3;
  background-color: var(--background-color--background-tertiary);
  border-radius: .75rem;
  margin-bottom: 1rem;
  padding: 1rem;
  font-family: covik-sans-mono, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

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

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

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

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

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

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

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

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

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

.text-align-center.lift {
  z-index: 2;
  position: relative;
}

.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 figcaption {
  border-left: 2px solid var(--text-color--text-primary);
  text-align: left;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.rl-styleguide_empty-box {
  z-index: -1;
  background-color: #eee;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rl-styleguide_nav {
  z-index: 1000;
  background-color: #161616;
  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 {
  color: var(--link-color--link-primary);
  background-color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

.rl-styleguide_ratio-bg {
  z-index: -1;
  background-color: #eee;
  min-width: 3rem;
  height: 100%;
  position: relative;
}

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

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

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

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

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

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

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

.rl-styleguide_component {
  grid-column-gap: 0rem;
  color: #fff;
  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: contain;
  object-position: 50% 100%;
  width: 100%;
  max-width: 50rem;
  height: 100vh;
  max-height: 60rem;
}

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

.delete-this {
  background-image: url('../images/creative-currents-background.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
}

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

.menu-icon4_line-bottom {
  background-color: var(--base-color-brand--white);
  width: 24px;
  height: 2px;
}

.navbar16_social-list {
  grid-column-gap: .75rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-items: stretch;
  display: grid;
}

.navbar16_wrapper {
  grid-column-gap: 1rem;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.navbar16_logo-link {
  z-index: 1;
  padding-left: 0;
}

.menu-icon_line-middle-base {
  background-color: #fff;
  width: 24px;
  height: 2px;
  position: absolute;
}

.navbar16_link {
  color: var(--link-color--link-alternate);
  -webkit-text-stroke-color: var(--link-color--link-alternate);
  text-transform: uppercase;
  margin-top: .5rem;
  margin-bottom: .5rem;
  padding: .5rem 0;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  display: inline-block;
  position: static;
}

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

.navbar16_menu {
  background-color: var(--base-color-brand--black);
  background-image: url('../images/creative-currents-background.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  padding-left: 5%;
  padding-right: 5%;
  transition: height .5s;
  position: absolute;
  inset: 0% 0% auto;
  overflow: auto;
}

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

.navbar16_menu-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding-top: 4.5rem;
  display: flex;
  position: relative;
}

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

.navbar16_links-wrapper {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  display: flex;
}

.navbar16_menu-button {
  z-index: 1;
  padding: 0;
  position: relative;
}

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

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

.menu-icon4 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  position: relative;
}

.navbar16_bottom {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex: none;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 4.5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar16_container {
  z-index: 1;
  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_line-middle {
  background-color: var(--base-color-brand--white);
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 2px;
  margin-top: 6px;
  margin-bottom: 6px;
  display: flex;
}

.menu-icon_line-middle-top {
  z-index: 2;
  width: 24px;
  height: 2px;
  position: absolute;
  inset: 0;
}

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

.rl-styleguide_image_chat {
  object-fit: contain;
  object-position: 50% 50%;
  width: 100%;
  height: 80vh;
  position: relative;
}

.rl-styleguide_image-wrapper_chat {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.rl-styleguide_image_chat_component {
  object-fit: contain;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.content8_image-wrapper {
  flex: 1;
  width: 100%;
}

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

.section_content8 {
  color: var(--base-color-brand--white);
  background-image: url('../images/dots_background_orange.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.button-2 {
  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-2.is-secondary {
  color: var(--base-color-neutral--black);
  background-color: #0000;
}

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

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

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

.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_icon-wrappper {
  align-self: flex-start;
  width: 2rem;
  margin-left: 1.5rem;
  display: flex;
}

.section_faq4 {
  color: var(--text-color--text-alternate);
  background-image: url('../images/creative-currents-background.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.faq4_accordion {
  border: 1px solid var(--boarder-color--yellow);
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
  -webkit-text-stroke-color: var(--border-color--border-secondary);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

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

.html-embed {
  z-index: 23;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.highlight {
  color: #edf54f;
}

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

.pricing19_divider {
  background-color: var(--border-color--border-secondary);
  width: 100%;
  height: 1px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.pricing19_content {
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.pricing19_feature {
  display: flex;
}

.pricing19_plan {
  border: var(--border-width--regular) solid var(--link-color--link-alternate);
  outline-color: var(--link-color--link-alternate);
  outline-offset: 0px;
  background-image: radial-gradient(circle at 100% 0, #241649, #fff0), linear-gradient(#1a1a1a8f, #0000008a), url('../images/dots_background_orange.webp');
  background-position: 0 0, 0 0, 0 0;
  background-size: auto, auto, auto;
  outline-width: 1px;
  outline-style: solid;
  padding: 2rem;
}

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

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

.pricing19_content-top {
  flex-direction: column;
}

.pricing19_icon-wrapper {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 1rem;
  display: flex;
}

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

.body {
  background-color: #020202;
}

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

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

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

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

.text-rich-text-large p {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

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

.button-hero-primary {
  color: var(--base-color-brand--black);
  text-align: center;
  text-transform: uppercase;
  background-color: #edf54f;
  border: 1.2px solid #ecf55000;
  padding: .75rem 1.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: box-shadow .2s, border-color .2s, opacity .2s;
}

.button-hero-primary:hover {
  border-color: #fbffb1;
  box-shadow: 0 0 12px 2px #ecf550c9;
}

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

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

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

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

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

.button-hero-primary.is-secondary.is-alternate {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--base-color-neutral--white);
  background-color: #0000;
}

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

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

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

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

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

.button-hero-primary.is-navbar16-button {
  z-index: 1;
  padding-top: .5rem;
  padding-bottom: .5rem;
  position: relative;
}

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

.section_cta51 {
  color: var(--text-color--text-alternate);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: block;
  position: relative;
}

.cta51_card {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: #ecf5500d;
  border: 1px solid #ecf550;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4.2rem 4.4rem;
  display: flex;
}

.cta51_card.container-medium {
  border-color: var(--boarder-color--yellow);
  position: relative;
}

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

.heading-style-callout {
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1.2;
}

.loader4_progress-bar {
  background-color: var(--base-color-neutral--white);
  width: 20%;
  height: 100%;
}

.loader4_background-bottom {
  background-color: var(--base-color-neutral--neutral-darkest);
  height: 50%;
  position: absolute;
  inset: 50% 0% 0%;
}

.loader4_loading-animation {
  display: none;
}

.loader-4-instructions-delete {
  background-color: var(--base-color-neutral--neutral-lightest);
  text-align: left;
  padding: 2rem;
  display: block;
}

.loader4_instructions-callout-image {
  margin-top: 1.5rem;
}

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

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

.loader4_progress-background {
  background-color: var(--base-color-neutral--white);
  opacity: .25;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.loader4_progress-wrapper {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  width: 40%;
  display: flex;
  position: relative;
}

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

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

.loader4_progress {
  width: 100%;
  height: .25rem;
  position: relative;
}

.loader4_background-top {
  background-color: var(--base-color-neutral--neutral-darkest);
  height: 50%;
  position: absolute;
  inset: 0%;
}

.loader4_instructions-callout {
  background-color: #0000001a;
  align-items: center;
  padding: 1.5rem;
  line-height: 1.6;
}

.loader4_progress-content {
  justify-content: space-between;
  width: 100%;
  margin-top: .75rem;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.loader4_component {
  z-index: 9999;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.loader4_ix-trigger {
  width: 0;
  height: 0;
  display: none;
}

.loader4_text-wrapper {
  display: flex;
}

.loader-wrapper {
  min-height: 100vh;
}

.hero_component_wrapper {
  grid-column-gap: 0rem;
  color: #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  display: grid;
}

.hero_content {
  max-width: 35.9rem;
}

.hero-section {
  color: var(--text-color--text-alternate);
  background-image: url('../images/dots_background_grey.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: block;
  position: relative;
}

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

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

.layout360_image-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  position: relative;
}

.layout360_card {
  border: var(--border-width--regular) solid var(--boarder-color--yellow);
  outline-color: var(--boarder-color--yellow);
  outline-offset: 0px;
  outline-width: 1px;
  outline-style: solid;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: flex;
}

.layout360_card-content {
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  padding: 3rem;
  display: flex;
}

.section_layout360 {
  color: var(--text-color--text-alternate);
  -webkit-text-stroke-color: var(--base-color-brand--white);
}

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

.step {
  padding: 30px 0 0 42px;
  position: relative;
}

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

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

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

.layout387_card-small-content {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding: 2rem;
  display: flex;
}

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

.layout387_card-small {
  border: var(--border-width--regular) solid var(--boarder-color--yellow);
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: flex;
}

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

.steps-section-wrapper {
  border-left: var(--border-width--regular) dashed var(--boarder-color--yellow);
  margin-left: auto;
  margin-right: auto;
}

.step-label {
  border-top: var(--border-width--regular) dashed var(--boarder-color--yellow);
  border-right: var(--border-width--regular) dashed var(--boarder-color--yellow);
  border-bottom: var(--border-width--regular) dashed var(--boarder-color--yellow);
  padding: 3px 8px;
  display: inline-block;
  position: absolute;
  inset: 0% auto auto 0%;
}

.div-block {
  border: 1px solid var(--boarder-color--yellow);
  padding: 47px;
}

.image {
  opacity: .33;
  filter: blur(2px);
  object-fit: fill;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.heading-2 {
  font-family: covik-sans-mono, sans-serif;
  font-weight: 400;
}

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

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

.header15_image-wrapper {
  width: 100%;
}

.section_header15 {
  background-image: url('../images/creative-currents-background.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-embed-custom {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.icon-embed-custom-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.icon-embed-custom-3 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  display: flex;
}

.message {
  grid-column-gap: .5rem;
  opacity: 1;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: #7b6fd76b;
  border: 1px solid #877fa3;
  flex: none;
  align-items: center;
  margin-bottom: 20px;
  padding: 8px .6rem;
  display: flex;
}

.message.user_message {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: #9191976b;
  flex: none;
  padding-left: .6rem;
  padding-right: .6rem;
}

.message.button {
  color: var(--base-color-brand--white);
  background-color: #7b6fd700;
  border-color: #6359ad;
  flex: 1;
  justify-content: center;
}

.div-block-3 {
  flex-wrap: wrap;
  font-size: .7rem;
  display: flex;
}

.div-block-3.right {
  justify-content: flex-end;
  margin-right: -3vw;
}

.div-block-3.left {
  margin-left: -3vw;
  margin-right: -3vw;
}

.div-block-2-copy {
  background-color: #7582856b;
  border: 1px solid #6fc3d7;
  align-items: center;
  margin-bottom: 20px;
  padding: 17px 0;
  display: flex;
}

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

.div-block-2-copy {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  background-color: #7b6fd76b;
  border: 1px solid #7b6fd7;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  padding: 8px .6rem;
  display: flex;
}

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

.div-block-4 {
  flex: 0 auto;
}

.message_data {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  border: 1px dashed var(--brand--yellow);
  background-color: #0000006b;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  padding: 8px 1rem;
  display: flex;
}

.message_container {
  border: 1px solid var(--boarder-color--yellow);
  background-color: #000;
  padding: 16px;
  display: inline-block;
  position: relative;
  box-shadow: 0 2px 40px -6px #a79f8869;
}

.message_container.small {
  background-color: #170e2c;
  border-width: 4px;
  border-color: #3f3774;
  border-radius: 1.5rem;
  flex-direction: column;
  justify-content: space-around;
  width: 270px;
  padding-top: 32px;
  display: flex;
  box-shadow: 0 2px 40px -6px #413774;
}

.message_container.small.large {
  width: auto;
}

.div-block-5 {
  background-image: linear-gradient(#0000 71%, #000 95%);
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0% auto auto 0%;
}

.div-block-6 {
  display: flex;
}

.div-block-7 {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  background-image: radial-gradient(circle, #25174b, #41377400 59%);
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

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

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

.automation-wrapper {
  background-color: #160e2c;
  width: 100%;
  padding: 3rem 5.5rem;
}

.automation-card-wrapper {
  grid-column-gap: 14.471px;
  background-color: #413774;
  border: 1px solid #867fa3;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 10px 1rem;
  text-decoration: none;
  display: flex;
}

.automation-content-wrapper {
  grid-column-gap: 1rem;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

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

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

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

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

.connector-container {
  justify-content: center;
  display: flex;
}

.text-span, .text-style-underline {
  text-decoration: underline;
}

.text-size-xsmall {
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: .7rem;
}

.div-block-8 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: "Area Area-2 Area-3"
                 "Area-4 Area-5 Area-6"
                 "Area-7 Area-8 Area-9"
                 / 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.engagement_icon_wrapper {
  background-color: #160e2c;
  border: 1px solid #3f3774;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.engagement_icon_wrapper.circle {
  border-radius: 60px;
  margin: 23px;
  padding: .6rem;
}

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

.icon-embed-custom-11 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 13.625rem;
  padding: 18px;
  display: flex;
}

.div-block-9 {
  color: #000;
  background-color: #ecf550;
  justify-content: center;
  align-items: center;
  width: 23px;
  height: 23px;
  display: flex;
}

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

.list1_item {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.button-3 {
  background-color: var(--brand--yellow);
  color: var(--base-color-brand--black);
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #ecf55000;
  flex: 1;
  padding: .75rem 1.5rem;
  font-weight: 500;
  text-decoration: none;
}

.button-3.is-secondary {
  border-color: var(--brand--yellow);
  color: var(--brand--yellow);
  background-color: #0000;
}

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

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

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

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

.navbar1_menu-button {
  padding: 0;
}

.section_blog-post2-header {
  position: relative;
}

.blog-post2-header_title-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.blog-post2-header_category-link {
  color: var(--base-color-neutral--white);
  margin-bottom: 1rem;
  font-weight: 600;
  text-decoration: none;
}

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

.blog-post2-header_author-wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.blog-post2-header_author-image-wrapper {
  margin-bottom: 1rem;
}

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

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

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

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

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

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

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

.blog-post2-content_content-top {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 2.5rem;
  display: flex;
}

.blog-post2-content_breadcrumb {
  align-items: center;
  width: 100%;
  display: flex;
}

.breadcrumb-link {
  color: var(--base-color-neutral--black);
  text-decoration: none;
}

.breadcrumb-link.w--current {
  font-weight: 600;
}

.breadcrumb-divider {
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  margin-left: .5rem;
  margin-right: .5rem;
  display: flex;
}

.blog-post2-content_share {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-items: start;
  margin-top: 1rem;
  display: grid;
}

.blog-post2-content_share.content-top {
  margin-top: 0;
}

.blog-post2-content_social-link {
  background-color: var(--base-color-neutral--neutral-lightest);
  border-radius: 20px;
  padding: .25rem;
}

.blog-post2-content_social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.blog-post2-content_content {
  margin-bottom: 4rem;
}

.blog-post2-content_content-bottom {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.blog-post2-content_share-wrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.blog-post2-content_tag-list-wrapper {
  width: 100%;
}

.blog-post2-content_tag-list {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.blog-post2-content_tag-item {
  background-color: var(--base-color-neutral--neutral-lightest);
  padding: .25rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}

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

.blog-post2-content_divider {
  background-color: var(--base-color-neutral--black);
  width: 100%;
  max-width: 48rem;
  height: 1px;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.blog-post2-content_author-wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.blog-post2-content_author-image-wrapper {
  margin-bottom: 1rem;
}

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

.section_blog-post2-cta {
  position: relative;
}

.blog-post2-cta_form {
  max-width: 30rem;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

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

.success-message {
  background-color: #50f55bb8;
  background-image: url('../images/svg-background.svg');
  background-position: 50% 100%;
  background-size: cover;
  padding: 1.5rem;
}

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

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

.error-text {
  color: #e23939;
}

.blog-post2-related_component {
  flex-direction: column;
  align-items: center;
}

.blog-post2-related_list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.blog-post2-related_item {
  border: 1px solid var(--border-color--border-primary);
}

.blog-post2-related5_item-link {
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.blog-post2-related_image-wrapper {
  width: 100%;
  overflow: hidden;
}

.blog-post2-related_image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog-post2-related_item-content {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 1.5rem;
  display: flex;
}

.blog-post2-related_category-wrapper {
  margin-bottom: .5rem;
  display: flex;
}

.blog-post2-related_title-wrapper {
  margin-bottom: .5rem;
}

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

.blog-post2-related_author-image-wrapper {
  margin-right: 1rem;
}

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

.blog-post2-related_date-wrapper {
  display: flex;
}

.blog-post2-related_text-divider {
  margin-left: .5rem;
  margin-right: .5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.body-blog {
  color: var(--base-color-brand--black);
  background-color: #fff;
}

.tag {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: #dd55fc;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 36%;
  margin-top: 9px;
  margin-right: 18px;
  display: flex;
}

.text-block {
  justify-content: center;
  align-items: center;
}

.div-block-10 {
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
}

.blog3-header_heading-wrapper {
  align-items: center;
  width: 100%;
  margin-bottom: 2.5rem;
  display: flex;
}

.blog3-header_featured-blog {
  grid-column-gap: 2rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  margin-bottom: 5rem;
  display: grid;
}

.blog3-header_image-link {
  width: 100%;
  margin-bottom: 1.5rem;
}

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

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

.blog3-header_meta-wrapper {
  margin-bottom: 1rem;
}

.blog3-header_category-link {
  background-color: var(--base-color-neutral--neutral-lightest);
  margin-right: 1rem;
  padding: .25rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}

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

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

.text-size-small-4.text-weight-semibold {
  font-weight: 600;
}

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

.blog3-header_title-link {
  color: var(--link-color--link-alternate);
  margin-bottom: .5rem;
  text-decoration: none;
  transition: color .5s cubic-bezier(.25, .46, .45, .94);
  display: block;
}

.blog3-header_title-link:hover {
  color: var(--brand--yellow);
}

.blog3-header_title-link.main-post {
  margin-bottom: 1rem;
}

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

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

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

.blog3-header_featured-item {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.blog3-header_featured-image-link {
  width: 100%;
}

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

.blog3-header_featured-item-content {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

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

.blog3-header_featured-button-wrapper {
  margin-top: .5rem;
  display: flex;
}

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

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

.blog3-newsletter_content {
  flex: 1;
}

.blog3-newsletter_form {
  max-width: 30rem;
  margin-bottom: 0;
}

.blog3-category_heading-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: end;
  display: grid;
}

.blog3-category_heading {
  flex: 1;
}

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

.blog3-category_button-row.mobile-landscape {
  display: none;
}

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

.blog3-category_image-link {
  width: 100%;
  margin-bottom: 1.5rem;
}

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

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

.blog3-category_meta-wrapper {
  margin-bottom: 1rem;
}

.blog3-category_category-link {
  background-color: var(--base-color-neutral--neutral-lightest);
  margin-right: 1rem;
  padding: .25rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}

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

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

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

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

.section_home_header {
  color: var(--text-color--text-alternate);
  background-color: #19181f;
  background-image: url('../images/dots_background_grey.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.text-style-highlight {
  color: #aadfd1;
}

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

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

.home_header_form.klaviyo-form {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border-radius: 7px;
  height: 55px;
  overflow: hidden;
}

.fa-icon-ffffff {
  color: #fff;
}

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

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .hide-tablet {
    display: none;
  }

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

  .margin-large {
    margin: 2.5rem;
  }

  .margin-xlarge {
    margin: 3.5rem;
  }

  .margin-xxlarge {
    margin: 4.5rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-xxhuge {
    margin: 7.5rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .padding-xlarge {
    padding: 3.5rem;
  }

  .padding-xxlarge {
    padding: 4.5rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 7.5rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .icon-1x1-medium.purple {
    color: var(--brand--yellow);
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .menu-icon4_line-bottom {
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon_line-middle-base {
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: absolute;
  }

  .navbar16_link {
    margin-top: 0;
    margin-bottom: 0;
    padding: 1rem 0;
    position: static;
  }

  .navbar16_menu {
    flex-direction: column;
    justify-content: center;
    position: absolute;
  }

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

  .navbar16_links-wrapper {
    flex: 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .navbar16_menu-button {
    margin-left: -.5rem;
    padding: 0;
  }

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

  .menu-icon4_line-top {
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

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

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

  .navbar16_container {
    grid-auto-columns: 1fr;
  }

  .menu-icon4_line-middle {
    background-color: var(--base-color-brand--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;
    position: static;
  }

  .menu-icon_line-middle-top {
    z-index: 2;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    inset: 0;
  }

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

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

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

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

  .cta51_card {
    padding: 3rem;
  }

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

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

  .hero_content {
    max-width: none;
  }

  .layout360_card-content {
    padding: 2rem;
  }

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

  .layout387_card-large-content, .layout387_card-small-content {
    padding: 2rem;
  }

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

  .div-block-3 {
    font-size: .8rem;
  }

  .div-block-6 {
    flex-direction: column;
  }

  .div-block-7 {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    background-image: radial-gradient(circle, #25174b, #41377400 39%);
    flex-direction: row;
    padding-top: 5.4rem;
    padding-bottom: 5.4rem;
  }

  .automation-wrapper {
    padding-left: 2.3rem;
    padding-right: 2.3rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .blog-post2-content_content {
    margin-bottom: 3rem;
  }

  .blog-post2-related_list {
    grid-template-columns: 1fr 1fr;
  }

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

  .blog3-header_featured-blog {
    grid-row-gap: 3.5rem;
    grid-template-columns: 1fr;
    margin-bottom: 4rem;
  }

  .heading-medium-4 {
    font-size: 1.75rem;
  }

  .blog3-header_featured-list {
    grid-row-gap: 3.5rem;
  }

  .blog3-header_list {
    grid-template-columns: 1fr 1fr;
  }

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

  .blog3-newsletter_content {
    margin-right: 0;
  }

  .blog3-category_heading-wrapper {
    grid-column-gap: 3rem;
  }

  .blog3-category_heading {
    margin-right: 3rem;
  }

  .blog3-category_button-row {
    flex: none;
  }

  .blog3-category_list {
    grid-template-columns: 1fr 1fr;
  }

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

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

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

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

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

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

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

  .margin-xsmall {
    margin: .75rem;
  }

  .margin-small {
    margin: 1.25rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-large {
    margin: 2rem;
  }

  .margin-xlarge {
    margin: 2.5rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-xxhuge {
    margin: 5rem;
  }

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

  .padding-small {
    padding: 1.25rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-large {
    padding: 2rem;
  }

  .padding-xlarge {
    padding: 2.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 5rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .button.is-alternate.is-navbar16-button {
    display: none;
  }

  .button.is-navbar16-button {
    padding: .25rem 1rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .navbar16_link {
    font-size: 1.5rem;
  }

  .navbar16_menu-wrapper {
    padding-top: 4rem;
  }

  .navbar16_links-wrapper {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .navbar16_bottom {
    height: 4rem;
  }

  .navbar16_component {
    min-height: 4rem;
  }

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

  .faq4_icon-wrappper {
    width: 1.75rem;
  }

  .faq4_question {
    padding: 1rem 1.25rem;
  }

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

  .pricing19_plan {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .button-hero-primary.is-alternate.is-navbar16-button {
    display: none;
  }

  .button-hero-primary.is-navbar16-button {
    padding: .25rem 1rem;
  }

  .cta51_card {
    padding: 2rem;
  }

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

  .heading-style-callout {
    font-size: 1.7rem;
  }

  .loader4_progress-wrapper {
    width: 70%;
  }

  .hero_component_wrapper {
    padding-top: 4rem;
  }

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

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

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

  .layout360_card-content {
    padding: 1.5rem;
  }

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

  .layout387_card-large-content, .layout387_card-small-content {
    padding: 1.5rem;
  }

  .layout387_card-small {
    grid-template-columns: 1fr;
  }

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

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

  .message {
    flex-wrap: wrap;
    flex: 0 auto;
    font-size: .6rem;
  }

  .message.user_message {
    flex: 0 auto;
  }

  .div-block-3.right {
    margin-right: 0;
  }

  .div-block-3.left {
    margin-left: 0;
  }

  .message_container.small {
    width: 358px;
    height: 646.758px;
  }

  .div-block-6 {
    flex-wrap: wrap;
  }

  .div-block-7 {
    flex-direction: row;
  }

  .image-2 {
    width: 101px;
    min-width: 101px;
  }

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

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

  .blog-post2-content_content-top, .blog-post2-content_content {
    margin-bottom: 2rem;
  }

  .blog-post2-content_divider {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

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

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

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

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

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

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

  .blog3-header_heading-wrapper {
    margin-bottom: 1.5rem;
  }

  .blog3-header_featured-blog {
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
  }

  .blog3-header_image-wrapper {
    padding-top: 66%;
  }

  .heading-medium-4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .blog3-header_featured-list {
    grid-row-gap: 2rem;
  }

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

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

  .blog3-newsletter_content {
    margin-right: 0;
  }

  .blog3-category_heading-wrapper {
    grid-row-gap: 2rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .blog3-category_heading {
    margin-right: 0;
  }

  .blog3-category_button-row {
    justify-content: flex-start;
    width: 100%;
  }

  .blog3-category_button-row.mobile-landscape {
    margin-top: 2.5rem;
    display: flex;
  }

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

  .blog3-cta_component {
    grid-row-gap: 3rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .button.is-hero-secondary.launch_chat {
    flex: none;
    display: none;
  }

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

  .navbar16_logo {
    width: 55vw;
  }

  .heading {
    font-size: 2.1rem;
  }

  .cta51_card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .heading-style-callout {
    font-size: 1.2rem;
  }

  .hero_component_wrapper, .layout360_row {
    grid-template-columns: 1fr;
  }

  .step {
    padding-left: 6%;
    padding-right: 6%;
  }

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

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

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

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

  .message.user_message {
    flex: 0 auto;
  }

  .message_container.small {
    width: 100%;
    max-width: 400px;
  }

  .div-block-7 {
    grid-column-gap: 2.25rem;
    grid-row-gap: 2.25rem;
  }

  .mark {
    width: 20vw;
  }

  .blog-post2-content_content-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-post2-content_share.content-top {
    margin-top: 2rem;
  }

  .blog-post2-content_content-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-post2-content_share-wrapper {
    width: 100%;
    margin-bottom: 2rem;
  }

  .blog-post2-content_tag-list-wrapper {
    width: 100%;
  }

  .blog-post2-content_tag-list {
    justify-content: flex-start;
  }

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

  .blog-post2-related_item-content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

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

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

  .footer1_menu-wrapper {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .blog3-header_featured-item {
    grid-row-gap: 1.5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .blog3-cta_component {
    grid-template-columns: 1fr;
  }

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

#w-node-_5c6fac5e-6002-3fbe-f5b3-89c33eb2c50f-e90c2aaa {
  justify-self: center;
}

#w-node-c9e41e37-625c-34d3-f0f1-384eb3b5daab-e90c2aaa, #w-node-c9e41e37-625c-34d3-f0f1-384eb3b5dab1-e90c2aaa, #w-node-c9e41e37-625c-34d3-f0f1-384eb3b5dab7-e90c2aaa {
  align-self: start;
}

#w-node-_5c6fac5e-6002-3fbe-f5b3-89c33eb2c52a-e90c2aaa, #w-node-_76186ad4-da0b-2272-1989-1d487d1fd7a1-e90c2aaa, #w-node-_3b4381ad-8b4e-dd7a-d497-45dc47847a82-e90c2aaa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3b4381ad-8b4e-dd7a-d497-45dc47847a83-e90c2aaa {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_3b4381ad-8b4e-dd7a-d497-45dc47847a84-e90c2aaa {
  align-self: start;
}

#w-node-_31bf58a7-e341-eef0-16d5-abd77e994458-e90c2aaa {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_00533735-198c-4cf4-24a4-324bcc1a7415-e90c2aaa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c11e47e5-7f2d-1858-ab3e-2dbc6036be6e-e90c2aaa {
  align-self: start;
}

#element-10.w-node-_6b2ee786-60ab-6334-19a7-569b240638e4-e90c2aaa {
  grid-area: Area-4;
  place-self: center;
}

#element-7.w-node-_8dae31da-11e2-2ad8-62c9-a86ec544d02d-e90c2aaa {
  grid-area: Area-2;
  place-self: center;
}

#element-8.w-node-d1d4b688-b5c5-b9e4-7399-c0d5839c36ef-e90c2aaa {
  grid-area: Area-6;
  place-self: center;
}

#element-9.w-node-ab98d767-45e7-5ee8-9ff5-0dda4fbfc645-e90c2aaa {
  grid-area: Area-8;
  place-self: center;
}

#element-8.w-node-_90322934-b995-28c6-eeec-8df39906848a-e90c2aaa {
  grid-area: Area-5;
  place-self: center;
}

#w-node-c11e47e5-7f2d-1858-ab3e-2dbc6036be83-e90c2aaa, #w-node-_7a678d0f-a5fb-f737-2c8b-5b89c2ed47a1-e90c2aaa, #w-node-_3b53f738-9762-8211-818a-1ad89dd2e5ce-e90c2aaa {
  align-self: start;
}

#w-node-_4497c274-cbed-f115-ee2d-8b54f1803db1-e90c2aaa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4f7b9844-031e-afb4-fc6d-8cd1864c74ac-e90c2aaa, #w-node-_4f7b9844-031e-afb4-fc6d-8cd1864c74b1-e90c2aaa {
  align-self: start;
}

#w-node-_4f7b9844-031e-afb4-fc6d-8cd1864c74b6-e90c2aaa {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_74290606-03ff-ac25-1aab-ce80362749b4-e90c2aaa, #w-node-_4f7b9844-031e-afb4-fc6d-8cd1864c74cf-e90c2aaa, #w-node-_4f7b9844-031e-afb4-fc6d-8cd1864c74d4-e90c2aaa, #w-node-_4f7b9844-031e-afb4-fc6d-8cd1864c74d9-e90c2aaa, #w-node-_4f7b9844-031e-afb4-fc6d-8cd1864c74de-e90c2aaa, #w-node-_5a149e51-f5d5-6c35-f656-c76259af9039-e90c2aaa, #w-node-_406f81ed-3195-f166-ba88-6f6ec062878b-e90c2aaa, #w-node-_4f7b9844-031e-afb4-fc6d-8cd1864c74f7-e90c2aaa, #w-node-_4f7b9844-031e-afb4-fc6d-8cd1864c74fc-e90c2aaa, #w-node-_4f7b9844-031e-afb4-fc6d-8cd1864c7501-e90c2aaa, #w-node-_4f7b9844-031e-afb4-fc6d-8cd1864c7506-e90c2aaa, #w-node-_4f7b9844-031e-afb4-fc6d-8cd1864c750b-e90c2aaa, #w-node-bc98f9e3-5605-3d28-e94f-128af2b916ea-e90c2aaa {
  align-self: start;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950f-e90c2ac5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369510-e90c2ac5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369514-e90c2ac5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369515-e90c2ac5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369519-e90c2ac5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951a-e90c2ac5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951e-e90c2ac5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951f-e90c2ac5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369523-e90c2ac5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369524-e90c2ac5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369528-e90c2ac5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369529-e90c2ac5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952d-e90c2ac5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952e-e90c2ac5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369532-e90c2ac5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369533-e90c2ac5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953a-e90c2ac5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953b-e90c2ac5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953f-e90c2ac5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369540-e90c2ac5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369544-e90c2ac5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369545-e90c2ac5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369549-e90c2ac5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954a-e90c2ac5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954e-e90c2ac5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954f-e90c2ac5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369553-e90c2ac5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369554-e90c2ac5 {
  justify-self: start;
}

#w-node-de8106d9-b098-80e3-076c-80f3a0fa5e54-e90c2ac5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-de8106d9-b098-80e3-076c-80f3a0fa5e55-e90c2ac5 {
  justify-self: start;
}

#w-node-_680345d6-d141-aefc-5e81-01faad69a792-e90c2ac5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_680345d6-d141-aefc-5e81-01faad69a793-e90c2ac5 {
  justify-self: start;
}

#w-node-dc962921-5c74-5687-77a4-c1371012b297-e90c2ac5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dc962921-5c74-5687-77a4-c1371012b298-e90c2ac5 {
  justify-self: start;
}

#w-node-bbf5f4a2-0660-a8f8-7799-a71df583db57-e90c2ac5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bbf5f4a2-0660-a8f8-7799-a71df583db58-e90c2ac5 {
  justify-self: start;
}

#w-node-_723dac19-3a6b-8f5e-89ce-53b9006ba92c-e90c2ac5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_723dac19-3a6b-8f5e-89ce-53b9006ba92d-e90c2ac5 {
  justify-self: start;
}

#email-5.w-node-_4e11f97b-0770-8eec-4bbd-39109b49ed26-136d424a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_5c6fac5e-6002-3fbe-f5b3-89c33eb2c50f-e90c2aaa {
    justify-self: start;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_3b4381ad-8b4e-dd7a-d497-45dc47847a83-e90c2aaa {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_3b4381ad-8b4e-dd7a-d497-45dc47847a98-e90c2aaa, #w-node-_3b4381ad-8b4e-dd7a-d497-45dc47847aa8-e90c2aaa {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_3b4381ad-8b4e-dd7a-d497-45dc47847a83-e90c2aaa {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }
}



/* Chat Funnels Section Redesign */
.layout360_features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 2rem;
  margin-top: 2rem;
}

.layout360_feature-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stats-card {
  background: linear-gradient(135deg, #edf54f 0%, #f5e84d 100%);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.stats-card h4 {
  color: #000;
  font-weight: 800;
  margin: 0;
}

.stats-card p {
  color: #000;
  margin: 0;
}

.text-color-grey {
  color: #666;
  opacity: 0.8;
}

.icon-embed-medium {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #edf54f;
  border-radius: 12px;
  color: #000;
}

#w-node-chat-funnels-info-main {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#w-node-chat-funnels-visual {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 992px) {
  #what_are_chat_funnels .layout360_component {
    grid-template-columns: 1fr 1fr;
  }
  
  #w-node-chat-funnels-info-main {
    grid-column: 1;
  }
  
  #w-node-chat-funnels-visual {
    grid-column: 2;
  }
}

@media screen and (max-width: 767px) {
  .layout360_features-grid {
    grid-template-columns: 1fr;
    grid-gap: 1.5rem;
  }
  
  .stats-card {
    padding: 2rem;
  }
}


/* Modern Pricing Section Redesign */
.section_pricing_modern {
  background-color: #000;
  color: #fff;
  position: relative;
}

.pricing-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card-modern {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card-modern:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 48px rgba(237, 245, 79, 0.2);
  border-color: rgba(237, 245, 79, 0.5);
  background: rgba(237, 245, 79, 0.05);
}

.pricing-card-popular {
  border: 2px solid #edf54f;
  background: rgba(237, 245, 79, 0.08);
}

.pricing-card-popular:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(237, 245, 79, 0.3);
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #edf54f 0%, #e0e847 100%);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(237, 245, 79, 0.4);
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card-header h3 {
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 700;
}

.pricing-price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.pricing-currency {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-right: 0.25rem;
}

.pricing-amount {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.pricing-period {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 0.5rem;
}

.pricing-card-header p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.pricing-card-features {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.pricing-check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: #edf54f;
  stroke-width: 3;
}

.pricing-feature span {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.button-modern {
  display: inline-block;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
}

.button-modern-filled {
  background: linear-gradient(135deg, #edf54f 0%, #e0e847 100%);
  color: #000;
  border-color: #edf54f;
}

.button-modern-filled:hover {
  background: linear-gradient(135deg, #e0e847 0%, #d4dc40 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(237, 245, 79, 0.4);
}

.button-modern-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.button-modern-outline:hover {
  background: #edf54f;
  border-color: #edf54f;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(237, 245, 79, 0.3);
}

@media screen and (max-width: 991px) {
  .pricing-grid-modern {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .pricing-card-modern {
    padding: 2.5rem 2rem;
  }
  
  .pricing-amount {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 767px) {
  .pricing-card-modern {
    padding: 2rem 1.5rem;
  }
  
  .pricing-amount {
    font-size: 3rem;
  }
  
  .pricing-currency {
    font-size: 1.75rem;
  }
}


/* Ensure scrolling works properly */
html {
  overflow-y: auto !important;
  height: auto !important;
}

body {
  overflow-y: auto !important;
  height: auto !important;
  min-height: 100vh;
}


/* Sticky Navbar with Smooth Animations */
.navbar16_component {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar16_component.scrolled {
  background-color: rgba(0, 0, 0, 0.98) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

/* Add padding to body to account for fixed navbar */
body {
  padding-top: 80px;
}

/* Mobile Menu Animations */
.navbar16_menu {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              visibility 0s linear 0.4s;
}

@media screen and (max-width: 991px) {
  .navbar16_menu {
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
  }

  .navbar16_menu.w--open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease,
                visibility 0s linear 0s;
  }
}

@media screen and (min-width: 992px) {
  .navbar16_menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
}

/* Stagger animation for menu items */
.navbar16_link,
.navbar16_bottom {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar16_menu.w--open .navbar16_link:nth-child(1) {
  animation: slideInUp 0.5s ease forwards 0.1s;
}

.navbar16_menu.w--open .navbar16_link:nth-child(2) {
  animation: slideInUp 0.5s ease forwards 0.15s;
}

.navbar16_menu.w--open .navbar16_link:nth-child(3) {
  animation: slideInUp 0.5s ease forwards 0.2s;
}

.navbar16_menu.w--open .navbar16_link:nth-child(4) {
  animation: slideInUp 0.5s ease forwards 0.25s;
}

.navbar16_menu.w--open .navbar16_link:nth-child(5) {
  animation: slideInUp 0.5s ease forwards 0.3s;
}

.navbar16_menu.w--open .div-block-10 {
  animation: slideInUp 0.5s ease forwards 0.35s;
}

.navbar16_menu.w--open .navbar16_bottom {
  animation: slideInUp 0.5s ease forwards 0.5s;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hamburger Menu Icon Animation */
.menu-icon4_line-top,
.menu-icon4_line-middle,
.menu-icon4_line-bottom {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.navbar16_menu-button.w--open .menu-icon4_line-top {
  transform: translateY(6px) rotate(45deg);
}

.navbar16_menu-button.w--open .menu-icon4_line-middle {
  opacity: 0;
  transform: scaleX(0);
}

.navbar16_menu-button.w--open .menu-icon4_line-bottom {
  transform: translateY(-6px) rotate(-45deg);
}

/* Smooth hover effects for nav links */
.navbar16_link {
  position: relative;
  overflow: hidden;
}

.navbar16_link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #edf54f;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar16_link:hover::after {
  width: 100%;
}

/* Blog dropdown animation */
.div-block-10 {
  position: relative;
}

.div-block-10 .navbar16_link {
  transition: all 0.3s ease;
}

.div-block-10 .navbar16_link:hover {
  transform: translateX(5px);
  color: #edf54f;
}

/* Tag animation */
.tag {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tag:hover {
  transform: scale(1.05);
}

/* Mobile specific styles */
@media screen and (max-width: 991px) {
  .navbar16_menu {
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    padding-top: 100px;
  }
  
  .navbar16_link {
    font-size: 1.25rem;
    padding: 1rem 0;
  }
  
  /* Reset animations on close */
  .navbar16_menu:not(.w--open) .navbar16_link,
  .navbar16_menu:not(.w--open) .navbar16_bottom {
    opacity: 0;
    transform: translateY(20px);
    animation: none;
  }
}

@media screen and (min-width: 992px) {
  .navbar16_link,
  .navbar16_bottom {
    opacity: 1;
    transform: none;
  }
}


/* Ensure hamburger icon is always visible */
.navbar16_menu-button {
  position: relative;
  z-index: 10000;
  opacity: 1 !important;
  visibility: visible !important;
}

.menu-icon4,
.menu-icon4_wrapper {
  opacity: 1 !important;
  visibility: visible !important;
}

.menu-icon4_line-top,
.menu-icon4_line-middle,
.menu-icon4_line-bottom,
.menu-icon_line-middle-top,
.menu-icon_line-middle-base {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Make sure lines stay visible even when menu is open */
.navbar16_menu-button.w--open .menu-icon4_line-top,
.navbar16_menu-button.w--open .menu-icon4_line-bottom {
  opacity: 1 !important;
}

