.loader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(254, 209, 65, 0.99);
  display: grid;
  place-content: flex-end;
  padding-right: 2.5em;
  padding-bottom: 2.5em;

  html.has-seq-ready.fonts-loaded.is-ready & {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

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

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.loader::before {
  content: "";
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: color-burn;
  background-image: url(https://cdn.prod.website-files.com/686c09a33211842a0ac0183d/68b0b1e2ae528702c898a058_pattern.png);
  background-position: 0 0;
  background-size: 7rem 7rem;
  position: absolute;
  inset: 0%;
}

.loader::after {
  content: "";
  height: 1.25em;
  width: 1.25em;
  border: 0.125em solid #C24628;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  transition: opacity 0.25s ease;
}

html.has-seq-ready .loader::after {
  opacity: 0;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* ------------------------- Scaling System by Osmo [https://osmo.supply/] -------------------------  */

/* Desktop */
:root {
  --size-unit: 16;
  /* body font-size in design - no px */
  --size-container-ideal: 1440;
  /* screen-size in design - no px */
  --size-container-min: 992px;
  --size-container-max: 2560px;
  --size-container: clamp(var(--size-container-min), 100vw, var(--size-container-max));
  --size-font: calc(var(--size-container) / (var(--size-container-ideal) / var(--size-unit)));

  /* New Color Palette */
  --white: white;
  --bg-pale: #FDF38A;
  --dark-green: #C24628;
  --bg-light: #FED141;
  --light-green: #F1B424;

  /* Extended Palette */
  --yellow-dark: #F1B424;
  --yellow-medium: #FED141;
  --yellow-light: #FDF38A;
  --blue-dark: #0086BF;
  --blue-medium: #4698CA;
  --blue-light: #8DC8E8;
  --red-dark: #C24628;
  --red-medium: #CF6F5D;
  --red-light: #D99089;
  --green-dark: #93C90F;
  --green-medium: #C0DF16;
  --green-light: #F0E991;
  --orange-dark: #D86018;
  --orange-medium: #ED8B00;
  --orange-light: #FFB549;
  --deep-forest: #1B4332;
}

/* Tablet */
@media screen and (max-width: 991px) {
  :root {
    --size-container-ideal: 640;
    /* screen-size in design - no px */
    --size-container-min: 768px;
    --size-container-max: 991px;
  }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
  :root {
    --size-container-ideal: 550;
    --size-container-min: 480px;
    --size-container-max: 767px;
  }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
  :root {
    --size-container-ideal: 390;
    --size-container-min: 320px;
    --size-container-max: 479px;
  }
}

body {
  font-size: var(--size-font);
}

.container {
  max-width: var(--size-container);
}

.container.medium {
  max-width: calc(var(--size-container) * 0.85);
}

.container.small {
  max-width: calc(var(--size-container) * 0.7);
}

.benefit-table-title-wrapper {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  align-items: center;
  width: 100%;
}

.benefit-table-title-wrapper .benefit-table-title:first-child {
  grid-column: 1;
}

.benefit-table-title-wrapper .benefit-table-title:nth-child(2) {
  grid-column: 2;
  justify-self: center;
}

.benefit-table-title-wrapper .benefit-table-title:nth-child(3) {
  grid-column: 3;
  justify-self: center;
}

.benefit-table-item {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  align-items: center;
  width: 100%;
}

.benefit-table-item .benefit-item-title {
  grid-column: 1;
}

.benefit-table-item .benefit-checker-inner {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
  justify-items: center;
}

.benefit-table-item .benefit-item-check,
.benefit-table-item .benefit-item-x {
  width: 100%;
  justify-content: center;
}

/* ====================== NEW COLOR SCHEME OVERRIDES ====================== */

/* Body and Main Backgrounds */
.body {
  background-color: var(--bg-light) !important;
}

/* Hero Section */
.hero-section,
.stage {
  background-color: var(--bg-light) !important;
}

/* Text Colors */
h1,
h2,
h3,
.hero-heading,
.insider-heading,
.benefit-heading,
.footer-heading,
.heading,
.insider-subheading,
.testimonial-heading,
.stage-fact-number,
.stage-fact-unit,
.stage-fact-text,
.fact-number,
.fact-unit,
.fact-title,
.benefit-item-title,
.benefit-table-title,
.footer-info-text,
.footer-bottom-text,
.footer-credits-text,
.shipping-link,
.credits-link,
.rating-text,
.paragraph,
.flavour-title,
.flavour-subline,
.flavour-paragraph,
.flavour-content-slider-title {
  color: var(--dark-green) !important;
}

/* White text elements */
.hero-heading .white-span,
.big-heading,
.testimonial-big-heading,
.footer-product-heading,
.statement-heading,
.button-text,
.testimonial-item-heading,
.testimonial-item-text,
.testimonial-client-name {
  color: var(--white) !important;
}

.footer-product .button-text {
  color: #000000 !important;
}

.footer-product-heading,
.footer-product-heading span {
  color: #1B4332 !important;
}

/* Navbar fixed overlay */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.stage-container {
  padding-top: 5em !important;
}

.stage-logo {
  margin-top: 1em !important;
}

.stage-visual {
  min-height: 600px !important;
  height: 100% !important;
}

.hero-heading .split-line:nth-of-type(3),
.hero-heading .split-line:last-child {
  color: var(--deep-forest) !important;
}

/* Navbar text - black */
.nav-link,
.nav-link .nav-text,
.navbar .button-bg,
.navbar .button-text {
  color: #000000 !important;
}

/* Light accent color */
.light-green-span,
.flavour-content-slider-subline {
  color: var(--orange-medium) !important;
}

/* Buttons */
.button-bg {
  background-color: var(--dark-green) !important;
}

.button-bg.white-bg {
  background-color: var(--bg-pale) !important;
}

.button-bg.light-bg {
  background-color: var(--white) !important;
}

.button-cycle-bg {
  background-color: var(--dark-green) !important;
}

.button-cycle-bg.white-bg {
  background-color: var(--bg-pale) !important;
}

.button-cycle-bg.light-bg {
  background-color: var(--white) !important;
}

/* Nav elements */
.nav-text {
  background-color: rgba(0, 0, 0, 0.1) !important;
}

.league-script-regular {
  font-family: "League Script", cursive;
  font-weight: 800;
  font-style: normal;
  font-size: large;
}

/* .stage-deco-text {
  max-width: none;
  width: auto;
  word-spacing: 0.1em;
  letter-spacing: 0.02em;
} */

.stage-deco-text .dynamic-location {
  font-weight: bold;
}

.social-media-circle {
  background-color: var(--bg-pale) !important;
}

.social-media-circle.is-white {
  background-color: var(--white) !important;
}

/* Insider Section */
.insider-section {
  background-color: var(--bg-light) !important;
  margin-top: 0 !important;
}

/* Benefit Section */
.benefit-section {
  background-color: var(--white) !important;
}

.benefit-item-check {
  background-color: var(--bg-pale) !important;
}

/* Testimonial Section */
.testimonial-section {
  background-color: var(--bg-light) !important;
}

.testimonial-slider-item {
  border-color: var(--white) !important;
}

.testimonial-slider-item.active,
.testimonial-slider-item-wrap.is-active .testimonial-slider-item {
  background-color: var(--white) !important;
  color: var(--dark-green) !important;
}

.testimonial-slider-item.active .testimonial-item-heading,
.testimonial-slider-item.active .testimonial-item-text,
.testimonial-slider-item.active .testimonial-client-name,
.testimonial-slider-item-wrap.is-active .testimonial-slider-item .testimonial-item-heading,
.testimonial-slider-item-wrap.is-active .testimonial-slider-item .testimonial-item-text,
.testimonial-slider-item-wrap.is-active .testimonial-slider-item .testimonial-client-name {
  color: var(--dark-green) !important;
}

.testimonial-slider-button {
  background-color: var(--white) !important;
}

/* Stage/Hero Facts */
.stage-fact,
.fact-cycle {
  background-color: var(--bg-pale) !important;
  border-color: var(--bg-light) !important;
}

/* Statement Cards */
.statement-card-wrapper {
  background-color: var(--bg-light) !important;
}

/* Payment Section */
.payment-section {
  background-color: var(--bg-light) !important;
}

.payment-method-item {
  background-color: var(--white) !important;
}

/* Footer */
.footer-info {
  background-color: var(--white) !important;
  border-color: var(--bg-pale) !important;
}

.footer-credits-inner {
  background-color: var(--white) !important;
}

/* Lines and Dividers */
.sub-line,
.line {
  background-color: var(--dark-green) !important;
}

.line.white,
.testimonial-line.white {
  background-color: var(--white) !important;
}

/* Testimonial Inner Cards */
.testimonial-inner {
  background-color: var(--white) !important;
}

.testimonial-media.w-embed {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.testimonial-media.w-embed video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-text {
  color: var(--dark-green) !important;
}

/* Flavour Section */
.flavour {
  background-color: var(--bg-light) !important;
  color: var(--dark-green) !important;
}

.flavour-slider-button {
  background-color: var(--white) !important;
}

/* Footer */
.footer {
  background-color: var(--white) !important;
  overflow-x: hidden !important;
  position: relative !important;
  max-width: 100vw !important;
}

.footer-full-height-container {
  padding: 1.5em 2.5em !important;
  min-height: auto !important;
  position: relative !important;
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

.footer-content {
  min-height: auto !important;
  padding-bottom: 2em !important;
  max-width: 100% !important;
}

.footer-content-wrapper {
  padding-left: 0 !important;
  align-items: flex-start !important;
  max-width: 100% !important;
}

.footer-fact-wrapper {
  max-width: 100% !important;
}

.footer-heading {
  max-width: 100% !important;
  word-wrap: break-word !important;
}

.footer-info {
  max-width: 100% !important;
}

.footer-logo {
  position: absolute !important;
  right: 0 !important;
  left: auto !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 400px !important;
  height: 400px !important;
  object-fit: contain !important;
  object-position: center !important;
  z-index: 100 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  image-rendering: auto !important;
  margin-right: 2.5em !important;
  max-width: calc(100vw - 5em) !important;
}

@media screen and (max-width: 991px) {
  .footer-full-height-container {
    padding: 1.5em 1.5em !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .footer-content {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-bottom: 1.5em !important;
  }

  .footer-fact-wrapper {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 1.5em !important;
    order: 1 !important;
  }

  .footer-heading {
    order: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 1em !important;
  }

  .footer-info {
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .footer-info.is-first {
    order: 2 !important;
  }

  .footer-info.is-second {
    order: 3 !important;
  }

  .footer-content-wrapper {
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-top: 1.5em !important;
  }

  .footer-logo {
    position: relative !important;
    right: auto !important;
    left: 0 !important;
    top: auto !important;
    transform: none !important;
    width: 300px !important;
    height: 300px !important;
    margin: 2em 0 0 0 !important;
    order: 3 !important;
    max-width: 100% !important;
    display: block !important;
  }

  .footer-bottom {
    order: 4 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 1.5em !important;
  }
}

@media screen and (max-width: 767px) {
  .footer-full-height-container {
    padding: 1em 1em !important;
  }

  .footer-content {
    padding-bottom: 1em !important;
  }

  .footer-fact-wrapper {
    gap: 1em !important;
  }

  .footer-heading {
    font-size: 2.5em !important;
    margin-bottom: 0.75em !important;
  }

  .footer-info {
    width: 100% !important;
    max-width: 100% !important;
  }

  .footer-content-wrapper {
    padding-top: 1em !important;
  }

  .footer-logo {
    width: 250px !important;
    height: 250px !important;
    margin: 1.5em 0 0 0 !important;
    left: 0 !important;
  }
}

@media screen and (max-width: 479px) {
  .footer-full-height-container {
    padding: 0.75em 0.75em !important;
  }

  .footer-heading {
    font-size: 2em !important;
  }

  .footer-logo {
    width: 200px !important;
    height: 200px !important;
    margin: 1em 0 0 0 !important;
    left: 0 !important;
  }

  .footer-bottom {
    margin-top: 1em !important;
  }
}

/* Sequence Section */
.sequence-title {
  color: var(--dark-green) !important;
}

/* Rating Stars */
.rating-star-wrap svg,
.testimonial-star-wrap svg {
  fill: var(--yellow-dark) !important;
}

/* Marquee */
.marquee {
  z-index: 10 !important;
}

/* Marquee Text */
.marquee-text-svg text {
  fill: var(--bg-light) !important;
}

/* Marquee Overlay */
.marquee-overlay {
  background-color: var(--bg-light) !important;
  z-index: -1 !important;
}

/* Selection Color */
::selection {
  color: var(--bg-pale) !important;
  background: var(--dark-green) !important;
}

::-moz-selection {
  color: var(--bg-pale) !important;
  background: var(--dark-green) !important;
}

.testimonial-heading {
  color: #000000 !important;
}

@media screen and (max-width: 991px) {
  .stage-content {
    grid-row-gap: 1em !important;
    grid-column-gap: 1em !important;
  }

  .stage-wrap {
    padding-top: 0.5em !important;
  }

  .stage-left {
    margin-bottom: 3em !important;
  }

  .stage-visual {
    margin-bottom: 2em !important;
    min-height: 550px !important;
  }

  .stage-right {
    padding-top: 4em !important;
    padding-bottom: 1.5em !important;
    margin-top: 2em !important;
  }

  .stage-container {
    padding-top: 6em !important;
  }

  .stage-logo {
    margin-top: 1.5em !important;
    min-height: 35vh !important;
  }

  .stage-logo-svg {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    opacity: 1 !important;
  }

  .stage-deco-text {
    margin-bottom: 1.5em !important;
  }
}

@media screen and (max-width: 767px) {
  .stage-content {
    grid-row-gap: 0.75em !important;
    grid-column-gap: 0.75em !important;
  }

  .stage-wrap {
    padding-top: 0.25em !important;
  }

  .stage-left {
    margin-bottom: 3.5em !important;
  }

  .stage-visual {
    margin-bottom: 2.5em !important;
    min-height: 500px !important;
  }

  .stage-right {
    padding-top: 3em !important;
    padding-bottom: 1em !important;
    margin-top: 2.5em !important;
  }

  .stage-container {
    padding-top: 5.5em !important;
  }

  .stage-logo {
    margin-top: 1.5em !important;
    min-height: 35vh !important;
  }

  .stage-logo-svg {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    opacity: 1 !important;
  }

  .stage-deco-text {
    margin-bottom: 2em !important;
  }
}

@media screen and (max-width: 479px) {
  .stage-content {
    grid-row-gap: 0.5em !important;
    grid-column-gap: 0.5em !important;
  }

  .stage-wrap {
    padding-top: 0 !important;
  }

  .stage-left {
    margin-bottom: 4em !important;
  }

  .stage-visual {
    margin-bottom: 3em !important;
    min-height: 450px !important;
  }

  .stage-right {
    padding-top: 2.5em !important;
    padding-bottom: 0.75em !important;
    margin-top: 3em !important;
  }

  .stage-container {
    padding-top: 5em !important;
  }

  .stage-logo {
    margin-top: 2em !important;
    min-height: 35vh !important;
  }

  .stage-logo-svg {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    opacity: 1 !important;
  }

  .stage-deco-text {
    margin-bottom: 2.5em !important;
  }
}

.top-smiley.is-benefit img {
  animation: rotation 10s linear infinite;
}

.top-img {
  max-height: 400px;
  width: auto;
  height: auto;
}

.testimonial-top-img {
  max-height: 700px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media screen and (max-width: 991px) {
  .benefit-table-title-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr !important;
  }

  .benefit-table-title-wrapper>.benefit-table-title:first-child {
    grid-column: 1 / 6;
  }

  .benefit-table-title-wrapper>.benefit-table-title:nth-child(2) {
    grid-column: 6;
    text-align: center;
  }

  .benefit-table-title-wrapper>.benefit-table-title:nth-child(3) {
    grid-column: 7;
    text-align: center;
  }
}
