:root {
  --new--dark: #181818;
  --new--main: #e42727;
  --white: #fff;
  --new--tertiary-grey: #576072;
  --new--purple: #782ed9;
  --new--green: #67a900;
  --new--orange: #f17b00;
  --new--blue: #1e27de;
  --new--pink: #fad2fb;
}

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

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

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

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

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

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

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

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

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

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

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

body {
  color: var(--new--dark);
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

p {
  margin-bottom: 0;
}

.page-wrapper {
  flex-flow: column;
  min-height: 100%;
  display: flex;
}

.navigation {
  background-color: #fff;
  align-items: center;
  width: 100%;
  min-height: 4rem;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.navigation-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.nav-logo {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--new--main);
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  font-family: League Gothic, sans-serif;
  font-size: 2rem;
  line-height: .81;
  text-decoration: none;
  display: flex;
}

.logo {
  width: 24px;
}

.navigation-menu {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  display: flex;
  position: static;
}

.navigation-link {
  color: var(--new--dark);
  text-align: center;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #0000;
  padding: .5rem;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.71429;
  text-decoration: none;
  transition: all .35s;
}

.navigation-link:hover {
  color: var(--new--main);
}

.navigation-link.w--current {
  color: #642eff;
}

.navigation-wrapper {
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
}

.navigation-button {
  outline-offset: 0px;
  color: #fff;
  text-align: center;
  letter-spacing: -.02em;
  background-color: #160042;
  border-radius: 48px;
  outline: 2px solid #0000;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  min-height: 48px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.navigation-button:hover {
  background-color: #282556;
}

.button {
  outline-offset: 0px;
  color: #fff;
  text-align: center;
  letter-spacing: -.02em;
  background-color: #160042;
  border-radius: 48px;
  outline: 2px solid #0000;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  min-height: 48px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s, background-color .2s, border-color .2s;
  display: flex;
}

.button:hover {
  background-color: #282556;
}

.button.nav-cta {
  border: 1px solid var(--new--main);
  background-color: var(--new--main);
  letter-spacing: .02em;
  text-transform: uppercase;
  border-radius: 12px;
  font-size: .875rem;
  font-weight: 700;
}

.button.nav-cta:hover {
  border: 1px solid var(--new--main);
  background-color: var(--white);
  color: var(--new--main);
}

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

.button.is-large {
  padding: 1rem 2rem;
}

.button.is-secondary {
  color: #000;
  background-color: #0000;
  border: 1px solid #222;
}

.button.is-text {
  color: #000;
  background-color: #0000;
  border: 2px solid #0000;
}

.button.is-icon {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.button.regular {
  border: 1px solid var(--new--main);
  background-color: var(--new--main);
  letter-spacing: .02em;
  text-transform: uppercase;
  border-radius: 12px;
  font-size: .875rem;
  font-weight: 700;
}

.button.regular:hover {
  background-color: var(--white);
  color: var(--new--main);
}

.button.regular.dark {
  border-color: var(--new--dark);
  background-color: var(--new--dark);
  color: var(--white);
  padding-left: 20px;
  padding-right: 20px;
}

.button.regular.white-short {
  background-color: var(--white);
  color: var(--new--main);
  padding-left: 24px;
  padding-right: 24px;
}

.button.regular.white-short:hover {
  border-color: var(--white);
  background-color: var(--new--main);
  color: var(--white);
}

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

.main-wrapper {
  flex: 1;
  overflow: clip;
}

.footer {
  z-index: 9;
  margin-top: 100px;
  margin-bottom: 40px;
  position: relative;
}

.section_hero {
  background-image: url('../images/hero-bg.png');
  background-position: 50%;
  background-size: cover;
  position: relative;
}

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

.header-grid-top {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  margin-bottom: 40px;
}

.display-heading {
  color: #030711;
  letter-spacing: -2.5px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 88px;
  font-weight: 500;
  line-height: 1.1;
}

.column-large {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.paragraph-large {
  letter-spacing: -.3px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 32px;
}

.header-button-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.button-primary {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: #fff;
  letter-spacing: -.2px;
  background-color: #111827;
  border-radius: 44px;
  flex: none;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  text-decoration: none;
  transition: color .3s, background-color .3s;
  display: inline-flex;
}

.button-primary:hover {
  color: #fff;
  background-color: #913b8b;
}

.button-primary.w--current {
  background-color: #344256;
  border-color: #48566a;
}

.header-caption-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
}

.icon-regular {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.paragraph-x-small {
  margin-bottom: 0;
  font-size: 12px;
  text-decoration: none;
}

.header-image-wrapper {
  border-radius: 24px;
  overflow: hidden;
}

.image-cover {
  object-fit: cover;
  width: 101%;
  min-width: 101%;
  max-width: none;
  height: 100%;
}

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

.fs-styleguide_header {
  color: #fff;
  background-color: #000;
  background-image: radial-gradient(circle at 100% 100%, #dd23bb40, #0000 40%), radial-gradient(circle at 0 100%, #2d62ff4d, #0000 60%);
}

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

.fs-styleguide_hero-label {
  color: #000;
  text-transform: uppercase;
  background-color: #eee;
  border-radius: .25rem;
  padding: .25rem .375rem;
  font-size: .75rem;
  font-weight: 500;
  text-decoration: none;
}

.fs-styleguide_heading-header {
  font-size: 6rem;
}

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

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

.fs-styleguide_classes {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fs-styleguide_section {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

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

.fs-styleguide_section-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid #eee;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-bottom: 3rem;
  line-height: 1.4;
  display: grid;
}

.fs-styleguide_heading-medium {
  font-size: 4rem;
}

.fs-styleguide_item-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.fs-styleguide_1-col {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.fs-styleguide_item {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  border-bottom: 1px solid #0000001a;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 3rem;
  display: grid;
  position: relative;
}

.fs-styleguide_item.is-stretch {
  justify-items: stretch;
}

.fs-styleguide_label {
  color: #fff;
  background-color: #2d62ff;
  border-radius: .25rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .75rem .3rem;
  font-weight: 600;
  display: flex;
}

.fs-styleguide_label.is-tag {
  background-color: #dd23bb;
}

.fs-styleguide_empty-box {
  z-index: -1;
  background-color: #2d40ea0d;
  border: 1px dashed #2d40ea;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

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

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

.fs-styleguide_spacing {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-image: linear-gradient(to top, #2d40ea1a, #fff0);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start stretch;
  display: grid;
  position: relative;
}

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

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

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

.fs-styleguide_row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

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

.heading-style-h1 {
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: League Gothic, sans-serif;
  font-size: 13.75rem;
  font-weight: 400;
  line-height: .85;
}

.heading-style-h2 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: League Gothic, sans-serif;
  font-size: 7.5rem;
  font-weight: 400;
  line-height: 1;
}

.heading-style-h4 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: League Gothic, sans-serif;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.2;
}

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

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

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

.fs-styleguide_2-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.fs-styleguide_2-col.is-align-start {
  align-items: start;
}

.fs-styleguide_item-header {
  border-bottom: 1px solid #0000001a;
  width: 100%;
  padding-bottom: 2rem;
}

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

.fs-styleguide_3-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  display: grid;
}

.fs-styleguide_3-col.is-align-start {
  align-items: start;
}

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

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

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

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

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

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

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

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

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

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

.text-style-quote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.fs-styleguide_message {
  color: #5e5515;
  background-color: #fcf8d8;
  border-radius: .25rem;
  padding: .25rem .5rem;
  font-size: .875rem;
}

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

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

.text-weight-bold.is-uppercase {
  text-transform: uppercase;
}

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

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

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

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

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

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

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

.text-color-primary {
  color: #000;
}

.text-color-secondary {
  color: #222;
}

.background-color-primary {
  color: #fff;
  background-color: #000;
}

.text-color-alternate {
  color: #fff;
}

.fs-styleguide_background {
  border: 1px solid #0000001a;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.fs-styleguide_background-space {
  width: 1px;
  height: 1px;
  margin: 5rem;
}

.background-color-secondary {
  background-color: #2d62ff;
}

.background-color-tertiary {
  background-color: #dd23bb;
}

.background-color-alternate {
  background-color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.padding-0 {
  padding: 0;
}

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

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

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

.padding-small {
  padding: 1rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-large {
  padding: 3rem;
}

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

.padding-xlarge {
  padding: 4rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.padding-huge {
  padding: 6rem;
}

.padding-xhuge {
  padding: 8rem;
}

.padding-xxhuge {
  padding: 12rem;
}

.padding-custom1 {
  padding: 1.5rem;
}

.padding-custom2 {
  padding: 2.5rem;
}

.padding-custom3 {
  padding: 3.5rem;
}

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

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

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

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

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

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

.margin-0 {
  margin: 0;
}

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

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

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

.margin-small {
  margin: 1rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-large {
  margin: 3rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-huge {
  margin: 6rem;
}

.margin-xhuge {
  margin: 8rem;
}

.margin-xxhuge {
  margin: 12rem;
}

.margin-custom1 {
  margin: 1.5rem;
}

.margin-custom2 {
  margin: 2.5rem;
}

.margin-custom3 {
  margin: 3.5rem;
}

.fs-styleguide_spacer-box {
  background-color: #2d40ea1a;
  border: 1px dashed #2d40ea;
  width: 100%;
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fs-styleguide_4-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.hide {
  display: none;
}

.overflow-visible {
  overflow: visible;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.overflow-scroll {
  overflow: scroll;
}

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

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

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

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

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

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

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

.aspect-ratio-square {
  aspect-ratio: 1;
  object-fit: cover;
}

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

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

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

.form_component {
  margin-bottom: 0;
}

.form_input {
  background-color: #0000;
  border: 1px solid #eee;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
  font-size: 1rem;
}

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

.form_input.is-text-area {
  min-height: 8rem;
  padding-top: .75rem;
  font-size: 1rem;
}

.form_input.is-select-input {
  color: #222;
}

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

.form_checkbox-icon {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-checked {
  background-size: 90%;
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-focus {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

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

.form_radio-icon {
  width: .875rem;
  height: .875rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.form_radio-icon.w--redirected-checked {
  border-width: .25rem;
  width: .875rem;
  height: .875rem;
}

.form_radio-icon.w--redirected-focus {
  width: .875rem;
  height: .875rem;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.form_message-success {
  color: #114e0b;
  background-color: #cef5ca;
  padding: 1.25rem;
}

.form_message-error {
  color: #3b0b0b;
  background-color: #f8e4e4;
  margin-top: .75rem;
  padding: .75rem;
}

.nav_component {
  background-color: #000;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  inset: 0% 0% auto;
}

.nav_container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.nav_logo {
  width: 10rem;
}

.nav_menu_link {
  color: #fff;
  padding: 1rem;
}

.nav_button {
  padding: 1rem;
}

.hero__body {
  z-index: 20;
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.hero__content {
  max-width: 61.875rem;
}

.red-accent {
  color: var(--new--main);
}

.image {
  width: 100%;
  padding-top: 1.25rem;
}

.max-width-400 {
  max-width: 400px;
}

.padding-94 {
  padding: 5.875rem;
}

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

.section-large {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.section-large.background-secondary {
  background-color: #f6f7f9;
}

.container-regular {
  z-index: 5;
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.content-grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
}

.content-grid.align-top {
  align-items: start;
}

.content-image-block {
  justify-content: center;
  align-items: center;
  display: flex;
}

.content-image-wrapper {
  position: relative;
}

.content-accent-right {
  color: #ea7462;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  position: absolute;
  inset: -16px 24px auto auto;
}

.content-accent-left {
  color: #93dcda;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  position: absolute;
  inset: auto auto -24px 32px;
}

.content-text-wrapper {
  z-index: 10;
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.column-x-large {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  display: flex;
}

.column-regular {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.column-regular.contact-us {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
}

.overline {
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 24px;
}

.overline.text-color-primary {
  color: #ea7462;
}

.h3-heading {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
}

.max-width-medium-2 {
  max-width: 450px;
}

.paragraph-regular {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 28px;
}

.row-x-small {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.padding-section-100 {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.image-2 {
  z-index: -1;
  width: 2146px;
  max-width: none;
  position: absolute;
  inset: auto;
  transform: translate(-175px, -310px);
}

.section_about-us {
  z-index: 19;
  position: relative;
  overflow-x: clip;
}

.about-us__body {
  z-index: 20;
  position: relative;
}

.title-center {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 628px;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.badge-primary {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #49505b;
  border: 1px dashed #b5bbc4;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  display: flex;
}

.h2-heading {
  color: #25272c;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.2;
}

.grid-two-column {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.faq-2-item {
  background-color: #fff0;
  border: 2px dashed #b5bbc4;
  border-radius: 12px;
  flex-flow: column;
  display: flex;
}

.faq-2-toggle {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  padding: 24px;
  display: flex;
}

.faq-header {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.subheading-large {
  color: #25272c;
  letter-spacing: -.24px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.subheading-large.text-brand-purple {
  color: #6153bd;
}

.faq-2-answer {
  padding-left: 24px;
  padding-right: 24px;
  overflow: hidden;
}

.faq-2-content {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-top: 2px dashed #b5bbc4;
  flex-flow: column;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

.faq-cta {
  border: 2px dashed #b5bbc4;
  border-radius: 12px;
  flex-flow: column;
  margin-top: 24px;
  display: flex;
}

.faq-cta-header {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #edeef1;
  padding: 16px 24px;
  display: flex;
}

.paragraph-small {
  color: #49505b;
  letter-spacing: -.08px;
  font-size: 14px;
  line-height: 24px;
}

.paragraph-small.text-color-tertiary {
  color: var(--new--tertiary-grey);
}

.paragraph-small.text-color-gray-700 {
  color: #76767f;
}

.faq-cta-content {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  display: flex;
}

.column-2x-small {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  display: flex;
}

.button-primary-large {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  text-align: center;
  letter-spacing: -.18px;
  white-space: nowrap;
  background-color: #25272c;
  border: 2px solid #000;
  border-radius: 8px;
  flex: none;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition-property: background-color;
  transition-duration: .3s;
  transition-timing-function: ease;
  display: inline-flex;
  box-shadow: 0 1px 2px #00000080, inset 0 1px 1px 3px #3f444d;
}

.button-primary-large:hover {
  background-color: #000;
}

.section_include {
  z-index: 20;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  position: relative;
}

.include__body {
  z-index: 10;
  grid-column-gap: 2.25rem;
  grid-row-gap: 2.25rem;
  flex-flow: column;
  padding-top: 3rem;
  padding-bottom: 3.75rem;
  display: flex;
  position: relative;
}

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

.include__content.mobile {
  display: none;
}

.include__accordion {
  background-color: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
}

.include__accordion-trigger {
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  font-family: League Gothic, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  transition: all .2s;
  display: flex;
}

.include__accordion-trigger.is-active-accordion {
  color: var(--new--main);
}

.include__accordion-content {
  transition: all .2s;
  overflow: clip;
}

.include-accordion__arrow-wrapper {
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  transition: all .2s;
  display: flex;
}

.include-accordion__arrow-wrapper.is-active-accordion {
  transform: rotate(180deg);
}

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

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

.fs_accordion-2_embed {
  margin-bottom: 0;
  display: none;
}

.fs_accordion-2_item {
  border-radius: 12px;
  overflow: clip;
}

.fs_accordion-2_header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  cursor: pointer;
  background-color: #f5f5f5;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  display: flex;
}

.fs_accordion-2_header:focus-visible, .fs_accordion-2_header[data-wf-focus-visible] {
  outline-offset: 4px;
  outline: 2px solid #9b9b9b;
}

.fs_accordion-2_header.include__accordion-trigger {
  background-color: var(--white);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.fs_accordion-2_header.include__accordion-trigger.is-active-accordion {
  padding-bottom: .75rem;
}

.fs_accordion-2_arrow-wrapper {
  transition: transform .2s;
}

.fs_accordion-2_arrow-wrapper.is-active-accordion {
  transform: rotate(180deg);
}

.fs_accordion-2_icon {
  margin-right: 0;
  font-size: 1.125rem;
  position: relative;
}

.fs_accordion-2_content {
  transition: max-height .2s;
  overflow: hidden;
}

.fs_accordion-2_body {
  background-color: #fff;
  padding: 0 1.5rem 1.5rem;
}

.fs_accordion-2_paragraph {
  margin-bottom: 0;
}

.fs_accordion-2_message {
  color: #9b9b9b;
}

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

.code-embed {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.include-top-rect {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 53px;
  margin-bottom: -1px;
  display: block;
  position: static;
  inset: 0% auto auto 0%;
}

.include-bot-rect {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 53px;
  margin-top: -2px;
  display: flex;
}

.red-bg {
  z-index: 0;
  background-color: var(--new--main);
  width: 100%;
  height: 90%;
  position: absolute;
  inset: 50% auto auto 0%;
  transform: translate(0, -50%);
}

.div-block {
  border-top: 60px solid var(--new--main);
}

.div-block-2 {
  border-bottom: 60px solid var(--new--main);
}

.section_how-to {
  height: 110vw;
  overflow-x: clip;
}

.how-to__body {
  grid-column-gap: 2.25rem;
  grid-row-gap: 2.25rem;
  flex-flow: column;
  display: flex;
}

.how-to__tabs-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  display: flex;
  position: relative;
}

.text-color-red {
  color: var(--new--main);
}

.tab-link {
  color: var(--new--main);
  text-align: center;
  text-transform: uppercase;
  background-color: #0000;
  width: 50%;
  min-height: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 700;
  transition: all .2s;
}

.tab-link.w--current {
  background-color: var(--new--main);
  color: var(--white);
  border-radius: 12px;
}

.tab-link-tab-2 {
  text-align: center;
  width: 50%;
}

.tabs-menu {
  border: 1px solid var(--new--main);
  background-color: #f8dcd0;
  border-radius: 12px;
}

.tabs {
  z-index: 2;
  flex-flow: column;
  display: flex;
}

.tabs-content {
  overflow: visible;
}

.include__accordion-trigger-copy {
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: League Gothic, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  transition: all .2s;
  display: flex;
}

.how-to__tab-heading-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.tab__content {
  padding-top: 36px;
}

.how-to__content {
  grid-column-gap: 2.25rem;
  grid-row-gap: 2.25rem;
  flex-flow: column;
  display: flex;
}

.swiper {
  height: auto;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex: none;
}

.image-3 {
  border-radius: 12px;
}

.how-to__step-tag {
  border: 1px solid var(--new--main);
  color: var(--new--main);
  text-transform: uppercase;
  border-radius: 100px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding: .375rem 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.div-block-3 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.how-to__slide-text {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.image-4 {
  z-index: -1;
  width: 1648px;
  max-width: 1648px;
  position: absolute;
  bottom: auto;
  right: auto;
  transform: translate(-700px, -420px);
}

.swiper-copy {
  height: auto;
}

.section-regular {
  background-color: #f7f8f8;
  padding: 80px 5%;
  position: relative;
}

.section-regular.background-yellow {
  background-color: #fdf9ed;
}

.title-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #383a42;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 720px;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.h1-heading {
  color: #000;
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.1;
}

.brand-span {
  background-color: #c1ff71;
  padding-left: 4px;
  padding-right: 4px;
}

.paragraph-x-large {
  color: #40444c;
  letter-spacing: -.03em;
  font-size: 20px;
  line-height: 1.5;
}

.tab-link-2 {
  color: #000;
  text-align: center;
  background-color: #fff;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 190px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 16px;
  line-height: 24px;
  transition: color .3s, background-color .3s;
  display: flex;
}

.tab-link-2:hover, .tab-link-2.w--current {
  color: #fff;
  background-color: #000;
}

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

.content-card-tall {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #fff;
  border-radius: 8px;
  flex-flow: column;
  padding: 24px;
  text-decoration: none;
  display: flex;
}

.column-x-small {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.column-x-small.text-align-center {
  text-align: center;
  flex: 1;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.text-link-underline {
  color: #5b616e;
  font-weight: 400;
  transition: color .3s;
}

.text-link-underline:hover {
  color: #6153bd;
}

.tab-btn.tab-link.is-active {
  background-color: var(--new--main);
  color: var(--white);
  border-radius: 12px;
}

.slider-mask {
  flex-flow: row;
  max-width: 35%;
  display: flex;
  overflow: visible;
}

.slider {
  background-color: #0000;
  height: auto;
  overflow: visible;
}

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

.slide {
  background-color: #0000;
  flex: none;
  max-width: 100%;
  padding-right: 1.25rem;
}

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

.section_choose {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  position: relative;
}

.choose__body {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  padding-bottom: 60px;
  display: flex;
}

.glasses {
  max-height: 65px;
}

.glasses.grow-text {
  max-height: 57px;
}

.choose__header-wrapper {
  grid-column-gap: 1.125rem;
  grid-row-gap: 0rem;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.choose__card {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--white);
  border-radius: 12px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 200px;
  padding: 1.5rem;
  display: flex;
  position: relative;
  overflow: clip;
}

.choose__card.first {
  color: var(--new--purple);
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
}

.choose__card.second {
  color: var(--new--green);
}

.choose__card.orange {
  color: var(--new--orange);
}

.choose__card.fourth {
  color: var(--new--blue);
}

.choose__card.fifth {
  color: var(--new--main);
}

.choose-decor1 {
  position: absolute;
  inset: -90px -60px auto auto;
}

.choose-decor2 {
  position: absolute;
  inset: -90px -86px auto auto;
}

.choose-decor3 {
  position: absolute;
  inset: -90px -8px auto auto;
}

.choose-decor4 {
  position: absolute;
  inset: -90px -4px auto auto;
}

.choose-decor5 {
  position: absolute;
  inset: -90px -43px auto auto;
}

.include__accordion-trigger-copy {
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  font-family: League Gothic, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  transition: all .2s;
  display: flex;
}

.include__accordion-trigger-copy.is-active-accordion {
  color: var(--new--main);
}

.choose-card__heading {
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  font-family: League Gothic, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  transition: all .2s;
  display: flex;
}

.choose-card__heading.is-active-accordion {
  color: var(--new--main);
}

.text-color-dark {
  color: var(--new--dark);
}

.image-5 {
  width: 89%;
  max-width: none;
  position: static;
  inset: 0% auto auto 0%;
}

.cta-section {
  background-color: #bed6be;
  justify-content: center;
  align-items: center;
  padding: 100px 3%;
}

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

.cta-grid {
  grid-column-gap: 72px;
  grid-row-gap: 42px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
}

.curly-accent {
  margin-bottom: 14px;
}

.title-large {
  color: #000;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 600;
  line-height: 54px;
}

.cta-paragraph {
  letter-spacing: -.02em;
  font-size: 18px;
  line-height: 32px;
}

.button-2 {
  color: #fff;
  letter-spacing: 2px;
  background-color: #000;
  margin-top: 50px;
  padding: 20px 72px;
  font-weight: 400;
}

.heading-style-h3 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: League Gothic, sans-serif;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1;
}

.div-block-5 {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-6 {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  display: flex;
}

.div-block-7 {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  display: flex;
}

.perfect-for__body {
  padding-top: 3rem;
  padding-bottom: 3.75rem;
}

.container-x-small {
  width: 100%;
  max-width: 858px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.header-title-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.wrap-v-regular {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  display: flex;
}

.button-primary-rounded {
  color: #fff;
  background-color: #23272f;
  border: 2px solid #23272f;
  border-radius: 52px;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: box-shadow .3s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 12px -2px #fe5b2500, 0 0 12px -2px #a355f700, 0 0 4px 2px #23272e3d, inset 0 2px 2px #ffffff3d;
}

.button-primary-rounded:hover {
  box-shadow: 0 0 12px -2px #fe5b25, 0 0 12px -2px #a355f7, 0 0 4px 2px #23272e3d, inset 0 2px 2px #ffffff3d;
}

.button-primary-rounded.w--current {
  background-color: #344256;
  border-color: #48566a;
}

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

.button-background {
  pointer-events: none;
  object-fit: fill;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.gallery-slider {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 36px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 64px;
  display: flex;
}

.gallery-slider.reviews {
  margin-top: 36px;
  padding-bottom: 84px;
}

.gallery-mask {
  border-radius: 12px;
  width: 100%;
  height: 418px;
  max-height: 100%;
  overflow: clip;
}

.gallery-mask.reviews {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 420px;
  height: auto;
  min-height: 300px;
  display: flex;
  overflow: visible;
}

.slide-2 {
  width: 100%;
  height: 100%;
  max-height: 100%;
  margin-right: 24px;
}

.slide-2.reviews {
  flex: none;
  min-height: 349.156px;
  margin-right: 20px;
}

.slider-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 3.25fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: flex;
}

.slider-wrapper.reviews {
  background-color: var(--white);
  border: 1px solid #18181899;
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  min-height: 349.156px;
  padding: 2.5rem;
}

.slide-image {
  border-radius: 12px;
  max-width: 637px;
  overflow: hidden;
  box-shadow: 0 1px 2px #23272e14;
}

.slide-image.is--relative {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.wrap-v-large {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.slide-image-small {
  aspect-ratio: 1;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  height: 50%;
  display: flex;
  overflow: hidden;
  box-shadow: 0 1px 2px #23272e14;
}

.gallery-arrow {
  border: 1.5px solid var(--new--main);
  color: #fff;
  border-radius: 8px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
}

.gallery-arrow:hover {
  box-shadow: 0 0 12px -2px var(--new--main);
}

.gallery-arrow:active {
  transform: scale(.9);
}

.gallery-arrow.w--current {
  background-color: #344256;
  border-color: #48566a;
}

.gallery-arrow.left {
  right: 56px;
}

.gallery-arrow.left.reviews {
  margin-left: -28px;
  left: 50%;
  right: auto;
  transform: translate(-50%);
}

.gallery-arrow.left.reviews:active {
  transform: translate(-50%)scale(.9);
}

.gallery-arrow.reviews {
  right: 50%;
  transform: translate(50%);
}

.gallery-arrow.reviews.right {
  margin-right: -28px;
  transform: translate(50%);
}

.gallery-arrow.reviews.right:active {
  transform: translate(50%)scale(.9);
}

.icon-x-small {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.gallery-slide-nav {
  justify-content: flex-start;
  align-items: center;
  height: 32px;
  padding-top: 8px;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
}

.css-embed {
  display: none;
}

.div-block-8 {
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 2rem;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.image-6 {
  width: 100%;
  height: 100px;
}

.div-block-9 {
  background-color: var(--new--pink);
}

.div-block-10 {
  background-color: var(--new--main);
}

.div-block-11 {
  height: 53px;
  margin-bottom: -6px;
  display: block;
}

.div-block-12 {
  background-color: #d2e4fb;
}

.perfect-bot-rect {
  height: 53px;
  margin-top: -1px;
}

.perfect-top-rect {
  height: 53px;
  margin-bottom: -1px;
}

.section_reviews {
  overflow-x: clip;
}

.choose--top-rect {
  height: 100px;
  margin-bottom: -1px;
}

.choose-bor-rect {
  height: 40px;
  margin-top: -1px;
}

.reviews__body {
  position: relative;
}

.reviews__headshot {
  border-radius: 50%;
  width: 64px;
  height: 64px;
}

.image-7 {
  z-index: -1;
  max-width: 2146px;
  position: absolute;
  top: auto;
  bottom: auto;
  right: auto;
  transform: translate(-177px, -860px);
}

.section__book-us {
  z-index: 10;
  position: relative;
}

.contact-column {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

.column-small {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.overline-regular {
  color: #6869ac;
  letter-spacing: -.18px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.max-width-small-2 {
  width: 100%;
  max-width: 384px;
}

.column-2x-large {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  display: flex;
}

.feature-icon {
  color: #fff;
  text-transform: none;
  background-color: #6869ac;
  border: 1px dashed #24262d;
  border-radius: 100%;
  flex: none;
  justify-content: center;
  align-items: center;
  padding: 12px;
  display: flex;
}

.icon-large {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  display: flex;
}

.subheading-x-large {
  color: #24262d;
  letter-spacing: -.04em;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
}

.text-color-brand {
  color: #6869ac;
}

.feature-link-small {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #f6f7f9;
  border: 1px dashed #6869ac;
  border-radius: 12px;
  justify-content: space-between;
  align-items: stretch;
  padding: 16px 24px;
  display: flex;
}

.subheading-small {
  color: #24262d;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}

.row-regular {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.feature-divider {
  border-left: 1px dashed #6869ac;
  width: 1px;
  height: 100%;
}

.feature-arrow {
  color: #6869ac;
  background-color: #fff;
  border-radius: 40px;
  flex: none;
  padding: 4px;
}

.form-card {
  background-color: #fff;
  border-radius: 12px;
  min-height: 458px;
  padding: 24px;
}

.form-block {
  height: 100%;
  margin-bottom: 0;
}

.contact-text-field {
  color: #181818;
  background-color: #fff;
  border: 1px solid #18181899;
  border-radius: 8px;
  max-width: 100%;
  min-height: 48px;
  margin-bottom: 0;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.contact-text-field:focus {
  border-width: 1.5px;
  border-color: #181818;
}

.contact-text-field::placeholder {
  color: #18181899;
}

.contact-text-field.text-area-large {
  min-height: 200px;
}

.contact-text-field.date {
  color: #18181899;
  cursor: pointer;
}

.form-grid {
  grid-template-rows: auto;
}

.form-input-wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.form-select {
  color: #6869ac;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 1px solid #6869ac;
  border-radius: 8px;
  min-height: 48px;
  margin-bottom: 0;
  padding: 8px 48px 8px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.form-select:focus {
  border-width: 1.5px;
  border-color: #6869ac;
}

.select-field-icon {
  color: #747c90;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
  position: absolute;
  inset: auto 12px auto auto;
}

.text-link-tertiary {
  color: #575f70;
  text-decoration: underline;
  transition: color .3s;
}

.text-link-tertiary:hover {
  color: #24262d;
}

.contact-right-pattern {
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(#f6f7f9 5%, #f6f7f900 30% 70%, #f6f7f9 95%), linear-gradient(90deg, #f6f7f9 35%, #f6f7f900 85%, #f6f7f9), url('../images/Contact-02-BG.svg');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  position: absolute;
  inset: 0%;
}

.book-us__body {
  padding-top: 3rem;
  padding-bottom: 3.75rem;
}

.follow-us__block {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.text-block {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

.socials__btns-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-us__social-link {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--new--main);
  border-radius: 12px;
  justify-content: flex-start;
  align-items: center;
  padding: .5rem 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.contact-us__social-link:hover {
  border: 1px solid var(--white);
  background-color: var(--new--main);
  color: var(--white);
}

.code-embed-2 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-top-row {
  grid-column-gap: 40px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-center {
  grid-column-gap: 48px;
  align-items: center;
  display: flex;
}

.footer-link-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  align-items: center;
  display: flex;
}

.footer-link {
  color: var(--new--dark);
  letter-spacing: -.02em;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 14px;
  line-height: 1.8;
  text-decoration: none;
  transition: all .2s;
}

.footer-link:hover {
  color: var(--new--main);
}

.footer-divider-small {
  background-color: #e4e4e7;
  width: 1px;
  height: 16px;
}

.social-group {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  display: flex;
}

.social-link {
  color: #131315;
  border: 1px #e4e4e7;
  border-radius: 6px;
  transition: all .3s;
}

.social-link:hover {
  color: #8870d7;
  box-shadow: 0 2px 5px #e4272780;
}

.social-link.facebook {
  border-radius: 50%;
}

.footer-divider-large {
  background-color: var(--new--main);
  width: 100%;
  height: 1px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.footer-bottom {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.span-footer-link {
  color: #131315;
  font-weight: 500;
}

.footer-legal-wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  align-items: center;
  display: flex;
}

.footer-copyright {
  font-size: .875rem;
}

.div-block-14 {
  height: 150%;
  position: absolute;
  inset: 50% auto auto 0%;
  transform: translate(0, -50%);
}

.h2-v2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 100px;
  font-weight: 400;
  line-height: 130px;
}

.grow-text {
  transform-origin: 0 0;
  letter-spacing: 0;
  display: inline-block;
}

.grow-text.v2 {
  font-weight: 500;
}

.div-block-15 {
  justify-content: flex-start;
  align-items: flex-start;
  max-height: 100%;
  display: flex;
}

.image-8 {
  max-height: 395px;
}

.div-block-16 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  max-height: 395px;
  display: flex;
}

.contact-us_p2 {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  max-height: 352px;
}

.contact-us_p1 {
  max-height: 352px;
}

.arrow-right, .arrow-left {
  z-index: -1;
  opacity: 0;
}

.how-to__slide-title {
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: League Gothic, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  transition: all .2s;
  display: flex;
}

.how-to__slide-title.is-active-accordion {
  color: var(--new--main);
}

.camera {
  width: 100vw;
  min-height: 100vh;
  position: sticky;
  top: 0;
}

.frame {
  height: 100%;
  display: flex;
}

.item {
  flex: none;
  width: 100vw;
  height: 100vh;
}

.how-to__content-title {
  text-align: center;
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: League Gothic, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  transition: all .2s;
  display: flex;
}

.how-to__content-title.is-active-accordion {
  color: var(--new--main);
}

.div-block-17 {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  flex-flow: column;
  display: flex;
}

.include__cta-wrapper {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  color: var(--white);
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.div-block-18 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.choices__inner {
  color: #181818;
  background-color: #fff;
  border: 1px solid #18181899;
  border-radius: 8px;
  min-height: 48px;
  margin-bottom: 0;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.choices__inner:focus {
  border-width: 1.5px;
  border-color: #6869ac;
}

.choices__inner::placeholder {
  color: #18181899;
}

.choices__inner.text-area-large {
  min-height: 200px;
}

.choices__inner.date {
  color: #18181899;
}

.choices__item.choices__item--selectable {
  background-color: #efefef;
  border-radius: 8px;
  padding: 4px 12px;
}

.success-message {
  text-align: center;
  background-color: #0000;
  height: 100%;
  padding: 0;
}

.div-block-19 {
  justify-content: center;
  align-items: center;
  height: 100%;
  font-weight: 500;
  display: flex;
}

.code-embed-3 {
  max-width: 100%;
}

@media screen and (min-width: 1920px) {
  .h2-v2 {
    font-size: 120px;
  }
}

@media screen and (max-width: 991px) {
  .navigation {
    position: relative;
  }

  .nav-logo {
    margin-right: 0;
  }

  .navigation-menu {
    color: #393b6a;
    background-color: #fff;
    border-radius: 8px;
    padding: 12px;
    position: absolute;
  }

  .navigation-menu.w--open {
    background-color: #282556;
    border-color: #fff;
  }

  .navigation-link {
    width: 100%;
  }

  .navigation-wrapper {
    align-items: center;
    width: auto;
    display: flex;
  }

  .menu-button {
    background-color: var(--white);
    color: var(--new--main);
    border: 1px #e42727;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
  }

  .menu-button.w--open {
    background-color: #160042;
    border-color: #fff;
  }

  .header-grid-top {
    text-align: center;
    grid-template-columns: 1.3fr;
  }

  .header-button-wrapper {
    justify-content: center;
  }

  .image-cover {
    height: 101%;
  }

  .fs-styleguide_heading-header {
    font-size: 4rem;
  }

  .fs-styleguide_section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .fs-styleguide_heading-medium {
    font-size: 3rem;
  }

  .fs-styleguide_1-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

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

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

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

  .fs-styleguide_2-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .fs-styleguide_3-col {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

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

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .padding-xlarge {
    padding: 3rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

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

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

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

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

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

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

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .margin-xlarge {
    margin: 3rem;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

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

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

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

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

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

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

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

  .fs-styleguide_4-col {
    grid-template-columns: 1fr;
  }

  .hide-tablet {
    display: none;
  }

  .nav_button {
    color: #fff;
  }

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

  .content-grid.align-top {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .content-image-block {
    justify-content: flex-start;
  }

  .content-image-wrapper {
    max-width: 60%;
  }

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

  .image-2 {
    max-width: 270%;
  }

  .grid-two-column {
    grid-template-columns: 1fr;
  }

  .include__content.mobile {
    display: none;
  }

  .include-top-rect {
    margin-bottom: -1px;
  }

  .include-bot-rect {
    margin-top: -1px;
  }

  .section_how-to {
    height: auto;
  }

  .tab-link {
    font-size: .75rem;
  }

  .include__accordion-trigger-copy {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .div-block-3 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

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

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

  .cta-section {
    flex-direction: column;
  }

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

  .slide-image-small {
    height: auto;
  }

  .gallery-arrow:hover {
    box-shadow: none;
  }

  .image-7 {
    width: 200%;
  }

  .footer-top-row, .footer-center {
    grid-row-gap: 24px;
    flex-direction: column;
    align-items: center;
  }

  .lottie-animation {
    aspect-ratio: 1;
  }

  .how-to__slide-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .camera {
    width: auto;
    height: auto;
    overflow: visible;
  }

  .frame {
    height: auto;
  }

  .item {
    width: 100%;
    height: auto;
  }

  .how-to__content-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}

@media screen and (max-width: 767px) {
  .display-heading {
    font-size: 58px;
  }

  .fs-styleguide_section-header {
    font-size: .875rem;
  }

  .fs-styleguide_heading-medium {
    font-size: 2rem;
  }

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

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

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

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

  .heading-style-h44 {
    font-size: 1rem;
  }

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

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

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

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

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

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

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

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

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

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

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

  .padding-medium {
    padding: 1.25rem;
  }

  .padding-large {
    padding: 1.5rem;
  }

  .padding-xlarge {
    padding: 2rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

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

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

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

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

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

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

  .margin-medium {
    margin: 1.25rem;
  }

  .margin-large {
    margin: 1.5rem;
  }

  .margin-xlarge {
    margin: 2rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

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

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

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

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

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

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

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

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

  .section-large {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .content-grid.align-top {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .content-image-wrapper {
    max-width: 75%;
  }

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

  .h3-heading {
    font-size: 40px;
  }

  .padding-section-100 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .image-2 {
    transform: translate(-375px, -171px);
  }

  .h2-heading {
    font-size: 48px;
  }

  .include__content {
    grid-template-columns: 1fr;
    display: none;
  }

  .include__content.mobile {
    display: none;
  }

  .include__content.test {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .fs_accordion-2_header.include__accordion-trigger {
    padding: 1rem;
    line-height: 1;
  }

  .fs_accordion-2_body {
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .include-bot-rect {
    margin-top: -1px;
  }

  .red-bg {
    height: 95%;
  }

  .div-block {
    border-top-width: 34px;
  }

  .div-block-2 {
    border-bottom-width: 34px;
  }

  .tab-link {
    width: 100%;
  }

  .tabs-menu {
    flex-flow: column;
    display: flex;
  }

  .image-4 {
    width: 950px;
    transform: translate(-320px, -150px);
  }

  .section-regular {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .h1-heading {
    font-size: 48px;
  }

  .slider-mask {
    max-width: 50%;
  }

  .choose-cards__wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .choose-decor1.choose-img {
    max-width: 50%;
    top: -32px;
    right: -4px;
  }

  .choose-decor2.choose-img {
    max-width: 50%;
    top: -65px;
    right: -65px;
  }

  .choose-decor3.choose-img {
    max-width: 30%;
    top: -85px;
    right: -8px;
  }

  .choose-decor4.choose-img {
    max-width: 50%;
    top: -70px;
    right: -45px;
  }

  .choose-decor5.choose-img {
    max-width: 50%;
    top: -65px;
    right: -40px;
  }

  .cta-grid {
    grid-row-gap: 2rem;
  }

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

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

  .slider-wrapper, .wrap-v-large {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .choose--top-rect {
    height: 64px;
  }

  .choose-bor-rect {
    height: 20px;
  }

  .image-7 {
    transform: translate(-177px, -613px);
  }

  .feature-divider {
    display: none;
  }

  .form-card {
    min-height: 350px;
  }

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

  .footer-divider-small {
    display: none;
  }

  .footer-bottom {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column-reverse;
  }

  .h2-v2 {
    margin-top: 0;
    font-size: 40px;
    line-height: 60px;
  }

  .image-8.about-img1, .image-8.about-img2, .image-8.about-img3 {
    max-width: 33%;
  }

  .how-to__content-title {
    text-align: center;
  }
}

@media screen and (max-width: 479px) {
  .navigation-link {
    text-align: center;
  }

  .navigation-button, .button {
    display: none;
  }

  .button.regular {
    display: flex;
  }

  .header-button-wrapper {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-direction: column;
  }

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

  .fs-styleguide_row {
    flex-wrap: wrap;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .content-image-wrapper {
    max-width: 100%;
  }

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

  .image-2 {
    max-width: 500%;
    transform: translate(-450px, -104px);
  }

  .button-primary-large {
    width: 100%;
  }

  .include-top-rect, .include-bot-rect {
    height: 32px;
  }

  .how-to__tabs-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .image-4 {
    top: -150px;
    transform: translate(-430px, -80px);
  }

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

  .content-card-tall {
    padding: 24px;
  }

  .slider-mask {
    max-width: 100%;
  }

  .choose-cards__wrapper {
    grid-template-columns: 1fr;
  }

  .choose-decor1.choose-img {
    max-width: 50%;
    top: -53px;
    right: -50px;
  }

  .choose-decor2.choose-img {
    max-width: 100%;
    top: -93px;
    right: -91px;
  }

  .choose-decor3.choose-img {
    top: -90px;
  }

  .choose-decor4.choose-img {
    max-width: 100%;
    top: -90px;
    right: -95px;
  }

  .choose-decor5.choose-img {
    max-width: 100%;
    top: -90px;
    right: -60px;
  }

  .gallery-mask {
    height: auto;
  }

  .slider-wrapper {
    flex-flow: column;
  }

  .perfect-bot-rect, .perfect-top-rect {
    height: 32px;
  }

  .choose--top-rect {
    height: 24%;
  }

  .choose-bor-rect {
    height: 24px;
  }

  .image-7 {
    max-width: 1000px;
    top: auto;
  }

  .contact-column, .column-2x-large {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .form-card {
    width: 100%;
    max-width: 100%;
    padding: 24px;
  }

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

  .footer-link-wrap {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .div-block-18 {
    grid-template-columns: 1fr;
  }

  .code-embed-3 {
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
}

#w-node-df00d231-e425-e9d4-016d-ea0735401c78-c3c6b4c0, #w-node-df00d231-e425-e9d4-016d-ea0735401c7d-c3c6b4c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f3154e79-841a-9337-db6e-5151706de51e-c3c6b4c0, #w-node-cef97dd4-b6a6-e793-8343-c00812664a19-c3c6b4c0, #w-node-_4cf15e59-3992-9b16-73e8-3555f930f00c-c3c6b4c0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7468502c-df5a-010d-7c7d-99b273173877-c3c6b4c0, #w-node-_9060ea9d-6558-1868-b32e-52865c656e5b-c3c6b4c0 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_575befcb-6a10-8b8b-2f3e-1e76ef4c34c9-c3c6b4c0 {
  justify-self: end;
}

#w-node-_43fd8214-8940-c768-896b-84517d74b429-fd3acccb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_43fd8214-8940-c768-896b-84517d74b448-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b44d-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b452-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b457-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b45d-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b463-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b469-fd3acccb {
  justify-self: start;
}

#w-node-_43fd8214-8940-c768-896b-84517d74b54b-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b553-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b56a-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b583-fd3acccb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_43fd8214-8940-c768-896b-84517d74b586-fd3acccb {
  justify-self: start;
}

#w-node-_43fd8214-8940-c768-896b-84517d74b588-fd3acccb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_43fd8214-8940-c768-896b-84517d74b58b-fd3acccb {
  justify-self: start;
}

#w-node-_43fd8214-8940-c768-896b-84517d74b5db-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b5e5-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b5e6-fd3acccb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_43fd8214-8940-c768-896b-84517d74b658-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b65d-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b662-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b667-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b66c-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b671-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b67b-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b680-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b685-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b68a-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b68f-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b694-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b699-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b69e-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b6a3-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b6a8-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b6ad-fd3acccb {
  justify-self: start;
}

#w-node-_43fd8214-8940-c768-896b-84517d74b6b1-fd3acccb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_43fd8214-8940-c768-896b-84517d74b6b2-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b6b7-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b6bc-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b6c1-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b6d5-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b6da-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b6df-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b6e4-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b6e9-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b6ee-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b6f8-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b6fd-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b702-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b707-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b70c-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b711-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b716-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b71b-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b720-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b725-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b72a-fd3acccb {
  justify-self: start;
}

#w-node-_43fd8214-8940-c768-896b-84517d74b72e-fd3acccb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_43fd8214-8940-c768-896b-84517d74b72f-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b734-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b739-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b73e-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b74f-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b754-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b759-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b75e-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b763-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b768-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b76d-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b772-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b777-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b77c-fd3acccb {
  justify-self: start;
}

#w-node-_43fd8214-8940-c768-896b-84517d74b780-fd3acccb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_43fd8214-8940-c768-896b-84517d74b781-fd3acccb {
  justify-self: start;
}

#w-node-_43fd8214-8940-c768-896b-84517d74b784-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b805-fd3acccb, #w-node-_43fd8214-8940-c768-896b-84517d74b832-fd3acccb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_43fd8214-8940-c768-896b-84517d74b870-fd3acccb {
  justify-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-_575befcb-6a10-8b8b-2f3e-1e76ef4c34c9-c3c6b4c0 {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-f3154e79-841a-9337-db6e-5151706de51e-c3c6b4c0, #w-node-cef97dd4-b6a6-e793-8343-c00812664a19-c3c6b4c0, #w-node-_4cf15e59-3992-9b16-73e8-3555f930f00c-c3c6b4c0, #w-node-_7468502c-df5a-010d-7c7d-99b273173877-c3c6b4c0, #w-node-_9060ea9d-6558-1868-b32e-52865c656e5b-c3c6b4c0 {
    grid-column: span 1 / span 1;
  }
}


