@charset "UTF-8";
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow {
  max-width: 800px;
}

.container__background {
  background-color: #7ED0D9;
}

* {
  font-family: Raleway, Helvetica, sans-serif !important;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100vh;
}

.content__main {
  margin: 40px auto;
}

.content__wrapper {
  flex: 1;
}

p {
  font-size: 18px;
}

.content--emphasis {
  color: #79C35F;
}

.color--red {
  color: #79C35F;
}

.color--red {
  color: #a14d4c;
}

.color--orange {
  color: #FAA32F;
}

.content--bold {
  font-weight: bold;
}

.input-text {
  padding: 8px 6px;
}

.checkout-button,
.button {
  background-color: #FAA32F !important;
  color: #FFFFFF !important;
}
.checkout-button.alt,
.button.alt {
  background-color: #FAA32F !important;
  color: #FFFFFF !important;
}

#coupon_code {
  width: 200px;
  margin-right: 10px;
}

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

.error__heading {
  color: #7ED0D9;
  font-size: 100px;
  margin-bottom: 0;
}

.bullet-list {
  list-style: none;
  padding: 0;
}

.bullet-list__item {
  display: inline-block;
  margin: 8px 0;
  position: relative;
  padding-left: 26px;
}
.bullet-list__item::before {
  border-radius: 4px;
  color: #79C35F;
  content: "✔︎";
  height: 12px;
  left: 0;
  margin-right: 8px;
  position: absolute;
  top: 0;
  width: 12px;
}
.bullet-list__item.color--a14d4c::before {
  color: #a14d4c;
}
.bullet-list__item.color--faa32f::before {
  color: #FAA32F;
}

.header {
  display: flex;
  justify-content: flex-end;
  padding: 20px 0;
}

.header__menu .menu {
  align-items: center;
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__menu .menu-item {
  margin-right: 30px;
}
.header__menu .menu-item a {
  color: #2F2F2F;
  text-decoration: none;
}

.header__menu__cart {
  position: relative;
}

.header__menu__cart__item-count {
  align-items: center;
  background: #FAA32F;
  border-radius: 50%;
  bottom: calc(100% - 10px);
  color: #FFFFFF;
  display: flex;
  font-size: 12px;
  height: 15px;
  justify-content: center;
  left: calc(100% - 10px);
  position: absolute;
  width: 15px;
}

.programmes__wrapper {
  position: relative;
  overflow-x: hidden;
}
.programmes__wrapper::before {
  content: "";
  background-color: #FFFFFF;
  height: calc(50% + 180px);
  left: -50vw;
  position: absolute;
  top: 0;
  transform: rotate(-3deg) translateY(-50%);
  width: 200vw;
}

.programmes__heading {
  margin: 0 auto;
  max-width: 500px;
  position: relative;
  text-align: center;
}

.programmes__carousel {
  margin: 20px auto 0 auto;
  max-width: 1200px;
}

.programme__card__wrapper {
  padding: 40px 0;
}

.programme__card {
  align-items: center;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: 565px;
  padding: 12px 20px;
  position: relative;
}

.programme__card__heading {
  color: currentColor;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
  margin: 0;
  text-align: center;
}

.programme__card__sub-heading {
  color: #2F2F2F;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.programme__card__content {
  margin: 12px auto;
}
.programme__card__content > * {
  color: #2F2F2F;
  text-align: center;
}

.programme__card__list {
  list-style: none;
  padding: 0;
}

.programme__card__list-item {
  font-size: 14px;
  margin: 6px 0;
  padding-left: 26px;
  position: relative;
  text-align: left;
}
@media screen and (min-width: 370px) {
  .programme__card__list-item {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) {
  .programme__card__list-item {
    font-size: 16px;
  }
}
.programme__card__list-item::before {
  border-radius: 4px;
  color: #79C35F;
  content: "✔︎";
  height: 12px;
  left: 0;
  margin-right: 8px;
  position: absolute;
  top: 0;
  width: 12px;
}

.programme--a14d4c::before {
  color: #a14d4c;
}

.programme--faa32f::before {
  color: #FAA32F;
}

.programme__card__feature {
  color: #2F2F2F;
}

.programme__card__action {
  align-items: center;
  align-self: stretch;
  border-radius: 8px;
  display: flex;
  height: 50px;
  justify-content: center;
  margin-top: auto;
  transition: opacity 0.3s ease-in-out;
}
.programme__card__action:hover {
  opacity: 0.75;
}

.programme__card__action-link {
  align-items: center;
  color: #FFFFFF;
  display: flex;
  height: 100%;
  justify-content: center;
  text-decoration: none;
  width: 100%;
}

.programme__card__action-link__icon {
  height: 20px;
  margin-left: 12px;
}

.testimonials {
  padding: 40px 0 70px 0;
}
@media screen and (min-width: 768px) {
  .testimonials {
    padding: 80px 0 120px 0;
  }
}

.testimonial__heading,
.testimonial__citation,
.testimonial__quote {
  color: #FFFFFF;
}

.testimonial__heading {
  font-size: 32px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .testimonial__heading {
    font-size: 36px;
  }
}

.testimonial__quote {
  margin: 0;
}
.testimonial__quote > p {
  font-size: 18px;
  line-height: 1.5;
}

.testimonial__footer {
  display: flex;
  justify-content: flex-end;
}

.testimonial__citation {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}

.woocommerce-MyAccount-navigation {
  padding-bottom: 30px;
  overflow: auto;
}
.woocommerce-MyAccount-navigation > ul {
  display: flex;
  list-style: none;
  padding: 0;
}

.woocommerce-MyAccount-navigation-link {
  margin-right: 20px;
  flex-shrink: 0;
}
.woocommerce-MyAccount-navigation-link > a {
  color: #2F2F2F;
}
.woocommerce-MyAccount-navigation-link > a:visited, .woocommerce-MyAccount-navigation-link > a:active, .woocommerce-MyAccount-navigation-link > a:focus {
  color: #2F2F2F;
}
.woocommerce-MyAccount-navigation-link.is-active > a {
  color: #FAA32F;
  font-weight: 700;
}

.lost_password > a {
  color: #2F2F2F !important;
}
.lost_password > a:visited, .lost_password > a:active, .lost_password > a:focus {
  color: #2F2F2F !important;
}

.footer__container {
  margin-top: auto;
}

.footer {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 40px 0px 20px 0;
}
@media screen and (min-width: 768px) {
  .footer {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__nav .menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 425px) {
  .footer__nav .menu {
    flex-direction: row;
  }
}
.footer__nav .menu-item {
  text-align: center;
}
.footer__nav .menu-item:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (min-width: 425px) {
  .footer__nav .menu-item:not(:last-child) {
    border-right: 2px solid #FFFFFF;
    margin: 0 10px 0 0;
    padding-right: 10px;
  }
}
.footer__nav .menu-item a {
  color: #2F2F2F;
  text-decoration: none;
  transition: opacity 0.3s ease-in-out;
}
.container__background .footer__nav .menu-item a {
  color: #FFFFFF;
}
.footer__nav .menu-item a:hover {
  opacity: 0.6;
}

.footer__copyright {
  color: #2F2F2F;
  padding-top: 20px;
  border-top: 2px solid rgba(255, 255, 255, 0.25);
}
.container__background .footer__copyright {
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    border-top: unset;
    padding-top: 0;
  }
}

.footer__secondary__disclaimer {
  margin-bottom: 20px;
}
.footer__secondary__disclaimer > * {
  font-size: 12px;
}
.container__background .footer__secondary__disclaimer > * {
  color: #FFFFFF;
}

.footer__left,
.footer__socials {
  align-items: center;
  display: flex;
}

.footer__left {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer__left {
    flex-direction: row;
  }
}

.footer__socials {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .footer__socials {
    margin-bottom: 0;
    margin-right: 12px;
  }
}
.footer__socials > a {
  margin: 0 6px;
}

.challenges {
  margin: 20px auto;
}
@media screen and (min-width: 768px) {
  .challenges {
    margin: 60px auto;
  }
}

.challenges__main {
  display: flex;
  margin-bottom: 80px;
  padding: 20px 26px;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .challenges__main {
    flex-direction: row;
  }
}

.challenges__main__heading {
  color: #7ED0D9;
  font-size: 26px;
  margin-top: 0;
}

.challenges__cta {
  margin: 40px auto;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .challenges__cta {
    margin: 100px auto;
  }
}

.challenges__cta__heading {
  margin: 40px auto;
  max-width: 800px;
  text-align: center;
}

.challenges__cta__button {
  background-color: #7ED0D9;
  border-radius: 6px;
  color: #FFFFFF;
  display: inline-block;
  font-size: 20px;
  margin: 12px auto;
  min-width: 250px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
}

.challenges__cta__icon {
  display: none;
}
@media screen and (min-width: 768px) {
  .challenges__cta__icon {
    display: block;
    left: -200px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    z-index: -1;
  }
}

.challenges__main__list {
  list-style: none;
  padding: 0;
}

.challenges__main__list-item {
  display: inline-block;
  margin: 8px 0;
  position: relative;
  padding-left: 26px;
}
.challenges__main__list-item::before {
  border-radius: 4px;
  color: #79C35F;
  content: "✔︎";
  height: 12px;
  left: 0;
  margin-right: 8px;
  position: absolute;
  top: 0;
  width: 12px;
}

.challenges__main__list-link {
  color: #2F2F2F;
  display: inline;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.challenges__main__list-link:hover {
  color: #7ED0D9;
}

.guarantee {
  align-items: center;
  background: #F0F0F0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 12px;
}
@media screen and (min-width: 768px) {
  .guarantee {
    margin-left: 20px;
    max-width: 400px;
    width: 100%;
  }
}

.guarantee__heading {
  color: #7ED0D9;
  font-size: 28px;
  font-weight: bold;
  margin: 8px 0;
}

.guarantee__heading,
.guarantee__content {
  text-align: center;
}

.guarantee__icon {
  height: 60px;
}

.guarantee__content > * {
  font-size: 16px;
}

.landing {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 425px) {
  .landing {
    margin: 60px auto 0 auto;
  }
}

.landing__logo {
  margin: 40px auto;
  max-width: 300px;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .landing__logo {
    margin: 40px auto 60px auto;
  }
}

.landing__teaser__heading {
  font-size: 36px;
  margin: 40px auto 80px auto;
  max-width: 600px;
  text-align: center;
}

.landing__teaser__image {
  align-items: center;
  display: flex;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}
.landing__teaser__image > img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .landing__teaser__image > img {
    width: 100%;
  }
}

.mailing-list {
  padding: 60px 0;
}

.mailing-list__heading,
.mailing-list__sub-heading {
  margin: 0 auto;
  text-align: center;
}

.mailing-list__heading {
  font-size: 28px;
  margin-bottom: 12px;
}

.mailing-list__sub-heading {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 24px;
}
.mailing-list__sub-heading > * {
  margin: 0;
}

.mailing-list__form {
  display: flex;
}

.mailing-list__button {
  align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #7ED0D9;
  border-radius: 6px;
  border: 0;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  outline: 0;
  width: 40px;
}
.mailing-list__button > img {
  height: 20px;
}

.mailing-list__input {
  border-radius: 6px;
  flex: 1;
  font-size: 18px;
  margin-right: 20px;
  padding: 10px 12px;
}

.product-archive__landing {
  margin: 40px auto;
}
@media screen and (min-width: 768px) {
  .product-archive__landing {
    margin: 80px auto;
  }
}

.product-archive__landing__heading,
.product-archive__landing__content {
  text-align: center;
}

.product-archive__landing__heading {
  color: #7ED0D9;
  font-size: 36px;
}

.product-single__landing {
  display: flex;
  align-items: flex-start;
}

.product-single__landing__image {
  display: none;
}
@media screen and (min-width: 768px) {
  .product-single__landing__image {
    display: block;
    max-width: 250px;
  }
}
@media screen and (min-width: 986px) {
  .product-single__landing__image {
    max-width: 450px;
  }
}

.product-single__landing__content {
  align-self: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .product-single__landing__content {
    margin-left: 40px;
  }
}

.product-single__landing__heading {
  text-align: center;
  font-size: 36px;
}
@media screen and (min-width: 768px) {
  .product-single__landing__heading {
    font-size: 42px;
  }
}

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

.product-single__details {
  margin: 40px auto;
}
@media screen and (min-width: 768px) {
  .product-single__details {
    margin: 80px auto;
  }
}

.product-single__details__final {
  font-size: 22px;
  text-align: center;
}

.banner-cta {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  text-align: center;
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .banner-cta {
    padding: 100px 0;
  }
}

.banner-cta__heading {
  margin-top: 0;
  font-size: 26px;
}
.banner-cta--solid .banner-cta__heading {
  color: #FFFFFF;
}

.banner-cta__sub-heading {
  margin-bottom: 40px;
  max-width: 800px;
}
.banner-cta--solid .banner-cta__sub-heading {
  color: #FFFFFF;
}

.banner-cta__action {
  align-items: center;
  background: #FFFFFF;
  border-radius: 6px;
  color: #FFFFFF;
  display: inline-flex;
  justify-content: center;
  padding: 18px 0;
  text-align: center;
  text-decoration: none;
  width: 250px;
}
.banner-cta--solid .banner-cta__action {
  color: #2F2F2F;
}
.banner-cta__action img {
  width: 20px;
  margin-left: 12px;
}

.product-single__features {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .product-single__features {
    flex-direction: row;
    margin-top: 60px;
  }
}

.product-single__features__list {
  padding: 0;
}

.product-single__features__feature {
  display: inline-block;
  margin: 6px 0;
  padding-left: 26px;
  position: relative;
}
.product-single__features__feature::before {
  border-radius: 4px;
  color: #79C35F;
  content: "✔︎";
  height: 12px;
  left: 0;
  margin-right: 8px;
  position: absolute;
  top: 0;
  width: 12px;
}
.product-single__features__feature.color--a14d4c::before {
  color: #a14d4c;
}
.product-single__features__feature.color--faa32f::before {
  color: #FAA32F;
}

.product-single__features__graphic {
  max-width: 100vw;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .product-single__features__graphic {
    width: 50%;
    max-width: 50%;
  }
}

.product-single__features__content {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .product-single__features__content {
    margin-left: 60px;
  }
}

.thank-you__landing {
  align-items: center;
  display: flex;
  position: relative;
}

.thank-you__landing__image {
  display: none;
}
@media screen and (min-width: 768px) {
  .thank-you__landing__image {
    display: block;
    margin-top: -80px;
    transform: rotate(-12deg);
    width: 450px;
  }
}

.thank-you__landing__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  margin-left: 20px;
}

.thank-you__landing__heading {
  font-size: 36px;
  margin-bottom: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .thank-you__landing__heading {
    font-size: 42px;
  }
}

.thank-you__disclaimer > * {
  font-weight: 700;
}

.thank-you__main {
  margin-top: 80px;
}

.thank-you__landing__content__button {
  align-items: center;
  color: #FFFFFF;
  display: flex;
  font-size: 20px;
  justify-content: center;
  margin-top: 26px;
  padding: 12px 26px;
  text-decoration: none;
}
.thank-you__landing__content__button > img {
  height: 20px;
  margin-left: 12px;
}

.thank-you__main__content a {
  color: #2F2F2F;
  font-weight: bold;
  text-decoration: none;
}
.thank-you__main__content ul {
  list-style: none;
  padding: 0;
}
.thank-you__main__content li {
  margin: 6px 0;
}
.thank-you__main__content li::before {
  content: "✔︎";
  height: 12px;
  width: 12px;
  border-radius: 4px;
  color: #79C35F;
  margin-right: 8px;
}

.thank-you__main__heading {
  color: #7ED0D9;
}

.color-override--a14d4c .content--emphasis,
.color-override--a14d4c li::before {
  color: #a14d4c;
}
.color-override--faa32f .content--emphasis,
.color-override--faa32f li::before {
  color: #FAA32F;
}
.color-override--79c35f .content--emphasis,
.color-override--79c35f li::before {
  color: #79C35F;
}

.thank-you__action {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 20px auto;
}

.default-page__heading {
  color: #7ED0D9;
  font-size: 36px;
}
@media screen and (min-width: 768px) {
  .default-page__heading {
    font-size: 42px;
  }
}
