:root {
  --background-color--background-primary: var(--base-color-neutral--black);
  --text-color--text-primary: var(--base-color-neutral--white);
  --link-color--link-primary: var(--base-color-neutral--white);
  --1-indigo-color--500: #6172f3;
  --1-indigo-color--700: #3538cd;
  --border-color--border-primary: var(--base-color-neutral--white);
  --base-color-neutral--black: black;
  --base-color-neutral--white: white;
  --text-color--text-alternate: #6172f3;
  --1-indigo-color--primary: #444ce7;
  --base-color-neutral--neutral: #666;
  --background-color--background-secondary: var(--base-color-neutral--neutral-dark);
  --background-color--background-alternate: var(--base-color-neutral--white);
  --link-color--link-alternate: var(--base-color-neutral--black);
  --background-color--background-tertiary: var(--base-color-neutral--neutral-lighter);
  --text-color--text-secondary: var(--base-color-neutral--neutral-light);
  --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);
  --1-indigo-color--200: #c7d7fe;
  --1-indigo-color--400: #8098f9;
  --1-indigo-color--300: #a4bcfd;
  --1-indigo-color--100: #e0eaff;
  --1-indigo-color--800: #2d31a6;
  --1-indigo-color--900: #2d3282;
  --12px-corner-radius: 12px;
  --base-color-brand--white: white;
  --base-color-brand--black: black;
  --link-color--link-secondary: var(--base-color-neutral--neutral-light);
  --base-color-neutral--neutral-lightest: #eee;
  --base-color-neutral--neutral-lighter: #ccc;
  --base-color-neutral--neutral-light: #aaa;
  --base-color-neutral--neutral-dark: #444;
  --base-color-neutral--neutral-darker: #222;
  --base-color-neutral--neutral-darkest: #111;
  --base-color-system--success-green: #027a48;
  --base-color-system--success-green-light: #ecfdf3;
  --base-color-system--error-red: #b42318;
  --base-color-system--error-red-light: #fef3f2;
  --border-color--border-secondary: var(--base-color-neutral--neutral-light);
  --border-color--border-alternate: var(--base-color-neutral--black);
}

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

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

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

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

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

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

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('../images/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;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

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

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-primary);
  font-family: Nunito Sans, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

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

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

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

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

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

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

p {
  margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.overflow-hidden {
  overflow: hidden;
}

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

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

.hide {
  display: none;
}

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

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

.max-width-xlarge.flex {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

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

.main-wrapper {
  overflow: 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-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

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

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

.margin-top.margin-large {
  margin: 2rem 0 0;
}

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

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

.margin-bottom.margin-small {
  margin: 0 0 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

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

.text-size-medium {
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
}

.text-size-medium.darker {
  color: #c6b4d6;
}

.text-size-medium.lighter {
  color: #82758d;
}

.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-variation-settings: "wdth" 90, "wght" 800;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

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

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

.heading-style-h6 {
  font-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: inline-block;
}

.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-variation-settings: "wdth" 90, "wght" 720;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h1.statistic-text {
  font-variation-settings: "wdth" 100, "wght" 800;
}

.heading-style-h1.statistic-text.purple-gradient {
  background-image: linear-gradient(180deg, var(--1-indigo-color--500), var(--1-indigo-color--700));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.button.is-navbar3-button {
  margin-left: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.button.is-primary {
  background-color: var(--1-indigo-color--primary);
  color: var(--text-color--text-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-size-regular.text-weight-bold {
  color: #fff;
}

.text-size-regular.text-weight-bold.bigger {
  color: #fff;
  -webkit-text-stroke-color: #3124a3;
  font-size: 1.2rem;
}

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

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

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

.text-weight-bold.text-style-allcaps {
  letter-spacing: .3rem;
}

.text-weight-bold.text-style-allcaps.text-color-alternate {
  text-align: center;
  font-size: .9rem;
}

.text-weight-bold.text-style-allcaps.text-color-alternate.hidden {
  display: none;
}

.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_button-list.background-color-black {
  background-color: var(--base-color-neutral--neutral);
}

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

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

.button-group.is-center.max-width-large {
  width: 50%;
  min-width: 28rem;
}

.button-group.is-center.max-width-large.hidden {
  display: none;
}

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

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

.text-weight-semibold.text-style-allcaps.text-align-center {
  font-size: 1.4rem;
  text-decoration: line-through;
}

.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(--base-color-neutral--black);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form_field-wrapper {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.padding-global.bg-color {
  background-color: #030815;
}

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

.padding-section-medium.no-bottom {
  padding-bottom: 0;
}

.padding-section-medium.no-top {
  padding-top: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.spacer-huge.hidden-desktop {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rl-styleguide_ratio-bg {
  z-index: -1;
  background-color: var(--background-color--background-secondary);
  min-width: 3rem;
  height: 100%;
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

.delete-this {
  display: flex;
}

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

.navbar-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: center stretch;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.navbar-container.singular {
  grid-template-columns: 1fr;
  place-items: center;
}

.navbar-menu-dropdown-button {
  padding: 0;
}

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

.navbar-link {
  color: var(--link-color--link-primary);
  margin-left: 0;
  margin-right: 0;
  padding: .5rem 1rem .5rem 1.5rem;
}

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

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

.navbar-logo-link-menu {
  padding-left: 0;
  display: none;
}

.navbar3_menu-dropdown {
  margin-left: 0;
  margin-right: 0;
}

.navbar3_dropdown-list.w--open {
  border: 1px solid var(--border-color--border-primary);
  background-color: var(--background-color--background-primary);
  padding: 8px;
  position: absolute;
}

.navbar-logo {
  width: 120px;
  margin-top: 0;
}

.navbar-logo.downloads {
  width: 180px;
  margin-bottom: -25px;
}

.navbar-logo-link {
  padding-left: 0;
}

.navbar-tablet-menu-dropdown {
  border: 1px solid var(--border-color--border-primary);
  color: var(--base-color-neutral--white);
  background-color: #000;
  margin-left: 1rem;
  padding: .5rem 1.5rem;
  display: none;
}

.navbar-component {
  background-color: #ddd0;
  align-items: center;
  width: 100%;
  min-height: 4rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.navbar-menu-background {
  display: none;
  position: static;
}

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

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

.navbar-menu-links {
  justify-content: flex-start;
  align-items: center;
  margin-left: -1rem;
  display: flex;
  position: static;
}

.navbar-menu-links.right {
  justify-content: flex-end;
  align-items: center;
}

.body {
  background-color: var(--background-color--background-primary);
  font-family: Nunito Sans, sans-serif;
}

.heading {
  font-weight: 700;
}

.header28_lightbox-image {
  object-fit: cover;
}

.hero-header-component {
  display: block;
}

.hero-header-component.margin-top {
  padding-top: 40px;
}

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

.hero-header-layout {
  flex-direction: column;
  align-items: center;
  display: flex;
}

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

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

.video {
  border-radius: 21px;
}

.hero-video-wistia {
  border-radius: 20px;
  width: 800px;
}

.hero-video-wrapper {
  width: 100%;
  height: 449px;
  padding-bottom: 0;
  overflow: hidden;
}

.hero-section {
  background-image: linear-gradient(#0006, #0006), url('../images/AA-hubspot-Heading.png');
  background-position: center;  /* Changed to center for better positioning */
  background-repeat: no-repeat;
  background-size: cover;  /* Changed to just cover for both layers */
  min-height: 100vh;  /* Changed to min-height to ensure it's at least full screen */
  width: 100%;
  position: absolute;  /* Added absolute positioning */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-section.no-bg {
  background-image: none;
  background-position: 0 0;
}

.padding-setion-xsmall {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.padding-setion-xsmall.customer-portal {
  padding-bottom: 2rem;
}

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

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

.rl-styleguide_color {
  padding-bottom: 8rem;
}

.rl-styleguide_color.is-indigo50 {
  background-color: #eef4ff;
}

.rl-styleguide_color.is-indigo200 {
  background-color: var(--1-indigo-color--200);
}

.rl-styleguide_color.is-indigo600 {
  background-color: var(--1-indigo-color--primary);
}

.rl-styleguide_color.is-indigo400 {
  background-color: var(--1-indigo-color--400);
}

.rl-styleguide_color.is-indigo300 {
  background-color: var(--1-indigo-color--300);
}

.rl-styleguide_color.is-indigo25 {
  background-color: #f5f8ff;
}

.rl-styleguide_color.is-indigo500 {
  background-color: var(--1-indigo-color--500);
}

.rl-styleguide_color.is-indigo700 {
  background-color: var(--1-indigo-color--700);
}

.rl-styleguide_color.is-indigo100 {
  background-color: var(--1-indigo-color--100);
}

.rl-styleguide_color.is-indigo800 {
  background-color: var(--1-indigo-color--800);
}

.rl-styleguide_color.is-indigo900 {
  background-color: var(--1-indigo-color--900);
}

.sales-button {
  border: 2px solid var(--1-indigo-color--primary);
  border-radius: var(--12px-corner-radius);
  background-color: var(--1-indigo-color--primary);
  background-image: linear-gradient(180deg, var(--1-indigo-color--primary), var(--1-indigo-color--900));
  box-shadow: 0 0 8rem -.5rem var(--1-indigo-color--primary);
  font-variation-settings: "wdth" 90, "wght" 800;
  letter-spacing: .05rem;
  text-transform: uppercase;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0;
  padding: 1.2rem 0;
  font-size: 1.1rem;
  font-weight: 800;
  transition: transform .35s;
  display: flex;
}

.sales-button:hover {
  transform: scale(1.02);
}

.sales-button.digital-launchpad {
  color: #f3f3f3;
  background-image: linear-gradient(#ff4704, #af1919);
  border-width: .1rem;
  border-color: #880f01;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 0 8rem -.5rem #d8160000;
}

.sales-button.digital-launchpad:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px #fb440933, 0 0 8rem -.5rem #d8160000;
}

.sales-button.digital-launchpad.w--current:hover {
  transform: scale(1.02);
}

.sales-button.white-background {
  background-image: linear-gradient(#9b44e7, #3f0077);
  border-color: #370f6d;
  box-shadow: 0 0 8rem -.5rem #0f0f0f33;
}

.sales-button.white-background.sales {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  text-align: center;
  border-color: #57239b;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: static;
  box-shadow: 0 0 8rem -.5rem #ffffff42;
}

.sales-button.yellow {
  background-image: linear-gradient(#9b44e7, #3f0077);
  border-color: #5f00be;
  box-shadow: 0 0 8rem -.5rem #8b44e780;
}

.sales-button.yellow:hover {
  transform: scale(1.08);
}

.sales-button.yellow.green {
  background-image: linear-gradient(#44e4e7, #300077);
}

.sales-button.yellow.yellowish {
  background-image: linear-gradient(#e7e444, #775100);
}

.sales-button.yellow.whatsapp {
  background-image: linear-gradient(#20aa21, #00661b);
  border-color: #1ca31f;
  width: 80%;
}

.sales-button.yellow.whatsapp:hover {
  transform: scale(1.03);
}

.sales-button.yellow.insta {
  width: 80%;
}

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

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

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

.question-accordion {
  border: 1px solid var(--border-color--border-primary);
  border-radius: var(--12px-corner-radius);
  background-color: var(--base-color-brand--white);
  color: var(--base-color-brand--black);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

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

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

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

.timeline-image-wrapper {
  width: 60%;
  overflow: hidden;
}

.timeline-item {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 12rem 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 25%;
  display: flex;
  position: relative;
}

.timeline19_fade-overlay-right {
  z-index: 0;
  background-image: linear-gradient(90deg, #fff0, var(--background-color--background-primary));
  width: 4rem;
  height: 4px;
  position: absolute;
  top: .375rem;
  right: 0%;
}

.timeline-list {
  display: flex;
  position: relative;
}

.timeline-progress-fade-overlay {
  z-index: 1;
  background-image: linear-gradient(90deg, var(--background-color--background-primary), #fff0);
  width: 4rem;
  height: 4px;
  position: absolute;
  top: .375rem;
  left: 0%;
}

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

.timeline-image {
  width: 100%;
}

.timeline-section {
  background-color: var(--background-color--background-primary);
  overflow: hidden;
}

.timeline-progress-wrapper {
  align-items: center;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 1rem;
  display: flex;
  position: relative;
}

.timeline-item-content {
  text-align: center;
  padding-left: .75rem;
  padding-right: .75rem;
}

.timeline-circle {
  z-index: 2;
  background-color: var(--base-color-brand--white);
  background-image: linear-gradient(186deg, #8936d1, #66259e 100%, #000);
  border-radius: 100%;
  flex: none;
  width: .9375rem;
  height: .9375rem;
  box-shadow: 0 0 15px 8px #000c;
}

.timeline-progress-line {
  background-color: var(--1-indigo-color--primary);
  background-image: linear-gradient(270deg, #3f0077, #9b44e7);
  width: 100%;
  height: 3px;
}

.timeline-progress-line.is-small-mobile {
  background-image: linear-gradient(90deg, #3f0077, #9b44e7);
}

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

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

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

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

.pricing-component {
  color: var(--base-color-brand--white);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

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

.pricing-divider {
  background-color: var(--base-color-brand--white);
  width: 100%;
  height: 2px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.pricing-content-top {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.pricing-feature {
  display: flex;
}

.pricing-feature-icon-wrapper {
  color: var(--1-indigo-color--500);
  flex: none;
  align-self: flex-start;
  margin-right: 1rem;
}

.pricing-logo {
  width: 260px;
}

.feature-card {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border: 2px solid var(--1-indigo-color--800);
  border-radius: var(--12px-corner-radius);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  padding: 10px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.feature-card-content {
  z-index: 3;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  display: flex;
  position: relative;
}

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

.feature-image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.feature-image-wrapper {
  z-index: 2;
  border-radius: var(--12px-corner-radius);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.headline-image-wrapper {
  border-radius: var(--12px-corner-radius);
  width: 70%;
  overflow: hidden;
}

.headline-image {
  width: 100%;
  height: 100%;
}

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

._4-feature-left {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 100%;
}

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

._4-feature-image-wrapper {
  width: 100%;
  position: relative;
}

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

._4-feature-image {
  width: 100%;
  height: 100%;
}

._4-feature-component {
  flex-direction: column;
  align-items: center;
  display: flex;
}

._4-feature-right {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 100%;
}

.gradient-circle {
  opacity: 1;
  filter: blur(200px);
  background-color: #3f0077;
  border-radius: 1000%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto 0% 0%;
}

.gradient-circle.top {
  z-index: 999;
  background-color: #006fff;
  top: -200px;
}

.gradient-circle.top.bottom {
  opacity: 1;
  filter: blur(90px);
  background-color: #f30;
}

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

.feature-statistic-image {
  width: 100%;
  height: 100%;
}

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

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

.feature-header {
  margin-bottom: 2rem;
}

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

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

.feature-icon-image {
  width: 100%;
  height: 100%;
}

.lp-hero-section {
  position: relative;
}

.background-image {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin-top: -67px;
  padding-bottom: 0;
  position: absolute;
  inset: 0%;
}

.background-overlay {
  z-index: 3;
  mix-blend-mode: lighten;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.gradient-overlay-background {
  z-index: 2;
  background-image: linear-gradient(180deg, #0000, var(--base-color-brand--black) 73%);
  position: absolute;
  inset: 0%;
}

.gradient-overlay-background.reversed {
  background-image: linear-gradient(180deg, var(--base-color-brand--black), #0000);
}

.button-confirmation-text {
  text-align: center;
  font-size: .9rem;
}

.button-confirmation-text._50-opacity {
  opacity: .5;
}

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

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

.episode-item-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.episode-title-wrapper {
  margin-bottom: .5rem;
}

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

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

.episode-item-content {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: .7rem 1.5rem;
  display: flex;
}

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

.episode-image {
  aspect-ratio: 3 / 2;
  border-radius: var(--12px-corner-radius);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.episode-content-wrapper {
  padding-bottom: 10px;
}

.episode-item {
  background-color: #ffffff1f;
  border: 2px solid #ffffff38;
  border-radius: 20px;
  overflow: hidden;
}

.episode-info-wrapper {
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

.episode-image-wrapper {
  width: 100%;
  padding: 5px;
  overflow: hidden;
}

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

.episode-number {
  background-color: var(--1-indigo-color--primary);
  border-radius: 8px;
  margin-right: 1rem;
  padding: .25rem .5rem;
  display: flex;
}

.line-divider {
  background-color: var(--base-color-brand--white);
  width: 1px;
  min-height: 130px;
}

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

.lp-second-section {
  position: relative;
}

.footer {
  color: #000;
  background-color: #0000;
  padding-top: 3.75rem;
  padding-bottom: 1.25rem;
}

.footer.bg-color {
  background-color: #030815;
}

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

.footer-links {
  color: #e2e2e2;
  text-align: center;
  margin-top: 1.25rem;
  font-size: .75rem;
  font-weight: 300;
}

.link-footer {
  color: #d4d4d4;
  text-decoration: none;
}

.footer-text {
  color: #d4d4d4;
  text-align: center;
  margin-top: 1.25rem;
  font-size: .75rem;
  font-weight: 300;
}

.lp-line-divider {
  position: relative;
}

.sitcky-button-wrapper {
  display: none;
}

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

.wisitia-video {
  border-radius: 0;
  margin-bottom: -1px;
}

.survey-video-wrapper {
  border-radius: 1.25rem;
  overflow: hidden;
}

.survey-video-wrapper._100-width {
  border-radius: 0;
  width: 70%;
  max-width: 60rem;
  display: block;
  box-shadow: 0 0 1.25rem #0003;
}

.survey-video-wrapper._100-width.sales-page {
  max-width: 50rem;
}

.paragraph-3 {
  color: #fff;
  text-align: center;
  text-shadow: 0 0 .375rem #000000bd;
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 400;
}

.div-block-76 {
  text-align: center;
  width: 600px;
  margin-bottom: 0;
}

.div-block-76.headline-ty {
  width: 800px;
  margin-top: 0;
}

.whatsapp-button-group {
  margin-top: 1.875rem;
}

.steps-container {
  flex-direction: column;
  align-items: center;
  max-width: 75rem;
  display: flex;
}

.hero-container-thank-you {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.button-main {
  box-shadow: none;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  background-image: linear-gradient(90deg, #0bb2ef, #1957c0);
  border-radius: 6.25rem;
  margin-top: 1.25rem;
  padding: 1.25rem 2.5rem;
  font-size: 1.0625rem;
  font-weight: 900;
  line-height: 1.625rem;
  transition: box-shadow .3s, background-color .3s, transform .3s;
}

.button-main:hover {
  background-image: linear-gradient(to right, #1cc2ff, #2673f5);
  transform: translate(0, -.3125rem);
  box-shadow: 1px 1px 1.25rem -.375rem #000;
}

.button-main.new {
  text-align: center;
  background-image: linear-gradient(270deg, #0bb2ef 48%, #1957c0);
  justify-content: center;
  align-items: center;
  max-width: 60%;
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
  display: flex;
  box-shadow: 1px 1px 1rem .375rem #00000047;
}

.button-main.new._3 {
  box-shadow: none;
  color: #fff;
  background-color: #0000;
  background-image: url('../images/Highlight-HD_1Highlight%20HD.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: 0;
  justify-content: center;
  width: 18.75rem;
  max-width: 100%;
  height: 3rem;
  margin-top: 0;
  padding: .625rem 0;
  font-size: .875rem;
  font-weight: 700;
  display: block;
}

.button-main.new._3.extra-space {
  border-style: solid;
  border-width: 1px;
  border-color: #016b9c #016b9c var(--1-indigo-color--primary);
  color: #fff;
  cursor: pointer;
  background-image: linear-gradient(#601cff, #2b0a63);
  border-radius: .4rem;
  margin-top: .625rem;
  margin-bottom: .625rem;
}

.button-main.new._3.whatsapp {
  box-shadow: none;
  background-image: linear-gradient(#20aa20, #00661b), url('../images/Highlight-HD_1Highlight%20HD.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border: 1px solid #1ca31f;
  border-radius: .4rem;
  font-size: .9rem;
}

.section-22 {
  background-image: linear-gradient(#0009, #0009), url('../images/BG-4.jpg');
  background-position: 0 0, 50% 0;
  background-size: auto, cover;
  padding-top: 1.25rem;
  padding-bottom: 6.25rem;
}

.section-22.thank-you {
  background-image: linear-gradient(to top, #0a0a0a, #0a0a0a00), linear-gradient(#0000, #0000), url('../images/PSD-Background.jpg');
  background-position: 0 0, 0 0, 50% 0;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  padding-top: .55rem;
  padding-bottom: 6rem;
}

.text-span-51 {
  color: #e9252e;
}

.bold-text-19 {
  font-weight: 600;
}

.step-1 {
  border-radius: var(--12px-corner-radius);
  background-color: #ffffff0f;
  border: 2px solid #ffffff24;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  padding: 2.5rem;
  display: flex;
  box-shadow: 0 0 8rem -.1875rem #007bff1c;
}

.step-1.hidden {
  display: none;
}

.step1-div {
  width: 60%;
}

.div-block-85 {
  border-radius: 1.25rem;
  overflow: hidden;
}

.div-block-85._100-width {
  border-radius: 0;
  width: 100%;
  max-width: 50rem;
  box-shadow: 0 0 1.25rem #0003;
}

.step1-headline {
  color: #fff;
  margin-bottom: .3125rem;
  font-weight: 400;
}

.step1-headline.smaller {
  font-size: 2.1rem;
}

.heading-55 {
  z-index: 1;
  color: #fff;
  text-align: center;
  letter-spacing: .0625rem;
  margin-top: .625rem;
  margin-bottom: 1.25rem;
  font-size: 2.5rem;
  font-weight: 600;
  position: relative;
}

.heading-55.bigger {
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 2.2rem;
}

.confirmation-text {
  color: #8a8a8a;
  text-align: center;
  padding-top: .3125rem;
  font-family: Montserrat, sans-serif;
  font-size: .75rem;
}

.confirmation-text.smaller {
  color: #838383;
  font-size: .65rem;
  line-height: .9375rem;
}

.mini-logo-image {
  max-width: 100%;
  margin-bottom: 1rem;
  padding-top: 10px;
}

.step1-text {
  color: #cecece;
  font-size: 1rem;
  font-weight: 300;
}

.underline {
  text-decoration: underline;
}

.hidden-pop-up {
  z-index: 9999;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  background-color: #000000bf;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-top: -11.75rem;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: visible;
}

.pop-up {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #09001a33;
  border: 1px solid #b574ff4d;
  border-radius: 1rem;
  width: auto;
  max-width: 31.25rem;
  height: auto;
  padding: .625rem 1.5625rem 1.25rem;
  display: block;
  box-shadow: 0 0 6.25rem #6627d33d;
}

.x-button {
  float: right;
  color: #a3a3a3;
  margin-left: 0;
  margin-right: -.625rem;
  font-size: 1.25rem;
  text-decoration: none;
}

.bold-text-34 {
  font-weight: 200;
}

.pop-up-div {
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.pop-up-header {
  color: #fff;
  text-align: center;
  margin-top: 1.3rem;
  margin-bottom: 0;
  font-size: 1.0625rem;
  font-weight: 700;
}

.bold-text-36 {
  font-weight: 600;
}

.global-styles-2, .global-styles-3 {
  z-index: 10;
  color: #fff;
  background-color: #000;
  padding: .5rem;
  display: none;
  position: fixed;
  inset: auto auto 0% 0%;
}

.inputs-list {
  padding-left: 0;
  list-style-type: none;
}

.section_hubspot-form {
  padding: 1rem 3rem;
}

.hubspot_field-help {
  color: #fff;
  margin-bottom: .5rem;
  margin-left: -.5rem;
  font-size: 1rem;
}

.hs-field-desc {
  color: #333c;
  background-color: #ebf2ff;
  margin-bottom: .5rem;
  padding: .2rem .5rem;
  font-size: .875rem;
  display: inline-block;
}

.hubspot_field-type {
  color: #fff;
  text-transform: uppercase;
  margin: .5rem auto .5rem .5rem;
  font-size: 1rem;
  font-weight: 700;
}

.hubspot_field-wrapper {
  background-color: #000;
  border-radius: .5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 2.5rem;
}

.hubspot_form-block {
  margin-left: auto;
  margin-right: auto;
}

.hubspot_top-wrapper {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.hs-form-booleancheckbox {
  align-items: center;
  margin-top: .75rem;
  margin-bottom: .75rem;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
}

.custom-checkbox_input {
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
}

.custom-checkbox_input.w--redirected-checked {
  background-color: #80b900;
}

.custom-checkbox_input.w--redirected-focus {
  border-color: #000;
  box-shadow: 0 0 3px 1px #bdfd2e;
}

.hs-form-field {
  flex: 1;
  margin-bottom: 1rem;
  margin-right: 0;
  font-size: 1rem;
  font-weight: 400;
  position: relative;
}

.hs-form-radio-display {
  align-items: center;
  margin-top: .5rem;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.submitted-message {
  color: #4967e5;
  background-color: #fff6e8;
  height: 0;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  padding: 0 1.25rem;
  font-size: 1rem;
  overflow: hidden;
}

.hs-error-msg {
  margin-bottom: 0;
  font-size: .65rem;
  font-weight: 700;
  display: block;
}

.form-columns-2 {
  grid-column-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.hs-form {
  color: #f5f5f5;
  background-color: #0000;
  border: 1px #e4e4e4;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  font-size: 1.125rem;
}

.section_header-description {
  max-width: 51rem;
  margin-left: auto;
  margin-right: auto;
}

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

.hubspot_field-inner {
  background-color: #fff;
  border-radius: .5rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  padding: 2rem;
}

.class-names_span {
  z-index: 1;
  color: #000;
  cursor: pointer;
  background-color: #bdfd2e;
  background-image: url('../images/Vector-17.svg');
  background-position: 10px;
  background-repeat: no-repeat;
  background-size: auto 60%;
  border-radius: .125rem;
  margin: .5rem;
  padding: .25rem .5rem .25rem 2rem;
  font-size: .875rem;
  font-weight: 600;
  display: inline-block;
  position: relative;
}

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

.section_heading {
  text-align: center;
  border-bottom: 1px solid #000;
  margin-bottom: 3rem;
  padding: 1.5rem;
}

.hs-input {
  color: #fff;
  background-color: #3b3b3b73;
  border: 1px solid #ececec;
  border-radius: .9rem;
  width: 100%;
  min-height: 3rem;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding: .25rem 1rem;
  font-size: 1.125rem;
}

.hs-input:focus {
  border-color: #150050;
}

.hs-input::placeholder {
  color: #ffffffc7;
  font-size: 1rem;
}

.hs-input.hs-fieldtype-textarea {
  min-height: 10rem;
}

.hs-button {
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #000;
  background-image: linear-gradient(#9b44e7, #3f0077);
  border: .1rem solid #5f00be;
  border-radius: .35rem;
  width: 100%;
  margin-top: 1.25rem;
  padding: .85rem .625rem;
  font-weight: 700;
  transition: all .25s;
  box-shadow: 0 2px 5px #8b44e780;
}

.hs-button:hover {
  color: #fff6e8;
  background-color: #282828;
  transform: scale(1.06);
}

.hs-error-msgs {
  color: #ef6051;
  background-color: #fff;
  border-radius: .25rem;
  margin-top: .25rem;
  margin-bottom: 0;
  padding: .15rem 1rem;
  font-size: .75rem;
  position: absolute;
  inset: auto 0% -.5rem auto;
  box-shadow: 0 2px 5px #00000026;
}

.hs-error-msgs.inputs-list {
  text-transform: uppercase;
  padding-left: 1rem;
  list-style-type: none;
  bottom: -1.3rem;
}

.hs-form-booleancheckbox-display {
  align-items: center;
  padding-left: 0;
  display: flex;
}

.form-message-error-2 {
  color: #fff6e8;
  background-color: #ef6051;
  margin-top: 1rem;
  padding: .75rem;
  font-size: 1rem;
}

.hs-recaptcha {
  margin-top: 1.5rem;
}

.custom-success-message {
  text-align: center;
  background-color: #efefef;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  padding: 2.75rem;
  font-size: 1rem;
  display: none;
}

.live_wrapper {
  grid-row-gap: 3rem;
  flex-direction: column;
  display: flex;
}

.live_heading {
  margin-bottom: 3rem;
}

.button-3 {
  opacity: 1;
  color: #000;
  cursor: pointer;
  background-color: #efff04;
  background-image: linear-gradient(#efff04, #8d9119);
  border: .05rem solid #d4da2b;
  border-radius: .6875rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1.25rem;
  padding: 1.2rem 0;
  font-size: 1.0625rem;
  font-weight: 700;
  transition: all .35s;
  display: flex;
  box-shadow: 0 0 8rem -.5rem #d4d8009e;
}

.button-3:hover {
  transform: scale(1.1);
}

.button-3.time {
  color: #fff;
  text-transform: uppercase;
  background-image: linear-gradient(#3fdcff, #0a3563);
  border-color: #079ed4;
  box-shadow: 0 0 5.4rem -.5rem #25e92c36;
}

.text-span-52 {
  color: #fff;
  -webkit-text-stroke-width: 0px;
  text-transform: uppercase;
  text-shadow: 0 1px 17px #00000047;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#9b44e7, #421c64);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Nunito Sans, sans-serif;
}

.image {
  padding-bottom: 10px;
}

.heading-57, .heading-58 {
  font-size: 2.3rem;
}

.heading-58.hidden {
  display: none;
}

.list-item {
  padding-left: 0;
}

.heading-59 {
  margin-top: .5rem;
  margin-bottom: .5rem;
  font-size: 2.5rem;
}

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

.text-span-53 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#c37fff, #7a00cc);
  -webkit-background-clip: text;
  background-clip: text;
}

.container-39 {
  z-index: 99;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.section-50 {
  background-color: #0c0c0c;
  padding-top: 20px;
  padding-bottom: 100px;
}

.section-50.white {
  z-index: 99999;
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding-top: 20px;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

.heading-65 {
  margin-bottom: 20px;
  font-size: 44px;
  line-height: 48px;
}

.heading-65.hero {
  z-index: 12;
  color: #fff;
  text-align: center;
  letter-spacing: .125px;
  margin-top: 40px;
  padding-left: 60px;
  padding-right: 60px;
  font-size: 3rem;
  line-height: 54px;
  position: relative;
}

.heading-65.hero.upsell-page {
  margin-top: 10px;
}

.countdown {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.countdown.upsell {
  height: 78px;
  padding-top: 8px;
  padding-bottom: 8px;
  display: none;
}

.countdown.upsell._1 {
  margin-top: 0;
  display: flex;
}

.countdown.sales-page {
  display: none;
}

.timer-bar {
  justify-content: center;
  align-items: center;
  width: 843px;
  display: flex;
}

.paragraph-3-copy {
  color: #fff;
  text-align: center;
  text-shadow: 0 0 .375rem #000000bd;
  margin-top: -.7rem;
  margin-bottom: 2.5rem;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 25px;
}

.box-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 50px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 5px 10px;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  font-size: 12px;
  line-height: 20px;
  display: flex;
}

.image-66 {
  width: 12%;
  max-width: none;
}

.video-7 {
  border-radius: 20px;
  margin-bottom: 0;
}

.link-2 {
  opacity: .75;
  color: #c9c9c9;
}

.hyperlink-upsell {
  color: #c9c9c9;
  text-align: center;
  cursor: pointer;
  border: 1px solid #9e9b9b;
  border-radius: 20px;
  margin-top: 10px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 5px 20px;
  font-size: 13px;
  font-weight: 400;
  transition: all .25s;
}

.hyperlink-upsell:hover {
  transform: scale(1.1);
}

.js-clock-2 {
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  display: flex;
}

.hero-text {
  flex-direction: column;
  align-items: center;
  width: 940px;
  display: flex;
  position: relative;
}

.button-4 {
  opacity: 1;
  color: #000;
  cursor: pointer;
  background-color: #efff04;
  background-image: linear-gradient(#ffea04, #918719);
  border: .05rem solid #d4da2b;
  border-radius: .6875rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1.25rem;
  padding: 1.2rem 0;
  font-size: 1.0625rem;
  font-weight: 700;
  transition: all .35s;
  display: flex;
  box-shadow: 0 0 8rem -.5rem #d4d8009e;
}

.button-4:hover {
  transform: scale(1.1);
}

.button-4.sale {
  box-shadow: none;
  outline-offset: -3px;
  background-image: linear-gradient(#efff04, #8d9119);
  border-style: solid;
  outline: 3px #00000030;
  margin-top: .125rem;
  margin-bottom: 10px;
}

.button-4.sale.upsell-1 {
  outline-offset: -3px;
  color: #fff;
  background-image: linear-gradient(#9b44e7, #3f0077);
  border-style: solid;
  border-color: #5f00be;
  outline: 3px #8b44e780;
  box-shadow: 0 0 8rem -.5rem #8b44e780;
}

.image-49 {
  max-width: 100%;
  position: relative;
  bottom: 3.2375rem;
  left: .2375rem;
}

.image-49.date {
  z-index: 10;
  filter: hue-rotate(335deg);
  position: absolute;
  inset: auto 0% 5% 30%;
}

.image-49.date.sales {
  opacity: .82;
  transform-style: preserve-3d;
  max-width: 70%;
  top: 19px;
  bottom: 11%;
  left: 8%;
  transform: scale3d(.9, 1.5, 1);
}

.break-line {
  justify-content: center;
  display: flex;
}

.sales-page-rescue {
  overflow: hidden;
}

.timer {
  z-index: 2147483647;
  width: auto;
  height: auto;
  position: static;
}

.clock-number-2 {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 30px;
}

.div-block-87 {
  border-radius: 20px;
  overflow: hidden;
}

.div-block-87._100-width {
  border: 2px solid #222;
  border-radius: 13px;
  width: 85%;
  height: auto;
  box-shadow: 0 2px 6rem -.5rem #8b44e780;
}

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

.clock-label-2 {
  color: #fff;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 0;
  margin-right: -5px;
  font-family: Lato, sans-serif;
  font-size: 8px;
  line-height: 13px;
}

.hero-cta-div-3 {
  flex-direction: column;
  align-items: center;
  width: 23.75rem;
  max-width: none;
  padding-top: 20px;
  display: none;
}

.section-51 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 5vw;
  display: flex;
  position: relative;
}

.section-51.thin-section {
  background-image: radial-gradient(circle, #deec0a, #ffbf00 33%, #006bff00);
  width: 90%;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 1px;
  padding-bottom: 0;
  overflow: hidden;
}

.section-51.thin-section.countdown {
  background-image: radial-gradient(circle, #9b44e7, #3f0077 33%, #006bff00);
  width: 100%;
}

.section-51.thin-section {
  background-image: radial-gradient(circle, #7f01fd, #4c0bcf 33%, #006bff00);
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 1px;
  padding-bottom: 1px;
  overflow: hidden;
}

.section-51.thin-section.hidden {
  display: none;
}

.padding-global-flex {
  z-index: 5;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 0;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: relative;
}

.padding-global-flex.more-space {
  margin-bottom: 80px;
}

.padding-global-flex.medium-space {
  margin-bottom: 20px;
}

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

.text-size-medium-copy.hidden {
  width: 80%;
}

.big-paragraph-4 {
  color: #8d93a3;
  text-align: center;
  width: 85%;
  margin-bottom: 0;
  font-size: 1.15rem;
  line-height: 150%;
}

.big-paragraph-4.smaller {
  color: #6b7180;
  width: auto;
  max-width: 700px;
  margin-top: 10px;
  font-size: .9rem;
}

.section-52 {
  background-image: linear-gradient(#6d3599, #3e0573);
}

.image-67 {
  width: 300px;
  margin-right: 20px;
}

.div-block-88 {
  background-color: #030915;
  border: 1px solid #5a5a5a36;
  border-radius: 20px;
  flex-flow: column;
  margin-top: 0;
  margin-bottom: 0;
  padding: 10px 20px;
  display: flex;
}

.div-block-88.margin-bottom {
  padding-bottom: 15px;
}

.paragraph-4 {
  color: #5f00be;
  font-weight: 800;
}

.div-block-89 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 20px;
  display: flex;
}

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

.grid {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-columns: 1fr 1fr 1fr;
}

.container-41 {
  max-width: 1200px;
}

.list {
  color: #fff;
}

.course-name-2 {
  color: #fff;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 32px;
}

.course-name-2.more-margin-bottom {
  text-align: center;
  padding-bottom: 0;
  line-height: 20px;
}

.paragraph-80 {
  color: #9a9a9a;
  text-align: left;
  -webkit-text-stroke-color: #a68a8a;
  text-transform: none;
  font-size: 17px;
  font-weight: 400;
  line-height: 27px;
}

.image-113 {
  margin-top: 20px;
}

.content-block {
  z-index: 99;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.image-114 {
  padding-left: 10px;
}

.image-111 {
  border-radius: 7px;
  width: 200px;
  max-width: 100%;
  margin-left: 100px;
  margin-right: -50px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.image-111.box-shadow {
  box-shadow: 0 0 20px #0003;
}

.image-107 {
  max-width: 140%;
  margin-left: 100px;
  margin-right: -50px;
}

.image-107.bigger {
  margin-left: 60px;
}

.container-47 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  display: flex;
}

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

.text-span-68 {
  color: #009b0a;
  font-size: 23px;
}

.separator-div-mobile.hidden-desktop {
  display: none;
}

.heading-86 {
  color: #006eff;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(45deg, #006eff, #03e5b4);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
}

.heading-86.subtitles {
  color: #068dfb;
  letter-spacing: 4px;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.div-block-144 {
  align-items: center;
  padding-top: 5px;
  padding-bottom: 20px;
  display: flex;
}

.div-block-144.margin-bottom {
  padding-bottom: 0;
}

.separator-div-2-mobile {
  display: none;
}

.gradient-border-div-2 {
  background-image: linear-gradient(342deg, #086cf8, #030915 53%, #086cf8);
  border-radius: 20px;
  margin-top: 60px;
  padding: 2px;
  box-shadow: 0 0 40px -2px #0976fb30;
}

.grid-12 {
  grid-column-gap: 59px;
  grid-template-columns: 1.5fr 1.75fr;
}

.grid-12._6-design {
  grid-column-gap: 0px;
  box-shadow: none;
  background-color: #030915;
  border: 1px #5a5a5a36;
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 2.5fr 1.5fr;
  align-content: center;
  align-items: center;
  margin-top: 0;
  padding: 50px 20px 50px 60px;
}

.grid-12._6-design.margin-bottom {
  padding-bottom: 10px;
}

.grid-12._6-design.overflow {
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.button-9 {
  z-index: 2;
  color: #fff;
  background-color: #ffffff1a;
  border: 1px solid #fff;
  border-radius: 6px;
  margin-top: 10px;
  font-weight: 700;
  position: relative;
  box-shadow: 0 0 19px #0003;
}

.gradient-border-div-3 {
  background-image: linear-gradient(342deg, #3f0077, #030915 53%, #3f0077);
  border-radius: 20px;
  margin-top: 60px;
  padding: 2px;
  box-shadow: 0 0 40px -2px #7209fb30;
}

.paragraph-75 {
  color: #9a9a9a;
  text-align: left;
  -webkit-text-stroke-color: #a68a8a;
  text-transform: none;
  font-size: 17px;
  font-weight: 400;
  line-height: 27px;
}

.f-container-regular-4 {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.f-container-regular-4.larger {
  max-width: 1920px;
  padding-top: 0;
}

.text-span-78 {
  letter-spacing: 3px;
}

.text-span-24 {
  text-align: left;
  letter-spacing: .0625rem;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-color: #fff0;
  background-clip: border-box;
}

.text-span-24.educate-pillars {
  -webkit-text-fill-color: transparent;
  background-image: url('../images/GRADIENT-FOR-TEXT_1GRADIENT%20FOR%20TEXT.webp');
  background-position: 0 0;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
}

.div-block-130 {
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 0 10px 10px;
  display: flex;
}

.text-span-73 {
  color: #009b0a;
  font-size: 23px;
}

.wrapper-11 {
  z-index: 10;
  width: 100%;
  max-width: 1300px;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.wrapper-11.opportunities {
  align-self: center;
  margin-bottom: 0;
}

.image-89 {
  padding-left: 10px;
}

.div-block-140 {
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 0 10px 10px;
  display: flex;
}

.div-block-140.bit-margin-top {
  padding-top: 30px;
}

.div-block-140.margin-top {
  padding-top: 80px;
}

.div-block-140.margin-top.margin-bottom {
  padding-bottom: 70px;
}

.title-wrap-centre-4 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: -20px;
  display: flex;
}

.text-size-h2-2 {
  color: #fff;
  letter-spacing: -.04em;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  font-size: 4em;
  font-weight: 500;
  line-height: .9;
}

.text-size-h2-2.top {
  text-align: center;
  letter-spacing: 0;
  text-transform: capitalize;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#b1b1b18c, #fff 0%, #ebebebe0 58%, #0000);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 5px;
  padding-bottom: 10px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 4em;
  font-weight: 500;
  line-height: 1;
}

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

.feature-section-2 {
  background-color: #030915;
  flex-direction: column;
  align-items: center;
  padding: 5rem 4rem;
  display: flex;
  position: relative;
}

.feature-section-2.first {
  background-color: #030915;
  padding-top: 1rem;
}

.feature-section-2.first.after-time-line {
  padding-top: 6rem;
  padding-bottom: 0;
}

.feature-section-2.first.after-time-line.all-included {
  background-color: #030815;
  padding-bottom: 4rem;
}

.div-block-103 {
  align-items: center;
  padding-top: 5px;
  padding-bottom: 20px;
  display: flex;
}

.div-block-103.margin-bottom {
  padding-bottom: 0;
}

.text-block-96 {
  font-size: 1.2rem;
  font-weight: 400;
}

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

.gradient-border-popular-offer {
  background-image: linear-gradient(326deg, #076af4, #030915 49%, #086af5);
  border-radius: 24px;
  padding: 2px;
  transition: all .2s;
  position: relative;
  transform: none;
  box-shadow: 0 0 70px #0986fb30;
}

.gradient-border-popular-offer:hover {
  transform: translate(0, -6px);
}

.gradient-border-popular-offer._2-types {
  background-image: linear-gradient(326deg, #7100d6, #030915 49%, #7100d6);
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 0 70px #9209fb30;
}

.open-close-line---brix-2 {
  background-color: #fff;
  border-radius: 500px;
  width: 100%;
  height: 2px;
  position: absolute;
}

.open-close-line---brix-2.second-line---brix {
  background-color: #fff;
  transform: rotate(90deg);
}

.logo-an-small-faq-2 {
  width: 200px;
}

.accordion-tabs---brix {
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.accordion-item-title---brix-8 {
  color: #fff;
  font-family: Nunito Sans, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.accordion-trigger---brix {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.accordion-paragraph---brix-5 {
  color: #bdbdbd;
  width: 100%;
  max-width: 90%;
  margin-top: 18px;
  margin-bottom: 0;
  font-family: Nunito Sans, sans-serif;
  font-size: 1rem;
}

.tabs-container---brix-5 {
  padding: 0 20px 20px;
  overflow: visible;
}

.gradient-circle-2 {
  opacity: 1;
  filter: blur(200px);
  background-color: #006fff;
  border-radius: 1000%;
  width: 80%;
  height: 300px;
  position: absolute;
}

.gradient-circle-2.top {
  z-index: 1;
  filter: blur(150px);
  background-color: #006fff;
  top: -200px;
  overflow: visible;
}

.accordion-item-wrapper---brix-3 {
  max-width: 886px;
  margin-left: auto;
  margin-right: auto;
}

.accordion-item-wrapper---brix-3.tabs-accordion---brix {
  box-shadow: none;
  background-color: #bfbfe200;
  border: 0 #fff;
  border-radius: 17px;
  max-width: 700px;
  padding: 50px 90px 58px;
  font-family: Montserrat, sans-serif;
}

.tab---brix-2 {
  background-image: none;
  border: 1px #ffffff1f;
  border-radius: 20px;
  padding: 0;
}

.borderr-red-pricing {
  background-image: linear-gradient(#7100d6, #030915);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding-top: 2px;
  padding-left: 2px;
  padding-right: 2px;
}

.discount-percentage {
  color: #fb4409;
  background-color: #fb440900;
  border-radius: 0;
  width: auto;
  height: 30px;
  padding-left: 10px;
  font-family: Oswald, sans-serif;
  font-size: 20px;
  line-height: 23px;
  display: none;
  position: absolute;
  inset: 15px 53px auto auto;
}

.open-close-icon-wrapper---brix-3 {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 14px;
  min-height: 14px;
  display: flex;
  position: relative;
}

.accordion-item---brix-2 {
  cursor: pointer;
  background-color: #fff;
  border-radius: 14px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 40px;
  display: flex;
}

.accordion-item---brix-2.tabs-accordion---brix {
  z-index: 99999999;
  background-color: #fff0;
  border-bottom: 1px solid #4e647a;
  border-radius: 0;
  padding: 30px 0;
  transition: padding .2s;
  position: relative;
}

.accordion-item---brix-2.tabs-accordion---brix:hover {
  padding-left: 16px;
}

.accordion-item---brix-2.tabs-accordion---brix.last-accordion-item---brix {
  border-bottom-style: none;
}

.accordion-content---brix {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
}

.gradient-bg {
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

.gradient-bg.top {
  background-image: linear-gradient(#2167ff26, #0000);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.gradient-bg.top.faq {
  z-index: 99;
  background-color: #030915;
  background-image: none;
  border-style: none;
  border-width: 0;
  border-radius: 24px;
  min-height: auto;
  position: absolute;
  inset: 2px;
}

.gradient-bg.top.footer-component {
  background-image: linear-gradient(#2167ff26, #0000);
  min-height: auto;
}

.price-rectangle-3 {
  z-index: 0;
  background-color: #030915;
  border-radius: 20px 20px 0 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 80px;
  display: flex;
  position: relative;
}

.faq-2031 {
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 20px;
  display: flex;
}

.faq-2031.accordion {
  padding-top: 20px;
}

.faq-2031.bg-color {
  background-color: #030815;
}

.section-53 {
  background-image: linear-gradient(#000, #030815);
}

.container-50 {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.container-50.scroll {
  justify-content: center;
  align-items: flex-start;
  max-width: 100%;
  margin-top: 0;
  padding-bottom: 10px;
  display: flex;
}

.fill-wrap-6 {
  border: 2px dashed #eee;
  width: 1.8px;
  position: absolute;
  inset: 5% auto 0% 0%;
}

.fill-wrap-6._2 {
  background-color: #eeeeee2e;
  border-style: none;
  width: 1px;
  position: absolute;
  top: 0%;
  left: 25%;
}

.progress-line-2 {
  background-color: #030915;
}

.progress-line-2.rop {
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 0;
}

.progress-line-2.rop.bg-color {
  background-color: #030815;
}

.fill-line-4 {
  background-color: #6c5afb;
  border-radius: 3px;
  width: 3.5px;
  height: 0%;
  position: absolute;
  inset: 0% 0% auto -2px;
}

.fill-line-4._2 {
  background-color: #fff;
  background-image: linear-gradient(#3f0077, #9b44e7);
  width: 1px;
  left: 0;
  box-shadow: 0 0 30px 6px #0048ff36;
}

.scroll-flex-4 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 80px;
  display: flex;
}

.scroll-wrap-2 {
  grid-row-gap: 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 300px;
  display: flex;
  position: relative;
}

.gradient-circle-3 {
  opacity: 1;
  filter: blur(200px);
  background-color: #006fff;
  border-radius: 1000%;
  width: 80%;
  height: 300px;
  position: absolute;
}

.gradient-circle-3.top {
  z-index: 1;
  filter: blur(150px);
  background-color: #a100ff;
  top: -200px;
  overflow: visible;
}

.image-95 {
  width: 200px;
  max-width: none;
  margin-bottom: 20px;
}

.image-95.smaller {
  width: 120px;
}

.footer-section-4 {
  background-color: #030815;
  padding-left: 40px;
  padding-right: 40px;
}

.footer-section-4.margin-top {
  margin-top: 220px;
}

.footer-top-2 {
  z-index: 20;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 40px;
  display: flex;
  position: relative;
}

.container-49 {
  flex-direction: column;
  align-items: center;
  font-family: Inter, sans-serif;
  display: flex;
}

.footer-bottom-2 {
  width: 100%;
  max-width: 1440px;
  padding-top: 4rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

.gradient-line-2 {
  opacity: .8;
  background-image: linear-gradient(to right, #0000, #006fff 25%, #b7bbc5 50%, #006fff 70%, #0000);
  width: 100%;
  height: 1px;
  position: absolute;
}

.gradient-line-2.top {
  background-image: linear-gradient(to right, #0000, #006fff 25%, #03e5b4 50%, #006fff 70%, #0000);
  top: 0;
}

.gradient-border-div-3-copy {
  background-image: linear-gradient(304deg, #7100d6, #030915 53%, #7100d6);
  border-radius: 20px;
  margin-top: 60px;
  padding: 2px;
  box-shadow: 0 0 40px -2px #7209fb30;
}

.text-span-61 {
  color: #009b0a;
  font-size: 23px;
}

.text-span-61.smaller {
  font-size: 19px;
}

.brix---text-200-list-bold {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.text-span-79 {
  color: #009b0a;
}

.profile-images-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  padding-bottom: 0;
  display: flex;
}

.people-group-image {
  margin-right: 10px;
}

.follower-number {
  color: #99a1ba;
  text-align: center;
  font-size: 14px;
  line-height: 21px;
}

.follower-number.description {
  color: #575d6e;
  text-align: center;
  max-width: 650px;
  margin-top: 10px;
  line-height: 20px;
}

.follower-number.darker {
  color: #957bad;
  font-size: 14px;
  line-height: 19px;
}

.tag-span {
  color: #fff;
}

.clock-number-4 {
  color: #fff;
  font-family: Oswald, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
}

.paragraph-33-copy-2-copy {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  font-size: 19px;
  line-height: 26px;
}

.paragraph-33-copy-2-copy.height {
  line-height: 27px;
}

.paragraph-33-copy-2-copy.height.smaller {
  color: #fff;
  text-align: left;
  padding-left: 20px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  display: block;
}

.paragraph-33-copy-2-copy.height.smaller.desktop {
  padding-left: 80px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  line-height: 22px;
  display: none;
}

.brix---header-right-col {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.paragraph-33-copy-2 {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  font-size: 19px;
  line-height: 26px;
}

.paragraph-33-copy-2.height {
  line-height: 27px;
}

.paragraph-33-copy-2.height.smaller {
  color: #fff;
  text-align: left;
  padding-left: 20px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  display: block;
}

.paragraph-33-copy-2.height.smaller.desktop {
  padding-left: 80px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  line-height: 22px;
}

.paragraph-33-copy-2.height.smaller.mobile {
  display: none;
}

.brix---container-default {
  justify-content: center;
  max-width: 1218px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.brix---header-content-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  display: flex;
  position: relative;
}

.brix---hamburger-menu-wrapper {
  padding: 0;
  transition: transform .3s;
}

.brix---hamburger-menu-wrapper:hover {
  transform: scale(.96);
}

.brix---hamburger-menu-wrapper.w--open {
  background-color: #0000;
}

.js-clock-4 {
  z-index: 9999;
  display: flex;
  position: relative;
}

.box-4 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 50px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 5px 10px;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  font-size: 12px;
  line-height: 20px;
  display: flex;
}

.an-blurry-logo {
  z-index: 9995;
  max-width: 375px;
  margin-left: -20px;
  display: none;
  position: absolute;
  inset: -31% auto auto 28%;
}

.brix---header-wrapper {
  background-color: #030915;
  width: 100%;
  padding: 10px 100px 10px 120px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  display: block;
}

.brix---header-wrapper.hidden {
  display: none;
}

.brix---hamburger-menu-bar-bottom {
  background-color: #211f54;
  border-radius: 20px;
  width: 52px;
  height: 4px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.bold-text-73 {
  font-weight: 600;
}

.brix---hamburger-menu-bar-top {
  background-color: #211f54;
  border-radius: 20px;
  width: 52px;
  height: 4px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.ben-childs-section, .george-brock-section {
  background-image: linear-gradient(#0006, #0006), url('../images/AA-hubspot-Heading.png');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  height: auto;
  display: none;
}

.confirmation-text-4 {
  color: #adadad;
  text-align: center;
  padding-top: .3125rem;
  font-family: Montserrat, sans-serif;
  font-size: .75rem;
}

.confirmation-text-4.lighter {
  color: #957bad;
  text-transform: none;
  font-family: Nunito Sans, sans-serif;
}

.quick-stack {
  width: 1200px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.quick-stack.margin-top {
  width: 1200px;
  padding-top: 40px;
}

.div-block-62 {
  justify-content: space-around;
  align-items: center;
  margin-top: 20px;
  margin-bottom: -10px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.paragraph-43 {
  color: #e2e2e2;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 16px;
}

.image-37 {
  margin-left: 10px;
}

.image-37.lock {
  margin-left: 0;
}

.div-block-63 {
  margin-left: 8px;
}

.paragraph-44 {
  color: #fff;
  margin-bottom: 0;
  line-height: 1.3;
}

.bold-text-26 {
  color: #b299c9;
  font-size: 13px;
  font-weight: 800;
  line-height: .9;
}

.paragraph-45 {
  color: #957bad;
  margin-bottom: 0;
  font-size: .75rem;
  font-weight: 300;
  line-height: 1;
}

.div-block-145 {
  align-items: center;
  display: flex;
}

.pricing-content-top-copy {
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.pricing-content-top-copy.v3 {
  justify-content: space-between;
  align-items: flex-end;
}

.pricing-logo-copy {
  width: 175px;
}

.div-block-88-copy {
  background-color: #030915;
  border: 1px solid #5a5a5a36;
  border-radius: 20px;
  flex-flow: column;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px;
  display: flex;
}

.div-block-88-copy.margin-bottom {
  padding-bottom: 15px;
}

.text-block-97-copy {
  padding-right: 40px;
}

.gradient-border-div-3-copy-copy {
  background-image: linear-gradient(304deg, #7100d6, #030915 53%, #7100d6);
  border-radius: 20px;
  max-width: 750px;
  margin-top: 60px;
  padding: 2px;
  box-shadow: 0 0 40px -2px #7209fb30;
}

.gradient-border-div-3-copy-copy.hidden {
  display: none;
}

.text-block-98 {
  margin-top: 10px;
}

.image-115 {
  width: 250px;
  margin-top: 10px;
}

.text-block-98-copy {
  margin-top: 10px;
}

.div-block-146 {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 50px;
  display: flex;
}

.image-116 {
  margin-right: 10px;
}

.paragraph-82 {
  font-size: 1.15rem;
}

.grid-13 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.container-51 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1300px;
  display: flex;
}

.hidden-elements {
  flex-flow: column;
  display: none;
}

.hidden-elements.show {
  display: block;
}

.timer-bar-2 {
  justify-content: center;
  align-items: center;
  width: 843px;
  display: flex;
}

.clock-label-3 {
  color: #fff;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 0;
  margin-right: -5px;
  font-family: Lato, sans-serif;
  font-size: 8px;
  line-height: 12px;
}

.clock-number-3 {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}

.bold-text-69 {
  font-weight: 600;
}

.miro-board-image {
  min-width: 800px;
  margin-bottom: -25px;
}

.miro-board-image._6-step-onboarding {
  min-width: 700px;
  margin-top: -20px;
  margin-bottom: -46px;
}

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

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

.faq-question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-transform: none;
  cursor: pointer;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.faq-question.top {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
}

.faq-answer {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: #ffffffb5;
  flex-flow: column;
  padding-bottom: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  overflow: hidden;
}

.faq-answer.botoom {
  padding-bottom: 1.5rem;
}

.dl-faq-component {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.dl-faq-accordion {
  z-index: 999;
  color: #fff;
  background-color: #6e6e6e1c;
  border: 2px solid #ffffff1a;
  border-radius: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  position: relative;
}

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

.follower-number-2 {
  color: #99a1ba;
  font-size: 15px;
  line-height: 26px;
}

.sales-button-7 {
  font-variation-settings: "wdth" 90, "wght" 800;
  letter-spacing: .05rem;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #444ce7;
  background-image: linear-gradient(#444ce7, #2d3282);
  border: 2px solid #444ce7;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0;
  padding: 1.2rem 0;
  font-size: 1.1rem;
  font-weight: 800;
  transition: transform .35s;
  display: flex;
  box-shadow: 0 0 8rem -.5rem #444ce7;
}

.sales-button-7:hover {
  transform: scale(1.02);
}

.sales-button-7.yellow {
  background-image: linear-gradient(#9b44e7, #3f0077);
  border-color: #5f00be;
  box-shadow: 0 0 8rem -.5rem #8b44e780;
}

.sales-button-7.yellow:hover {
  transform: scale(1.08);
}

.link-block {
  z-index: 9999;
  margin-bottom: 20px;
  margin-right: 40px;
  position: fixed;
  inset: auto 0% 0% auto;
}

.image-73 {
  border-radius: 100px;
  max-width: 100%;
  margin-bottom: 0;
  margin-right: 0;
  transition: all .25s;
  position: static;
  inset: auto 0% 0% auto;
  box-shadow: 2px 0 40px 20px #acacac40;
}

.image-73:hover {
  transform: scale(1.2);
}

.div-block-147 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.faq-header {
  font-size: 1.7rem;
}

.top-question-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.faq-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-transform: none;
  cursor: pointer;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.faq-wrapper.top {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
}

.bottom-faq {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: #ffffffb5;
  flex-flow: column;
  padding-bottom: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  overflow: hidden;
}

.bottom-faq.botoom {
  padding-bottom: 1.5rem;
}

.heading-90 {
  margin-top: .5rem;
  margin-bottom: .5rem;
  font-size: 2.5rem;
}

.container-52 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-148 {
  z-index: 9;
  background-image: url('../thumbnail-aa-page_1.avif');
  background-position: 0 0;
  background-size: cover;
  width: 750px;
  height: 422px;
  position: absolute;
}

.h5-2 {
  font-size: 16px;
  font-weight: 500;
}

.table3_component {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #fff;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 1.25fr 1fr;
}

.icons {
  height: 1.5rem;
}

.logo-compare {
  height: 2rem;
  display: block;
}

.logo-compare.is-inverse {
  filter: none;
}

.table3_component-cell {
  color: #000;
  background-color: #f7f7f730;
  border-bottom: 2px solid #fff;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.table3_component-cell.top-align {
  border-bottom-style: none;
}

.table3_component-cell.top-align.highlight {
  -webkit-text-stroke-color: #7100d6;
  background-color: #7100d6;
  border-bottom-style: none;
  border-left-color: #7100d6;
  border-right-color: #7100d6;
  height: auto;
  padding-top: 0;
  padding-bottom: 1.25rem;
}

.table3_component-cell.highlight {
  color: #3d348b;
  background-color: #0c0c0c;
  border: 1px #000;
  border-left: 2px solid #7100d6;
  border-right: 2px solid #7100d6;
}

.table3_component-cell.highlight.multiple-line {
  flex-flow: column;
}

.table3_component-cell.left {
  color: #fff;
  border-bottom-color: #494949;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-right: 1rem;
}

.table3_component-cell.left.bottom {
  border-bottom-style: none;
  border-bottom-left-radius: 8px;
}

.table3_component-cell.left.top-left {
  border-top-left-radius: 8px;
}

.table3_component-cell.right {
  color: #fff;
  background-color: #f7f7f736;
  border-bottom-color: #494949;
}

.table3_component-cell.right.bottom {
  border-bottom-style: none;
  border-bottom-right-radius: 8px;
}

.table3_component-cell.empty {
  background-color: #0000;
  border-bottom-style: none;
  height: 16px;
}

.table3_component-cell.empty.highlight.bottom {
  background-color: #0c0c0c;
  border-bottom: 2px solid #7100d6;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.table3_component-cell.empty.highlight.top {
  -webkit-text-stroke-color: #7100d6;
  background-color: #7100d6;
  border-top: 2px solid #7100d6;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.table3_component-cell.white {
  background-color: #fff0;
  border-bottom-style: none;
  border-bottom-color: #494949;
}

.table3_component-cell.top-right {
  border-top-right-radius: 8px;
}

.bold-text-75 {
  color: #fff;
  font-size: 1rem;
}

.image-117 {
  width: 750px;
  height: 422px;
}

.container-53 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.youtube {
  min-width: 650px;
}

.affiliate-image-wrapper {
  width: 56%;
  height: auto;
}

.static-page-button {
  color: #080808;
  cursor: pointer;
  background-color: #fff;
  border-radius: 100px;
  padding: 18px 50px;
  font-family: Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  transition: transform .2s, background-color .2s;
}

.static-page-button:hover {
  background-color: #fffc;
  transform: scale(1.03);
}

.static-page-button.flozy {
  border-radius: 12px;
  margin-top: 10px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.hero_text {
  grid-column-gap: .8rem;
  grid-row-gap: .8rem;
  flex-flow: column;
  display: flex;
}

.hero_text.align-center {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.affiliate-image {
  width: 100%;
}

.affiliate-image.flozy-laptop {
  margin-bottom: 0;
}

.hero-wrapper {
  z-index: 10;
  margin-top: -60px;
  position: relative;
}

.margin-top-2 {
  margin-top: 0;
}

.section_hero {
  height: 100vh;
}

.section_hero.align-middle-center {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: auto;
}

.text-color-darker {
  color: #c2c2c2;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

.text-color-white-2 {
  color: #fff;
}

.text-color-white-2.big-text {
  font-size: 3.4rem;
  line-height: 3.4rem;
}

.text-color-white-2.big-text.max-width-xlarge {
  max-width: 60rem;
}

.padding-global-3 {
  z-index: 2;
  width: 90%;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.padding-global-3.padding-section-hero {
  padding-top: 7rem;
  padding-bottom: 2rem;
}

.padding-global-3.padding-section-hero.thank-you {
  padding-top: 2rem;
}

.hero_text-paragraph {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.hero_column-wrapper {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  text-align: center;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.body-aa {
  background-color: #030523;
  background-image: linear-gradient(#000429, #0a0a0d);
}

.body-2 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media screen and (min-width: 1280px) {
  .text-size-h2-2.top {
    padding-left: 40px;
    padding-right: 40px;
  }

  .text-block-96 {
    line-height: 20px;
  }

  .container-50.scroll {
    margin-bottom: 0;
    padding-top: 0;
  }
}

@media screen and (min-width: 1440px) {
  .gradient-bg.top.footer-component {
    width: 1440px;
  }

  .footer-section-4 {
    justify-content: center;
    display: flex;
  }

  .brix---header-content-wrapper {
    width: 100%;
    position: relative;
  }

  .an-blurry-logo {
    top: -124%;
    left: -6%;
  }

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

@media screen and (min-width: 1920px) {
  .margin-bottom.margin-small.sales-page {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .spacer-huge.hidden-desktop {
    display: block;
  }

  .hero-section {
    height: auto;
    padding-bottom: 0;
  }

  .hero-section.customer-portal {
    padding-bottom: 0;
  }

  .button-3.time {
    font-size: 1.2rem;
  }

  .section-50.white {
    background-image: linear-gradient(0deg, #080808, #1f1e1e00 64%, #080808b5 103%), linear-gradient(#0000, #0000);
    overflow: hidden;
  }

  .heading-65.hero.upsell-page {
    margin-top: 40px;
  }

  .image-49.date.sales {
    top: 47px;
  }

  .padding-global-flex {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .big-paragraph-4 {
    width: 100%;
    max-width: 750px;
  }

  .course-name-2 {
    text-align: left;
  }

  .text-size-h2-2.top {
    max-width: 1400px;
  }

  .gradient-bg.top.footer-component {
    width: 1440px;
    max-width: 1440px;
  }

  .footer-section-4 {
    justify-content: center;
    padding-left: 140px;
    padding-right: 140px;
    display: flex;
  }

  .paragraph-33-copy-2-copy.height.smaller.desktop, .paragraph-33-copy-2.height.smaller.desktop, .brix---header-wrapper {
    padding-left: 140px;
  }

  .ben-childs-section {
    height: auto;
    padding-bottom: 100px;
  }

  .ben-childs-section.customer-portal {
    padding-bottom: 0;
  }

  .george-brock-section {
    height: auto;
    padding-bottom: 100px;
  }

  .george-brock-section.customer-portal {
    padding-bottom: 0;
  }

  .container-51 {
    max-width: 1200px;
  }

  .youtube {
    min-width: 850px;
  }
}

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

  .button-group.is-center.max-width-large {
    width: 70%;
  }

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

  .navbar-container {
    grid-auto-columns: 1fr;
    display: grid;
  }

  .navbar-menu-dropdown-button {
    margin-left: -.5rem;
    padding: 0;
  }

  .navbar-menu-dropdown-button.w--open {
    background-color: #0000;
  }

  .navbar3_dropdown-toggle {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: .75rem 2rem .75rem 0;
    position: relative;
  }

  .navbar-link {
    padding: .75rem 0;
    font-size: 1.125rem;
    position: static;
  }

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

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

  .navbar-logo-link-menu {
    float: none;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    display: flex;
    position: static;
  }

  .navbar3_menu-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.125rem;
    display: block;
    position: relative;
  }

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

  .navbar3_dropdown-list.w--open {
    border-style: none;
    padding: 0;
    position: static;
  }

  .navbar-tablet-menu-dropdown {
    width: 100%;
    margin-top: 1.5rem;
    margin-left: 0;
    margin-right: 0;
    display: inline-block;
  }

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

  .navbar-menu-background {
    z-index: 0;
    background-color: #00000080;
    width: 100vw;
    height: 100vh;
    padding-bottom: 0;
    padding-right: 0;
    display: none;
    position: absolute;
    inset: 0%;
  }

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

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

  .navbar3_dropdown-link {
    padding: .75rem 0 .75rem 5%;
  }

  .navbar-menu-links {
    z-index: 1;
    background-color: var(--background-color--background-primary);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    border-right: 1px solid #000;
    flex-direction: column;
    justify-content: center;
    width: 80vw;
    height: 100dvh;
    margin-left: 0;
    padding-bottom: 6.5rem;
    padding-left: 5vw;
    padding-right: 5vw;
    transition: height .5s;
    display: block;
    position: absolute;
    inset: 0% auto 0% 0%;
    overflow: auto;
  }

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

  .hero-video-wistia {
    width: 99.9%;
    height: 100%;
  }

  .hero-video-wrapper {
    width: 100%;
  }

  .hero-section {
    height: auto;
  }

  .timeline-item {
    grid-template-columns: 1fr 10rem 1fr;
  }

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

  .feature-card-content {
    padding: 2rem;
  }

  ._4-feature-content-bottom {
    grid-column-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .background-image {
    margin-top: -70px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .gradient-overlay-background {
    background-image: linear-gradient(180deg, #0000 15%, var(--base-color-brand--black) 63%);
  }

  .episodes-list {
    grid-template-columns: 1fr 1fr;
  }

  .sitcky-button-wrapper {
    z-index: 9999;
    background-image: linear-gradient(#0000, #000 84%);
    width: 100%;
    display: block;
    position: sticky;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .survey-video-wrapper._100-width {
    width: 100%;
  }

  .div-block-76 {
    margin-bottom: 1.25rem;
  }

  .div-block-76.headline-ty {
    width: 100%;
  }

  .whatsapp-button-group {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .steps-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .button-main.new {
    margin-left: .625rem;
    margin-right: .625rem;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }

  .button-main.new._3 {
    display: block;
  }

  .button-main.new._3.extra-space {
    width: 80%;
  }

  .button-main.new._3.whatsapp {
    width: 80%;
    height: 3.5rem;
    display: flex;
  }

  .section-22.thank-you {
    padding-bottom: 2rem;
  }

  .step-1 {
    flex-flow: column;
  }

  .step1-div {
    width: 90%;
  }

  .button-group-wrapper {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    display: flex;
  }

  .x-button {
    color: #000;
  }

  .bold-text-34, .bold-text-35 {
    color: #333;
    font-family: Varela Round, sans-serif;
  }

  .section_hubspot-form {
    padding: 1rem;
  }

  .hs-form-field {
    margin-right: 0;
  }

  .form-columns-2 {
    display: block;
  }

  .section_heading {
    margin-bottom: 3rem;
  }

  .section-50 {
    background-position: 100% 100%;
    background-size: 450px;
  }

  .section-50.white {
    padding-top: 0;
  }

  .heading-65.hero {
    font-size: 2.3rem;
    line-height: 47px;
  }

  .timer-bar {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-text {
    width: 750px;
    padding-top: 20px;
  }

  .image-49.date.sales {
    max-width: 35%;
    top: 147px;
    left: 59%;
  }

  .section-51 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-51.thin-section {
    margin-top: 0;
  }

  .section-51.thin-section.countdown {
    margin-bottom: 0;
  }

  .section-51.thin-section {
    margin-top: 0;
    margin-bottom: 48px;
  }

  .big-paragraph-4 {
    width: 90%;
    margin-bottom: 0;
    font-size: 1.05rem;
  }

  .paragraph-80 {
    font-size: 16px;
    line-height: 24px;
  }

  .content-block {
    width: 100%;
  }

  .image-111 {
    max-width: 75%;
    margin-top: -175px;
    margin-left: 0;
    margin-right: 0;
  }

  .image-107 {
    max-width: 75%;
    margin-top: -202px;
    margin-left: 0;
    margin-right: 0;
  }

  .separator-div-mobile, .separator-div-2-mobile {
    margin-top: 220px;
  }

  .gradient-border-div-2 {
    margin-top: 201px;
  }

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

  .grid-12._6-design {
    grid-row-gap: 0px;
    grid-template-rows: minmax(auto, 1fr) auto;
    grid-template-columns: 2.5fr;
    justify-items: center;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .grid-12._6-design.overflow {
    grid-auto-columns: 1fr;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .gradient-border-div-3 {
    margin-top: 201px;
  }

  .paragraph-75 {
    font-size: 16px;
    line-height: 24px;
  }

  .div-block-130, .div-block-140 {
    padding-top: 10px;
    padding-bottom: 15px;
  }

  .div-block-140.margin-top, .div-block-140.margin-top.margin-bottom {
    padding-top: 20px;
  }

  .text-size-h2-2.top {
    margin-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 3em;
  }

  .feature-section-2 {
    display: block;
  }

  .feature-section-2.first.after-time-line {
    padding-top: 0;
    display: block;
  }

  .feature-section-2.first.after-time-line.all-included {
    display: flex;
  }

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

  .faq-2029 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .accordion-item-title---brix-8 {
    max-width: 88%;
  }

  .accordion-paragraph---brix-5 {
    max-width: 100%;
  }

  .tabs-container---brix-5 {
    width: 90%;
    padding-left: 0;
    padding-right: 0;
  }

  .accordion-item-wrapper---brix-3.tabs-accordion---brix {
    max-width: 100%;
    padding: 32px 64px;
  }

  .container-50 {
    width: 90%;
  }

  .progress-line-2 {
    display: none;
  }

  .progress-line-2.rop {
    display: block;
  }

  .scroll-flex-4 {
    grid-row-gap: 40px;
    flex-direction: column;
    align-items: flex-start;
  }

  .scroll-wrap-2 {
    width: 70%;
    height: 200px;
    font-size: 15px;
  }

  .footer-top-2 {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-direction: column;
  }

  .gradient-border-div-3-copy {
    margin-top: 201px;
  }

  .clock-number-4 {
    font-size: 25px;
  }

  .paragraph-33-copy-2-copy {
    font-size: 18px;
  }

  .paragraph-33-copy-2-copy.height.smaller.desktop {
    font-size: 12px;
    line-height: 20px;
  }

  .paragraph-33-copy-2 {
    font-size: 18px;
  }

  .paragraph-33-copy-2.height.smaller.desktop {
    font-size: 12px;
    line-height: 20px;
  }

  .brix---header-content-wrapper {
    justify-content: space-around;
    width: 100%;
    margin-left: 0;
  }

  .brix---hamburger-menu-wrapper {
    order: -1;
    transition: transform .3s;
    display: flex;
  }

  .brix---hamburger-menu-wrapper:hover {
    transform: scale(.96);
  }

  .brix---hamburger-menu-wrapper.w--open {
    background-color: #0000;
  }

  .box-4 {
    margin-left: 5px;
    margin-right: 5px;
  }

  .an-blurry-logo {
    max-width: 360px;
    top: -122%;
    left: -3%;
  }

  .brix---header-wrapper {
    padding: 15px 40px 15px 20px;
  }

  .brix---hamburger-menu-bar-bottom {
    width: 44px;
    height: 3px;
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .brix---hamburger-menu-bar-top {
    width: 44px;
    height: 3px;
  }

  .ben-childs-section, .george-brock-section {
    height: auto;
  }

  .quick-stack, .quick-stack.margin-top {
    width: 100%;
  }

  .gradient-border-div-3-copy-copy {
    margin-top: 201px;
  }

  .timer-bar-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .miro-board-image, .miro-board-image._6-step-onboarding {
    min-width: 90%;
  }

  .link-block {
    margin-right: 20px;
  }

  .logo-compare {
    height: 2.5rem;
  }

  .table3_component-cell.top-align {
    height: auto;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .youtube {
    min-width: 90vw;
  }

  .affiliate-image-wrapper {
    width: 77%;
  }

  .section_hero {
    padding-top: 2rem;
  }

  .text-color-white-2.big-text.max-width-xlarge {
    font-size: 3rem;
  }

  .padding-global-3.padding-section-hero {
    padding-top: 5rem;
  }

  .hero_text-paragraph {
    width: 90%;
  }

  .hero_column-wrapper {
    justify-content: center;
    align-items: center;
  }
}

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

  .navbar-component {
    min-height: 4rem;
  }

  .navbar-menu-links {
    width: 90vw;
    padding-bottom: 5rem;
  }

  .question-title-icon-wrapper {
    width: 1.75rem;
  }

  .question-answer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .faq-component {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .question-title {
    padding: 1rem 1.25rem;
  }

  .timeline-image-wrapper {
    width: 100%;
    margin-bottom: 2rem;
  }

  .timeline-item {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: .5fr max-content 1fr;
    grid-auto-columns: 1fr;
    align-items: start;
    display: grid;
  }

  .timeline19_fade-overlay-right {
    display: none;
  }

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

  .timeline-progress-fade-overlay {
    display: none;
  }

  .timeline-progress-wrapper {
    flex-direction: column;
    align-self: stretch;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
  }

  .timeline-item-content {
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }

  .timeline-progress-line {
    width: 3px;
    height: 100%;
  }

  .timeline-progress-line.is-small-mobile {
    height: .5rem;
  }

  .pricing-feature-list {
    grid-template-columns: 1fr;
  }

  .pricing-component {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

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

  .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-card-content {
    padding: 1.5rem;
  }

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

  .headline-component.bottom-button-padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  ._4-feature-left {
    grid-row-gap: 3rem;
  }

  ._4-feature-content-bottom {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  ._4-feature-right {
    grid-row-gap: 3rem;
  }

  .feature-statistic-component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

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

  .feature-icon-component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .background-image {
    padding-bottom: 0;
  }

  .gradient-overlay-background {
    background-image: linear-gradient(180deg, #0000 18%, var(--base-color-brand--black) 73%);
  }

  .episodes-list {
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .container-19 {
    padding-left: .625rem;
    padding-right: .625rem;
  }

  .footer-links {
    font-size: .6875rem;
  }

  .footer-text {
    font-size: .6875rem;
    line-height: 1rem;
  }

  .paragraph-3 {
    text-align: center;
    font-size: 1.25rem;
  }

  .button-main.new._3 {
    line-height: 1.125rem;
  }

  .step-1 {
    padding-left: 2.5rem;
    padding-right: 1.25rem;
  }

  .step1-headline {
    font-size: 1.6rem;
    line-height: 1.625rem;
  }

  .heading-55 {
    font-size: 1.375rem;
  }

  .step1-text {
    font-size: .8125rem;
    line-height: 1.125rem;
  }

  .hidden-pop-up {
    margin-top: 0;
  }

  .hubspot_field-wrapper {
    padding: 1.1rem;
  }

  .hs-form-field {
    margin-bottom: 1rem;
  }

  .form-columns-2 {
    display: block;
  }

  .hubspot_field-inner {
    padding: 1rem;
  }

  .hs-button {
    font-size: 1.125rem;
  }

  .container-39 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .section-50 {
    background-size: 350px;
  }

  .section-50.white {
    background-size: 450px;
  }

  .heading-65.hero {
    font-size: 2rem;
    line-height: 42px;
  }

  .countdown {
    flex-direction: column;
  }

  .timer-bar {
    display: flex;
  }

  .paragraph-3-copy {
    text-align: center;
    font-size: 1.25rem;
  }

  .box-2 {
    width: 40px;
  }

  .hero-text {
    width: 100%;
  }

  .image-49.date.sales {
    max-width: 40%;
    top: 185px;
    left: 36%;
  }

  .clock-number-2 {
    font-size: 22px;
    line-height: 26px;
  }

  .container-40 {
    padding-left: .625rem;
    padding-right: .625rem;
  }

  .clock-label-2 {
    font-size: 7px;
  }

  .hero-cta-div-3 {
    max-width: 100%;
  }

  .big-paragraph-4 {
    text-align: center;
    font-size: .9rem;
  }

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

  .paragraph-80 {
    font-size: 15px;
  }

  .image-111, .image-107 {
    margin-top: -107px;
  }

  .separator-div-mobile, .separator-div-2-mobile {
    margin-top: 140px;
  }

  .gradient-border-div-2 {
    margin-top: 0;
  }

  .grid-12._6-design {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
  }

  .gradient-border-div-3 {
    margin-top: 0;
  }

  .paragraph-75 {
    font-size: 15px;
  }

  .f-container-regular-4.larger {
    max-width: 100%;
  }

  .div-block-130 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .wrapper-11.opportunities {
    max-width: 100%;
  }

  .div-block-140 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .text-size-h2-2 {
    font-size: 3.2em;
  }

  .text-size-h2-2.top {
    margin-bottom: 0;
    font-size: 2.4em;
  }

  .text-size-h2-2.top.margin {
    margin-bottom: 80px;
  }

  .feature-section-2.first.after-time-line {
    padding-top: 0;
  }

  .text-block-96 {
    line-height: 20px;
  }

  .accordion-item-title---brix-8 {
    max-width: 80%;
    font-size: 18px;
  }

  .accordion-paragraph---brix-5 {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.6;
  }

  .tabs-container---brix-5 {
    width: 100%;
    padding: 16px 0;
  }

  .accordion-item-wrapper---brix-3.tabs-accordion---brix {
    width: 100%;
    max-width: 100%;
    padding: 0 32px;
  }

  .faq-2031.accordion {
    padding-top: 0;
  }

  .scroll-flex-4 {
    margin-top: 60px;
  }

  .scroll-wrap-2 {
    width: 100%;
  }

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

  .footer-top-2 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .container-49 {
    padding-left: .625rem;
    padding-right: .625rem;
  }

  .gradient-border-div-3-copy {
    margin-top: 0;
  }

  .brix---text-200-list-bold {
    font-size: 16px;
  }

  .profile-images-wrapper {
    flex-wrap: wrap;
  }

  .clock-number-4 {
    font-size: 22px;
    line-height: 26px;
  }

  .paragraph-33-copy-2-copy {
    font-size: 15px;
  }

  .paragraph-33-copy-2-copy.height.smaller.desktop {
    padding-left: 40px;
    font-size: 11px;
    line-height: 18px;
  }

  .paragraph-33-copy-2 {
    font-size: 15px;
  }

  .paragraph-33-copy-2.height.smaller.desktop {
    padding-left: 40px;
    font-size: 11px;
    line-height: 18px;
  }

  .paragraph-33-copy-2.height.smaller.mobile {
    display: block;
  }

  .paragraph-33-copy-2.height.smaller.mobile.desktop {
    text-align: center;
  }

  .paragraph-33-copy-2.height.smaller.mobile.device {
    display: none;
  }

  .brix---container-default {
    padding-right: 0;
  }

  .box-4 {
    width: 40px;
  }

  .an-blurry-logo {
    max-width: 320px;
    top: -110%;
    left: -3%;
  }

  .gradient-border-div-3-copy-copy {
    margin-top: 0;
  }

  .timer-bar-2 {
    display: flex;
  }

  .clock-label-3 {
    font-size: 7px;
  }

  .clock-number-3 {
    font-size: 22px;
    line-height: 26px;
  }

  .desktop-text-countdown {
    display: none;
  }

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

  .faq11_icon-wrapper {
    width: 1.75rem;
  }

  .faq-question {
    padding: 1rem 1.25rem;
  }

  .faq-answer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .dl-faq-component {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .faq-wrapper {
    padding: 1rem 1.25rem;
  }

  .bottom-faq {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .logo-compare {
    height: 3rem;
  }

  .table3_component-cell {
    height: 80px;
    min-height: 0;
  }

  .affiliate-image-wrapper {
    width: 90%;
  }

  .section_hero {
    padding-top: 4rem;
  }

  .text-color-white-2.big-text.max-width-xlarge {
    font-size: 2.3rem;
    line-height: 2.4rem;
  }

  .padding-global-3.padding-section-hero {
    padding-top: 2rem;
  }

  .hero_text-paragraph {
    width: 100%;
  }
}

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

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

  .max-width-xlarge.flex {
    padding-left: 0;
    padding-right: 0;
  }

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

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

  .text-size-medium.hidden {
    margin-bottom: 10px;
    font-size: .9rem;
  }

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

  .text-size-regular.text-weight-bold {
    font-size: .8rem;
  }

  .text-size-regular.text-weight-bold.bigger {
    font-size: .9rem;
  }

  .text-weight-bold.text-style-allcaps {
    font-size: .8rem;
  }

  .text-weight-bold.text-style-allcaps.text-color-alternate {
    margin-bottom: 10px;
    font-size: .7rem;
  }

  .button-group.is-center.max-width-large {
    width: 100%;
    min-width: auto;
    max-width: none;
  }

  .button-group.is-center.max-width-large.hidden-mobile {
    display: none;
  }

  .text-weight-semibold.text-style-allcaps.text-align-center {
    font-size: .9rem;
  }

  .padding-global.bg-color.less-margin {
    padding-left: 3%;
    padding-right: 3%;
  }

  .padding-section-medium {
    padding-top: 1rem;
  }

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

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

  .spacer-huge.hidden {
    display: none;
  }

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

  .navbar-logo {
    width: 100px;
    margin-top: 0;
  }

  .navbar-component {
    min-height: 2rem;
  }

  .menu-icon3 {
    display: none;
  }

  .hero-video-wrapper {
    width: 200px;
    height: 200px;
  }

  .padding-setion-xsmall {
    padding-bottom: 2rem;
  }

  .sales-button.digital-launchpad {
    text-align: center;
    padding: 1.1rem .8rem;
    font-size: 1rem;
  }

  .sales-button.white-background {
    font-size: .8rem;
  }

  .sales-button.white-background.sales {
    width: 90%;
    font-size: .8rem;
  }

  .sales-button.yellow {
    width: 80%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: .8rem;
  }

  .faq-component {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-column-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: .5fr max-content 1fr;
    align-items: start;
    width: 100%;
  }

  .timeline-image {
    display: block;
  }

  .timeline-item-content {
    padding-bottom: 2rem;
  }

  .timeline-progress-line {
    background-image: linear-gradient(0deg, #3f0077, #9b44e7);
  }

  .timeline-progress-line.is-small-mobile {
    background-image: linear-gradient(#3f0077, #9b44e7);
  }

  .pricing-top-left {
    max-width: 60%;
  }

  ._4-feature-content-bottom {
    grid-template-columns: 1fr;
  }

  .gradient-circle.top {
    opacity: 0;
  }

  .feature-statistic-percentages-list, .feature-statistic-component, .feature-icon-component, .feature-icon-item-list {
    grid-template-columns: 1fr;
  }

  .background-image {
    padding-bottom: 0;
  }

  .gradient-overlay-background {
    background-image: linear-gradient(180deg, #0000 18%, var(--base-color-brand--black) 68%);
  }

  .button-confirmation-text.text-color-grey {
    color: var(--link-color--link-secondary);
  }

  .episode-item-content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .episodes-list.extra-space-top {
    margin-top: 20px;
  }

  .episode-info-wrapper {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .container-19 {
    padding-left: .3125rem;
    padding-right: .3125rem;
  }

  .footer-links {
    font-size: .6875rem;
  }

  .footer-text {
    font-size: .625rem;
    line-height: .9375rem;
  }

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

  .survey-video-wrapper._100-width {
    width: 100%;
  }

  .paragraph-3 {
    margin-bottom: 2rem;
    padding-left: 10px;
    padding-right: 10px;
    font-size: .95rem;
  }

  .div-block-76 {
    max-width: 100%;
    margin-bottom: 0;
    position: relative;
  }

  .div-block-76.headline-ty {
    margin-top: 0;
    margin-bottom: 0;
  }

  .steps-container {
    padding: 0;
  }

  .button-main.new {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .button-main.new._3 {
    margin-top: .625rem;
  }

  .button-main.new._3.extra-space, .button-main.new._3.whatsapp {
    height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .section-22.thank-you {
    padding-top: .5rem;
  }

  .step-1 {
    flex-direction: column;
    margin-top: 1rem;
    padding: .625rem .625rem 1.875rem;
  }

  .step1-div {
    text-align: center;
    width: 85%;
  }

  .step1-headline {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.4375rem;
  }

  .step1-headline.smaller {
    font-size: 1.6rem;
    line-height: 1.9rem;
  }

  .heading-55 {
    z-index: 2;
    flex-direction: column;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    font-size: 1.6rem;
    line-height: 2rem;
    display: block;
    position: relative;
  }

  .heading-55.bigger {
    font-size: 1.7rem;
  }

  .confirmation-text {
    font-size: .6875rem;
  }

  .mini-logo-image {
    max-width: 50%;
  }

  .step1-text {
    font-size: .9rem;
    line-height: 1.3rem;
  }

  .hidden-pop-up {
    z-index: 99999;
    align-items: center;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    display: none;
  }

  .pop-up {
    max-width: 100%;
    padding-left: .625rem;
    padding-right: .625rem;
  }

  .x-button {
    margin-right: -.3125rem;
    font-size: .9375rem;
  }

  .bold-text-34 {
    padding-right: .3125rem;
    font-size: 1.0625rem;
  }

  .pop-up-div {
    padding-left: 0;
    padding-right: 0;
  }

  .pop-up-header {
    margin-top: 1.875rem;
    padding-left: .625rem;
    padding-right: .625rem;
  }

  .bold-text-35 {
    padding-right: .3125rem;
    font-size: 1.0625rem;
  }

  .hubspot_field-inner {
    padding: 1rem;
  }

  .button-3 {
    color: #000;
    background-image: linear-gradient(#efff04, #8d9119);
    border: .05rem solid #d4da2b;
    border-radius: .4rem;
    flex-direction: column;
    align-items: center;
    margin-top: 1.875rem;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
  }

  .button-3.time {
    box-shadow: none;
    background-image: linear-gradient(#3fdcff, #0a3563);
    border-color: #079ed4;
  }

  .image {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .heading-59 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-size: 1.4rem;
    line-height: 1.3;
  }

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

  .heading-61 {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1.4rem;
  }

  .container-39 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .section-50 {
    padding-bottom: 220px;
  }

  .section-50.white {
    padding-bottom: 40px;
  }

  .heading-65.hero {
    margin-top: 30px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
  }

  .countdown {
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 0;
  }

  .countdown.sales-page {
    padding-top: 0;
    padding-bottom: 0;
  }

  .timer-bar {
    flex-direction: column;
    width: 100%;
    margin-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .paragraph-3-copy {
    margin-bottom: 2rem;
    font-size: .95rem;
  }

  .box-2 {
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .link-2.upsell-1 {
    font-size: 12px;
    line-height: 14px;
  }

  .hyperlink-upsell {
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .js-clock-2 {
    flex-flow: wrap;
    place-content: stretch center;
    margin-top: 3px;
    margin-bottom: -5px;
    display: flex;
  }

  .hero-text {
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 0;
  }

  .button-4 {
    color: #000;
    background-image: linear-gradient(#efff04, #8d9119);
    border: .05rem solid #d4da2b;
    border-radius: .4rem;
    flex-direction: column;
    align-items: center;
    margin-top: 1.875rem;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
  }

  .button-4.sale {
    width: 90%;
    margin-top: -.275rem;
  }

  .button-4.sale.upsell-1 {
    font-size: .9rem;
  }

  .image-49 {
    max-width: 65%;
    bottom: 2.9375rem;
    left: .1375rem;
  }

  .image-49.date {
    max-width: 90%;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
    bottom: 3.7625rem;
    left: .1375rem;
  }

  .image-49.date.sales {
    max-width: 100px;
    padding-left: 0;
    padding-right: 0;
    top: 37px;
    bottom: auto;
    left: 4%;
  }

  .clock-number-2 {
    font-size: 20px;
  }

  .div-block-87._100-width {
    width: 100%;
    margin-top: 0;
    padding-left: 2px;
    padding-right: 2px;
  }

  .container-40 {
    padding-left: .3125rem;
    padding-right: .3125rem;
  }

  .clock-label-2 {
    margin-top: -3px;
    font-size: 6px;
    line-height: 16px;
  }

  .hero-cta-div-3 {
    width: 95%;
    max-width: 100%;
    padding-top: 30px;
    display: flex;
  }

  .section-51 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section-51.thin-section {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .section-51.thin-section.countdown {
    margin-top: 0;
  }

  .section-51.thin-section {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    display: block;
  }

  .padding-global-flex {
    padding-bottom: 20px;
  }

  .big-paragraph-4 {
    font-size: .9rem;
    display: block;
  }

  .big-paragraph-4.smaller {
    margin-top: 10px;
    font-size: .7rem;
  }

  .image-67 {
    margin-top: -141px;
  }

  .div-block-88 {
    justify-content: flex-start;
    align-items: center;
    padding-top: 20px;
  }

  .div-block-89 {
    margin-top: 20px;
  }

  .text-size-medium-copy.hidden {
    margin-bottom: 10px;
    font-size: .9rem;
  }

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

  .course-name-2 {
    text-align: left;
    font-size: 22px;
    line-height: 28px;
  }

  .course-name-2.margin-bottom {
    margin-bottom: 5px;
  }

  .course-name-2.more-margin-bottom {
    text-align: left;
    padding-bottom: 5px;
    font-size: 22px;
    line-height: 15px;
  }

  .paragraph-80 {
    color: #bdbdbd;
    margin-top: 5px;
    font-size: 14px;
    line-height: 22px;
  }

  .image-113 {
    max-width: 80%;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .content-block {
    padding: 40px 10px 0;
  }

  .image-111 {
    border-radius: 6px;
    max-width: 85%;
  }

  .image-107.bigger {
    max-width: 100%;
    margin-left: 0;
  }

  .container-47 {
    width: 100%;
  }

  .text-span-68 {
    font-size: 19px;
    line-height: 22px;
  }

  .text-span-68.smaller {
    font-size: 17px;
  }

  .separator-div-mobile {
    margin-top: 100px;
  }

  .separator-div-mobile.hidden-desktop {
    display: block;
  }

  .separator-div-mobile.hidden-mobile {
    display: none;
  }

  .heading-86.subtitles {
    margin-bottom: 0;
  }

  .div-block-144 {
    text-align: left;
    justify-content: flex-start;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 10px;
  }

  .div-block-144.no-margin-bottom {
    padding-bottom: 0;
  }

  .separator-div-2-mobile {
    margin-top: 100px;
    display: block;
  }

  .gradient-border-div-2 {
    margin-top: 100px;
  }

  .grid-12._6-design {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 20px;
    padding-left: 20px;
  }

  .grid-12._6-design.overflow {
    grid-template-rows: auto minmax(auto, 1fr);
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .paragraph-75 {
    color: #bdbdbd;
    margin-top: 5px;
    font-size: 14px;
    line-height: 22px;
  }

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

  .div-block-130 {
    align-items: flex-start;
    padding-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .text-span-73 {
    font-size: 19px;
    line-height: 22px;
  }

  .text-span-73.smaller {
    font-size: 17px;
  }

  .div-block-140 {
    align-items: flex-start;
    padding-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-140.bit-margin-top, .div-block-140.margin-top {
    padding-top: 10px;
  }

  .div-block-140.margin-top.margin-bottom {
    align-items: flex-start;
    padding-top: 10px;
    padding-bottom: 0;
  }

  .title-wrap-centre-4 {
    margin-bottom: 100px;
  }

  .text-size-h2-2 {
    font-size: 2.6em;
  }

  .text-size-h2-2.top {
    padding-left: 0;
    font-size: 1.7em;
    line-height: 1.1;
  }

  .text-size-h2-2.top.margin {
    margin-bottom: 0;
  }

  .feature-section-2 {
    padding-top: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
  }

  .feature-section-2.first.after-time-line {
    padding-left: 10px;
    padding-right: 10px;
  }

  .feature-section-2.first.after-time-line.all-included {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-103 {
    text-align: left;
    justify-content: flex-start;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 10px;
  }

  .text-block-96 {
    font-size: 1rem;
  }

  .faq-2029 {
    width: 100%;
  }

  .logo-an-small-faq-2 {
    width: 170px;
  }

  .accordion-tabs---brix.preview-page {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .accordion-item-title---brix-8 {
    max-width: 70%;
    font-size: 15px;
    line-height: 23px;
  }

  .accordion-paragraph---brix-5 {
    max-width: 100%;
    font-size: 13px;
  }

  .tabs-container---brix-5 {
    margin-top: 0;
    padding: 0;
    overflow: visible;
  }

  .gradient-circle-2.top {
    opacity: 0;
  }

  .accordion-item-wrapper---brix-3.tabs-accordion---brix {
    padding: 0 24px;
  }

  .borderr-red-pricing {
    margin-top: 10px;
  }

  .discount-percentage {
    right: 29px;
  }

  .open-close-icon-wrapper---brix-3 {
    margin-right: 16px;
  }

  .accordion-item---brix-2.tabs-accordion---brix {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .gradient-bg.top.footer-component {
    background-image: linear-gradient(#b521ff26, #0000);
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }

  .price-rectangle-3 {
    width: 250px;
  }

  .faq-2031 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .faq-2031.accordion {
    width: 100%;
    min-width: 100%;
    overflow: visible;
  }

  .container-50.scroll {
    padding-bottom: 0;
  }

  .progress-line-2 {
    margin-bottom: 90px;
    display: block;
  }

  .progress-line-2.rop {
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
    overflow: hidden;
  }

  .scroll-wrap-2 {
    height: 250px;
  }

  .gradient-circle-3.top {
    opacity: 0;
  }

  .image-95 {
    width: 100px;
  }

  .footer-section-4 {
    padding-left: 0;
    padding-right: 0;
  }

  .container-49 {
    padding-left: .3125rem;
    padding-right: .3125rem;
  }

  .footer-bottom-2 {
    padding-top: 2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .gradient-line-2.top {
    background-image: linear-gradient(90deg, #0000, #60f 25%, #6c04f4 50%, #60f 70%, #0000);
  }

  .gradient-border-div-3-copy {
    margin-top: 100px;
    margin-left: 20px;
    margin-right: 20px;
    box-shadow: 0 0 40px #7209fb4f;
  }

  .text-span-61 {
    font-size: 19px;
    line-height: 22px;
  }

  .text-span-61.smaller {
    text-align: left;
    font-size: 13px;
    line-height: 15px;
  }

  .brix---text-200-list-bold {
    font-size: 14px;
    line-height: 19px;
  }

  .text-block-97 {
    font-size: .8rem;
    line-height: 1.4;
  }

  .paragraph-81 {
    font-size: .9rem;
    line-height: 1.4;
  }

  .heading-88 {
    font-size: 1.8rem;
  }

  .profile-images-wrapper {
    margin-top: 5px;
  }

  .people-group-image {
    width: 60px;
    max-width: 80%;
    margin-right: 5px;
  }

  .follower-number {
    text-align: center;
    font-size: 11px;
    line-height: 16px;
  }

  .follower-number.description {
    font-size: 10px;
    line-height: 14px;
  }

  .follower-number.darker {
    text-align: center;
    font-size: 11px;
    line-height: 14px;
  }

  .clock-number-4 {
    font-size: 17px;
  }

  .paragraph-33-copy-2-copy {
    font-size: 14px;
  }

  .paragraph-33-copy-2-copy.height.smaller {
    font-size: 12px;
    line-height: 18px;
    display: flex;
  }

  .paragraph-33-copy-2-copy.height.smaller.desktop {
    padding-top: 5px;
    padding-left: 30px;
    display: none;
  }

  .brix---header-right-col {
    display: none;
  }

  .paragraph-33-copy-2 {
    font-size: 14px;
  }

  .paragraph-33-copy-2.height.smaller {
    font-size: 12px;
    line-height: 18px;
    display: flex;
  }

  .paragraph-33-copy-2.height.smaller.mobile {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
  }

  .paragraph-33-copy-2.height.smaller.mobile.desktop, .paragraph-33-copy-2.height.smaller.mobile.device {
    display: none;
  }

  .brix---container-default {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
  }

  .brix---header-content-wrapper {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    padding-top: 0;
  }

  .box-4 {
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .an-blurry-logo {
    z-index: 0;
    filter: none;
    max-width: 250px;
    display: none;
    top: 17%;
    left: auto;
    right: auto;
  }

  .brix---header-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }

  .confirmation-text-4 {
    font-size: .6875rem;
  }

  .confirmation-text-4.lighter {
    font-size: .5rem;
  }

  .quick-stack {
    align-self: center;
    padding-left: 0;
    padding-right: 0;
  }

  .quick-stack.margin-top {
    align-self: flex-end;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-62 {
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-43 {
    font-size: 11px;
  }

  .image-37 {
    margin-left: 5px;
  }

  .image-37.lock {
    max-width: 20px;
    max-height: 20px;
    margin-left: 0;
  }

  .div-block-63 {
    margin-left: 5px;
  }

  .paragraph-44 {
    font-size: 13px;
    line-height: 15px;
  }

  .bold-text-26 {
    font-size: 11px;
  }

  .paragraph-45 {
    font-size: 10px;
    line-height: 12px;
  }

  .div-block-145.hidden-mobile {
    display: none;
  }

  .pricing-logo-copy {
    width: 150px;
  }

  .div-block-88-copy {
    justify-content: flex-start;
    align-items: center;
    padding-top: 20px;
  }

  .text-block-97-copy {
    padding-right: 0;
    font-size: .8rem;
    line-height: 1.4;
  }

  .gradient-border-div-3-copy-copy {
    margin-top: 100px;
    margin-left: 0;
    margin-right: 0;
    box-shadow: 0 0 40px #7209fb4f;
  }

  .text-block-98-copy {
    font-size: .85rem;
  }

  .bold-text-74 {
    font-size: .75rem;
  }

  .div-block-146 {
    margin-bottom: 0;
  }

  .image-116 {
    max-width: 25px;
  }

  .paragraph-82 {
    font-size: .9rem;
  }

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

  .heading-89 {
    font-size: 2.1rem;
  }

  .hidden-elements {
    display: block;
  }

  .timer-bar-2 {
    flex-direction: column;
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 4px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .clock-label-3 {
    margin-top: -3px;
  }

  .clock-number-3 {
    font-size: 20px;
  }

  .desktop-text-countdown {
    display: none;
  }

  .miro-board-image._6-step-onboarding {
    margin-top: -10px;
    margin-bottom: -25px;
  }

  .dl-faq-component {
    grid-template-columns: 1fr;
  }

  .follower-number-2 {
    font-size: 11px;
  }

  .sales-button-7.yellow {
    width: 80%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: .8rem;
  }

  .link-block {
    z-index: 1000;
    margin-bottom: 10px;
    margin-right: 10px;
  }

  .heading-90 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .table3_component {
    grid-template-columns: .75fr 1.25fr 1fr;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .logo-compare {
    height: 2rem;
  }

  .logo-compare.is-inverse {
    height: 1.4rem;
  }

  .table3_component-cell {
    height: 60px;
  }

  .table3_component-cell.highlight {
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
  }

  .table3_component-cell.highlight.multiple-line {
    padding-left: 5px;
    padding-right: 5px;
  }

  .table3_component-cell.right {
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
  }

  .bold-text-75 {
    font-size: .8rem;
  }

  .youtube {
    min-width: 95vw;
  }

  .image-118, .image-119 {
    max-width: 90vw;
  }

  .affiliate-image-wrapper, .hero_text {
    width: 100%;
  }

  .section_hero {
    padding-top: 0;
  }

  .text-color-white-2.big-text.max-width-xlarge {
    font-size: 1.9rem;
  }

  .padding-global-3.padding-section-hero {
    padding-top: 6rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#w-node-_2b76694b-5a28-3ed8-3b9d-89be560b3814-59a49560, #w-node-ef2fca0a-7ea9-3bd9-6b25-6918e796b051-59a49560, #w-node-ef2fca0a-7ea9-3bd9-6b25-6918e796b052-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ef2fca0a-7ea9-3bd9-6b25-6918e796b053-59a49560 {
  justify-self: start;
}

#w-node-ef2fca0a-7ea9-3bd9-6b25-6918e796b057-59a49560, #w-node-ef2fca0a-7ea9-3bd9-6b25-6918e796b05a-59a49560, #w-node-ef2fca0a-7ea9-3bd9-6b25-6918e796b05b-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ef2fca0a-7ea9-3bd9-6b25-6918e796b05c-59a49560 {
  justify-self: start;
}

#w-node-ef2fca0a-7ea9-3bd9-6b25-6918e796b062-59a49560, #w-node-ef2fca0a-7ea9-3bd9-6b25-6918e796b065-59a49560, #w-node-ef2fca0a-7ea9-3bd9-6b25-6918e796b066-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ef2fca0a-7ea9-3bd9-6b25-6918e796b067-59a49560 {
  justify-self: start;
}

#w-node-ef2fca0a-7ea9-3bd9-6b25-6918e796b06d-59a49560, #w-node-ef2fca0a-7ea9-3bd9-6b25-6918e796b070-59a49560, #w-node-ef2fca0a-7ea9-3bd9-6b25-6918e796b071-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ef2fca0a-7ea9-3bd9-6b25-6918e796b072-59a49560 {
  justify-self: start;
}

#w-node-ef2fca0a-7ea9-3bd9-6b25-6918e796b07a-59a49560, #w-node-ef2fca0a-7ea9-3bd9-6b25-6918e796b07d-59a49560, #w-node-ef2fca0a-7ea9-3bd9-6b25-6918e796b07e-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ef2fca0a-7ea9-3bd9-6b25-6918e796b07f-59a49560 {
  justify-self: start;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950f-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369510-59a49560 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369514-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369515-59a49560 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369519-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951a-59a49560 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951e-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951f-59a49560 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369523-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369524-59a49560 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369528-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369529-59a49560 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952d-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952e-59a49560 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369532-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369533-59a49560 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953a-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953b-59a49560 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953f-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369540-59a49560 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369544-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369545-59a49560 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369549-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954a-59a49560 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954e-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954f-59a49560 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369553-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369554-59a49560 {
  justify-self: start;
}

#w-node-de8106d9-b098-80e3-076c-80f3a0fa5e54-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-de8106d9-b098-80e3-076c-80f3a0fa5e55-59a49560 {
  justify-self: start;
}

#w-node-_680345d6-d141-aefc-5e81-01faad69a792-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_680345d6-d141-aefc-5e81-01faad69a793-59a49560 {
  justify-self: start;
}

#w-node-dc962921-5c74-5687-77a4-c1371012b297-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dc962921-5c74-5687-77a4-c1371012b298-59a49560 {
  justify-self: start;
}

#w-node-bbf5f4a2-0660-a8f8-7799-a71df583db57-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bbf5f4a2-0660-a8f8-7799-a71df583db58-59a49560 {
  justify-self: start;
}

#w-node-_723dac19-3a6b-8f5e-89ce-53b9006ba92c-59a49560 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_723dac19-3a6b-8f5e-89ce-53b9006ba92d-59a49560 {
  justify-self: start;
}

#w-node-_95c0b19c-3793-2e87-9010-ddaf3da798c4-0956336d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_26ae4772-a2ac-2eef-466d-4985bc0e91d7-0956336d, #w-node-_26ae4772-a2ac-2eef-466d-4985bc0e91dc-0956336d, #w-node-_26ae4772-a2ac-2eef-466d-4985bc0e91e1-0956336d, #w-node-_26ae4772-a2ac-2eef-466d-4985bc0e91e6-0956336d, #w-node-_26ae4772-a2ac-2eef-466d-4985bc0e91eb-0956336d, #w-node-_26ae4772-a2ac-2eef-466d-4985bc0e91f0-0956336d, #w-node-_26ae4772-a2ac-2eef-466d-4985bc0e91f5-0956336d, #w-node-_26ae4772-a2ac-2eef-466d-4985bc0e91fa-0956336d {
  align-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-_08214ebe-462e-e694-8caa-3376cea0e29a-0956336d {
    order: 9999;
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_08214ebe-462e-e694-8caa-3376cea0e29a-0956336d {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_26ae4772-a2ac-2eef-466d-4985bc0e91e1-0956336d {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_26ae4772-a2ac-2eef-466d-4985bc0e91eb-0956336d {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_26ae4772-a2ac-2eef-466d-4985bc0e91f5-0956336d {
    grid-area: 4 / 1 / 5 / 2;
  }
}


