@font-face {
  font-family: Helvetica;
  src: url('../fonts/Helvetica.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Helvetica Bold;
  src: url('../fonts/Helvetica-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}

:root {
  --black: #0e0e0e;
  --blue-2024: #3898ec;
  --blue: #2ba1f5;
  --white: #fff;
  --red: #ed1c24;
  --green: #4dc445;
  --color: white;
  --yellow: #fdc602;
  --gray-2024: #ecece7;
  --dark-blue: #042238;
  --light-blue: #2ba1f53d;
  --light-black: #2e2e2e;
  --gray: #ecece7;
  --yellow-2024: #f7d559;
  --red-2024: #e55955;
}

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

.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-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

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

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

.w-layout-vflex {
  flex-direction: column;
  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 {
  color: #333;
  font-family: Helvetica, sans-serif;
  font-size: 16px;
  line-height: 22px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: futura-pt, sans-serif;
  font-weight: 700;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: futura-pt, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: futura-pt, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: futura-pt, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

p {
  margin-bottom: 10px;
}

a {
  text-decoration: underline;
}

.hero-overlay {
  color: #fff;
  background-image: linear-gradient(#00000091, #00000091), url('../images/puzzle-background2.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  justify-content: center;
  align-items: center;
  height: 90vh;
  max-height: 780px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.centered-container {
  text-align: center;
  flex: 1;
}

.body {
  font-size: 15px;
}

.heading {
  font-family: Helvetica Bold, sans-serif;
}

.button {
  background-color: #2ba1f5;
  border-radius: 10px;
  padding: 20px 40px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 1px 9px #2ba1f5cc;
}

.button:hover {
  box-shadow: 0 1px 4px 1px #2ba1f5, 1px 1px 3px #2ba1f5;
}

.sticky-nav {
  z-index: 1;
  background-color: #f4f4f4;
  padding: 20px;
}

.nav-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
}

.nav-logo-link {
  height: 60px;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  display: block;
}

.nav-logo {
  object-fit: contain;
  object-position: 0% 50%;
  width: auto;
  height: 100%;
}

.nav-logo.single-logo {
  display: none;
}

.nav-link {
  color: #444;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 0;
  text-decoration: none;
  display: block;
}

.nav-link:hover {
  text-decoration: underline;
}

.social-proof {
  background-color: #ffd22d;
  padding-top: 20px;
  padding-bottom: 20px;
  display: none;
}

.social-img {
  width: 120px;
}

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

.section-content {
  padding-top: 140px;
  padding-bottom: 140px;
}

.section-content.alternating-color {
  background-color: #f1f1f1;
  background-image: linear-gradient(#f1f1f1, #fff);
}

.section-content.section-journal {
  display: block;
}

.section-content.bg-pink {
  background-color: #fcf8f6;
}

.section-content.tree-section {
  background-color: #fcf8f6;
  align-items: center;
  min-height: 800px;
  display: flex;
  position: relative;
}

.section-content.gray-bg {
  background-color: #f0f0f0;
}

.center {
  text-align: center;
}

.center.cyp-header {
  padding-top: 10px;
  padding-bottom: 10px;
}

.center.cyp-header-v2 {
  background-color: #313131;
  padding-top: 20px;
  padding-bottom: 20px;
}

.center.bag-description {
  width: 70%;
}

.center.cyp-header-v3 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.center.special-fit {
  font-size: 30px;
}

.center.launch-header {
  margin-top: 0;
  font-size: 30px;
  line-height: 36px;
}

.center.white.padding {
  padding: 10px;
}

.center.white.padding.holiday-bar {
  display: block;
}

.center.white.padding.holiday-bar.bg-blue {
  background-color: var(--black);
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 700;
}

.center.white.padding.holiday-bar.bg-blue.gc {
  background-color: var(--blue-2024);
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.center.white.padding.holiday-bar.bg-blue.gc.discount {
  display: flex;
}

.center.white.heading-v3 {
  margin-top: 0;
}

.center.white.mt-5 {
  margin-top: 45px;
}

.center.white.mt-5._2024 {
  color: #333;
}

.center.white.blue-bg.headerbar {
  background-color: var(--blue-2024);
  padding: 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 700;
}

.center.copyright {
  color: #bdbdbd;
}

.center.puzzle-title {
  margin-top: 60px;
  margin-bottom: 60px;
}

.center.cyp-preferences-subheadline {
  margin-bottom: 10px;
}

.center.plans-box {
  margin-top: 20px;
}

.center.causal-offer {
  margin-top: 10px;
  margin-bottom: 20px;
}

.center.margin-top {
  margin-top: 40px;
}

.center.cyp-faq {
  margin-bottom: 100px;
}

.center.block-snow {
  z-index: 9999999;
  background-color: var(--black);
  position: relative;
}

.center.block-snow.blur {
  filter: blur(5px);
}

.center.block-snow._2024 {
  background-color: #4792ea;
}

.center.sm {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  display: none;
}

.center.launch {
  padding-left: 220px;
  padding-right: 220px;
}

.center.review-slide {
  padding: 40px 220px;
}

.center._2vp {
  padding-top: 40px;
}

.center.block-snow-2025 {
  z-index: 9999999;
  background-color: var(--blue-2024);
  position: relative;
}

.center.block-snow-2025.blur {
  filter: blur(5px);
}

.center.block-snow-2025._2024 {
  background-color: #4792ea;
}

.center.block-snow-2025.padding-bottom {
  z-index: 80000;
  padding-bottom: 40px;
}

.center.mt-5 {
  margin-top: 40px;
}

.sanatize-block {
  align-items: center;
  margin-top: 40px;
  display: flex;
}

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

.how-it-works-block {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.how-it-works-img {
  height: 200px;
}

.sticky-offer {
  z-index: 100;
  background-color: var(--blue);
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 3px;
  text-decoration: none;
  display: flex;
  position: sticky;
  inset: 0% 0% auto;
}

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

.white.center.stay-at-home-text {
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
  display: inline;
}

.white.center.hero-subtext {
  font-size: 18px;
  line-height: 24px;
}

.white.center.sub-heading {
  margin-top: 10px;
}

.white.order-now {
  margin-left: 8px;
}

.white.caps {
  align-items: center;
  display: flex;
}

.white.hero-main-text {
  font-size: 58px;
  line-height: 62px;
}

.white.hero-sub-text {
  font-size: 18px;
  line-height: 24px;
}

.white.hero-sub-text.narrow {
  margin-left: 220px;
  margin-right: 220px;
  padding-left: 100px;
  padding-right: 100px;
}

.white.hero-sub-text-reviews {
  flex: 0 auto;
  align-items: flex-end;
  margin-bottom: 0;
  margin-left: 10px;
  font-size: 18px;
  line-height: 24px;
  display: flex;
}

.white.review-text {
  margin-bottom: 0;
  margin-left: 20px;
  font-size: 30px;
}

.white.hero-cta-social-text {
  margin-top: 15px;
  font-size: 18px;
  font-style: italic;
  line-height: 24px;
}

.white.guarantee-text {
  padding-left: 40px;
}

.white._5-reasons-header {
  font-size: 50px;
  line-height: 55px;
}

.white._5-reasons-subheader {
  font-size: 18px;
  line-height: 26px;
}

.white.pp-header {
  margin-top: 40px;
}

.white.d {
  background-color: #0000;
}

.white.number {
  font-size: 26px;
  font-weight: 700;
}

.white.quote {
  background-color: #ffffff1a;
  border-left: 3px solid #fff;
  margin-top: 20px;
  padding: 20px;
}

.whats-in-the-box-block {
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.whats-in-the-box-descriptive-block {
  align-items: center;
  margin-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.whats-in-the-box-descriptive-block.feature-journal {
  display: none;
}

.story-block {
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.surprise-puzzle {
  max-width: 500px;
}

.in-the-box-img {
  width: 50px;
  margin-right: 40px;
}

.image-2 {
  width: 400px;
}

.testimonial-block {
  background-color: #fff;
  border-radius: 10px;
  margin-top: 40px;
  padding: 20px;
}

.testimonial-img {
  border-radius: 60px;
  width: 120px;
}

.testimonial-description {
  padding-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
  font-style: italic;
}

.testimonial-name {
  padding-top: 20px;
  padding-left: 10px;
  font-weight: 700;
}

.how-it-works-container {
  margin-top: 40px;
}

.cta-page-block {
  text-align: center;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.cta-page-block.hide {
  display: none;
}

.footer {
  text-align: center;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer-flex-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  display: grid;
}

.footer-logo-link {
  flex: 0 auto;
  min-width: 60px;
  max-height: 60px;
}

.footer-image {
  object-fit: contain;
  object-position: 0% 50%;
  width: 100%;
  height: 100%;
}

.footer-heading {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-link {
  color: #444;
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-link.btn {
  color: #fff;
  background-color: #ce2128;
  border-radius: 4px;
  padding: 4px 8px;
}

.sticky-nav-container {
  z-index: 9999;
  position: sticky;
  top: 0;
}

.header-link {
  color: #fff;
  font-size: 16px;
}

.choose-your-plan-block {
  align-items: center;
  display: flex;
}

.cyp-content {
  padding-top: 60px;
  padding-bottom: 140px;
}

.skill-block {
  border-radius: 10px;
  align-items: flex-start;
  padding: 20px;
  display: flex;
  box-shadow: 0 1px 11px #0000001a;
}

.skill-block.normal-offer {
  margin-top: 25px;
  position: relative;
}

.skill-img {
  width: 80px;
}

.skill-description-block {
  padding-left: 10px;
}

.button-small {
  background-color: #2ba1f5;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 1px 9px #2ba1f5cc;
}

.button-small:hover {
  box-shadow: 0 1px 4px 1px #2ba1f5, 1px 1px 3px #2ba1f5;
}

.button-small.cyp-btn {
  margin-top: 20px;
}

.button-small.cyp-btn-v2 {
  background-color: #59b8d6;
  margin-top: 20px;
  box-shadow: 0 1px 9px #20a9d4;
}

.button-small.cyp-btn-v2.js-btn-cyp {
  background-color: #2ba1f5;
  box-shadow: 0 1px 9px #2ba1f5;
}

.skill-blocks {
  margin-top: 40px;
}

.skill-blocks.second {
  margin-top: 0;
}

.price-text {
  color: #2ba1f5;
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
}

.month-text {
  font-size: 12px;
}

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

.image-3 {
  height: 25px;
}

.small-footer-block {
  border-top: 1px solid #aacde5;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.text-block {
  padding-right: 5px;
}

.hero-subheader {
  font-size: 18px;
  font-style: italic;
  line-height: 22px;
}

.navbar {
  background-color: #fff;
}

.image-4 {
  height: 50px;
}

.container-3 {
  align-items: center;
  display: flex;
}

.div-block-2 {
  flex: 1;
}

.image-15 {
  max-height: 50px;
}

.js-accordion-item.accordion__item {
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 1px 5px #0006;
}

.js-accordion-item.accordion__item.hide {
  display: none;
}

.section-heading-2 {
  margin-top: 60px;
}

.accordion-header {
  align-items: center;
  display: flex;
}

.accordion-header.js-accordion-header {
  cursor: pointer;
}

.accordion-body {
  margin-top: 10px;
  display: none;
}

.heading-6 {
  flex: 1;
  margin-left: 20px;
}

.page-hero-2 {
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 140px;
  position: relative;
  overflow: hidden;
}

.image-6 {
  z-index: 0;
  width: 100%;
  margin-top: -250px;
  position: absolute;
  inset: 0%;
}

.div-block-11 {
  background-color: #000c;
  position: absolute;
  inset: 0%;
}

.container-4 {
  z-index: 3;
  position: relative;
}

.primary-color {
  color: #2ba1f5;
}

.primary-color.page-hero-header {
  text-transform: uppercase;
}

.white-2 {
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.body-2 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.text-block-2 {
  color: #fff;
  padding-left: 3px;
  text-decoration: underline;
}

.question-paragrah {
  padding-top: 10px;
}

.question-heading {
  font-size: 22px;
  line-height: 27px;
}

.expect-headline {
  font-size: 26px;
  line-height: 26px;
}

.hero-overlay-v2 {
  color: #fff;
  background-image: linear-gradient(#00000091, #00000091), url('../images/puzzle-background2.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  justify-content: center;
  align-items: center;
  height: 90vh;
  max-height: 780px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.heading-h1-v2 {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
}

.heading-h1-v2.center.second {
  margin-top: 100px;
}

.heading-h1-v2.faq-heading {
  margin-top: 40px;
}

.heading-h1-v2.expect-headline-v3 {
  margin-top: 10px;
}

.primary-color-v2 {
  color: #e7bbb1;
  font-weight: 700;
}

.primary-color-v2.page-hero-header {
  text-transform: uppercase;
}

.sticky-offer-v2 {
  z-index: 999;
  color: #222;
  background-color: #e7bbb1;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 3px;
  font-family: Helvetica Bold, sans-serif;
  text-decoration: none;
  display: flex;
  position: static;
}

.button-v2 {
  background-color: #000;
  border-radius: 0;
  padding: 20px 40px;
  font-family: Helvetica Bold, sans-serif;
  font-size: 22px;
  font-weight: 600;
  box-shadow: 0 1px 9px #000c;
}

.button-v2:hover {
  box-shadow: 0 1px 4px 1px #b8ced5, 1px 1px 3px #b8ced5;
}

.nav-logo-v2 {
  object-fit: contain;
  object-position: 0% 50%;
  width: auto;
  height: 50px;
}

.nav-logo-v2.single-logo {
  display: none;
}

.sticky-nav-v2 {
  z-index: 1;
  background-color: #000;
  padding: 20px;
}

.bag-img {
  width: 500px;
  margin-bottom: -103px;
  padding-right: 40px;
}

.button-secondary-v2 {
  background-color: var(--blue);
  color: #fff;
  padding: 20px 40px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 1px 9px #b8ced5;
}

.button-secondary-v2:hover {
  box-shadow: 0 1px 4px 1px #b8ced5, 1px 1px 3px #b8ced5;
}

.image-16 {
  z-index: 1;
  position: absolute;
  inset: auto 0% 0% auto;
}

.tree-block {
  z-index: 4;
  background-color: #fff9;
  width: 100%;
  margin-left: 30%;
  margin-right: 30%;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 80px;
  position: relative;
}

.give-back-block {
  z-index: 2;
  max-width: 500px;
  position: relative;
}

.dontate-section {
  background-color: #a2beb6;
}

.testimonial-block-v2 {
  background-color: #fff;
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 0 0 20px;
  box-shadow: 0 1px 10px 2px #0000001a;
}

.testimonial-container {
  align-items: flex-start;
  display: flex;
}

.testimonial-fill-img {
  border-radius: 5px;
  width: 100%;
}

.how-it-works-img-v2 {
  height: 150px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.background-video {
  z-index: 55;
  border-radius: 5px;
}

.column-no-padding {
  padding-left: 0;
  padding-right: 0;
}

.in-the-box-img-v2 {
  width: 100px;
  margin-right: 40px;
}

.whats-in-the-box-descriptive-block-v2 {
  align-items: flex-start;
  margin-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.whats-in-the-box-descriptive-block-v2.feature-journal {
  display: none;
}

.whats-in-the-box-text {
  padding-left: 40px;
}

.footer-image-v2 {
  object-fit: contain;
  object-position: 0% 50%;
  width: 225px;
  height: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.hero-subheader-v2 {
  font-size: 18px;
  font-style: normal;
  line-height: 22px;
}

.text-block-3 {
  margin-bottom: 20px;
}

.skill-img-v2 {
  width: 120px;
}

.footer-v2 {
  text-align: center;
  background-color: #f1f1f1;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 40px;
}

.price-text-v2 {
  color: #2ba1f5;
  font-family: Montserrat, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
}

.image-17 {
  height: 40px;
}

.text-block-4 {
  margin-bottom: 2px;
  font-family: futura-pt, sans-serif;
}

.text-block-5 {
  margin-left: 8px;
}

.most-popular-badge {
  height: 100px;
  position: absolute;
  inset: 5px 8px auto auto;
  transform: rotate(17deg);
}

.section-content-hero {
  background-image: url('../images/bg-v7.jpg');
  background-position: 0 0;
  background-size: cover;
  padding-top: 140px;
  padding-bottom: 140px;
  position: relative;
  overflow: hidden;
}

.section-content-hero.alternating-color {
  background-color: #f1f1f1;
  background-image: linear-gradient(#f1f1f1, #fff);
}

.section-content-hero.section-journal {
  display: block;
}

.section-content-hero.bg-pink {
  background-color: #fcf8f6;
}

.section-content-hero.tree-section {
  background-color: #fcf8f6;
  align-items: center;
  min-height: 800px;
  display: flex;
  position: relative;
}

.sub-hero-img {
  z-index: 1;
  width: 100%;
  position: absolute;
  inset: 0% auto;
}

.overlay {
  z-index: 2;
  background-color: #0000007a;
  position: absolute;
  inset: 0%;
}

.container-5 {
  z-index: 3;
  position: relative;
}

.image-19 {
  margin-top: 20px;
  margin-bottom: 40px;
}

.paragraph {
  font-size: 15px;
}

.container-7 {
  display: flex;
}

.nav-v2-non-landing {
  background-color: #fff;
}

.div-block-13 {
  flex: 1;
}

.container-8 {
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.nav-link-v2 {
  color: var(--black);
  font-size: 15px;
}

.nav-link-v2.w--current {
  color: var(--blue);
}

.nav-link-v2.cta {
  background-color: var(--blue);
  color: #fff;
  border-radius: 3px;
  margin: 17px 10px;
  padding: 3px 10px;
}

.nav-link-v2.bf-link {
  background-color: var(--red);
  color: #fff;
  border-radius: 3px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 3px 10px;
}

.nav-link-v2.gc-link {
  background-color: var(--green);
  color: #fff;
  border-radius: 3px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 3px 10px;
}

.div-block-14 {
  flex: 1;
  height: 3px;
}

.nav-menu {
  align-items: center;
  display: flex;
}

.image-20 {
  margin: 10px;
}

.image-21 {
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.headshot {
  border-radius: 50px;
  width: 100px;
  display: block;
}

.social-block {
  border: 1px solid #333333b3;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  padding: 3px 8px 2px;
}

.div-block-16 {
  padding-top: 20px;
  display: flex;
}

.div-block-17 {
  margin-left: 20px;
}

.text-block-6 {
  font-size: 14px;
}

.sticky-offer-v3 {
  z-index: 999;
  color: #fff;
  background-color: #000;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 3px;
  font-family: Helvetica Bold, sans-serif;
  text-decoration: none;
  display: flex;
  position: static;
}

.sticky-nav-v3 {
  z-index: 1;
  background-color: #fff;
  padding: 10px 20px;
}

.button-secondary-v3 {
  color: #fff;
  background-color: #2ba1f5;
  padding: 20px 40px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 1px 9px #b8ced5;
}

.button-secondary-v3:hover {
  box-shadow: 0 1px 4px 1px #2ba1f5, 1px 1px 3px #2ba1f5;
}

.button-secondary-v3.js-select-theme {
  margin-top: 20px;
}

.button-secondary-v3.js-select-theme.js-track-preferences.cyp25-btn {
  background-color: var(--blue-2024);
  width: 100%;
  max-width: 325px;
  box-shadow: none;
  color: var(--color);
  text-align: center;
  border-radius: 5px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
}

.button-secondary-v3.hero-button {
  margin-top: 40px;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 24px;
}

.button-secondary-v3.hero-button.green {
  background-color: var(--green);
}

.primary-color-v2-copy {
  color: #2ba1f5;
  font-weight: 700;
}

.primary-color-v2-copy.page-hero-header {
  text-transform: uppercase;
}

.nav-logo-v2-copy {
  object-fit: contain;
  object-position: 0% 50%;
  width: auto;
  height: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-logo-v2-copy.single-logo {
  display: none;
}

.footer-v2-copy {
  color: #fff;
  text-align: center;
  background-color: #333;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer-link-copy {
  color: #fff;
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
}

.footer-link-copy:hover {
  text-decoration: underline;
}

.text-block-7 {
  color: #383838;
  font-family: futura-pt, sans-serif;
  text-decoration: none;
}

.link-block {
  text-decoration: none;
}

.small {
  font-size: 12px;
}

.hero-overlay-v3 {
  color: #fff;
  background-image: linear-gradient(#0000008f, #0000008f), url('../images/bg-split.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  justify-content: center;
  align-items: center;
  height: 90vh;
  max-height: 780px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.image-22 {
  padding: 20px;
}

.heading-h1-v3 {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
}

.heading-h1-v3.faq-heading {
  margin-top: 40px;
}

.login-block {
  align-items: center;
  text-decoration: none;
  display: flex;
}

.text-block-8 {
  text-decoration: none;
}

.how-it-works-img-copy, .how-it-works-img-v3 {
  height: 200px;
}

.how-it-works-header {
  font-size: 22px;
}

.nav-logo-v3 {
  object-fit: contain;
  object-position: 0% 50%;
  width: auto;
  height: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-logo-v3.single-logo {
  display: none;
}

.nav-logo-link-v3 {
  height: 60px;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  display: block;
}

.flex-img-right {
  align-items: flex-start;
  display: flex;
}

.expect-img {
  width: 400px;
}

.expect-img.padding {
  padding-right: 20px;
}

.image-23 {
  padding: 5px;
}

.flex-img-left {
  align-items: flex-start;
  display: flex;
}

.expect-block {
  padding-top: 40px;
  padding-bottom: 40px;
}

.most-popular-badge-v2 {
  height: 100px;
  position: absolute;
  inset: -50px -50px auto auto;
  transform: rotate(17deg);
}

.cyp-box {
  background-color: #fff;
  border: 2px #2ba1f5;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  box-shadow: 0 1px 3px #00000080;
}

.js-btn-cyp.button-secondary-v3.value-button {
  background-color: #4dc445;
}

.js-btn-cyp.button-secondary-v3.value-button:hover {
  box-shadow: 0 1px 4px 1px #4dc445, 1px 1px 3px #4dc445;
}

.js-btn-cyp.button-white.js-track-choose-plan.small {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 20px;
}

.js-btn-cyp.button-white.js-track-choose-plan.cyp25 {
  width: 100%;
  box-shadow: none;
  color: #333;
  border-radius: 5px;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.js-btn-cyp.cyp-plan-select-button.v2 {
  background-color: var(--blue);
  padding: 10px 25px;
  font-family: futura-pt, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

.js-btn-cyp.btn-large {
  padding: 20px 40px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.js-btn-cyp.btn-small {
  padding: 10px 20px;
  font-family: futura-pt, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.cyp-description {
  padding: 20px;
}

.cyp-content-v2 {
  padding-top: 60px;
  padding-bottom: 140px;
}

.value-block {
  background-color: var(--blue);
  color: #fff;
  text-align: center;
  width: 100%;
  margin-top: -10px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: futura-pt, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.text-block-9 {
  text-decoration: underline;
}

.cyp-box-v3 {
  text-align: center;
  background-color: #fff;
  border: 2px #2ba1f5;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 20px;
  display: flex;
  box-shadow: 0 1px 3px #00000080;
}

.free-shipping {
  text-decoration: none;
}

.skill-img-v3 {
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
}

.best-value-block {
  background-color: var(--green);
  color: #fff;
  text-align: center;
  width: 100%;
  margin-top: -10px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: futura-pt, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.plan-feature {
  margin-bottom: 5px;
}

.cyp-logo-img {
  height: 40px;
}

.small-footer-block-v3 {
  border-top: 1px solid #aacde5;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.cyp-v3 {
  background-color: #f1f1f1;
}

.cyp-header-v3 {
  align-items: center;
  padding: 15px 20px;
  display: block;
}

.cyp-progress-bar {
  background-color: var(--yellow);
  height: 10px;
  position: relative;
}

.step {
  font-family: futura-pt, sans-serif;
}

.step.cyp25 {
  font-family: Mulish, sans-serif;
}

.cyp-center-header {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.cyp-progress {
  background-color: #2ba1f5;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.cyp-progress.one-third {
  width: 0%;
  transition: width .2s;
}

.cyp-progress.one-third.v2 {
  border-radius: 8px;
}

.pre-signup-content {
  background-color: #f1f1f1;
  padding-bottom: 140px;
}

.level-img-v3 {
  width: 40px;
}

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

.step1 {
  position: absolute;
  inset: 0% 0% auto;
}

.step2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: absolute;
  inset: 0% 0% auto;
}

.step2.step-block {
  display: block;
}

.theme-box-v3 {
  text-align: center;
  border: 2px #2ba1f5;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  box-shadow: 0 1px 3px #00000080;
}

.theme-box-v3.js-puzzle-theme {
  box-shadow: none;
  cursor: pointer;
  border-style: solid;
  border-radius: 10px;
  overflow: hidden;
}

.theme-box-v3.js-puzzle-theme.selected {
  background-color: var(--red);
  box-shadow: 0 1px 3px 0 var(--red);
  color: #fff;
}

.theme-box-v3.js-puzzle-theme.cyp25 {
  background-color: #f5f5f5;
  border-style: none;
  position: relative;
}

.theme-header {
  color: var(--blue);
  margin-top: 10px;
}

.step3 {
  display: none;
  position: absolute;
  inset: 0% 0% auto;
}

.step3.step-block {
  display: none;
}

.step3.step-block-v3 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.step3.step-block-v4 {
  background-image: linear-gradient(#fff, #f5f6f780 33%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  display: none;
}

.first-plan {
  margin-top: 50px;
}

.container-9 {
  height: 90px;
  padding: 5px 5px 60px;
}

.back {
  cursor: pointer;
  display: none;
}

.back-block {
  height: 40px;
  padding-top: 10px;
  padding-left: 100px;
  padding-right: 100px;
}

.back-block.cyp {
  height: 40px;
}

.theme-grid {
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto minmax(auto, 1fr);
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-flow: row;
  justify-content: center;
  justify-items: center;
  position: relative;
}

.div-block-19 {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 60px;
  display: flex;
}

.step-container {
  height: 100vh;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.container-10 {
  align-items: center;
  display: flex;
}

.step-block {
  padding-bottom: 100px;
}

.step-block.step1 {
  display: block;
}

.step-block.step2, .step-block.step2.v2 {
  display: none;
}

.image-24 {
  height: 40px;
}

.gift-card-header {
  justify-content: center;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.content {
  padding-top: 60px;
  padding-bottom: 60px;
}

.content.center.block-snow {
  z-index: 999999;
  background-color: var(--black);
  position: relative;
}

.content.center.block-snow._2024 {
  background-color: var(--white);
}

.content.center.block-snow-2025 {
  z-index: 80000;
  background-color: var(--blue-2024);
  position: relative;
}

.content.center.block-snow-2025._2024 {
  background-color: var(--white);
}

.content.gc-content.block-snow {
  z-index: 999999;
  background-color: var(--black);
  position: relative;
}

.content.gc-content.block-snow.blur {
  filter: blur(5px);
}

.content.gc-content.block-snow._2024 {
  background-color: #0e0e0e00;
}

.content.gc-content.block-snow-2025 {
  z-index: 80000;
  background-color: var(--gray-2024);
  position: relative;
}

.content.gc-content.block-snow-2025.blur {
  filter: blur(5px);
}

.content.gc-content.block-snow-2025._2024 {
  background-color: #0e0e0e00;
}

.content.hidden {
  display: none;
}

.text-block-10 {
  margin-top: 20px;
  padding-left: 100px;
  padding-right: 100px;
  font-style: italic;
}

.section {
  background-color: #f1f1f1;
}

.gift-card-block {
  border: 1px solid var(--blue);
  background-color: #fff;
  padding-top: 10px;
  padding-bottom: 20px;
}

.gift-card-block.bf {
  border-style: none;
  padding-top: 0;
}

.gift-card-block.bf._2024 {
  border-style: solid;
  border-width: 2px;
  border-radius: 4px;
}

.column {
  border: 1px solid var(--blue);
  background-color: #fff;
}

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

.btn-primary {
  color: #fff;
  cursor: pointer;
  background-color: #2ba1f5;
  padding: 20px 40px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 1px 9px #b8ced5;
}

.btn-primary:hover {
  box-shadow: 0 1px 4px 1px #2ba1f5, 1px 1px 3px #2ba1f5;
}

.btn-primary.js-select-theme {
  margin-top: 20px;
}

.btn-primary.btn-hero {
  display: inline;
}

.btn-primary.btn-small {
  padding: 15px 25px;
}

.btn-primary.btn-go {
  margin-top: 20px;
  margin-bottom: 20px;
}

.btn-primary.blog-all {
  margin-top: 20px;
}

.btn-primary.btn-pink {
  color: #000;
  background-color: #ffd04d;
}

.btn-primary.btn-pink.heading-v3 {
  line-height: 22px;
}

.btn-primary.btn-pink.heading-v3.btn-padding, .btn-primary.btn-pink.btn-margin, .btn-primary.btn-margin {
  margin-top: 20px;
}

.btn-primary.js-btn-gc {
  margin-top: 10px;
}

.btn-primary.margin-auto.center.mt-2 {
  margin-top: 20px;
}

.btn-primary.gray-out {
  color: #848484;
  background-color: #bde2fc;
}

.btn-primary.gc {
  background-color: var(--blue-2024);
  border-radius: 4px;
  margin-top: 20px;
}

.bold-text {
  font-family: Helvetica Bold, sans-serif;
  font-weight: 400;
}

.image-25 {
  width: 300px;
}

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

.bag-puzzle {
  margin-top: 20px;
  padding-left: 100px;
  padding-right: 100px;
}

.button-hero-gift {
  background-color: var(--green);
  color: #fff;
  margin-left: 10px;
  margin-right: 10px;
  padding: 20px 40px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 1px 9px #b8ced5;
}

.button-hero-gift:hover {
  box-shadow: 0 1px 4px 1px #2ba1f5, 1px 1px 3px #2ba1f5;
}

.button-hero-gift.js-select-theme {
  margin-top: 20px;
}

.button-hero-join {
  color: #fff;
  background-color: #2ba1f5;
  margin-left: 10px;
  margin-right: 10px;
  padding: 20px 40px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 1px 9px #b8ced5;
}

.button-hero-join:hover {
  box-shadow: 0 1px 4px 1px #2ba1f5, 1px 1px 3px #2ba1f5;
}

.button-hero-join.js-select-theme {
  margin-top: 20px;
}

.text-span {
  text-decoration: line-through;
}

.text-span-2 {
  color: #949494;
  text-decoration: line-through;
}

.bf-offer {
  background-color: var(--blue);
  color: #fff;
}

.sticky-offer-gift-cards {
  z-index: 999;
  background-color: var(--blue);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 3px;
  text-decoration: none;
  display: flex;
  position: sticky;
  inset: 0% 0% auto;
}

.html-embed {
  width: 200px;
}

.bf-offer-2 {
  color: #fff;
  background-color: #2ba1f5;
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 23px;
  display: block;
}

.bf-offer-2.cm, .bf-offer-2.hidden {
  display: none;
}

.bf-offer-2.discount {
  display: flex;
}

.paragraph-2 {
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
}

.paragraph-2.white {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 13px;
}

.section-2 {
  background-color: #2ba1f5;
}

.contact-email-block {
  border: 2px solid var(--blue);
  border-radius: 2px;
  display: inline-block;
}

.text-block-11 {
  background-color: var(--blue);
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 5px;
  display: inline-block;
}

.text-block-12 {
  padding-left: 5px;
  padding-right: 5px;
  display: inline;
}

.image-26 {
  margin-right: 5px;
}

.link-block-2 {
  cursor: pointer;
}

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

.paragraph-3 {
  margin-top: 10px;
}

.gc-link {
  background-color: var(--green);
  color: #fff;
  border-radius: 3px;
  padding: 2px 4px;
  text-decoration: none;
  display: inline-block;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.text-span-3, .text-span-4, .text-span-5 {
  text-decoration: line-through;
}

.text-span-6 {
  color: #8d8d8d;
  text-decoration: line-through;
}

.hero-overlay-v4 {
  color: #fff;
  background-image: linear-gradient(#00000091, #00000091), url('../images/bg-v7.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  justify-content: center;
  align-items: center;
  height: 90vh;
  max-height: 780px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}

.content-cotnainer {
  max-width: 640px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.heading-7 {
  font-weight: 700;
}

.article-author-block {
  align-items: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
  display: flex;
}

.article-author-block.center {
  justify-content: center;
  margin-bottom: 40px;
}

.article-author {
  border-right: 2px solid #b3b3b3;
  margin-right: 10px;
  padding-right: 10px;
}

.article-author.article-author-end {
  border-right-style: none;
}

.article-author.article-author-end.end {
  padding-right: 0;
}

.article-author.end {
  margin-right: 0;
}

.content-paragraph {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 18px;
  line-height: 25px;
}

.article-highlight {
  background-color: #2ba1f526;
  border-radius: 10px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 20px;
  font-size: 18px;
  line-height: 25px;
}

.article-highlight-heading {
  margin-top: 0;
}

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

.article-highlight-text {
  margin-bottom: 0;
  padding-left: 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 18px;
  line-height: 25px;
}

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

.image-28 {
  width: 250px;
}

.first-plan-v2 {
  margin-top: 30px;
}

.lifemart-popup {
  z-index: 99999;
  background-color: #02090e4f;
  display: block;
  position: fixed;
  inset: 0%;
  overflow: auto;
}

.lifemart-popup-content.center {
  background-color: #fff;
  margin-top: 100px;
  padding: 40px;
}

.promo-code {
  border: 6px dashed var(--yellow);
  padding: 10px 20px;
  font-family: futura-pt, sans-serif;
  font-size: 17px;
  font-weight: 700;
  display: inline-block;
}

.text-span-7 {
  color: var(--blue);
}

.image-30 {
  height: 40px;
  margin-bottom: 20px;
  position: absolute;
  bottom: 0;
}

.button-hero-gift-v2 {
  background-color: var(--green);
  color: #fff;
  margin-left: 10px;
  margin-right: 10px;
  padding: 20px 40px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 1px 9px #c1d8bf;
}

.button-hero-gift-v2:hover {
  box-shadow: 0 1px 4px 1px var(--green), 1px 1px 3px 0 var(--green);
}

.button-hero-gift-v2.js-select-theme {
  margin-top: 20px;
}

.button-tertiary-v3 {
  background-color: var(--yellow);
  color: #2e2e2e;
  margin-top: 20px;
  padding: 10px 20px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 1px 9px #d5cfbb;
}

.button-tertiary-v3:hover {
  box-shadow: 0 1px 4px 1px var(--yellow), 1px 1px 3px 0 var(--yellow);
}

.button-tertiary-v3.js-select-theme {
  margin-top: 20px;
}

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

.slide {
  background-color: var(--green);
  width: 25%;
}

.slide.red-bg {
  background-color: var(--red);
}

.slick-v2 {
  margin-top: 40px;
  margin-bottom: 40px;
  display: none;
}

.slider-quote {
  z-index: 1;
  background-color: var(--blue);
  color: #fff;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: inline-block;
}

.fb-reviews {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.text-span-10 {
  font-style: italic;
  text-decoration: underline;
}

.section-content-v2 {
  padding-top: 20px;
  padding-bottom: 100px;
}

.section-content-v2.alternating-color {
  background-color: #f1f1f1;
  background-image: linear-gradient(#f1f1f1, #fff);
}

.section-content-v2.section-journal {
  display: block;
}

.section-content-v2.bg-pink {
  background-color: #fcf8f6;
}

.section-content-v2.tree-section {
  background-color: #fcf8f6;
  align-items: center;
  min-height: 800px;
  display: flex;
  position: relative;
}

.section-content-v2.bg-blue {
  background-color: var(--blue);
}

.button-secondary-white {
  color: var(--blue);
  background-color: #fff;
  padding: 20px 40px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 1px 9px #b8ced5;
}

.button-secondary-white:hover {
  box-shadow: 0 1px 4px 1px #2ba1f5, 1px 1px 3px #2ba1f5;
}

.button-secondary-white.js-select-theme, .button-secondary-white.center.mt-2 {
  margin-top: 20px;
}

.whats-in-the-box-text-v2 {
  padding-left: 40px;
}

.whats-in-the-box-block-v2 {
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.slider-quote-text {
  background-color: var(--blue);
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 350px;
  height: 350px;
  padding: 20px;
  font-size: 18px;
  line-height: 27px;
  display: flex;
}

.div-block-22 {
  color: #fff;
  background-color: #000;
  height: 100%;
  min-height: 100%;
  display: inline-block;
  position: absolute;
}

.slide-img {
  z-index: 3;
  position: relative;
  transform: scale(1.1);
}

.slide-quote {
  z-index: 1;
  background-color: var(--blue);
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.slide-quote-text {
  margin: 20px;
  font-size: 20px;
  line-height: 26px;
}

.slide-quote-container {
  justify-content: center;
  align-items: center;
  min-height: 300px;
  display: flex;
}

.surprise-puzzle-v2 {
  max-width: 500px;
}

.nav-v3-non-landing {
  background-color: #fff;
  border-bottom: 2px solid #f1f1f1;
}

.nav-link-v3 {
  color: var(--black);
  font-family: futura-pt, sans-serif;
  font-size: 15px;
}

.nav-link-v3.w--current {
  color: var(--blue);
}

.nav-link-v3.cta {
  background-color: var(--blue);
  color: #fff;
  border-radius: 3px;
  margin: 0 10px;
  padding: 8px 15px;
}

.nav-link-v3.bf-link {
  background-color: var(--red);
  color: #fff;
  border-radius: 3px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 3px 10px;
}

.nav-link-v3.gc-link {
  background-color: var(--green);
  color: #fff;
  border-radius: 3px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 3px 10px;
}

.nav-non-landing-menu-container {
  align-items: center;
  display: flex;
}

.nav-non-landing-container {
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.btn-yellow {
  background-color: var(--yellow);
  color: var(--black);
  padding: 20px 40px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 1px 9px #b8ced5;
}

.btn-yellow:hover {
  box-shadow: 0 1px 4px 1px #2ba1f5, 1px 1px 3px #2ba1f5;
}

.btn-yellow.js-select-theme {
  margin-top: 20px;
}

.btn-yellow.btn-hero {
  display: inline;
}

.btn-yellow.btn-small {
  padding: 15px 25px;
}

.text-black {
  color: #333;
}

.content-spacer {
  height: 40px;
}

.div-block-24 {
  position: sticky;
}

.list.sorter-list {
  padding-left: 10px;
  list-style-type: none;
}

.hero-container {
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding-bottom: 100px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

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

.sticky-nav-v4 {
  z-index: 1;
  background-color: #fff;
  padding: 10px 20px;
}

.hero-main-heading {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
}

.hero-main-heading.faq-heading {
  margin-top: 40px;
}

.hero-block {
  max-width: 800px;
  color: var(--dark-blue);
  padding: 10px 40px 40px;
}

.hero-heading-sub-header {
  font-size: 18px;
  font-style: normal;
  line-height: 22px;
}

.hero-centered-container {
  text-align: center;
  flex: 1;
  justify-content: center;
  display: flex;
}

.hero-test {
  background-color: var(--blue);
  background-image: url('../images/bag-angle.jpg');
  background-position: 500px;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 80vh;
}

.section-3 {
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.blue {
  color: var(--blue);
}

.blue.step-header {
  margin-top: 40px;
  margin-bottom: 0;
}

.proof-img {
  width: 100%;
  max-width: 500px;
}

.caps {
  text-transform: uppercase;
}

.how-it-works-block-v2 {
  background-color: var(--blue);
  color: #fff;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  min-height: 360px;
  margin-top: 90px;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.how-it-works-img-container {
  background-color: #fff;
  border: 7px solid #0000;
  border-radius: 90px;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 180px;
  margin-top: -90px;
  padding: 25px;
  display: flex;
}

.how-it-works-img-container.large {
  border-width: 7px;
}

.how-it-works-img-container.large.yellow {
  border-color: var(--yellow);
}

.how-it-works-img-container.large.green {
  border-color: var(--green);
}

.how-it-works-img-offset {
  height: 100%;
}

.how-it-works-img-offset.wide {
  height: auto;
}

.whats-inthe-box-container {
  border: 3px solid var(--blue);
  text-align: center;
  border-radius: 10px;
  margin-top: 20px;
  padding: 20px;
}

.box-text {
  margin-top: 40px;
  font-size: 18px;
  line-height: 22px;
}

.box-img {
  height: 200px;
  margin-top: 20px;
}

.testimonial-block-v3 {
  border: 3px solid var(--blue);
  background-color: #fff;
  border-radius: 10px;
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 20px;
}

.quote-block {
  border: 3px solid var(--blue);
  border-radius: 10px;
  overflow: hidden;
}

.tree {
  height: 50px;
  margin-left: 5px;
}

.header-plus-img {
  align-items: center;
  display: flex;
}

.header-plus-img.center {
  justify-content: center;
}

.section-newsletter {
  padding-top: 20px;
  padding-bottom: 20px;
}

.blue-bg {
  background-color: var(--blue);
}

.blue-bg.guarantee-bar {
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 100px;
  padding: 40px;
  display: flex;
}

.newsletter-container {
  align-items: center;
  display: flex;
}

.div-block-25 {
  flex: 1;
}

.pre-signup-content-v2 {
  padding-bottom: 140px;
}

.step-block-v2 {
  padding-bottom: 100px;
}

.step-block-v2.step2, .step-block-v2.step1, .step-block-v2.step-1 {
  display: block;
}

.cyp-block {
  background-color: var(--blue);
  color: #fff;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  margin-top: 90px;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.cyp-block.gift {
  margin-top: 20px;
}

.button-white {
  color: var(--blue);
  background-color: #fff;
  padding: 20px 40px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 1px 9px #b8ced5;
}

.button-white:hover {
  box-shadow: 0 1px 4px 1px #2ba1f5, 1px 1px 3px #2ba1f5;
}

.button-white.js-select-level.js-track-skill-level.smaller-text {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 20px;
}

.button-white.js-select-theme {
  margin-top: 20px;
}

.cyp-description-v2 {
  text-align: center;
  padding: 20px;
}

.cyp-img-container {
  border: 3px solid var(--blue);
  background-color: #fff;
  border-radius: 90px;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 180px;
  margin-top: -90px;
  padding: 25px;
  display: flex;
}

.cyp-img-container.large {
  border-width: 7px;
}

.cyp-img-container.large.yellow {
  border-color: var(--yellow);
}

.cyp-img-container.large.green {
  border-color: var(--green);
}

.cyp-img-container.large.white-border {
  border-color: #fff;
}

.cyp-img {
  height: 100%;
}

.theme-box {
  text-align: center;
  border-style: none;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  box-shadow: 0 1px 3px #00000080;
}

.theme-box.js-puzzle-theme {
  cursor: pointer;
  border: 1px solid #b6b6b6;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 1px 3px #00000080;
}

.theme-box.js-puzzle-theme.selected {
  background-color: var(--red);
  box-shadow: 0 1px 3px 0 var(--red);
  color: #fff;
}

.theme-header-orig {
  margin-top: 10px;
}

.price-text-v3 {
  color: #fff;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
}

.cyp-level-img {
  width: 40px;
}

.plan-title {
  text-transform: uppercase;
  font-size: 22px;
}

.nav-logo-v5 {
  object-fit: contain;
  object-position: 0% 50%;
  width: auto;
  height: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-logo-v5.single-logo {
  display: none;
}

.nav-grid-v5 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
}

.button-hero-gift-cta {
  background-color: var(--green);
  color: #fff;
  margin-left: 10px;
  margin-right: 10px;
  padding: 20px 40px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 1px 9px #b8ced5;
}

.button-hero-gift-cta:hover {
  box-shadow: 0 1px 4px 1px #2ba1f5, 1px 1px 3px #2ba1f5;
}

.button-hero-gift-cta.js-select-theme {
  margin-top: 20px;
}

.button-hero-join-cta {
  color: #fff;
  background-color: #2ba1f5;
  padding: 20px 40px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 1px 9px #b8ced5;
}

.button-hero-join-cta:hover {
  box-shadow: 0 1px 4px 1px #2ba1f5, 1px 1px 3px #2ba1f5;
}

.button-hero-join-cta.js-select-theme {
  margin-top: 20px;
}

.dark-blue {
  color: var(--dark-blue);
}

.image-32 {
  height: 100px;
}

.giveaway-header {
  color: #fff;
}

.image-33 {
  display: none;
}

.heading-8 {
  font-size: 2.5em;
}

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

.grid-2 {
  grid-column-gap: 16px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: minmax(auto, 1fr);
  grid-auto-flow: column;
  align-items: start;
}

.cyp-img-container-icon {
  margin-top: -90px;
}

.cyp-icon-container {
  width: 180px;
  height: 180px;
  margin-top: -90px;
  position: relative;
}

.cyp-icon-space {
  border: 7px solid #fff;
  border-radius: 90px 90px 0 0;
  width: 180px;
  height: 90px;
  position: absolute;
}

.cyp-icon {
  background-color: #fff;
  border-radius: 83px;
  justify-content: center;
  width: 166px;
  height: 166px;
  padding: 25px;
  display: flex;
  position: absolute;
  top: 7px;
  left: 7px;
}

.cyp-icon.blue-border {
  border: 7px solid var(--blue);
}

.cyp-icon.yellow-border {
  border: 7px solid var(--yellow);
}

.cyp-icon.green-border {
  border: 7px solid var(--green);
}

.image-34 {
  height: 100%;
}

.cyp-value {
  width: 76px;
  position: absolute;
  inset: 116px 7px auto auto;
  transform: rotate(23deg);
}

.puzzle-piece {
  z-index: 9999;
  opacity: 1;
  width: 100px;
  position: fixed;
  inset: auto auto -40px 0%;
}

.puzzle-piece.js-puzzle-piece {
  z-index: 9999;
  opacity: 1;
  width: 200px;
  display: inline-block;
  position: fixed;
  inset: auto auto -40px 0%;
}

.reviews-container {
  flex-wrap: wrap;
}

.reviews-block {
  margin-top: 40px;
  margin-bottom: 40px;
}

.reviews-img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.image-35 {
  width: 20px;
}

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

.paragraph-4 {
  color: #83c64f;
  margin-bottom: 0;
}

.puzzle-piece-popup {
  background-color: #ffffffa6;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.puzzle-piece-popup.js-puzzle-piece-popup {
  z-index: 99999;
  display: none;
}

.puzzle-piece-popup-container {
  border: 3px solid var(--blue);
  background-color: #fff;
  border-radius: 3px;
  flex-direction: column;
  align-items: center;
  width: 50%;
  max-width: 600px;
  margin-top: -20px;
  padding: 20px;
  display: block;
  position: relative;
}

.popup-close {
  width: 50px;
  height: 50px;
  position: absolute;
  inset: 5px 5px auto auto;
}

.popup-close.js-popup-close, .popup-close.js-puzzle-piece-popup-close {
  cursor: pointer;
}

.puzzle-piece-popup-content {
  flex-direction: column;
  align-items: center;
  display: none;
}

.puzzle-piece-popup-content.active {
  display: flex;
}

.puzzle-piece-popup-content.js-puzzle-screen-3, .puzzle-piece-popup-content.js-puzzle-screen-2 {
  display: none;
}

.missing-pieces {
  justify-content: center;
  align-items: center;
  display: flex;
}

.missing-piece-img {
  cursor: pointer;
  margin-left: 5px;
  margin-right: 5px;
}

.text-field {
  border: 2px solid var(--blue);
  border-radius: 3px;
}

.form {
  text-align: center;
}

.success-message {
  background-color: #fff;
}

.text-span-11 {
  border: 1px dotted var(--blue);
  padding: 3px 5px;
  display: inline-block;
}

.div-block-28 {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.js-puzzle-piece-status {
  margin-top: 20px;
}

.puzzle-piece-popup-content-block {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.puzzle-piece-popup-content-block.center {
  display: block;
}

.image-36 {
  width: 300px;
}

.html-embed-2 {
  display: block;
}

.hero-section {
  padding-top: 40px;
  position: relative;
}

.image-37 {
  height: 800px;
  position: absolute;
  inset: 0% -13% 0% auto;
}

.nav-grid-v5-copy, .navgrid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
}

.logo {
  object-fit: contain;
  object-position: 0% 50%;
  width: auto;
  height: 57px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo.single-logo {
  display: none;
}

.section-5 {
  height: 500px;
}

.button-hero-puzzle {
  color: #fff;
  background-color: #2ba1f5;
  padding: 20px 40px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 1px 9px #b8ced5;
}

.button-hero-puzzle:hover {
  box-shadow: 0 1px 4px 1px #2ba1f5, 1px 1px 3px #2ba1f5;
}

.button-hero-puzzle.js-select-theme {
  margin-top: 20px;
}

.image-38 {
  height: 483px;
  position: absolute;
}

.div-block-29 {
  margin-top: 171px;
}

.text-span-12 {
  color: var(--blue);
}

.image-40 {
  margin-top: 40px;
  box-shadow: 3px 3px 6px 13px #2ba1f51a;
}

.paragraph-5 {
  font-size: 18px;
  line-height: 24px;
}

.section-6 {
  display: none;
}

.img-link {
  color: var(--blue);
  text-align: center;
  cursor: pointer;
  font-size: 20px;
  line-height: 28px;
}

.puzzle-page {
  padding-bottom: 40px;
}

.html-embed-3 {
  margin-top: 20px;
}

.collection-list-wrapper {
  margin-bottom: 5px;
}

.image-41 {
  max-width: 300px;
  max-height: 75px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.hero-text {
  width: 400px;
  padding-top: 40px;
}

.hero-flex-container {
  align-items: flex-start;
  display: flex;
}

.div-block-30 {
  flex: 1;
}

.hero-paragraph {
  width: 396px;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 24px;
}

.hero-small {
  color: #868686;
  margin-top: 40px;
  font-size: 16px;
  line-height: 22px;
}

.section-7 {
  padding-bottom: 40px;
}

.how-it-works-icon {
  transform: rotate(-6deg);
}

.hero-small-mobile {
  color: #868686;
  margin-top: 40px;
  font-size: 16px;
  line-height: 22px;
  display: none;
}

.hero-img-mobile {
  display: none;
}

.collection-item {
  width: 33%;
  padding: 20px;
}

.collection-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-items: flex-start;
}

.collection-item-2 {
  margin-bottom: 10px;
}

.collection-list-wrapper-2 {
  margin-bottom: 40px;
}

.pagination {
  margin-top: 40px;
}

.section-8 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.section-padded {
  padding-top: 40px;
  padding-bottom: 40px;
}

.image-42 {
  height: 30px;
  margin: 20px auto;
  display: block;
}

.section-9 {
  justify-content: center;
  align-items: stretch;
}

.container-12 {
  padding-left: 220px;
  padding-right: 220px;
}

.container-13 {
  text-align: center;
  padding-left: 220px;
  padding-right: 220px;
}

.div-block-31 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.hero-heading {
  font-size: 43px;
  line-height: 51px;
}

.html-embed-4 {
  border: 2px solid var(--blue);
  border-radius: 5px;
  margin-top: 10px;
}

.text-span-13 {
  background-color: var(--blue);
  color: #fff;
  padding-left: 8px;
  padding-right: 7px;
}

.wishlist-header {
  margin-top: 80px;
  font-size: 52px;
  line-height: 60px;
}

.text-block-14 {
  font-size: 21px;
  line-height: 31px;
}

.text-block-15 {
  margin-top: 10px;
  font-size: 22px;
  line-height: 34px;
}

.paragraph-6 {
  font-size: 22px;
  line-height: 34px;
}

.wishlist-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.wishlist-columns {
  margin-top: 60px;
  margin-bottom: 60px;
}

.wishlist-flex {
  align-items: flex-start;
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
}

.wishlist-works-img {
  width: 50%;
}

.wishlist-works-img.right {
  padding-right: 20px;
}

.wishlist-works-img.left, .div-block-32 {
  padding-left: 20px;
}

.div-block-32-reverse {
  padding-right: 20px;
}

.text-span-14 {
  text-decoration: line-through;
}

.text-span-15 {
  color: var(--blue);
}

.hero {
  text-align: center;
  background-image: linear-gradient(#000000b3, #000000b3), url('../images/main-hero.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  display: flex;
}

.text-span-16 {
  color: var(--blue);
}

.hero-main-block {
  margin-top: 100px;
}

.dark-section {
  background-color: #070707;
}

.text-span-17 {
  font-style: italic;
  font-weight: 400;
}

.light-blue {
  color: var(--blue);
}

.flex-50-container {
  align-items: center;
  display: flex;
}

.flex-50-container.full-width-container.objections-container.hide {
  display: none;
}

.flex-50-img-left {
  width: 50%;
  padding-right: 20px;
}

.flex-50-img-left.mobile {
  display: none;
}

.flex-50-text-right {
  padding-left: 20px;
}

.flex-50-img-right {
  width: 50%;
  padding-left: 20px;
}

.flex-50-text-left {
  padding-right: 20px;
}

.off-white {
  color: #dbdbdb;
}

.whats-in-the-bag {
  background-color: #070707;
  border-radius: 10px;
  margin-top: 140px;
  display: flex;
}

.image-43 {
  width: 50%;
  margin-top: -120px;
  margin-bottom: 10px;
}

.whats-in-the-bag-text {
  width: 50%;
  padding: 20px;
}

.image-44 {
  height: 100px;
}

.section-10 {
  background-image: linear-gradient(#fff, #f1f1f1);
}

.review-item {
  text-align: center;
  background-color: #fff;
  border-radius: 5px;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  display: flex;
}

.image-45 {
  height: 25px;
}

.bold-text-2 {
  margin-top: 10px;
  display: inline-block;
}

.image-46 {
  border-radius: 50px;
  width: 100px;
  height: 100px;
  margin-top: 40px;
}

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

.how-it-works-slanted {
  z-index: 1;
  background-color: #fff;
  border: 2px solid #f1f1f1;
  border-radius: 25px;
  align-items: center;
  width: 59%;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: translate(10px, -24px)rotate(20deg);
}

.how-it-works-slanted.left {
  transform: translate(-10px, -19px)rotate(-23deg);
}

.how-it-works-icon-right {
  transform: rotate(-6deg);
}

.how-it-works-icon-left {
  transform: rotate(37deg);
}

.columns {
  margin-top: 40px;
}

.text-span-18 {
  color: var(--blue);
}

.section-small-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

.image-47 {
  height: 40px;
}

.container-14 {
  align-items: center;
  display: flex;
}

.div-block-33 {
  flex: 1;
}

.navbar-2 {
  z-index: 99;
  background-color: #0000;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-item {
  color: #fff;
  font-family: futura-pt, sans-serif;
  font-size: 16px;
}

.nav-item.single-link {
  text-decoration: none;
}

.nav-menu-2 {
  align-items: center;
  display: flex;
}

.btn-nav {
  background-color: var(--blue);
  color: #fff;
  padding: 8px 20px;
  font-family: futura-pt, sans-serif;
  font-size: 16px;
}

.btn-nav.mobile {
  display: flex;
}

.body-3 {
  font-size: 16px;
  line-height: 22px;
}

.full-width-container {
  padding-left: 100px;
  padding-right: 100px;
}

.full-width-container.navbar-2 {
  background-color: #171717;
  position: sticky;
}

.full-width-container.navbar-2.test {
  background-color: #fff;
}

.objections-container {
  padding-top: 40px;
  padding-bottom: 40px;
}

.better-img {
  padding: 10px;
}

.better-img.bottom {
  margin-top: 40px;
}

.text-span-19 {
  color: var(--blue);
}

.margin-auto {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.rich-text-block {
  margin-top: 40px;
}

.brand-puzzle-img {
  height: 100%;
  max-height: 400px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.collection-list-2 {
  display: flex;
}

.link-block-3 {
  width: 100%;
  padding: 20px;
  text-decoration: none;
}

.no-link {
  text-decoration: none;
}

.no-link.blue.similar-puzzles {
  margin: 10px 5px;
}

.no-link.compliance-item {
  color: #333;
}

.no-link.spaced {
  margin-left: 5px;
  margin-right: 5px;
}

.collection-list-3 {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-48 {
  width: 150px;
  margin: 10px 40px;
}

.breadcrumbs {
  align-items: flex-start;
  display: flex;
}

.separator {
  margin-left: 4px;
  margin-right: 4px;
}

.collection-item-3 {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 33%;
  display: flex;
}

.collection-list-4 {
  display: flex;
}

.columns-2 {
  margin-bottom: 60px;
}

.image-49 {
  width: 100%;
}

.html-embed-5 {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}

.puzzle-piece-group {
  z-index: 99999;
  height: 50px;
  position: fixed;
  inset: auto 0% 0%;
}

.puzzle-pc {
  opacity: 0;
  position: absolute;
}

.puzzle-pc-1, .puzzle-pc-2, .puzzle-pc-3 {
  opacity: 0;
  cursor: pointer;
  position: absolute;
}

.sticky-banner {
  background-color: var(--blue);
  justify-content: center;
  align-items: center;
  height: 40px;
  display: none;
  position: absolute;
  inset: 0% 0% auto;
}

.sticky-banner.red {
  background-color: var(--red);
}

.btn-sticky-header {
  background-color: var(--red);
  margin-left: 10px;
  padding: 4px 10px;
  font-family: futura-pt, sans-serif;
}

.btn-sticky-header.blue {
  background-color: var(--blue);
  color: #fff;
}

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

.image-50 {
  height: 200px;
}

.paragraph-7 {
  margin-top: 40px;
  font-family: Helvetica, sans-serif;
}

.bold-text-3 {
  font-family: Helvetica Bold, sans-serif;
  font-weight: 400;
}

.content-column {
  font-size: 18px;
  line-height: 25px;
}

.text-block-16 {
  color: var(--blue);
  background-color: #2ba1f52b;
  border-radius: 20px;
  padding: 4px 8px;
  display: inline-block;
}

.link-block-4 {
  color: #333;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 1px 3px 3px #00000005;
}

.heading-9 {
  margin-top: 10px;
}

.paragraph-8 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.container-15 {
  padding-bottom: 40px;
}

.image-51 {
  border-radius: 10px 10px 0 0;
  width: 100%;
}

.image-52 {
  margin-bottom: 20px;
}

.link-block-5 {
  margin-top: 40px;
}

.text-block-17 {
  margin-top: 20px;
}

.text-block-17.js-select-theme {
  font-size: 14px;
}

.tinder-end {
  opacity: 0;
  text-align: center;
  margin-top: 40px;
}

.tinder-end.animate__animated {
  z-index: 999;
  opacity: 0;
  margin-top: 200px;
  display: none;
  position: absolute;
  inset: 0% 0% auto;
}

.collection-list-5 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-date {
  color: #9e9e9e;
}

.blog-read-more {
  color: var(--blue);
  cursor: pointer;
}

.columns-3 {
  margin-top: 20px;
  margin-bottom: 60px;
}

.image-53 {
  height: 25px;
}

.div-block-35 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.image-54 {
  max-width: 800px;
  padding-bottom: 20px;
}

.hero-v2 {
  text-align: center;
  background-image: linear-gradient(#000000b3, #000000b3), url('../images/bg-split-5a.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, auto;
  background-attachment: scroll, scroll;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  margin-top: -81px;
  display: flex;
}

.div-block-36 {
  flex: 1;
}

.cyp-logo-img-v2 {
  max-height: 30px;
  margin-bottom: 10px;
}

.div-block-37 {
  flex-direction: column;
  width: 20%;
  display: flex;
}

.cyp-header-img {
  opacity: 0;
  height: 100%;
  position: absolute;
}

.cyp-header-img.quote-1 {
  position: relative;
}

.cyp-list-block {
  margin-bottom: 20px;
  display: flex;
}

.cyp-checkbox {
  height: 30px;
  margin-right: 10px;
}

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

.image-56 {
  height: 100px;
  margin-bottom: 20px;
}

.columns-4 {
  margin-top: 40px;
}

.cyp-quote-block {
  justify-content: space-around;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.cyp-quote {
  flex: 0 auto;
  order: 0;
  min-width: 0;
  margin-left: 10px;
  margin-right: 10px;
}

.cyp-heading-v2 {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
}

.cyp-heading-v2.faq-heading {
  margin-top: 40px;
}

.cyp-heading-v2.expect-headline-v3 {
  margin-top: 10px;
}

.cyp-grid-quote {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  margin-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
}

.cyp-product-shot {
  height: 250px;
}

.cyp-block-v2 {
  background-color: var(--blue);
  color: #fff;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.cyp-plan-title {
  text-align: center;
  background-color: #f1f1f1;
  font-family: Helvetica Bold, sans-serif;
  font-weight: 400;
}

.cyp-plan-column {
  background-color: #f1f1f1;
  padding-left: 1px;
  padding-right: 1px;
}

.cyp-plan-column.left-column {
  padding-left: 0;
}

.cyp-plan-column.right-column {
  padding-right: 0;
}

.back-block-v2 {
  height: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 100px;
  padding-right: 100px;
}

.cyp-icon-2 {
  background-color: #fff;
  border-radius: 83px;
  justify-content: center;
  width: 166px;
  height: 166px;
  padding: 25px;
  display: flex;
  position: absolute;
  top: 7px;
  left: 7px;
}

.button-white-2 {
  color: #2ba1f5;
  background-color: #fff;
  padding: 20px 40px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 1px 9px #b8ced5;
}

.button-white-2:hover {
  box-shadow: 0 1px 4px 1px #2ba1f5, 1px 1px 3px #2ba1f5;
}

.cyp-block-2 {
  color: #fff;
  background-color: #2ba1f5;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  margin-top: 90px;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.cyp-headline {
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.cyp-step-block {
  padding-bottom: 100px;
}

.cyp-step-block.step2, .cyp-step-block.step1, .cyp-step-block.step-1 {
  display: block;
}

.cyp-container {
  z-index: 10;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.cyp-option-btn {
  color: #333;
  text-align: center;
  background-color: #d5e9fb;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 60px;
  margin-top: 15px;
  font-size: 18px;
  line-height: 26px;
  display: flex;
}

.cyp-option-btn:hover {
  background-color: #add2f4;
}

.cyp-option-btn.active {
  color: #fff;
  background-color: #0b59a2;
}

.cyp-option-btn.js-option.active.js-configure-btn {
  display: block;
}

.cyp-option-btn.js-option.active.js-configure-plan-btn {
  display: none;
}

.cyp-option-btn-active {
  color: #fff;
  text-align: center;
  background-color: #0b59a2;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 60px;
  margin-top: 10px;
  font-size: 18px;
  line-height: 26px;
  display: flex;
}

.div-block-38 {
  justify-content: space-around;
  margin-top: 20px;
  display: flex;
}

.cyp-plan-blocks {
  margin-bottom: 40px;
}

.cyp-plan-header {
  text-align: center;
  text-transform: uppercase;
  background-color: #ddd;
  padding-top: 2px;
  padding-bottom: 2px;
  font-family: Helvetica Bold, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.cyp-plan-header.popular {
  background-color: var(--yellow);
}

.cyp-plan-header.value {
  background-color: var(--green);
}

.cyp-sub-heading {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 13px;
}

.cyp-plan-feature {
  text-align: center;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 20px;
}

.cyp-plan-columns-container {
  border: 2px solid #ddd;
  margin-top: 20px;
}

.cyp-plan-columns-container.v2 {
  margin-top: 0;
  margin-bottom: 20px;
}

.cyp-plan-columns-container.v2.top {
  margin-top: 20px;
}

.cyp-plan-button {
  background-color: #f1f1f1;
  border-top: 2px solid #ddd;
  justify-content: center;
  align-items: center;
  padding: 10px;
  display: flex;
}

.cyp-plan-select-button {
  text-transform: uppercase;
  background-color: #0b59a2;
  border-radius: 8px;
  padding: 4px 20px;
  font-family: Helvetica Bold, sans-serif;
}

.cyp-plan-select-button.popular {
  background-color: var(--yellow);
  color: #333;
}

.cyp-plan-select-button.green {
  background-color: var(--green);
}

.cyp-plan-select-button.blue {
  background-color: var(--blue);
  color: #fff;
}

.container-16 {
  max-width: 550px;
  position: relative;
}

.step-container-v2 {
  max-width: 550px;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.image-58 {
  position: absolute;
}

.image-58.back {
  display: none;
}

.text-block-18 {
  text-align: center;
  width: 100%;
  font-size: 14px;
  line-height: 30px;
}

.cyp-progress-bar-v2 {
  background-color: var(--yellow);
  border: 1px #000;
  border-radius: 8px;
  max-width: 550px;
  height: 10px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cyp-title {
  text-align: center;
  width: 100%;
  font-size: 14px;
  line-height: 30px;
}

.cyp-title.js-cyp-title {
  font-size: 16px;
}

.cyp-quote1 {
  text-align: center;
  margin-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 15px;
}

.image-59 {
  max-height: 50vh;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.js-percent-bar {
  background-color: #add2f4;
  height: 50px;
  position: relative;
}

.js-percent-number {
  z-index: 2;
  color: #fff;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 25px;
  line-height: 50px;
  position: relative;
}

.js-percent {
  background-color: #0b59a2;
  width: 0%;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.js-configure-plan-btn {
  display: none;
}

.body-4 {
  padding-left: 10px;
  padding-right: 10px;
}

.js-select-theme.v2 {
  opacity: 0;
  display: block;
  position: absolute;
}

.js-select-theme.v2.animate__animated.first {
  opacity: 1;
}

.js-select-theme.v3 {
  opacity: 1;
  display: block;
  position: absolute;
}

.js-select-theme.v3.animate__animated.first {
  opacity: 1;
}

.theme-container {
  height: 400px;
  position: relative;
}

.theme-done {
  text-align: center;
  margin-top: 20px;
}

.theme-done.js-option {
  cursor: pointer;
  display: inline;
}

.bold-text-4 {
  font-family: Helvetica Bold, sans-serif;
}

.cyp-checkbox-feature-container {
  align-items: flex-start;
  margin-bottom: 10px;
  display: flex;
}

.image-60 {
  width: 20px;
}

.text-block-19 {
  padding-left: 5px;
  font-weight: 400;
}

.loader {
  z-index: 99999;
  background-color: #0009;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.html-embed-7 {
  justify-content: center;
  align-items: center;
}

.div-block-39 {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.image-61, .image-62 {
  cursor: pointer;
}

.div-block-40 {
  text-align: center;
  margin-top: 30px;
}

.js-someone-else-popup {
  z-index: 9999;
  background-color: #0000009c;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.js-someone-else-container {
  background-color: #fff;
  border-radius: 8px;
  max-width: 450px;
  padding: 0 20px 20px;
}

.div-block-41 {
  justify-content: space-around;
  display: flex;
}

.cyp-flash-sale-banner {
  background-color: var(--dark-blue);
  justify-content: center;
  align-items: center;
  height: 50px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.cyp-flash-sale-banner.js-flash-sale-banner {
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.cyp-flash-sale-banner.js-flash-sale-banner.animate__animated {
  z-index: 9999;
  display: none;
}

.image-63 {
  cursor: pointer;
  height: 30px;
  position: absolute;
  inset: 10px 10px 0% auto;
}

.image-63:hover {
  opacity: .73;
}

.js-heart, .js-nope {
  cursor: pointer;
}

.js-select-theme-end {
  z-index: -1;
  text-align: center;
  display: none;
  position: absolute;
  inset: 45% 0% 0%;
}

.div-block-42, .div-block-43 {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.div-block-44 {
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 13px;
  display: flex;
}

.link-2 {
  color: #333;
  text-decoration: none;
}

.js-puzzle-meter-container {
  margin-top: 21px;
  position: relative;
}

.puzzle-meter-text {
  text-align: center;
  text-transform: uppercase;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 900;
}

.puzzle-meter-text.goal {
  font-size: 13px;
  position: absolute;
  top: -18px;
  left: 63%;
}

.puzzle-meter-text.goall-v2 {
  font-size: 13px;
  position: absolute;
  top: -49px;
  left: auto;
  right: 4px;
}

.puzzle-meter-text.goal-v2 {
  font-size: 13px;
  position: absolute;
  top: -49px;
  left: 63%;
}

.js-puzzle-meter-bar {
  border: 4px solid var(--blue);
  border-radius: 10px;
  height: 20px;
  position: relative;
}

.js-puzzle-meter-progress {
  background-color: var(--yellow);
  border-radius: 10px;
  transition: width .2s;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.div-block-45 {
  background-color: var(--green);
  width: 4px;
  position: absolute;
  inset: 0% 0% 0% 66%;
}

.puzzle-meter-text-v2 {
  text-align: center;
  text-transform: uppercase;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 900;
  position: relative;
  top: -2px;
}

.puzzle-meter-text-v2.goal {
  font-size: 13px;
  position: absolute;
  top: -18px;
  left: 63%;
}

.puzzle-meter-text-v2.goall-v2 {
  font-size: 13px;
  position: absolute;
  top: -49px;
  left: 63%;
}

.progress-person.js-progress-person {
  z-index: 1;
  height: 45px;
  transition: left .2s;
  position: absolute;
  top: -45px;
  left: 0%;
}

.puzzle-meter-text-copy {
  text-align: center;
  text-transform: uppercase;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 900;
}

.puzzle-meter-text-copy.goal {
  font-size: 13px;
  position: absolute;
  top: -18px;
  left: 63%;
}

.puzzle-meter-text-copy.goall-v2, .puzzle-meter-text-copy.goal-v2 {
  font-size: 13px;
  position: absolute;
  top: -49px;
  left: 63%;
}

.js-puzzle-meter-container-v2 {
  margin-top: 51px;
  position: relative;
}

.image-64 {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.cyp-flash-sale-text {
  text-align: center;
  margin-top: 15px;
  font-size: 15px;
}

.cyp-flash-sale-text.v2 {
  margin-bottom: 15px;
}

.hero-single-v2 {
  background-color: #070707;
  height: 100vh;
}

.hero-single-text-container {
  background-color: #fff;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.hero-single-container {
  width: 100%;
  height: 100%;
}

.hero-single-container.bg-img {
  background-image: url('../images/alania_puzzling_hero_1.jpg');
  background-position: 70%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
}

.hero-single-container.text {
  background-color: #f1f1f1;
  align-items: center;
  display: flex;
}

.hero-single-container.bg-img-right {
  background-image: url('../images/alania_puzzling_hero_1.jpg');
  background-position: 70%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
}

.hero-single-text-box {
  padding-left: 20px;
  padding-right: 20px;
}

.hero-reviews-container {
  background-color: #070707;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.hero-reviews-text {
  color: #fbfbfb;
  text-transform: uppercase;
  margin-left: 10px;
  font-size: 26px;
}

.img-stars {
  height: 44px;
  margin-right: 10px;
}

.single-menu {
  z-index: 9;
  background-color: #070707;
  height: 50px;
  padding: 10px 40px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.div-block-46 {
  width: 100%;
}

.body-single {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.single.v2 {
  background-color: #fff;
}

.hero-full {
  height: 100%;
  display: flex;
}

.hero-full-left {
  background-image: url('../images/puzzle-pic.jpg');
  background-position: 0%;
  background-size: cover;
  width: 100%;
}

.hero-full-right {
  background-image: url('../images/alania_puzzling_hero_1.jpg');
  background-position: 70%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.hero-full-container {
  height: 90vh;
  position: relative;
}

.hero-full-text {
  background-color: #0000009e;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.how-it-works-img-v4 {
  height: 100px;
}

.div-block-47 {
  max-width: 600px;
}

.surprise-puzzle-v3 {
  max-width: 500px;
  padding: 20px;
}

.text-span-20, .text-span-21 {
  font-family: Helvetica Bold, sans-serif;
}

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

.collection-list-6 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  margin-bottom: 60px;
  display: grid;
}

.puzzles-block {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-67 {
  height: 100px;
}

.collection-list-wrapper-3 {
  margin-bottom: 60px;
}

.collection-item-4 {
  height: 500px;
}

.column-3 {
  flex-direction: column;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.similar-puzzles-block {
  width: 100%;
  height: 400px;
}

.rich-text-block-2 {
  padding-left: 16px;
  padding-right: 16px;
}

.cyp-plan-feature-header {
  text-align: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Helvetica Bold, sans-serif;
  display: inline-block;
}

.cyp-plan-feature-header.yellow {
  background-color: var(--yellow);
}

.cyp-plan-feature-header.green {
  background-color: var(--green);
}

.div-block-48 {
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.image-68 {
  height: 50px;
}

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

.cyp-img-header {
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 6px #000;
  position: absolute;
  inset: 0% 0% auto;
}

.cyp-img-description {
  padding: 20px;
  position: absolute;
  inset: auto 0% 0%;
}

.banner {
  z-index: 999;
  background-color: var(--blue);
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  position: relative;
}

.step-block-v3 {
  padding-bottom: 100px;
}

.step-block-v3.step2 {
  display: none;
}

.step-block-v3.step1, .step-block-v3.step-1 {
  display: block;
}

.step-block-copy {
  padding-bottom: 100px;
}

.step-block-copy.step1 {
  display: block;
}

.step-block-copy.step2, .step-block-copy.step2.v2 {
  display: none;
}

.js-btn-puzzler-plans.button-secondary-v3.value-button {
  background-color: #4dc445;
}

.js-btn-puzzler-plans.button-secondary-v3.value-button:hover {
  box-shadow: 0 1px 4px 1px #4dc445, 1px 1px 3px #4dc445;
}

.js-btn-puzzler-plans.cyp-plan-select-button.v2 {
  background-color: var(--blue);
  padding: 10px 25px;
  line-height: 20px;
}

.js-btn-puzzler-pro-plans.button-secondary-v3.value-button {
  background-color: #4dc445;
}

.js-btn-puzzler-pro-plans.button-secondary-v3.value-button:hover {
  box-shadow: 0 1px 4px 1px #4dc445, 1px 1px 3px #4dc445;
}

.js-btn-puzzler-pro-plans.cyp-plan-select-button.v2 {
  background-color: var(--blue);
  padding: 10px 25px;
  line-height: 20px;
}

.cyp-puzzle-plans {
  background-color: #2ba1f53d;
  position: relative;
  transform: rotate(0);
}

.cyp-puzzle-plans.js-puzzler-plans {
  background-color: var(--light-blue);
}

.cyp-puzzle-plan {
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  position: relative;
}

.cyp-puzzle-plan-column {
  padding-top: 20px;
  padding-bottom: 20px;
}

.cyp-plan-header-v2 {
  margin-top: 0;
}

.price-text-v4 {
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
}

.text-block-20 {
  margin-bottom: 10px;
}

.cyp-plan-fine-print {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 14px;
}

.free-shipping-ribbon {
  background-color: var(--blue);
  color: #fff;
  margin-bottom: 10px;
  padding: 5px;
  font-size: 14px;
}

.cyp-block-v3 {
  background-color: var(--blue);
  color: #fff;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  margin-top: 90px;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  display: flex;
}

.mini-puzzle-banner {
  z-index: 2;
  background-color: var(--yellow);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 5px;
  padding: 3px;
  font-weight: 700;
  transform: rotate(11deg);
}

.mini-puzzle-banner-container {
  z-index: 2;
  padding: 3px;
  position: absolute;
  top: auto;
  bottom: -30px;
  right: -68px;
}

.image-69 {
  margin-top: 9px;
}

.free-mini-puzzle-container {
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.text-span-22 {
  font-size: 11px;
}

.paragraph-9 {
  margin-bottom: 0;
  margin-left: 10px;
  font-size: 14px;
}

.paragraph-10 {
  font-size: 13px;
}

.paragraph-11 {
  text-align: center;
  font-size: 10px;
}

.div-block-50 {
  width: 400px;
}

.image-70 {
  opacity: .65;
  cursor: pointer;
  width: 50px;
  position: absolute;
  inset: 10px 10px auto auto;
}

.plan-features-hidden {
  margin-bottom: 5px;
  display: none;
}

.cyp-icon--v2 {
  background-color: #fff;
  border-radius: 83px;
  justify-content: center;
  width: 166px;
  height: 166px;
  padding: 25px;
  display: flex;
  position: absolute;
  top: 7px;
  left: 7px;
}

.cyp-icon--v2.blue-border {
  border: 7px solid var(--blue);
  background-image: url('../images/girl-piece-crop-1.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.cyp-icon--v2.yellow-border {
  border: 7px solid var(--yellow);
}

.cyp-icon--v2.green-border {
  border: 7px solid var(--green);
}

.cyp-icon-copy {
  background-color: #fff;
  border-radius: 83px;
  justify-content: center;
  width: 166px;
  height: 166px;
  padding: 25px;
  display: flex;
  position: absolute;
  top: 7px;
  left: 7px;
}

.cyp-icon-copy.blue-border {
  border: 7px solid var(--blue);
}

.cyp-icon-copy.yellow-border {
  border: 7px solid var(--yellow);
}

.cyp-icon-copy.green-border {
  border: 7px solid var(--green);
}

.cyp-icon-v2 {
  background-color: #fff;
  border-radius: 83px;
  justify-content: center;
  width: 166px;
  height: 166px;
  padding: 25px;
  display: flex;
  position: absolute;
  top: 7px;
  left: 7px;
}

.cyp-icon-v2.blue-border {
  border: 7px solid var(--blue);
}

.cyp-icon-v2.yellow-border {
  border: 7px solid var(--yellow);
}

.cyp-icon-v2.green-border {
  border: 7px solid var(--green);
  background-image: url('../images/alania_puzzling_hero.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.cyp-icon-pic {
  background-color: #fff;
  border-radius: 83px;
  justify-content: center;
  width: 166px;
  height: 166px;
  padding: 25px;
  display: flex;
  position: absolute;
  top: 7px;
  left: 7px;
}

.cyp-icon-pic.blue-border {
  border: 7px solid var(--blue);
}

.cyp-icon-pic.yellow-border {
  border: 7px solid var(--yellow);
  background-image: url('../images/puzzle-pic.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.cyp-icon-pic.green-border {
  border: 7px solid var(--green);
}

.choose-block {
  margin-bottom: 20px;
}

.div-block-51 {
  background-color: var(--light-blue);
  align-items: center;
  margin-top: 10px;
  display: none;
}

.image-71 {
  width: 50%;
}

.div-block-52 {
  margin-left: 20px;
}

.text-span-23 {
  color: var(--blue);
}

.div-block-53 {
  padding: 40px 10px;
}

.text-span-24 {
  color: var(--blue);
}

.js-btn-cyp-join.button-secondary-v3.value-button {
  background-color: #4dc445;
}

.js-btn-cyp-join.button-secondary-v3.value-button:hover {
  box-shadow: 0 1px 4px 1px #4dc445, 1px 1px 3px #4dc445;
}

.js-btn-cyp-join.cyp-plan-select-button.v2 {
  background-color: var(--blue);
  padding: 10px 25px;
  line-height: 20px;
}

.js-btn-cyp-join.btn-large {
  padding: 20px 40px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.text-span-25 {
  color: var(--blue);
}

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

.text-span-26 {
  color: var(--blue);
  font-weight: 700;
}

.div-block-55 {
  padding-left: 20px;
}

.div-block-56 {
  padding: 40px 10px;
}

.container-18 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.cyp-top-header {
  margin-top: 0;
}

.toggle-bar-container {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.plans-toggle {
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 40px;
  padding-top: 20px;
  display: flex;
}

.plan-name, .text-block-23 {
  font-size: 22px;
}

.plans-highlight {
  background-color: #fff;
  align-items: center;
  display: flex;
}

.plans-banner {
  text-align: center;
  background-color: #f8f8f8;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 700;
}

.cyp-puzzle-plan-v2 {
  text-align: center;
  background-color: #fff;
  width: 100%;
  position: relative;
}

.cyp-puzzle-plan-v2.center-plan {
  border-left: 2px solid #f8f8f8;
  border-right: 2px solid #f8f8f8;
}

.text-span-27 {
  color: var(--blue);
}

.div-block-58 {
  box-shadow: 1px 1px 3px #000;
}

.soft-shadow {
  box-shadow: 0 0 30px 50px #0000000d, 0 1px 50px 100px #0000000d;
}

.cyp-banner-v2 {
  background-color: var(--green);
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}

.cyp-banner-v2.popular {
  background-color: var(--yellow);
}

.cyp-banner-v2.empty {
  background-color: #fff;
}

.cyp-plan-fine-print-v2 {
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 14px;
}

.image-74 {
  width: 300px;
}

.plan-group {
  justify-content: center;
  display: flex;
}

.div-block-59 {
  padding-left: 20px;
  padding-right: 20px;
}

.choose-block-v2 {
  margin-bottom: 20px;
}

.plans-container.soft-shadow.js-puzzler-plans {
  display: block;
}

.plans-container.soft-shadow.js-puzzler-pro-plans {
  display: none;
}

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

.html-embed-8 {
  text-align: center;
}

.div-block-60 {
  align-items: stretch;
  display: flex;
}

.image-75 {
  width: 50%;
}

.div-block-61 {
  background-color: #68f;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.div-block-62 {
  background-color: var(--light-black);
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.image-76 {
  height: 40px;
}

.keen-slider__slide {
  background-image: url('../images/girl-piece-crop-1.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 10px;
  width: 400px;
  height: 400px;
}

.keen-slider__slide.number-slide2 {
  background-image: url('../images/tracey_cupcakes.jpg');
}

.keen-slider__slide.number-slide1 {
  background-image: url('../images/boy.jpg');
}

.keen-slider__slide.number-slide6 {
  background-image: url('../images/couple_1.jpg');
}

.keen-slider__slide.number-slide5 {
  background-image: url('../images/brianna.jpg');
}

.keen-slider__slide.number-slide4 {
  background-image: url('../images/friend.jpg');
}

.keen-slider__slide.number-slide3 {
  background-image: url('../images/family-pic.jpg');
}

.keen-slider__slide.number-slide7 {
  background-image: url('../images/alania_astro.jpg');
}

.keen-slider__slide.number-slide8 {
  background-image: url('../images/girl_bag.png');
}

.keen-slider__slide.number-slide9 {
  background-image: url('../images/girl_pieces.png');
}

.keen-slider {
  background-color: var(--light-black);
  padding-bottom: 40px;
}

.js-puzzler-option {
  font-weight: 700;
}

.js-puzzler-pro-option {
  position: relative;
}

.save-pro {
  flex-direction: column;
  align-items: center;
  display: flex;
  position: absolute;
  top: auto;
  bottom: -33px;
  right: -52px;
  transform: rotate(-6deg);
}

.image-77 {
  height: 30px;
  transform-style: preserve-3d;
  transform: translate(52px)rotateX(-180deg)rotateY(0)rotateZ(0);
}

.text-block-24 {
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 14px;
}

.image-78 {
  width: 100px;
  position: absolute;
  top: 43.585px;
  left: -27.778px;
}

.text-block-25 {
  color: var(--blue);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.html-embed-9 {
  margin-top: 10px;
}

.plan-group-v2 {
  justify-content: center;
  display: flex;
}

.cyp-col-header {
  text-align: center;
  background-color: #e7e7e7;
  padding-top: 3px;
  padding-bottom: 3px;
  font-family: Helvetica Bold, sans-serif;
  font-weight: 400;
}

.cyp-col-header.yellow {
  background-color: var(--yellow);
}

.cyp-col-header.green {
  color: #fff;
  background-color: #006e35;
}

.cyp-col-description {
  text-align: center;
  padding-top: 10px;
  font-weight: 400;
}

.cyp-col-description.bold {
  font-family: Helvetica Bold, sans-serif;
}

.cyp-col-description.bold.green {
  color: #006e35;
}

.cyp-col-sub-description {
  text-align: center;
  padding-bottom: 10px;
  font-size: 12px;
  line-height: 18px;
}

.cyp-plan-col {
  background-color: #f1f1f1;
}

.cyp-col-cta-container {
  text-align: center;
  background-color: #f1f1f1;
  margin-top: 2px;
  margin-left: -9px;
  margin-right: -9px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.cyp-col {
  padding-left: 1px;
  padding-right: 1px;
}

.div-block-63 {
  margin-top: 20px;
}

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

.div-block-64 {
  padding-left: 140px;
  padding-right: 140px;
}

.column-4 {
  padding-top: 40px;
}

.free-mini-puzzle-gift-container {
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 140px;
  padding-right: 140px;
  display: flex;
}

.image-79 {
  height: 140px;
  margin-left: 10px;
}

.div-block-65 {
  padding-left: 140px;
  padding-right: 140px;
}

.div-block-66 {
  justify-content: center;
  align-items: flex-end;
  width: 50%;
  display: flex;
}

.image-80 {
  width: 100%;
}

.body-5 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 17px;
  line-height: 24px;
}

.section-11 {
  background-color: var(--light-black);
  padding-top: 10px;
  padding-bottom: 40px;
}

.hr-color {
  background-color: #ffd04d;
  width: 100px;
  height: 5px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

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

.image-81 {
  height: 70px;
  padding-top: 20px;
  padding-left: 60px;
  padding-right: 60px;
}

.slide-2 {
  background-image: url('../images/triangle-pic.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: fixed;
}

.slider {
  background-color: #0000;
  height: 500px;
}

.slide-nav {
  display: none;
}

.slide-3 {
  background-image: url('../images/plant-pic.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.slide-4 {
  background-image: url('../images/umbrella-pic.jpg');
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
}

.slide-5 {
  background-image: url('../images/sloth-pic.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.section-12 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.image-82 {
  height: 35px;
}

.nav-item-v2 {
  font-family: futura-pt, sans-serif;
  font-size: 16px;
}

.nav-item-v2.single-link {
  text-decoration: none;
}

.heading-v3 {
  font-family: Burbanksmall;
}

.list-item-2 {
  margin-bottom: 10px;
}

.link-3 {
  color: #fff;
  text-decoration: none;
}

.collection-list-wrapper-4 {
  margin-top: 20px;
}

.link-block-6 {
  text-decoration: none;
}

.div-block-67 {
  padding: 10px;
}

.div-block-68 {
  flex-direction: column;
  align-items: center;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.image-83 {
  width: 100px;
}

.social-proof-family {
  height: 70px;
  padding-top: 20px;
  padding-left: 60px;
  padding-right: 60px;
}

.image-84 {
  margin-bottom: 40px;
}

.div-block-69 {
  background-color: var(--blue);
  padding-top: 10px;
  padding-bottom: 10px;
}

.smaller {
  font-size: 15px;
}

.smaller.gift-text {
  margin-top: 40px;
}

.container-22 {
  padding-left: 100px;
  padding-right: 100px;
}

.columns-5 {
  text-align: center;
  width: 100%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.cyp-popup {
  z-index: 1;
  opacity: 1;
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  position: relative;
}

.cyp-popup-background {
  z-index: 2;
  background-color: #000000b0;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: none;
  position: fixed;
  inset: 0%;
}

.cyp-popup-container {
  background-color: #fff;
  border-radius: 10px;
  max-width: 500px;
  padding: 40px;
}

.cyp-popup-container.second {
  display: none;
}

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

.cyp-popup-grid {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: flex;
}

.cyp-popup-grid.border-bottom {
  border-bottom: 2px solid #000;
  margin-bottom: 10px;
}

.w100 {
  width: 100%;
}

.div-block-70 {
  justify-content: center;
  align-items: center;
  margin-top: 10vh;
  display: flex;
}

.background-video-2 {
  background-color: #000000a8;
  justify-content: center;
  align-items: center;
  display: flex;
}

.columns-6 {
  align-items: center;
  display: flex;
}

.container-23 {
  padding-bottom: 60px;
}

.section-13 {
  background-color: #3d3d3d;
  padding-top: 20px;
  padding-bottom: 20px;
}

.image-85 {
  height: 24px;
  margin-right: 10px;
  display: inline-block;
}

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

.bg-blue {
  background-color: var(--blue);
}

.bg-blue.confirm {
  text-align: center;
  width: 100%;
  margin-top: 20px;
}

.plan-feature-v4 {
  margin-bottom: 5px;
  margin-left: -15px;
  margin-right: -15px;
}

.list-2 {
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

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

.paragraph-12 {
  text-align: center;
  margin-top: 40px;
}

.sub-confirm-popup {
  z-index: 9999;
  background-color: #000000c9;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0%;
}

.div-block-73 {
  text-align: left;
  background-color: #fff;
  border-radius: 15px;
  max-width: 520px;
  max-height: 100vh;
  padding: 40px;
  font-size: 15px;
}

.body-6 {
  background-color: var(--black);
}

.heading-10 {
  text-align: center;
  font-size: 3em;
  line-height: 1em;
}

.heading-10.red.cm {
  font-size: 4em;
  display: block;
}

.container-24 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-14 {
  background-color: var(--black);
  color: #f1f1f1;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.image-88 {
  width: 150px;
  margin-top: 40px;
}

.div-block-74 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.text-span-28 {
  text-decoration: line-through;
}

.image-89 {
  width: 600px;
  padding-bottom: 0;
}

.red {
  color: var(--red);
}

.red.bf-headline {
  font-size: 6em;
  line-height: 1em;
}

.red.bf-headline._2024 {
  color: var(--white);
  padding-bottom: 20px;
  text-decoration: underline;
}

.red.bf-headline._2024.hide {
  display: none;
}

.red.bf-headline._2025 {
  color: var(--white);
  font-size: 6.7em;
  text-decoration: underline;
}

.red.bf-vip-eadline {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 5em;
  line-height: 1em;
}

.bf-sub-heading {
  color: #fff;
  text-align: center;
  font-size: 30px;
  line-height: 36px;
}

.bf-sub-heading._2024 {
  color: #333;
}

.bf-sub-heading._2024.white {
  color: var(--white);
}

.bf-sub-heading._2024.white.left {
  text-align: left;
  font-size: 24px;
}

.bf-sub-sub-heading {
  color: #fff;
}

.bf-sub-sub-heading._2024 {
  color: #333;
}

.bf-sub-sub-heading._2024.white {
  color: var(--white);
}

.image-90 {
  padding-left: 5px;
  padding-right: 5px;
}

.bf-card-header {
  margin-top: 0;
  margin-right: 0;
  padding-top: 10px;
  padding-bottom: 5px;
  font-family: futura-pt, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.bf-card-header.mostpopular {
  background-color: var(--blue);
  color: #fff;
}

.bf-card-header.biggest-savings {
  background-color: var(--green);
  color: #fff;
}

.strike {
  text-decoration: line-through;
}

.strike.grayed {
  color: #666;
  font-weight: 500;
}

.bf22-section {
  background-color: var(--black);
}

.text-span-29 {
  text-decoration: line-through;
}

.container-25 {
  padding: 25px;
}

.paragraph-13 {
  margin-top: 20px;
}

.list-3, .list-4, .list-5 {
  padding-right: 5px;
}

.heading-11 {
  margin-top: 0;
}

.div-block-75 {
  background-color: var(--black);
  height: 100%;
  padding-top: 100px;
}

.bf-vip {
  z-index: 99999;
  text-align: center;
  background-color: #0e0e0ebf;
  padding-bottom: 100px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.image-91 {
  width: 800px;
  padding-left: 10px;
  padding-right: 10px;
}

.front-section {
  z-index: 80000;
  background-color: #fff;
  display: block;
  position: relative;
}

.front-section.z {
  z-index: auto;
}

.body-7 {
  background-color: var(--black);
}

.strike-gray {
  color: #ababab;
  text-decoration: line-through;
}

.heading-12 {
  margin-top: 80px;
  font-size: 3.5em;
  line-height: 1em;
}

.section-15 {
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.div-block-76 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.lightbox-link {
  width: 100%;
  color: var(--black);
  text-align: left;
  text-decoration: none;
  display: flex;
}

.div-block-77 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  margin-bottom: 40px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.div-block-78 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.image-92 {
  width: 50%;
  height: 100%;
}

.remove-link {
  color: var(--black);
  text-decoration: none;
}

.remove-link.press-read-more {
  color: var(--blue);
  font-family: Helvetica Bold, sans-serif;
}

.paragraph-14 {
  text-decoration: none;
}

.div-block-79 {
  padding-left: 10px;
}

.stack-price {
  font-size: 3em;
  line-height: 1em;
}

.paragraph-15 {
  margin-bottom: 20px;
}

.savings-link {
  color: #2574ab;
  margin-bottom: 20px;
  font-weight: 700;
  display: none;
}

.body-8 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.image-93 {
  max-height: 200px;
}

.image-94 {
  height: 150px;
}

.text-span-30, .text-span-31 {
  color: var(--red);
  font-weight: 700;
}

.div-block-80 {
  background-color: var(--blue);
  color: #fff;
  padding-top: 20px;
  padding-bottom: 10px;
  font-size: 22px;
  display: flex;
}

.text-span-32 {
  color: var(--red);
}

.link-block-7 {
  background-color: var(--black);
  color: #fff;
  text-align: center;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: block;
}

.link-block-7.w--current {
  display: none;
}

.text-block-27 {
  align-items: center;
  padding: 9px;
  display: flex;
}

.text-block-28 {
  background-color: var(--red);
  border-radius: 5px;
  margin-left: 10px;
  padding: 5px 15px;
}

.text-block-29 {
  font-weight: 700;
}

.gift-card-img {
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
}

.paragraph-16 {
  text-align: center;
  font-size: 2em;
  line-height: 1em;
}

.paragraph-16.cmevent {
  color: var(--red);
  text-transform: uppercase;
  font-family: futura-pt, sans-serif;
  font-size: 4em;
  font-weight: 700;
}

.cm-heading {
  color: var(--red);
  font-size: 4em;
  line-height: 1em;
}

.paragraph-17 {
  font-size: 60px;
}

.container-26 {
  padding-bottom: 40px;
}

.columns-7 {
  margin-top: 20px;
}

.div-block-81 {
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
}

.image-95 {
  width: 50%;
}

.div-block-82 {
  padding-left: 20px;
}

.body-9 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.div-block-83, .div-block-84 {
  padding-right: 20px;
}

.html-embed-11, .heading-14, .paragraph-18 {
  text-align: center;
}

.container-28 {
  padding-left: 5px;
  padding-right: 5px;
}

.paragraph-19 {
  padding: 5px;
}

.section-16 {
  background-color: var(--blue);
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.success-message-2 {
  border: 3px solid var(--blue);
  color: var(--blue);
  background-color: #f1f1f1;
}

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

.image-96 {
  width: 150px;
}

.body-10 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.text-span-34 {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 24px;
  display: inline-block;
}

.paragraph-20 {
  margin-left: 70px;
}

.sticky-header-container {
  background-color: var(--blue);
  color: #fff;
  text-align: center;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: none;
}

.sticky-header-container.w--current {
  display: none;
}

.button-2 {
  color: #2479dc;
  background-color: #ffe68a;
  font-family: Helvetica Bold, sans-serif;
  font-weight: 400;
}

.button-2-copy {
  color: #2576d4;
  background-color: #ffd78a;
  font-family: Helvetica Bold, sans-serif;
}

.button-3 {
  color: #fffaf3;
  background-color: #2576d4;
}

.team-pricing-bubble {
  text-align: center;
  background-color: #2ba1f533;
  border-radius: 10px;
  padding: 20px;
}

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

.text-span-35 {
  font-size: 14px;
}

.div-block-86 {
  color: #000;
  flex-direction: column;
  display: flex;
}

.html-embed-12 {
  background-color: #000;
}

.fd-offer {
  color: #fff;
  background-color: #2ba1f5;
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 23px;
  display: none;
}

.text-span-36 {
  color: #838383;
  text-decoration: line-through;
}

.link-block-8 {
  color: var(--light-black);
  align-items: center;
  margin-left: 20px;
  margin-right: 20px;
  text-decoration: none;
  display: flex;
}

.image-97 {
  height: 22px;
}

.text-block-30 {
  text-decoration: none;
}

.div-block-87 {
  justify-content: center;
  display: flex;
}

.image-98 {
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.t-shirt-dropdown {
  color: #fff;
  background-color: #105587;
}

.div-block-88 {
  border: 4px dashed #fff;
  padding: 10px;
}

.text-block-31 {
  text-align: center;
  margin-top: 20px;
}

.div-block-89 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.text-span-37 {
  color: red;
}

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

.image-99 {
  border-radius: 50px;
  width: 50px;
  height: 50px;
  min-height: 50px;
}

.paragraph-21 {
  margin-left: 16px;
  font-size: 13px;
}

.text-span-38 {
  color: var(--blue);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 700;
}

.body-11 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 17px;
  line-height: 23px;
}

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

.heading-16 {
  margin-top: 10px;
}

.heading-17 {
  margin-top: 40px;
  display: none;
}

.listical-section.e {
  display: none;
}

.listical-section._2024 {
  padding-left: 10px;
  padding-right: 10px;
}

.listical-section.hide {
  display: none;
}

.div-block-91 {
  border: 1px dashed #000;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-left: 20px;
  display: flex;
  position: relative;
}

.div-block-92 {
  flex-direction: column;
  width: 50%;
  padding: 40px;
  display: flex;
}

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

.div-block-94 {
  background-color: #d7d7d7;
  width: 100%;
  height: 1px;
}

.text-block-32 {
  text-transform: uppercase;
  flex: none;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 13px;
  font-weight: 700;
}

.heading-18 {
  text-align: center;
  margin-top: 7px;
  padding-left: 0;
  font-size: 35px;
}

.text-span-39 {
  color: #1a81ca;
}

.text-block-33 {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  line-height: 34px;
}

.paragraph-22 {
  text-align: center;
  font-size: 12px;
}

.button-4 {
  text-align: center;
  border-radius: 10px;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: 22px;
  font-weight: 700;
}

.div-block-95 {
  justify-content: center;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.div-block-96 {
  background-color: #fdcf2a;
  border-radius: 10px;
  margin-top: -19px;
  padding: 8px 16px;
}

.text-block-34 {
  font-weight: 700;
}

.div-block-97 {
  width: 100%;
  height: 1px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.html-embed-13 {
  text-align: center;
}

.section-17 {
  background-color: #cacaca;
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.section-17.new {
  background-color: var(--blue-2024);
}

.text-block-35 {
  text-align: center;
  margin-top: 6px;
  font-size: 12px;
}

.bold-text-5 {
  font-size: 15px;
  font-weight: 400;
}

.btn-listacle-checkout {
  background-color: var(--green);
  text-align: center;
  border-radius: 20px;
  width: 100%;
}

.btn-listacle-checkout.js-btn-cyp.btn-blue {
  background-color: var(--blue-2024);
  text-transform: capitalize;
  border-radius: 10px;
  font-family: futura-pt, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.div-block-98 {
  padding: 8px;
  position: relative;
}

.div-block-99 {
  border: 3px solid var(--gray);
}

.div-block-99.green {
  border-color: var(--green);
  position: relative;
}

.div-block-99.blue-border {
  border-color: var(--blue);
}

.columns-8 {
  margin-top: 10px;
}

.columns-8.ac {
  padding-top: 60px;
  padding-bottom: 60px;
}

.paragraph-23 {
  font-size: 15px;
  font-weight: 400;
}

.text-span-40 {
  font-weight: 700;
}

.paragraph-24 {
  font-size: 14px;
  line-height: 28px;
}

.text-block-36 {
  font-size: 14px;
  font-weight: 700;
}

.text-span-41 {
  color: #959595;
  text-decoration: line-through;
}

.listacle-save {
  color: #1490f3;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
}

.listical-price {
  margin-top: -1px;
}

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

.plan-header {
  background-color: var(--green);
  color: #f9f9f9;
  text-align: center;
  padding-top: 7px;
  padding-bottom: 7px;
  font-weight: 700;
}

.plan-header.none {
  opacity: 0;
}

.plan-header.blue {
  background-color: var(--blue);
}

.plan-header.blue.rounded {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.plan-header.blue.rounded.yellow {
  background-color: var(--yellow-2024);
  color: #333;
}

.plan-header.black {
  background-color: var(--black);
}

.listical-plan {
  margin-top: 0;
}

.modal-link {
  cursor: pointer;
  text-decoration: underline;
}

.modal-wrapper {
  z-index: 9999;
  background-color: #00000080;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.modal-container {
  background-color: #fff;
  border-radius: 25px;
  width: 500px;
  padding: 25px;
}

.div-block-100 {
  justify-content: space-between;
  margin-bottom: -10px;
  display: flex;
}

.div-block-101 {
  background-color: #cecece;
  height: 1px;
  margin-bottom: 25px;
  padding-bottom: 0;
}

.div-block-101.tight {
  margin-bottom: 0;
}

.div-block-100-up {
  justify-content: space-between;
  margin-top: -17px;
  display: flex;
}

.bold {
  font-weight: 700;
}

.paragraph-25 {
  text-align: center;
  margin-top: 40px;
}

.button-5 {
  text-align: center;
  border-radius: 20px;
}

.image-101 {
  width: 50px;
  margin-right: 10px;
}

.div-block-102 {
  align-items: center;
  margin-top: 42px;
  font-size: 14px;
  display: flex;
}

.underline {
  text-decoration: underline;
}

.paragraph-26 {
  margin-top: 10px;
  font-size: 14px;
}

.heading-19 {
  font-size: 61px;
  line-height: 64px;
}

.text-block-37 {
  color: var(--blue);
  margin-top: 39px;
  margin-bottom: -20px;
  font-weight: 700;
}

.carousel-container {
  display: flex;
  overflow: hidden;
}

.logo-container {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: space-around;
  align-items: center;
  min-width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.carousel-container-reverse {
  display: flex;
  overflow: hidden;
}

.logo-container-reverse {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: space-around;
  align-items: center;
  min-width: 100%;
  display: flex;
}

.logo-container-copy {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: space-around;
  align-items: center;
  min-width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.carousel-video-item {
  width: 400px;
  height: 400px;
  margin: 40px;
}

.heading-20, .paragraph-27 {
  text-align: center;
}

.gc-testimonial-image {
  border-radius: 75px;
  margin-bottom: 20px;
}

.gc-testimonial-section {
  text-align: center;
  background-color: #fdf6e4;
  border: 2px solid #edecb0;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  display: flex;
}

.image-103 {
  width: 150px;
}

.paragraph-28 {
  margin-top: 10px;
}

.button-6 {
  border-radius: 25px;
  padding: 20px 60px;
  font-size: 24px;
  line-height: 24px;
}

.section-18 {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.link-block-9 {
  z-index: 9999;
  color: #333;
  background-color: #000;
  text-decoration: none;
  position: fixed;
  inset: 0% 0% auto;
}

.text-block-38 {
  margin-top: -6px;
  margin-bottom: -6px;
  font-size: 9px;
}

.text-block-39 {
  color: #fff;
  margin-right: 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
}

.div-block-104 {
  border: 1px solid #272727;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

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

.div-block-104._4puzz {
  border-style: none;
}

.div-block-105 {
  text-align: center;
  background-color: #f1f1f1;
  border-radius: 3px;
  margin-left: 3px;
  margin-right: 3px;
  padding: 3px;
}

.text-block-40 {
  font-size: 14px;
  font-weight: 700;
  line-height: 12px;
}

.div-block-106 {
  height: 60px;
}

.section-19 {
  background-color: #000;
}

.container-30 {
  justify-content: flex-start;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.text-block-41 {
  margin-right: 10px;
}

.link-4 {
  width: 100%;
}

.div-block-107 {
  flex: 1;
}

.listacle-container {
  max-width: 768px;
}

.html-embed-15 {
  display: none;
}

.image-104 {
  width: 100px;
  position: absolute;
  inset: -100px 0% auto auto;
}

.image-104.hide {
  display: none;
}

._2023-bf-promo {
  border: 4px dashed #979797;
  margin-bottom: 10px;
  padding: 10px 10px 0;
}

._2023-bf-promo.hide {
  display: none;
}

.text-block-42 {
  font-size: 13px;
}

.gc-spacer {
  height: 3rem;
}

.div-block-108 {
  background-color: #0303034d;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.div-block-109 {
  background-color: #fff;
  border-radius: 25px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.heading-22.center {
  max-width: 400px;
  margin-bottom: 40px;
  padding-left: 10px;
  padding-right: 10px;
}

.div-block-110 {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

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

.image-105 {
  width: 200px;
  margin-top: 20px;
}

._2023-bf-shirt-promo {
  border: 4px dashed #979797;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px 10px 0;
}

.red-big {
  background-color: var(--red);
  padding: 28px 46px;
  font-size: 26px;
  line-height: 26px;
}

.image-106 {
  width: 400px;
  margin-top: 70px;
  margin-bottom: 20px;
}

.reactivation-sticky {
  z-index: 9999;
  color: #333;
  background-color: #000;
  text-decoration: none;
  position: fixed;
  inset: 0% 0% auto;
}

.reactivation-sticky.blue {
  background-color: var(--yellow);
}

.reactivation-sticky.v2, .reactivation-sticky.new {
  background-color: var(--blue-2024);
}

.html-embed-17 {
  margin-left: 100px;
  margin-right: 100px;
}

.div-block-111 {
  margin-bottom: 20px;
  display: flex;
}

.collection-list-wrapper-5 {
  flex: 1;
}

.collection-list-wrapper-5.jetboost-list-wrapper-7k57.jetboost-list-wrapper-n2p7 {
  padding-left: 10px;
}

.checkbox-label {
  text-transform: capitalize;
}

.collection-list-7 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.img-wrapper-hide {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.collection-item-5 {
  border-radius: 17px;
}

.div-block-112 {
  border-radius: 16px;
  box-shadow: 0 2px 2px #f5f5f508, 0 5px 5px #0000000d;
}

.div-block-113 {
  padding: 0 8px;
}

.div-block-115 {
  justify-content: flex-end;
  display: flex;
}

.button-7 {
  border-radius: 16px;
}

.div-block-116 {
  background-color: #188ff3;
  border-radius: 16px;
  margin-bottom: 8px;
  padding: 8px 32px;
  display: none;
}

.text-block-43 {
  color: #fff;
  font-family: futura-pt, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.image-107 {
  height: 25px;
  margin-right: 4px;
}

.pagination-2 {
  display: none;
}

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

.div-block-117 {
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.div-block-118 {
  text-align: left;
  margin-left: 40px;
}

.image-108 {
  width: 400px;
}

.listical-sub-price {
  margin-top: -1px;
}

.div-block-119 {
  background-color: var(--blue);
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.paragraph-29 {
  padding-top: 10px;
}

.text-block-44 {
  margin-top: -4px;
  margin-bottom: 8px;
  font-size: 14px;
}

.columns-howitworks {
  margin-top: 40px;
  margin-bottom: 40px;
}

.puzzle-list-link-block {
  color: #333;
  text-decoration: none;
  display: block;
}

.text-span-43 {
  color: var(--red);
}

.text-block-45 {
  background-color: var(--blue);
  color: #fff;
  border-radius: 8px;
  margin-left: 20px;
  padding: 8px 16px;
}

.text-block-45.new {
  background-color: var(--yellow-2024);
  color: var(--black);
  font-weight: 700;
}

.text-block-46 {
  background-color: var(--blue);
  color: #fff;
  border-radius: 8px;
  margin-left: 10px;
  padding: 4px 8px;
}

.text-block-47 {
  background-color: var(--blue);
  color: #fff;
  border-radius: 8px;
  margin-left: 20px;
  padding: 4px 8px;
}

.div-block-104-copy {
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.text-block-48 {
  background-color: var(--blue);
  color: #fff;
  border-radius: 8px;
  margin-left: 4px;
  padding: 4px 8px;
  font-size: 15px;
}

.div-block-104-copy2 {
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.div-block-120, .div-block-121 {
  display: flex;
}

.text-block-49 {
  background-color: var(--green);
  color: #fff;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  padding: 12px;
  display: flex;
}

.text-block-50, .div-block-122 {
  align-items: center;
  display: flex;
}

.bold-text-6 {
  color: #333;
}

.div-block-123 {
  width: 50%;
  height: 50%;
}

.image-109 {
  height: 50px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.div-block-104-copy3 {
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.div-block-122-copy {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-124 {
  flex: 1;
}

.div-block-125, .div-block-126 {
  display: flex;
}

.div-block-127 {
  border: 1px solid #eee;
  border-radius: 1px;
  margin-top: 24px;
  padding: 24px;
}

.div-block-128 {
  background-color: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  flex-flow: column;
  display: flex;
}

.div-block-129 {
  padding: 12px 16px;
}

.text-block-51 {
  opacity: .35;
  margin-top: 2px;
  margin-bottom: 2px;
}

.verified {
  color: #fff;
  background-color: #4dc445;
  margin-left: 4px;
  padding: 3px 7px;
  font-size: 11px;
  line-height: 11px;
  display: inline-block;
}

.text-block-52 {
  font-size: 12px;
  line-height: 16px;
}

.text-block-53 {
  padding-top: 12px;
}

.image-110 {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.text-block-54 {
  padding-bottom: 10px;
}

.div-block-130 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.collection-list-8 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.flex-block, .flex-block-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.section-v2 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-v2.gc {
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.image-113 {
  height: 50px;
}

.div-block-131 {
  align-items: center;
  margin-top: 12px;
  display: flex;
}

.text-block-55 {
  font-size: 14px;
}

.image-114 {
  height: 10px;
}

.div-block-132 {
  padding-left: 10px;
}

.div-block-133 {
  padding-bottom: 20px;
}

.flex-block-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.paragraph-30 {
  margin-top: 20px;
}

._4-puzzle-logo {
  width: 400px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.div-block-134 {
  align-items: center;
  margin-top: 60px;
  display: flex;
}

.image-115 {
  border-radius: 10px;
  width: 150px;
}

.slider-2 {
  background-color: #fff;
  height: auto;
}

.image-116 {
  height: 20px;
}

.text-block-56 {
  font-family: Helvetica Bold, sans-serif;
}

.image-117.img-smaller {
  height: 200px;
}

.image-117.img-smaller-ish {
  height: 300px;
}

.section-21 {
  color: var(--blue-2024);
}

.hero-2024 {
  background-color: var(--blue-2024);
}

.hero-container-2024 {
  align-items: center;
  display: flex;
}

.hero-main-header-2024 {
  color: var(--white);
}

.hero-sub-header-2024 {
  color: var(--white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 26px;
  font-weight: 400;
}

._2024 {
  font-family: Mulish, sans-serif;
}

.hero-menu-2024 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.div-block-137 {
  flex: none;
  width: 550px;
}

.pjm-splash {
  background-image: radial-gradient(circle, #fcb316, #f59090);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 20px 20px 40px;
  display: flex;
}

.section-22 {
  background-color: #4792ea;
}

.container-32 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  display: flex;
}

.div-block-138 {
  flex: 0 auto;
  min-width: 50%;
}

.div-block-139 {
  color: #fff;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.image-118 {
  position: absolute;
  inset: 40px auto auto 40px;
}

.div-block-140 {
  background-image: url('../images/grid-pattern.png');
  background-position: 0%;
  background-repeat: repeat-x;
  background-size: auto;
  height: 30px;
}

.section-23 {
  background-color: var(--gray-2024);
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-23.v2 {
  background-color: var(--white);
}

.section-23.v3 {
  background-color: var(--yellow-2024);
}

.div-block-141 {
  background-color: var(--yellow-2024);
  border-radius: 20px;
  width: 100%;
  padding: 40px;
}

.text-block-57 {
  font-family: futura-pt, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
}

.flex-block-4 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 20px;
}

.text-span-44 {
  font-size: 24px;
}

.yellow-thick-underline {
  position: relative;
}

.image-119 {
  display: none;
}

.container-33 {
  flex-flow: column;
  align-items: center;
  width: 100%;
  max-width: 820px;
  margin-top: 40px;
  display: flex;
}

.columns-9 {
  width: 100%;
  max-width: 820px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.column-6 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #f7d55900;
  background-image: url('../images/Layer_1.png');
  background-position: 50%;
  background-size: cover;
  background-attachment: scroll;
  flex-flow: column;
  margin-bottom: 0;
  padding-top: 25px;
  padding-bottom: 60px;
  display: flex;
}

.heading-2 {
  text-align: center;
  margin-bottom: 5px;
  font-size: 40px;
}

.paragraph-32 {
  text-align: center;
  font-size: 16px;
}

.column-7 {
  background-image: url('../images/Layer_1-1.png');
  background-position: 0 0;
  background-size: cover;
  padding-top: 25px;
  padding-bottom: 60px;
}

.column-8 {
  background-image: url('../images/Layer_1-2.png');
  background-position: 0 0;
  background-size: cover;
  padding-top: 25px;
  padding-bottom: 60px;
}

.button-8 {
  aspect-ratio: auto;
  text-align: center;
  vertical-align: middle;
  border-radius: 4px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 230px;
  height: 50px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.div-block-142 {
  align-items: flex-start;
  display: flex;
}

.div-block-143 {
  background-color: #f7d559;
  flex: none;
  width: 53px;
  height: 6px;
  margin-top: 30px;
  margin-right: 20px;
}

.div-block-143.less {
  margin-top: 10px;
}

.div-block-143-copy {
  background-color: #4793eb;
  flex: none;
  width: 53px;
  height: 6px;
  margin-top: 30px;
  margin-right: 20px;
}

.div-block-143-copy.less {
  margin-top: 10px;
}

.body-lp {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.text-block-58 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

.button-9 {
  background-color: var(--yellow-2024);
  color: #000;
  border-radius: 4px;
  margin-top: 20px;
  padding: 13px 26px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
}

.button-9.blue-btn {
  background-color: var(--blue-2024);
  color: #fff;
}

.button-9.blue-btn.header {
  margin-top: 0;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 16px;
}

.button-9.login {
  background-color: var(--white);
  color: var(--blue-2024);
  margin-top: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 18px;
}

.button-9.mobile {
  display: none;
}

.button-9.alt {
  background-color: var(--white);
  color: var(--blue-2024);
  margin-left: 20px;
  display: block;
}

.why-grid-item {
  color: #fff;
  background-image: url('../images/endlessvariety-updated.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 100px 20px 20px;
  display: flex;
}

.why-grid-item.personalized {
  background-image: url('../images/personalized-updated.png');
}

.why-grid-item.hasslefree {
  background-image: url('../images/hasslefree-updated.png');
}

.why-grid-item.fresh {
  background-image: url('../images/alwaysfresh-updated.png');
}

.why-grid-item.space {
  background-image: url('../images/spacesaving-updated.png');
}

.why-grid-item.cost {
  background-image: url('../images/costeffective-updated-1.png');
}

.paragraph-33 {
  margin-left: 20px;
  margin-right: 20px;
}

.paragraph-34 {
  font-size: 14px;
}

.section-23-copy {
  background-color: var(--yellow-2024);
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.quote-grid-item {
  background-color: #fff;
  border-radius: 20px;
  flex: 1;
  align-self: stretch;
  padding: 40px 20px 20px;
  position: relative;
}

.quote-grid-item._5-reasons {
  padding-left: 100px;
  padding-right: 100px;
}

.text-block-59 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}

.paragraph-35 {
  font-size: 18px;
  font-style: italic;
  line-height: 27px;
}

.image-120 {
  position: absolute;
  inset: -17px auto auto;
  transform: translate(-50%);
}

.flex-block-5 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  max-width: 1440px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.heading-26 {
  font-size: 34px;
}

.heading-27 {
  font-size: 30px;
}

.section-24 {
  background-color: var(--blue-2024);
  color: #fff;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-24.larger {
  display: block;
}

.section-24.older {
  display: none;
}

.seen-in-grid-item {
  text-align: left;
  border: 2px solid #fff;
  border-radius: 20px;
  flex: 1;
  align-self: stretch;
  padding: 40px;
  position: relative;
}

.seen-in-grid-item.larger {
  color: #333;
  background-color: #fff;
  padding: 2px;
}

.paragraph-36 {
  margin-top: 20px;
  font-size: 20px;
  line-height: 30px;
}

.div-block-144 {
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 72px;
  display: flex;
}

.section-25 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.faq-item {
  text-align: left;
  border: 2px solid #333;
  border-radius: 20px;
  max-width: 700px;
  margin-bottom: 20px;
  padding: 20px;
}

.text-block-60 {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 24px;
}

.div-block-145 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.heading-28 {
  margin-top: 0;
}

.text-block-61 {
  color: var(--blue-2024);
  font-weight: 700;
}

.paragraph-37 {
  font-size: 14px;
}

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

.image-121 {
  height: 15px;
  margin-right: 10px;
}

.div-block-147 {
  padding: 40px 20px;
}

.text-span-45 {
  font-size: 14px;
}

.div-block-148 {
  border: 2px solid var(--blue-2024);
  flex: 1;
}

.text-block-62 {
  background-color: var(--blue-2024);
  color: #fff;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 700;
}

.image-122 {
  background-color: #e7e7e7;
  width: 500px;
}

.text-block-62-green {
  background-color: var(--green);
  color: #fff;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 700;
}

.div-block-148-green {
  border: 2px solid var(--green);
  flex: 1;
}

.div-block-149 {
  flex: 1;
}

.text-span-46 {
  font-size: 15px;
}

.container-34 {
  align-items: flex-start;
  display: flex;
}

.div-block-150 {
  flex: 1;
}

.button-10 {
  border: 2px solid var(--blue-2024);
  width: 100%;
  color: var(--blue-2024);
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  font-size: 20px;
}

.div-block-151 {
  border: 2px solid var(--blue-2024);
  cursor: pointer;
  border-radius: 4px;
  align-items: center;
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 10px;
  transition: all .2s;
  display: flex;
}

.div-block-151:hover {
  background-color: var(--blue-2024);
  color: #fff;
}

.div-block-151.blue-highlight {
  background-color: #4792ea4d;
}

.div-block-151.blue-highlight:hover {
  background-color: #4792ea;
}

.pricing-pill-item {
  padding-left: 0;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.div-block-152 {
  flex: 1;
  height: 1px;
}

.quick-stack-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
}

.text-block-36-copy {
  font-size: 14px;
  font-weight: 700;
}

.text-block-63 {
  background-color: var(--blue-2024);
  color: #fff;
  border-radius: 25px;
  margin-left: 5px;
  padding: 2px 5px;
  font-size: 13px;
  font-weight: 400;
}

.text-block-63-copy {
  background-color: var(--green);
  color: #fff;
  border-radius: 25px;
  margin-left: 5px;
  padding: 2px 5px;
  font-size: 13px;
  font-weight: 400;
}

.image-123 {
  width: 100%;
  margin-top: 100px;
  padding-right: 10px;
}

.section-26 {
  display: none;
}

.div-block-153 {
  padding-top: 40px;
  padding-bottom: 10px;
}

.image-124 {
  width: 200px;
}

.div-block-154 {
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
}

.section-27 {
  background-color: var(--yellow-2024);
}

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

.section-28 {
  padding: 40px 20px;
}

.section-28._2024 {
  padding-left: 10px;
  padding-right: 10px;
}

.brand-block {
  border: 2px solid var(--gray-2024);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 290px;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.flex-block-6 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: stretch;
  margin-top: 20px;
}

.section-29 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.image-125 {
  width: 150px;
}

.div-block-155 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-156 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-157 {
  margin-left: 20px;
}

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

.image-126 {
  width: 150px;
}

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

.section-30 {
  background-color: var(--yellow-2024);
  padding-top: 40px;
  padding-bottom: 40px;
}

.image-127 {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.div-block-159 {
  flex: 1;
  padding: 20px;
}

.div-block-160 {
  background-color: var(--gray-2024);
  border-radius: 20px;
  display: flex;
}

.div-block-161 {
  flex: 1;
}

.carousel-video-item-new {
  width: 150px;
  height: 150px;
  margin-left: 0;
  margin-right: 0;
}

.code-embed {
  margin-top: 40px;
}

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

.div-block-163 {
  padding-left: 20px;
}

.image-128 {
  width: 200px;
}

.paragraph-38 {
  text-align: center;
  font-size: 12px;
  display: flex;
}

.paragraph-38.center {
  justify-content: center;
  align-items: center;
}

.text-block-64 {
  font-family: futura-pt, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 34px;
}

.text-span-47 {
  text-decoration: line-through;
}

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

.text-block-65 {
  color: var(--green);
  padding-right: 10px;
  font-size: 14px;
  font-weight: 700;
}

.smaller-mo {
  font-size: 14px;
}

.button-9-copy {
  background-color: var(--yellow-2024);
  color: #000;
  border-radius: 4px;
  margin-top: 20px;
  padding: 13px 26px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
}

.button-9-copy2 {
  background-color: var(--yellow-2024);
  color: #000;
  border-radius: 4px;
  margin-top: 20px;
  padding: 13px 26px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
}

.button-9-copy2.blue-btn {
  background-color: var(--gray);
  color: var(--blue-2024);
}

.hero-section-2024 {
  background-color: var(--blue-2024);
  color: #fff;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
  display: none;
  position: relative;
  overflow: hidden;
}

.centered-heading {
  text-align: center;
  margin-bottom: 16px;
}

.centered-heading.margin-bottom-32px {
  color: #fff;
  text-align: left;
  text-align: left;
  border: 1px #fff0;
  margin-top: 80px;
  margin-bottom: 15px;
  font-family: futura-pt, sans-serif;
  font-size: 39px;
}

.centered-heading.margin-bottom-32px.copy {
  margin-top: 40px;
}

.centered-heading.margin-bottom-32px.smaller.min-top {
  margin-top: 0;
}

.margin-bottom-24px {
  color: #fff;
  background-color: #65b0f500;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 26px;
}

.margin-bottom-24px.herodesc2 {
  margin-bottom: 20px;
}

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 50%;
  padding-top: 80px;
  display: flex;
}

.hero-split.padding {
  min-width: 45%;
  max-width: 60%;
  padding-right: 20px;
}

.hero-heading-center {
  background-color: var(--blue-2024);
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
}

.hero-heading-center.pp {
  padding-bottom: 0;
  overflow: visible;
}

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

.button-primary {
  color: #333;
  letter-spacing: 0;
  text-transform: capitalize;
  background-color: #f7d559;
  border-radius: 4px;
  padding: 12px 25px;
  font-family: futura-pt, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  transition-property: all;
  transition-duration: .2s;
  transition-timing-function: ease;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.image {
  width: 200px;
  max-width: 100%;
  margin-bottom: 20px;
}

.shadow-two {
  max-width: 80%;
  margin-left: -24px;
  box-shadow: 0 4px 24px #96a3b514;
}

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

.hero-wrapper.center.vertical {
  flex-flow: column;
}

.columns-10 {
  width: 100%;
  max-width: 820px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.column-9 {
  background-image: url('../images/Layer_1-1.png');
  background-position: 0 0;
  background-size: cover;
  padding-top: 25px;
  padding-bottom: 60px;
}

.container-37 {
  flex-flow: column;
  align-items: center;
  width: 100%;
  max-width: 820px;
  margin-bottom: 0;
  display: flex;
}

.heading-31 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 36px;
  line-height: 38px;
}

.heading-31.underlinetext {
  color: #333;
}

.column-10 {
  background-image: url('../images/Layer_1-2.png');
  background-position: 0 0;
  background-size: cover;
  padding-top: 25px;
  padding-bottom: 60px;
}

.section-31 {
  background-color: #ecece7;
  padding-top: 50px;
  padding-bottom: 70px;
}

.section-31.white-bg {
  background-color: #fff;
  display: block;
}

.column-11 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #f7d55900;
  background-image: url('../images/Layer_1.png');
  background-position: 50%;
  background-size: cover;
  background-attachment: scroll;
  flex-flow: column;
  margin-bottom: 0;
  padding-top: 25px;
  padding-bottom: 60px;
  display: flex;
}

.container-38 {
  width: 100%;
  max-width: 1140px;
}

.button-11 {
  aspect-ratio: auto;
  text-align: center;
  vertical-align: middle;
  border-radius: 4px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 230px;
  height: 50px;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.paragraph-39 {
  text-align: center;
  font-family: Mulish, sans-serif;
  font-size: 16px;
}

.heading-32 {
  text-align: center;
  margin-bottom: 5px;
  font-family: Mulish, sans-serif;
  font-size: 40px;
}

.heading-5 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 20px;
}

.container-39 {
  flex-flow: row;
  justify-content: center;
  max-width: 1140px;
  margin-top: 0;
  display: flex;
}

.text-block-66 {
  font-size: 16px;
  font-weight: 400;
}

.container-40 {
  width: 100%;
  max-width: 1140px;
}

.image-129 {
  width: 100%;
  max-width: 53px;
}

.column-13 {
  color: #1b1b1b;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: Mulish, sans-serif;
  font-weight: 600;
  display: block;
}

.section-32 {
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-32.v2 {
  background-color: var(--gray-2024);
}

.button-12 {
  aspect-ratio: auto;
  text-align: center;
  vertical-align: middle;
  border-radius: 4px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 230px;
  height: 50px;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.heading-3 {
  margin-bottom: 20px;
  font-size: 36px;
}

.columns-11 {
  margin-top: 25px;
}

.section-33 {
  background-color: #ecece7;
  padding-top: 40px;
  padding-bottom: 70px;
}

.heading-33 {
  text-align: center;
  padding-bottom: 20px;
  font-size: 36px;
}

.container-6 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  width: 100%;
  max-width: 1140px;
  margin-bottom: 20px;
  display: flex;
}

.code-embed-2 {
  width: 100%;
  max-width: 1140px;
}

.container-41 {
  flex-flow: row;
  justify-content: center;
  max-width: 1140px;
  margin-top: 0;
  display: flex;
}

.button-13 {
  aspect-ratio: auto;
  text-align: center;
  vertical-align: middle;
  border-radius: 4px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 230px;
  height: 50px;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.section-34 {
  background-color: #ecece7;
  padding-top: 40px;
  padding-bottom: 70px;
}

.heading-34 {
  text-align: center;
  padding-bottom: 20px;
  font-size: 36px;
}

.container-42 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  width: 100%;
  max-width: 1140px;
  margin-bottom: 20px;
  display: flex;
}

.container-43 {
  flex-flow: row;
  justify-content: center;
  max-width: 1140px;
  margin-top: 0;
  display: flex;
}

.button-14 {
  aspect-ratio: auto;
  text-align: center;
  vertical-align: middle;
  border-radius: 4px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 230px;
  height: 50px;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.section-35 {
  background-color: #ecece7;
  padding-top: 60px;
  padding-bottom: 60px;
}

.container-44 {
  width: 100%;
  max-width: 1140px;
}

.heading-35 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
  line-height: 42px;
}

.container-45 {
  flex-flow: row;
  justify-content: center;
  max-width: 1140px;
  margin-top: 0;
  display: flex;
}

.button-15 {
  aspect-ratio: auto;
  text-align: center;
  vertical-align: middle;
  border-radius: 4px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 230px;
  height: 50px;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.section-36 {
  padding-top: 40px;
  padding-bottom: 60px;
}

.container-46 {
  flex-flow: column;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  display: flex;
}

.image-9 {
  width: 100%;
  max-width: 190px;
  margin-bottom: 25px;
}

.paragraph-40 {
  text-align: center;
  margin-top: 15px;
  font-family: Mulish, sans-serif;
  font-size: 13px;
}

.paragraph-41 {
  max-width: 350px;
  font-family: Mulish, sans-serif;
  font-size: 16px;
  line-height: 25px;
}

.div-block-164 {
  width: 100%;
  display: block;
  position: absolute;
  inset: 0% 0% auto;
}

.button-16 {
  background-color: var(--white);
  color: var(--blue-2024);
}

.footer-v3 {
  text-align: center;
  background-color: #fff;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 40px;
}

.container-47 {
  justify-content: flex-end;
  display: flex;
}

.container-36-copy {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper-copy {
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1440px;
  display: flex;
}

.div-block-165 {
  flex: 1;
}

.heading-22-copy.center {
  max-width: 400px;
  margin-bottom: 40px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 24px;
}

.text-block-37-copy {
  color: var(--blue);
  margin-top: 39px;
  margin-bottom: 0;
  font-weight: 700;
}

.listical-plan-copy {
  margin-top: 0;
  font-size: 44px;
  line-height: 48px;
}

.image-123-copy {
  width: 100%;
  margin-top: 20px;
  padding-right: 0;
}

.text-block-67 {
  background-color: var(--blue-2024);
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  padding: 4px 8px;
}

.body-13 {
  font-family: Mulish, sans-serif;
}

.hero-split-copy {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 50%;
  display: flex;
}

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

.bold-text-8 {
  text-decoration: underline;
}

.list-7 {
  color: #fff;
}

.text-block-68 {
  font-weight: 700;
}

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

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

.image-104-copy {
  width: 100px;
  position: absolute;
  inset: auto 0% 0% auto;
}

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

.div-block-104-copy-copy {
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.reactivation-sticky-copy {
  z-index: 9999;
  background-color: var(--blue-2024);
  color: #333;
  text-decoration: none;
  position: fixed;
  inset: 0% 0% auto;
}

.reactivation-sticky-copy.blue {
  background-color: var(--yellow);
}

.reactivation-sticky-copy.st-patricks {
  background-color: var(--blue-2024);
}

.text-block-45-copy {
  background-color: var(--yellow-2024);
  color: #000;
  border-radius: 8px;
  margin-left: 20px;
  padding: 8px 16px;
}

.text-block-45-copy.st-patricks {
  background-color: var(--yellow-2024);
}

.hero-heading-center-2024 {
  background-color: #4792ea;
  background-image: url('../images/Header-v1-original.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
}

.hero-spacer {
  width: 60%;
}

.hero-container-bg-2024 {
  width: 100%;
  max-width: 1140px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-heading-center-2024-v2 {
  background-color: #4792ea;
  background-image: url('../images/Header-V3.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
}

.hero-heading-center-2024-v3 {
  background-color: #4792ea;
  background-image: url('../images/Header-v2a.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vh;
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
}

.image-v2 {
  width: 200px;
  max-width: 100%;
  margin-bottom: 20px;
}

.text-block-69 {
  text-align: center;
  margin-top: 20px;
}

.text-block-70 {
  background-color: var(--yellow-2024);
  color: var(--white);
  border-radius: 4px;
  padding: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}

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

.plan-flex-blocks {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-bottom: 1px solid var(--gray-2024);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  padding-top: 20px;
  padding-bottom: 20px;
  display: grid;
}

.plan-flex-blocks.sticky {
  background-color: var(--white);
  position: sticky;
  top: 0;
}

.image-132 {
  height: 14px;
}

.text-block-71, .text-block-72, .text-block-73, .text-block-74, .text-block-75, .text-block-76 {
  text-align: center;
}

.div-block-170 {
  text-align: center;
  position: sticky;
}

.text-block-77 {
  background-color: var(--yellow-2024);
  text-align: center;
  border-radius: 20px;
  padding: 4px 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
}

.text-block-77.green {
  background-color: var(--green);
}

.text-block-77.hidden {
  opacity: 0;
}

.div-block-171 {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
  display: flex;
}

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

.text-block-78, .text-block-79, .text-block-80, .text-block-81, .text-block-82, .text-block-83, .text-block-84, .text-block-85 {
  font-weight: 700;
}

.hyphen-empty {
  background-color: var(--light-black);
  width: 25px;
  height: 2px;
}

.div-block-173 {
  background-color: var(--blue-2024);
}

.header-container {
  align-items: center;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.logo-img {
  width: 200px;
  max-width: 100%;
}

.page-padding {
  padding: 5em 5%;
}

.page-padding.s0 {
  padding: 2em 0%;
}

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

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

.padding-vertical.padding-xxlarge {
  padding: 0;
}

.logo_component-slider {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 2200px;
  display: flex;
}

.logo-slider-img {
  width: 200px;
}

.carousel-container-2 {
  border-radius: 100px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

.logo-container-2 {
  background-color: #000;
  justify-content: space-around;
  min-width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.logo-container-2._2 {
  margin-left: -.1%;
}

.logo-image {
  height: 40px;
}

._100-margin-top {
  margin-top: 100px;
}

.marquee-content {
  display: flex;
}

.container-48 {
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  display: flex;
}

.div-block-174 {
  flex: 1;
}

.image-133 {
  width: 200px;
}

.btn-main {
  background-color: var(--yellow-2024);
  color: #000;
  border-radius: 4px;
  padding: 13px 26px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
}

.btn-main.blue-btn {
  background-color: var(--blue-2024);
  color: #fff;
}

.btn-main.login {
  background-color: var(--white);
  color: var(--blue-2024);
  margin-top: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 18px;
}

.btn-main.mobile {
  display: none;
}

.section-blue {
  background-color: var(--blue-2024);
}

.container-49 {
  display: flex;
}

.div-block-175 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  min-width: 50%;
  display: flex;
}

.div-block-176 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px;
  display: flex;
}

.div-block-176.vertical {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.image-134 {
  max-width: 54%;
}

.bg-gray {
  background-color: var(--gray-2024);
}

._5-reasons-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

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

._5-reasons-subheader {
  font-size: 18px;
  line-height: 24px;
}

._5-reasons-div-left {
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

._5-reasons-number {
  background-color: var(--yellow-2024);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 54px;
  padding: 10px;
  font-family: futura-pt, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  display: flex;
}

._5-reasons-number.not-fixed {
  justify-content: flex-start;
  align-self: flex-start;
  align-items: center;
  width: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.div-block-177 {
  flex-flow: column;
  padding-left: 20px;
  display: flex;
}

.paragraph-42 {
  font-size: 17px;
  line-height: 150%;
}

._5-reasons-div-right {
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

._5-reasons-feature-left {
  flex-flow: column;
  padding-right: 20px;
  display: flex;
}

.image-135 {
  max-width: 50%;
  padding-right: 20px;
}

.image-136 {
  min-width: 50%;
  padding-left: 20px;
}

._5-reasons-quote {
  background-color: var(--yellow-2024);
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.paragraph-43 {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 150%;
}

.image-120-copy {
  position: absolute;
  inset: -30px auto auto 100px;
  transform: translate(-50%);
}

.bg-blue-2024 {
  background-color: var(--blue-2024);
}

.bg-blue-2024.marquee {
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.div-block-99-copy {
  border: 2px solid var(--blue-2024);
  border-radius: 10px;
}

.div-block-99-copy.green {
  border-color: var(--green);
  position: relative;
}

.div-block-99-copy.blue-border {
  border-color: var(--blue);
}

._5-reasons-number-bullet {
  color: #fff;
  background-color: #6cb044;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  font-family: futura-pt, sans-serif;
  font-size: 17px;
  display: flex;
}

.div-block-178 {
  justify-content: center;
  align-items: center;
  font-size: 17px;
  display: flex;
}

.div-block-179 {
  z-index: 999;
  background-color: #fff;
  position: sticky;
  top: 0;
}

.header-container-5-reasons {
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 10px;
  display: flex;
}

.flex-block-5-copy {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  max-width: 1440px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.link-block-10 {
  background-color: var(--yellow-2024);
  color: #333;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  text-decoration: none;
  display: none;
}

.text-block-86 {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.image-24-copy {
  height: 50px;
}

.div-block-bonus-header {
  z-index: 999;
  background-color: #fff;
}

.bonus-banner {
  z-index: 9999;
  background-color: var(--blue-2024);
  width: 100%;
  text-decoration: none;
  position: sticky;
  top: 0;
}

.image-137 {
  height: 100px;
  margin-top: 0;
  margin-bottom: -34px;
}

.div-block-180 {
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.text-block-87 {
  color: var(--white);
  font-weight: 700;
}

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

.image-138 {
  width: 200px;
}

.div-block-181 {
  align-items: center;
  padding: 10px;
  display: flex;
}

.text-block-88 {
  padding-left: 10px;
}

.darkened {
  background-image: linear-gradient(#0000004d, #0000004d);
}

.why-grid-item-v2 {
  color: #fff;
  background-image: linear-gradient(#00000040, #00000040), url('../images/girl-ground.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 100px 20px 20px;
  display: flex;
}

.why-grid-item-v2.personalized {
  background-image: url('../images/personalized.png');
}

.why-grid-item-v2.hasslefree {
  background-image: url('../images/hassle-free_1.png');
}

.why-grid-item-v2.fresh {
  background-image: url('../images/always-fresh.png');
}

.why-grid-item-v2.space {
  background-image: url('../images/Rectangle-240661914.png');
}

.why-grid-item-v2.cost {
  background-image: url('../images/costeffective-updated.png');
}

.why-grid-item--v2 {
  color: #fff;
  background-image: url('../images/girl-ground.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 100px 20px 20px;
  display: flex;
}

.why-grid-item--v2.personalized {
  background-image: linear-gradient(#00000026, #00000026), url('../images/personalized.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.why-grid-item--v2.hasslefree {
  background-image: url('../images/hassle-free_1.png');
}

.why-grid-item--v2.fresh {
  background-image: url('../images/always-fresh.png');
}

.why-grid-item--v2.space {
  background-image: url('../images/Rectangle-240661914.png');
}

.why-grid-item--v2.cost {
  background-image: url('../images/costeffective-updated.png');
}

.why-grid-item-copy.hasslefree {
  background-image: url('../images/hassle-free_1.png');
  background-position: 50% 0;
  background-repeat: repeat-y;
  background-size: cover;
  background-attachment: scroll;
}

.why-grid-item-copy.fresh {
  background-image: url('../images/always-fresh.png');
  background-position: 50%;
  background-size: cover;
}

.why-grid-item-copy.fresh.bg {
  background-image: linear-gradient(#0003, #0003), url('../images/always-fresh.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.why-grid-item-copy.space {
  background-image: url('../images/Rectangle-240661914.png');
}

.why-grid-item-copy {
  color: #fff;
  background-image: url('../images/girl-ground.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 100px 20px 20px;
  display: flex;
}

.why-grid-item-copy.personalized {
  background-image: url('../images/personalized.png');
}

.why-grid-item-copy.hasslefree {
  background-image: url('../images/hassle-free_1.png');
}

.why-grid-item-copy.fresh {
  background-image: url('../images/always-fresh.png');
}

.why-grid-item-copy.space {
  background-image: linear-gradient(#0003, #0003), url('../images/Rectangle-240661914.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.why-grid-item-copy.cost {
  background-image: url('../images/costeffective-updated.png');
}

.why-grid-item-v22 {
  color: #fff;
  background-image: url('../images/girl-ground.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 100px 20px 20px;
  display: flex;
}

.why-grid-item-v22.personalized {
  background-image: url('../images/personalized.png');
}

.why-grid-item-v22.hasslefree {
  background-image: url('../images/hassle-free_1.png');
}

.why-grid-item-v22.fresh {
  background-image: url('../images/always-fresh.png');
}

.why-grid-item-v22.space {
  background-image: url('../images/Rectangle-240661914.png');
}

.why-grid-item-v22.cost {
  background-image: linear-gradient(#0003, #0003), url('../images/costeffective-updated.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.why-grid-item-copy-copy {
  color: #fff;
  background-image: url('../images/girl-ground.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 100px 20px 20px;
  display: flex;
}

.why-grid-item-copy-copy.personalized {
  background-image: url('../images/personalized.png');
}

.why-grid-item-copy-copy.hasslefree {
  background-image: linear-gradient(#0003, #0003), url('../images/hassle-free_1.png');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, repeat-y;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
}

.why-grid-item-copy-copy.fresh {
  background-image: url('../images/always-fresh.png');
}

.why-grid-item-copy-copy.space {
  background-image: url('../images/Rectangle-240661914.png');
}

.why-grid-item-copy-copy.cost {
  background-image: url('../images/costeffective-updated.png');
}

.bf22-section-two {
  background-color: var(--black);
}

.section-37 {
  text-align: center;
  background-color: #4792ea;
  padding-top: 20px;
  padding-bottom: 60px;
}

.image-139 {
  width: 200px;
  padding-bottom: 20px;
}

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

.section-38 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-38.yellow {
  background-color: var(--yellow-2024);
}

.section-39 {
  background-color: var(--gray-2024);
}

.div-block-131-copy {
  align-items: center;
  margin-top: 12px;
  display: flex;
}

.section-40 {
  background-color: #4792ea;
  display: none;
}

.container-51-copy {
  text-align: center;
  flex-flow: column;
  align-items: center;
  padding-bottom: 60px;
  display: flex;
}

.columns-12 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.flex-block-8 {
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.image-140 {
  padding-left: 20px;
}

.puzzleimg {
  max-width: 50%;
  padding-right: 20px;
}

.image-141 {
  max-width: 50%;
}

.text-block-59-copy {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}

.image-142 {
  max-width: 250px;
}

.text-block-89, .text-block-90, .text-block-91 {
  margin-top: 10px;
}

.plan-div {
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.plan-bullets {
  margin-bottom: 20px;
  padding-left: 30px;
  padding-right: 0;
}

.code-embed-4 {
  background-color: #4792ea;
}

.div-block-182 {
  background-color: #4792ea;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-block-92 {
  color: #fff;
  font-size: 24px;
}

.text-block-93 {
  background-color: var(--blue-2024);
  color: var(--white);
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}

.text-block-93.hide {
  display: none;
}

.image-143 {
  width: 100%;
}

.full-screen-modal {
  position: absolute;
  inset: 0%;
}

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

.step4 {
  display: none;
  position: absolute;
  inset: 0% 0% auto;
}

.step4.step-block {
  display: none;
}

.step4.step-block-v3 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.step4.step-block-v4 {
  background-image: linear-gradient(#fff, #f5f6f780 33%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  display: none;
}

.text-block-94 {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.div-block-184 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

.upgrade-btn {
  border: 2px solid var(--blue-2024);
  margin-left: 10px;
  margin-right: 10px;
  font-family: futura-pt, sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.upgrade-btn.opp {
  border: 2px solid var(--blue-2024);
  color: var(--blue-2024);
  background-color: #fff;
}

.upsell-blocks {
  justify-content: center;
  align-items: center;
  display: flex;
}

.plan-flex-blocks-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-bottom: 1px solid var(--gray-2024);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  padding-top: 20px;
  padding-bottom: 20px;
  display: grid;
}

.plan-flex-blocks-3.sticky {
  background-color: var(--white);
  position: sticky;
  top: 0;
}

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

.image-145, .image-146, .image-147 {
  width: 100%;
}

.flex-block-9 {
  justify-content: flex-start;
  align-items: center;
  padding-top: 20px;
}

.image-148 {
  width: 200px;
}

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

.text-span-52 {
  text-underline-offset: 2px;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--yellow-2024);
  text-decoration-color: var(--yellow-2024);
  text-decoration-thickness: 5px;
}

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

.text-span-53 {
  color: var(--yellow-2024);
}

.acimg {
  width: 100%;
}

.cyp-2025 {
  font-family: Mulish, sans-serif;
}

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

.cyp25-plan-block-top {
  background-color: #f7d559;
  border-radius: 20px 20px 0 0;
  padding-top: 40px;
  padding-bottom: 10px;
}

.cyp25-plan-name {
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
}

.cyp25-plan-details {
  background-color: #f5f5f5;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 20px 20px 40px;
}

.cyp25-plan-detail {
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 5px;
  display: flex;
}

.circle-check {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.cyp25-piece-count {
  background-color: #fae493;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 700;
}

.image-149 {
  height: 100px;
  margin-bottom: 20px;
}

.cyp25-btn {
  color: var(--blue);
  background-color: #fff;
  padding: 20px 40px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 1px 9px #b8ced5;
}

.cyp25-btn:hover {
  box-shadow: 0 1px 4px 1px #2ba1f5, 1px 1px 3px #2ba1f5;
}

.cyp25-btn.js-select-level.js-track-skill-level {
  background-color: var(--blue-2024);
  width: 100%;
  color: var(--color);
  border-radius: 5px;
  margin-top: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.cyp25-btn.js-select-level.js-track-skill-level:hover {
  box-shadow: none;
}

.cyp25-btn.js-select-theme {
  margin-top: 20px;
}

.button-white-copy {
  color: var(--blue);
  background-color: #fff;
  padding: 20px 40px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 1px 9px #b8ced5;
}

.button-white-copy:hover {
  box-shadow: 0 1px 4px 1px #2ba1f5, 1px 1px 3px #2ba1f5;
}

.button-white-copy.js-select-theme {
  margin-top: 20px;
}

.columns-13 {
  margin-top: 40px;
}

.text-block-95 {
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 24px;
}

.text-span-54 {
  color: var(--red);
}

.cyp25-negative-img {
  width: 75px;
  display: block;
  position: absolute;
  top: 80px;
}

.cyp25-negative {
  background-color: #dddddd80;
  justify-content: center;
  align-items: center;
  display: none;
  position: absolute;
  inset: 0%;
}

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

.cyp25-plan-block-plan {
  color: #fff;
  text-align: center;
  background-color: #4792ea;
  border-radius: 20px;
  padding: 50px 40px 20px;
  position: relative;
}

.cyp25-plan-block-plan.puzzler {
  color: #333;
  background-color: #f7d559;
}

.cyp25-plan-block-plan.pro {
  background-color: #333;
  border-top-left-radius: 25px;
}

.cyp25-plan-header {
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
}

.text-span-55 {
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
}

.cyp25-price {
  margin-top: 20px;
}

.cyp25-plan-img {
  height: 100px;
  margin-bottom: 20px;
}

.text-block-96 {
  color: #fff;
  background-color: #4792ea;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 10px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.plan-tag {
  color: #fff;
  background-color: #4792ea;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 10px;
  font-weight: 700;
  position: absolute;
  inset: 0% auto auto 0%;
}

.plan-tag.value {
  color: #333;
  background-color: #f7d559;
}

.columns-14 {
  border: 2px #f5f5f5;
  border-top-style: solid;
  margin-top: 40px;
  padding-top: 40px;
}

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

.image-150 {
  width: 112px;
}

.text-block-97 {
  font-size: 18px;
  font-weight: 700;
}

.image-151 {
  width: 140px;
  margin-top: 10px;
}

.div-block-187 {
  padding-left: 20px;
}

.paragraph-44 {
  margin-top: 20px;
}

.theme-next-block {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 0;
  display: flex;
}

.container-52 {
  padding-top: 40px;
}

.div-block-189 {
  background-color: #f5f5f5;
  border-radius: 5px;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 30px;
  display: flex;
}

.div-block-189.back {
  display: flex;
}

.text-block-98 {
  color: #9d9d9d;
}

.image-152 {
  width: 20px;
  margin-right: 10px;
}

.div-block-190 {
  display: inline-flex;
}

.image-153 {
  display: none;
}

.text-block-99 {
  text-align: center;
  margin-top: 40px;
  margin-left: 140px;
  margin-right: 140px;
  font-size: 14px;
}

.text-block-39-copy {
  color: #fff;
  margin-right: 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
}

.div-block-191 {
  background-color: var(--white);
  border-radius: 10px;
  padding: 25px;
  display: flex;
}

.div-block-192 {
  background-color: var(--yellow-2024);
  border-radius: 10px;
  flex: none;
  width: 128px;
  padding: 20px;
}

.image-154 {
  width: 100px;
}

.heading-37 {
  color: var(--blue-2024);
  font-size: 24px;
}

.div-block-191-copy {
  background-color: var(--white);
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  padding: 25px;
  display: flex;
}

.div-block-193 {
  padding-left: 25px;
}

.rent-btn {
  border-radius: 4px;
}

.div-block-194 {
  text-align: center;
  margin-bottom: 40px;
}

.text-span-56, .text-span-57, .text-span-58 {
  text-decoration: line-through;
}

.div-block-195 {
  background-color: #e53935;
}

.text-block-100 {
  color: #fffefe;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 15px;
}

.text-block-100.hide {
  display: none;
}

.mulish {
  font-family: Mulish, sans-serif;
}

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

.link-5 {
  color: #313131;
  text-decoration: underline;
}

.text-block-102 {
  color: #fff;
  text-align: center;
  font-size: 14px;
}

.div-block-196 {
  background-color: #df3737;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.div-block-197 {
  background-image: url('../images/grid-pattern.png');
  background-position: 0%;
  background-repeat: repeat-x;
  background-size: auto;
  height: 30px;
}

.section-41 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-41._2025 {
  background-color: #fff;
}

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

.image-155 {
  height: 50px;
}

.div-block-198 {
  padding-left: 10px;
}

.text-block-103 {
  font-size: 14px;
}

.image-156 {
  height: 10px;
}

.bf25-section {
  background-color: var(--blue-2024);
  padding-bottom: 0;
}

.bf22-section-copy {
  background-color: var(--gray-2024);
}

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

.text-block-104 {
  text-align: center;
  font-size: 15px;
}

.div-block-199 {
  background-color: #3898ec1f;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 10px;
}

.sbs-2025 {
  z-index: 80001;
  background-color: var(--yellow-2024);
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-top: 3px;
  padding-bottom: 3px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.text-block-105 {
  font-size: 14px;
}

.text-block-106 {
  align-items: center;
  display: block;
}

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

.text-block-107 {
  color: #fff;
  background-color: #cc0e39;
  padding: 4px 8px;
  font-size: 12px;
  line-height: 12px;
}

.image-106-copy {
  width: 250px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.text-span-59 {
  background-color: #cc0e30;
  padding: 3px 6px;
  display: inline-block;
}

.seen-in-inset {
  border: 4px solid var(--blue-2024);
  border-radius: 18px;
  height: 100%;
  padding: 40px;
}

.div-block-201 {
  flex-flow: column;
  align-items: stretch;
  display: flex;
}

.plan-popup {
  background-color: #161616d6;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0%;
}

.plan-popup._2puzz {
  display: flex;
}

.plan-popup.hide {
  display: none;
}

.plan-popup-container {
  background-color: #fff;
  border-radius: 8px;
  max-width: 90%;
  padding: 20px;
  position: relative;
}

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

.text-span-60 {
  font-size: 32px;
  font-weight: 700;
}

.text-block-108 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.image-157 {
  position: absolute;
  inset: 10px 10px auto auto;
}

.section-40-discount {
  background-color: #4792ea;
  display: none;
}

.div-block-202 {
  justify-content: flex-start;
  align-self: flex-start;
  align-items: center;
  padding-top: 20px;
  display: flex;
}

.image-158 {
  height: 23px;
  padding-left: 4px;
}

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

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

.text-block-109 {
  text-align: center;
  background-color: #3ac3cf2e;
  border-radius: 8px;
  padding-left: 20px;
  padding-right: 20px;
}

.text-block-110 {
  color: var(--color);
  margin-top: 10px;
  font-size: 13px;
  font-weight: 400;
  display: none;
}

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

.button-9-copy {
  background-color: var(--yellow-2024);
  color: #000;
  text-align: center;
  border-radius: 4px;
  margin-top: 20px;
  padding: 13px 26px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
}

.button-9-copy.blue-btn {
  background-color: var(--blue-2024);
  color: #fff;
}

.button-9-copy.blue-btn.header {
  margin-top: 0;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 16px;
}

.button-9-copy.login {
  background-color: var(--white);
  color: var(--blue-2024);
  margin-top: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 18px;
}

.button-9-copy.mobile {
  display: none;
}

.button-9-copy.alt {
  background-color: var(--white);
  color: var(--blue-2024);
  margin-left: 20px;
  display: block;
}

.flash-sale {
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-block-111 {
  background-color: var(--yellow);
  text-align: center;
  border: 1px solid #333;
  border-radius: 1px;
  padding: 20px;
  font-family: futura-pt, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.text-span-63, .text-span-64, .text-span-65 {
  font-weight: 700;
}

.flash-sale-block {
  background-color: var(--yellow-2024);
  text-align: center;
  border-radius: 2px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 20px 100px;
  font-family: Mulish, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.timer-block {
  background-color: var(--blue);
  color: var(--color);
  border-radius: 3px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  padding: 10px;
  display: flex;
}

.text-block-112 {
  font-size: 15px;
}

.heading-38 {
  color: var(--blue-2024);
  margin-top: 0;
  font-size: 54px;
}

.text-block-114 {
  border: 4px dashed var(--blue-2024);
  margin-top: 10px;
  padding: 3px 44px;
}

.text-block-115 {
  color: #747474;
  margin-top: 10px;
  font-size: 17px;
}

.text-span-66 {
  color: var(--yellow-2024);
}

.button-9-copy-copy {
  background-color: var(--yellow-2024);
  color: #000;
  text-align: center;
  border-radius: 4px;
  margin-top: 20px;
  padding: 15px 26px;
  font-family: futura-pt, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
}

.button-9-copy-copy.blue-btn {
  background-color: var(--blue-2024);
  color: #fff;
}

.button-9-copy-copy.blue-btn.header {
  margin-top: 0;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 16px;
}

.button-9-copy-copy.login {
  background-color: var(--white);
  color: var(--blue-2024);
  margin-top: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 18px;
}

.button-9-copy-copy.mobile {
  display: none;
}

.button-9-copy-copy.alt {
  background-color: var(--white);
  color: var(--blue-2024);
  margin-left: 20px;
  display: block;
}

.text-block-117 {
  color: var(--white);
  background-color: #ffffff1a;
  border-radius: 20px;
  margin-bottom: 10px;
  padding: 10px 15px;
  font-size: 15px;
}

.div-block-201-copy {
  flex-flow: column;
  align-items: stretch;
  width: 350px;
  display: flex;
}

.div-block-204 {
  margin-top: 3px;
  margin-bottom: 3px;
  display: flex;
}

.image-159 {
  width: 19px;
}

.text-block-118 {
  color: var(--white);
  padding-left: 10px;
  font-size: 15px;
  line-height: 20px;
}

.body-2026 {
  font-family: Mulish, sans-serif;
}

.body-2027 {
  background-color: var(--blue-2024);
}

.section-42 {
  padding-top: 60px;
}

.image-160 {
  width: 100%;
}

@media screen and (min-width: 1440px) {
  .gc-link {
    background-color: var(--green);
    color: #fff;
    border-radius: 3px;
    padding: 2px 4px;
    text-decoration: none;
    display: inline-block;
  }

  .lifemart-popup {
    z-index: 9999;
  }

  .lifemart-popup-content {
    background-color: #fff;
    padding: 40px;
  }

  .lifemart-popup-content.center {
    margin-top: 100px;
  }

  .promo-code {
    border: 6px dashed var(--yellow);
    text-align: left;
    padding: 10px 20px;
    font-family: futura-pt, sans-serif;
    font-size: 17px;
    font-weight: 700;
    display: inline-block;
  }

  .image-106 {
    width: 400px;
  }

  .body-12 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  }

  ._4-puzzle-logo {
    width: 400px;
  }

  .why-grid-item {
    max-width: 500px;
  }

  .quick-stack-3 {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }

  .why-grid-item-v2, .why-grid-item-copy, .why-grid-item--v2, .why-grid-item-copy, .why-grid-item-copy, .why-grid-item-copy, .why-grid-item-v22, .why-grid-item-copy-copy {
    max-width: 500px;
  }

  .div-block-191 {
    justify-content: flex-start;
    align-items: center;
    height: 186px;
  }

  .div-block-192 {
    height: 128px;
  }

  .div-block-191-copy {
    justify-content: flex-start;
    align-items: center;
    height: 186px;
  }

  .image-106-copy {
    width: 400px;
  }
}

@media screen and (min-width: 1920px) {
  .center.review-slide {
    padding-left: 420px;
    padding-right: 420px;
  }

  .skill-blocks {
    margin-left: 220px;
    margin-right: 220px;
  }

  .back-block {
    padding-left: 220px;
    padding-right: 220px;
  }

  .puzzle-piece-popup.js-puzzle-piece-popup {
    display: none;
  }

  .image-37 {
    height: 900px;
    right: -3%;
  }

  .image-39 {
    width: 100%;
  }

  .hero {
    background-image: linear-gradient(to bottom, null, null), url('../images/bg-split-5.jpg');
    background-size: auto, cover;
  }

  .full-width-container {
    padding-left: 220px;
    padding-right: 220px;
  }

  .hero-v2 {
    background-image: linear-gradient(to bottom, null, null), url('../images/bg-split-5.jpg');
    background-size: auto, cover;
  }

  .back-block-v2 {
    padding-left: 220px;
    padding-right: 220px;
  }

  .image-80 {
    width: 100%;
    max-height: 100%;
  }

  .plan-header.green-copy {
    color: #333;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }
}

@media screen and (max-width: 991px) {
  .section-content.how-it-works-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .center.launch {
    padding-left: 40px;
    padding-right: 40px;
  }

  .center.review-slide {
    padding-left: 100px;
    padding-right: 100px;
  }

  .center._2vp {
    padding-top: 60px;
  }

  .sanatize-block {
    flex-direction: column;
  }

  .sticky-offer {
    text-align: center;
    flex-direction: row;
    padding-left: 20px;
    padding-right: 20px;
    position: sticky;
  }

  .white.hero-main-text {
    font-size: 49px;
  }

  .white.hero-sub-text.narrow {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .white.quote {
    padding-left: 20px;
    padding-right: 20px;
  }

  .whats-in-the-box-block, .story-block {
    flex-direction: column;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .skill-blocks {
    margin-left: 0;
    margin-right: 0;
  }

  .note-text, .covid-text {
    margin-top: 40px;
  }

  .image-6 {
    height: 100%;
    margin-top: 0;
  }

  .hero-overlay-v2 {
    background-image: linear-gradient(#00000091, #00000091), url('../images/puzzle-background2.jpg');
    background-position: 0 0, 50% 0;
    background-size: auto, cover;
    height: 60vh;
  }

  .bag-img {
    margin-bottom: 0;
  }

  .tree-block {
    z-index: 4;
    margin-left: 20px;
  }

  .footer-v2, .container-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-8 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-link-v2 {
    margin-left: 10px;
  }

  .nav-link-v2.cta, .nav-link-v2.bf-link, .nav-link-v2.gc-link {
    margin-left: 30px;
    position: static;
  }

  .icon-v2 {
    color: var(--blue);
    font-size: 34px;
    line-height: 34px;
  }

  .div-block-15 {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .footer-v2-copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-overlay-v3 {
    height: 60vh;
  }

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

  .cyp-box-v3 {
    margin-bottom: 10px;
  }

  .level-block {
    flex-direction: row;
  }

  .first-plan {
    margin-top: 20px;
  }

  .container-9 {
    height: 70px;
    padding-bottom: 40px;
  }

  .back-block {
    padding-left: 10px;
    padding-right: 10px;
  }

  .theme-grid {
    grid-row-gap: 16px;
    grid-template-rows: auto auto auto auto;
  }

  .sticky-offer-gift-cards {
    padding-left: 20px;
    padding-right: 20px;
    position: sticky;
  }

  .hero-overlay-v4 {
    height: 60vh;
  }

  .first-plan-v2 {
    margin-top: 20px;
  }

  .section-content-v2.how-it-works-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .whats-in-the-box-text-v2 {
    text-align: center;
  }

  .whats-in-the-box-block-v2 {
    flex-direction: column-reverse;
  }

  .slide-quote-text {
    min-height: auto;
  }

  .nav-link-v3 {
    margin-left: 10px;
  }

  .nav-link-v3.cta, .nav-link-v3.bf-link, .nav-link-v3.gc-link {
    margin-left: 30px;
    position: static;
  }

  .nav-non-landing-menu-container {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .nav-non-landing-container {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero-container {
    background-image: none;
  }

  .testimonial-block-v3.desktop-only {
    display: none;
  }

  .cyp-description-v2 {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .image-32 {
    height: 80px;
  }

  .image-33 {
    display: block;
  }

  .reviews-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .puzzle-piece-popup-container {
    width: 75%;
  }

  .hero-section {
    flex-direction: column;
    display: block;
  }

  .image-37 {
    position: relative;
  }

  .hero-container-v2 {
    padding-top: 40px;
  }

  .image-38 {
    display: none;
  }

  .html-embed-3.rent-btn {
    text-align: center;
  }

  .hero-flex-container {
    padding-top: 40px;
  }

  .container-13 {
    padding-left: 100px;
    padding-right: 100px;
  }

  .hero-main-block {
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-33 {
    flex: 1;
  }

  .menu-button {
    color: #fff;
  }

  .menu-button.w--open {
    background-color: var(--black);
  }

  .btn-nav.mobile {
    display: block;
  }

  .full-width-container, .full-width-container.navbar-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .back-block-v2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .cyp-plan-blocks {
    margin-bottom: 40px;
  }

  .hero-single-text-container {
    flex-direction: column-reverse;
  }

  .hero-single-text-box {
    text-align: center;
  }

  .single-menu {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cyp-puzzle-plans {
    padding-top: 50px;
  }

  .mini-puzzle-banner-container {
    bottom: -70px;
    right: -13px;
  }

  .free-mini-puzzle {
    width: 100%;
  }

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

  .image-72 {
    margin-left: 8px;
  }

  .image-73 {
    margin-left: -6px;
  }

  .div-block-64 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .column-4 {
    padding-top: 0;
  }

  .image-81 {
    height: auto;
  }

  .container-21 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .social-proof-family {
    height: auto;
  }

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

  .red.bf-headline {
    font-size: 4em;
  }

  .grid-4 {
    grid-column-gap: 4rem;
    grid-row-gap: 2rem;
    flex-direction: column;
    display: flex;
  }

  .heading-16 {
    display: none;
  }

  .heading-17 {
    margin-top: 10px;
    display: block;
  }

  .listical-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .listical-section._2024 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-91 {
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 0;
  }

  .image-100 {
    width: auto;
    height: auto;
  }

  .div-block-92 {
    width: 100%;
  }

  .html-embed-14 {
    text-align: center;
  }

  .div-block-98._2024 {
    padding: 10px;
  }

  .div-block-99 {
    margin-bottom: 40px;
  }

  .columns-8 {
    margin-left: 0;
    margin-right: 0;
  }

  .image-102 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .carousel-video-item {
    width: 240px;
    height: 240px;
    margin: 10px;
  }

  .gc-testimonial-image {
    width: 125px;
    margin-bottom: 0;
    margin-right: 20px;
  }

  .gc-testimonial-section {
    text-align: left;
    flex-direction: row;
    margin-bottom: 20px;
  }

  .div-block-103 {
    position: fixed;
    inset: 0% 0% auto;
  }

  .text-block-38 {
    margin-top: -6px;
    margin-bottom: -6px;
    padding-bottom: 0;
    font-size: 9px;
  }

  .div-block-104._4puzz {
    text-align: center;
    flex-flow: column;
  }

  .div-block-105 {
    text-align: center;
    background-color: #f1f1f1;
    border-radius: 3px;
    margin-left: 3px;
    margin-right: 3px;
    padding: 3px;
  }

  .text-block-40 {
    font-size: 14px;
    font-weight: 700;
    line-height: 12px;
  }

  .listacle-column {
    padding-left: 0;
    padding-right: 0;
  }

  .listacle-column._2024 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .image-104 {
    width: 200px;
  }

  .gc-spacer.small-tablet {
    height: 2rem;
  }

  .image-106 {
    margin-top: 100px;
  }

  .div-block-118 {
    margin-left: 20px;
  }

  .div-block-134 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-container-2024 {
    text-align: center;
    flex-flow: column;
  }

  .pjm-splash {
    align-items: center;
  }

  .image-118 {
    width: 200px;
  }

  .button-9.blue-btn.plan-btn {
    font-size: 20px;
    line-height: 20px;
  }

  .button-9.mobile {
    display: block;
  }

  .button-9.desktop {
    display: none;
  }

  .why-grid-item {
    background-position: 50%;
    background-size: cover;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    padding-top: 80px;
  }

  .carousel-video-item-new {
    width: 125px;
    height: 125px;
  }

  .centered-heading.margin-bottom-32px, .margin-bottom-24px.herodesc2, .margin-bottom-24px.herodesc2 {
    text-align: center;
  }

  .hero-split {
    align-items: center;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .hero-split.padding {
    max-width: 100%;
  }

  .container-36 {
    max-width: 728px;
  }

  .image {
    margin-bottom: 0;
  }

  .shadow-two {
    max-width: 110%;
    margin-left: 0;
    padding-right: 0;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-wrapper.center.vertical {
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0;
  }

  .column-9 {
    padding-top: 15px;
    padding-bottom: 55px;
  }

  .container-37 {
    width: 98%;
  }

  .heading-31 {
    line-height: 38px;
  }

  .heading-31.underlinetext {
    line-height: 28px;
  }

  .column-10 {
    padding-top: 5px;
    padding-bottom: 65px;
    padding-left: 10px;
  }

  .column-11 {
    padding-top: 15px;
    padding-bottom: 55px;
  }

  .paragraph-39 {
    font-size: 15px;
  }

  .heading-32 {
    font-size: 32px;
  }

  .container-40 {
    max-width: 100%;
  }

  .section-32 {
    overflow: hidden;
  }

  .paragraph-41 {
    font-size: 15px;
  }

  .footer-v3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-36-copy {
    max-width: 728px;
  }

  .hero-wrapper-copy {
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split-copy {
    align-items: center;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .hero-wrapper-copy {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .code-embed-3 {
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-166 {
    flex-flow: column;
    justify-content: center;
    align-self: center;
    align-items: center;
    margin-bottom: 60px;
    display: flex;
  }

  .image-104-copy {
    width: 200px;
  }

  .image-130, .image-131 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-heading-center-2024 {
    background-position: 50%;
  }

  .hero-container-bg-2024 {
    max-width: 728px;
  }

  .hero-heading-center-2024-v2, .hero-heading-center-2024-v3 {
    background-position: 50%;
  }

  .image-v2 {
    margin-bottom: 0;
  }

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

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

  .header-container {
    max-width: 728px;
  }

  .logo-img {
    margin-bottom: 0;
  }

  .page-padding.s0 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

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

  .logo_component-slider {
    grid-column-gap: 3rem;
  }

  .logo-slider-img {
    width: 174px;
  }

  .logo-image {
    height: 30px;
  }

  .btn-main.blue-btn.plan-btn {
    font-size: 20px;
    line-height: 20px;
  }

  .btn-main.mobile {
    display: block;
  }

  .btn-main.desktop {
    display: none;
  }

  .div-block-99-copy {
    margin-bottom: 40px;
  }

  .div-block-178 {
    justify-content: center;
    align-items: flex-start;
    font-size: 15px;
  }

  .header-container-5-reasons {
    max-width: 728px;
  }

  .link-block-10 {
    flex-flow: column;
  }

  .div-block-180 {
    text-align: center;
    flex-flow: column;
    padding-top: 10px;
  }

  .why-grid-item-v2, .why-grid-item-copy, .why-grid-item--v2, .why-grid-item-copy, .why-grid-item-copy, .why-grid-item-copy, .why-grid-item-v22, .why-grid-item-copy-copy {
    background-position: 50%;
    background-size: cover;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    padding-top: 80px;
  }

  .img-left {
    padding-left: 10px;
  }

  .img-right {
    padding-right: 10px;
  }

  .image-144 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .plan-flex-blocks-3 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .image-153 {
    display: block;
  }

  .text-block-39-copy {
    margin-top: 4px;
    margin-bottom: 4px;
    line-height: 20px;
  }

  .div-block-191-copy {
    margin-left: 20px;
    margin-right: 20px;
  }

  .image-106-copy {
    margin-top: 100px;
  }

  .div-block-202 {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .div-block-203 {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

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

  .button-9-copy.blue-btn.plan-btn {
    font-size: 20px;
    line-height: 20px;
  }

  .button-9-copy.mobile {
    display: block;
  }

  .button-9-copy.desktop {
    display: none;
  }

  .button-9-copy-copy.blue-btn.plan-btn {
    font-size: 20px;
    line-height: 20px;
  }

  .button-9-copy-copy.mobile {
    display: block;
  }

  .button-9-copy-copy.desktop {
    display: none;
  }
}

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

  h2 {
    font-size: 1.8em;
  }

  h3 {
    font-size: 1.55em;
  }

  h4 {
    font-size: 1.1em;
  }

  .hero-overlay {
    height: 80vh;
    padding: 20px;
  }

  .heading {
    font-size: 28px;
    line-height: 36px;
  }

  .sticky-nav {
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative;
  }

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

  .section-content {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-content.tree-section {
    min-height: 700px;
  }

  .section-content.in-the-box-section {
    padding-top: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .center.box-header {
    margin-top: 0;
  }

  .center.buzz-fb {
    margin-left: 10px;
    margin-right: 10px;
  }

  .center.white.blue-bg.headerbar {
    padding: 10px;
  }

  .center.review-slide {
    padding: 20px;
  }

  .center._2vp {
    padding-top: 100px;
  }

  .center.cyp25 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .center.block-snow-2025.padding-bottom {
    padding-left: 5px;
    padding-right: 5px;
  }

  .how-it-works-img {
    margin-top: 40px;
  }

  .sticky-offer {
    text-align: center;
    flex-direction: row;
  }

  .white.center.stay-at-home-text {
    font-size: 14px;
    line-height: 18px;
  }

  .white.sticky-offer-emoji {
    flex: none;
  }

  .white.sticky-offer-text {
    flex: 0 auto;
  }

  .white.hero-main-text {
    line-height: 50px;
  }

  .white.review-text {
    font-size: 16px;
    line-height: 16px;
  }

  .white.guarantee-text {
    padding-left: 0;
  }

  .white._5-reasons-header {
    font-size: 40px;
    line-height: 50px;
  }

  .white.underlinetext.ac {
    text-align: center;
  }

  .white.number {
    font-size: 23px;
  }

  .whats-in-the-box-block {
    padding-left: 10px;
    padding-right: 10px;
  }

  .surprise-puzzle {
    width: 100%;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer-flex-container {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
  }

  .footer-image {
    object-fit: contain;
  }

  .header-link {
    font-size: 14px;
    line-height: 18px;
  }

  .small-footer-block {
    flex-direction: column;
  }

  .section-container {
    padding-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .container-4 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-overlay-v2 {
    background-image: linear-gradient(to bottom, null, null), url('../images/background-v2.jpg');
    background-position: 0 0, 50% 100%;
    height: 70vh;
    padding: 20px;
  }

  .sticky-offer-v2 {
    flex-direction: column;
  }

  .nav-logo-v2 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .sticky-nav-v2 {
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative;
  }

  .tree-block {
    margin-right: 20px;
    padding: 20px;
  }

  .dontate-section.section-content {
    padding-left: 10px;
    padding-right: 10px;
  }

  .testimonial-block-v2.desktop-only {
    display: flex;
  }

  .how-it-works-img-v2 {
    margin-top: 40px;
  }

  .footer-image-v2 {
    object-fit: contain;
  }

  .hero-subheader-v2 {
    font-size: 16px;
  }

  .footer-v2 {
    padding: 40px 20px;
  }

  .section-content-hero {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-content-hero.tree-section {
    min-height: 700px;
  }

  .overlay {
    background-color: #0006;
  }

  .responsive-container, .container-8 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .nav-link-v2.cta {
    margin-left: 30px;
  }

  .nav-link-v2.bf-link, .nav-link-v2.gc-link {
    margin-left: 10px;
  }

  .sticky-offer-v3 {
    flex-direction: column;
  }

  .sticky-nav-v3 {
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative;
  }

  .button-secondary-v3.js-select-theme.js-track-preferences.cyp25-btn {
    background-color: var(--blue-2024);
    width: 100%;
    color: var(--color);
    border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .button-secondary-v3.js-select-theme.js-track-preferences.cyp25-btn:hover {
    box-shadow: none;
  }

  .nav-logo-v2-copy {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .footer-v2-copy {
    padding: 40px 20px;
  }

  .hero-overlay-v3 {
    height: 70vh;
    padding: 20px;
  }

  .image-22 {
    padding: 10px;
  }

  .how-it-works-img-copy, .how-it-works-img-v3 {
    margin-top: 40px;
  }

  .how-it-works-header {
    font-size: 27px;
  }

  .nav-logo-v3 {
    height: 50px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .nav-logo-link-v3 {
    height: auto;
  }

  .flex-img-right {
    flex-direction: column;
    padding-left: 10px;
    padding-right: 10px;
  }

  .expect-img {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .expect-img.padding {
    padding-right: 0;
  }

  .image-23 {
    padding: 10px;
  }

  .flex-img-left {
    flex-direction: column-reverse;
    padding-left: 10px;
    padding-right: 10px;
  }

  .js-btn-cyp.button-white {
    padding: 15px 35px;
  }

  .small-footer-block-v3 {
    flex-direction: column;
  }

  .cyp-header-v3 {
    padding-bottom: 5px;
  }

  .step.v2 {
    font-size: 14px;
  }

  .cyp-center-header {
    height: 50px;
  }

  .theme-header {
    font-size: 18px;
    line-height: 22px;
  }

  .step3.step-block-v4 {
    margin-top: 20px;
  }

  .back-block {
    height: 20px;
  }

  .back-block.cyp {
    height: 35px;
  }

  .theme-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    padding-left: 20px;
    padding-right: 20px;
  }

  .content {
    padding-left: 10px;
    padding-right: 10px;
  }

  .content.center.block-snow {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .content.center.block-snow-2025 {
    padding-top: 60px;
    padding-bottom: 30px;
  }

  .content.gc-content {
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-10 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .gift-card-block {
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .btn-primary.popup-btn {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 18px;
  }

  .bag-puzzle {
    padding-left: 20px;
    padding-right: 20px;
  }

  .button-hero-gift {
    margin-top: 20px;
  }

  .div-block-20 {
    flex-direction: column-reverse;
    align-items: center;
    display: flex;
  }

  .sticky-offer-gift-cards {
    text-align: center;
    flex-direction: column;
  }

  .bf-offer-2 {
    font-size: 22px;
  }

  .gift-card-faq, .container-11 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-overlay-v4 {
    height: 70vh;
    min-height: 600px;
    padding: 20px;
  }

  .content-cotnainer {
    padding-left: 10px;
    padding-right: 10px;
  }

  .article-author-block {
    flex-wrap: wrap;
  }

  .article-author-block.center {
    margin-bottom: 20px;
  }

  .article-author {
    margin-right: 4px;
    padding-right: 4px;
    font-size: 16px;
  }

  .article-author.article-author-end {
    display: block;
  }

  .lifemart-popup-content.center {
    margin-top: 40px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 20px;
  }

  .image-29 {
    height: 50px;
  }

  .lifemart-promo-header {
    margin-top: 10px;
    font-size: 28px;
    line-height: 30px;
  }

  .image-30 {
    height: 30px;
  }

  .button-hero-gift-v2 {
    margin-top: 20px;
  }

  .slick-v2 {
    display: block;
  }

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

  .section-content-v2 {
    padding-top: 20px;
    padding-bottom: 100px;
  }

  .section-content-v2.tree-section {
    min-height: 700px;
  }

  .whats-in-the-box-text-v2 {
    padding-left: 0;
  }

  .whats-in-the-box-block-v2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .slide-img {
    transform: scale(1.2);
  }

  .slide-quote-text {
    margin: 15px;
    font-size: 14px;
    line-height: 18px;
  }

  .slide-quote-container {
    min-height: 225px;
  }

  .div-block-23 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .surprise-puzzle-v2 {
    width: 100%;
    margin-top: 20px;
  }

  .nav-link-v3.cta {
    margin-left: 30px;
  }

  .nav-link-v3.bf-link, .nav-link-v3.gc-link {
    margin-left: 10px;
  }

  .nav-non-landing-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-container {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .sticky-nav-v4 {
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative;
  }

  .hero-main-heading {
    font-size: 30px;
    line-height: 34px;
  }

  .hero-heading-sub-header {
    font-size: 15px;
    line-height: 21px;
  }

  .how-it-works-block-v2 {
    min-height: auto;
    margin-bottom: 20px;
  }

  .how-it-works-img-container {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    padding: 10px;
  }

  .testimonial-block-v3 {
    margin: 5px;
    padding: 10px;
  }

  .note-block-v3.desktop-only {
    display: none;
  }

  .blue-bg.guarantee-bar {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-container {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .div-block-25 {
    text-align: center;
  }

  .cyp-block {
    align-items: stretch;
    min-height: auto;
    margin-top: 14px;
    margin-bottom: 0;
  }

  .button-white.js-select-level {
    padding: 15px 35px;
  }

  .cyp-description-v2 {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cyp-description-container.center {
    flex: 1;
    margin-top: -60px;
  }

  .cyp-description-container.center.gc {
    margin-top: 0;
  }

  .cyp-img-container.large {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    padding: 10px;
  }

  .cyp-img-container.large.yellow {
    flex: none;
  }

  .cyp-img-container.large.green {
    flex: none;
    height: 120px;
  }

  .cyp-img-container.large.white-border {
    border-color: var(--blue);
    margin-top: 7px;
    margin-left: 7px;
    position: absolute;
  }

  .theme-header-orig {
    font-size: 18px;
    line-height: 22px;
  }

  .cyp-level-img {
    width: 30px;
  }

  .plan-title {
    margin-top: 10px;
  }

  .nav-logo-v5 {
    height: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .nav-grid-v5 {
    text-align: center;
  }

  .hero-ctas {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .button-hero-gift-cta, .button-hero-join-cta {
    padding: 15px 30px;
  }

  .giveaway-header {
    color: #fff;
    text-transform: uppercase;
  }

  .cyp-img-container-space {
    border: 7px solid #fff;
    border-radius: 90px 90px 0 0;
    width: 134px;
    height: 67px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    inset: 0% 0% auto;
  }

  .cyp-img-container-icon {
    width: 134px;
    height: 134px;
    margin-top: -67px;
    position: relative;
  }

  .cyp-icon-container {
    width: 120px;
    height: 120px;
    margin-top: -60px;
  }

  .cyp-icon-space {
    border-width: 14px;
    border-bottom-style: none;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    width: 120px;
    height: 60px;
  }

  .cyp-icon {
    border: 7px solid var(--blue);
    width: 92px;
    height: 92px;
    padding: 10px;
    top: 14px;
    left: 14px;
  }

  .cyp-value {
    top: 21px;
    right: 13px;
  }

  .puzzle-piece {
    width: 75px;
    bottom: -43px;
  }

  .puzzle-piece.js-puzzle-piece {
    width: 120px;
    bottom: 0;
  }

  .puzzle-piece-popup-container {
    width: 90%;
  }

  .popup-close.js-puzzle-piece-popup-close {
    width: 30px;
    height: 30px;
  }

  .missing-piece-img.js-puzzle-piece-wrong-answer, .missing-piece-img.js-puzzle-piece-answer {
    min-width: 0;
  }

  .image-36 {
    width: 150px;
  }

  .hero-section {
    padding-top: 10px;
  }

  .nav-grid-v5-copy, .navgrid {
    text-align: center;
  }

  .logo {
    height: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .button-hero-puzzle {
    padding: 15px 30px;
  }

  .hero-text {
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    display: flex;
  }

  .hero-flex-container {
    text-align: center;
    flex-direction: column-reverse;
    align-items: center;
    padding-top: 0;
  }

  .hero-img {
    width: 90%;
    display: none;
  }

  .hero-small {
    display: none;
  }

  .hero-small-mobile {
    margin-top: 30px;
    display: block;
  }

  .hero-img-mobile {
    width: 90%;
    display: inline-block;
  }

  .collection-list-wrapper-2 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .container-13 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .wishlist-header {
    font-size: 42px;
    line-height: 48px;
  }

  .wishlist-flex {
    flex-direction: column-reverse;
    padding-left: 20px;
    padding-right: 20px;
  }

  .wishlist-flex.reverse {
    flex-direction: column;
  }

  .wishlist-works-img.right {
    width: 100%;
  }

  .wishlist-works-img.left {
    width: 100%;
    padding-left: 0;
  }

  .div-block-32, .div-block-32-reverse {
    padding-left: 0;
  }

  .hero {
    align-items: flex-start;
    height: 77vh;
    min-height: 77vh;
  }

  .hero-main-block {
    margin-top: 140px;
  }

  .light-blue.center.top-header {
    margin-top: 0;
  }

  .flex-50-container.full-width-container.objections-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .flex-50-img-left {
    padding-right: 10px;
  }

  .flex-50-img-left.desktop {
    display: none;
  }

  .flex-50-img-left.mobile {
    display: block;
  }

  .flex-50-text-right, .flex-50-img-right {
    padding-left: 10px;
  }

  .flex-50-text-left {
    padding-right: 10px;
  }

  .whats-in-the-bag {
    flex-direction: column;
    margin: 100px 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-43 {
    width: 100%;
    margin-top: 0;
    margin-bottom: -69px;
  }

  .whats-in-the-bag-text {
    width: 100%;
  }

  .works-block {
    padding: 100px 100px 20px;
  }

  .how-it-works-slanted {
    width: 50%;
    max-height: 350px;
    margin-top: 74px;
  }

  .how-it-works-icon-right {
    padding-left: 10px;
  }

  .how-it-works-icon-left {
    padding-left: 27px;
  }

  .works-shape {
    width: 400px;
  }

  .image-47 {
    height: 30px;
  }

  .div-block-33 {
    flex: 1;
  }

  .navbar-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .btn-nav {
    font-size: 14px;
    line-height: 20px;
  }

  .btn-nav.mobile {
    width: auto;
    padding: 5px 15px;
    display: flex;
  }

  .btn-nav.desktop {
    display: none;
  }

  .full-width-container.navbar-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .objections-container {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .better-img.bottom {
    margin-top: 0;
  }

  .rich-text-block.brand-rtb {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand-puzzle-img {
    width: 100%;
  }

  .image-48 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .breadcrumbs {
    padding-left: 10px;
  }

  .collection-item-3 {
    width: 100%;
  }

  .collection-list-4 {
    flex-direction: column;
  }

  .html-embed-5 {
    margin-top: 40px;
  }

  .puzzle-piece-group {
    height: 40px;
  }

  .sticky-banner {
    text-align: center;
    flex-direction: column;
    height: 60px;
  }

  .image-50 {
    margin-bottom: 20px;
  }

  .paragraph-7 {
    margin-top: 10px;
  }

  .text-block-16, .link-block-4 {
    margin-top: 20px;
  }

  .image-54 {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-v2 {
    background-image: linear-gradient(#0009, #0009), url('../images/bg-split-5a.jpg');
    background-position: 0 0, 50% 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, auto;
    background-attachment: scroll, fixed;
    align-items: flex-start;
    height: 77vh;
    min-height: 77vh;
  }

  .cyp-header-img.quote-1 {
    height: auto;
  }

  .cyp-quote-block {
    flex-direction: column;
    padding-left: 10px;
    padding-right: 10px;
  }

  .cyp-quote {
    margin: 10px 0;
  }

  .cyp-heading-v2.center {
    font-size: 1.5em;
  }

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

  .cyp-block-v2 {
    align-items: stretch;
    min-height: auto;
    margin-top: 14px;
    margin-bottom: 0;
  }

  .cyp-plan-column {
    padding-left: 0;
    padding-right: 0;
  }

  .back-block-v2 {
    height: 30px;
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .cyp-icon-2 {
    border: 7px solid #2ba1f5;
    width: 92px;
    height: 92px;
    padding: 10px;
    top: 14px;
    left: 14px;
  }

  .button-white-2.js-select-level {
    padding: 15px 35px;
  }

  .cyp-block-2 {
    align-items: stretch;
    min-height: auto;
    margin-top: 14px;
    margin-bottom: 0;
  }

  .cyp-headline {
    font-size: 30px;
  }

  .cyp-sub-heading.center {
    font-size: 13px;
  }

  .cyp-plan-select-button.green {
    margin-top: 10px;
  }

  .cyp-plan-select-button.blue.js-continue-someone-else {
    margin-top: 20px;
  }

  .step-container-v2 {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .loader {
    padding-top: 100px;
  }

  .div-block-41 {
    text-align: center;
    flex-direction: column;
    align-items: stretch;
  }

  .cyp-flash-sale-banner.js-flash-sale-banner {
    font-size: 14px;
  }

  .hero-single-container.bg-img {
    background-position: 50% 100%;
  }

  .hero-single-container.text {
    align-items: flex-start;
    height: 80%;
  }

  .hero-single-container.bg-img-right {
    background-position: 50% 100%;
  }

  .hero-reviews-text {
    font-size: 24px;
    line-height: 30px;
  }

  .img-stars {
    height: 41px;
  }

  .hero-full {
    flex-direction: column;
  }

  .hero-full-left, .hero-full-right {
    height: 100%;
  }

  .how-it-works-img-v4 {
    margin-top: 40px;
  }

  .surprise-puzzle-v3 {
    width: 100%;
  }

  .collection-list-6 {
    grid-template-columns: 1fr 1fr;
  }

  .container-17 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .js-btn-puzzler-plans.button-white, .js-btn-puzzler-pro-plans.button-white {
    padding: 15px 35px;
  }

  .cyp-block-v3 {
    align-items: stretch;
    min-height: auto;
    margin-top: 14px;
    margin-bottom: 0;
  }

  .mini-puzzle-banner-container {
    right: -8px;
  }

  .cyp-icon--v2, .cyp-icon-copy, .cyp-icon-v2, .cyp-icon-pic {
    border: 7px solid var(--blue);
    width: 92px;
    height: 92px;
    padding: 10px;
    top: 14px;
    left: 14px;
  }

  .div-block-51 {
    flex-direction: column;
    margin-left: 10px;
    margin-right: 10px;
  }

  .image-71 {
    width: 100%;
  }

  .text-block-21 {
    margin-bottom: 10px;
  }

  .image-72 {
    margin-left: 7px;
  }

  .js-btn-cyp-join.button-white {
    padding: 15px 35px;
  }

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

  .cyp-top-header {
    margin-top: 20px;
  }

  .plans-highlight {
    flex-direction: column;
    margin-left: 10px;
    margin-right: 10px;
  }

  .cyp-puzzle-plan-v2.center-plan {
    border-left-style: none;
    border-right-style: none;
  }

  .plan-group {
    flex-direction: column-reverse;
  }

  .plans-container {
    padding-left: 10px;
    padding-right: 10px;
  }

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

  .div-block-61 {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .image-76 {
    height: 19px;
  }

  .keen-slider__slide {
    width: 250px;
    height: 250px;
  }

  .save-pro {
    bottom: -29px;
    transform: rotate(-3deg);
  }

  .image-77 {
    height: 24px;
    display: none;
  }

  .image-78 {
    width: 140px;
    left: 8.222px;
  }

  .plan-group-v2 {
    flex-direction: column;
  }

  .cyp-col-cta-container {
    margin-left: 0;
    margin-right: 0;
  }

  .div-block-64 {
    padding-left: 0;
    padding-right: 0;
  }

  .container-19 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .free-mini-puzzle-gift-container {
    text-align: center;
    flex-direction: column-reverse;
    padding-left: 10px;
    padding-right: 10px;
  }

  .image-79 {
    margin-left: 0;
  }

  .div-block-65 {
    padding-left: 0;
    padding-right: 0;
  }

  .container-20 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-66 {
    width: 100%;
  }

  .image-81 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .image-82 {
    height: 25px;
  }

  .social-proof-family {
    padding-left: 10px;
    padding-right: 10px;
  }

  .smaller.center {
    font-size: 16px;
  }

  .smaller.gift-text {
    text-align: center;
    font-size: 16px;
  }

  .container-22 {
    padding-left: 0;
    padding-right: 0;
  }

  .cyp-popup-container.first {
    margin-left: 10px;
    margin-right: 10px;
    padding: 20px;
  }

  .div-block-70 {
    margin-top: 20px;
  }

  .columns-6 {
    display: block;
  }

  .image-86 {
    margin-left: 10px;
    margin-right: 10px;
  }

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

  .div-block-73 {
    margin: 10px;
    padding: 20px;
  }

  .red.bf-headline {
    font-size: 3.7em;
    line-height: 1em;
  }

  .red.bf-headline._2024 {
    font-size: 3.4em;
  }

  .red.bf-headline._2025 {
    margin-top: 0;
    font-size: 5em;
  }

  .bf-sub-heading {
    font-size: 1.55em;
    line-height: 30px;
  }

  .bf-sub-sub-heading._2025 {
    margin-bottom: 20px;
  }

  .html-embed-10 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .text-block-29 {
    font-size: 15px;
  }

  .div-block-81 {
    flex-direction: column-reverse;
  }

  .div-block-81.reversed {
    flex-direction: column;
  }

  .image-95 {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-83, .div-block-84 {
    padding-left: 20px;
  }

  .container-27 {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .paragraph-20 {
    text-align: center;
    margin-top: 20px;
    margin-left: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-29 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sticky-header-container {
    flex-direction: column;
  }

  .fd-offer {
    font-size: 22px;
  }

  .link-block-8 {
    margin-bottom: 20px;
  }

  .div-block-87 {
    flex-direction: column;
    align-items: center;
  }

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

  .heading-17 {
    font-size: 1.6em;
    line-height: 33px;
  }

  .div-block-92 {
    padding-bottom: 20px;
  }

  .div-block-98._2024 {
    padding: 10px;
  }

  .carousel-video-item {
    width: 180px;
    height: 180px;
  }

  .gc-testimonial-image {
    width: 60px;
  }

  .gc-testimonial-section {
    padding: 15px;
  }

  .div-block-104, .div-block-104._4puzz {
    text-align: center;
    flex-flow: column;
  }

  .container-30 {
    font-size: 12px;
    line-height: 12px;
  }

  .listacle-container.center.top {
    margin-top: 50px;
  }

  .listacle-column._2024 {
    padding-left: 0;
    padding-right: 0;
  }

  .image-104 {
    width: 150px;
  }

  .heading-21 {
    font-size: 1.75em;
    line-height: 32px;
  }

  .heading-21.gc {
    margin-top: 60px;
    margin-bottom: 40px;
  }

  .heading-22.center {
    font-size: 1.4em;
  }

  .image-106 {
    width: 200px;
    margin-top: 100px;
    margin-bottom: 10px;
  }

  .heading-23 {
    margin-bottom: 0;
    font-size: 1.5em;
    line-height: 1.6em;
  }

  .heading-24 {
    margin-top: 0;
    font-size: 1.2em;
    line-height: 1.6em;
  }

  .html-embed-17 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .puzzle-filter {
    z-index: 999999;
    background-color: #fff;
    padding: 10px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
  }

  .puzzle-filter.js-puzzle-filter {
    display: none;
    overflow: scroll;
  }

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

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

  .div-block-118 {
    margin-right: 20px;
  }

  .text-block-45, .text-block-46 {
    margin-top: 10px;
    margin-left: 0;
  }

  .div-block-104-copy {
    text-align: center;
    flex-direction: column;
  }

  .text-block-47 {
    margin-top: 10px;
    margin-left: 0;
  }

  .text-block-48 {
    margin-top: 2px;
    margin-bottom: 4px;
    margin-left: 0;
  }

  .div-block-104-copy2 {
    flex-direction: column;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .div-block-120 {
    margin: 4px 0;
  }

  .div-block-121 {
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .div-block-123 {
    width: 100%;
    height: 100%;
    padding: 19px;
  }

  .image-109 {
    height: 30px;
  }

  .div-block-104-copy3 {
    flex-direction: column;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .div-block-125, .div-block-126 {
    margin-top: 10px;
  }

  .collection-list-8 {
    grid-template-columns: 1fr;
  }

  .collection-list-wrapper-6 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .flex-block, .flex-block-2 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
  }

  .section-v2 {
    padding: 20px;
  }

  .flex-block-3 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
    justify-items: center;
  }

  ._4-puzzle-logo {
    width: 200px;
    margin-top: 60px;
    margin-bottom: 10px;
  }

  .div-block-139 {
    text-align: center;
    flex-flow: column;
  }

  .image-118 {
    display: none;
  }

  .flex-block-4 {
    flex-flow: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-119 {
    text-align: center;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 40px;
    display: block;
  }

  .container-33 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .button-9.blue-btn.plan-btn {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .button-9.blue-btn.header {
    padding: 8px 16px;
  }

  .button-9.login {
    padding: 6px 20px;
    font-size: 16px;
    line-height: 16px;
  }

  .why-grid-item {
    padding-top: 100px;
  }

  .section-23-copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .quote-grid-item._5-reasons {
    padding-left: 40px;
    padding-right: 40px;
  }

  .flex-block-5 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
  }

  .seen-in-grid-item {
    padding: 20px;
  }

  .div-block-145 {
    flex-flow: column;
  }

  .image-122 {
    width: 100%;
  }

  .container-34 {
    flex-flow: column;
  }

  .div-block-150 {
    width: 100%;
  }

  .pricing-pill-item {
    font-size: 20px;
  }

  .text-block-63, .text-block-63-copy {
    font-size: 11px;
  }

  .image-123 {
    margin-top: 0;
    padding-right: 0;
  }

  .quick-stack-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand-block {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .flex-block-6 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .div-block-156 {
    flex-flow: column;
  }

  .heading-30 {
    font-size: 1.8em;
  }

  .container-35 {
    flex-flow: column;
    align-items: center;
  }

  .image-127 {
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    width: 100%;
  }

  .div-block-159 {
    text-align: center;
    order: 1;
  }

  .div-block-160 {
    flex-flow: column;
    margin-left: 20px;
    margin-right: 20px;
  }

  .code-embed {
    overflow: hidden;
  }

  .text-block-65 {
    padding-right: 8px;
    font-size: 12px;
  }

  .smaller-mo {
    font-size: 13px;
  }

  .button-9-copy {
    text-align: center;
    font-size: 20px;
  }

  .hero-section-2024 {
    text-align: center;
    flex-flow: column;
  }

  .centered-heading.margin-bottom-32px {
    text-align: center;
    margin-top: 60px;
  }

  .centered-heading.margin-bottom-32px.smaller {
    margin-top: 0;
    padding-top: 80px;
  }

  .centered-heading.margin-bottom-32px.smaller.min-top {
    padding-top: 0;
  }

  .hero-split {
    padding-top: 40px;
  }

  .hero-split.padding {
    margin-top: -20px;
  }

  .hero-heading-center {
    padding: 20px 15px 40px;
  }

  .image {
    width: 125px;
  }

  .shadow-two {
    padding-right: 0;
  }

  .hero-wrapper.center.vertical {
    margin-bottom: 0;
  }

  .columns-10.joinnumboxes {
    width: 98%;
  }

  .column-9 {
    background-color: #f7d559;
    background-image: none;
    background-size: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .container-37 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .heading-31 {
    font-size: 32px;
    line-height: 38px;
  }

  .column-10 {
    background-color: #f7d559;
    background-image: none;
    background-size: auto;
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .column-11 {
    background-color: #f7d559;
    background-image: none;
    background-size: auto;
    background-attachment: scroll;
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .button-11 {
    margin-top: 30px;
  }

  .button-11.buttonjoin {
    margin-top: 10px;
  }

  .button-12 {
    margin-top: 30px;
  }

  .container-6 {
    width: 96%;
    margin-bottom: 0;
  }

  .button-13 {
    margin-top: 30px;
  }

  .container-42 {
    width: 96%;
    margin-bottom: 0;
  }

  .button-14, .button-15 {
    margin-top: 30px;
  }

  .paragraph-41 {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-v3 {
    padding: 40px 20px;
  }

  .hero-wrapper-copy {
    flex-flow: row;
  }

  .heading-22-copy.center {
    font-size: 1.4em;
  }

  .image-123-copy {
    margin-top: 10px;
    margin-bottom: -20px;
    padding-right: 0;
  }

  .div-block-167 {
    margin-top: 10px;
    display: flex;
  }

  .image-104-copy {
    width: 150px;
  }

  .quick-stack-4 {
    padding: 10px;
  }

  .div-block-104-copy-copy {
    text-align: center;
    flex-direction: column;
  }

  .text-block-45-copy {
    margin-top: 10px;
    margin-left: 0;
  }

  .hero-heading-center-2024 {
    height: 50vh;
    padding: 20px 15px 40px;
  }

  .hero-container-bg-2024 {
    justify-content: center;
    align-items: center;
    height: 100%;
    display: flex;
  }

  .hero-heading-center-2024-v2 {
    background-position: 50%;
    background-size: cover;
    height: 50vh;
    padding: 20px 15px 40px;
  }

  .hero-heading-center-2024-v3 {
    background-position: 50%;
    background-size: cover;
    height: 70vh;
    padding: 20px 15px 40px;
  }

  .image-v2, .logo-img {
    width: 125px;
  }

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

  .logo_component-slider {
    grid-row-gap: 2rem;
    flex-direction: row;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
  }

  .logo-slider-img {
    width: 125px;
  }

  .logo-container-2 {
    min-width: 150%;
  }

  .container-48 {
    padding-left: 10px;
    padding-right: 20px;
  }

  .image-133 {
    width: 150px;
  }

  .btn-main.blue-btn.plan-btn {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .btn-main.login {
    padding: 6px 20px;
    font-size: 16px;
    line-height: 16px;
  }

  .btn-main.btn-responsive {
    padding: 8px 20px;
  }

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

  .div-block-176 {
    flex-flow: column;
    align-items: center;
  }

  .image-134 {
    max-width: 100%;
    margin-bottom: 40px;
    display: block;
  }

  ._5-reasons-section.bg-gray {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-50 {
    padding-left: 0;
  }

  ._5-reasons-div-left {
    flex-flow: column;
  }

  .div-block-177 {
    padding-right: 20px;
  }

  ._5-reasons-div-right {
    flex-flow: column;
  }

  ._5-reasons-feature-left {
    order: 1;
    padding-left: 20px;
  }

  .image-135 {
    max-width: 100%;
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-136 {
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  ._5-reasons-quote, .bg-blue-2024.marquee {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-36 {
    font-size: 34px;
    line-height: 40px;
  }

  .column-14 {
    padding-left: 0;
    padding-right: 0;
  }

  .flex-block-5-copy {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    padding-left: 0;
    padding-right: 0;
  }

  .link-block-10 {
    text-align: center;
    flex-flow: column;
    padding: 10px;
  }

  .text-block-86 {
    font-size: 14px;
    line-height: 14px;
  }

  .image-138 {
    width: 150px;
  }

  .text-block-88 {
    padding-left: 20px;
  }

  .why-grid-item-v2, .why-grid-item-copy, .why-grid-item--v2, .why-grid-item-copy, .why-grid-item-copy, .why-grid-item-copy, .why-grid-item-v22, .why-grid-item-copy-copy {
    padding-top: 100px;
  }

  .image-139 {
    width: 150px;
  }

  .flex-block-7 {
    text-align: center;
    flex-flow: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-51 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-131-copy {
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }

  .container-51-copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .flex-block-8 {
    flex-flow: column;
  }

  .puzzleimg {
    max-width: 100%;
  }

  .plan-div {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-182 {
    flex-flow: column;
    padding-top: 20px;
  }

  .step4.step-block-v4 {
    margin-top: 20px;
  }

  .flex-block-10 {
    flex-flow: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .cyp25-plan-block {
    margin-bottom: 10px;
  }

  .cyp25-btn.js-select-level, .button-white-copy.js-select-level {
    padding: 15px 35px;
  }

  .columns-13 {
    margin-top: 30px;
  }

  .cyp25-negative-img {
    width: 50px;
    top: 30%;
  }

  .cyp25-negative {
    display: none;
  }

  .grid-5 {
    grid-template-columns: 1fr 1fr;
    padding-left: 10px;
    padding-right: 10px;
  }

  .cyp25-plan-block-plan {
    margin-bottom: 20px;
  }

  .div-block-186 {
    justify-content: flex-start;
    align-items: center;
  }

  .paragraph-44 {
    margin-bottom: 40px;
  }

  .div-block-188 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .container-52 {
    padding-top: 30px;
  }

  .column-15 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-99 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .div-block-192 {
    width: 92px;
  }

  .blog-headline {
    padding-left: 10px;
    padding-right: 10px;
  }

  .flex-block-11 {
    text-align: center;
    flex-flow: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-106-copy {
    width: 200px;
    margin-top: 100px;
    margin-bottom: 10px;
  }

  .plan-popup-container {
    padding: 10px;
  }

  .text-span-60 {
    font-size: 22px;
  }

  .text-block-108 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .popup-h1 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.3em;
  }

  .popup-text {
    padding: 10px;
    font-size: 14px;
  }

  .image-158 {
    height: 20px;
  }

  .button-9-copy.blue-btn.plan-btn {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .button-9-copy.blue-btn.header {
    padding: 8px 16px;
  }

  .button-9-copy.login {
    padding: 6px 20px;
    font-size: 16px;
    line-height: 16px;
  }

  .flash-sale {
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .flash-sale-block {
    padding-left: 60px;
    padding-right: 60px;
  }

  .button-9-copy-copy.blue-btn.plan-btn {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .button-9-copy-copy.blue-btn.header {
    padding: 8px 16px;
  }

  .button-9-copy-copy.login {
    padding: 6px 20px;
    font-size: 16px;
    line-height: 16px;
  }
}

@media screen and (max-width: 479px) {
  .centered-container {
    text-align: left;
  }

  .sticky-nav {
    padding: 0;
  }

  .nav-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: 52px;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
  }

  .nav-logo-link.w--current {
    height: 50px;
  }

  .nav-logo.single-logo {
    display: none;
  }

  .nav-logo.long-logo {
    display: inline;
  }

  .nav-link {
    border-top: 1px solid #c4c4c4;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .social-img {
    width: 80px;
  }

  .section-content.tree-section {
    min-height: 100%;
  }

  .center.bag-description {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .center.special-fit {
    font-size: 18px;
    line-height: 26px;
  }

  .center.launch-header {
    font-size: 24px;
    line-height: 30px;
  }

  .center.launch {
    padding-left: 10px;
    padding-right: 10px;
  }

  .center._2vp {
    padding-top: 120px;
  }

  .center.no-margin.popup-header-subconfirmation {
    font-size: 1.2em;
  }

  .how-it-works-img {
    height: 120px;
  }

  .white.center.stay-at-home-text {
    font-size: 12px;
  }

  .white.hero-main-text {
    font-size: 37px;
  }

  .footer {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-flex-container {
    flex-direction: column;
  }

  .footer-logo-link {
    height: 60px;
  }

  .footer-heading {
    margin-top: 20px;
  }

  .header-link {
    font-size: 12px;
  }

  .container-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .image-6 {
    width: auto;
    min-width: 100%;
  }

  .primary-color {
    font-size: 25px;
    line-height: 30px;
  }

  .heading-h1-v2.copywrite {
    text-align: center;
  }

  .primary-color-v2 {
    line-height: 30px;
  }

  .nav-logo-v2 {
    height: 50px;
  }

  .nav-logo-v2.single-logo {
    display: none;
  }

  .nav-logo-v2.long-logo {
    display: inline;
  }

  .sticky-nav-v2 {
    padding: 0;
  }

  .how-it-works-img-v2 {
    height: 120px;
  }

  .footer-image-v2 {
    margin-bottom: 40px;
  }

  .footer-v2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .most-popular-badge {
    height: 75px;
  }

  .section-content-hero.tree-section {
    min-height: 100%;
  }

  .sub-hero-img {
    width: auto;
    height: 100%;
  }

  .nav-link-v2.gc-link {
    text-align: center;
    font-size: 10px;
  }

  .sticky-nav-v3 {
    padding: 0;
  }

  .primary-color-v2-copy {
    line-height: 30px;
  }

  .nav-logo-v2-copy {
    height: 50px;
  }

  .nav-logo-v2-copy.single-logo {
    display: none;
  }

  .nav-logo-v2-copy.long-logo {
    display: inline;
  }

  .footer-v2-copy {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-h1-v3.copywrite {
    text-align: center;
  }

  .how-it-works-img-copy, .how-it-works-img-v3 {
    height: 120px;
  }

  .nav-logo-v3 {
    height: 50px;
  }

  .nav-logo-v3.single-logo {
    display: none;
  }

  .nav-logo-v3.long-logo {
    display: inline;
  }

  .nav-logo-link-v3 {
    height: 40px;
  }

  .nav-logo-link-v3.w--current {
    height: 50px;
  }

  .most-popular-badge-v2 {
    height: 75px;
  }

  .cyp-logo-img {
    height: 30px;
  }

  .level-block {
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
  }

  .step-block.step2.v2 {
    display: none;
  }

  .button-hero-gift {
    text-align: center;
    margin-top: 20px;
  }

  .div-block-20 {
    flex-direction: column-reverse;
    align-items: center;
    display: flex;
  }

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

  .article-highlight-text {
    padding-top: 20px;
    padding-left: 0;
  }

  .button-hero-gift-v2 {
    text-align: center;
    margin-top: 20px;
  }

  .section-content-v2.tree-section {
    min-height: 100%;
  }

  .nav-link-v3.gc-link {
    text-align: center;
    font-size: 10px;
  }

  .sticky-nav-v4 {
    padding: 0;
  }

  .hero-main-heading.copywrite {
    text-align: center;
  }

  .hero-block {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-centered-container {
    text-align: left;
  }

  .how-it-works-img-offset {
    height: 120px;
  }

  .blue-bg.guarantee-bar {
    padding: 40px 20px;
  }

  .button-white.js-select-level.js-track-skill-level.smaller-text {
    margin-bottom: 25px;
  }

  .cyp-description-container.center {
    margin-top: 0;
  }

  .nav-logo-v5.single-logo {
    display: none;
  }

  .nav-logo-v5.long-logo {
    display: inline;
  }

  .nav-grid-v5 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: 52px;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
  }

  .button-hero-gift-cta {
    text-align: center;
    padding: 10px 25px;
    font-size: 20px;
  }

  .button-hero-join-cta {
    padding: 10px 25px;
    font-size: 20px;
  }

  .cyp-icon-container {
    width: 110px;
    height: 110px;
    margin-top: -36px;
    display: block;
    position: absolute;
    inset: 0% auto auto 0%;
  }

  .cyp-icon-space {
    width: 100px;
    height: 50px;
  }

  .cyp-icon {
    width: 72px;
    height: 72px;
  }

  .reviews-block {
    margin-left: 5px;
    margin-right: 5px;
  }

  .missing-piece-img.js-puzzle-piece-wrong-answer, .missing-piece-img.js-puzzle-piece-answer {
    min-width: 0;
  }

  .nav-grid-v5-copy, .navgrid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: 52px;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
  }

  .logo.single-logo {
    display: none;
  }

  .logo.long-logo {
    display: inline;
  }

  .button-hero-puzzle {
    padding: 10px 25px;
    font-size: 20px;
  }

  .hero-img-mobile {
    width: 87%;
  }

  .image-42 {
    height: 28px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .wishlist-header {
    margin-top: 40px;
  }

  .hero-main-block {
    margin-top: 100px;
  }

  .works-block {
    padding-left: 60px;
    padding-right: 60px;
  }

  .image-47 {
    height: 25px;
  }

  .better-img {
    padding: 0;
  }

  .image-48 {
    width: 125px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .puzzle-piece-group {
    height: 32px;
  }

  .sticky-banner {
    text-align: center;
    flex-direction: column;
    height: 60px;
    font-size: 15px;
  }

  .btn-sticky-header {
    margin-top: 4px;
    margin-left: 0;
  }

  .cyp-heading-v2.copywrite {
    text-align: center;
  }

  .cyp-icon-2 {
    width: 72px;
    height: 72px;
  }

  .cyp-headline {
    font-size: 22px;
    line-height: 30px;
  }

  .image-59 {
    max-height: 45vh;
  }

  .theme-container {
    height: 325px;
  }

  .cyp-flash-sale-banner.js-flash-sale-banner {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 12px;
  }

  .image-63 {
    height: 26px;
    top: 12px;
  }

  .div-block-44 {
    font-size: 11px;
  }

  .hero-reviews-text {
    font-size: 16px;
    line-height: 20px;
  }

  .img-stars {
    height: 22px;
  }

  .single-menu {
    align-items: center;
  }

  .image-66 {
    height: 100%;
    max-height: 25px;
  }

  .how-it-works-img-v4 {
    height: 120px;
  }

  .collection-item-4 {
    height: 360px;
  }

  .banner {
    flex-direction: column;
    height: 100%;
    min-height: 60px;
    font-size: 13px;
  }

  .step-block-copy.step2.v2 {
    display: none;
  }

  .mini-puzzle-banner-container {
    bottom: -66px;
  }

  .cyp-icon--v2, .cyp-icon-copy, .cyp-icon-v2, .cyp-icon-pic {
    width: 72px;
    height: 72px;
  }

  .image-72 {
    margin-left: 3px;
  }

  .image-73 {
    margin-left: -2px;
  }

  .div-block-62 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .save-pro {
    bottom: -30px;
    right: 1px;
    transform: rotate(-3deg);
  }

  .image-77 {
    transform: translate(52px)rotateX(-180deg)rotateY(0)rotateZ(0);
  }

  .image-78 {
    width: 90px;
    left: -5.778px;
  }

  .div-block-73 {
    font-size: 14px;
    overflow: auto;
  }

  .red.bf-headline {
    line-height: 1.1em;
  }

  .image-98 {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .image-104 {
    width: 100px;
  }

  .image-106 {
    margin-top: 140px;
  }

  .heading-24 {
    font-size: 1.6em;
  }

  .div-block-134 {
    flex-flow: column;
  }

  .image-115 {
    width: 75px;
  }

  .paragraph-31 {
    font-size: 15px;
    line-height: 18px;
  }

  .div-block-139 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-119 {
    padding-top: 20px;
  }

  .heading-25 {
    font-size: 1.6em;
  }

  .button-9.blue-btn.plan-btn {
    margin-left: 3px;
    margin-right: 3px;
    padding: 6px 15px;
    font-size: 16px;
    line-height: 16px;
  }

  .brand-block {
    width: 100%;
  }

  .flex-block-6 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .hero-section-2024 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .centered-heading {
    margin-bottom: 24px;
  }

  .centered-heading.margin-bottom-32px {
    text-align: center;
    text-align: center;
    font-size: 30px;
    line-height: 35px;
  }

  .margin-bottom-24px.herodesc2 {
    font-size: 15px;
  }

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

  .hero-split.padding {
    margin-top: -20px;
  }

  .container-36 {
    max-width: none;
  }

  .columns-10 {
    margin-bottom: 0;
  }

  .column-9 {
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .heading-31 {
    font-size: 32px;
    line-height: 38px;
  }

  .column-10 {
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .column-11 {
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .image-129 {
    width: 100%;
    max-width: 53px;
  }

  .heading-33, .heading-34 {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 32px;
    line-height: 38px;
    display: block;
  }

  .paragraph-40 {
    font-size: 11px;
  }

  .paragraph-41 {
    font-size: 14px;
  }

  .footer-v3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-36-copy {
    max-width: none;
  }

  .hero-split-copy {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .image-104-copy {
    width: 100px;
  }

  .hero-heading-center-2024 {
    background-position: 50%;
  }

  .hero-container-bg-2024 {
    max-width: none;
  }

  .hero-heading-center-2024-v2, .hero-heading-center-2024-v3 {
    background-position: 50%;
  }

  .header-container {
    max-width: none;
  }

  .page-padding.s0 {
    margin-bottom: 0;
    padding-top: 1em;
    padding-bottom: 1em;
  }

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

  .padding-vertical.padding-xxlarge {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .logo_component-slider {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    overflow: hidden;
  }

  .logo-slider-img {
    width: 100px;
  }

  .carousel-container-2 {
    border-radius: 0;
  }

  .logo-container-2 {
    min-width: 300%;
  }

  .logo-image {
    height: 25px;
  }

  .btn-main.blue-btn.plan-btn {
    margin-left: 3px;
    margin-right: 3px;
    padding: 6px 15px;
    font-size: 16px;
    line-height: 16px;
  }

  .btn-main.btn-responsive {
    font-size: 18px;
    line-height: 18px;
  }

  .header-container-5-reasons {
    max-width: none;
  }

  .bonus-banner {
    z-index: 9999;
  }

  .image-106-copy {
    margin-top: 140px;
  }

  .button-9-copy.blue-btn.plan-btn {
    margin-left: 3px;
    margin-right: 3px;
    padding: 6px 15px;
    font-size: 16px;
    line-height: 16px;
  }

  .flash-sale {
    margin-top: 40px;
  }

  .flash-sale-block {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 18px;
  }

  .text-block-112 {
    font-size: 11px;
  }

  .text-block-113 {
    font-size: 14px;
  }

  .heading-38 {
    font-size: 46px;
  }

  .text-block-114 {
    border-width: 3px;
  }

  .text-block-115 {
    font-size: 14px;
  }

  .text-block-116 {
    font-size: 17px;
  }

  .button-9-copy-copy.blue-btn.plan-btn {
    margin-left: 3px;
    margin-right: 3px;
    padding: 6px 15px;
    font-size: 16px;
    line-height: 16px;
  }
}

#w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-ff0dd5bf, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-12153eb8, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-5f7d085b, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-757d204d, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-e6f4eadd, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-b2d432d1 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-e3519ed9-4806-9892-4bf3-d13df7c9a1e8-9709b2f1, #w-node-f7047100-3887-cd96-9bda-91fc07093886-9709b2f1, #w-node-_92779562-0d41-d41d-9009-1d26e344ac80-9709b2f1, #w-node-_402fd9cc-a522-1a68-1336-a633fb7980a8-9709b2f1, #w-node-_54b0b661-c983-5780-8add-e743546d5cf8-9709b2f1, #w-node-_614619d4-bc1a-d770-61a4-07ca3c8dc812-9709b2f1, #w-node-_9a53c00e-7ad6-3410-e5ca-af85923b4d08-9709b2f1, #w-node-_07202fc0-6ba8-d5a2-1c16-fd159db560d1-9709b2f1, #w-node-_3dc1b774-7e1b-9be9-b391-067f13be15c9-9709b2f1, #w-node-ceb2bbf4-7f2e-a876-a296-269ace481812-9709b2f1, #w-node-_6de1b880-7439-78b8-f184-6b8d3f93df70-9709b2f1, #w-node-_3bb39cc2-dfe0-6e0c-7446-d4701b33a133-9709b2f1, #w-node-_1c15cf81-2db2-f4d0-6cd0-f7e7f36d1c3a-9709b2f1, #w-node-_111e9c43-68fb-8861-fd08-063e4cba6f4b-9709b2f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ac01920b-922a-89a9-b2e6-5d5325b6a09a-9709b2f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e5-9709b2f1, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e8-9709b2f1, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e9-9709b2f1, #w-node-_9fac1bab-cd2d-7b46-dcba-16f766a1cafa-6ca08f1c, #w-node-_9fac1bab-cd2d-7b46-dcba-16f766a1cafd-6ca08f1c, #w-node-_9fac1bab-cd2d-7b46-dcba-16f766a1cafe-6ca08f1c, #w-node-_9fac1bab-cd2d-7b46-dcba-16f766a1cb06-6ca08f1c, #w-node-_9fac1bab-cd2d-7b46-dcba-16f766a1cb09-6ca08f1c, #w-node-_9fac1bab-cd2d-7b46-dcba-16f766a1cb0a-6ca08f1c, #w-node-_9fac1bab-cd2d-7b46-dcba-16f766a1cb15-6ca08f1c, #w-node-_9fac1bab-cd2d-7b46-dcba-16f766a1cb18-6ca08f1c, #w-node-_9fac1bab-cd2d-7b46-dcba-16f766a1cb19-6ca08f1c, #w-node-_9fac1bab-cd2d-7b46-dcba-16f766a1cb24-6ca08f1c, #w-node-_9fac1bab-cd2d-7b46-dcba-16f766a1cb27-6ca08f1c, #w-node-_9fac1bab-cd2d-7b46-dcba-16f766a1cb28-6ca08f1c, #w-node-_9fac1bab-cd2d-7b46-dcba-16f766a1cb30-6ca08f1c, #w-node-_9fac1bab-cd2d-7b46-dcba-16f766a1cb33-6ca08f1c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9fac1bab-cd2d-7b46-dcba-16f766a1cb34-6ca08f1c {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-f8f8b53a, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-f8f8b53a, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-f8f8b53a, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-f8f8b53a, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-f8f8b53a, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-f8f8b53a, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-f8f8b53a, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-f8f8b53a, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-f8f8b53a, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-f8f8b53a, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-f8f8b53a, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-f8f8b53a, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-f8f8b53a, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-f8f8b53a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-f8f8b53a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e5-f8f8b53a, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e9-f8f8b53a, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-1b93ed3b, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-1b93ed3b, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-1b93ed3b, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-1b93ed3b, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-1b93ed3b, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-1b93ed3b, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-1b93ed3b, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-1b93ed3b, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-1b93ed3b, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-1b93ed3b, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-1b93ed3b, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-1b93ed3b, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-1b93ed3b, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-1b93ed3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-1b93ed3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e5-1b93ed3b, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e9-1b93ed3b, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-54da7b30, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-54da7b30, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-54da7b30, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-54da7b30, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-54da7b30, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-54da7b30, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-54da7b30, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-54da7b30, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-54da7b30, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-54da7b30, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-54da7b30, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-54da7b30, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-54da7b30, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-54da7b30 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-54da7b30 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e5-54da7b30, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e9-54da7b30, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-779a792f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-779a792f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-779a792f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-779a792f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-779a792f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-779a792f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-779a792f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-779a792f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-779a792f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-779a792f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-779a792f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-779a792f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-779a792f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-779a792f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-779a792f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e5-779a792f, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e9-779a792f, #w-node-e3519ed9-4806-9892-4bf3-d13df7c9a1e8-f551c69c, #w-node-f7047100-3887-cd96-9bda-91fc07093886-f551c69c, #w-node-_92779562-0d41-d41d-9009-1d26e344ac80-f551c69c, #w-node-_402fd9cc-a522-1a68-1336-a633fb7980a8-f551c69c, #w-node-_54b0b661-c983-5780-8add-e743546d5cf8-f551c69c, #w-node-_614619d4-bc1a-d770-61a4-07ca3c8dc812-f551c69c, #w-node-_9a53c00e-7ad6-3410-e5ca-af85923b4d08-f551c69c, #w-node-_07202fc0-6ba8-d5a2-1c16-fd159db560d1-f551c69c, #w-node-_3dc1b774-7e1b-9be9-b391-067f13be15c9-f551c69c, #w-node-ceb2bbf4-7f2e-a876-a296-269ace481812-f551c69c, #w-node-_6de1b880-7439-78b8-f184-6b8d3f93df70-f551c69c, #w-node-_3bb39cc2-dfe0-6e0c-7446-d4701b33a133-f551c69c, #w-node-_1c15cf81-2db2-f4d0-6cd0-f7e7f36d1c3a-f551c69c, #w-node-_111e9c43-68fb-8861-fd08-063e4cba6f4b-f551c69c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ac01920b-922a-89a9-b2e6-5d5325b6a09a-f551c69c {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e5-f551c69c, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e8-f551c69c, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e9-f551c69c, #w-node-e3519ed9-4806-9892-4bf3-d13df7c9a1e8-c894b0af, #w-node-_92779562-0d41-d41d-9009-1d26e344ac80-c894b0af, #w-node-_402fd9cc-a522-1a68-1336-a633fb7980a8-c894b0af, #w-node-_614619d4-bc1a-d770-61a4-07ca3c8dc812-c894b0af, #w-node-_9a53c00e-7ad6-3410-e5ca-af85923b4d08-c894b0af, #w-node-_07202fc0-6ba8-d5a2-1c16-fd159db560d1-c894b0af, #w-node-_3dc1b774-7e1b-9be9-b391-067f13be15c9-c894b0af, #w-node-ceb2bbf4-7f2e-a876-a296-269ace481812-c894b0af, #w-node-_6de1b880-7439-78b8-f184-6b8d3f93df70-c894b0af, #w-node-_3bb39cc2-dfe0-6e0c-7446-d4701b33a133-c894b0af, #w-node-_1c15cf81-2db2-f4d0-6cd0-f7e7f36d1c3a-c894b0af {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ac01920b-922a-89a9-b2e6-5d5325b6a09a-c894b0af {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e5-c894b0af, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e8-c894b0af, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e9-c894b0af, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-71dfc68d, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-71dfc68d, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-71dfc68d, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-71dfc68d, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-71dfc68d, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-71dfc68d, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-71dfc68d, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-71dfc68d, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-71dfc68d, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-71dfc68d, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-71dfc68d, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-71dfc68d, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-71dfc68d, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-71dfc68d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-71dfc68d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e5-71dfc68d, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e9-71dfc68d, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-7227f942, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-7227f942, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-7227f942, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-7227f942, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-7227f942, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-7227f942, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-7227f942, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-7227f942, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-7227f942, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-7227f942, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-7227f942, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-7227f942, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-7227f942, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-7227f942 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-7227f942 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e5-7227f942, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e9-7227f942, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-025cbe74, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-025cbe74, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-025cbe74, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-025cbe74, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-025cbe74, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-025cbe74, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-025cbe74, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-025cbe74, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-025cbe74, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-025cbe74, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-025cbe74, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-025cbe74, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-025cbe74, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-025cbe74 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-025cbe74 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e5-025cbe74, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e9-025cbe74, #w-node-e3519ed9-4806-9892-4bf3-d13df7c9a1e8-49c8de4e, #w-node-f7047100-3887-cd96-9bda-91fc07093886-49c8de4e, #w-node-_92779562-0d41-d41d-9009-1d26e344ac80-49c8de4e, #w-node-_402fd9cc-a522-1a68-1336-a633fb7980a8-49c8de4e, #w-node-_54b0b661-c983-5780-8add-e743546d5cf8-49c8de4e, #w-node-_614619d4-bc1a-d770-61a4-07ca3c8dc812-49c8de4e, #w-node-_9a53c00e-7ad6-3410-e5ca-af85923b4d08-49c8de4e, #w-node-_07202fc0-6ba8-d5a2-1c16-fd159db560d1-49c8de4e, #w-node-_3dc1b774-7e1b-9be9-b391-067f13be15c9-49c8de4e, #w-node-ceb2bbf4-7f2e-a876-a296-269ace481812-49c8de4e, #w-node-_6de1b880-7439-78b8-f184-6b8d3f93df70-49c8de4e, #w-node-_3bb39cc2-dfe0-6e0c-7446-d4701b33a133-49c8de4e, #w-node-_1c15cf81-2db2-f4d0-6cd0-f7e7f36d1c3a-49c8de4e, #w-node-_111e9c43-68fb-8861-fd08-063e4cba6f4b-49c8de4e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ac01920b-922a-89a9-b2e6-5d5325b6a09a-49c8de4e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e5-49c8de4e, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e8-49c8de4e, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e9-49c8de4e, #w-node-e3519ed9-4806-9892-4bf3-d13df7c9a1e8-3a17944e, #w-node-f7047100-3887-cd96-9bda-91fc07093886-3a17944e, #w-node-_92779562-0d41-d41d-9009-1d26e344ac80-3a17944e, #w-node-_402fd9cc-a522-1a68-1336-a633fb7980a8-3a17944e, #w-node-_54b0b661-c983-5780-8add-e743546d5cf8-3a17944e, #w-node-_614619d4-bc1a-d770-61a4-07ca3c8dc812-3a17944e, #w-node-_9a53c00e-7ad6-3410-e5ca-af85923b4d08-3a17944e, #w-node-_07202fc0-6ba8-d5a2-1c16-fd159db560d1-3a17944e, #w-node-_3dc1b774-7e1b-9be9-b391-067f13be15c9-3a17944e, #w-node-ceb2bbf4-7f2e-a876-a296-269ace481812-3a17944e, #w-node-_6de1b880-7439-78b8-f184-6b8d3f93df70-3a17944e, #w-node-_3bb39cc2-dfe0-6e0c-7446-d4701b33a133-3a17944e, #w-node-_1c15cf81-2db2-f4d0-6cd0-f7e7f36d1c3a-3a17944e, #w-node-_111e9c43-68fb-8861-fd08-063e4cba6f4b-3a17944e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ac01920b-922a-89a9-b2e6-5d5325b6a09a-3a17944e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e5-3a17944e, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e8-3a17944e, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e9-3a17944e, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-9f942bfb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-9f942bfb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-9f942bfb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-9f942bfb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-9f942bfb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-9f942bfb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-9f942bfb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-9f942bfb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-9f942bfb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-9f942bfb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-9f942bfb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-9f942bfb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-9f942bfb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-9f942bfb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-9f942bfb {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e5-9f942bfb, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e9-9f942bfb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-06915a38, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-06915a38, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-06915a38, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-06915a38, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-06915a38, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-06915a38, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-06915a38, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-06915a38, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-06915a38, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-06915a38, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-06915a38, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-06915a38, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-06915a38, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-06915a38 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-06915a38 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e5-06915a38, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e9-06915a38, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-0c058788, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-0c058788, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-0c058788, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-0c058788, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-0c058788, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-0c058788, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-0c058788, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-0c058788, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-0c058788, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-0c058788, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-0c058788, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-0c058788, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-0c058788, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-0c058788 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-0c058788 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e5-0c058788, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e9-0c058788, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-ba5778a2, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-ba5778a2, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-ba5778a2, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-ba5778a2, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-ba5778a2, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-ba5778a2, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-ba5778a2, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-ba5778a2, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-ba5778a2, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-ba5778a2, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-ba5778a2, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-ba5778a2, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-ba5778a2, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-ba5778a2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-ba5778a2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e5-ba5778a2, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e9-ba5778a2, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-bd06a1e6, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-bd06a1e6, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-bd06a1e6, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-bd06a1e6, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-bd06a1e6, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-bd06a1e6, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-bd06a1e6, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-bd06a1e6, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-bd06a1e6, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-bd06a1e6, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-bd06a1e6, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-bd06a1e6, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-bd06a1e6, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-bd06a1e6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-bd06a1e6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d17-bd06a1e6, #w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d1a-bd06a1e6, #w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d1b-bd06a1e6, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-a97f1161, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-a97f1161, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-a97f1161, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-a97f1161, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-a97f1161, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-a97f1161, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-a97f1161, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-a97f1161, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-a97f1161, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-a97f1161, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-a97f1161, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-a97f1161, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-a97f1161, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-a97f1161 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-a97f1161 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e5-a97f1161, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e9-a97f1161, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-72377097, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-72377097, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-72377097, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-72377097, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-72377097, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-72377097, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-72377097, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-72377097, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-72377097, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-72377097, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-72377097, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-72377097, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-72377097, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-72377097 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-72377097 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d17-72377097, #w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d1a-72377097, #w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d1b-72377097, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-b4ad8471, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-b4ad8471, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-b4ad8471, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-b4ad8471, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-b4ad8471, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-b4ad8471, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-b4ad8471, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-b4ad8471, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-b4ad8471, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-b4ad8471, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-b4ad8471, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-b4ad8471, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-b4ad8471, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-b4ad8471 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-b4ad8471 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e5-b4ad8471, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e9-b4ad8471, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-f64c9008, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-f64c9008, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-f64c9008, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-f64c9008, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-f64c9008, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-f64c9008, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-f64c9008, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-f64c9008, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-f64c9008, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-f64c9008, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-f64c9008, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-f64c9008, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-f64c9008, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-f64c9008 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-f64c9008 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d17-f64c9008, #w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d1a-f64c9008, #w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d1b-f64c9008 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ebdab533-56d9-3b90-4ac8-1ab0b9130506-9f8eaad7 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-eb2aa44c-8d38-566d-a09f-227477549159-9f8eaad7 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_2f3c2227-1f9a-4b56-c8e3-7147f2f1b7e5-9f8eaad7 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-e879514f-520c-707c-94e4-c7c479fe3225-9f8eaad7 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-caa68265 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_1623df2e-25ce-b3d4-32a4-fef9ffd7d385-caa68265, #w-node-ebdab533-56d9-3b90-4ac8-1ab0b9130506-5ba3a2b3 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-eb2aa44c-8d38-566d-a09f-227477549159-5ba3a2b3 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_2f3c2227-1f9a-4b56-c8e3-7147f2f1b7e5-5ba3a2b3 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-e879514f-520c-707c-94e4-c7c479fe3225-5ba3a2b3 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-3e9507be {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-f5a0a4cc-80f1-609e-3e8e-392532d6353f-3e9507be {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_1623df2e-25ce-b3d4-32a4-fef9ffd7d385-3e9507be {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-a0942883 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-f5a0a4cc-80f1-609e-3e8e-392532d6353f-a0942883 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_1623df2e-25ce-b3d4-32a4-fef9ffd7d385-a0942883, #w-node-ebdab533-56d9-3b90-4ac8-1ab0b9130506-d81b3d98 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-eb2aa44c-8d38-566d-a09f-227477549159-d81b3d98 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_2f3c2227-1f9a-4b56-c8e3-7147f2f1b7e5-d81b3d98 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-e879514f-520c-707c-94e4-c7c479fe3225-d81b3d98 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-a41a37a1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-a41a37a1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-a41a37a1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-a41a37a1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-a41a37a1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-a41a37a1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-a41a37a1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-a41a37a1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-a41a37a1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-a41a37a1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-a41a37a1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-a41a37a1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-a41a37a1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-a41a37a1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-a41a37a1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d17-a41a37a1, #w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d1a-a41a37a1, #w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d1b-a41a37a1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-e5cdc1b9 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_1623df2e-25ce-b3d4-32a4-fef9ffd7d385-e5cdc1b9 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-eecf5106 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-78e99f94 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_1623df2e-25ce-b3d4-32a4-fef9ffd7d385-78e99f94 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-3d9f43d2 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_1623df2e-25ce-b3d4-32a4-fef9ffd7d385-3d9f43d2 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-ad67481c {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_1623df2e-25ce-b3d4-32a4-fef9ffd7d385-ad67481c {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-eae2a81f {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_1623df2e-25ce-b3d4-32a4-fef9ffd7d385-eae2a81f {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-a0308871 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_468e5fec-e9f0-0be5-297b-58a22058e116-a0308871, #w-node-ced87ad9-c5d0-e610-79f3-5462b283f705-a0308871, #w-node-_0b21fd02-9713-2239-2cb7-f899f5f01173-a0308871 {
  place-self: center;
}

#w-node-e2703e1b-b386-a025-8b31-f764a35cab6b-a0308871 {
  place-self: center start;
}

#w-node-e2703e1b-b386-a025-8b31-f764a35cab6e-a0308871, #w-node-e2703e1b-b386-a025-8b31-f764a35cab71-a0308871, #w-node-e2703e1b-b386-a025-8b31-f764a35cab74-a0308871 {
  place-self: center;
}

#w-node-ae3ef745-a0b0-9a38-e16d-412f5c606dcc-a0308871 {
  place-self: center start;
}

#w-node-ae3ef745-a0b0-9a38-e16d-412f5c606dcf-a0308871, #w-node-ae3ef745-a0b0-9a38-e16d-412f5c606dd1-a0308871, #w-node-ae3ef745-a0b0-9a38-e16d-412f5c606dd3-a0308871 {
  place-self: center;
}

#w-node-_064a4c93-d489-01f9-c635-17986bed4a0c-a0308871 {
  place-self: center start;
}

#w-node-_064a4c93-d489-01f9-c635-17986bed4a0f-a0308871, #w-node-_064a4c93-d489-01f9-c635-17986bed4a12-a0308871, #w-node-_064a4c93-d489-01f9-c635-17986bed4a15-a0308871 {
  place-self: center;
}

#w-node-e94a888d-f32f-be3e-ebc4-3d16909358a8-a0308871 {
  place-self: center start;
}

#w-node-e94a888d-f32f-be3e-ebc4-3d16909358ab-a0308871, #w-node-e94a888d-f32f-be3e-ebc4-3d16909358ae-a0308871, #w-node-e94a888d-f32f-be3e-ebc4-3d16909358b1-a0308871 {
  place-self: center;
}

#w-node-ca8b23d2-dfd8-20d2-fb09-08803792042e-a0308871 {
  place-self: center start;
}

#w-node-ca8b23d2-dfd8-20d2-fb09-088037920431-a0308871, #w-node-ca8b23d2-dfd8-20d2-fb09-088037920433-a0308871, #w-node-ca8b23d2-dfd8-20d2-fb09-088037920435-a0308871 {
  place-self: center;
}

#w-node-_702d5628-5cf3-a25a-2681-6f79cde66132-a0308871 {
  place-self: center start;
}

#w-node-_702d5628-5cf3-a25a-2681-6f79cde66135-a0308871, #w-node-_702d5628-5cf3-a25a-2681-6f79cde66137-a0308871, #w-node-_702d5628-5cf3-a25a-2681-6f79cde66139-a0308871 {
  place-self: center;
}

#w-node-bf4d10f0-c3ef-82a0-754d-56f842cc9377-a0308871 {
  place-self: center start;
}

#w-node-bf4d10f0-c3ef-82a0-754d-56f842cc937a-a0308871, #w-node-bf4d10f0-c3ef-82a0-754d-56f842cc937c-a0308871, #w-node-bf4d10f0-c3ef-82a0-754d-56f842cc937e-a0308871 {
  place-self: center;
}

#w-node-_260d02c3-b9a9-a492-f776-56a09e649443-a0308871 {
  place-self: center start;
}

#w-node-_260d02c3-b9a9-a492-f776-56a09e649446-a0308871, #w-node-_260d02c3-b9a9-a492-f776-56a09e649448-a0308871, #w-node-_260d02c3-b9a9-a492-f776-56a09e64944a-a0308871 {
  place-self: center;
}

#w-node-_8d8aa6ad-6d06-b56e-82b6-7fea8cb5ce1a-a0308871 {
  place-self: center start;
}

#w-node-_8d8aa6ad-6d06-b56e-82b6-7fea8cb5ce1d-a0308871, #w-node-_8d8aa6ad-6d06-b56e-82b6-7fea8cb5ce1f-a0308871, #w-node-_8d8aa6ad-6d06-b56e-82b6-7fea8cb5ce21-a0308871 {
  place-self: center;
}

#w-node-_4b05026b-6db7-c39b-a944-561a19d00e82-a0308871 {
  place-self: center start;
}

#w-node-_4b05026b-6db7-c39b-a944-561a19d00e85-a0308871, #w-node-_4b05026b-6db7-c39b-a944-561a19d00e87-a0308871, #w-node-_4b05026b-6db7-c39b-a944-561a19d00e89-a0308871 {
  place-self: center;
}

#w-node-_1623df2e-25ce-b3d4-32a4-fef9ffd7d385-a0308871 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-1414f0a1 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-b90ca92e, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-b90ca92e, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-b90ca92e, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-b90ca92e, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-b90ca92e, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-b90ca92e, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-b90ca92e, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-b90ca92e, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-b90ca92e, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-b90ca92e, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-b90ca92e, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-b90ca92e, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-b90ca92e, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-b90ca92e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-b90ca92e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d17-b90ca92e, #w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d1a-b90ca92e, #w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d1b-b90ca92e, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-ce7c6254, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-ce7c6254, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-ce7c6254, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-ce7c6254, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-ce7c6254, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-ce7c6254, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-ce7c6254, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-ce7c6254, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-ce7c6254, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-ce7c6254, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-ce7c6254, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-ce7c6254, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-ce7c6254, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-ce7c6254 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-ce7c6254 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d17-ce7c6254, #w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d1a-ce7c6254, #w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d1b-ce7c6254 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_468e5fec-e9f0-0be5-297b-58a22058e116-8ab8a315, #w-node-ced87ad9-c5d0-e610-79f3-5462b283f705-8ab8a315, #w-node-_0b21fd02-9713-2239-2cb7-f899f5f01173-8ab8a315 {
  place-self: center;
}

#w-node-e2703e1b-b386-a025-8b31-f764a35cab6b-8ab8a315 {
  place-self: center start;
}

#w-node-e2703e1b-b386-a025-8b31-f764a35cab6e-8ab8a315, #w-node-e2703e1b-b386-a025-8b31-f764a35cab71-8ab8a315, #w-node-e2703e1b-b386-a025-8b31-f764a35cab74-8ab8a315 {
  place-self: center;
}

#w-node-ae3ef745-a0b0-9a38-e16d-412f5c606dcc-8ab8a315 {
  place-self: center start;
}

#w-node-ae3ef745-a0b0-9a38-e16d-412f5c606dcf-8ab8a315, #w-node-ae3ef745-a0b0-9a38-e16d-412f5c606dd1-8ab8a315, #w-node-ae3ef745-a0b0-9a38-e16d-412f5c606dd3-8ab8a315 {
  place-self: center;
}

#w-node-_064a4c93-d489-01f9-c635-17986bed4a0c-8ab8a315 {
  place-self: center start;
}

#w-node-_064a4c93-d489-01f9-c635-17986bed4a0f-8ab8a315, #w-node-_064a4c93-d489-01f9-c635-17986bed4a12-8ab8a315, #w-node-_064a4c93-d489-01f9-c635-17986bed4a15-8ab8a315 {
  place-self: center;
}

#w-node-e94a888d-f32f-be3e-ebc4-3d16909358a8-8ab8a315 {
  place-self: center start;
}

#w-node-e94a888d-f32f-be3e-ebc4-3d16909358ab-8ab8a315, #w-node-e94a888d-f32f-be3e-ebc4-3d16909358ae-8ab8a315, #w-node-e94a888d-f32f-be3e-ebc4-3d16909358b1-8ab8a315 {
  place-self: center;
}

#w-node-ca8b23d2-dfd8-20d2-fb09-08803792042e-8ab8a315 {
  place-self: center start;
}

#w-node-ca8b23d2-dfd8-20d2-fb09-088037920431-8ab8a315, #w-node-ca8b23d2-dfd8-20d2-fb09-088037920433-8ab8a315, #w-node-ca8b23d2-dfd8-20d2-fb09-088037920435-8ab8a315 {
  place-self: center;
}

#w-node-_702d5628-5cf3-a25a-2681-6f79cde66132-8ab8a315 {
  place-self: center start;
}

#w-node-_702d5628-5cf3-a25a-2681-6f79cde66135-8ab8a315, #w-node-_702d5628-5cf3-a25a-2681-6f79cde66137-8ab8a315, #w-node-_702d5628-5cf3-a25a-2681-6f79cde66139-8ab8a315 {
  place-self: center;
}

#w-node-bf4d10f0-c3ef-82a0-754d-56f842cc9377-8ab8a315 {
  place-self: center start;
}

#w-node-bf4d10f0-c3ef-82a0-754d-56f842cc937a-8ab8a315, #w-node-bf4d10f0-c3ef-82a0-754d-56f842cc937c-8ab8a315, #w-node-bf4d10f0-c3ef-82a0-754d-56f842cc937e-8ab8a315 {
  place-self: center;
}

#w-node-_260d02c3-b9a9-a492-f776-56a09e649443-8ab8a315 {
  place-self: center start;
}

#w-node-_260d02c3-b9a9-a492-f776-56a09e649446-8ab8a315, #w-node-_260d02c3-b9a9-a492-f776-56a09e649448-8ab8a315, #w-node-_260d02c3-b9a9-a492-f776-56a09e64944a-8ab8a315 {
  place-self: center;
}

#w-node-_8d8aa6ad-6d06-b56e-82b6-7fea8cb5ce1a-8ab8a315 {
  place-self: center start;
}

#w-node-_8d8aa6ad-6d06-b56e-82b6-7fea8cb5ce1d-8ab8a315, #w-node-_8d8aa6ad-6d06-b56e-82b6-7fea8cb5ce1f-8ab8a315, #w-node-_8d8aa6ad-6d06-b56e-82b6-7fea8cb5ce21-8ab8a315 {
  place-self: center;
}

#w-node-_4b05026b-6db7-c39b-a944-561a19d00e82-8ab8a315 {
  place-self: center start;
}

#w-node-_4b05026b-6db7-c39b-a944-561a19d00e85-8ab8a315, #w-node-_4b05026b-6db7-c39b-a944-561a19d00e87-8ab8a315, #w-node-_4b05026b-6db7-c39b-a944-561a19d00e89-8ab8a315 {
  place-self: center;
}

#w-node-e54f54dd-6eae-ee7a-cf0c-aa5f7a465b37-8ab8a315, #w-node-_207e8fec-ebf4-fc5c-5d01-77e31a52526f-8ab8a315, #w-node-_35548705-5aac-a058-69bd-8f74fcefcd6c-8ab8a315 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-3267ed5d {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-a382d7ff-401e-fd76-d905-42b752674e14-20e6e074, #w-node-a382d7ff-401e-fd76-d905-42b752674e1e-20e6e074 {
  place-self: center;
}

#w-node-a382d7ff-401e-fd76-d905-42b752674e29-20e6e074 {
  place-self: center start;
}

#w-node-a382d7ff-401e-fd76-d905-42b752674e2c-20e6e074, #w-node-a382d7ff-401e-fd76-d905-42b752674e2f-20e6e074 {
  place-self: center;
}

#w-node-a382d7ff-401e-fd76-d905-42b752674e33-20e6e074 {
  place-self: center start;
}

#w-node-a382d7ff-401e-fd76-d905-42b752674e36-20e6e074, #w-node-a382d7ff-401e-fd76-d905-42b752674e39-20e6e074 {
  place-self: center;
}

#w-node-a382d7ff-401e-fd76-d905-42b752674e3d-20e6e074 {
  place-self: center start;
}

#w-node-a382d7ff-401e-fd76-d905-42b752674e40-20e6e074, #w-node-a382d7ff-401e-fd76-d905-42b752674e43-20e6e074 {
  place-self: center;
}

#w-node-a382d7ff-401e-fd76-d905-42b752674e47-20e6e074 {
  place-self: center start;
}

#w-node-a382d7ff-401e-fd76-d905-42b752674e4a-20e6e074, #w-node-a382d7ff-401e-fd76-d905-42b752674e4c-20e6e074 {
  place-self: center;
}

#w-node-a382d7ff-401e-fd76-d905-42b752674e4f-20e6e074 {
  place-self: center start;
}

#w-node-a382d7ff-401e-fd76-d905-42b752674e52-20e6e074, #w-node-a382d7ff-401e-fd76-d905-42b752674e54-20e6e074 {
  place-self: center;
}

#w-node-a382d7ff-401e-fd76-d905-42b752674e57-20e6e074 {
  place-self: center start;
}

#w-node-a382d7ff-401e-fd76-d905-42b752674e5a-20e6e074, #w-node-a382d7ff-401e-fd76-d905-42b752674e5c-20e6e074 {
  place-self: center;
}

#w-node-a382d7ff-401e-fd76-d905-42b752674e5f-20e6e074 {
  place-self: center start;
}

#w-node-a382d7ff-401e-fd76-d905-42b752674e62-20e6e074, #w-node-a382d7ff-401e-fd76-d905-42b752674e64-20e6e074 {
  place-self: center;
}

#w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-fe20c44c {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-1e72f6e1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-1e72f6e1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-1e72f6e1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-1e72f6e1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-1e72f6e1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-1e72f6e1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-1e72f6e1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-1e72f6e1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-1e72f6e1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-1e72f6e1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-1e72f6e1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-1e72f6e1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-1e72f6e1, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-1e72f6e1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-1e72f6e1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d17-1e72f6e1, #w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d1a-1e72f6e1, #w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d1b-1e72f6e1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-e0246db1 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_77caca48-f515-25e3-fc12-ffaebaf0d2e4-5714c11c {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-8f3a1691, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-8f3a1691, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-8f3a1691, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-8f3a1691, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-8f3a1691, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-8f3a1691, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-8f3a1691, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-8f3a1691, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-8f3a1691, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-8f3a1691, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-8f3a1691, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-8f3a1691, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-8f3a1691, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-8f3a1691 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-8f3a1691 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e5-8f3a1691, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e9-8f3a1691, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-a8e5c1ed, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-a8e5c1ed, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-a8e5c1ed, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-a8e5c1ed, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-a8e5c1ed, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-a8e5c1ed, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-a8e5c1ed, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-a8e5c1ed, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-a8e5c1ed, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-a8e5c1ed, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-a8e5c1ed, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-a8e5c1ed, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-a8e5c1ed, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-a8e5c1ed {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-a8e5c1ed {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e5-a8e5c1ed, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e9-a8e5c1ed, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-ed22e06f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-ed22e06f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-ed22e06f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-ed22e06f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-ed22e06f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-ed22e06f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-ed22e06f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-ed22e06f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-ed22e06f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-ed22e06f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-ed22e06f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-ed22e06f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-ed22e06f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-ed22e06f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-ed22e06f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e5-ed22e06f, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e9-ed22e06f, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-fd83a4cb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-fd83a4cb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-fd83a4cb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-fd83a4cb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-fd83a4cb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-fd83a4cb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-fd83a4cb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-fd83a4cb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-fd83a4cb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-fd83a4cb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-fd83a4cb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-fd83a4cb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-fd83a4cb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-fd83a4cb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-fd83a4cb {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e5-fd83a4cb, #w-node-_17ac4005-0404-a34a-cc6c-c61e6549a7e9-fd83a4cb, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f61-356e59fe, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f64-356e59fe, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f65-356e59fe, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f6d-356e59fe, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f70-356e59fe, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f71-356e59fe, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7c-356e59fe, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f7f-356e59fe, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f80-356e59fe, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8b-356e59fe, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8e-356e59fe, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f8f-356e59fe, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f97-356e59fe, #w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9a-356e59fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a6f22d1-1993-7417-64b6-9c5cea2b0f9b-356e59fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d17-356e59fe, #w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d1a-356e59fe, #w-node-dda7bb03-85c4-4e95-d708-e8ffa27c3d1b-356e59fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-9e64908e, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-b1b807b0, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-756762ae {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

@media screen and (max-width: 991px) {
  #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-ff0dd5bf, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-12153eb8, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-5f7d085b, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-757d204d, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-e6f4eadd, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-b2d432d1 {
    grid-column: span 1 / span 1;
  }

  #w-node-ebdab533-56d9-3b90-4ac8-1ab0b9130506-9f8eaad7 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-eb2aa44c-8d38-566d-a09f-227477549159-9f8eaad7 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-e879514f-520c-707c-94e4-c7c479fe3225-9f8eaad7 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-caa68265 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_1623df2e-25ce-b3d4-32a4-fef9ffd7d385-caa68265, #w-node-ebdab533-56d9-3b90-4ac8-1ab0b9130506-5ba3a2b3 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-eb2aa44c-8d38-566d-a09f-227477549159-5ba3a2b3 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-e879514f-520c-707c-94e4-c7c479fe3225-5ba3a2b3 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-3e9507be {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_1623df2e-25ce-b3d4-32a4-fef9ffd7d385-3e9507be {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-a0942883 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_1623df2e-25ce-b3d4-32a4-fef9ffd7d385-a0942883, #w-node-ebdab533-56d9-3b90-4ac8-1ab0b9130506-d81b3d98 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-eb2aa44c-8d38-566d-a09f-227477549159-d81b3d98 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-e879514f-520c-707c-94e4-c7c479fe3225-d81b3d98 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-e5cdc1b9 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_1623df2e-25ce-b3d4-32a4-fef9ffd7d385-e5cdc1b9 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-eecf5106 {
    grid-column: span 1 / span 1;
  }

  #w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-78e99f94 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_1623df2e-25ce-b3d4-32a4-fef9ffd7d385-78e99f94 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-3d9f43d2 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_1623df2e-25ce-b3d4-32a4-fef9ffd7d385-3d9f43d2 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-ad67481c {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_1623df2e-25ce-b3d4-32a4-fef9ffd7d385-ad67481c {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-eae2a81f {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_1623df2e-25ce-b3d4-32a4-fef9ffd7d385-eae2a81f {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-a0308871 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_9606944f-a3ea-7ea0-1f52-ed7fe75c0fe2-a0308871 {
    order: 9999;
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-e2703e1b-b386-a025-8b31-f764a35cab6b-a0308871, #w-node-ae3ef745-a0b0-9a38-e16d-412f5c606dcc-a0308871, #w-node-_064a4c93-d489-01f9-c635-17986bed4a0c-a0308871, #w-node-e94a888d-f32f-be3e-ebc4-3d16909358a8-a0308871, #w-node-ca8b23d2-dfd8-20d2-fb09-08803792042e-a0308871, #w-node-_702d5628-5cf3-a25a-2681-6f79cde66132-a0308871, #w-node-bf4d10f0-c3ef-82a0-754d-56f842cc9377-a0308871, #w-node-_260d02c3-b9a9-a492-f776-56a09e649443-a0308871, #w-node-_8d8aa6ad-6d06-b56e-82b6-7fea8cb5ce1a-a0308871, #w-node-_4b05026b-6db7-c39b-a944-561a19d00e82-a0308871 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    justify-self: center;
  }

  #w-node-_1623df2e-25ce-b3d4-32a4-fef9ffd7d385-a0308871 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-1414f0a1 {
    grid-column: span 1 / span 1;
  }

  #w-node-_9606944f-a3ea-7ea0-1f52-ed7fe75c0fe2-8ab8a315 {
    order: 9999;
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-e2703e1b-b386-a025-8b31-f764a35cab6b-8ab8a315, #w-node-ae3ef745-a0b0-9a38-e16d-412f5c606dcc-8ab8a315, #w-node-_064a4c93-d489-01f9-c635-17986bed4a0c-8ab8a315, #w-node-e94a888d-f32f-be3e-ebc4-3d16909358a8-8ab8a315, #w-node-ca8b23d2-dfd8-20d2-fb09-08803792042e-8ab8a315, #w-node-_702d5628-5cf3-a25a-2681-6f79cde66132-8ab8a315, #w-node-bf4d10f0-c3ef-82a0-754d-56f842cc9377-8ab8a315, #w-node-_260d02c3-b9a9-a492-f776-56a09e649443-8ab8a315, #w-node-_8d8aa6ad-6d06-b56e-82b6-7fea8cb5ce1a-8ab8a315, #w-node-_4b05026b-6db7-c39b-a944-561a19d00e82-8ab8a315 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    justify-self: center;
  }

  #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-3267ed5d {
    grid-column: span 1 / span 1;
  }

  #w-node-a382d7ff-401e-fd76-d905-42b752674e13-20e6e074 {
    order: 9999;
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-a382d7ff-401e-fd76-d905-42b752674e29-20e6e074, #w-node-a382d7ff-401e-fd76-d905-42b752674e33-20e6e074, #w-node-a382d7ff-401e-fd76-d905-42b752674e3d-20e6e074, #w-node-a382d7ff-401e-fd76-d905-42b752674e47-20e6e074, #w-node-a382d7ff-401e-fd76-d905-42b752674e4f-20e6e074, #w-node-a382d7ff-401e-fd76-d905-42b752674e57-20e6e074, #w-node-a382d7ff-401e-fd76-d905-42b752674e5f-20e6e074 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-fe20c44c, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-e0246db1, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-9e64908e, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-b1b807b0, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-756762ae {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-ff0dd5bf, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-12153eb8, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-5f7d085b, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-757d204d, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-e6f4eadd, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-b2d432d1 {
    grid-column: span 1 / span 1;
  }

  #w-node-eb2aa44c-8d38-566d-a09f-227477549159-9f8eaad7 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_8a2ed41e-013b-d907-0fec-b2f70c4241e6-9f8eaad7 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-caa68265 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-f5021a70-0c50-f8df-3505-825c46b4b6e4-caa68265 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-eb2aa44c-8d38-566d-a09f-227477549159-5ba3a2b3 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_8a2ed41e-013b-d907-0fec-b2f70c4241e6-5ba3a2b3 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-3e9507be {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-f5021a70-0c50-f8df-3505-825c46b4b6e4-3e9507be {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-a0942883 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-f5021a70-0c50-f8df-3505-825c46b4b6e4-a0942883 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-eb2aa44c-8d38-566d-a09f-227477549159-d81b3d98 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_8a2ed41e-013b-d907-0fec-b2f70c4241e6-d81b3d98 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-e5cdc1b9 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-f5021a70-0c50-f8df-3505-825c46b4b6e4-e5cdc1b9 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-eecf5106 {
    grid-column: span 1 / span 1;
  }

  #w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-78e99f94 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-f5021a70-0c50-f8df-3505-825c46b4b6e4-78e99f94 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-3d9f43d2 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-f5021a70-0c50-f8df-3505-825c46b4b6e4-3d9f43d2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-ad67481c {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-f5021a70-0c50-f8df-3505-825c46b4b6e4-ad67481c {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-eae2a81f {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-f5021a70-0c50-f8df-3505-825c46b4b6e4-eae2a81f {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0a37a6a3-61bf-9cb6-923f-f69b4b8ff182-a0308871 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-f5021a70-0c50-f8df-3505-825c46b4b6e4-a0308871 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-1414f0a1 {
    grid-column: span 1 / span 1;
  }

  #w-node-e54f54dd-6eae-ee7a-cf0c-aa5f7a465b37-8ab8a315, #w-node-_207e8fec-ebf4-fc5c-5d01-77e31a52526f-8ab8a315, #w-node-_35548705-5aac-a058-69bd-8f74fcefcd6c-8ab8a315 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-3267ed5d, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-fe20c44c, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-e0246db1, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-9e64908e, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-b1b807b0, #w-node-_3613ff1b-c52a-7e46-1740-5b9c5a67ce36-756762ae {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_8a2ed41e-013b-d907-0fec-b2f70c4241e6-9f8eaad7, #w-node-f5021a70-0c50-f8df-3505-825c46b4b6e4-caa68265, #w-node-_8a2ed41e-013b-d907-0fec-b2f70c4241e6-5ba3a2b3, #w-node-f5021a70-0c50-f8df-3505-825c46b4b6e4-3e9507be, #w-node-f5021a70-0c50-f8df-3505-825c46b4b6e4-a0942883, #w-node-_8a2ed41e-013b-d907-0fec-b2f70c4241e6-d81b3d98, #w-node-f5021a70-0c50-f8df-3505-825c46b4b6e4-e5cdc1b9, #w-node-f5021a70-0c50-f8df-3505-825c46b4b6e4-78e99f94, #w-node-f5021a70-0c50-f8df-3505-825c46b4b6e4-3d9f43d2, #w-node-f5021a70-0c50-f8df-3505-825c46b4b6e4-ad67481c, #w-node-f5021a70-0c50-f8df-3505-825c46b4b6e4-eae2a81f, #w-node-f5021a70-0c50-f8df-3505-825c46b4b6e4-a0308871 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/Helvetica.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Helvetica Bold';
  src: url('../fonts/Helvetica-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}