@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:ital,wght@0,100..900;1,100..900&family=Poppins:wght@300;700&display=swap');

@font-face {
    font-family: 'Bebas Neue Book';
    src: url('../fonts/BebasNeueBook.eot');
    src: url('../fonts/BebasNeueBook.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BebasNeueBook.woff2') format('woff2'),
        url('../fonts/BebasNeueBook.woff') format('woff'),
        url('../fonts/BebasNeueBook.ttf') format('truetype'),
        url('../fonts/BebasNeueBook.svg#BebasNeueBook') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Muli';
    src: url('../fonts/Muli-Bold.eot');
    src: url('../fonts/Muli-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Muli-Bold.woff2') format('woff2'),
        url('../fonts/Muli-Bold.woff') format('woff'),
        url('../fonts/Muli-Bold.ttf') format('truetype'),
        url('../fonts/Muli-Bold.svg#Muli-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Muli';
    src: url('../fonts/Muli-ExtraBold.eot');
    src: url('../fonts/Muli-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Muli-ExtraBold.woff2') format('woff2'),
        url('../fonts/Muli-ExtraBold.woff') format('woff'),
        url('../fonts/Muli-ExtraBold.ttf') format('truetype'),
        url('../fonts/Muli-ExtraBold.svg#Muli-ExtraBold') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Muli';
    src: url('../fonts/Muli-Regular.eot');
    src: url('../fonts/Muli-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Muli-Regular.woff2') format('woff2'),
        url('../fonts/Muli-Regular.woff') format('woff'),
        url('../fonts/Muli-Regular.ttf') format('truetype'),
        url('../fonts/Muli-Regular.svg#Muli-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
  --baseFont: "Roboto", sans-serif;
  --titleFont: 'Bebas Neue Book';
  --titleFont2: "Bebas Neue", sans-serif;
  --titleFont3: 'Muli';
  --primary: #ff6900;
  --primaryDark: #dd5b00;
  --primaryLight: #fb8a1a;
  --secondary: #f2d00b;
  --textDark: #0b0605;
  --textLight: #2b3536;
  --bgLight: #f7f1e6;
  --bgLight2: #f5eee3;
  --bgDark: #0b0605;
  --black: #000;
  --white: #fff;
  --borderColor: #909090;
  --primaryGradient: linear-gradient(to right,  rgba(247,123,46,1) 0%,rgba(247,144,55,1) 100%);
}
body {
  font-family: var(--baseFont);
  font-size: 21px;
}
img {
  max-width: 100%;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
.btn {
  padding: 21px 65px;
  border-radius: 0;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  transition: all 300ms ease-in-out;
}
.btnPrimary {
  background-color: var(--primary);
  color: var(--white);
}
.btnPrimary:hover {
  background-color: var(--primaryDark);
  color: var(--white);
}
.btnPurple {
  background:#7c4dff;
  color:var(--white);
}
.btnPurple:hover {
  background:#522bbd;
  color:var(--white);
}

.pulse {
	animation-name: pulse;
	-webkit-animation-name: pulse;
	animation-duration: 1.5s;
	-webkit-animation-duration: 1.5s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.9;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.9;
  }
}


.textSecondary {
  color: var(--secondary);
}
.textPrimary {
  color: var(--primary);
}
.textPrimaryLight {
  color: var(--primaryLight);
}
.sectionSpace {
  padding: 130px 0;
}
.bgLight {
  background-color: var(--bgLight);
}
.bgPrimary {
  background-color: var(--primaryLight);
  color: var(--white);
}
.bgGradient {
  background: var(--primaryGradient);
}
.bgBlack {
  background-color: var(--black);
  color: var(--white);
}
.lgText {
  font-size: 36px;
}
.xlTitle {
  font-size: 100px;
  line-height: 1;
  font-family: var(--titleFont);
}
.lgTitle {
  font-size: 72px;
  line-height: 1;
  font-family: var(--titleFont);
}
.btnBlack {
  background-color: var(--black);
  color: var(--white);
}
.btnBlack:hover {
  background-color: var(--black);
  color: var(--white);
  opacity: 0.8;
}


.topbar {
	background-color: var(--bgDark);
	color: var(--white);
	font-size: 20px;
	padding: 10px 0;
	text-align: center;
	line-height: 1.1;
}
#current-date {
	display: inline-block;
}
.bannerSection {
  overflow: hidden;
}
.bannerInnerSection {
  padding-left: 216px;
  position: relative;
}
.headerRow {
  padding: 30px 0 20px;
}
.hOfferText {
	margin-left: auto;
	max-width: 380px;
	font-size: 24px;
	line-height: 1;
	color: #144133;
}
.blTopCol {
	position: relative;
  z-index: 2;
}
.bannerLeftImgMobile {
	position: absolute;
  z-index: -1;
}
.bannerLeftImg {
	position: absolute;
	right: calc(100% - 750px);
	pointer-events: none;
	bottom: -10px;
}
.bannerLeftImg img, .bannerBgCol img {
	max-width: initial;
}
.bannerBgCol {
	position: absolute;
	left: 580px;
	top: 160px;
}
.bannerLeftContent {
	padding-top: 30px;
}
.bannerLeftBtm {
	text-align: center;
	padding-top: 250px;
	max-width: 418px;
}
.bannerFormCol {
  width: 418px;
  border-radius: 22px;
  padding: 36px 30px;
  background-color: var(--white);
  box-shadow: 0 0 122px rgba(110,111,124,0.6);
}
.formTitle {
  font-size: 30px;
  line-height: 1;
  font-family: var(--titleFont2);
  letter-spacing: 1.5px;
}
.stepText {
  font-size: 52px;
  color: var(--primary);
  display: block;
}
.formStyle .form-control {
	border-color: var(--borderColor);
	padding: 8px 15px;
	border-radius: 8px;
}
.secoreText {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-size: 18px;
  line-height: 1.2;
}
.formArrow {
	position: absolute;
	left: 100%;
	bottom: calc(100% + 20px);
}

.cardStyle2 {
  --br: 20px;
  border-radius: var(--br);
  height: 100%;
  background-color: var(--white);
}
.cs2ImgCol img {
	border-radius: var(--br);
	width: 100%;
	aspect-ratio: 336/298;
	object-fit: cover;
}
.cs2Content {
  padding: 20px 34px;
  font-size: 24px;
  font-weight: 500;
}
.cs2Content > p:last-child {
  margin-bottom: 0;
}
.btnLeftArrow {
	position: absolute;
	right: calc(100% + 10px);
	bottom: 10px;
}

.interducingLeftImgCol {
	width: 400px;
	height: 100%;
}
.introImg {
	margin-left: -220px;
  height: 100%;
}
.introImg > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.introContent {
	display: flex;
	flex-direction: column;
	row-gap: 24px;
	padding: 0 50px;
}
.textHighlightXl {
  font-size: 160px;
  line-height: 1;
  font-family: var(--titleFont2);
}
.proBtmInfo {
	display: flex;
	flex-direction: column;
	row-gap: 30px;
}
.tCContent blockquote {
  position: relative;
  padding-top: 40px;
  margin-top: 16px;
  margin-bottom: 8px;
}
.tCContent blockquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 34px;
  background-image: url('../images/quote.webp');
  background-repeat: no-repeat;
  background-size: contain;
}
.tCContent blockquote > p:last-child {
  margin-bottom: 0;
}
.bqFooter {
	text-align: right;
}
.bqFooter::before {
	content: "— ";
}
.tCImgCol > img {
	aspect-ratio: 342/608;
	object-fit: cover;
	width: 100%;
}
.tCImgCol .ratio {
  --bs-aspect-ratio: calc(608 / 342 * 100%);
}


.callToAction {
  background-color: var(--black);
  padding: 80px 0;
}
.callActionInner {
  max-width: 1130px;
  margin: 0 auto;
}
.callActionDesc {
  position: relative;
}
.callActionDesc img {
  position: absolute;
  bottom: 100%;
  right: 0;
}
.callActionDesc h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 500;
  font-family: var(--baseFont);
  text-transform: uppercase;
}
.callActionDesc {
  padding: 0 34px;
}
/***************** Call to Action css end ********************/
.wellnessCol {
  padding: 85px 0 0;
}
.cardShape {
  position: absolute;
  right: 100%;
  bottom: 30px;
  margin-right: 20px;
}
.bannerSection .wellnessColDesc {
  max-width: 500px;
}
.wellnessColDesc.maxWdCol {
	max-width: 400px;
}
/***************** Wellness css end ********************/



.cardStyle1 .cardLogo {
  margin-bottom: 40px;
}
.cardStyle1 h2 {
  margin-bottom: 10px;
}
.cardStyle1 .cardSubText {
  font-size: 22px;
  color: var(--black);
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.2;
}
.cardStyle1 .cardSubText span {
  display: block;
}
.cardStyle1 .cardLabel {
  background-color: var(--primary);
  padding: 12px 45px;
  line-height: 1.2;
  border-radius: 50px;
  font-size: 23px;
  color: var(--white);
  font-weight: 400;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 40px;
}
.cardStyle1 .cardFeature {
  margin-bottom: 40px;
}
.cardStyle1 ul {
  margin-bottom: 20px;
  display: inline-block
}
.cardList ul li {
  font-size: 24px;
  color: var(--black);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
}
.cardList ul li + li {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--primary);
}
/***************** Cardstyle1 css end ********************/


.ingredientCol {
  background-color: var(--bgLight2);
}
.ingredientImg {
  width: 400px;
  position: relative;
}
.ingredientImg img {
  margin-right: -220px;
  max-width: initial;
  object-fit: cover;
}
.ingTitle {
	font-size: 38px;
	color: white;
	position: absolute;
	left: 50px;
	top: 150px;
	text-transform: uppercase;
	line-height: 1;
	width: 250px;
}
.ingredientImg,
.ingredientImg img{
  height: 100%;
}
.textPrimary {
  color: var(--primary);
}
.ingredientDesc {
  padding-top: 150px;
}
.ingredientTitle span.titleCont {
  font-size: 21px;
  line-height: 1.1;
  color: var(--black);
  font-family: var(--baseFont);
  font-weight: 400;
}
.ingredientDesc .titleCol {
  margin-bottom: 70px;
}
.ingredientCardList .cardListStyle + .cardListStyle {
  margin-top: 50px;
}
.ingredientOuter {
  gap: 86px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.ingredientBtn {
  background-color: #f79037;
  padding: 60px 110px 60px 80px;
  display: inline-block;
  position: relative;
  margin-top: 60px;
}
.ingredientBtn:before {
  content: "";
  background-color: #f79037;
  width: 100vw;
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
}
.ingredientBtn img {
  position: absolute;
  left: 0;
  top: -10px;
}
/***************** Ingredient css end ********************/
.cardListStyle h3 {
  font-size: 40px;
  color: var(--black);
  font-weight: 500;
  font-family: var(--baseFont);
  margin-bottom: 30px;
}
.cardListStyle ul li {
  text-transform: uppercase;
  color: var(--textDark);
  font-size: 24px;
  border-top: 1px solid var(--primary);
  padding: 6px 0;
}
.cardListStyle li {
  display: flex;
  gap: 30px;
}
/***************** CardListStyle css end ********************/
.benefitCol {
  background: var(--primaryGradient);
  padding: 150px 0 100px;
  overflow: hidden;
}
.benefitCardOuter {
  margin-top: 50px;
  max-width: 1300px;
}
.benefitInner h2 {
  margin-bottom: 35px;
}
.benefitInner {
  position: relative;
}
.benefitFeatImg {
  position: absolute;
  right: -90px;
  top: 0px;
  z-index: 1;
}
.benefitDesc {
  max-width: 650px;
  font-size: 21px;
  line-height: 1.2;
  color: var(--black);
}
.benefitCol p {
  margin: 0;
}
.benefitList + .benefitList {
  margin-top: 45px;
}
.benefitMain {
  position: relative;
  z-index: 2;
}
/***************** Benefit css end ********************/
.cardStyle3 .cardImg {
  max-width: 133px;
}
.cardStyle3 .cardImg img {
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.cardStyle3 .cardDesc span {
  display: block;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--000000);
}
.cardStyle3 .cardDesc h3 {
  font-size: 27px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0;
}
.cardStyle3 .cardDesc,
.cardStyle3 .cardDesc p {
  font-size: 21px;
  font-weight: 400;
  line-height: initial;
  color: var(--black);
}
/***************** CardStyle3 css end ********************/
.footerCol {
  padding: 40px 0 100px;
}
.footerCol p {
  margin: 0;
}
.footerInner {
  max-width: 1220px;
  margin: 0 auto;
  font-size: 17px;
  letter-spacing: 1.7px;
  color: var(--textLight);
}
.footerText {
  margin-bottom: 45px;
}
.footerLinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 25px;
}
.footerLinks > li + li {
  position: relative;
  padding-left: 15px;
  margin-left: 15px;
}
.footerLinks > li + li:before {
  content: "|";
  position: absolute;
  left: 0;
}
.pamentOpt {
	display: flex;
	justify-content: center;
	align-items: center;
	row-gap: 10px;
	column-gap: 40px;
}
/***************** Footer css end ********************/


.ingredientMbCol {
	background-color: #aa8e76;
	padding-top: 30px;
	min-height: 380px;
  position: relative;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 30px;
}
.inMbLeftImg {
	position: absolute;
	left: 0;
	bottom: 0;
	max-height: calc(100% - 30px);
	width: 300px;
	object-fit: contain;
	object-position: bottom;
}
.iMbContent {
	text-align: right;
	margin-left: auto;
}
.iMbContent h4 {
	font-size: 48px;
  line-height: 1;
  text-transform: uppercase;
}



/***************** Upsell css Start ********************/
.footerText {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footerIcon {
  margin-bottom: 40px;
}
.upsellBtn {
  position: relative;
  display: inline-block;
  margin-top: 20px;
}
.upsellBtn img {
  position: absolute;
  right: 100%;
  bottom: 95px;
  margin-right: 5px;
}
.upsellCol {
  padding: 25px 0;
  background-color: var(--primary);
  overflow: hidden;
}
.upsellText h2 {
  color: var(--black);
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 500;
}
.upsellLogo {
  margin-bottom: 30px;
}
.upsellLogo img {
  filter: brightness(0) invert(1);
}
.upsellInner {
  max-width: 895px;
  margin: 0 auto;
}
.upsellBox {
  background-color: var(--white);
}
.upsellBoxInner {  
  padding: 40px 40px 30px 40px;
  /* overflow: hidden; */
}
.upsellBtn a {
  max-width: 350px;
}
.upsellDesc h3 {
  font-size: 48px;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  font-family: var(--titleFont);
  line-height: 1.1;
  margin-bottom: 10px;
}
.upsellDesc h3 span {
  display: block;
  font-size: 72px;
  font-family: var(--titleFont2);
  color: var(--primary);
}
.upsellDesc .subTitle {
  font-size: 27px;
  color: var(--black);
  font-weight: 500;
  font-family: var(--baseFont);
  line-height: initial;
  margin-bottom: 10px;
  display: block;
}
.upsellDesc h4 {
  color: #12b7ce;
  font-size: 50px;
  font-family: var(--baseFont);
  font-weight: 900;
  line-height: initial;
  margin-bottom: 15px;
}
.upsellDesc p {
  margin: 0;
  line-height: initial;
  text-transform: uppercase;
}
.upsellDesc .retailPrice,
.upsellDesc .promoPrice {
  font-family: var(--titleFont3);
  font-weight: 900;
}
.upsellDesc .retailPrice,
.upsellDesc .promoPrice {
  font-size: 36px;
  color: #010101;
}
.upsellDesc .promoPrice {
  color: #12b7ce;
}
.upsellDesc .promoPrice span {
  font-size: 40px;
  display: block;
  line-height: 1;
}
.upsellDesc .retailPrice span {
  color: #c70000;
}
.paymentBox {
  padding: 20px 10px;
  background-color: #f9e8d8;
}
.paymentBox img {
  mix-blend-mode: multiply;
}
.upsellIncrement {
  color: var(--white);
  margin-top: 30px;
  font-family: var(--titleFont3);
  font-size: 19px;
}
.upsellIncrement p {
  margin: 0;
}
.qtyStepper {
  background-color: #fff;
  border-radius: 5px;
  display: inline-flex;
  overflow: hidden;
  margin-top: 25px;
  border: 1px solid #898989;
}
.qtyStepper button {
  background-color: #0fc2d9;
  border: 0;
  box-shadow: none;
  width: 48px;
  height: 42px;
}
.qtyStepper input {
  box-shadow: none;
  border: 0 ;
  text-align: center;
  font-size: 20px;
  font-family: var(--titleFont3);
  font-weight: 700;
  color: #414141;
  appearance: none;
  min-width: 70px;
}
.qtyStepper input:focus,
.qtyStepper input:focus-visible {
  box-shadow: none;
  border: 0;
  outline: none;
}
/***************** Upsell Review Css Start ********************/
.upsellReviewCol {
  padding: 70px 0 50px;
}
.upsellReviewInner {
  max-width: 700px;
  margin: 0 auto;
}
.upsellRevList + .upsellRevList {
  border-top: 1px solid #848ac2;
  margin-top: 40px;
  padding-top: 40px;
}
.upsellRevList h2 {
  font-family: var(--titleFont3);
  font-weight: 700;
  font-size: 21px;
  text-transform: uppercase;
  margin: 0;
}
.upsellRevList .upsellReviewDesc  {
  font-family: var(--titleFont3);
  font-size: 19px;
  color: var(--black);
  margin-top: 35px;
}
.upsellRevList .authorCol {
  margin-top: 10px;
  font-size: 19px;
  color: var(--black);
  text-transform: uppercase;
}
/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}




/*** checkout page start **/
.checkoutSection.sectionSpace {
	padding-top: 30px;
}
.productOfferCol {
	padding-top: 10px;
}
.topbar .tbText {
  font-size: 16px;
}
.shippingAddress {
  padding: 35px 50px 28px;
  background-color: var(--bgLight);
  text-align: center;
}
.shippingAddress > h4 {
  font-family: var(--titleFont3);
  font-size: 22px;
  text-transform: uppercase;
  font-weight: bold;
}
.shippingAddress .partnerlogo {
  max-width: 158px;
  margin: 6px 0;
}
.radioCheck .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}
.formText {
  margin: 20px 0 26px;
  border-bottom: 1px solid var(--primary);
}
.lhCol {
  line-height: 1.1;
}


.productOfferCard {
  display: block;
  cursor: pointer;
}
.productOffer {
	background-color: var(--bgLight);
	border: 4px solid transparent;
	padding: 20px 20px 20px 100px;
	position: relative;
  transition: border-color 300ms ease-in-out 0s;
}
.offerCheck:checked + .productOffer {
  border-color: var(--primary);
}
.offerCheck {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  left: 0;
}
.offerCheckStyle {
	position: absolute;
	left: 12px;
	top: 14px;
  background-color: black;
	border: none;
	border-radius: 50%;
	width: 60px;
	height: 60px;
}
.offerCheckStyle .checkIcon {
	position: absolute;
	bottom: 10px;
	left: 10px;
  opacity: 0;
}
.offerCheck:checked + .productOffer .offerCheckStyle .checkIcon {
  opacity: 1;
}
.btn.selectBtn {
	position: absolute;
	right: -4px;
	bottom: -4px;
	background-color: #686868;
	color: white;
	padding: 12px 30px;
	min-width: 220px;
	letter-spacing: 2px;
  pointer-events: none;
}
.offerCheck:checked + .productOffer .btn.selectBtn {
	background-color: var(--primary);
}
.offerTopText {
  letter-spacing: 2px;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.textGreen {
  color: #27a500;
}
.offerDetails {
	width: 200px;
	text-align: center;
}
.offerImages {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 20px 0;
}
.resultsText {
	font-size: 24px;
	font-weight: 700;
}
.priceBox {
	box-shadow: 0 0 40px rgba(0,0,0,0.2);
	background-color: white;
	border-radius: 17px;
	padding: 8px 12px;
	margin-top: 8px;
}
.priceBox .price {
	display: block;
	font-size: 30px;
	font-family: var(--titleFont3);
	font-weight: 900;
	color: var(--primary);
	line-height: 1;
}
.retailLabel {
	font-size: 19px;
	font-weight: 900;
	font-family: var(--titleFont3);
	color: var(--primary);
}
.retailStrike {
	color: #c70000;
	text-decoration: line-through;
}
.perPack {
	display: block;
	font-size: 15px;
	letter-spacing: 1px;
}
.plusSign img {
  min-width: 20px;
}
.productOfferCard + .productOfferCard {
	margin-top: 15px;
}
.checkOutRight {
	padding-top: 20px;
  font-size: 18px;
}
.checkOutRight .shippingAddress {
	margin-left: -30px;
	margin-right: -30px;
}
.checkOutLeft {
	max-width: 800px;
}
.moneyBackTitle {
	width: 310px;
	padding: 0 10px;
}
.moneyBackBadge {
	text-align: center;
	width: 250px;
}
.moneyBackText {
	font-weight: 300;
}

.stepFormSection {
  padding: 20px 0 40px;
  overflow: hidden;
}
#multiStepForm .form-label {
	margin-bottom: 4px;
}
.stepNav {
	--gap: 4px;
	display: flex;
	justify-content: center;
	gap: var(--gap);
	font-size: 18px;
	letter-spacing: 1px;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.stepNav::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  border-radius: 5px;
  background-color: var(--primary);
  left: 0;
  right: 0;
}
.stepNav > li + li {
  padding-left: var(--gap);
}
.stepNav > li + li::before {
	content: "";
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 4px;
  background-color: var(--textDark);
  border-radius: 50%;
  margin-right: calc(var(--gap) + 2px);
}
.stepNav .active {
	color: var(--primary);
}
.stepFormSubtitle {
	font-family: var(--titleFont3);
	font-weight: bold;
	font-size: 20px;
}
.textDanger {
  color: #d80303;;
}
.aprovedText {
  font-family: var(--titleFont3);
	font-weight: bold;
}
.aprovedText p {
	margin-bottom: 10px;
	font-size: 16px;
  line-height: 1.2;
}
.plusSignMb {
	width: 30px;
}
.offerImgText {
	display: block;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
}
.mbChooseProduct .retailLabel {
  color: inherit;
}
.mbChooseProduct .productOffer {
	padding: 0;
	border-color: rgba(0,0,0,0.1);
}
.productOfferTopCol {
	padding: 20px 30px;
}
.mbChooseProduct .btn.selectBtn {
	position: static;
	margin-bottom: 30px;
	width: 100%;
	text-align: right;
	padding-left: 200px;
}
.productOfferBtmCol {
  position: relative;
}
.saveLbl {
	position: absolute;
	top: -10px;
}
.saveLblText {
	position: absolute;
	z-index: 1;
	color: var(--white);
	padding: 8px 40px 8px 20px;
	text-align: center;
	line-height: 1.2;
	font-size: 13px;
	width: 100%;
}
.saveLblText > span {
	display: block;
	font-size: 20px;
	font-weight: 700;
}
.mbChooseProduct .offerCheckStyle {
  display: none;
}
.offerMbCheckStyle {
	position: absolute;
	left: 155px;
	top: -15px;
	width: 50px;
  opacity: 0;
  transition: opacity 300ms ease-in-out 0s;
}
.offerCheck:checked + .productOffer .offerMbCheckStyle {
  opacity: 1;
}
.offerImgCol {
	text-align: center;
	min-width: 124px;
}
.productOfferTopCol .offerTopTextMb {
	font-size: 26px;
	text-transform: uppercase;
	letter-spacing: 2px;
  margin-bottom: 10px;
}
#multiStepForm.formStyle .form-control {
	padding: 12px 15px;
}
.mobilePaymentFomrCol {
	position: relative;
	padding: 50px 0;
	margin-bottom: 30px;
}
.mobilePaymentFomrCol::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 110vw;
  transform: translateX(-50%);
  box-shadow: inset 0 0 10px rgba(0,0,0,0.08);
  background-color: var(--bgLight);
  top: 0;
  bottom: 0;
  z-index: -1;
}
.paymentInfoTopCol {
	padding-bottom: 25px;
  color: #4f4f4f;
}
.weAccept {
	padding: 10px 0;
}
.waTitle {
	font-size: 24px;
	letter-spacing: 1px;
	padding: 10px 0;
}
.stepNav.noLine::before {
  display: none;
}
.selectedProductCol {
	position: relative;
	padding: 0 24px 10px;
}
.selectedLeftShape, .selectedRightShape {
	position: absolute;
	bottom: 0;
	z-index: -1;
}
.selectedLeftShape {
	left: 0;
}
.selectedRightShape {
	right: 0;
}
.selectedProduct {
	background-color: var(--primaryLight);
	padding: 14px;
	font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
	color: var(--black);
	display: flex;
	justify-content: center;
	gap: 15px;
	align-items: center;
  text-align: left;
}
.selectedCartIcon {
	width: 50px;
	mix-blend-mode: multiply;
}
/*** checkout page end **/

/* Design 9 */
.topbar.topbar2 {
  font-size: 16px;
}
.bannerInnerSectionD9 {
  padding-left: 40px;
  position: relative;
  padding-bottom: 50px;
}
.d9BannerProBg {
	position: absolute;
	right: 270px;
	top: 150px;
}
.d9BannerRightImg {
	position: absolute;
	left: calc(100% - 90px);
	bottom: 0;
}
.d9BannerRightImg img {
  max-width: initial;
}
.d9BannerLeftImg {
	position: absolute;
	right: 100%;
  width: 410px;
  bottom: -100px;
}
.bannerLgTitle {
  font-size: 72px;
  font-family: var(--titleFont);
  line-height: 1;
}
.hlthBgText {
	background-color: var(--primary);
	color: var(--white);
	padding: 15px;
	font-size: 22px;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.bannerD9LeftContent {
	max-width: 490px;
}
.featuredLbl {
	display: block;
	color: #565656;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 16px;
}
.checkListStyle > li {
	position: relative;
	padding: 10px 0 10px 40px;
}
.checkListStyle > li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 14px;
	width: 25px;
	height: 20px;
	background-image: url('../images/list-check-icon.webp');
	background-repeat: no-repeat;
	background-size: contain;
}
.checkListStyle > li + li {
  border-top: 1px solid var(--primary);
}
.beforeAfterContent {
	padding-left: 90px;
}
.listLeftSpace {
  padding-left: 35px;
}
.checkListStyle > li > p:last-child {
	margin-bottom: 0;
}

.rtlArrowBtnCol {
  padding-right: 50px;
  padding-top: 40px;
}
.rightArrow {
  position: absolute;
  left: 100%;
  width: 80px;
  margin-left: 20px;
  bottom: 15px;
}
.cs02Img {
	aspect-ratio: 335/298;
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
  border-radius: 20px;
}
.cs02Title, .cs03Title {
	font-size: 24px;
	line-height: normal;
	letter-spacing: 1px;
}
.cs02ContentCol p, .cs03ContentCol p {
	line-height: 1.2;
}
.cs02Title + p, .cs03Title + p {
	padding-top: 10px;
}
.cs03ContentCol > p:last-child {
	margin-bottom: 0;
}
.cs03Img {
  aspect-ratio: 176/188;
	height: auto;
	object-fit: cover;
	display: block;
  border-radius: 20px;
  width: 176px;
}
.whyWorksBtmSection {
	padding: 90px 30px 0;
}
.whyWorksBtmSection .callActionDesc {
	padding-left: 0;
}
.glpActContent > h5 {
  font-size: 24px;
  line-height: normal;
}
.glpActContent > p {
  line-height: 1.2;
  font-weight: 300;
}
.glpActContent > p + h5 {
  margin-top: 20px;
}
.glpImg {
	margin-top: -50px;
  width: 500px;
}
.storiesCard .tCImgCol {
	width: 208px;
}
.swiperPaginationStyle .swiper-pagination-bullet {
	background-color: #dfd7c9;
	opacity: 1;
	height: 6px;
	width: 80px;
	border-radius: 0;
}
.swiperPaginationStyle .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--primary);
}
.swiperPaginationStyle {
	display: flex;
	justify-content: center;
  margin: 80px 0 20px;
}
.btnSideArrowCol {
  padding-left: 140px;
  position: relative;
}
.btnSideArrowCol .btnOutsideArrow {
	position: absolute;
	left: 0;
	top: -30px;
}
.d9ShortWdCol {
  max-width: 450px;
}
.d9BtmBannerImg {
	padding-bottom: 60px;
}
.d9BtmBannerImg > img {
	margin-left: -280px;
	max-width: inherit;
  width: 700px;
}
.benefitFeatImg.whyPopularProImg {
	right: -290px;
}
.beforeAfterImgCol {
	width: 500px;
}
.storiesSwiper .tCContent blockquote {
	margin-top: 0;
}
.swiperPaginationStyle {
	margin: 50px 0 20px;
}
.d9ShortWdCol {
	max-width: 450px;
	position: relative;
}
.sectionSpace.mpnSection {
	padding: 80px 0;
}
.stepsLogo {
  height: 50px;
  width: auto;
}



/* modal */

#discountModal .modal-content {
	border-radius: 0;
  padding: 50px 40px;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}
.modalDiscountTitle {
	font-weight: 300;
	font-size: 70px;
	line-height: 1;
}
.modalDiscount {
	font-weight: 700;
	color: #f30000;
	display: block;
}
.modalSubtitle, .modalPrice {
	font-size: 24px;
}
.modalProduct {
	color: #6a3df5;
	font-size: 36px;
	line-height: 1.2;
	font-weight: 600;
	padding: 5px 0;
}
.modalPriceHighlight {
  color: #f30000;
  font-weight: 600;
}
.modal-arrow {
	position: relative;
  padding: 10px;
  margin-bottom: 15px;
}
.modal-arrow img {
	position: absolute;
	right: -40px;
	bottom: 0;
}
.closeModalText > span {
  display: inline-block;
  cursor: pointer;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
}
.modalCloseIcon .btn-close {
	position: absolute;
  right: 15px;
  top: 15px;
}
.bannerLeftContent {
	max-width: 520px;
}
.floatingBtnCol {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  text-align: center;
  padding: 10px 20px;
  background:var(--primaryGradient);
}


@media (min-width:1200px) {
  #discountModal .modal-dialog {
    --bs-modal-width: 1000px;
  }
}
@media (min-width:1400px) {
  .container.containerLg {
    max-width: 1280px;
  }
}
@media (min-width:1600px) {
  .container {
    max-width: 1400px;
  }
}
@media (min-width:1920px) {
  .container {
    max-width: 1528px;
  }
}

@media (max-width:1900px) {
  body, .cardList ul li, .topbar {
    font-size: 18px;
  }
  .sectionSpace, .benefitCol, .ingredientDesc {
    padding: 100px 0;
  }
  .hOfferText {
    max-width: 300px;
    font-size: 20px;
  }
  .introContent {
    row-gap: 20px;
    padding: 0 30px;
  }
  .btn {
    padding: 20px 40px;
    font-size: 20px;
  }

  .xlTitle {
    font-size: 70px;
  }
  .lgTitle {
    font-size: 50px;
  }
  .cs2Content {
    padding: 20px 24px;
    font-size: 24px;
  }
  .cs2Content {
    font-size: 20px;
  }
  .lgText {
    font-size: 26px;
  }
  .bannerBgCol {
    top: auto;
    bottom: 20px;
  }
  .bannerBgCol img {
    width: 900px;
  }
  .cardListStyle ul li {
    font-size: 18px;
  }
  .ingredientOuter {
    gap: 30px;
  }
  .cardListStyle h3 {
    font-size: 30px;
    margin-bottom: 16px;
  }
  .ingredientCardList .cardListStyle + .cardListStyle {
    margin-top: 30px;
  }
  .ingredientImg img {
    width: 510px;
  }
  .cardStyle3 .cardDesc h3 {
    font-size: 22px;
  }
  .callToAction {
    padding: 60px 0 40px;
  }
  .benefitFeatImg {
    width: 850px;
  }
  .wellnessCol {
    padding: 60px 0 0;
  }
  .callActionDesc h2 {
    font-size: 26px;
  }
  .callActionDesc {
    padding: 0 20px;
  }
  .stepText {
    font-size: 42px;
  }
  .formTitle {
    font-size: 24px;
  }

  .moneyBackBadge {
    width: 180px;
  }
  .moneyBackTitle {
    width: 220px;
  }

  .d9BtmBannerImg > img {
    margin-left: -240px;
    width: 620px;
  }
  .glpActContent > p {
    line-height: 1.5;
  }
  .glpActContent > p + h5 {
    margin-top: 30px;
  }
  .benefitFeatImg.whyPopularProImg {
    right: -80px;
    width: 700px;
  }
  .bannerSection.d9BannerSection {
    padding: 0 280px;
  }
  .d9BannerLeftImg {
    width: 380px;
    bottom: -60px;
  }
  .d9BannerRightImg img {
    width: 380px;
  }
  .d9BannerRightImg {
    left: calc(100% - 110px);
  }
  .bannerInnerSectionD9 {
    padding-left: 0;
  }
  .d9BannerProBg {
    right: 300px;
    top: 220px;
    width: 400px;
  }
  .bannerD9LeftContent {
    max-width: 400px;
    padding-bottom: 30px;
  }
  .bannerFormCol.d9BannerFormCol {
    width: 380px;
  }

}

@media (max-width:1399px) {
  .orderImg {
    width: 600px;
  }
  .bannerFormCol {
    width: 370px;
    padding: 26px 20px;
  }
  .checkOutRight .shippingAddress {
    margin-left: -20px;
    margin-right: -20px;
  }
  .bannerInnerSection {
    padding-left: 170px;
  }
  .bannerLeftImg {
    right: calc(100% - 680px);
    bottom: 0;
  }
  .bannerLeftImg img {
    width: 1200px;
  }
  .benefitFeatImg {
    width: 680px;
    top: 100px;
  }
  .benefitList + .benefitList {
    margin-top: 30px;
  }
  .ingTitle {
    left: 30px;
    top: 100px;
  }
  .offerBottleImg {
    max-height: 160px;
  }
  .resultsText {
    font-size: 20px;
  }
  .priceBox .price {
    font-size: 24px;
  }
  .retailLabel {
    font-size: 17px;
  }
  .offerDetails {
    width: 180px;
  }
  .offerCheckStyle {
    width: 40px;
    height: 40px;
  }
  .productOffer {
    border-width: 3px;
    padding: 20px 20px 20px 70px;
  }

  .bannerSection.d9BannerSection {
    padding: 0;
  }
  .d9BannerRightImg {
    display: none;
  }
  .bannerInnerSectionD9 {
    padding-left: 100px;
  }
  .d9BannerLeftImg {
    width: 340px;
    bottom: -60px;
    right: calc(100% - 100px);
  }
  .beforeAfterContent {
    padding-left: 40px;
  }
  .d9BtmBannerImg > img {
    margin-left: -220px;
    width: 580px;
  }
  .glpImg {
    margin-top: 0px;
    width: 480px;
  }
}


@media (max-width:1199px) {
  .xlTitle {
    font-size: 70px;
  }
  .lgTitle {
    font-size: 40px;
  }
  .lgText {
    font-size: 24px;
  }
  .cardStyle1 .cardSubText, .benefitDesc, .cardStyle3 .cardDesc p {
    font-size: 18px;
  }
  .cardStyle3 .cardDesc h3 {
    font-size: 20px;
  }
  .cs2Content {
    padding: 15px 14px 20px;
    font-size: 18px;
  }
  .cardStyle1 .cardLabel {
    padding: 8px 35px;
    font-size: 16px;
    margin-bottom: 20px;
  }
  .cardList ul li {
    font-size: 18px;
  }
  .cardList ul li + li {
    margin-top: 10px;
    padding-top: 10px;
  }
  .cardStyle1 .cardFeature img {
    max-width: 320px;
  }
  .btn {
    padding: 16px 30px;
    font-size: 20px;
  }
  .cardStyle1 .cardFeature {
    margin-bottom: 20px;
  }
  .headerRow {
    padding: 15px 0;
  }
  .bannerLeftImg img {
    width: 900px;
  }
  .bannerLeftImg {
    right: calc(100% - 440px);
  }
  .bannerInnerSection {
    padding-left: 100px;
  }
  .bannerLeftContent {
    padding-top: 130px;
  }
  .bannerLeftBtm {
    padding-top: 140px;
  }
  .btnLeftArrow {
    width: 60px;
  }
  .formArrow {
    width: 40px;
  }
  .bannerLeftContent {
    padding-top: 90px;
  }
  .sectionSpace, .benefitCol, .ingredientDesc {
    padding: 80px 0;
  }
  .formTitle {
    font-size: 20px;
  }
  .stepText {
    font-size: 32px;
  }
  .bannerBgCol {
    left: 400px;
  }
  .bannerBgCol img {
    width: 740px;
  }
  .interducingLeftImgCol {
    width: 300px;
  }
  .introImg {
    margin-left: -100px;
  }
  .introContent {
    row-gap: 10px;
    padding: 0;
  }
  .textHighlightXl {
    font-size: 100px;
  }
  .proBtmInfo {
    row-gap: 20px;
  }
  .proRightImg {
    width: 160px;
  }
  .benefitInner h2 {
    margin-bottom: 20px;
  }
  .benefitFeatImg {
    width: 610px;
    top: 100px;
  }
  .callActionDesc h2 {
    font-size: 22px;
  }
  .ctaLogo {
    width: 200px;
  }
  .callActionDesc img {
    width: 80px;
  }
  .callToAction {
    padding: 45px 0 30px;
  }
  .ingredientImg {
    width: 280px;
	}
  .ingTitle {
    left: 20px;
    font-size: 30px;
  }
  .cardListStyle h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .ingredientOuter {
    gap: 10px;
  }
  .orderImg {
    width: 500px;
  }
  .footerInner {
    font-size: 16px;
    letter-spacing: 1.5px;
  }

  .offerBottleImg {
    max-height: 110px;
  }
  .resultsText {
    font-size: 18px;
  }
  .priceBox .price {
    font-size: 22px;
  }
  .offerImages {
    gap: 6px;
    padding: 10px 0;
  }
  .retailLabel {
    font-size: 16px;
  }
  .offerDetails {
    width: 160px;
  }
  .offerCheckStyle {
    width: 30px;
    height: 30px;
    left: 6px;
    top: 6px;
  }
  .offerCheckStyle .checkIcon {
    bottom: 6px;
    left: 4px;
  }
  .productOffer {
    border-width: 3px;
    padding: 15px 15px 40px 50px;
  }
  .offerTopText {
    letter-spacing: 1px;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .btn.selectBtn {
    padding: 10px 15px;
    min-width: 180px;
    letter-spacing: 1px;
    font-size: 16px;
  }
  .moneyBackTitle {
    width: 190px;
  }

  .d9BannerProBg {
    right: -200px;
  }
  .hlthBgText {
    padding: 10px;
    font-size: 18px;
  }
  .bannerInnerSectionD9 {
    padding-left: 150px;
  }
  .bannerD9LeftContent {
    max-width: 360px;
  }
  .d9BannerLeftImg {
    right: calc(100% - 150px);
    width: 320px;
  }
  .beforeAfterContent {
    padding-left: 0;
  }
  .beforeAfterImgCol {
    width: 400px;
  }
  .checkListStyle > li {
    padding: 8px 0 8px 24px;
  }
  .checkListStyle > li::before {
    width: 20px;
    height: 15px;
  }
  .cs02Title, .cs03Title {
    font-size: 20px;
    letter-spacing: 0.5px;
  }
  .benefitFeatImg.whyPopularProImg {
    right: -160px;
    width: 610px;
  }
  .benefitDesc.whyPopularText {
    width: 520px;
  }
  .storiesSwiper .tCContent blockquote {
    line-height: 1.4;
  }
  .d9BtmBannerImg > img {
    margin-left: -140px;
    width: 540px;
  }
  .modalDiscountTitle {
    font-size: 50px;
  }
  #discountModal .modal-content {
    padding: 40px 30px;
  }
  .modalSubtitle, .modalPrice {
    font-size: 20px;
  }
  .modalProduct {
    font-size: 26px;
    line-height: 1.1;
  }
  .modal-arrow {
    padding: 0;
  }
  .modal-arrow img {
    width: 100px;
  }
  .bannerLeftContent {
    max-width: 440px;
  }
}

@media (max-width:991px) {
  .xlTitle {
    font-size: 55px;
  }
  .cardStyle1 .cardFeature img {
    max-width: 280px;
  }
  .bannerInnerSection {
    padding-left: 0;
  }
  .bannerLeftContent {
    padding-top: 0;
  }
  .bannerSection .wellnessColDesc {
    max-width: 100%;
  }
  .blTopCol {
    text-align: right;
  }
  .blTopCol .xlTitle {
    font-size: 80px;
    margin-bottom: 50px;
  }
  .bannerLeftImgMobile {
    top: 40px;
    right: 170px;
  }
  .bannerLeftImgMobile img {
    width: 600px;
    max-width: initial;
  }
  .bannerLeftBtm {
    padding-top: 80px;
    text-align: left;
  }
  .bannerBgCol {
    left: 300px;
  }
  .bannerBgCol img {
    width: 550px;
  }
  .bannerSection {
    padding-bottom: 20px;
  }
  .sectionSpace, .ingredientDesc {
    padding: 70px 0;
  }
  .introMbImgs {
    margin-bottom: -50px;
    --imgHeight: 580px;
  }
  .introLeftImg {
    height: var(--imgHeight);
    object-fit: cover;
  }
  .proRightImg {
    width: auto;
    height: calc(var(--imgHeight) + 80px);
  }
  .benefitFeatImg {
    position: static;
    margin-top: -50px;
    margin-left: 60px;
    margin-bottom: -40px;
  }
  .benefitCol {
    padding: 0 0 70px;
  }
  .benefitList + .benefitList {
    margin-top: 20px;
  }
  .cardStyle3 .cardImg {
    max-width: 120px;
  }
  .ctaLogo {
    width: 170px;
  }
  .callActionDesc h2 {
    font-size: 18px;
  }
  .callActionDesc img {
    width: 60px;
  }
  .btn {
    padding: 16px 26px;
    font-size: 18px;
  }
  .ingredientDesc .titleCol {
    margin-bottom: 40px;
  }
  .ingredientOuter {
    display: flex;
    row-gap: 50px;
  }
  .ingredientCardList .cardListStyle + .cardListStyle {
    margin-top: 15px;
  }
  .cardListStyle li > span.listOpt {
    flex: 1 1 0;
  }
  .ingredientCol > .container, .ingredientCol > .container > .row {
    padding: 0;
    margin: 0;
    max-width: 100%;
  }
  .inFullWdCol {
    padding: 0;
  }
  .ingredientBtn {
    display: block;
    padding: 40px 20px 40px 20px;
    text-align: center;
    margin-top: 20px;
  }
  .ingredientBtn img {
    left: calc(50% - 160px);
    top: -20px;
    width: 40px;
  }
  .cardListStyle ul li {
    font-size: 20px;
  }
  .proImg2 {
    width: 120px;
  }
  .orderImg {
    width: 360px;
  }

  .upsellText h2 {
    font-size: 26px;
  }
  .upsellBoxInner {
    padding: 30px 30px 20px 30px;
  }
  .upsellDesc h3 {
    font-size: 35px;
  }
  .upsellDesc h3 span {
    font-size: 52px;
  }
  .upsellDesc .subTitle {
    font-size: 20px;
  }
  .upsellDesc h4 {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .upsellDesc .retailPrice, 
  .upsellDesc .promoPrice {
    font-size: 22px;
  }
  .upsellDesc .promoPrice span {
    font-size: 30px;
  }
  .moneyBackBadge {
    width: 120px;
  }
  .moneyBackTitle {
    width: 100%;
    padding: 0;
  }
  .upsellMainImg {
    max-height: 280px;
  }

  .bannerInnerSectionD9 {
    padding-left: 0;
    padding-bottom: 0;
  }
  .d9BannerLeftImg {
    right: -120px;
    transform: scaleX(-1);
  }
  .d9BannerProBg {
    right: auto;
    left: -170px;
  }
  .d9MbBannerStyle {
    padding-left: 170px;
    padding-top: 20px;
  }
  .bannerD9LeftContent {
    max-width: 100%;
    padding-top: 20px;
  }
  .d9BannerLeftImg {
    right: -70px;
    transform: scaleX(-1);
    bottom: auto;
    top: 0;
    width: 250px;
    height: 400px;
    overflow: hidden;
  }
  .d9BannerLeftImg::before {
    content: "";
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 30%,rgba(255,255,255,1) 100%);
    position: absolute;
    inset: 0;
  }
  .d9MbBannerBtn {
    text-align: center;
  }
  .bannerD9LeftContent .featuredAt {
    text-align: center;
  }
  .bannerSection.d9BannerSection {
    padding: 30px 0;
  }
  .hlthBgText {
    font-size: 16px;
    letter-spacing: 0.5px;
  }
  .benefitFeatImg.whyPopularProImg {
    margin-bottom: 0;
    margin-top: -120px;
  }
  .benefitDesc.whyPopularText {
    width: 100%;
  }
  .beforeAfterImgCol {
    width: 100%;
    margin: 20px 0;
  }
  .storiesCard {
    align-items: center;
    margin: 0 auto;
    max-width: 550px;
  }
  .swiperPaginationStyle .swiper-pagination-bullet {
    height: 4px;
    width: 50px;
  }
  .swiperPaginationStyle {
    margin: 30px 0 10px;
  }
  .whyWorksBtmSection {
    padding: 50px 0px 0;
  }
  .glpActContent > h5 {
    font-size: 20px;
  }
  .d9BtmBannerImg > img {
    padding-bottom: 60px;
    position: absolute;
    top: 50px;
    margin: 0;
    left: calc(100% - 320px);
    z-index: -1;
  }
  .d9ShortWdCol {
    max-width: 400px;
  }
  .modalProImg {
    width: auto;
    max-height: 220px;
    object-fit: contain;
  }
  .bannerLeftContent {
    max-width: 100%;
  }
  .bannerSection .cardSubText {
    max-width: 350px;
    margin-left: auto;
  }
  .wellnessColDesc.maxWdCol {
    max-width: 312px;
  }
}

@media (max-width:767px) {
  .logoCol img {
    width: 200px;
  }
  .hOfferText {
    font-size: 18px;
  }
  .madeUsa {
    width: 50px;
  }
  .xlTitle {
    font-size: 50px;
  }
  .callActionDesc {
    padding: 0px 0px 0;
    margin-top: 40px;
  }
  .ctaLogo {
    width: 200px;
    margin: 0 auto;
    display: block;
  }
  .orderImg {
    width: 360px;
    display: block;
    margin: 0 auto 30px;
  }



  .upsellDesc {
    margin-top: 30px;
  }
  .upsellText h2 {
    font-size: 24px;
  }
  .upsellRevList + .upsellRevList {
    margin-top: 30px;
    padding-top: 30px;
  }
  .paymentBox {
    padding: 10px;
  }
  .whyWorksBtmSection {
    padding: 30px 0px 0;
  }
  .btnSideArrowCol {
    padding-left: 0;
  }
  .btnSideArrowCol .btnOutsideArrow {
    left: 200px;
    top: 0;
    transform: rotate(140deg);
    width: 80px;
  }
  .callActionDesc.bgBlCol {
    margin-top: 0;
  }
  .whyNLogo {
    width: 180px;
  }
  .d9BtmBannerImg > img {
    left: calc(100% - 200px);
    width: 420px;
  }
  .d9ShortWdCol {
    max-width: 340px;
  }
  .d9BtmBannerImg + div > .cardShape {
    width: 50px;
    bottom: 20px;
  }
  .sectionSpace.mpnSection {
    padding: 40px 0 10px;
  }
  .footerCol {
    padding: 40px 0 90px;
  }
  .footerText {
    margin-bottom: 25px;
  }
  .footerLinks {
    margin-bottom: 15px;
  }
  .productOfferTopCol {
    padding: 10px 15px;
  }
  .productOfferTopCol .offerTopTextMb {
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 5px;
  }
  .productOfferTopCol .resultsText {
    font-size: 16px;
  }
  .wellnessColDesc.maxWdCol {
    max-width: 100%;
  }
  .upsellBtn img.upsellBtnMbArrow {
    bottom: 30px;
    pointer-events: none;
    transform: rotate(10deg);
    width: 50px;
  }
  .upsellBtn {
    margin-bottom: 10px;
  }
}

@media (max-width:575px) {
  body, .cardList ul li, .topbar {
    font-size: 16px;
  }
  .callActionInner {
    text-align: center;
  }
  .callActionDesc {
    margin-top: 20px;
    padding-bottom: 15px;
  }
  .callActionDesc h2 {
    font-size: 22px;
  }
  .callActionDesc img {
    width: 70px;
    transform: rotate(90deg);
    top: 30px;
    left: calc(50% + 100px);
  }
  .callToAction {
    padding: 40px 0 50px;
  }
  .logoCol img {
    width: 150px;
  }
  .hOfferText {
    font-size: 13px;
  }
  .madeUsa {
    width: 40px;
  }
  .blTopCol .xlTitle {
    font-size: 60px;
    margin-bottom: 50px;
  }
  .bannerLeftImgMobile {
    top: 50px;
    right: 100px;
  }
  .bannerLeftImgMobile img {
    width: 350px;
  }
  .bannerLeftBtm {
    padding-top: 20px;
  }
  .bannerBgCol {
    left: 250px;
  }
  .bannerBgCol img {
    width: 450px;
  }
  .xlTitle {
    font-size: 40px;
  }
  .lgTitle {
    font-size: 36px;
  }
  .sectionSpace, .ingredientDesc {
    padding: 60px 0;
  }
  .cardStyle2 {
    --br: 10px;
  }
  .cs2Content {
    font-size: 16px;
  }
  .lgText {
    font-size: 18px;
  }
  .introMbImgs {
    margin-bottom: -30px;
    --imgHeight: 320px;
  }
  .proRightImg {
    width: auto;
    height: calc(var(--imgHeight) + 40px);
  }
  .textHighlightXl {
    font-size: 70px;
  }
  .cardListStyle ul li {
    font-size: 16px;
  }
  .iMbContent h4 {
    font-size: 28px;
  }
  .iMbContent {
    max-width: 200px;
  }
  .tCContent blockquote::before {
    width: 32px;
    height: 24px;
  }
  .tCContent blockquote {
    padding-top: 30px;
  }
  .cardShape {
    bottom: 10px;
    margin-right: 10px;
    width: 50px;
  }
  .cardStyle1 .cardSubText, .benefitDesc, .cardStyle3 .cardDesc p {
    font-size: 16px;
  }
  .proImg2 {
    width: 100px;
  }
  .cardListStyle h3 {
    font-size: 20px;
  }
  .footerText {
    margin-bottom: 25px;
  }
  .footerInner {
    font-size: 14px;
  }
  .footerCol {
    padding: 40px 0 90px;
  }
  .cardStyle1 .cardLabel {
    padding: 8px 25px;
    font-size: 15px;
    margin-bottom: 10px;
  }
  .btmLeftList {
    word-break: break-word;
  }
  .footerLinks > li + li {
    padding-left: 10px;
    margin-left: 10px;
  }
  .cardStyle3 .cardImg {
    max-width: 100px;
  }
  .cardStyle3 .cardDesc h3 {
    font-size: 18px;
    margin: 5px 0;
  }
  .benefitList + .benefitList {
    margin-top: 10px;
  }
  .benefitCardOuter {
    margin-top: 30px;
  }

  .upsellRevList h2 {
    margin-bottom: 15px;
  }
  .upsellRevList .upsellReviewDesc {
    font-size: 18px;
    margin-top: 15px;
  }
  .upsellRevList .authorCol {
    font-size: 16px;
  }
  .upsellRevList + .upsellRevList {
    margin-top: 20px;
    padding-top: 20px;
  }
  .upsellDesc .subTitle {
    font-size: 18px;
  }
  .upsellDesc h4,
  .upsellDesc .promoPrice span {
    font-size: 32px;
  }
  .upsellDesc .retailPrice, 
  .upsellDesc .promoPrice {
    font-size: 22px;
  }

  .d9MbBannerStyle {
    padding-left: 100px;
  }
  .d9BannerProBg {
    left: -150px;
    width: 290px;
  }
  .listLeftSpace {
    padding-left: 0;
  }
  .cs02Img {
    max-width: 240px;
  }
  .cs02Title + p, .cs03Title + p {
    padding-top: 0;
  }
  .cs02Title {
    color: var(--primary);
  }
  .whyNLogo {
    width: 180px;
  }
  .cs03Img {
    width: 150px;
  }
  .whyWorksBtmSection .callActionDesc img {
    top: auto;
    bottom: -30px;
    right: auto;
    left: 210px;
    transform: rotate(140deg);
  }
  .whyWorksBtmSection .callActionDesc {
    margin-top: 0;
  }
  .glpActContent > h5 {
    font-size: 18px;
  }
  .d9BtmBannerImg > img {
    opacity: 0.4;
    left: calc(100% - 130px);
    top: 0;
  }
  .storiesCard .tCImgCol {
    width: 140px;
  }
  .cs02Title, .cs03Title {
    font-size: 18px;
  }

  .productOfferTopCol .offerTopTextMb {
    text-align: center;
  }
  .offerBottleImg {
    max-height: 90px;
  }
  .priceBox {
    margin-top: 0;
  }
  .stepNav {
    font-size: 14px;
    letter-spacing: 0px;
  }
  .selectedProduct {
    font-size: 16px;
  }
  .selectedCartIcon {
    width: 40px;
  }
  .waTitle {
    font-size: 20px;
  }
  .mobilePaymentFomrCol {
    padding: 40px 0;
  }
  #discountModal .modal-content {
    padding: 30px 10px;
  }
  .modal-arrow img {
    width: 80px;
  }
  .modalDiscountTitle {
    font-size: 40px;
  }
  .modalProduct {
    font-size: 22px;
  }
  .modalSubtitle, .modalPrice {
    font-size: 18px;
  }
  .bannerSection .cardSubText {
    max-width: 220px;
  }
  .footerInner {
    letter-spacing: 0.5px;
  }
  .footerLinks {
    letter-spacing: 0;
  }
  #multiStepForm.formStyle .form-control {
    padding: 10px 15px;
  }
  .stepFormSubtitle {
    font-size: 14px;
  }
  .aprovedText p {
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.1;
  }
  .stepNav {
    padding-bottom: 8px;
    margin-bottom: 12px;
  }
  #multiStepForm .xlTitle {
    font-size: 32px;
  }
  #multiStepForm .btn:not(.selectBtn) {
    padding: 14px 26px;
    font-size: 16px;
  }
  .productOfferTopCol {
    padding: 8px 8px;
  }
  .stepsLogo {
    height: 40px;
  }
  .offerImgText {
    font-size: 12px;
  }
  .offerBottleImg {
    max-height: 70px;
  }
  .offerImgCol {
    min-width: 70px;
  }
  .productOfferTopCol .resultsText {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .priceBox {
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 4px 8px;
  }
  .retailLabel {
    font-size: 14px;
  }
  .priceBox .price {
    font-size: 18px;
  }
  .perPack {
    font-size: 12px;
  }
  .mbChooseProduct .btn.selectBtn {
    margin-bottom: 15px;
  }
  .saveLbl {
    width: 100px;
    left: -1px;
    top: -5px;
    overflow: hidden;
  }
  .saveLblText {
    padding: 8px 25px 8px 10px;
    text-align: left;
    line-height: 1;
    font-size: 12px;
  }
  .saveLbl > img {
    max-width: initial;
    width: 100%;
    height: 60px;
  }
  .mbChooseProduct .btn.selectBtn {
    padding-left: 100px;
  }
  .plusSignMb {
    width: 20px;
  }
  .productOfferTopCol .offerTopTextMb {
    font-size: 18px;
    margin-bottom: 0px;
  }
  .productOffer {
    border-width: 1px;
  }
  .offerDetails {
    width: 130px;
  }
  .weAccept {
    padding: 0px 0;
  }
  .waTitle {
    font-size: 18px;
    padding: 4px 0 8px;
    line-height: 1;
  }
  .weAcceptImg {
    height: 40px;
  }
  .paymentInfoTopCol {
    padding-bottom: 10px;
  }
  .mobilePaymentFomrCol {
    padding: 18px 0;
    margin-bottom: 15px;
  }
  .secoreText {
    font-size: 14px;
  }
  .upsellText h2 {
    font-size: 18px;
  }
  .upsellMainImg {
    max-height: 180px;
  }
  .upsellBtn img {
    right: calc(100% - 10px);
    bottom: 55px;
  }
  .upsellBoxInner {
    padding: 20px 20px 20px 20px;
  }
  .upsellDesc {
    margin-top: 20px;
  }
  .upsellDesc h3 {
    margin-bottom: 0;
  }
  .upsellDesc h3 span {
    font-size: 42px;
  }
  .upsellDesc h4 {
    margin-bottom: 5px;
  }
  .upsellRevList h2 {
    font-size: 18px;
  }
  .upsellReviewCol {
    padding: 50px 0 30px;
  }
  .ratingStars {
    height: 24px;
  }
}

@media (max-width:384px) {
  .d9BannerLeftImg {
    width: 220px;
  }
  .storiesCard .tCImgCol {
    width: 120px;
  }
  .storiesCard {
    font-size: 14px;
    margin: 0 calc(-.5 * var(--bs-gutter-x));
  }
  .storiesSwiper .tCContent blockquote {
    line-height: 1.3;
  }
  .cs03Img {
    width: 130px;
  }
  .callActionDesc h2 {
    font-size: 20px;
  }
  .cs02Img {
    max-width: 200px;
  }
  .rightArrow {
    width: 60px;
  }
  .rtlArrowBtnCol {
    padding-top: 20px;
  }
  .bannerSection.d9BannerSection {
    padding: 15px 0;
  }
  .d9BtmBannerImg {
    padding-bottom: 40px;
  }
  .offerMbCheckStyle {
    width: 30px;
  }
  .saveLblText {
    padding: 12px 15px 12px 5px;
    font-size: 12px;
  }
  .saveLblText > span {
    font-size: 16px;
  }

  .offerMbCheckStyle {
    width: 30px;
    left: 90px;
    top: -12px;
  }
  .mbChooseProduct .btn.selectBtn {
    padding-left: 80px;
    font-size: 14px;
  }
  .productOfferTopCol .offerTopTextMb {
    letter-spacing: 0.5px;
    margin-bottom: 5px;
  }
  .offerDetails {
    gap: 10px;
  }
  .stepNav {
    font-size: 14px;
    --gap: 1px;
  }
  .selectedProduct {
    font-size: 16px;
    gap: 10px;
  }
  .selectedProductCol {
    padding: 0 14px 8px;
  }
  .selectedLeftShape, .selectedRightShape {
    width: 35px;
  }
  .selectedCartIcon {
    width: 36px;
  }
  .stepFormSection {
    padding: 15px 0 30px;
  }
  .productOfferCard + .productOfferCard {
    margin-top: 10px;
  }
  .footerLinks {
    font-size: 13px;
  }
  .footerLinks > li + li {
    padding-left: 5px;
    margin-left: 4px;
  }
  .saveLbl {
    width: 90px;
  }
  .offerImgText {
    font-size: 11px;
    letter-spacing: -0.25px;
  }
  .offerBottleImg {
    max-height: 60px;
  }
  .offerImgCol {
    min-width: initial;
  }
}
@media (max-width:320px) {
  .hOfferText {
    font-size: 11px;
  }
  .logoCol img {
    width: 130px;
  }
  .madeUsa {
    width: 30px;
  }
  .blTopCol .xlTitle {
    font-size: 50px;
    margin-bottom: 60px;
    padding-top: 10px;
  }
  .storiesCard .tCImgCol > img {
    aspect-ratio: 342/750;
  }
}