:root {
  --blue: #75B3FA;
  --purple: #A596FF;
  --pink: #FFA2FF;
  --red: #E37878;
  --orange: #EFA46D;
  --yellow: #F9C13F;
  --green: #95D473;
  --prime-blue: #2E9AFF;
  --prime-green: #8AC926;
  --prime-yellow: #F9BF39;
  --prime-orange: #E98035;
  --prime-red: #D94545;
  --prime-pink: #CC66CC;
  --prime-purple: #745CFF;
  --very-light-grey: #CED4DA;
  --light-grey: #ADB5BD;
  --grey: #6C757D;
  --mid-grey: #495057;
  --dark-grey: #212529;
  --shadow: 0px 10px 20px rgba(0,0,0,.2);
}

html{
  scroll-behavior: smooth;
}
body{
  margin: 0px;
  font-family: 'Cronos Pro Display';
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #E9F3FF;
  overflow-x: hidden;
}
nav.menu {
  height: 60px;
  background-color: #FFFFFF;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 899;
}

nav.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 3rem;
  box-sizing: border-box;
}
nav.menu ul {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 0px;
  padding: 0px;
}

nav.menu ul li {
  list-style: none;
  display: flex;
  align-items: center;
}
nav.menu ul li > * {
  text-decoration: none;
}

nav.menu .logo {
  height: 50px;
}

nav.menu a {
  font-size: 1.15em;
  color: #343A40;
}

nav.menu li:nth-child(2) a:hover{color: var(--prime-purple);}
nav.menu li:nth-child(3) a:hover{color: var(--prime-red);}
nav.menu li:nth-child(4) a:hover{color: var(--prime-orange);}
nav.menu li:nth-child(5) a:hover{color: var(--prime-green);}
nav.menu li:nth-child(6) a:hover{color: var(--prime-blue);}


a.cta {
  margin: 0px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
button.cta, a.cta {
  border: 0px;
  border-radius: 10px;
  box-shadow: 0px -5px 0px inset rgba(0,0,0,.15);
  font-family: 'Cronos Pro';
  cursor: pointer;
  color: #FFFFFF;
  height: 35px;
  padding: 0px 15px 3px 15px;
}
button.cta:hover, a.cta:hover{
  filter: brightness(1.05);
}
button.cta:active, a.cta:active{
  filter: brightness(1.05);
  box-shadow: 0px 0px 0px inset rgba(0,0,0,.15);
  padding-bottom: 0px;
  height: 32px;
  transform: translateY(3px);
}

nav.menu button.cta, nav.menu a.cta {
  font-size: .85em;
  font-style: italic;
  font-weight: bold;
  background-color: var(--prime-green);
}

.notification {
  background-color: var(--prime-green);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 899;
}
.notification svg {
  height: 1.5em;
  width: 1.5em;
}
.notification strong {
  font-weight: normal;
  font-size: 1.15em;
}
.notification strong b {
  font-size: 1.5em;
}
.notification a.cta {
  font-size: 1em;
  font-style: italic;
  font-weight: bold;
  background-color: var(--prime-blue);
}

.hero {
  background-color: white;
  width: 100vw;
  height: 100vh;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  z-index: 998;
  position: relative;
  top: -60px;
  overflow: hidden;
}

.hero .hero-content {
  display: flex;
  max-width: 50%;
  flex-direction: column;
  padding-left: 3rem;
  gap: 20px;
}

.hero-content img{
  max-width: 300px;
}

.hero-content h1 {
  font-size: 3em;
  color: var(--blue);
  font-style: italic;
  margin: 0px;
  line-height: 1em;
}

.hero-content h2 {
  font-size: 2em;
  font-weight: normal;
  font-style: italic;
  color: var(--mid-grey);
  margin: 0px;
  text-align: left;
}
.hero-content h2 ul {
  display: inline-block;
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.hero-content h2 ul li {
  position: relative;
  z-index: 1;
  margin-left: .1em;
  color: #FFFFFF;
  display: none;
}
.hero-content h2 ul li.active {
  display: inherit;
}
.hero-content h2 ul li:before {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  left: -5px;
  top: -1px;
  z-index: -1;
  padding: 2px 5px;
  transform: skewX(-7deg);
}
.hero-content h2 ul li.blue:before {background-color: var(--blue);}
.hero-content h2 ul li.green:before {background-color: var(--green);}
.hero-content h2 ul li.yellow:before {background-color: var(--yellow);}
.hero-content h2 ul li.orange:before {background-color: var(--orange);}
.hero-content h2 ul li.red:before {background-color: var(--red);}
.hero-content h2 ul li.purple:before {background-color: var(--purple);}
.hero-content h2 ul li.pink:before {background-color: var(--pink);}

.hero-content button.cta, .hero-content a.cta{
  width: fit-content;
  font-size: 1.5em;
  height: 50px;
  padding-left: 25px;
  padding-right: 25px;
  background-color: var(--prime-green);
  margin: 1em 0px;
}

.hero-content ul.benefits {
  padding: 0px;
  display: flex;
  gap: 1em 2em;
  flex-wrap: wrap;
}
.hero-content ul.benefits li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5em;
  font-style: italic;
}
.hero-content ul.benefits li svg {
  height: 1.5em;
  width: 1.5em;
}
.hero-content ul.benefits li:nth-child(1){color: var(--red);}
.hero-content ul.benefits li:nth-child(2){color: var(--orange);}
.hero-content ul.benefits li:nth-child(3){color: var(--green);}

.hero-background {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  max-width: 50%;
  transform: rotate(-10deg);
  margin-right: -30px;
}
.hero-background img {
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,.15);
  max-width: 100%;
  height: auto;
}
.hero-background .column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-background .left-column{
  animation: herobg 12s linear infinite;
}
.hero-background .right-column{
  animation: herobg 12s linear infinite reverse;
}

@keyframes herobg {
  from{transform: translateY(-35%);}
  to{transform: translateY(25%);}
}

.hero .scroll-down-arrow {
  position: absolute;
  left: 50%;
  bottom: .5rem;
  margin-left: -20px;
}
.hero .scroll-down-arrow svg {
  width: 40px;
  color: var(--light-grey);
}

#heroscroll {
  padding-top: 80px;
}

.content {
  max-width: 100%;
  padding: 0px 1rem;
  width: 750px;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0px auto;
  gap: 50px;
  box-sizing: border-box;
}
.content > * {
  margin: 0px;
}

.wave-svg {
  max-width: 100%;
}

.section-spacer{
  height: 100px;
}

h2 {
  font-size: 2.25em;
  font-style: italic;
  color: var(--blue);
  text-align: center;
}
h2 span {
  font-weight: normal;
}

.course-feature .course-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.course-feature .course-wrapper .nav-arrow {
  cursor: pointer;
  border-radius: 999px;
  z-index: 0;
}
.course-feature .course-wrapper .nav-arrow:hover svg {
  filter: brightness(1.5);
}
.course-feature .course-wrapper .nav-arrow svg {
  height: 50px;
  width: 50px;
  color: var(--grey);
}
.course-feature .course-wrapper .next svg {
  transform: rotate(180deg);
}

.course-feature .course {
  margin: 0px 2rem;
}

.course {
  width: 500px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.course strong {
  display: block;
  font-size: 30px;
  color: #FFFFFF;
  padding-left: .25em;
  height: 40px;
}
.course-content {
  display: flex;
  align-items: stretch;
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 7px;
  height: 200px;
}
.course-content > img {
  width: auto;
  height: 100%;
  border-radius: 5px;
}
.course-infos {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 14px 0px 14px;
}
.course-infos > * {
  margin: 0px;
}
.course-infos ul {
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  gap: .5em 1em;
  list-style: none;
}
.course-infos h4 {
  font-size: 1.4em;
  color: var(--mid-grey);
}
.course-infos p {
  color: var(--mid-grey);
}

.course-infos ul li {
  display: flex;
  align-items: flex-start;
  font-size: 1.1em;
  gap: .25em;
  margin: 0px;
}
.course-infos ul li svg {
  height: 1em;
  width: 1em;
}
.course-infos ul li.course-steps {
  color: var(--prime-blue);
}
.course-infos ul li.course-receipes {
  color: var(--prime-orange);
}
.course-infos ul li.course-difficulty.easy {
  color: var(--prime-green);
}
.course-feature .course{
  display: none;
}
.course-feature .course.active {
  display: inline-block;
}

.course.all-courses {
  height: 254px;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px;
  border: 7px solid transparent;
}
.course.all-courses.active{
  display: flex;
}
.all-courses button.cta, .all-courses a.cta {
  background-color: var(--purple);
  font-size: 1.15em;
  height: 45px;
}
.course.blue{
  background-color: var(--blue);
  border: 7px solid var(--blue);
}
.course.orange{
  background-color: var(--orange);
  border: 7px solid var(--orange);
}
.course.purple{
  background-color: var(--purple);
  border: 7px solid var(--purple);
}
.course.green{
  background-color: var(--green);
  border: 7px solid var(--green);
}
.course.red{
  background-color: var(--red);
  border: 7px solid var(--red);
}
.course.yellow{
  background-color: var(--yellow);
  border: 7px solid var(--yellow);
}
.course.yellow strong{color: var(--mid-grey);}
.course.pink{
  background-color: var(--pink);
  border: 7px solid var(--pink);
}

.content h2 {
  margin: 0px;
}
.content h3 {
  font-size: 1.75em;
  font-weight: normal;
  font-style: italic;
  color: var(--grey);
  text-align: center;
  margin: 0px;
}

ul.courses-features {
  padding: 0px;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--mid-grey);
  font-size: 1.15em;
}
ul.courses-features li{
  display: flex;
  align-items: center;
  gap: .25em;
}
ul.courses-features li svg{
  height: 1.5em;
  width: 1.5em;
}
ul.courses-features li.red svg{color: var(--prime-red);}
ul.courses-features li.orange svg{color: var(--prime-orange);}
ul.courses-features li.blue svg{color: var(--prime-blue);}
ul.courses-features li.green svg{color: var(--prime-green);}
ul.courses-features li.purple svg{color: var(--prime-purple);}
ul.courses-features li.pink svg{color: var(--prime-pink);}

.courses-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.courses-list-title h2{
  margin-top: 0px;
}
p.title-notes {
  text-align: center;
  color: var(--grey);
  margin: 0px;
  font-size: 1.3em;
  font-style: italic;
}


.wave {
  position: relative;
  z-index: -1;
  border-top-width: 100px;
  border-top-style: solid;
  margin-bottom: -50px;
}
.wave .wave-svg {
  position: absolute;
  top: 0px;
  left: 0px;
}
.wave.flip{
  transform: rotate(180deg);
  margin-top: 100px;
  transform-origin: bottom;
  border-top-width: 150px;
}
.wave-green {
  border-top-color: var(--green);
  color: var(--green);
}
.wave-blue {
  border-top-color: var(--blue);
  color: var(--blue);
}

.video h2 {
  color: white;
  font-size: 2em;
  font-style: normal;
}
.video h2 span {
  font-style: italic;
}

.content iframe{
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}


.content.benefits {
  flex-direction: row;
  width: 100%;
  justify-content: center;
  gap: 30px 50px;
}

.content.benefits > .benefit {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: .75em;
  position: relative;
}
.content.benefits > .benefit > * {
  margin: 0px;
}

.benefit svg {
  width: 125px;
  height: 125px;
  position: absolute;
  top: 0px;
  right: 0px;
  opacity: .3;
  z-index: -1;
}

.benefit h3{
  text-align: left;
  font-weight: bold;
  font-style: normal;
}
.benefit a {
  color: var(--prime-blue);
  text-decoration: none;
  font-style: italic;
}

.benefit.health svg, .benefit.health h3{color: var(--red);}
.benefit.economic svg, .benefit.economic h3{color: var(--orange);}
.benefit.ecologic svg, .benefit.ecologic h3{color: var(--green);}

.content.testimonies {
  width: 100%;
}
.content.testimonies h2 {
  max-width: 750px;
  color: #FFFFFF;
}
.testimonies-wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  gap: 30px 50px;
}

.testimonies .testimony {
  max-width: 350px;
  display: flex;
  flex-direction: column;
}
.testimonies .testimony > * {
  margin: 0px;
}
.testimony iframe{
  margin-bottom: 10px !important;
}

.testimony strong span {
  font-weight: normal;
  font-style: italic;
  color: var(--grey);
}

.membership-title h2 {
  color: var(--prime-green);
  margin: 0px;
}
.membership-title p {
  margin: 0px;
  text-align: center;
  font-size: 1.3em;
}

.membership-title p.title-info {
  color: var(--grey);
  font-style: italic;
}
.membership-title p.offer-info{
  color: var(--prime-blue);
}

p.membership-description {
  text-align: center;
  font-size: 1em;
  color: var(--grey);
  margin: 30px 0;
}

/*
.membership .offer .switch-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .25em;
  position: relative;
  margin: auto;
  margin-bottom: .5em;
  width: fit-content;
  cursor: pointer;
}

.membership .offer .switch-box > p {
  position: absolute;
  color: var(--grey);
}
.membership .offer .switch-box > p:nth-child(1){
  right: 100%;
  margin-right: .25em;
}
.membership .offer .switch-box > p:nth-child(3){
  left: 100%;
  margin-left: .25em;
}
.membership .offer .switch {
  width: 2em;
  height: 1em;
  background-color: var(--light-grey);
  border-radius: 1em;
  border: 2px solid #FFFFFF;
  position: relative;
}
.membership .offer .switch .controller {
  height: 1em;
  width: 1em;
  border: 2px solid var(--light-grey);
  box-sizing: border-box;
  background-color: #FFFFFF;
  border-radius: 1em;
}
.membership .offer .switch-box .reduce {
  font-size: 1.25em;
  font-weight: bold;
  color: var(--prime-green);
}
.membership .offer .switch-box.active .switch {
  background-color: var(--prime-green);
}
.membership .offer .switch-box.active .controller{
  float: right;
  border-color: var(--prime-green);
}
.membership .offer .switch-box p.active {
  font-weight: bold;
  color: var(--dark-grey);
} */

.membership .offers {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  align-items: center;
}
.membership .offers .offer {
  border-radius: 20px;
  box-shadow: 0 5px 10px rgba(0,0,0,.15);
}

.membership .offer.featured strong.title {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-sizing: border-box;
}

.membership .offer .feature .price.active {
  display: block;
}
.membership .offer .feature .price-description > p {
  display: none;
}
.membership .offer .feature .price-description.active > p{
  display: inherit;
}
.membership .featured-label {
  position: absolute;
  top: -35px;
  background-color: var(--yellow);
  width: 100%;
  border: 10px solid var(--yellow);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 35px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  gap: .25em;
  align-items: center;
}
.membership .featured-label p{
  margin: 0px;
  font-size: 20px;
  font-weight: bold;
  color: var(--prime-purple);
}
.membership .featured-label svg {
  height: 20px;
  width: 20px;
  color: var(--prime-purple);
}

.membership .feature {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  margin: auto;
  align-items: center;
  width: fit-content;
  position: relative;
  max-width: 300px;
}
.membership .offer.featured {
  margin-top: 0px;
  box-shadow: 0px 20px 30px rgba(0,0,0,.3);
}
.membership .offer.featured .feature{
  border: 10px solid var(--yellow);
  border-radius: 20px;
}
.membership .feature > * {
  margin: 0px;
}
.membership .feature strong.title{
  padding: 10px 10px;
  background-color: var(--purple);
  font-size: 1.3em;
  margin: 0px;
  color: #FFFFFF;
  font-style: italic;
  width: 100%;
  text-align: center;
  font-weight: normal;
  box-sizing: border-box;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.membership .feature strong.title.blue{
  background-color: var(--blue);
}
.membership .feature a.cta{
  background-color: var(--very-light-grey);
  font-size: 1.5em;
  height: 40px;
  font-style: italic;
}
.membership .feature .price {
  font-size: 3em;
  color: var(--prime-green);
  display: none;
  position: relative;
}
.membership .feature .price span {
  color: var(--grey);
  font-size: .5em;
  font-weight: normal;
}
.membership .feature .price i {
  font-size: .5em;
  font-style: normal;
  text-decoration: line-through;
  color: var(--prime-red);
  font-weight: normal;
}
.membership .price-description > * {
  margin: 0px;
}
.membership .price-description p {
  color: var(--grey);
}
.membership .price-description b{
  font-size: 1.25em;
  color: var(--prime-green);
}
.membership .price-description span {
  color: var(--prime-red);
  text-decoration: line-through;
}
.membership .price-description i {
  color: var(--grey);
  display: block;
  text-align: center;
}
.membership .feature ul {
  padding: 0px;
  list-style: none;
  margin: 0px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.membership .feature li {
  font-size: 1.15em;
  display: flex;
  align-items: center;
}
.membership .feature li svg {
  height: 40px;
  width: 40px;
  margin-right: 10px;
  flex-shrink: 0;
}
.membership .feature li p {
  margin: 0px;
}
.membership .feature li.featured {
  margin: 0px -20px;
  padding: 10px 20px;
  background-color: var(--yellow);
}
.membership .feature li.featured svg{
  height: 50px;
  width: 50px;
  margin-left: -5px;
}
.membership .feature li.blue {color: var(--blue);}
.membership .feature li.purple {color: var(--prime-purple);}
.membership .feature li.orange {color: var(--orange);}
.membership .feature li.red {color: var(--red);}

.content.course-details {
  box-shadow: var(--shadow);
  position: fixed;
  top: 2%;
  left: 50%;
  height: 96%;
  overflow-y: scroll;
  transform: translateX(-50%);
  z-index: 999;
}
.dark-overlay {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: .5;
  z-index: 998;
}

.course-details{
  background-color: #FFFFFF;
  padding: 20px;
  gap: 30px;
  border-radius: 10px;
}
.course-details .course-cover {
  width: 100%;
}
.course-details .course-cover .cover {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 200px;
  align-items: center;
}
.course-details .course-cover .cover img {
  width: 100%;
  min-height: 100%;
}
.course-details .course-cover .cover .cover-dark-overlay{
  background: linear-gradient(to top, rgba(0,0,0,.5), rgba(0,0,0,0));
  height: 4em;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.course-details .course-cover .cover strong {
  position: absolute;
  bottom: .25em;
  left: .25em;
  font-size: 3em;
  line-height: .75em;
  color: white;
}

.course-details .course-cover ul {
  display: flex;
  list-style: none;
  padding: 0px;
  margin: 0px;
  margin-top: 10px;
  gap: 15px;
  float: left;
}
.course-details .course-cover ul li {
  padding: 5px 15px 5px 0px;
  border-right: 1px solid var(--grey);
  display: flex;
  align-items: baseline;
  line-height: 2em;
  gap: .25em;
}
.course-details .course-cover ul li.category {
  color: var(--grey);
}
.course-details .course-cover ul li.difficulty.easy {
  color: var(--prime-green);
}
.course-details .course-cover ul li:last-child{border: 0px;}

.course-details .course-cover a.cta.unlock-course {
  float: right;
}
.course-details a.cta.unlock-course {
  display: flex;
  width: fit-content;
  background-color: var(--orange);
  margin-top: 10px;
  font-weight: bold;
  font-style: italic;
}
.course-details a.cta.unlock-course svg {
  height: 1em;
  margin-right: .25em;
}

.course-details .course-description > *{
  margin: 0px;
}
.course-details .course-description h1 {
  color: var(--prime-blue);
}
.course-details .course-description p {
  color: var(--dark-grey);
}

.course-details .shop-links {
  display: flex;
  width: 100%;
  gap: 30px;
}
.course-details .shop-links a {
  font-weight: bold;
  font-style: italic;
  color: var(--prime-green);
  font-size: 1.25em;
  width: 50%;
}

.course-details .course-cursus {
  display: flex;
  width: 100%;
  gap: 10px;
  flex-wrap: wrap;
}
.course-details .course-cursus .cursus-parts-wrapper {
  display: flex;
  gap: 30px;
  width: 100%;
  flex-shrink: 0;
  height: fit-content;
}
.course-details .course-cursus .cursus-parts-wrapper > * {
  width: 50%;
}
.course-cursus .cursus-part-title {
  border-bottom: 2px solid var(--very-light-grey);
  font-weight: bold;
  font-style: italic;
  margin: 0px;
}
.course-cursus .cursus-part-title.steps {color: var(--prime-blue);}
.course-cursus .cursus-part-title.receipes {color: var(--prime-orange);}

.course-cursus a.cta {
  font-weight: bold;
  font-style: italic;
  margin: auto;
}
.course-cursus a.cta.free {
  background-color: var(--purple);
}
.course-cursus a.cta.premium {
  background-color: var(--orange);
}

.course-cursus .cursus-part ul {
  list-style: none;
  font-style: italic;
  color: var(--dark-grey);
  margin: 0px;
}
.course-cursus .cursus-part.steps ul li.course-title {
  font-weight: bold;
}
.course-cursus .cursus-part ul li {
  margin-left: -2em;
}
.course-cursus .cursus-part ul li:before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: var(--prime-blue); /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: .5em; /* Also needed for space (tweak if needed) */
  font-size: 2em;
  line-height: .75em;
  font-style: normal;
  vertical-align: -10%;
}
.course-cursus .cursus-part.steps ul li.course-title:before{
  content: "";
  width: 0px;
}
.course-cursus .cursus-part.receipes ul li:before {
  content: '\273D';
  font-size: 1em;
  width: 1em;
  color: var(--prime-orange);
  line-height: 1.65em;
}

.course-cursus .premium-access-btn {
  display: flex;
  gap: 10px;
  color: var(--prime-orange);
  width: 100% !important;
  flex-shrink: 0;
  align-items: center;
  margin-left: .25em;
}
.course-cursus .premium-access-btn svg {
  height: 1.25em;
}
.course-cursus .premium-access-btn a.cta {
  margin-left: 0px;
  z-index: 2;
}
.course-cursus .premium-access {
  position: relative;
  z-index: 1;
}
.course-cursus .premium-access:before {
  content: '';
  position: absolute;
  left: -20px;
  top: -60px;
  width: 100%;
  height: 100%;
  padding: 0px 20px 80px 20px;
  background-color: rgba(0,0,0,.05);
  z-index: -1;
  border-radius: 0px 0px 10px 10px;
}

.course-cursus .premium-access ul {
  opacity: .5;
}

.benefits-details-wrapper{
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 997;
  overflow-y: scroll;
  height: 100vh;
}
.benefit-details {
  display: flex;
  max-width: 700px;
  flex-direction: column;
  background-color: white;
  border-radius: 20px;
  padding: 30px 200px 30px 30px;
  box-sizing: border-box;
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid #000;
  z-index: 999;
}
.benefit-details h1 {
  margin: 0px;
  font-size: 2em;
}
.benefit-details h2 {
  font-size: 1.5em;
  font-style: normal;
}
.benefit-details ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.benefit-details ul li {
  margin: 20px 0px;
}
.benefit-details ul li > *{
  text-align:left;
  margin: 0px;
}
.benefit-details svg {
  height: 120px;
  width: 120px;
  position: absolute;
  top: 20px;
  right: 20px;
}
.benefit-details img {
  position: absolute;
  top: 160px;
  right: -130px;
  border-radius: 10px;
}
.benefit-details.health h1, .benefit-details.health svg {color: var(--prime-red);}
.benefit-details.health h2 {color: var(--red);}
.benefit-details.health {border-color: var(--red)}

.benefit-details.economic svg {color: var(--yellow);}
.benefit-details.economic h1, .benefit-details.economic h2 {color: var(--orange);}
.benefit-details.economic {border-color: var(--yellow)}

.benefit-details.ecologic h1, .benefit-details.ecologic svg {color: var(--prime-green);}
.benefit-details.ecologic h2 {color: var(--green);}
.benefit-details.ecologic {border-color: var(--green)}

.benefit-details.economic select {
  width: fit-content;
  padding: 5px 10px;
  font-size: 1.25em;
  background-color: var(--orange);
  border: 0px;
  border-radius: 5px;
  color: white;
}
.benefit-details.economic option {
  background-color: var(--blue);
}
.benefit-details.economic p {
  margin: 0px;
  font-size: 1.1em;
}
.benefit-details.economic p span {font-size: 1.25em;}
.benefit-details.economic p span.unit-price {
  padding: 2px 4px;
  border-radius: 5px;
  color: white
}
.benefit-details.economic {
  gap: 20px;
}
.benefit-details.economic .commerce p span.unit-price {
  background-color: var(--prime-red);
}
.benefit-details.economic .diy p span.unit-price {
  background-color: var(--prime-green);
}
.benefit-details.economic .commerce p span.investment {
  color: var(--prime-green);
}
.benefit-details.economic .diy p span.investment {
  color: var(--prime-red);
}
.benefit-details.economic p.profitable {
  font-size: 1.25em;
  font-style: italic;
  color: var(--prime-green);
}
.benefit-details.economic select.kombucha {background-color: var(--orange); color: #FFF;}
.benefit-details.economic select.kefir {background-color: var(--blue);}
.benefit-details.economic select.levain {background-color: var(--yellow); color: var(--mid-grey);}
.benefit-details.economic select.kimchi {background-color: var(--pink); color: #FFF;}
.benefit-details.economic select.tempeh {background-color: var(--red); color: #FFF;}
.benefit-details.economic select.fauxmage {background-color: var(--blue); color: #FFF;}

.footer {
  gap: 30px;
  overflow-y: hidden;
}
.footer * {
  margin: 0px;
}
.footer .social-icons {
  display: flex;
  gap: 20px;
}
.footer p{
  font-size: 1.25em;
  font-style: italic;
  color: var(--grey);
}
.footer h2 {
  color: var(--prime-green);
}

.footer .social-icons > svg {
  width: 50px;
  height: 50px;
  color: var(--grey);
}

.footer iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
}
