div[data-layout-name="Page Nav + CSS + JS"] {
  position: relative;
  z-index: 1;
}

.page-content {
  display: none;
}

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

h1.ls, h2.ls, h3.ls {
  letter-spacing: -2px;
}

.ls05 {
  letter-spacing: 0.5px;
}

.ls075 {
  letter-spacing: 0.75px;
}

.ls1 {
  letter-spacing: 1px;
}

.ls15 {
  letter-spacing: 1.5px;
}

.ls2 {
  letter-spacing: 2px;
}

.fs-15 {
  font-size:15px;
}

.fs-16 {
  font-size:16px;
}

.fs-17 {
  font-size:17px;
}

.fs-18 {
  font-size:18px;
}

.fs-20 {
  font-size:20px;
}

.fs-130p {
  font-size:130%;
}

.f-white {
  color: #ffffff;
}

.f-black {
	color: #000000;
}

.bg-white {
  background-color: #ffffff;
}

.bg-light-gray {
  background-color: #f5f5f7;
}

.bg-light-gray-gradient {
  background: linear-gradient(180deg,#f5f5f7 88%,#ffffff 100%);
}

.bg-gradient-orange {
  background: linear-gradient(90deg, #ffa68d, #ffc579);
}

.bg-gradient-yellow-orange-vert {
  background: linear-gradient(130deg, #ffe09c, #fda963);
}

.bg-gradient-green-vert {
  background: linear-gradient(180deg, #b3d4aa, #66b389);
}

.bg-gradien-dark-blue-horiz {
  background: linear-gradient(90deg, #343a42, #121a24);
}

.bg-gradien-pink-purple-horiz {
  background: linear-gradient(90deg, #ff5ea2, #e07df7);
}

.row-1080 {
	max-width: 1080px;
}

.row-1160 {
	max-width: 1160px;
}

.row-1240 {
  max-width: 1240px;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap:wrap;
  row-gap: 30px;
}

.flex-1 {
	flex: 1;
}

.flex-fit-content {
  height: fit-content;
}

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

.p-30 {
	padding:30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pr-30 {
  padding-right: 3.333%;
}

.pr-50 {
	padding-right: 5.5%;
}

.mt-10 {
  margin-top: 10px;
}

.mt-30 {
  margin-top: 30px;
}

.mr-30 {
  margin-right: 3.333%;
}

.mr-50 {
  margin-right: 5.5%;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-5vh {
  margin-bottom: 5vh;
}

.mb-7vh {
  margin-bottom: 7vh;
}

.mb-10vh {
  margin-bottom: 10vh;
}

.mb-12vh {
  margin-bottom: 12vh;
}

.mb-15vh {
  margin-bottom: 15vh;
}

.mb-20vh {
  margin-bottom: 20vh;
}

.mb-25vh {
  margin-bottom: 25vh;
}

.mb-30vh {
  margin-bottom: 30vh;
}

.mb-35vh {
  margin-bottom: 35vh;
}

.mb-40vh {
  margin-bottom: 40vh;
}

.mb-45vh {
  margin-bottom: 45vh;
}

.mb-50vh {
  margin-bottom: 50vh;
}

.br-7 {
  border-radius:7px;
}

.br-12 {
  border-radius:12px;
}

.br-15 {
  border-radius:15px;
}

.br-20 {
  border-radius:20px;
}

.br-25 {
  border-radius:25px;
}

.br-30 {
  border-radius:30px;
}

.h-100 {
  height:100%;
}

.w-100 {
  width:100%;
}

.overflow-hidden {
  overflow:hidden;
}

.btn {
	color: #FFFFFF;
	border-width: 0px;
	border-radius: 12px;
  padding:17px 30px;
	font-weight: 800;
	text-decoration: none;
	transition: background-color 0.15s ease;
}

.btn:hover {
	font-weight: inherit;
}

.btn.btn-add-cart {
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  padding: 12px 24px;
  width: auto;
  min-width: 110px;
  max-width: 100%;
  background-color: #343a44;
  transition: 0.15s ease background-color;
  border-radius: 30px;
  font-weight: 800;
  letter-spacing: .05rem;
  display: inline-block;
  position: absolute;
  right: 7%;
  bottom: 5%;
}

.btn.btn-add-cart:hover {
  background-color: #424e57;
  color:#fff;
}

.btn.btn-add-cart i,
.btn.btn-add-cart svg {
  margin-right: 5px;
}

.btn.btn-gradient-orange {
	background: linear-gradient(90deg, #ffa68d, #ffc579);
  transition: 0.25s background ease;
  color:#343a44;
  text-transform: uppercase;
}

.btn.btn-gradient-orange:hover {
	background: linear-gradient(14deg, #ffa68d, #ffc579);
}

.btn.btn-blue {
	background-color: #0b99ff;
}

.btn.btn-blue:hover {
	background-color: #0160a5;
	color: #FFFFFF;
}

.btn.btn-orange {
	background-color: #ff7a01;
}

.btn.btn-orange:hover {
	background-color: #fe9330;
	color: #FFFFFF;
}

.btn.btn-med-aloe {
	background-color: #017565;
}

.btn.btn-med-aloe:hover {
	background-color: #158878;
	color: #FFFFFF;
}

.btn.btn-dark-aloe {
	background-color: #004a32;
}

.btn.btn-dark-aloe:hover {
	background-color: #12644a;
	color: #FFFFFF;
}




.slide-in {
        opacity: 0;
        transform: translateX(-100px);
        animation: slideIn 0.75s ease-out forwards;
        animation-delay: 0.3s;
        animation-play-state: paused;
    }

    @keyframes slideIn {
        0% {
            opacity: 0;
            transform: translateX(-150px);
        }
        60% {
            opacity: 1;
            transform: translateX(10px);
        }
        80% {
            transform: translateX(-5px);
        }
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }







.opp-nav {
    margin-top: -48px;
    padding-right: 2.75rem;
    opacity: 1;
    transition: opacity 0.3s ease, top 0.3s ease;
}

.opp-nav.sticky {
    margin-top: 20px;
    position: fixed;
    top: 20px;
    z-index: 99;
    right: 20px;
    border-bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: invert(0.2) blur(30px) contrast(1.8) saturate(2.7);
    backdrop-filter: invert(0.2) blur(30px) contrast(1.8) saturate(2.7);
    padding: 10px 12px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.opp-nav-placeholder {
    height:0;
    opacity: 0;
}

/* Safari-specific: slide animation */
.opp-nav.safari-fix {
    transition: transform 0.2s ease, top 0.3s ease; /* Slide transition */
    transform: translateY(0); /* Default position */
}

.opp-nav.safari-fix.hidden {
    transform: translateY(-50px); /* Slide up out of view */
}

.opp-nav.safari-fix.sticky {
    min-width: 200px;
}

.opp-nav:not(.sticky) {
    opacity: 1;
    position: relative;
}

.opp-nav.active {
    display: block;
}

.opp-nav ul {
    margin-bottom: 0;
    margin-left: 0;
    float: right;
}

.opp-nav li {
    margin-bottom: 0px;
    list-style: none;
    text-align: right;
    display: inline-block;
    padding: 0 2px;
}

.opp-nav li.buy-button {
    padding-right: 0;
    margin-left: 8px;
}

.opp-nav li a {
    color: #343a42;
    font-weight: 800;
    text-decoration: none;
    padding: 0 8px 2px;
    transition: 0.15s ease color;
}

.opp-nav li a:focus,
.opp-nav li [href]:focus {
  outline-offset: 0px !important;
  border-radius: 4px;
}

.opp-nav li a:hover {
  color: #0b99ff;
}

.opp-nav li.buy-button a {
  background-color: #0b99ff;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  padding: 5px 12px;
  border-radius: 7px;
  transition: 0.15s ease background-color;
}

.opp-nav li.buy-button a:hover {
  background-color: #0160a5;
}

.opp-nav li.buy-button a:focus {
  outline-offset: 2px !important;
}

.ambilight50 {
  filter: url(#ambilight-50);
}

/* Base state for elements before animation */
#th-intro-content div > * {
  opacity: 0; /* Start invisible */
  transform: translateX(-200px); /* Start off-screen to the left */
}

/* Class to trigger the animation */
.slide-bounce {
  animation: slideInBounce 0.8s ease-out forwards; /* Default duration, overridden by JS */
}

/* Keyframes for slide-in with bounce */
@keyframes slideInBounce {
  0% {
    opacity: 0;
    transform: translateX(-200px);
  }
  60% {
    opacity: 1;
    transform: translateX(20px); /* Overshoot to the right */
  }
  80% {
    transform: translateX(-10px); /* Bounce back slightly */
  }
  100% {
    opacity: 1;
    transform: translateX(0); /* Settle in place */
  }
}

/* Class to trigger the animation */
.slide-bounce-right {
  animation: slideInBounceRight 0.8s ease-out forwards; /* Default duration, overridden by JS */
}

/* Keyframes for slide-in from right with bounce */
@keyframes slideInBounceRight {
  0% {
    opacity: 0;
    transform: translateX(200px); /* Start from the right */
  }
  60% {
    opacity: 1;
    transform: translateX(-20px); /* Overshoot to the left */
  }
  80% {
    transform: translateX(10px); /* Bounce back slightly to the right */
  }
  100% {
    opacity: 1;
    transform: translateX(0); /* Settle in place */
  }
}


#opp-intro {
  padding: 135px 0;
	background-size: cover;
  background-position: center bottom;
	background-color: #343a42;
	background-repeat: no-repeat;
  background-image: url(https://usa.mannatech.com/content/opportunity/bg-aloe-spoon.jpg);
}

#opp-intro h1 {
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  display: block;
  margin-bottom: 1.3em;
  line-height: 1.1em;
  text-shadow:0 5px 18px rgba(0,0,0,.9);
}

#opp-intro h2 {
  color:#fff;
  font-size:46px;
  font-weight:900;
  display: block;
  margin-bottom: 1.1em;
  line-height: 1.1em;
  text-shadow:0 5px 28px rgba(0,0,0,.9);
}

#opp-intro .btn {
  min-width:300px;
  text-align:center;
  padding: 17px;
  display: inline-block;
  box-shadow:0 5px 18px 0 rgba(0,0,0,.2);
  transition:box-shadow 0.25s ease, transform 0.25s ease;
}

#opp-intro .btn:hover {
  box-shadow:0 8px 28px 0 rgba(0,0,0,.3);
  transform: scale(1.02);
}

#opp-share {
  padding: 100px 30px;
  background-size: contain;
	background-repeat: no-repeat;
	background-position: left 50vw center;
	background-image: url(https://usa.mannatech.com/content/opportunity/bg-opp-people-sharing.jpg);
}

#opp-share h3 {
  font-size: 46px;
  line-height: 1em;
  margin-bottom: 24px;
}

#opp-share h3 sup {
  font-size: 60%;
  top: -.6em;
}

#opp-share p {
  font-size: 1.23rem;
  line-height: 1.4705882353;
  margin-bottom: 30px;
}

#opp-share .btn {
  min-width:300px;
  text-align:center;
  display: inline-block;
}

#opp-marquee {
  position:relative;
  padding: 46px 0;
  box-shadow: 0 5px 18px 0 rgba(0,0,0,.2);
  z-index:10;
  overflow:hidden;
  width:100vw;
}

#opp-marquee>.flex {
  display: inline-flex;
  flex-direction:row;
}

#opp-marquee::before,
#opp-marquee::after {
  content: '';
  position: absolute;
  top:0;
  bottom: 0;
  width: 8vw;
  backdrop-filter: blur(10px) saturate(1.2);
  mask: linear-gradient(to left, transparent 0%, black 100%);
  z-index:1;
}

#opp-marquee::before {
  left: 0;
  /* background-color: #ffa68d; */
  mask: linear-gradient(to left, transparent 0%, black 100%);
}

#opp-marquee::after {
  right: 0;
  /* background-color: #ffc579; */
  mask: linear-gradient(to right, transparent 0%, black 100%);
}

.marquee-content {
  display: inline-flex;
  gap: 15px;
  margin-right:15px;
}

.marquee-content p {
    padding: 10px 30px;
    background-color: rgb(255 255 255 / 75%);
    border-radius: 50px;
    font-weight: 900;
    color: #343a44;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing:0.5px;
    display: inline-block;
    white-space: nowrap;
    margin-bottom: 0;
}

#opp-science {
  padding: 110px 0 100px;
}

#opp-science img {
  /* box-shadow: 0 0 29px 0 rgba(0, 0, 0, .2); */
  filter: url(#ambilight-50);
  transform: translate(-5vw, 0em);
  scale: 1.1;
}

#opp-science h3 {
  font-size: 46px;
  line-height: 1em;
  margin-bottom: 24px;
}

#opp-science p {
  font-size: 1.23rem;
  line-height: 1.4705882353;
  margin-bottom: 30px;
}

#opp-science p a {
  color:#0b99ff;
  font-weight:900;
  text-decoration:none;
}

#opp-science p a:hover {
  color: #0160a5;
}

#opp-stats {
  padding: 80px 0;
}

#opp-stats-content .flex {
  justify-content: space-between;
  align-items:center;
  gap:30px;
}

#opp-stats-content h2 {
  font-size: 36px;
  margin-bottom:34px;
}

.opp-stat-num {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 0;
}

.opp-stat-desc {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 0;
}


#opp-glyco {
  padding: 110px 0 100px;
}

#opp-glyco img {
  /* box-shadow: 0 0 29px 0 rgba(0, 0, 0, .2); */
  filter: url(#ambilight-50);
  transform: translate(5vw, .6em);
  scale: 1.1;
}

#opp-glyco h3 {
  font-size: 45px;
  line-height: 1em;
  margin-bottom: 24px;
}

#opp-glyco p {
  font-size: 1.23rem;
  line-height: 1.4705882353;
  margin-bottom: 30px;
}


#opp-join {
  padding: 110px 0 100px;
}

#opp-join-head-content {
  margin-bottom:20px;
}

#opp-join h3 {
  font-size: 45px;
  line-height: 1em;
  margin-bottom: 24px;
}

#opp-join p {
  font-size: 1.23rem;
  line-height: 1.4705882353;
  margin-bottom: 30px;
}

#opp-join .cta-section {
  border-radius:25px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 40px 40px 0 7px;
}

.benefits-list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  bottom: 0;
  width: 39px;
  border-radius: 50px;
  background: linear-gradient(180deg, #b3d4aa, #66b389);
}

.benefits-list li {
  margin-bottom: 25px;
  font-size: 17px;
  position: relative;
  padding-left: 70px;
  line-height: 1.5;
}

.benefits-list li strong {
  font-weight:900;
}

.benefits-list li svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 1em;
  height: 1em;
  vertical-align: -.125em;
  fill: #0c5545;
  stroke: #0c5545;
  color: #0c5545;
  font-size: 25px;
}

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

.cta-image {
  max-width: 470px;
  height: auto;
  margin-bottom: 40px;
  margin-top: -124px;
}

.cta-box {
  background-color: #3e2a18;
  padding: 22px 22px 20px 40px;
  border-radius: 0 0 25px 25px;
  color: #fff;
}

.cta-box>.flex {
  justify-content:space-between;
  align-items:center;
}

.cta-box .cta-labels {
  display: flex;
  gap:30px;
}

.cta-box h4 {
  margin: 0;
  font-size: 26px;
  font-weight:900;
}

#opp-join .cta-box .price {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

#opp-join .cta-box .btn.opp-add-to-cart {
  background-color: #ffe09c;
  border-radius: 50px;
  color: #343a44;
  font-weight:900;
  padding: 14px 40px;
  position: relative;
  -webkit-animation: radarBundlePulser 2s infinite;
  animation: radarBundlePulser 2s infinite;
  border:2px solid #3e2a18;
}

#opp-join .cta-box .btn.opp-add-to-cart:hover {
  background-color: #fdb16c;
  font-weight:900;
}

.add-to-cart:hover {
  background-color: #e0b962;
}

  @keyframes radarBundlePulser {
    0% {
        -webkit-box-shadow: 0 0 0 0 #ffdf9b;
        box-shadow: 0 0 0 0 #ffdf9b;
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255,146,15,0);
        box-shadow: 0 0 0 10px rgba(255,146,15,0)
    }
}



#opp-reviews {
  position: relative;
  padding:40px 0;
  width:100vw;
  overflow:hidden;
}

#opp-reviews>.flex {
  display: inline-flex;
  flex-direction:row;
}

#opp-reviews::before,
#opp-reviews::after {
  content: '';
  position: absolute;
  top:0;
  bottom: 0;
  width: 8vw;
  backdrop-filter: blur(10px) saturate(1.2);
  mask: linear-gradient(to left, transparent 0%, black 100%);
  z-index:1;
}

#opp-reviews::before {
  left: 0;
  /* background-color: #ffa68d; */
  mask: linear-gradient(to left, transparent 0%, black 100%);
}

#opp-reviews::after {
  right: 0;
  /* background-color: #ffc579; */
  mask: linear-gradient(to right, transparent 0%, black 100%);
}

#opp-reviews .reviews-content {
  display: inline-flex;
  flex-direction:row;
  column-gap: 20px;
  padding: 30px 0;
}

#opp-reviews .reviews-content .opp-review {
  display: flex;
  flex-direction: column;
  align-items: start;
  min-width: 475px;
  margin-right:100px;
}

#opp-reviews .reviews-content .opp-review .opp-review-initials {
  font-size: 1.1rem;
  font-weight: 900;
  margin: 0;
  background-color: #ffffff;
  color: black;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

#opp-reviews .reviews-content .opp-review .opp-review-title {
  font-size: 1.3rem;
  font-weight: 900;
  margin: 12px 0 6px;
}

#opp-reviews .reviews-content .opp-review .opp-review-text {
  font-size: 1.1rem;
  margin: 0;
}



#opp-blocks {
  padding: 100px 0;
}

#opp-blocks-content.flex{
  gap:30px;
}

#opp-blocks-content .opp-block {
  background-color:#ffffff;
  padding:40px 40px 90px;
  border-radius:24px;
  margin-bottom:0;
}

#opp-blocks-content .opp-block .pre-header {
  font-size: 17px;
}

#opp-blocks-content .opp-block h3 {
  font-size: 34px;
  line-height: 1em;
  margin-bottom: 24px;
}

#opp-blocks-content .opp-block p {
  font-size: 1.1rem;
  line-height: 1.4705882353;
  margin-bottom: 30px;
  font-weight: 500;
}

#opp-blocks-content .opp-block .btn {
  padding: 15px 30px;
  font-size: 14px;
  min-width: 50%;
  display: inline-block;
  text-align: center;
  position: absolute;
  bottom:40px;
}


#opp-gig {
  padding: 100px 0;
  position: relative;
  /* background-size: contain; */
	/* background-repeat: no-repeat; */
	/* background-position: left 50vw center; */
	/* background-image: url(https://usa.mannatech.com/content/opportunity/bg-opp-people-sharing.jpg); */
}

#opp-gig::after {
  content: '';
  position: absolute;
  right:0;
  bottom: 0;
  height: 750px;
  width: 50vw;
  background-image: url(https://usa.mannatech.com/content/opportunity/img-family-gig.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
}

#opp-gig h3 {
  font-size: 46px;
  line-height: 1em;
  margin-bottom: 24px;
  color: #16191e;
}

#opp-gig p {
  font-size: 1.23rem;
  line-height: 1.4705882353;
  margin-bottom: 30px;
  font-weight: 500;
  color: #16191e;
}

#opp-gig .btn {
  min-width:300px;
  text-align:center;
  display: inline-block;
}




.orange-text {
    color: #ff7a01;
    font-weight:800;
}

.red-text {
    color: #ff004e;
    font-weight:800;
}

.blue-text {
    color: #0b99ff;
    font-weight:800;
}

.green-text {
    color: #00cd70;
    font-weight:800;
}

.aloe-text {
  color: #13bc85;
}

.med-aloe-text {
  color: #017565;
}

.dark-aloe-text {
  color: #004a32;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-monty {
  font-family: Montserrat, 'Lato', Arial, Helvetica, sans-serif !important;
}

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

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

.bold-900,
.btn.bold-900:hover {
  font-weight:900;
}

.pre-header {
  font-size: 20px;
  margin-bottom: 17px;
}

.page-disclaimer {
  background-color: #f5f5f7;
  font-size: 12px;
  padding: 25px 0.25em;
}

.page-disclaimer-dark {
  background-color: #333a44;
  color: #939ea4;
}

.page-disclaimer p {
  font-size: 12px;
  margin-bottom: 10px;
  line-height: 1.3em;
}

.page-disclaimer p:last-of-type {
  margin-bottom:0;
}




@media only screen and (max-width:800px) {
  [id] {
    scroll-margin-top: 70px; /* Matches nav height + buffer */
  }

  .page-heading {
    font-size: 24px;
    margin-bottom: 24px;
    color: #000000;
    text-align: center;
    font-size: 22px !important;
    font-weight: 900;
    padding-top: 15px;
  }
  div[data-widget-id="59d90463-5e63-4213-bb94-5738a1df3669"], /* Sandbox */
  div[data-widget-id="8d7c66b5-e1bb-40a2-8ebe-38721c0652ca"],
  div[data-widget-id="3f4d4191-baaa-4d28-9cc1-bb555a2a107e"] {
    min-height:38.3px;
  }
  .opp-nav {
    margin-top: -10px;
    padding: 1vh 0;
    background-color: #ededef;
    border-bottom: 1px solid #d6d6d6;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .opp-nav.sticky {
    left:20px;
  }

  .opp-nav.sticky ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .opp-nav.sticky ul li {
    padding: 0 0 0 2%;
  }

  .opp-nav ul {
    margin:0;
    display: flex;
    justify-content: space-between;
  }

  .opp-nav li {
    padding: 0 15px;
  }

  .opp-nav li a {
    font-size:14px;
    padding:0;
    text-align: center;
    display: inline-block;
  }

  .opp-nav li.buy-button a {
    display: inline;
  }

  #opp-intro {
    padding: 60px 0;
  }

  #opp-intro h1 {
    font-size: 20px;
  }

  #opp-intro h2 {
    font-size: 27px;
    margin-bottom: 1.2em;
  }

  #opp-intro .btn {
    padding: 15px;
  }

  .pre-header {
    font-size: 17px;
  }

  #opp-share {
    padding: 7vh 9% 360px;
    background-position: bottom center;
  }

  #opp-share h3 {
    font-size: 34px;
    line-height: 1em;
    margin-bottom: 24px;
  }

  #opp-share p {
    font-size:17px;
  }

  #opp-marquee {
    padding: 25px 0;
  }

  #opp-science {
    padding: 7vh 9% 2vh;
  }

  #opp-science-content.flex {
    flex-direction: column-reverse;
  }

  #opp-science h3 {
    font-size: 34px;
    line-height: 1em;
    margin-bottom: 24px;
  }

  #opp-science p {
    font-size:17px;
  }

  #opp-stats {
    padding: 7vh 9%;
  }

  #opp-stats-content h2 {
    font-size: 24px;
    line-height: 1.2em;
    margin-bottom: 24px;
  }

  #opp-stats-content .flex {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    row-gap: 20px;
  }

  #opp-stats-content .flex::before,
  #opp-stats-content .flex::after {
    display:none;
  }

  #opp-stats-content .flex .opp-stat {
    flex-grow:1;
    width:40%;
  }

  #opp-glyco {
    padding: 7vh 9% 2vh;
  }

  #opp-glyco h3 {
    font-size: 34px;
    line-height: 1em;
    margin-bottom: 24px;
  }

  #opp-glyco p { 
    font-size:17px;
  }

  #opp-join {
    padding: 7vh 9%;
  }

  #opp-join h3 {
    font-size: 34px;
    line-height: 1em;
    margin-bottom: 24px;
  }

  #opp-join p {
    font-size:17px;
  }

  #opp-join-head-content {
    margin-bottom:0;
  }

  .benefits-list {
    margin: 9px 0 0 7px;
  }

  .benefits-list li {
    padding-left:60px;
  }

  #opp-join .cta-section {
    margin-top: 30px;
  }

  .cta-box {
    padding: 24px;
  }

  .cta-image {
    max-width: 270px;
    margin-bottom: 25px;
    margin-top: -70px;
  }

  .cta-box>.flex {
    row-gap: 18px;
  }

  #opp-join .cta-box .btn.opp-add-to-cart {
    width: 100%;
  }

  #opp-reviews {
    padding:0;
  }

  #opp-reviews .reviews-content .opp-review {
    min-width: 300px;
    margin-right:50px;
  }

  #opp-reviews .reviews-content .opp-review .opp-review-text {
    font-size:15px;
  }

  #opp-blocks {
    padding: 5vh 0;
  }

  #opp-blocks-content.flex {
    max-width:100vw;
  }

  #opp-blocks-content .opp-block {
    padding: 40px;
  }

  #opp-blocks-content .opp-block p {
    font-size:16px;
  }

  #opp-blocks-content .opp-block .btn {
    position: unset;
    display: block;
  }

  #opp-gig {
    padding: 7vh 9% 90vw;
    position:relative;
  }

  #opp-gig::after {
    width: 100vw;
    z-index:1;
  }

  #opp-gig>div.row {
    position:relative;
    z-index:2;
  }

  #opp-gig h3 {
    font-size: 34px;
    line-height: 1em;
    margin-bottom: 24px;
  }

  #opp-gig p {
    font-size:17px;
  }

  #opp-gig .btn {
    display:block;
  }

  .flex {
    flex-direction: column;
  }

  .small-12.medium-6.large-6 {
    width: 100%;
    margin-bottom: 20px;
  }
}