:root {
  --blah-sky: #6395ce;
  --blah-white-wool: whitesmoke;
  --blah-black: #334355;
  --blah-imagines: #bbddf2;
}

body {
  background-color: var(--blah-sky);
  color: #fff;
  font-family: Cooper Md BT, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  overflow: visible;
}

h1 {
  color: var(--blah-white-wool);
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Gotham Rounded, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.4;
}

h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Gotham Rounded, sans-serif;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.4;
}

h3 {
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Gotham Rounded, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.4;
}

h4 {
  color: var(--blah-black);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Gotham Rounded, sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
}

h5 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Gotham Rounded, sans-serif;
  font-size: 1.25rem;
  line-height: 1.4;
}

h6 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Gotham Rounded, sans-serif;
  font-size: 24px;
  line-height: 1.5;
}

p {
  color: var(--blah-black);
  max-width: 46ch;
  margin-bottom: 0;
  font-family: Cooper Md BT, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
}

a {
  color: #171717;
  font-family: Gotham Rounded, sans-serif;
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 20px;
}

li {
  opacity: .7;
  color: var(--blah-black);
  max-width: 30ch;
  padding-bottom: 8px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

.fs-styleguide-sidebar-links {
  color: #dadada;
  text-align: left;
  background-color: #1a1a1a;
  border-radius: 12px;
  flex-direction: column;
  width: 250px;
  padding: 0 0 12px;
  display: flex;
  position: fixed;
  top: 20px;
  bottom: 20px;
  left: 20px;
  right: auto;
  overflow: auto;
}

.fs-styleguide-logo {
  height: 60px;
  margin-bottom: 10px;
  display: block;
}

.margin-bottom-small {
  margin-bottom: 16px;
}

.margin-bottom-large {
  margin-bottom: 64px;
}

.margin-bottom-medium {
  margin-bottom: 32px;
}

.margin-bottom-xlarge {
  margin-bottom: 128px;
}

.styles {
  display: block;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.grid-1-col {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  align-content: start;
  display: grid;
}

.grid-row {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-items: start;
  display: grid;
}

.fs-styleguide-sidebar-item {
  width: 100%;
  padding: 8px 20px;
  font-weight: 600;
  text-decoration: none;
}

.fs-styleguide-sidebar-item:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, .05);
}

.fs-styleguide-sidebar-item.w--current {
  color: #fff;
  background-color: rgba(255, 255, 255, .1);
  font-weight: 700;
}

.fs-styleguide-sidebar-item.first {
  padding-top: 35px;
  padding-bottom: 35px;
}

.heading-xlarge {
  font-size: 64px;
  line-height: 1.125;
}

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

.margin-left-small {
  margin-left: 8px;
}

.fs-styleguide-sidebar-folder {
  border-left: 1px solid rgba(255, 255, 255, .1);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-left: 20px;
  font-size: .75rem;
  display: none;
}

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

.grid-2-col.margin-vertical-xlarge {
  grid-row-gap: 4rem;
  grid-template-rows: auto auto;
  margin-top: 128px;
  margin-bottom: 128px;
}

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

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

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

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

.container.cart_contain {
  flex: 0 auto;
  padding-bottom: 20px;
  overflow: auto;
}

.container.cart_subtotal-contain {
  flex-direction: column;
  flex: none;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin-left: 0;
  padding-bottom: 40px;
  display: flex;
}

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

.margin-right-medium {
  margin-right: 16px;
}

.button {
  color: #171717;
  text-align: center;
  background-color: #f4889b;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-width: 170px;
  margin-top: 20px;
  padding: 12px 2em;
  font-family: Alternategotno1d;
  font-size: 2em;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.button-secondary {
  color: #0015ff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #0015ff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.form-input {
  background-color: rgba(0, 0, 0, 0);
  height: 40px;
}

.margin-bottom-xsmall {
  margin-bottom: 8px;
}

.padding-vertical-medium {
  padding-top: 32px;
  padding-bottom: 32px;
}

.padding-vertical-large {
  padding-top: 64px;
  padding-bottom: 64px;
}

.fs-intro-image {
  width: 100%;
}

.margin-top-large {
  margin-top: 64px;
}

.margin-top-xlarge {
  margin-top: 128px;
}

.icon-large {
  height: 64px;
}

.footer_component {
  color: #f5f5f5;
  background-color: #1b1b1b;
  border-radius: 20px;
  padding-top: 60px;
  padding-bottom: 60px;
  font-weight: 600;
}

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

.footer-social-link {
  margin-left: 20px;
}

.footer-social-link:hover {
  color: #7e7e7e;
}

.footer_content {
  grid-column-gap: 80px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  margin-bottom: 80px;
  display: grid;
}

.footer_link {
  opacity: .6;
  text-decoration: none;
}

.footer_link:hover {
  opacity: 1;
}

.row {
  flex-wrap: wrap;
  display: flex;
}

.max-xsmall {
  width: 100%;
  max-width: 544px;
}

.text-large {
  font-size: 24px;
  line-height: 1.18;
}

.home-hero_image-wrapper {
  flex: 1;
  position: relative;
}

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

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

.fs-styleguide-sidebar {
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.page-padding {
  padding-left: 2rem;
  padding-right: 2rem;
}

.page-wrapper {
  overflow: hidden;
}

.page-wrapper.hide-styleguide {
  display: block;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.icon-1x1-medium {
  width: 40px;
  height: 40px;
}

.icon-1x1-large {
  width: 64px;
  height: 64px;
}

.text-color-white {
  color: var(--blah-white-wool);
  white-space: normal;
}

.text-color-black {
  color: #171717;
  background-image: none;
}

.testimonial-item {
  background-color: #f5f5f5;
  margin-bottom: 20px;
  padding: 20px;
  position: relative;
}

.testimonial-author {
  display: flex;
}

.testimonial-author-photo {
  background-color: #bbb;
  border-radius: 50%;
  flex: none;
  width: 50px;
  height: 50px;
}

.testimonial-author-details {
  flex: 1;
  padding-left: 20px;
}

.testimonial-author-title {
  opacity: .6;
  margin-top: 5px;
  font-size: 12px;
}

.fs-styleguide-sidebar-styles {
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.footer_navigation-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 72px;
  display: grid;
}

.layout-hero {
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: grid;
  position: relative;
}

.layout-card-right, .layout-card-left {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.footer-social-row {
  flex-wrap: wrap;
  display: flex;
}

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

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

.text-field-2 {
  background-color: var(--blah-white-wool);
  color: var(--blah-black);
  letter-spacing: .15rem;
  border-radius: 8px;
  width: 36px;
  height: 30px;
  margin-bottom: 0;
  font-family: Pangram Bold;
  font-size: 1rem;
  line-height: 1.4;
  display: inline-block;
}

.form-block-2 {
  margin-top: -2px;
  margin-bottom: 0;
  display: inline-block;
}

.navigation {
  background-color: rgba(0, 0, 0, 0);
  align-items: center;
  padding: 30px 50px;
  display: flex;
}

.button-2 {
  background-color: var(--blah-sky);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  align-self: center;
  padding: 0 8px;
  font-size: 1.7rem;
  line-height: 1;
  display: flex;
}

.cart-items-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
  display: flex;
  overflow: auto;
}

.navigation-wrap {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.cart_flex-wrapper {
  z-index: 90;
  clear: none;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  text-align: left;
  background-color: rgba(71, 62, 59, .07);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
}

.button-4 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  font-size: 18px;
  line-height: 20px;
  text-decoration: none;
}

.button-4.cc-contact-us {
  z-index: 1;
  display: inline-block;
  position: relative;
}

.collection_product-title {
  text-decoration: none;
}

.js-product-sku, .js-product-variant-sku {
  display: none;
}

.heading {
  color: #000;
  text-align: left;
  line-height: 50px;
  text-decoration: none;
  display: block;
}

.dynamic-product-price {
  color: var(--blah-sky);
  font-size: 1rem;
  display: flex;
}

.dynamic-product-image-linked {
  width: 75%;
  box-shadow: -10px 10px 20px -4px rgba(0, 0, 0, .43);
}

.image-sku {
  display: none;
}

.collection-width {
  flex: none;
  max-width: 30vw;
}

.dynamic-collection-feature {
  display: flex;
}

.js-collection-slug {
  display: none;
}

.section {
  margin-left: 30px;
  margin-right: 30px;
}

.collection_paginate-current {
  color: #000;
  padding-left: 10px;
  padding-right: 10px;
}

.collection-product-title-wrapper {
  width: 100%;
  text-decoration: none;
}

.collection_paginate-arrow {
  padding-left: 10px;
  padding-right: 10px;
}

.collection_paginate-wrapper {
  justify-content: center;
  display: flex;
}

.tab-link_product-details {
  background-color: #fff;
  border-bottom: 4px solid #000;
}

.tab-link_product-details.w--current {
  color: #e4a24e;
  background-color: #000;
}

.tabs-menu-2 {
  text-align: center;
}

.column {
  flex-wrap: nowrap;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
}

.pdp_vendor {
  color: #000;
  margin-top: 8px;
  margin-bottom: 8px;
}

.pdp_price {
  color: #000;
}

.pdp_product-title {
  color: #000;
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 30px;
}

.pdp_compare-price {
  color: #e4a24e;
  line-height: 50px;
  text-decoration: line-through;
}

.columns-2 {
  display: flex;
}

.pdp-detail-wrapper {
  text-align: center;
}

.container-6 {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}

.cart_price-subtotal {
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  margin-left: auto;
  font-size: 1.25rem;
  line-height: 1.73;
}

.cart-module__wrapper {
  z-index: 20;
  clear: none;
  background-color: var(--blah-black);
  text-align: left;
  text-transform: uppercase;
  border-radius: 1.0973rem;
  flex-direction: column;
  align-items: center;
  width: 100px;
  min-width: 50vw;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: flex;
  position: relative;
  overflow: auto;
}

.price-compare {
  font-family: Pangram;
  font-weight: 500;
  text-decoration: line-through;
}

.price {
  padding-right: 8px;
}

.price.dollar {
  padding-right: 0;
}

.text-cart-menu {
  text-transform: none;
  font-family: Londrina Solid;
  font-size: 18px;
  font-weight: 400;
}

.nav-link {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.4em;
  line-height: 1.14;
}

.style_item {
  border-bottom: .1em solid #bdbdbd;
  padding: 2em 0;
}

.container-style-guide {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2.8em;
  padding-bottom: 2.8em;
  padding-left: 4em;
}

.styletitle {
  text-transform: uppercase;
  border-bottom: 1px solid #d4d4d4;
  margin: 20px 15px 30px;
  font-size: 14px;
}

.bold {
  font-weight: 700;
}

.colorbox {
  width: 150px;
  height: 150px;
  margin-right: 25px;
  display: inline-block;
}

.colorbox.white {
  background-color: var(--blah-white-wool);
}

.colorbox.brandmaincolor {
  background-color: var(--blah-sky);
}

.colorbox.shore {
  background-color: #a67683;
}

.colorbox.shallows {
  background-color: #bf88b6;
}

.colorbox.blackcolor {
  color: #171717;
  background-color: #000;
  margin-left: 0;
}

.colorbox.brand2ndcolor {
  background-color: var(--blah-black);
}

.colorbox.brandimagine {
  background-color: var(--blah-imagines);
}

.stylename {
  color: #d4d4d4;
  text-transform: uppercase;
  border-top: 1px solid #d4d4d4;
  border-bottom: 0 #d4d4d4;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 14px;
}

.invese-link {
  color: #fff;
}

.flex3col {
  width: 33.333%;
  margin-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
}

.flex3col.textlinkcol {
  padding-top: 19px;
}

.flexcolwrap {
  flex-wrap: wrap;
  display: flex;
}

.flexcolwrap.inversecolors {
  background-color: #25bcca;
  padding-top: 26px;
  padding-bottom: 0;
}

.mycontain {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 25px;
  padding-bottom: 25px;
  display: block;
}

.flex2col {
  width: 50%;
  margin-bottom: 15px;
  padding: 10px 15px;
}

.cta-button {
  background-color: var(--blah-black);
  color: var(--blah-white-wool);
  text-align: center;
  letter-spacing: .105rem;
  text-transform: uppercase;
  border-radius: 6rem;
  width: 100%;
  max-width: 16rem;
  margin-top: 2rem;
  margin-bottom: 4px;
  padding: 1rem;
  font-family: Gotham Rounded, sans-serif;
  line-height: 1.25;
  transition: all .35s;
}

.cta-button.ghost-button {
  border: 1px solid var(--blah-black);
  color: var(--blah-white-wool);
  background-color: rgba(0, 0, 0, 0);
}

.cta-button.ghost-button:hover {
  border-color: #8177b5;
}

.cta-button.ghost-button.inverse-ghost {
  color: #fff;
  border-color: #fff;
}

.cta-button.ghost-button.inverse-ghost:hover, .cta-button.inverse-button {
  color: #25bcca;
  background-color: #fff;
}

.cta-button.inverse-button:hover {
  color: #fff;
  background-color: #1e949e;
}

.cta-button.checkout {
  background-color: var(--blah-sky);
  max-width: none;
}

.coldummycolor {
  background-color: #d4d4d4;
}

.select-field {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 18px;
}

.featured-collection_product-title {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-color-ninja-red {
  color: #eb4f47;
}

.lottie-animation {
  border-radius: 30px;
  width: 70px;
  height: 80px;
  padding: 20px;
}

.cart-title-and-exit__wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 14px;
  display: flex;
}

.link-6 {
  color: #fff;
  flex: 0 auto;
  margin-left: auto;
  font-family: Alternategotno1d;
  font-size: 30px;
  text-decoration: none;
}

.cart-heading {
  text-align: center;
  text-transform: capitalize;
  flex: 0 auto;
  font-size: 2rem;
  line-height: 1.74;
}

.quantity-selector__wrapper {
  width: 100px;
  display: flex;
}

.product-in-cart-data__wrapper {
  flex-direction: row;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-start;
  padding-bottom: 2em;
  display: flex;
}

.image-10 {
  max-width: 12vw;
}

.cart-items-overflow__wrapper {
  border-radius: 7px;
  width: 100%;
  overflow: auto;
}

.pricing-cart_wrapper {
  justify-content: flex-start;
  padding-top: 0;
  display: flex;
}

.section-hero.margin-bottom-large {
  min-height: 100vh;
  margin-bottom: 0;
}

.headline__wrapper {
  perspective: 800px;
  perspective-origin: 50% 100%;
  transform-origin: 50% 0;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  transform: none;
}

.cta-text {
  text-align: center;
  letter-spacing: .055em;
  margin-top: 0;
  font-size: 16px;
  line-height: 1.2;
}

.add-to-cart-native {
  z-index: 0;
  -webkit-text-stroke-color: #311010;
  text-transform: uppercase;
  border-radius: 7px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px 40px;
  font-family: Open Sans, sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: all .245s cubic-bezier(.6, -.28, .735, .045);
  display: flex;
}

.add-to-cart-native:hover {
  text-decoration: none;
}

.pricing__wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  display: none;
}

.text-block-15 {
  text-decoration: none;
  display: none;
}

.link-8 {
  opacity: 0;
  width: 0;
  height: 0;
  display: block;
}

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

.paginate__wrapper {
  justify-content: center;
  display: flex;
}

.text-paginate__prev {
  padding-left: 10px;
  padding-right: 10px;
}

.text-paginate__current {
  color: #000;
  padding-left: 10px;
  padding-right: 10px;
}

.text-paginate__ellipse, .text-paginate__next {
  padding-left: 10px;
  padding-right: 10px;
}

.cart-wrapper-v2 {
  z-index: 10;
  justify-content: flex-end;
  display: block;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.product__wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-left: 40px;
  padding-right: 40px;
  display: grid;
}

.product__wrapper.hide-old {
  display: none;
}

.text-book-quote-v2 {
  color: #e2dbcc;
  max-width: none;
  font-family: Alternategotno1d;
}

.text-book-quote-v2.compare {
  color: #a67683;
  margin-top: auto;
  margin-bottom: 0;
  margin-right: auto;
  font-family: Pangram Bold;
  font-size: 1.4rem;
  text-decoration: none;
}

.strikethrough__wrapper {
  width: 100%;
  height: 100%;
  margin-top: auto;
  margin-bottom: 6px;
  position: relative;
}

.strikethrough {
  background-color: #171717;
  width: 40px;
  height: 2px;
  position: absolute;
  top: 17px;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: rotate(-13deg);
}

.product-padding {
  margin-top: 0;
  padding-left: 40px;
  padding-right: 40px;
}

.prodcardgrid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 900px;
  transition: all .777s cubic-bezier(.23, 1, .32, 1);
  display: grid;
}

.prodcardgrid:hover {
  transform: scale(1.009);
}

.prodcardgrid.farm {
  border: 0px solid var(--blah-sky);
  background-color: var(--blah-imagines);
  border-radius: 12px;
}

.prodcardgrid.farm:hover {
  transform: none;
}

.pricing-v2 {
  color: #8177b5;
  max-width: none;
  margin-bottom: 0;
  font-family: Reader web;
}

.h3-mm-reader {
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Reader web;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.h3-mm-reader.price {
  color: var(--blah-white-wool);
  text-transform: none;
  font-family: Gotham Rounded, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.h3-mm-reader.price.no-margin.price-compare {
  color: var(--blah-sky);
  font-family: Gotham Rounded, sans-serif;
}

.page-wrapper-bb {
  overflow: hidden;
}

.porfolio---item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  font-weight: 600;
  line-height: 1.3;
  display: block;
  position: relative;
}

.portfolio---image {
  z-index: -2;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.portfolio---text {
  color: #a67683;
  text-shadow: -5px 5px 4px #bf88b6;
  font-size: 90px;
  position: relative;
}

.link-12 {
  color: #f4889b;
}

.cta-button-v2 {
  color: #171717;
  text-align: center;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  background-image: linear-gradient(to right, #f4889b, #8177b5);
  border-radius: 500px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 280px;
  margin-bottom: 4px;
  padding: 20px 4rem;
  font-family: Pangram Bold;
  font-size: 1rem;
  line-height: 1.4;
  transition: all .4s;
  display: flex;
}

.cta-button-v2:hover {
  color: #171717;
  transform: scale(1.01973);
}

.cta-button-v2:active {
  transform: scale(.973)scale(1.01973);
}

.section-challenge {
  padding-bottom: 8rem;
}

.section-products-v2 {
  background-color: var(--blah-imagines);
}

.section-products-v2.padding-bottom-large {
  margin-top: 0;
  padding-bottom: 4rem;
}

.product-option__wrapper-v2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  justify-content: center;
  align-items: start;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.image-product__wrapper {
  background-color: #d1e6f3;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
  padding: 40px;
  display: flex;
}

.image-product-photos--v2 {
  object-fit: contain;
  width: auto;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.image-product-photos--v2.bundle {
  cursor: nesw-resize;
}

.prodcard-v2 {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.prodcard-v2.farm {
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.swiper-wrapper.is-slider-main {
  flex-direction: row;
  align-items: center;
  width: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  position: relative;
}

.swiper-bullet-wrapper.is-slider-main {
  grid-column-gap: .5em;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.swiper-bullet-wrapper.is-slider-main.hide {
  display: none;
}

.swiper-bullet {
  background-color: #000;
  border-radius: 50%;
  width: 1.25em;
  min-height: 1.25em;
}

.swiper-bullet.is-active {
  background-color: #f4889b;
  background-image: linear-gradient(to right, #f4889b, #8177b5);
}

.praise-card__wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 30% 70%;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: center;
  width: 25vw;
  min-height: 610px;
  display: grid;
  overflow: visible;
}

.praise-copy__wrapper {
  z-index: 1;
  margin-bottom: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
}

.swiper-drag-wrapper.is-slider-main {
  background-color: var(--blah-imagines);
  background-color: var(--blah-imagines);
  border-radius: 100vw;
  width: 100%;
  max-width: 100%;
  height: .6em;
  margin-top: 0;
  display: block;
}

.swiper-drag.is-slider-main {
  background-image: linear-gradient(to bottom, var(--blah-black), var(--blah-black));
  background-color: var(--blah-black);
  background-image: none;
  border-radius: 100vw;
  width: 7em;
  height: 100%;
}

.cta-shirt-size {
  letter-spacing: .15rem;
  justify-content: center;
  align-items: center;
  width: 3.75rem;
  height: 3.75rem;
  font-family: Pangram Bold;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  display: flex;
}

.text-shirt-size {
  text-align: center;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: 0;
  font-family: Pangram Bold;
  font-size: 1rem;
  line-height: 1.4;
}

.pricing-title-qty__wrapper {
  margin-bottom: auto;
  padding-left: 1.25rem;
}

.cart-product-image__wrapper {
  background-color: var(--blah-white-wool);
  border-radius: .312em;
  padding: 1rem;
}

.subtotal__wrapper {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1.75rem;
  font-family: Gotham Rounded, sans-serif;
  display: flex;
}

.text-subtotal {
  color: var(--blah-white-wool);
  text-align: center;
  text-transform: none;
  max-width: 35ch;
  font-size: 1.25rem;
  line-height: 1.73;
}

.text-cart-product-title {
  text-align: left;
  font-size: 2rem;
}

.qty-gradient__wrapper {
  background-image: linear-gradient(to bottom, var(--blah-sky), var(--blah-sky));
  -webkit-text-fill-color: inherit;
  background-clip: padding-box;
  border-radius: 8px;
  padding: 2px;
  position: relative;
  overflow: hidden;
}

.image-book-to-buy {
  width: auto;
  max-width: 250px;
}

.metafield-product-sku {
  display: none;
}

.blurry--bg {
  z-index: 2;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.product-sku {
  display: none;
}

.blah-gradient {
  background-image: linear-gradient(to top, var(--blah-black), #5e8dc2 63%, var(--blah-sky) 70%, var(--blah-imagines));
  width: 150px;
  height: 150px;
  margin-right: 25px;
  display: inline-block;
}

.blah-sky {
  background-image: url('../images/Blah---Sky-1.jpg');
  background-position: 0 0;
  background-size: cover;
  width: 150px;
  height: 150px;
  margin-right: 25px;
  display: inline-block;
}

.image-blah {
  z-index: 2;
  width: 40vw;
  position: relative;
}

.icon-canonball-header {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.title__wrapper {
  background-image: linear-gradient(to top, var(--blah-sky) 87%, rgba(187, 221, 242, 0));
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: -70px;
  padding-bottom: 4rem;
  display: flex;
  position: relative;
  overflow: visible;
}

.text-title-tagline {
  max-width: 20ch;
}

.image-sheep-bg__wrapper {
  z-index: 0;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  perspective: 700px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: perspective(1300px);
}

.image-sheep__wrapper {
  overflow: visible;
}

.text-span-17 {
  background-image: url('../images/Pencil---underline.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero-subtitle__wrapper {
  position: relative;
}

.image-18 {
  position: absolute;
  top: auto;
  bottom: -12%;
  left: auto;
  right: 2%;
}

.blah-grid__wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 8rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blah-grid__wrapper.margin-top-large {
  grid-column-gap: 40px;
  grid-template-rows: auto;
}

.blah-grid__wrapper.margin-top-xlarge {
  grid-template-columns: 1fr;
}

.blah-grid-copy-photo__wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.danger-image__wrapper {
  position: relative;
}

.gradient-blue {
  background-image: linear-gradient(to top, var(--blah-sky) 21%, rgba(255, 255, 255, 0));
  width: 100%;
  height: 80px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.image-blah-danger {
  max-width: 40vw;
}

.danger-image-blah__wrapper {
  flex-direction: column;
  align-items: center;
  margin-top: -9rem;
  display: flex;
  position: relative;
}

.text-who-will-you-be {
  font-size: 3rem;
}

.section-netflix {
  background-color: var(--blah-imagines);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

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

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

.text-color-dark-blue.margin-bottom-large.max-width-34ch {
  max-width: 31ch;
}

.text-author {
  color: var(--blah-black);
  text-align: left;
  margin-top: 20px;
  margin-bottom: 20px;
}

.author-links__wrapper {
  margin-top: 20px;
}

.author-links__wrapper.footer {
  filter: brightness(700%);
  flex: 1;
  justify-content: flex-end;
  margin-left: auto;
  display: flex;
}

.link__wrapper {
  margin-right: 1rem;
}

.separator-white {
  background-color: var(--blah-white-wool);
  border-radius: 2.1rem;
  width: 100%;
  height: .3rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.testimonial-micro-copy {
  color: var(--blah-white-wool);
  margin-top: .7rem;
  font-size: .9rem;
}

.text-offer-details-bb {
  flex: 1;
  margin-bottom: 1rem;
}

.bb-price {
  text-transform: uppercase;
  font-family: Gotham Rounded, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: none;
}

.text-shipping-date {
  color: var(--blah-sky);
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-family: Gotham Rounded, sans-serif;
  font-size: 1rem;
  display: none;
}

.section-gallery {
  background-color: var(--blah-white-wool);
}

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

.image-19 {
  -webkit-text-stroke-color: var(--blah-white-wool);
}

.section-sasf {
  background-color: var(--blah-sky);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

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

.blah-content__wrapper {
  justify-content: space-around;
  align-items: center;
  width: 80%;
  display: flex;
}

.blah-content__wrapper.right-image {
  flex-direction: row-reverse;
  align-items: center;
}

.image-20.flip {
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.image-21 {
  width: 100%;
}

.section-tv {
  background-color: var(--blah-black);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

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

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

.image-tv {
  max-width: 80vh;
  padding-top: 32px;
  padding-bottom: 32px;
}

.image-tv.tall {
  max-width: 30vw;
}

.step__wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 1rem;
  display: flex;
}

.step-number__wrapper {
  border: 3px solid var(--blah-imagines);
  border-radius: 500%;
  justify-content: center;
  align-items: center;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1rem;
  display: flex;
}

.text-number {
  color: var(--blah-imagines);
  font-family: Gotham Rounded, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
}

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

.image-gallery-mobile, .image-zig-zag__mobile {
  display: none;
}

.image-blah-exclaim {
  max-width: 20rem;
  position: relative;
}

.image-blahoo {
  max-width: 30rem;
}

.blah-blah-limerick {
  max-width: 14ch;
}

.blah-blah-limerick.mobile {
  display: none;
}

.text-h4-lightblue {
  color: var(--blah-imagines);
  text-align: center;
}

.image-book-hero {
  max-width: 80%;
}

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

.hide-desktop {
  display: none;
}

.text-section-title {
  color: var(--blah-black);
  text-align: center;
  max-width: 30ch;
  margin-left: auto;
  margin-right: auto;
}

.text-section-title.text-color-light-blue {
  color: var(--blah-imagines);
}

.section-footer {
  background-color: var(--blah-black);
  padding: 6rem;
}

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

.text-footer {
  color: var(--blah-white-wool);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 4rem;
  font-size: 1rem;
  display: flex;
}

.footer-link {
  color: var(--blah-white-wool);
}

.bb-pricing__wrapper {
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-family: Gotham Rounded, sans-serif;
  font-size: 1rem;
  display: flex;
}

.bg-image-sky {
  z-index: -1;
  width: 100%;
  max-width: none;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.bg-image-sky.mobile {
  object-fit: cover;
  object-position: 50% 50%;
  height: 100%;
}

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

.link-13 {
  background-image: url('../images/Pencil---underline.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  font-family: Cooper Md BT, sans-serif;
}

.section-scrollbar-progress {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(187, 221, 242, .16);
  align-items: flex-end;
  display: none;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.image-23 {
  transform-style: preserve-3d;
  max-width: 100px;
  margin-right: auto;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.image-23.barn {
  float: right;
  max-width: 110px;
  margin-left: auto;
  margin-right: 0;
  transform: rotate(0);
}

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

.lottie-animation-4 {
  max-width: 3rem;
  padding-left: 8px;
  padding-right: 8px;
}

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

.text-signed-by {
  opacity: .5;
  color: var(--blah-black);
  font-family: Gotham Rounded, sans-serif;
  font-size: .7rem;
  font-weight: 700;
  line-height: 1;
}

.list-item {
  line-height: 1;
}

.text-free-shipping-notice {
  background-color: var(--blah-sky);
  color: var(--blah-imagines);
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 8px;
  padding: .4rem;
  font-family: Gotham Rounded, sans-serif;
  font-size: .7rem;
  overflow: hidden;
}

.text-free-shipping-notice.hardback {
  border: 1px solid var(--blah-sky);
  background-color: var(--blah-imagines);
  color: var(--blah-sky);
}

.link-14 {
  color: var(--blah-sky);
  text-decoration: underline;
}

.no-wrap {
  white-space: nowrap;
}

.h2-canon-plus {
  color: #fff;
  margin-top: 0;
  font-size: 24px;
  line-height: 1.25;
}

.h2-canon-plus.end-card {
  flex: 1;
}

.slider-main_component.v2 {
  margin-top: 2rem;
  overflow: hidden;
}

.image-swiper-slide {
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  max-width: none;
  height: 100%;
  overflow: hidden;
}

.image-swiper-slide.audiobook {
  border-radius: 4px;
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}

.tall-end-card {
  background-color: #2b2b2b;
  flex-direction: column;
  grid-template-rows: 70% 30%;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  max-width: none;
  height: 100%;
  max-height: none;
  padding: 1.25rem;
  display: flex;
}

.slider-main_bottom-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  display: flex;
}

.swiper-slide.is-slider-main {
  object-fit: cover;
  border-radius: 4px;
  flex-direction: column;
  flex: none;
  width: 20%;
  max-width: 12rem;
  min-height: 17rem;
  margin-right: 12px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.swiper-slide.is-slider-main.audiobook {
  justify-content: center;
  align-items: center;
  width: 28rem;
  max-width: none;
  height: 28rem;
  min-height: 0;
}

.button-5 {
  color: #fff;
  text-align: center;
  background-color: #198bbc;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 12px 32px;
  font-size: .8rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.button-5.margin-top-small.end-card {
  background-color: #2b2b2b;
  border: 3px solid #ff553e;
  height: 41.7871px;
  font-size: .7rem;
}

.div-block-22 {
  width: 28rem;
  overflow: hidden;
}

.image-24 {
  width: 23rem;
}

.border {
  background-image: linear-gradient(130deg, var(--blah-black), var(--blah-sky) 49%, var(--blah-imagines) 97%, var(--blah-white-wool));
  -webkit-text-fill-color: inherit;
  background-clip: padding-box;
  border-radius: 8px;
  padding: 4px;
  transition: all .7s cubic-bezier(.23, 1, .32, 1);
}

.border:hover {
  transform: scale(1.009);
}

.cta-shipping-notice__wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-width: 16rem;
  display: flex;
}

.width-100 {
  width: 100%;
  position: relative;
}

.judgme {
  z-index: 2;
  color: #000;
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: block;
}

.image-author {
  max-width: 250px;
}

@media screen and (min-width: 1280px) {
  h2, .text-large, .dynamic-add-to-cart-custom.button {
    font-size: 1.88vw;
  }

  .cta-text, .text-shirt-size {
    font-size: 1.1rem;
  }

  .text-title-tagline {
    font-size: 2.25rem;
  }
}

@media screen and (min-width: 1440px) {
  .image-10 {
    max-width: 16vw;
  }

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

  .product__wrapper.hide-old {
    display: none;
  }

  .prodcardgrid {
    justify-content: flex-start;
  }

  .image-blah {
    width: 40vw;
  }

  .text-offer-details-bb {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1920px) {
  p {
    font-size: 1.5vw;
    line-height: 1.3;
  }

  .max-full {
    height: auto;
  }

  .cart_flex-wrapper {
    display: none;
  }

  .dynamic-add-to-cart-custom.button {
    font-size: 2vw;
  }

  .dynamic-product-image-linked {
    max-width: 359px;
  }

  .cart-module__wrapper {
    z-index: 100;
  }

  .text-block-14 {
    font-family: Londrina Solid;
  }

  .quantity-selector__wrapper {
    transform: scale(1.2);
  }

  .section-hero.margin-bottom-large {
    min-height: 0;
  }

  .headline__wrapper {
    background-size: cover;
  }

  .cta-text {
    font-size: 1.6rem;
  }

  .add-to-cart-native {
    text-decoration: none;
  }

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

  .text-book-quote-v2 {
    color: #171717;
    margin-bottom: 0;
    font-size: 2rem;
  }

  .text-book-quote-v2.compare {
    color: #f4889b;
    font-size: 1.5rem;
    text-decoration: none;
  }

  .strikethrough__wrapper {
    margin-top: auto;
    position: relative;
  }

  .strikethrough {
    z-index: 2;
    outline-offset: 0px;
    background-color: #171717;
    outline: 3px solid #555;
    width: 50px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    top: 48%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    transform: rotate(-18deg);
  }

  .prodcardgrid {
    grid-auto-columns: 1fr;
    max-width: 1280px;
  }

  .pricing-v2 {
    color: #171717;
    margin-bottom: 0;
    font-size: 2rem;
  }

  .h3-mm-reader {
    font-size: 3rem;
  }

  .h3-mm-reader.price {
    font-size: 2rem;
  }

  .porfolio---item {
    font-family: Mpressinteractive mpigothicextracondensed;
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
  }

  .cta-button-v2 {
    max-width: 320px;
    padding-left: 3.5rem;
    padding-right: 3.5rem;
    font-size: 1.5rem;
  }

  .section-products-v2 {
    margin-bottom: 12rem;
  }

  .section-products-v2.padding-vertical-large {
    margin-bottom: 0;
  }

  .image-product-photos--v2 {
    z-index: 2;
    position: relative;
  }

  .prodcard-v2 {
    max-width: 40ch;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-shirt-size {
    width: 8rem;
    height: 8rem;
  }

  .text-shirt-size {
    font-size: 1.2rem;
  }

  .text-subtotal {
    font-size: 1.7rem;
  }

  .text-cart-product-title {
    font-size: 3rem;
  }

  .blurry--bg {
    z-index: 9;
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .product-sku {
    display: none;
  }

  .image-sheep {
    width: 50vw;
    max-width: none;
  }

  .image-blah {
    width: 30vw;
  }

  .title__wrapper {
    margin-top: -10vh;
    padding-top: 0;
  }

  .image-sheep-bg__wrapper {
    grid-template-rows: auto;
  }

  .image-sheep__wrapper {
    overflow: hidden;
  }

  .blah-grid__wrapper.margin-top-large {
    grid-column-gap: 4rem;
  }

  .text-offer-details-bb {
    margin-top: 20px;
  }

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

  .blah-blah-title {
    width: 40vw;
    max-width: none;
  }

  .step__wrapper {
    padding-top: 1rem;
  }

  .blah-blah-limerick.mobile {
    display: none;
  }

  .bg-image-sky.mobile {
    object-position: 50% 50%;
    top: 0%;
    bottom: 0%;
    left: auto;
    right: 0%;
  }

  .button-5 {
    font-size: 1rem;
  }
}

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

  h4 {
    color: var(--blah-black);
  }

  p {
    margin-bottom: 20px;
  }

  .fs-styleguide-sidebar-links {
    z-index: 9;
    text-align: left;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    top: 0%;
    bottom: 0%;
    left: auto;
    right: 0%;
  }

  .hide {
    display: none;
    top: 0%;
    bottom: 0%;
    right: -25%;
  }

  .padding-vertical-medium {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .padding-vertical-large {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer_bottom {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .footer-social-link {
    margin-left: 0;
    margin-right: 20px;
  }

  .footer_content {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .home-hero_image-wrapper {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .fs-styleguide-nav-button {
    z-index: 2;
    background-color: #dadada;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
    position: fixed;
    top: 10px;
    bottom: auto;
    left: auto;
    right: 10px;
  }

  .fs-styleguide-nav-button.w--open {
    background-color: #1b1b1b;
  }

  .page-padding {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .footer_navigation-wrapper {
    margin-top: 0;
  }

  .fs-styleguide-nav-button-inner {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
  }

  .navigation {
    padding: 25px 30px;
  }

  .navigation-wrap {
    background-color: #fff;
    justify-content: space-between;
  }

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

  .button-4.cc-contact-us {
    display: block;
  }

  .pdp_vendor, .pdp_price, .pdp_product-title {
    color: #000;
  }

  .pdp_compare-price {
    color: #c79a60;
  }

  .cart-module__wrapper {
    min-width: 90vw;
  }

  .nav-link {
    order: 1;
    font-size: 14px;
  }

  .container-style-guide {
    flex-direction: column;
    padding-left: 3em;
    padding-right: 3em;
  }

  .cta-button {
    max-width: 16rem;
  }

  .image-10 {
    max-width: 26vw;
  }

  .cta-text {
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .add-to-cart-native {
    text-align: center;
    padding-left: 1.5em;
    padding-right: 1.5em;
    font-size: 1em;
  }

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

  .prodcardgrid {
    grid-row-gap: 1.5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    max-width: 50ch;
  }

  .h3-mm-reader {
    font-size: 1.5rem;
  }

  .product-option__wrapper-v2 {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .image-product-photos--v2 {
    max-width: 370px;
  }

  .prodcard-v2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    min-width: 300px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .praise-card__wrapper {
    width: 240px;
  }

  .text-shirt-size {
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .image-book-to-buy {
    max-width: 15rem;
  }

  .title__wrapper {
    background-image: linear-gradient(to top, var(--blah-sky) 87%, rgba(187, 221, 242, 0));
    margin-top: -60px;
  }

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

  .blah-grid__wrapper.margin-top-large {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .blah-grid__wrapper.margin-top-xlarge {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    margin-top: 0;
    display: grid;
  }

  .blah-grid-product-copy__wrapper {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .danger-copy__wrapper {
    padding-top: 4rem;
  }

  .image-blah-danger {
    max-width: 60vw;
  }

  .danger-image-blah__wrapper {
    margin-top: -16rem;
  }

  .text-offer-details-bb {
    max-width: 50ch;
  }

  .blah-blah-title {
    max-width: 90%;
  }

  .blah-content__wrapper {
    flex-direction: column-reverse;
    justify-content: center;
  }

  .blah-content__wrapper.right-image {
    flex-direction: column-reverse;
  }

  .image-20 {
    max-width: 50%;
  }

  .image-tv {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .bg-image-sky.mobile {
    object-position: 80% 100%;
  }

  .swiper-slide.is-slider-main {
    width: 30%;
    max-height: 20.8rem;
  }

  .button-5.margin-top-small.end-card {
    margin-top: 8px;
  }
}

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

  h2 {
    font-size: 32px;
  }

  h3 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 24px;
  }

  h4 {
    text-align: center;
  }

  .margin-bottom-small {
    margin-bottom: 12px;
  }

  .margin-bottom-large {
    margin-bottom: 48px;
  }

  .margin-bottom-medium {
    margin-bottom: 24px;
  }

  .margin-bottom-xlarge {
    margin-bottom: 80px;
  }

  .grid-row {
    grid-column-gap: 0px;
    grid-row-gap: 16px;
    grid-auto-flow: row;
  }

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

  .margin-left-small {
    margin-left: 4px;
  }

  .grid-2-col.margin-vertical-xlarge {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
    margin-top: 4rem;
    margin-bottom: 0;
  }

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

  .container.cart_contain {
    flex-direction: column;
    display: flex;
  }

  .container.cart_subtotal-contain {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
    display: flex;
  }

  .margin-right-medium {
    margin-right: 8px;
  }

  .margin-top-large {
    margin-top: 48px;
  }

  .margin-top-xlarge {
    margin-top: 80px;
  }

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

  .text-large {
    font-size: 20px;
  }

  .home-hero_image-wrapper {
    max-width: 40vh;
  }

  .fs-styleguide-nav-button {
    z-index: 2;
  }

  .page-padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer_navigation-wrapper {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-social-row {
    margin-top: 40px;
  }

  .navigation {
    padding: 20px 30px;
  }

  .cart-items-wrapper {
    overflow: auto;
  }

  .cart_flex-wrapper {
    width: auto;
  }

  .section {
    margin-left: 15px;
    margin-right: 15px;
  }

  .columns-2 {
    flex-direction: column;
  }

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

  .cart_price-subtotal {
    font-size: 1.25rem;
  }

  .cart-module__wrapper {
    min-width: 93vw;
    max-height: 90vh;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .colorbox {
    margin-bottom: 15px;
    margin-left: 10px;
    margin-right: 15px;
  }

  .colorbox.blackcolor {
    margin-left: 10px;
  }

  .flex3col {
    width: 100%;
  }

  .flexcolwrap {
    flex-direction: column;
  }

  .flex2col {
    width: 100%;
  }

  .cart-title-and-exit__wrapper {
    padding: 0 0 10px;
  }

  .image-10 {
    max-width: 23vw;
  }

  .section-hero.margin-bottom-large {
    height: auto;
    min-height: 0;
    max-height: 100vh;
  }

  .headline__wrapper {
    overflow: hidden;
  }

  .cta-text {
    font-size: .9em;
  }

  .add-to-cart-native {
    text-align: center;
    align-items: center;
  }

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

  .cart-wrapper-v2 {
    z-index: 99;
    overflow: auto;
  }

  .product-padding {
    padding-left: 59px;
    padding-right: 59px;
  }

  .cta-button-v2 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .section-challenge {
    padding-bottom: 4rem;
  }

  .section-products-v2.padding-bottom-large {
    padding-bottom: 2rem;
  }

  .product-option__wrapper-v2 {
    grid-template-columns: 1fr;
  }

  .image-product__wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-product-photos--v2 {
    max-width: 450px;
  }

  .prodcard-v2 {
    width: 90%;
  }

  .praise-card__wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    grid-auto-columns: auto;
    width: 42vw;
    height: 35rem;
    display: grid;
  }

  .praise-copy__wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .text-shirt-size {
    font-size: .9em;
  }

  .subtotal__wrapper {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .text-cart-product-title {
    margin-top: 0;
  }

  .blah-gradient, .blah-sky {
    margin-bottom: 15px;
    margin-left: 10px;
    margin-right: 15px;
  }

  .image-sheep {
    max-width: 120%;
  }

  .image-sheep.left {
    object-fit: contain;
    width: 100%;
    height: auto;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

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

  .text-title-tagline {
    margin-top: 40px;
  }

  .image-sheep-bg__wrapper {
    max-width: 160%;
  }

  .image-sheep__wrapper {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .image-18 {
    max-width: 40%;
  }

  .blah-grid__wrapper.margin-top-xlarge {
    margin-top: 4rem;
  }

  .blah-grid-product-copy__wrapper {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .blah-grid-copy-photo__wrapper {
    display: none;
  }

  .danger-image__wrapper {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .image-blah-danger {
    max-width: 70vw;
  }

  .danger-image-blah__wrapper {
    margin-top: -10rem;
  }

  .netflix__wrapper {
    z-index: 1;
    margin-top: -6rem;
    position: relative;
  }

  .text-color-dark-blue.margin-bottom-large {
    margin-top: 0;
  }

  .text-author {
    text-align: center;
    font-size: 2.25rem;
  }

  .author-links__wrapper {
    opacity: .3;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .author-links__wrapper.footer {
    opacity: 1;
    filter: brightness(700%);
    margin-left: 0;
  }

  .text-offer-details-bb {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .bb-price {
    margin-bottom: 0;
  }

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

  .section-gallery.padding-vertical-large.extra-mobile-padding {
    padding-bottom: 80px;
  }

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

  .blah-blah-title {
    max-width: 80%;
  }

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

  .blah-content__wrapper.left-image {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .blah-content__wrapper.right-image {
    flex-direction: column-reverse;
  }

  .image-gallery {
    width: 100vw;
    max-width: none;
    display: none;
  }

  .image-sheep-runs {
    max-width: 140%;
  }

  .image-tv {
    max-width: 80vw;
  }

  .image-tv.tall {
    max-width: 30vh;
  }

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

  .image-gallery-mobile {
    width: 100vw;
    max-width: none;
    display: block;
  }

  .image-zig-zag__mobile {
    max-width: 90%;
    display: block;
  }

  .blah-blah-limerick {
    margin: 4rem auto 0;
    font-size: 1.5rem;
  }

  .blah-blah-limerick.mobile {
    display: block;
  }

  .section-footer {
    padding: 4rem;
  }

  .footer__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .text-footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 0;
  }

  .bg-image-sky {
    display: none;
  }

  .bg-image-sky.mobile {
    z-index: 1;
    object-fit: cover;
    object-position: 60% 100%;
    height: 100%;
    display: block;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .bg__wrapper {
    z-index: -1;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .h3-mobile {
    max-width: 19ch;
  }

  .image-23 {
    max-width: 70px;
  }

  .lottie-animation-4 {
    position: absolute;
    left: auto;
    right: 10%;
  }

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

  .h2-canon-plus.end-card {
    font-size: 16px;
  }

  .swiper-slide.is-slider-main {
    border-radius: 8px;
    width: auto;
    max-width: 9rem;
    height: auto;
    min-height: 0;
    max-height: 14rem;
    margin-right: 12px;
    overflow: hidden;
  }

  .swiper-slide.is-slider-main.audiobook {
    max-height: none;
  }

  .button-5.margin-top-small.end-card {
    padding-left: 12px;
    padding-right: 12px;
  }
}

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

  h4 {
    text-align: left;
  }

  h5 {
    color: #fff;
  }

  p {
    color: #1a1a1a;
    margin-top: 10px;
  }

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

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

  .grid-3-col {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

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

  .container.cart_contain {
    overflow: auto;
  }

  .page-padding {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .text-field-2, .form-block-2 {
    font-family: Gotham Rounded, sans-serif;
  }

  .navigation {
    padding: 12px 10px;
  }

  .navigation-wrap {
    justify-content: space-between;
  }

  .tab-link_product-details.w--current {
    color: #e4a24e;
    background-color: #000;
  }

  .container-6 {
    padding-top: 0;
  }

  .cart-module__wrapper {
    display: flex;
  }

  .cta-button {
    font-size: 15px;
  }

  .quantity-selector__wrapper {
    justify-content: flex-start;
    width: 90px;
  }

  .product-in-cart-data__wrapper {
    justify-content: space-around;
    width: 100%;
  }

  .image-10 {
    max-width: 18vw;
  }

  .pricing-cart_wrapper {
    margin-bottom: 20px;
  }

  .headline__wrapper {
    object-fit: fill;
    overflow: hidden;
  }

  .cta-text {
    text-align: center;
    white-space: pre-line;
    font-size: 14px;
  }

  .add-to-cart-native {
    align-content: center;
    justify-content: space-around;
    align-items: center;
    width: auto;
    max-width: 28em;
    padding: 12px 16px;
    font-size: .8em;
  }

  .cart-wrapper-v2 {
    background-color: rgba(0, 0, 0, 0);
  }

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

  .product-padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  .h3-mm-reader {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .h3-mm-reader.price {
    text-align: left;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
  }

  .h3-mm-reader.price.no-margin {
    margin-top: 0;
    margin-bottom: 0;
  }

  .h3-mm-reader.price.no-margin.price-compare {
    color: var(--blah-sky);
  }

  .portfolio---image {
    object-fit: contain;
    object-position: 50% 50%;
  }

  .portfolio---text {
    font-size: 30px;
  }

  .cta-button-v2 {
    padding-left: .9rem;
    padding-right: .9rem;
    font-size: 15px;
  }

  .section-products-v2 {
    margin-top: 60px;
  }

  .section-products-v2.padding-vertical-large {
    margin-top: 0;
  }

  .image-product__wrapper {
    height: auto;
    min-height: 400px;
    padding: 1rem;
  }

  .image-product-photos--v2 {
    width: 100%;
    max-width: none;
    max-height: none;
  }

  .prodcard-v2 {
    padding-left: 0;
    padding-right: 0;
  }

  .swiper-wrapper.is-slider-main {
    margin-top: 0;
    margin-bottom: 0;
  }

  .praise-card__wrapper {
    align-items: start;
    width: 74vw;
    height: 40rem;
  }

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

  .text-shirt-size {
    text-align: center;
    white-space: pre-line;
    font-size: 14px;
  }

  .pricing-title-qty__wrapper {
    padding-left: .5rem;
  }

  .cart-product-image__wrapper {
    padding: .5rem;
  }

  .text-cart-product-title {
    word-break: normal;
    margin-bottom: 0;
    font-size: 1.25rem;
    line-height: 1;
  }

  .qty-gradient__wrapper {
    font-family: Gotham Rounded, sans-serif;
  }

  .image-sheep {
    max-width: 160%;
  }

  .image-blah {
    width: 70vw;
  }

  .title__wrapper {
    margin-top: -40px;
    padding-top: 2rem;
    padding-bottom: 0;
  }

  .text-title-tagline {
    font-size: 1.25rem;
  }

  .image-sheep-bg__wrapper {
    max-width: 100%;
  }

  .image-18 {
    max-width: 40%;
    bottom: -7%;
  }

  .blah-grid__wrapper.margin-top-xlarge {
    grid-template-columns: 100%;
  }

  .blah-grid-product-copy__wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .blah-grid-copy-photo__wrapper {
    display: none;
  }

  .danger-image__wrapper {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .image-blah-danger {
    max-width: 90vw;
  }

  .danger-image-blah__wrapper {
    margin-top: -8rem;
  }

  .text-who-will-you-be {
    white-space: break-spaces;
    font-size: 2.5rem;
  }

  .text-offer-details-bb {
    width: auto;
    max-width: 40ch;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    font-size: 1rem;
  }

  .bb-price {
    color: var(--blah-black);
    margin-top: 0;
    margin-bottom: 0;
  }

  .image-sheep-runs {
    max-width: 140%;
  }

  .image-tv {
    max-width: 100vw;
    padding-left: 10px;
    padding-right: 10px;
  }

  .image-zig-zag__mobile {
    max-width: 100%;
  }

  .image-blah-exclaim {
    width: auto;
    max-width: 100%;
  }

  .image-blahoo {
    max-width: 120%;
    margin-left: 14vw;
  }

  .blah-blah-limerick {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .image-book-hero {
    max-width: 70%;
  }

  .section-footer {
    padding: 4rem 1rem;
  }

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

  .bg-image-sky.mobile {
    object-position: 40% 100%;
  }

  .h3-mobile {
    max-width: 19ch;
  }

  .link-13 {
    background-image: url('../images/Pencil---underline.svg');
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: contain;
    font-family: Cooper Md BT, sans-serif;
  }

  .section-scrollbar-progress {
    padding-top: 20px;
  }

  .image-23 {
    max-width: 50px;
  }

  .image-23.barn {
    max-width: 70px;
  }

  .lottie-animation-4 {
    top: 90%;
    right: -9%;
  }

  .form-3 {
    font-family: Gotham Rounded, sans-serif;
  }

  .h2-canon-plus.end-card {
    font-size: 16px;
  }

  .image-swiper-slide {
    overflow: visible;
  }

  .tall-end-card {
    grid-template-rows: 60% 30%;
    padding: .65rem;
    display: block;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .slider-main_bottom-wrapper {
    padding-left: 8px;
    padding-right: 8px;
  }

  .swiper-slide.is-slider-main.audiobook {
    width: 20rem;
    height: 20rem;
  }

  .button-5.margin-top-small.end-card {
    position: static;
  }

  .div-block-22 {
    width: 20rem;
  }
}

#w-node-_826ae307-e3b3-1fc5-c98e-0fa754a9da20-dd559db6 {
  align-self: end;
  justify-self: start;
}

#w-node-ab5e6509-6755-f0e9-9242-611b6264b7de-dd559db6 {
  align-self: end;
  justify-self: end;
}

#w-node-_572de578-9d3b-9449-1e41-aebab3039267-dd559db6 {
  justify-self: center;
}

#w-node-ce133433-e48f-e8cc-c301-b4e53f6e8871-dd559db6 {
  align-self: center;
  justify-self: center;
}

#w-node-_1ab75f7c-18d2-91c8-82f2-27ef922ca242-dd559db6 {
  justify-self: end;
}

#w-node-_1ab75f7c-18d2-91c8-82f2-27ef922ca24b-dd559db6 {
  align-self: center;
  justify-self: center;
}

#w-node-eb79de09-dc5e-5e2c-0138-1020b7aa105a-dd559db6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f52c29e7-4d24-19df-c131-ce865a9ea15c-dd559db6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_6100d6bc-a380-8da7-8abc-e07ad480a3f6-dd559db6 {
  align-self: center;
  justify-self: center;
}

#w-node-fb84afd9-1615-55a6-2b7a-150a3645a938-dd559db6, #w-node-_865fa033-a19c-f691-711e-3390f5694d93-dd559db6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-db70c228-a2b7-4d32-7d6a-74b48e96843f-dd559db6, #w-node-c4199548-fdf9-cfba-04a5-e9253f263292-dd559db6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f106442c-38a6-5ddc-a29a-ab3b3da0d069-dd559db6 {
  align-self: start;
}

#w-node-_83f15b8c-db0b-962a-ec20-3903f75ea6c4-dd559db6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_83f15b8c-db0b-962a-ec20-3903f75ea6c5-dd559db6 {
  align-self: start;
}

#w-node-f106442c-38a6-5ddc-a29a-ab3b3da0d04a-dd559db6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-f106442c-38a6-5ddc-a29a-ab3b3da0d04b-dd559db6 {
  align-self: start;
}

#w-node-f9eebe43-8569-ee6a-96ba-e5e7bc806091-dd559db6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_491460cd-b16d-829e-e3c9-ae19295dbc4d-dd559db6, #w-node-e04938f7-ea15-29a3-85ec-32a722a25e5f-dd559db6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ceb8d5b2-9520-bc7d-55a6-54d8058252cd-dd559db6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

@media screen and (min-width: 1920px) {
  #w-node-c4199548-fdf9-cfba-04a5-e9253f263292-dd559db6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
    justify-self: center;
  }

  #w-node-f106442c-38a6-5ddc-a29a-ab3b3da0d069-dd559db6, #w-node-f106442c-38a6-5ddc-a29a-ab3b3da0d06b-dd559db6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_83f15b8c-db0b-962a-ec20-3903f75ea6c4-dd559db6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
    justify-self: center;
  }

  #w-node-_83f15b8c-db0b-962a-ec20-3903f75ea6c5-dd559db6, #w-node-_83f15b8c-db0b-962a-ec20-3903f75ea6cc-dd559db6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-f106442c-38a6-5ddc-a29a-ab3b3da0d04a-dd559db6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
    justify-self: center;
  }

  #w-node-f106442c-38a6-5ddc-a29a-ab3b3da0d04b-dd559db6, #w-node-f106442c-38a6-5ddc-a29a-ab3b3da0d04d-dd559db6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_572de578-9d3b-9449-1e41-aebab3039267-dd559db6 {
    justify-self: center;
  }

  #w-node-ce133433-e48f-e8cc-c301-b4e53f6e8871-dd559db6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
    justify-self: center;
  }

  #w-node-_1ab75f7c-18d2-91c8-82f2-27ef922ca242-dd559db6 {
    justify-self: center;
  }

  #w-node-_1ab75f7c-18d2-91c8-82f2-27ef922ca24b-dd559db6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
  }

  #w-node-db70c228-a2b7-4d32-7d6a-74b48e96843f-dd559db6 {
    grid-column: span 1 / span 1;
  }

  #w-node-_83f15b8c-db0b-962a-ec20-3903f75ea6cc-dd559db6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
  }

  #w-node-f106442c-38a6-5ddc-a29a-ab3b3da0d04d-dd559db6 {
    justify-self: center;
  }

  #w-node-_16fcce38-1d30-ae9d-2dfc-8bf078d2436d-dd559db6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-ceb8d5b2-9520-bc7d-55a6-54d8058252cd-dd559db6 {
    grid-area: 3 / 1 / 4 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_826ae307-e3b3-1fc5-c98e-0fa754a9da20-dd559db6 {
    align-self: start;
  }
}


@font-face {
  font-family: 'Cooper Md BT';
  src: url('../fonts/CooperMdBTMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cooper Md BT';
  src: url('../fonts/CooperMdBTMediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham Rounded';
  src: url('../fonts/Gotham-Rounded-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}