/* ========================================
   BASE STYLES FROM base/style.css
   ======================================== */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* Typography Base */
p, li {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 0;
  font-family: hero-new, "Helvetica-Neue", Helvetica, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2em;
  font-family: hero-new, "Helvetica-Neue", Helvetica, Arial, sans-serif;
}

h1 {
  font-size: 55px;
  font-weight: 700;
}
h2 {
  font-size: 38px;
  font-size: 3.8rem;
  line-height: 1.1em;
  font-weight: 700;
}
.large-heading {
  font-size: 65px;
  font-size: 6.5rem;
}
h2, h3 {
  font-weight: 600;
}
/* SubTitle */
h3 {
  font-size: 30px;
  font-size: 3.0rem;
  line-height: 1.1em;
}
h4 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.2em;
  font-weight: 700;
}
h1, h2 {
  margin-bottom: 25px;
}
h3, h4 { 
  margin-bottom: 15px;
  font-weight: 700;
}


@media (max-width: 768px) {
  h1 {
    font-size: 38px;
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1.1;
  }
  h1 .large-span {
    font-size: 55px;
    font-size: 5.5rem;
    color: #cd1900;
    font-weight: 900;
  }
  .large-heading {
    font-size: 45px;
    font-size: 4.5rem;
  }
  h2 {
    font-size: 32px;
    font-size: 3.2rem;
  }
  h3 {
    font-size: 26px;
    font-size: 2.6rem;
  }
  h4 {
    font-size: 20px;
    font-size: 2.0rem;
    line-height: 1.2em;
  }
}

strong {
  font-weight: 700;
}

p {
  margin-bottom: 25px;
}

img {
  display: block;
  max-width: 100%;
}

/* Lead Text Styles */
.sm-lead {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 500;
  font-family: hero-new, "Helvetica-Neue", Helvetica, Arial, sans-serif;
}

.lead {
  font-size: 24px;
  line-height: 1.3em;
  font-weight: 500;
  font-family: hero-new, "Helvetica-Neue", Helvetica, Arial, sans-serif;
}
@media (max-width: 768px) {
  .sm-lead, .lead {
    font-size: 24px;
  }
}

/* Utility Classes */

.text-shadow {
  text-shadow: 0px 2px 3px rgba(0,0,0,0.75);
}
.yellow-highlight {
  /*background-color: rgba(255, 217, 0, 1.0);*/
  display: inline-block;
}
.yellow-highlight span {
  display: inline-block;
  color: #2a1900;
  position: relative;
  z-index: 1;
  font-style: italic;
  font-weight: 600;
  background-color: rgba(255, 224, 0, 0.5);
}
.yellow-highlight span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;

  left: -5px;
  right: -5px;
  background-color: rgba(255, 224, 0, 0.5);
  border-radius: 20% 25% 20% 24%;

  /*left: 0px;
  right: -3px;
  background-color: rgba(255, 224, 0, 0.75);*/


  transform: skew(-9deg);
  z-index: -1;
}
.green-highlight {
  display: inline-block;
}
.green-highlight span {
  display: inline-block;
  color: #2a1900;
  position: relative;
  z-index: 1;
  /*font-style: italic;*/
  font-weight: 600;
  background-color: rgba(0,255,20, 0.5);
}
.green-highlight span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -5px;
  right: -5px;
  background-color: rgba(0,255,20, 0.5);
    border-radius: 20% 25% 20% 24%;
  transform: skew(-9deg);
  z-index: -1;
}
.red-highlight {
  display: inline-block;
}
.red-highlight span {
  display: inline-block;
  position: relative;
  z-index: 1;
  font-style: italic;
  font-weight: 600;
  background-color: rgba(255,20,0, 0.5);
}
.red-highlight span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -5px;
  right: -5px;
  background-color: rgba(255,20,0, 0.5);
    border-radius: 20% 25% 20% 24%;
  transform: skew(-9deg);
  z-index: -1;
}
.blue-highlight {
  display: inline-block;
}
.blue-highlight span {
  display: inline-block;
  color: #000;
  position: relative;
  z-index: 1;
  font-weight: 600;
  background-color: rgba(0,205,255, 0.5);
}
.blue-highlight span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -5px;
  right: -5px;
  background-color: rgba(0,205,255, 0.5);
    border-radius: 20% 25% 20% 24%;
  transform: skew(-9deg);
  z-index: -1;
}
.white-u {
  text-decoration: underline;
  /*text-decoration-thickness: .125em;*/
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-color: #fff;
}
.brown-u {
  text-decoration: underline;
  /*text-decoration-thickness: .125em;*/
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-color: #2a1900;
}
.yellow-u {
  text-decoration: underline;
  /*text-decoration-thickness: .125em;*/
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-color: #ffd700;
}
.blue-u {
  text-decoration: underline;
  /*text-decoration-thickness: .125em;*/
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-color: #1065aa;
}
.green-u {
  text-decoration: underline;
  /*text-decoration-thickness: .125em;*/
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-color: #388841;
}
.red-u {
  text-decoration: underline;
  /*text-decoration-thickness: .125em;*/
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-color: #b12d00;
}
.curved-bottom-white {
  background: radial-gradient(120% 250px at 50% -130px, #ffffff 75%, transparent 75%) no-repeat;
  height: 110px;
}

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

/* Heading Size Classes */
.large-heading {
  /*font-size: 70px;*/
  /*line-height: 64px;*/
  margin-bottom: 30px;
  color: white;
  line-height: 1.0;
  text-shadow: 0px 2px 3px rgba(0,0,0,0.5);

  font-weight: 100;
}

.medium-heading {
  font-size: 40px;
  line-height: 1.0;
  margin-bottom: 30px;
}

.small-title {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 16px;
  line-height: 17px;
  margin-bottom: 10px;
}

.lead-title {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 22px;
  line-height: 23px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.heres-what-happens {
  display: grid;
  grid-template-columns: 50px auto;
  grid-gap: 10px;
  align-items: center;
  /*margin-bottom: 25px;*/
  padding: 25px;
  background: white;
  border-radius: 9px;
}
.heres-what-gifts {
  display: grid;
  grid-template-columns: 225px auto;
  grid-gap: 10px;
  align-items: center;
  /*margin-bottom: 25px;*/
  padding: 15px 0px;
  /*background: white;*/
  /*border-radius: 9px;*/
}
.heres-what-happens .num-wrap {
  width: 50px;
  height: 50px;
  border: 2px solid #77bc20;
  border-radius: 50%;
  background: linear-gradient(45deg, #bed5fc, #ffffff);
  display: grid;
  justify-content: center;
  align-items: center;
}
.heres-what-happens .num-wrap .num {
  font-size: 28px;
  font-weight: 700;
  text-shadow: 0px 2px 2px white;
  color: #77bc20;
}
.guarantee-wrap {
  display: grid;
  align-items: center;
}
.img-guarantee {
  max-width: 350px;
  display: block;
  margin: 0px auto 20px;
}

.check-wrap {
  display: grid;
  grid-template-columns: 40px auto;
  grid-gap: 10px;
  /*align-items: center;*/
  /*justify-content: center;*/
  margin-bottom: 15px;
}
.check-wrap .check-icon-wrap {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #d1a493;
  background: #212227;
  color: #d1a493;
  display: grid;
  justify-content: center;
  align-items: center;
}

.check-wrap .check-icon-wrap i {
  font-size: 20px;
  color: #d1a493;
}
.single-title {
  line-height: 1.5;
}
.single-info {
  font-size: 15px;
  line-height: 1.5;
}
.align-items-center {
  display: grid;
  align-items: center;
}
@media (max-width: 991px) {
  .large-heading {
    font-size: 45px;
    line-height: 50px;
  }
  .medium-heading {
    font-size: 36px;
    line-height: 38px;
    margin-bottom: 20px;
  }
}

@media (max-width: 330px) {
  .large-heading {
    font-size: 40px;
    line-height: 42px;
  }
  .medium-heading {
    font-size: 28px;
    line-height: 30px;
  }
}

/* Color Classes */
.white {
  color: #fff;
}

.purple {
  color: #816aa9;
}

.deep-purple {
  color: #3b1e6a;
}

.green {
  color: #77bc20;
}
.yellow {
  color: #ffd700;
}
.red {
  color: #cd1900;
}

.red-highlight {
  background: #cd1900;
  padding-left: 9px;
  padding-right: 9px;
  border-radius: 5px;
}
.gray1 { color: rgba(255,255,255,0.6) !important; }
.gray2 { color: rgba(255,255,255,0.4) !important; }
.gray3 { color: rgba(255,255,255,0.2) !important; }

.gray-alt1 { color: rgba(0,0,0,0.6) !important; }
.gray-alt2 { color: rgba(0,0,0,0.4) !important; }
.gray-alt3 { color: rgba(0,0,0,0.2) !important; }

/* Background Color Classes */
.eb-black-bg {
  background: #212227 !important;
  color: white;
}
.green-bg {
  background: #77bc20;
}
.green-bg-bright {
    background: #77bc20;
}

.purple-bg {
  background: #816aa9;
}

.deep-purple-bg {
  background: #3b1e6a;
}

.beigebg {
  background: #f2eeea;
}

/* Section Styles */
.section-repeat {
  /*padding-top: 45px;
  padding-bottom: 55px;*/
  padding: 45px 10px 55px;
}

.section-repeat-sm {
  /*padding-top: 20px;
  padding-bottom: 25px;*/
  padding: 20px 10px 25px;
}

/* Checklist Styles */
.checklist-ul {
  margin-bottom: 30px;
  padding-left: 0px;
}

.checklist-ul li {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2377bc20"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>');
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: top 5px left;
  list-style: none;
  line-height: 1.3em;
  font-size: 22px;
  font-weight: 600;
  padding: 0px 10px 20px 45px;
  font-family: hero-new, "Helvetica-Neue", Helvetica, Arial, sans-serif;
}

/* Button Styles */
.btn-addtocart-wrap {
  padding: 20px 25px 30px;
  border-radius: 9px;
  display: inline-block;
  margin: 0px auto;
}

.btn-main {
  white-space: normal;
  display: inline-block;
  transition: all .15s ease;
  border: none;
  position: relative;
}

.btn-main, .btn-orange {
  background: #fd6300;
  padding: 20px 40px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.5);
  line-height: 0.9em;
  white-space: normal;
}

.btn-main p, .btn-orange p {
  font-size: 26px;
  color: #ffffff;
  text-shadow: 0px 1px 2px rgba(0,0,0,1.0);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.0em;
  text-align: center;
  margin-bottom: 0px;
}

/*.btn-addtocart:before {
  position: absolute;
  top: -5px;
  left: 50px;
  content: "";
  width: 70px;
  height: 125px;
  background: linear-gradient(30deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  transform: skew(-30deg);
  animation: sheen 5s ease infinite;
  overflow: clipped;
}

@keyframes sheen {
  0% {
    opacity: 0.0;
    left: 0%;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.0;
    left: 100%;
  }
}*/
.btn-small {
  padding: 15px 30px;
}
.btn-small p {
  font-size: 20px;
}

.btn-main:hover, .btn-orange:hover {
  background: #77bc20;
  color: white;
  text-shadow: 0px 1px 1px rgba(0,0,0,0.75);
  box-shadow: 0px 4px 10px rgba(255,255,255,1.0);
}

.btn-addtocart:hover:before {
  -webkit-animation-play-state:paused !important;
  -moz-animation-play-state:paused !important;
  -o-animation-play-state:paused !important;
  animation-play-state:paused !important;
}

@media (max-width: 767px) {
  .btn-main, .btn-orange {
    padding: 20px 25px;
    text-shadow: 0px 1px 1px rgba(255,255,255,1.0);
    text-transform: uppercase;
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .btn-main p, .btn-orange p {
    font-size: 20px;
  }
}

/* 8-WEEK TIMELINE */

.section-your-path {
  /*padding-top: 75px;*/
  padding-bottom: 30px;
  position: relative;
}
.stickynav-wrap {
  background: none;
  margin-top: 45px;
  /*margin-bottom: 45px;*/
  padding: 25px;
  border-radius: 9px;
}
/* Timeline Container */
.timeline {
  margin: 20px auto 0px;
  padding: 20px 20px 10px;
}
.outer {
  position: relative;
}
.outer::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: linear-gradient(45deg, #9c7566, #d1a493, #fedfcb, #fff0d6, #fedfcb, #d1a493, #9c7566);
  border-radius: 50%;
  /*border: 3px solid #004712;*/
  border: 2px solid #white;
  color: white;
  left:-11px;
  top: -20px;
  z-index: 1;
}
.outer::after {
  position: absolute;
  content: '';
  bottom: -33px;
  right: 202px;
  width: 0;
  height: 0;
  border-top: 30px solid #9c7566;
  border-right: 13px solid transparent;
  border-left: 13px solid transparent;
}
.outer2::after {
  position: absolute;
  content: '';
  bottom: -33px;
  left: 277px;
  width: 0;
  height: 0;
  border-top: 30px solid #9c7566;
  border-right: 13px solid transparent;
  border-left: 13px solid transparent;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .outer::after {
    bottom: -33px;
    right: 172px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .outer::after {
    right: -10px;
  }
}

/* Card container */
.career-card {
  position: relative;
}

/* setting padding based on even or odd */
.career-card:nth-child(odd) {
  padding: 30px 0 30px 30px;
}
.career-card:nth-child(even) {
  padding: 30px 30px 30px 0;
  display: grid;
  justify-items: end;
}
/* Global ::before */
.career-card:nth-child(odd)::before {
  content: "";
  position: absolute;
  width: 50%;
  border: solid #9c7566;
  background-image: linear-gradient(90deg, #212227, #212227),
    linear-gradient(0deg, #9c7566, #d1a493, #fedfcb, #fff0d6, #fedfcb, #d1a493, #9c7566);
  background-clip: padding-box, border-box;
  background-origin: border-box;
  border: 10px solid transparent;
  border-radius: 9px;
}
.career-card:nth-child(even)::before {
  content: "";
  position: absolute;
  width: 50%;
  border: solid #9c7566;
  background-image: linear-gradient(45deg, #212227, #212227),
    linear-gradient(0deg, #9c7566, #d1a493, #fedfcb, #fff0d6, #fedfcb, #d1a493, #9c7566);
  background-clip: padding-box, border-box;
  background-origin: border-box;
  border: 4px solid transparent;
  border-radius: 9px;
}
/* Setting the border of top, bottom, left */
.career-card:nth-child(odd)::before {
  left: 0px;
  top: 1px;
  bottom: 1px;
  border-width: 4px 0 4px 4px;
  border-radius: 30px 0 0 30px;
}
/*.career-card:first-child::before {
  top: -200px;
}*/
.your-path-intro {
  position: relative;
  z-index: 2;
  padding-left: 10px;
  padding-bottom: 90px;
}
/*.career-card:nth-child(3n)::before {
  width: 10%;
  left: 45%;
}
.career-card:nth-child(3n) .info {
  left: 43%;
}*/
.career-card:nth-child(4n)::before {
  width: 20%;
  right: 30% !important;
}
.career-card:nth-child(4n) .info {
  right: 32%;
}
/* Setting the top and bottom to "-5px" because earlier it was out of a pixel in mobile devices */
@media only screen and (max-width: 400px) {
  .career-card:nth-child(odd)::before {
    top: -5px;
    bottom: -5px;
  }
}

/* Setting the border of top, bottom, right */
.career-card:nth-child(even)::before {
  right: 0;
  top: -5px;
  bottom: -5px;
  border-width: 4px 4px 4px 0;
  border-radius: 0 30px 30px 0;
  text-align: right;
}
@media (max-width: 991.98px) {
  .career-card:nth-child(even)::before, .career-card:nth-child(3n)::before, .career-card:nth-child(4n)::before {
    /*right: 0;
    top: 2px;*/
  }
}

/* Removing the border if it is the first career-card */
.career-card:first-child::before {
  border-top: 0;
  border-top-left-radius: 0;
}

/* Removing the border if it is the last career-card  and it's odd */
.career-card:last-child:nth-child(odd)::before {
  border-bottom: 0;
  border-bottom-left-radius: 0;
}

/* Removing the border if it is the last career-card  and it's even */
.career-card:last-child:nth-child(even)::before {
  border-bottom: 0;
  border-bottom-right-radius: 0;
}

/* Information about the timeline */
.info {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  padding: 10px;
  width: 50%;
  position: relative;
  /*color: white;*/
}
.info-odd:before {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  border: 2px solid #d1a493;
  /*border-image-slice: 1;
  border-width: 2px;
  border-image-source: linear-gradient(to left, #9c7566, #d1a493, #fedfcb, #fff0d6, #fedfcb, #d1a493, #9c7566);
  */
  background: #212227;
  color: #d1a493;
  font-family: "Font Awesome 5 Pro";
  content: "";
/*  font-weight: 700;*/
  font-size: 20px;
  top: 0px;
  left: -52px;
  line-height: 50px;
  text-align: center;
  display: grid;
  align-items: center;
  position: absolute;
}
.info-even:before {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  border: 2px solid #d1a493;
  /*border-image-slice: 1;
  border-width: 2px;
  border-image-source: linear-gradient(to left, #9c7566, #d1a493, #fedfcb, #fff0d6, #fedfcb, #d1a493, #9c7566);
  */
  background: #212227;
  color: #d1a493;
  font-family: "Font Awesome 5 Pro";
  content: "";
/*  font-weight: 700;*/
  font-size: 20px;
  top: 0px;
  right: -52px;
  line-height: 50px;
  text-align: center;
  display: grid;
  align-items: center;
  position: absolute;
}
.week-1:before {
  content: "\f002";
}
.week-2:before {
  content: "\f06c";
}
.week-3:before {
  content: "\e05d";
}
.week-4:before {
  content: "\f24e";
}
.week-5:before {
  content: "\f4d8";
}
.week-6:before {
  content: "\f5bb";
}
.week-7:before {
  content: "\e574";
}
.week-8:before {
  content: "\f005";
}
.career-card .info img {
  width: 50px;
  margin-bottom: 10px;
}
.career-card:nth-child(even) .info {
  align-items: flex-end;
}
@media (max-width: 1199px) {
  .info {
    width: 100%;
  }
  /*.career-card:nth-child(3n)::before {
    width: 50%;
    left: 0;
  }
  .career-card:nth-child(3n) .info {
    left: 0;
  }*/
  .career-card:nth-child(4n)::before {
    width: 50%;
    right: 0 !important;
  }
  .career-card:nth-child(4n) .info {
    right: 0;
  }
}
@media (max-width: 991px) {
  .info {
    width: 100%;
  }
  .outer::after {
    right: -9px;
  }
}

.secure-checkout {
  font-size: 20px;
  /*font-weight: 600;*/
  color: #77bc20;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
}
.secure-checkout i {
  font-size: 22px;
}
.info::before {}

/* Title of the career-card */
.title {
  /*color: #000;*/
  position: relative;
}

/* Timeline dot  */
.title-first::before {
  font-family: "Font Awesome 5 Pro";
  content: "\f00d";
  font-weight: 700;
  text-align: center;
  display: grid;
  align-items: center;
  position: absolute;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  border: 2px solid #212227;
  font-size: 30px;
  top: 0px;
  left: 5px;
  line-height: 50px;
  /* color: #212227; */
  color: #212227;
  /* color: #fff; */
  background: linear-gradient(to left, #9c7566, #d1a493, #fedfcb, #fff0d6, #fedfcb, #d1a493, #9c7566);
  transition: all 0.5s ease;
}

.btn-block.collapsed .title::before {
  transform: rotate(45deg);
  transition: all 0.5s ease;
  font-weight: 400;
  color: #816aa9;
  background: #fff;
}

/* text right if the career-card is even  */
.career-card:nth-child(even) > .info > .title, .career-card:nth-child(even) > .info > p {
  text-align: right;
}

/* setting dot to the left if the career-card is odd */
.career-card:nth-child(odd) > .info > .title::before {
  left: -63px;
}
/* setting dot to the right if the career-card is odd */
.career-card:nth-child(even) > .info > .title::before {
  right: -63px;
}

/* Glow Renewal Program Custom Styles */

/* Bad Checklist (X marks) */
.checklist-ul-bad {
  list-style: none;
  padding-left: 0;
}

.checklist-ul-bad li {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23cd1900"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>');
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: top 5px left;
  padding: 0px 10px 20px 45px;
  line-height: 1.3em;
  font-size: 22px;
  font-weight: 400;
  font-family: hero-new, "Helvetica-Neue", Helvetica, Arial, sans-serif;
}

/* Whats Inside Wrap for Week Breakdown */
.whats-inside-wrap {
  display: grid;
  grid-template-columns: 60px auto;
  grid-gap: 20px;
  align-items: start;
}

.whats-inside-wrap .big-number {
  width: 60px;
  height: 60px;
  background: #816aa9;
  display: grid;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.whats-inside-wrap .big-number p {
  margin-bottom: 0px;
  font-family: hero-new, "Helvetica-Neue", Helvetica, Arial, sans-serif;
  font-size: 35px;
  font-weight: 700;
  color: white;
  text-align: center;
}

.whats-inside-wrap .item-content h4 {
  margin-bottom: 10px;
}

.whats-inside-wrap .item-content p {
  font-size: 16px;
  line-height: 1.5em;
  margin-bottom: 0;
}

/* Header Adjustments */
.header {
  background: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  /*padding: 10px 0;*/
}

.navbar-background-alt {
  padding: 10px 20px;
}

.sm-logo-main-vis .img-main-logo {
  max-width: 180px;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .large-heading {
    font-size: 45px;
    line-height: 1.2em;
  }

  .medium-heading {
    font-size: 28px;
    line-height: 1.3em;
  }

  .whats-inside-wrap {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }

  .whats-inside-wrap .big-number {
    margin: 0 auto;
  }
}

/* Header */
header {
    /*background: linear-gradient(135deg, #e8e3f0 0%, #e3eeec 100%);*/
    background: rgba(32,34,39,1.0);
    /*padding: 60px 20px;*/
    text-align: center;
    /*border-bottom: 3px solid #816aa9;*/
    border-bottom: 2px solid;
    border-image-slice: 1;
    border-width: 2px;
    border-image-source: linear-gradient(to left, #9c7566, #d1a493, #fedfcb, #fff0d6, #fedfcb, #d1a493, #9c7566);
}
.navbar-background-alt {
  background: rgba(32,34,39,0.0);
  box-shadow: none;
  /* opacity: 0; */
  -webkit-transition: height .5s;
  transition: height .5s;
  min-height: 10px;
  transition: all 0.5s ease;

  justify-content: center;
}
.navbar {
  padding: 0px 30px;
  /* text-align: right; */
}

.navbar-background, .navbar-background-alt {
  background: rgba(32,34,39,1.0);
  /* opacity: 1.0; */
  -webkit-box-shadow: 0px 4px 8px rgba(0,0,0, 0.25);
  box-shadow: 0px 4px 8px rgba(0,0,0, 0.25);
  -webkit-transition: 1s;
  transition: 1s;
  justify-content: space-between;
}
.img-main-logo {
  /*opacity: 0.0;*/
  width: 248px !important;
  position: relative;
}
.img-main-logo.vis {
  opacity: 1.0;
  -webkit-transition: background 1s;
  transition: background 1s;
  -webkit-transition: 1s;
  transition: 1s;
}

/* NAVBAR */
.sm-logo-main {
  width: 248px;
  transition: all 0.5s ease;
}
.sm-logo-main svg, .sm-logo-main img {
  width: 60px;
  place-items: left center;
  padding-top: 7px;
  padding-bottom: 7px;
}

/* "NON" Icons */

.non-icons-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 25px;
}
.non-icon {
  width: 175px;
  /*height: 145px;*/
/*  border-radius: 50%;
  border: 3px solid #cd5d28;
  background: rgba(242,99,32,0.15);*/
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, auto));
  padding: 10px;
}
.non-icon-text {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.0em;
  margin-bottom: 0px;
}
.non-icon-inner, .non-icon-inner-alt {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid #cd5d28;
  /*border: 5px solid #212227;*/
  background: rgba(129,106,169,0.5);
  background: white;
  display: grid;
  align-items: center;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.5);
  margin-bottom: 13px;
}
.non-icon-inner img {
  width: 70%;
  margin: 0px auto;
}
.non-icon-inner:after {
  content: "";
  background: #cd5d28;
  height: 5px;
  width: 145px;
  position: absolute;
  top: 59%;
  transform: rotate(-45deg);
}  

.non-icons-wrap-mini {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0px;
}
.non-icon-mini {
  /*width: 175px;*/
  /* height: 145px; */
/*  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, auto));*/
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  /* align-items: center; */
  /* align-content: center; */
  justify-content: center;
}
.non-icon-mini-text {
  font-size: 10px;
  font-weight: 700;
  color: #cd5d28;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.0em;
  margin-bottom: 0px;
}
.non-icon-mini-inner {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /* border: 5px solid #212227; */
  background: rgba(129,106,169,0.5);
  background: white;
  display: grid;
  align-items: center;
  box-shadow: 0px 3px 8px rgb(0 0 0 / 50%);
  margin-bottom: 9px;
  justify-items: center;
}
.non-icon-mini-inner img {
  width: 100%;
  margin: 0px auto;
}

.non-icon .non-icon-inner p, .non-icon .non-icon-inner-alt p {
  margin-bottom: 0px;
  text-align: center;
  font-size: 26px;
  line-height: 1.0em;
  /*text-transform: uppercase;*/
  font-weight: 600;
  color: #cd5d28;
  /*color: white;*/
  /*font-family: source-serif-pro, din-condensed, "Avenir", "Helvetica", arial, sans-serif;*/
  font-family: hero-new, "Helvetica-Neue", Helvetica, Arial, sans-serif;
}



/* Ribbon Styles */
.ribbon {
  clip-path: polygon(100% 0%, 98% 50%, 100% 100%, 0 100%, 2% 50%, 0% 0%, 0% 50%, 0 0);
  margin-bottom: 25px;
  border-top: 5px solid #FFD72A;
  border-bottom: 5px solid #FFD72A;
  border-left: 5px solid #FFD72A;
  background: #FFD72A;
  display: grid;
  align-items: center;
  text-align: center;
  padding: 10px 20px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.5);
}

/* How It Works Styles */
.how-it-works {
  display: grid;
  align-items: start;
  grid-gap: 20px;
  grid-template-columns: 160px auto;
  margin-bottom: 30px;
}
.how-it-works-img-wrap {
  display: grid;
  justify-content: center;
}
.how-it-works img {
  border-radius: 9px;
  width: 160px;
  display: block;
  margin: 0px auto;
}
.how-it-works .big-number {
  width: 60px;
  height: 60px;
  background: #816aa9;
  display: grid;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.how-it-works .big-number p {
  margin-bottom: 0px;
  font-family: hero-new, "Helvetica-Neue", Helvetica, Arial, sans-serif;
  font-size: 35px;
  font-weight: 700;
  color: white;
  text-align: center;
}

.how-it-works .big-check {
  width: 60px;
  height: 60px;
  background: #77bc20;
  display: grid;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.how-it-works .big-check i {
  margin-bottom: 0px;
  font-size: 35px;
  color: white;
  text-align: center;
}

@media (max-width: 767px) {
  .how-it-works {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
    background: white;
    padding: 15px;
    border-radius: 9px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  }
  .how-it-works .big-check {
    display: none;
  }
  .how-it-works .big-number {
    margin: 0px auto 10px;
  }
}

/* Order Check Styles */
.order-check {
  font-size: 16px;
  font-weight: 700;
  color: #212227;
  line-height: 1.1em;
  margin-bottom: 5px;
}

.order-check i {
  color: #77bc20;
  font-size: 24px;
}

/* Item Content Styles */
.item-content p {
  font-size: 18px;
  line-height: 24px;
}

/* Footer Styles */
#footer {
  display: grid;
  background: linear-gradient(0deg,rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url(../base/example/img/rose-corner-border-left.png) bottom left no-repeat;
  background-color: #212227;
  padding-top: 35px;
  padding-bottom: 50px;
}

#footer p {
  color: #d2d2d2;
  font-size: 12px;
  margin-bottom: 7px;
}

#footer a {
  color: #f4f4f4;
}

.footer-logo {
  display: block;
  margin: 0px auto 25px;
  width: 200px;
}

/* As Seen On Carousel */

.section-aso {
  border-top: 2px solid;
  border-bottom: 2px solid;
  border-image-slice: 1;
  border-width: 2px;
  border-image-source: linear-gradient(to left, #9c7566, #d1a493, #fedfcb, #fff0d6, #fedfcb, #d1a493, #9c7566);
}
.owl-carousel .owl-stage {
  padding: 25px 0px;
}
.owl-carousel-aso .owl-item img {
  width: 200px;
  display: block;
  margin: 0px auto;
}

.owl-carousel-aso .owl-stage {
    transition-timing-function: linear !important;
}
.carousel-controls-wrap {
  display: grid;
  grid-template-columns: 75px 50px;
  grid-gap: 5px;
  justify-content: end;
  align-items: center;
  margin-bottom: 13px;
}
.carousel-controls-wrap .button-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5px;
  justify-content: end;
}
.carousel-controls-wrap .button-wrap button {
  background: none;
  border: none;
  padding: 0px;
}
.carousel-next, .carousel-prev {
  color: #817aa9;
}
.owl-nav {
  display: grid;
  justify-content: center;
  grid-template-columns: 150px 150px;
}
.carousel-prev i, .carousel-next i {
  font-size: 50px;
}
.carousel-prev-sm, .carousel-next-sm {
  color: rgba(0,0,0,0.15);
}
.carousel-prev-sm i, .carousel-next-sm i {
  font-size: 18px;
}


/* Customizations */

.underline-ccp {
    background: linear-gradient(to top, transparent 0, transparent 5px, rgba(182, 159, 213, 0.35) 0, rgba(182, 159, 213, 0.35) 25%, transparent 25%, transparent 100%);
}
.img-cristina-top {
  /*width: 400px;*/
  border-radius: 9px;
  /*border: 5px solid white;*/
}
.before-after-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
.img-before-after {
  width: 650px;
  display: block;
  margin: 0px auto;
  border-radius: 9px;
}
.rg-gradient-text {
  background-color: #9c7566;
  background-image: linear-gradient(45deg, #9c7566, #d1a493, #fedfcb, #fff0d6, #fedfcb, #d1a493, #9c7566);
  color: #000;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}
.rosegold-grad {
  background: linear-gradient(to left, #9c7566, #d1a493, #fedfcb, #fff0d6, #fedfcb, #d1a493, #9c7566);
}
.thin-border {
  padding: 2px;
  border-radius:11px;
  display: block;
  margin: 0px auto;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
}
.neg-150 {
  margin-top: -150px;
}
.border-rg {
  border: 2px solid;
  border-image-slice: 1;
  border-width: 2px;
  border-image-source: linear-gradient(to left, #9c7566, #d1a493, #fedfcb, #fff0d6, #fedfcb, #d1a493, #9c7566);
}
.gift-headline {
  display: grid;
  grid-template-columns: 95px auto;
  grid-gap: 10px;
  justify-content: center;
  align-items: center;
}
.gift-number-title {
  font-size: 30px;
  line-height: 30px;
  font-weight: 200;
  text-transform: uppercase;
  font-family: hero-new, "Helvetica-Neue", Helvetica, Arial, sans-serif;
  color: #212227;
  margin-bottom: 25px;
}
.gift-headline i {
  font-size: 95px;
  transform: rotate(-4deg);
  color: #816aa9;
}
.recipe-detail {
  /*background: white;*/
  /*box-shadow: 0px 4px 10px rgba(0,0,0,0.15);*/
  display: grid;
  /*grid-template-rows: auto 50px;*/
  align-items: center;
  margin-bottom: 30px;
}
.img-recipe, .item-exciting img {
  border: 4px solid white;
  display: block;
  margin: 0px auto 15px;
  width: 250px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.15)
}
.stickynav-wrap {
  padding-top: 125px;
}
.img-grp-logo {
  width: 270px;
  display: block;
  margin: 0px auto;
}

/* NEW MOBILE CART */
.cart-item {
  background: linear-gradient(0deg, #f1f1f1, rgba(255,255,255,1.0));
  box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
  border-radius: 11px;
  /*margin-bottom: 20px;*/
  text-align: center;
  font-family: "Avenir", "Helvetica", arial, sans-serif;
  position: relative;
  display: grid;
}
.cart-item .cart-mobile {
  display: grid;
  grid-template-columns: 1fr;
  /*grid-gap: 10px;*/
}
.cart-item-content-wrap {
  padding-bottom: 35px;
}
.price-callout-best {
  background: linear-gradient(180deg, #41aaf7 0%, #004483 100%);
  text-transform: uppercase;
  /* border-radius: 6px 6px 0px 0px; */
  text-align: center;
  margin-bottom: 0px;
  color: #fff;
  text-shadow: 0px 1px 1px #212227;
  letter-spacing: 1px;
  font-weight: 900;
  font-size: 28px;
  border-radius: 13px 13px 0px 0px;
  font-family: "Avenir", "Helvetica", arial, sans-serif;
  padding: 10px 0px;
}
.supply-level {
  font-size: 16px;
  font-weight: 700;
  /* color: #777777; */
  text-transform: uppercase;
  font-family: "Avenir", "Helvetica", arial, sans-serif;
}
.savings-block {
  /*background: #239640; #004483 100%);*/
  padding: 5px 10px;
  /*border-radius: 9px;*/
  display: inline-block;
  margin-bottom: 9px;
}
.savings-block p {
  color: #239640;
  text-transform: uppercase;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0px;
}
.btn-addtocart-wrap {
  text-align: center;
}
.btn-container {
  background: #eeeaf5;
  padding: 20px;
  border-radius: 0px 0px 13px 13px;
}
.total-savings {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  color: #239640;
}
.cart-item-img-wrap, .cart-item-content-wrap {
  padding: 20px 0px 0px;
}
.img-cards {
  width: 150px;
  display: block;
  margin: 0px auto 20px;
}
.img-mbg {
  width: 150px;
  display: block;
  margin: 0px auto 10px;
}
.price-callout-empty {
  padding: 20px 10px 0px;
  text-align: center;
}
.supply-level {
  font-size: 20px;
  font-weight: 700;
  /*color: #777777;*/
  text-transform: uppercase;
  font-family: "Avenir", "Helvetica", arial, sans-serif;
}
.supply-level-main {
  font-size: 26px;
  font-weight: 900;
  /*color: #777777;*/
  /*text-transform: uppercase;*/
  font-family: "Avenir", "Helvetica", arial, sans-serif;
}
.bottle-amount {
  font-size: 24px;
  color: #212227;
}
.product-image {
  width: 200px;
  display: block;
  margin: 20px auto;
}
.blue-dk {
  color: #004483 !important;
}
.options-wrap {
  /*display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;*/
}
.options-item {
  background: rgba(255,255,255,0.95);
  border-radius: 15px;
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: 0px 4px 10px rgba(0,0,0,0.25);
  padding: 20px;
  /*text-align: center;*/
  display: grid;
  justify-content: center;
  align-items: start;
  margin-bottom: 30px;
}
.options-item .opt-content {
  font-size: 16px;
  /*line-height: 1.5rem;*/
}
.cart-item-basic {
  margin-top: 65px;
}
.price-cbp {
  font-size: 45px;
}
.price-crossout {
  /*font-family: "Avenir", "Helvetica", arial, sans-serif;*/
  font-size: 28px;
  font-weight: 400;
  color: #bf0005;
  margin-bottom: 20px;
  /*text-decoration: line-through;
  text-decoration-thickness: 4px;
  -webkit-text-decoration-line: line-through;
  -webkit-text-decoration-thickness: 4px;*/
}
.price-crossout {
  position: relative;
  display: inline-block;
}
.price-crossout::before, .price-crossout::after {
  content: '';
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
}
.price-crossout::before {
  border-bottom: 2px solid #bf0005;
  -webkit-transform: skewY(-10deg);
  transform: skewY(-10deg);
}
.price-crossout::after {
  border-bottom: 2px solid #bf0005;
  -webkit-transform: skewY(10deg);
  transform: skewY(10deg);
}
.img-product-small {
  width: 400px;
  display: block;
  margin: 10px auto;
}
.btn-container .btn-main {
  /*background: #fc9903;*/
  background: #fd6300;
  /*background: linear-gradient(0deg, rgba(255,201,0,1), #fc9903);*/
  padding: 20px 25px;
  /*border-radius: 33px;*/
  border-radius: 100px;
  color: #004483 !important;
  text-shadow: 0px 1px 2px rgba(255,255,255,1.0);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.5);
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 15px;
}
.btn-container .btn-main:hover {
  background: #77bc20;
  color: white;
  text-shadow: 0px 1px 1px rgba(0,0,0,0.75);
  box-shadow: 0px 4px 10px rgba(255,255,255,1.0);
}
.btn-sticky:hover {
  box-shadow: 0px 2px 5px rgba(0,0,0,1.0);
}
@media (max-width: 991.98px) {
 /* .btn-container {
    padding: 0px;
  }*/
  .cart-item-img-wrap {
    border-right: 2px solid #eeeaf5;
  }
  .cart-item-img-wrap, .cart-item-content-wrap {
    display: grid;
    align-items: center;
    padding: 20px 0px 0px;
  }
  .ebooks-free-wrap {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    border: 4px solid #77bc20;
    background: rgba(233,243,230, 0.75);
    position: absolute;
    right: auto;
    top: 150px;
    padding: 9px;
    left: 15px;
  }
  .ebooks-free-wrap2 {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    border: 4px solid #77bc20;
    background: rgba(233,243,230, 0.75);
    position: absolute;
    right: auto;
    top: 130px;
    padding: 9px;
    left: 15px;
  }
  .cart-item .cart-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
  .btn-addtocart-wrap {
    padding: 0px 25px 30px;
  }
  .cart-item-basic {
    margin-top: 0px;
  }
  .img-cards {
    display: block;
    margin: 0px auto;
  }
}
@media (max-width: 767.98px) {
  .top-nav-btn-wrap .btn-main {
    font-size: 15px; 
  }
  .heres-what-gifts {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    grid-gap: 20px;
  }
  .cart-item .cart-mobile {
    display: grid;
    grid-template-columns: 1fr;
  }
  .cart-item-img-wrap {
    padding: 30px 0px 0px;
  }
  .cart-item-content-wrap {
    padding: 20px 0px 0px;
  }
}
@media (max-width: 599.98px) {
  .savings-block p {
    font-size: 18px;
    line-height: 1.0em;
  }
  .price-cbp {
    font-size: 45px;
  }
  .img-mbg {
    width: 120px;
  }
  .img-product-small {
    width: 260px;
    display: block;
    margin: 0px auto;
  }
  .ebooks-free-wrap, .ebooks-free-wrap2 {
    width: 115px;
    height: 115px;
  }
  .price-callout-best {
    font-size: 22px;
    padding: 10px 0px;
  }
}

@media (max-width: 991.98px) {
  .stickynav-wrap {
    padding-top: 0px;
  }
  .owl-carousel-aso .owl-item img {
    width: 150px;
  }
  .thin-border {
    /*max-width: 350px;*/
  }
  .img-cristina-wrap {
    max-width: 350px;
  }
  .img-cristina-top {
    /*max-width: 350px;*/
    display: block;
    margin: 0px auto;
  }
  .neg-150 {
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .owl-carousel-aso .owl-item img {
    /*width: 50px;*/
  }
}
