/* Media Queries */
/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap");
@font-face {
  font-family: "Konnect";
  src: url("../fonts/Konnect-Regular.woff") format("woff"), url("../fonts/Konnect-Regular.eot") format("opentype"), url("../fonts/Konnect-Regular.ttf") format("truetype"), url("../fonts/Konnect-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Konnect";
  src: url("../fonts/Konnect-Medium.woff") format("woff"), url("../fonts/Konnect-Medium.eot") format("opentype"), url("../fonts/Konnect-Medium.ttf") format("truetype"), url("../fonts/Konnect-Medium.svg") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Konnect";
  src: url("../fonts/Konnect-Bold.woff") format("woff"), url("../fonts/Konnect-Bold.eot") format("opentype"), url("../fonts/Konnect-Bold.ttf") format("truetype"), url("../fonts/Konnect-Bold.svg") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  background: #F7F8FA;
  color: #23201f;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Konnect", sans-serif;
  margin: 0;
  font-weight: bold;
}

p {
  margin: 0;
}

img {
  image-rendering: -webkit-optimize-contrast;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}

ul {
  list-style: none;
}

.text-center {
  text-align: center;
}

.text-upper {
  text-transform: uppercase;
}

.img-responsive {
  display: block;
  max-width: 100%;
}

.img-circle {
  border-radius: 50%;
}

.top-0 {
  top: 0 !important;
}

.main_title {
  font-size: 41px;
  line-height: 54px;
}

/* Colors */
.dark-blue{color:#114A97}

.alert.alert-danger {
    text-align: left;
    margin-bottom: 10px;
    background: #e4181a;
    color: #fff;
    padding: 10px 10px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .main_title {
    font-size: 36px;
    line-height: 44px;
  }
}

@media (max-width: 767px) {
  .main_title {
    font-size: 26px;
    line-height: 34px;
  }
}

.bg-white {
  background-color: #fff;
}

.bg-light {
  background-color: #F7F8FA;
}

.p-0 {
  padding: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.m-auto {
  margin: auto;
}

.pt-0 {
  padding-top: 0 !important;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

.d-inline-block {
  display: inline-block;
}

.align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
}

.border-0 {
  border: 0 !important;
}

.underline {
  text-decoration: underline;
}

.bold {
  font-weight: bold;
}

.text-grey {
  color: #646C7A;
}

strong {
  font-weight: 600;
}

.fw-600 {
  font-weight: 600;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.wrapper {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.wrapper .container {
  max-width: 916px;
  margin: auto;
}

.content {
  background: #ffffff;
  border: 1px solid #f0efef;
  border-radius: 12px;
  padding-top: 12px;
  position: relative;
}

@media (max-width: 915px) {
  .content {
    border-radius: 0;
    border: 0;
  }
}

@media (max-width: 767px) {
  .content {
    padding-top: 0;
  }
}

:root {
  --c-accent: #26A9E0;
}

.stepper {
  --s-stepper-bullet: 2rem;
  --s-stepper-bullet-half: calc(var(--s-stepper-bullet) / 2);
  --step-transition: background 0.5s, color 0.5s;
  --step-content: url("../imgs/check_icon.svg");
  --step-color: #aea9a8;
  --step-bar-bg: var(--c-accent);
  --step-bullet-bg: var(--step-bar-bg);
  --step-bullet-color: #fff;
  counter-reset: current-step;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(1px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(1px, 1fr));
  position: relative;
  z-index: 1;
  padding: 30px;
}

@media (max-width: 767px) {
  .stepper {
    background-color: #fff;
    padding: 30px 0 16px;
  }
}

.stepper__input {
  counter-increment: steps;
  display: none;
}

.stepper__step {
  counter-increment: current-step;
}

.stepper__input:checked ~ .stepper__step {
  --step-color: #aea9a8;
  --step-bar-bg: #dfdddd;
  --step-bullet-bg: #e9e9e9;
  --step-bullet-color: #aea9a8;
  --step-content: counter(current-step);
}

.stepper__input:checked + .stepper__step {
  --step-bullet-bg: #26A9E0;
  --step-bullet-color: white;
  --step-color: #26A9E0;
}

.stepper__input:checked + .stepper__step .stepper__button:before {
  -webkit-box-shadow: 0 0 0 9px rgba(38, 169, 224, 0.1);
          box-shadow: 0 0 0 9px rgba(38, 169, 224, 0.1);
}

.stepper__button {
  position: relative;
  text-align: center;
  color: var(--step-color);
  display: block;
  font-family: "Konnect";
}

@media (max-width: 767px) {
  .stepper__button {
    font-size: 14px;
  }
}

.stepper__button::before {
  content: var(--step-content);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto var(--s-stepper-bullet-half);
  height: var(--s-stepper-bullet);
  width: var(--s-stepper-bullet);
  border-radius: var(--s-stepper-bullet);
  -webkit-transition: var(--step-transition);
  transition: var(--step-transition);
  background: var(--step-bullet-bg);
  color: var(--step-bullet-color);
  font-weight: 500;
  line-height: 0;
}

.stepper__button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(var(--s-stepper-bullet-half) / 7);
  background: var(--step-bar-bg);
  -webkit-transition: var(--step-transition);
  transition: var(--step-transition);
  top: var(--s-stepper-bullet-half);
  left: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: -1;
}

.stepper__step:last-child .stepper__button::after {
  display: none;
}

.notice_box {
  background: #F5F7FA;
  border-radius: 11px;
  margin: 0 12px;
  padding: 30px;
  text-align: center;
}

@media (max-width: 767px) {
  .notice_box {
    border-radius: 0;
    margin: 0;
    padding: 20px 24px;
  }
}

.notice_box h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.notice_box h3 span {
  font-weight: 500;
  font-size: 24px;
  line-height: 31px;
  margin: 0 15px;
}

@media (max-width: 425px) {
  .notice_box h3 span.mx-165 {
    max-width: 165px;
  }
}

@media (max-width: 767px) {
  .notice_box h3 span {
    font-size: 18px;
    line-height: 23px;
    margin: 0 10px;
  }
}

.notice_box .one {
  font-size: 16px;
  line-height: 22px;
  color: #3f352f;
  margin: 7px 0 3px;
}

@media (max-width: 767px) {
  .notice_box .one {
    font-size: 14px;
    margin: 10px auto 6px;
  }
}

.notice_box .two {
  font-size: 16px;
  line-height: 22px;
  color: #646C7A;
}

@media (max-width: 767px) {
  .notice_box .two {
    font-size: 14px;
  }
}

.main_heading {
  text-align: center;
  margin: 30px auto 0;
  padding: 0 25px;
}

.main_heading h2 {
  font-size: 41px;
  line-height: 44px;
  display: inline-block;
  max-width: 780px;
}

.main_heading h2 mark {
  background-color: #114A97;
  color: #F7F8FA;
  line-height: 64px;
  padding: 6px 10px;
}

@media (max-width: 767px) {
  .main_heading h2 {
    font-size: 26px;
    line-height: 34px;
    margin: 0 0 10px;
  }
  .main_heading h2 mark {
    line-height: 45px;
  }
}

.main_heading.upsell-heading {
  margin: 25px auto 0;
  padding: 0 10px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .main_heading.upsell-heading {
    padding: 0 20px;
  }
}

.main_heading.upsell-heading h2 {
  margin-bottom: 0;
}

.main_heading h1 {
  font-size: 41px;
  line-height: 54px;
}

.main_heading h1.mx-690 {
  max-width: 690px;
  margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .main_heading h1.mx-690 {
    max-width: 580px;
  }
}

@media (max-width: 767px) {
  .main_heading h1.mx-690 {
    margin-bottom: 24px;
  }
}

@media (min-width: 768px) and (max-width: 915px) {
  .main_heading h1 {
    font-size: 34px;
    line-height: 44px;
  }
}

@media (max-width: 767px) {
  .main_heading h1 {
    font-size: 26px;
    line-height: 34px;
  }
}

.main_heading h1 span {
  color: #114A97;
}

.main_heading h1 span.three {
  text-decoration: underline;
  text-transform: uppercase;
}

.main_heading h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  max-width: 560px;
  margin: 10px auto 30px;
}

@media (max-width: 767px) {
  .main_heading h3 {
    font-size: 16px;
    line-height: 21px;
  }
}

.description {
  padding: 32px 58px 52px;
}

@media (max-width: 767px) {
  .description {
    padding: 20px;
  }
}

.description .paragraph {
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .description .paragraph {
    font-size: 16px;
  }
}

.description .paragraph span {
  color: #114A97;
  font-weight: 600;
}

.offer {
  color: #F7F8FA;
  background: #e4181a;
  width: 390px;
  margin: auto;
  position: relative;
  top: -30px;
}

@media (max-width: 470px) {
  .offer {
    width: 84%;
    top: -38px;
  }
}

@media (max-width: 360px) {
  .offer {
    width: 90%;
  }
}

.offer .offer_content {
  padding: 6px 0 5px;
  position: relative;
}

@media (max-width: 767px) {
  .offer .offer_content {
    padding: 8px 0 10px;
  }
}

.offer:before, .offer:after,
.offer .offer_content:before,
.offer .offer_content:after {
  content: "";
  position: absolute;
  border-bottom: 40px solid #e4181a;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  z-index: 0;
  left: -22px;
}

@media (max-width: 767px) {
  .offer:before, .offer:after,
  .offer .offer_content:before,
  .offer .offer_content:after {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    left: -20px;
  }
}

.offer .offer_content:before,
.offer .offer_content:after {
  right: -22px;
  left: auto;
}

@media (max-width: 767px) {
  .offer .offer_content:before,
  .offer .offer_content:after {
    right: -20px;
  }
}

.offer:before,
.offer .offer_content:before {
  top: 0;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.offer:after,
.offer .offer_content:after {
  bottom: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.offer h3,
.offer p {
  position: relative;
  z-index: 2;
}

.offer h3 {
  font-size: 24px;
  line-height: 33px;
}

@media (max-width: 767px) {
  .offer h3 {
    font-size: 17px;
    line-height: 24px;
  }
}

.offer p {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  margin-top: -5px;
}

@media (max-width: 767px) {
  .offer p {
    font-size: 14px;
    line-height: 19px;
  }
}

@media (max-width: 390px) {
  .offer p {
    max-width: 190px;
    margin: auto;
  }
}

.limited_time_offer {
  background: #F5F7FA;
  border-radius: 17px;
  margin: 30px 78px;
  text-align: center;
  padding: 0 32px 24px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .limited_time_offer {
    margin: 30px 50px;
  }
}

@media (max-width: 767px) {
  .limited_time_offer {
    padding: 0 10px 15px;
    margin: 30px 10px;
    border-radius: 6px;
  }
}

.limited_time_offer .main_title {
  font-size: 32px;
  line-height: 42px;
  color: #474D57;
  max-width: 530px;
  margin: auto;
}

@media (max-width: 767px) {
  .limited_time_offer .main_title {
    max-width: 450px;
    font-size: 24px;
    line-height: 31px;
  }
}

@media (max-width: 470px) {
  .limited_time_offer .main_title {
    margin: -20px auto 0;
  }
}

@media (max-width: 767px) {
  .limited_time_offer .bottles img {
    max-width: 85%;
    margin: auto;
  }
}

.limited_time_offer .bottle_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .limited_time_offer .bottle_price {
    margin-bottom: 8px;
  }
}

.limited_time_offer .price_per_bottle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.limited_time_offer .price_per_bottle img {
  margin-right: 24px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .limited_time_offer .price_per_bottle img {
    margin-right: 10px;
    width: 70px;
  }
}

@media (max-width: 767px) {
  .limited_time_offer .price_per_bottle img {
    display: none;
  }
}

.limited_time_offer .price {
  color: #114A97;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
}

.limited_time_offer .price h2 {
  font-size: 96px;
  line-height: 38px;
  display: inline-block;
  margin-right: 6px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .limited_time_offer .price h2 {
    font-size: 65px;
  }
}

@media (max-width: 767px) {
  .limited_time_offer .price h2 {
    font-size: 48px;
    line-height: 27px;
  }
}

.limited_time_offer .price h3 {
  font-size: 32px;
  line-height: 42px;
  display: inline-block;
  text-align: left;
}

@media (min-width: 768px) and (max-width: 915px) {
  .limited_time_offer .price h3 {
    font-size: 25px;
    line-height: 25px;
  }
}

@media (max-width: 767px) {
  .limited_time_offer .price h3 {
    font-size: 16px;
    line-height: 21px;
  }
}

.limited_time_offer .price h3 span {
  display: block;
}

.limited_time_offer .save .old_price {
  font-family: "Konnect";
  font-weight: 500;
  font-size: 32px;
  line-height: 25px;
  text-align: right;
  color: #e4181a;
  margin-bottom: 6px;
}

@media (max-width: 767px) {
  .limited_time_offer .save .old_price {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 0;
  }
}

.limited_time_offer .save .new_price {
  padding: 8px 11px 7px;
  background: #e4181a;
}

@media (max-width: 767px) {
  .limited_time_offer .save .new_price {
    padding: 5px 5px 3px;
  }
}

.limited_time_offer .save .new_price h3 {
  font-size: 21px;
  text-transform: uppercase;
  color: #F7F8FA;
  font-weight: 700;
}

@media (max-width: 767px) {
  .limited_time_offer .save .new_price h3 {
    font-size: 14px;
    line-height: 18px;
  }
}

.limited_time_offer .free_shipping {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
}

@media (max-width: 767px) {
  .limited_time_offer .free_shipping {
    margin-top: 8px;
  }
}

.limited_time_offer .free_shipping img {
  margin-right: 15px;
}

@media (max-width: 767px) {
  .limited_time_offer .free_shipping img {
    margin-right: 5px;
    width: 24px;
  }
}

.limited_time_offer .free_shipping span {
  font-family: "Konnect";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  text-transform: uppercase;
  color: #474D57;
}

@media (max-width: 767px) {
  .limited_time_offer .free_shipping span {
    font-size: 14px;
    line-height: 9px;
  }
}

.add_to_cart,
.adv-watch-now a {
  font-family: "Konnect";
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  color: #F7F8FA;
  border-radius: 8px;
  padding: 21px 0 18px;
  background: #26A9E0;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  text-shadow: 1px 2px 0px rgba(0, 0, 0, 0.17);
}

.add_to_cart:hover,
.adv-watch-now a:hover {
  background: #218fbd;
}

@media (min-width: 768px) and (max-width: 915px) {
  .add_to_cart,
  .adv-watch-now a {
    font-size: 24px;
    padding: 15px 0 12px;
  }
}

@media (max-width: 767px) {
  .add_to_cart,
  .adv-watch-now a {
    font-size: 18px;
    line-height: 23px;
    padding: 13px 0 12px;
  }
}

.moneyBack_guarantee {
  background-image: url(../imgs/money-back-bg.png);
  background-color: #114A97;
  position: relative;
  padding: 100px 60px 60px;
  text-align: center;
  color: #F7F8FA;
  margin-top: 135px;
}

@media (max-width: 767px) {
  .moneyBack_guarantee {
    padding: 66px 10px 20px;
    margin: 63px 20px 0;
    border-radius: 5px;
  }
}

.moneyBack_guarantee .badge {
  position: absolute;
  top: -87px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0px 24px 34px rgba(0, 0, 0, 0.35));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0px 24px 34px rgba(0, 0, 0, 0.35));
}

@media (max-width: 767px) {
  .moneyBack_guarantee .badge {
    top: -44px;
  }
  .moneyBack_guarantee .badge img {
    width: 88px;
  }
}

.moneyBack_guarantee p {
  font-size: 18px;
  line-height: 36px;
  padding: 0 10px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .moneyBack_guarantee p {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .moneyBack_guarantee p {
    font-size: 14px;
    line-height: 20px;
    padding: 0;
  }
}

.moneyBack_guarantee p:first-of-type {
  margin-bottom: 12px;
}

.moneyBack_guarantee p.text {
  margin-top: -10px;
}

@media (max-width: 767px) {
  .moneyBack_guarantee p.text {
    margin-top: 0;
    padding: 0 10px;
  }
}

.moneyBack_guarantee .money_back_offer {
  font-size: 51px;
  line-height: 67px;
  text-transform: uppercase;
  background: #fcaf0d;
  color: #23201f;
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 8px 0 3px;
  z-index: 2;
}

@media (min-width: 768px) and (max-width: 915px) {
  .moneyBack_guarantee .money_back_offer {
    font-size: 40px;
    max-width: 585px;
  }
}

@media (max-width: 767px) {
  .moneyBack_guarantee .money_back_offer {
    font-size: 16px;
    line-height: 21px;
    padding: 4px 0px 1px;
    width: 230px;
  }
}

.moneyBack_guarantee .money_back_offer:before, .moneyBack_guarantee .money_back_offer:after,
.moneyBack_guarantee .money_back_offer strong:before,
.moneyBack_guarantee .money_back_offer strong:after {
  content: "";
  position: absolute;
  border-bottom: 60px solid #fcaf0d;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  z-index: -1;
  left: -40px;
}

@media (max-width: 767px) {
  .moneyBack_guarantee .money_back_offer:before, .moneyBack_guarantee .money_back_offer:after,
  .moneyBack_guarantee .money_back_offer strong:before,
  .moneyBack_guarantee .money_back_offer strong:after {
    border-bottom: 26px solid #fcaf0d;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    left: -15px;
  }
}

.moneyBack_guarantee .money_back_offer:before,
.moneyBack_guarantee .money_back_offer strong:before {
  top: 0;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.moneyBack_guarantee .money_back_offer:after,
.moneyBack_guarantee .money_back_offer strong:after {
  bottom: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.moneyBack_guarantee .money_back_offer strong:before,
.moneyBack_guarantee .money_back_offer strong:after {
  right: -40px;
  left: auto;
}

@media (max-width: 767px) {
  .moneyBack_guarantee .money_back_offer strong:before,
  .moneyBack_guarantee .money_back_offer strong:after {
    right: -15px;
  }
}

.moneyBack_guarantee .guarantee_title {
  font-size: 126px;
  line-height: 130px;
  text-transform: uppercase;
  color: #F7F8FA;
}

@media (min-width: 768px) and (max-width: 915px) {
  .moneyBack_guarantee .guarantee_title {
    font-size: 110px;
  }
}

@media (max-width: 767px) {
  .moneyBack_guarantee .guarantee_title {
    font-size: 43px;
    line-height: 50px;
  }
}

.refuse_offer {
  text-align: center;
}

.refuse_offer a {
  font-size: 24px;
  line-height: 33px;
  text-decoration: underline;
  padding: 40px 65px 65px;
  color: #179bd7;
  display: block;
}

@media (min-width: 768px) and (max-width: 915px) {
  .refuse_offer a {
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .refuse_offer a {
    font-size: 16px;
    line-height: 25px;
    padding: 20px 20px 0;
  }
}

@media (max-width: 915px) {
  footer {
    background-color: #fff;
  }
}

@media (min-width: 768px) and (max-width: 915px) {
  footer {
    padding: 0 30px;
  }
}

footer .footer_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0 24px;
  border-bottom: 1px solid #dfdddd;
}

@media (max-width: 767px) {
  footer .footer_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 20px;
    padding: 24px 0 15px;
  }
}

footer .logo img {
  max-width: 180px;
}

footer .footer_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 767px) {
  footer .footer_links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 20px;
    margin-top: 10px;
  }
}

footer .footer_links li {
  position: relative;
}

footer .footer_links li:last-child {
  margin-left: 13px;
}

footer .footer_links li:not(:last-child) {
  margin: 0 13px;
}

@media (max-width: 767px) {
  footer .footer_links li:not(:last-child) {
    margin: 0 13px 5px;
  }
}

footer .footer_links li:not(:last-child):after {
  content: "";
  display: block;
  position: absolute;
  right: -13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 8px;
  background-color: #ccc9c8;
}

@media (max-width: 445px) {
  footer .footer_links li:nth-child(3)::after {
    display: none;
  }
}

footer .footer_links li a {
  font-size: 14px;
  line-height: 19px;
  color: #474D57;
  text-decoration: none;
}

footer .copyright p {
  text-align: center;
  font-size: 14px;
  line-height: 19px;
  color: #646C7A;
  padding: 24px 0;
}

@media (max-width: 767px) {
  footer .copyright p {
    padding: 16px 45px;
  }
}

.free-video {
  position: relative;
  margin: 30px auto 52px;
  border-radius: 17px;
  max-width: 760px;
  overflow: hidden;
  padding-bottom: 48.25%;
  height: 0;
}

@media (min-width: 768px) and (max-width: 915px) {
  .free-video {
    width: calc(100% - 100px);
    margin: 20px auto 65px;
  }
}

@media (max-width: 767px) {
  .free-video {
    width: calc(100% - 20px);
    margin: 20px 10px 65px;
  }
}

.free-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.free-video img.video-info {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 85%;
  max-height: 85%;
}

.free-video a {
  background: center/cover no-repeat url(../imgs/upsell/video-bg.png);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}

.main-video .main-heading {
  font-size: 41px;
  line-height: 54px;
  text-align: center;
  color: #23201f;
  max-width: 825px;
  margin: 10px auto 20px;
}

.adv-heading {
    font-size: 30px;
    line-height: 1.5;
    margin: 0 2rem 2.4rem;
    text-align: center;
}

.adv-heading-lg {
    font-size: 36px;
}

.adv-page .thx_header {
    border-bottom: none;
}

.adv-page .page_content {
    padding: 1rem 0;
}

.adv-page .main_text {
    padding: 0;
}

.adv-watch-now {
    text-align: center;
    margin: 4rem auto;
}

.adv-page .adv-watch-now a {
    padding-left: 1rem;
    padding-right: 1rem;
}

.adv-page .logo {
    flex: 1 1 33%;
}

.adv-page h1 {
    /*font-family: "Open Sans", sans-serif;*/
    font-family: "Helvetica Neue";
}

.adv-page {
    /*font-family: "Open Sans", sans-serif;*/
    font-family: "Helvetica Neue";
}

.adv-page p {
    font-size: 17px !important;
    line-height: 1.5 !important;
}

.adv-page p:not(:last-of-type) {
    margin-bottom: 1.75rem !important;
}

.adv-page .thx_header_content {
    align-items: flex-start;
}

.adv-logo-text {
    flex: 1 1 67%;
    margin-left: 17%;
}

.adv-illustration {
    width: 40%;
    height: auto;
    float: right;
    margin: 0 0 1rem 1rem;
}

.adv-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.adv-illustrationarthritis {
    width: 100%;
    height: auto;
    margin: 0 0 1rem 1rem;
}

.adv-illustrationarthritis img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.adv-sources li {
    font-size: 16px;
    line-height: 24px;
    color: #3f352f;
    word-wrap: break-word;
}

.adv-sources li span {
    font-size: 10px;
    line-height: 24px;
    position: absolute;
    left: -15px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .main-video .main-heading {
    font-size: 35px;
    line-height: 44px;
    margin: 20px auto 30px;
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .main-video .main-heading {
    font-size: 24px;
    line-height: 34px;
    margin: 20px auto 30px;
  }

    .adv-page .thx_header_content {
        align-items: center;
    }

    .adv-page .logo {
        flex: 1;
    }

    .adv-logo-text {
        flex: 1;
        margin: 2rem 0 0;
    }
}

.main-video .main-heading mark {
  padding: 5px;
  background: #D61313;
  color: #fff;
}

.main-video .main-heading span {
  color: #114A97;
}

.main-video .video-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 10px 10px;
}

.main-video .video-info img {
  margin: 0 10px;
}

@media (max-width: 425px) {
  .main-video .video-info img {
    margin: 0 3px;
  }
}

.main-video .video-info img:last-child {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.main-video .video-info p {
  font-family: "konnect";
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #26A9E0;
}

@media (max-width: 767px) {
  .main-video .video-info p {
    font-size: 14px;
    line-height: 18px;
  }
}

.main-video .bg-video {
  position: relative;
  overflow: hidden;
  border: 7px solid #474D57;
  border-radius: 17px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .main-video .bg-video {
    margin: 0 20px;
  }
}

@media (max-width: 767px) {
  .main-video .bg-video {
    margin: 0 14px;
  }
}

.main-video .bg-video .volume-mute {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: rgba(255, 96, 5, 0.6);
  -webkit-backdrop-filter: blur(13px);
          backdrop-filter: blur(13px);
  border-radius: 14px;
  padding: 47px 30px;
  z-index: 2;
  max-width: 400px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .main-video .bg-video .volume-mute {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .main-video .bg-video .volume-mute {
    padding: 13px;
    width: 68%;
    max-width: 220px;
  }
}

.main-video .bg-video .volume-mute img {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .main-video .bg-video .volume-mute img {
    width: 38px;
    margin-bottom: 5px;
  }
}

.main-video .bg-video .volume-mute p {
  font-family: "Konnect";
  font-weight: 500;
  font-size: 32px;
  line-height: 32px;
  color: #F7F8FA;
}

@media (min-width: 768px) and (max-width: 915px) {
  .main-video .bg-video .volume-mute p {
    font-size: 27px;
  }
}

.main-video .bg-video .volume-mute p:last-of-type {
  margin-top: 5px;
}

@media (max-width: 767px) {
  .main-video .bg-video .volume-mute p:last-of-type {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .main-video .bg-video .volume-mute p {
    font-size: 16px;
    line-height: 21px;
  }
}

.main-video .bg-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.limited_offer.pt-70 {
  padding-top: 70px;
}

@media (max-width: 915px) {
  .limited_offer.pt-70 {
    padding-top: 50px;
  }
}

@media (max-width: 767px) {
  .limited_offer {
    padding: 50px 20px 0;
  }
}

.limited_offer .offer {
  margin-bottom: 20px;
  top: -20px;
}

.limited_offer .pricing-plans {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.limited_offer .pricing-plans.forskolin_prices {
  padding: 0 25px;
}

.limited_offer .pricing-plans.forskolin_prices .plan {
  width: 32%;
}

@media (max-width: 767px) {
  .limited_offer .pricing-plans.forskolin_prices .plan {
    width: 100%;
  }
}

@media (max-width: 915px) {
  .limited_offer .pricing-plans.forskolin_prices {
    padding: 0;
  }
}

@media (min-width: 768px) and (max-width: 915px) {
  .limited_offer .pricing-plans {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .limited_offer .pricing-plans {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.limited_offer .pricing-plans .plan {
  width: 31%;
  background: #F7F8FA;
  border-radius: 17px;
  padding: 24px 0 0;
  padding-bottom: 30px;
}

@media (max-width: 767px) {
  .limited_offer .pricing-plans .plan {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
  }
}

.limited_offer .pricing-plans .plan.saved_paln {
  width: 35%;
  border: 6px solid #114A97;
  margin-top: -20px;
  -webkit-box-shadow: 0px 14px 24px rgba(93, 81, 77, 0.1);
          box-shadow: 0px 14px 24px rgba(93, 81, 77, 0.1);
  padding-top: 38px;
}

@media (max-width: 767px) {
  .limited_offer .pricing-plans .plan.saved_paln {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .limited_offer .pricing-plans .plan.plan-1-bottle {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.limited_offer .pricing-plans .plan.plan-3-bottles .free-bonus {
  margin-top: 10px;
}

@media (max-width: 767px) {
  .limited_offer .pricing-plans .plan.plan-3-bottles {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 20px;
  }
}

.limited_offer .pricing-plans .plan.plan-6-bottles .free-bonus {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .limited_offer .pricing-plans .plan.plan-6-bottles .free-bonus {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .limited_offer .pricing-plans .plan.plan-6-bottles {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 20px;
  }
}

.limited_offer .pricing-plans .plan > img {
  /*max-width: 233px;*/
  margin: auto;
}

.limited_offer .pricing-plans .price-title {
  font-size: 24px;
  line-height: 31px;
  text-align: center;
  color: #474D57;
}

.limited_offer .pricing-plans .price-back {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  color: #646C7A;
}

.limited_offer .pricing-plans .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
}

.limited_offer .pricing-plans .price h2 {
  font-size: 64px;
  line-height: 27px;
  color: #114A97;
}

@media (max-width: 767px) {
  .limited_offer .pricing-plans .price h2 {
    font-size: 48px;
  }
}

.limited_offer .pricing-plans .price h3 {
  font-size: 18px;
  line-height: 23px;
  color: #114A97;
  text-align: left;
  margin-left: 7px;
}

@media (max-width: 767px) {
  .limited_offer .pricing-plans .price h3 {
    font-size: 16px;
    line-height: 21px;
  }
}

.limited_offer .pricing-plans .save {
  font-size: 14px;
  line-height: 25px;
  color: #e4181a;
  margin: 4px 0;
}

@media (max-width: 767px) {
  .limited_offer .pricing-plans .save {
    font-size: 13px;
    line-height: 17px;
  }
}

.limited_offer .pricing-plans .add_to_cart {
  font-size: 21px;
  margin: 0 16px;
}

@media (max-width: 767px) {
  .limited_offer .pricing-plans .add_to_cart {
    font-size: 18px;
  }
}

.limited_offer .pricing-plans .free_shipping {
  font-family: "Konnect";
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  color: #474D57;
  margin-top: 8px;
}

.limited_offer .pricing-plans .free-bonus {
  background: #f0efef;
  border-radius: 0px 0px 17px 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2px 0;
}

.limited_offer .pricing-plans .free-bonus img {
  max-width: 140px;
}

.limited_offer .pricing-plans .free-bonus p {
  font-family: "Konnect";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #646C7A;
  margin-right: 15px;
  text-align: left;
}

@media (max-width: 767px) {
  .limited_offer .pricing-plans .free-bonus p {
    margin-right: 8px;
  }
}

.limited_offer .pricing-plans .free-bonus p span {
  color: #26A9E0;
}

h2.burn_faster-title {
  margin-bottom: 30px;
  padding-top: 10px;
}

@media (max-width: 915px) {
  h2.burn_faster-title {
    margin-bottom: 15px;
  }
}

h2.burn_faster-title span {
  color: #26A9E0;
}

.statement {
  margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .statement {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .statement {
    margin-bottom: 10px;
    padding: 0 20px;
  }
}

.statement .box {
  background: #ffffff;
  border: 1px solid #ccc9c8;
  border-radius: 4px;
  padding: 14px 7px;
  margin: 50px 0 20px;
}

@media (max-width: 767px) {
  .statement .box {
    padding: 15px;
    margin: 32px 0 15px;
  }
}

.statement .box p {
  font-size: 12px;
  line-height: 20px;
  color: #3f352f;
}

.statement p.txt {
  font-size: 12px;
  line-height: 20px;
  color: #3f352f;
  padding: 0 40px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .statement p.txt {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .statement p.txt {
    padding: 0;
  }
}

.statement p.txt:not(:last-of-type) {
  margin-bottom: 10px;
}

.border-radius-17 {
  border-radius: 17px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .border-radius-17 {
    margin: 135px 20px 0;
  }
}

.main_text {
  padding: 20px 55px;
}

@media (max-width: 767px) {
  .main_text {
    padding: 10px 20px;
  }
}

.main_text .desc {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 30px;
}

.main_text .desc.quote {
  font-style: italic;
}

@media (min-width: 768px) and (max-width: 915px) {
  .main_text .desc {
    margin-bottom: 20px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .main_text .desc {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .main_text .desc span {
    display: inline;
  }
}

.main_text .desc strong {
  font-weight: 600;
}

.main_text .title {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
  padding-right: 40px;
}

@media (max-width: 767px) {
  .main_text .title {
    font-size: 18px;
    padding-right: 0;
    margin-bottom: 15px;
  }
}

.main_text .title.c-title {
  padding-right: 0;
  text-align: center;
  margin: 0 auto 20px;
  max-width: 600px;
}

.main_text sup {
  font-family: "Open Sans";
  font-weight: normal;
  font-size: 12px;
  line-height: 30px;
}

.main_text .chart {
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .main_text .chart {
    display: none;
  }
}

.main_text .chart.chart-m {
  display: none;
}

@media (max-width: 767px) {
  .main_text .chart.chart-m {
    display: block;
    margin: 0 auto 25px;
  }
}

.main_text .fat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .main_text .fat {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.main_text .fat .white_fat_text {
  margin-right: 65px;
}

@media (max-width: 767px) {
  .main_text .fat .white_fat_text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-right: 0;
  }
}

.main_text .fat .imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 767px) {
  .main_text .fat .imgs {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 24px;
  }
}

.main_text .fat .imgs .fat-img {
  margin-bottom: 6px;
  background: #f0efef;
  border-radius: 17px;
  padding: 30px 60px;
  text-align: center;
}

.main_text .fat .imgs .fat-img img {
  max-width: 180px;
}

@media (max-width: 767px) {
  .main_text .fat .imgs .fat-img {
    padding: 15px 25px;
    margin: 0 2px;
    border-radius: 8px;
  }
  .main_text .fat .imgs .fat-img img {
    width: 88px;
  }
}

.main_text .fat .imgs .fat-img h4 {
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  margin-top: 10px;
  color: #474D57;
}

@media (max-width: 767px) {
  .main_text .fat .imgs .fat-img h4 {
    margin-top: 5px;
    font-size: 14px;
    line-height: 18px;
  }
}

.main_text .stressed-man p.desc {
  width:95%;
  margin: 10px;
}

.main_text .harvard_school, .main_text .stressed-man {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

.main_text .harvard_school p.desc {
  width: 54%;
  margin: 0;
}

@media (max-width: 730px) {
  .main_text .harvard_school {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main_text .harvard_school p.desc {
    width: 100%;
    margin-bottom: 30px;
  }
}

.money_back_box {
  background: #F5F7FA;
  border: 2px solid #b4d1c6;
  border-radius: 11px;
  max-width: 535px;
  margin: 25px auto 65px;
}

@media (max-width: 915px) {
  .money_back_box {
    margin: 25px auto 30px;
  }
}

.money_back_box .box_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 20px;
}

@media (max-width: 767px) {
  .money_back_box .box_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 10px;
    text-align: center;
  }
}

.money_back_box .box_content img {
  margin-right: 15px;
}

@media (max-width: 767px) {
  .money_back_box .box_content img {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.money_back_box .box_content h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  margin-bottom: 8px;
}

.money_back_box .box_content p {
  font-size: 16px;
  line-height: 22px;
  color: #474D57;
}

.remember h3 {
  font-weight: 500;
  font-size: 21px;
  line-height: 27px;
  background: #fff171;
  padding: 5px 10px;
  color: #e4181a;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .remember h3 {
    font-size: 20px;
    text-align: center;
  }
}

.remember h3 span {
  font-weight: bold;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

@media (max-width: 915px) {
  .sources {
    background-color: #fff;
    padding: 30px 0 10px;
  }
}

.sources .sources-content {
  border: 1px solid #dfdddd;
  border-radius: 4px;
  padding: 20px 40px;
  margin-top: 30px;
}

@media (max-width: 915px) {
  .sources .sources-content {
    background-color: #fff;
    margin: 0 10px;
    padding: 15px 30px;
  }
}

.sources p {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #3f352f;
  margin-bottom: 5px;
}

.sources ul li {
  position: relative;
  margin-bottom: 5px;
}

.sources ul li span {
  font-size: 10px;
  line-height: 24px;
  position: absolute;
  left: -15px;
}

.sources ul li a {
  font-size: 14px;
  line-height: 24px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #3f352f;
  word-wrap: break-word;
}

.testimonial {
  background: #F5F7FA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 55px;
  margin: 92px 0 52px;
}

@media (max-width: 767px) {
  .testimonial {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px;
    position: relative;
    text-align: center;
    margin: 105px 0 30px;
  }
}

.testimonial img {
  position: relative;
  top: -40px;
  margin-right: 35px;
  max-width: 275px;
}

@media (max-width: 767px) {
  .testimonial img {
    position: absolute;
    margin-right: 0;
    top: -80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.testimonial .testimonial_text {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media (max-width: 767px) {
  .testimonial .testimonial_text {
    padding-top: 215px;
    padding-bottom: 24px;
  }
}

.testimonial .testimonial_text q {
  font-family: "Konnect";
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  display: block;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .testimonial .testimonial_text q {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.testimonial .testimonial_text h5 {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #26A9E0;
}

.vitamin-d3 {
  padding: 0 55px;
}

@media (max-width: 915px) {
  .vitamin-d3 {
    padding: 0;
  }
}

.vitamin-d3 h2 {
  padding-top: 20px;
}

@media (max-width: 767px) {
  .vitamin-d3 h2 {
    padding-top: 10px;
  }
}

.vitamin-d3 .vitamin-d3-content {
  position: relative;
  height: 335px;
  border-radius: 17px;
  background-image: url(../imgs/upsell3/green-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #114A97;
  margin: 75px 0 105px;
}

@media (max-width: 915px) {
  .vitamin-d3 .vitamin-d3-content {
    border-radius: 0;
  }
}

@media (max-width: 550px) {
  .vitamin-d3 .vitamin-d3-content {
    margin: 40px 0 90px;
    height: 220px;
  }
}

.vitamin-d3 .vitamin_d_img {
  position: absolute;
  bottom: -90px;
  left: 0;
  max-height: 350px;
}

@media (max-width: 550px) {
  .vitamin-d3 .vitamin_d_img {
    max-height: 230px;
  }
}

.vitamin-d3 .human_img {
  position: absolute;
  bottom: 0;
  right: 15px;
  max-width: 440px;
}

@media (max-width: 550px) {
  .vitamin-d3 .human_img {
    max-height: 235px;
  }
}

.checkout_header {
  padding: 20px 0;
}

@media (min-width: 768px) and (max-width: 915px) {
  .checkout_header {
    padding: 16px;
  }
}

.checkout_header .header_content {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .checkout_header .header_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (min-width: 768px) {
  .checkout_header .secure-checkout .desc {
    position: relative;
    padding-left: 60px;
    padding: 12px 0 12px 60px;
  }
}

.checkout_header .secure-checkout .desc > img {
  margin-right: 18px;
}

@media (min-width: 768px) {
  .checkout_header .secure-checkout .desc > img {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media (min-width: 768px) and (max-width: 915px) {
  .checkout_header .secure-checkout .desc > img {
    top: 10px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.checkout_header .secure-checkout h4 {
  font-weight: 500;
  font-size: 21px;
  line-height: 27px;
  margin-bottom: 8px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .checkout_header .secure-checkout h4 {
    margin-bottom: 3px;
  }
}

.checkout_header .secure-checkout h4 span {
  font-size: 18px;
  line-height: 23px;
  color: #179bd7;
}

@media (min-width: 768px) and (max-width: 915px) {
  .checkout_header .secure-checkout h4 span {
    display: block;
  }
}

@media (max-width: 767px) {
  .checkout_header .secure-checkout h4 {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 23px;
    position: relative;
    padding-left: 45px;
  }
  .checkout_header .secure-checkout h4 img {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .checkout_header .secure-checkout h4 span {
    display: block;
    font-size: 16px;
    line-height: 21px;
  }
}

.checkout_header .secure-checkout ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media (max-width: 767px) {
  .checkout_header .secure-checkout ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.checkout_header .secure-checkout ul li:not(:last-child) {
  margin-right: 24px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .checkout_header .secure-checkout ul li:not(:last-child) {
    margin-right: 15px;
    margin-bottom: 5px;
  }
}

@media (max-width: 767px) {
  .checkout_header .secure-checkout ul li:not(:last-child):not(:last-child) {
    margin-right: 0;
    margin-bottom: 12px;
  }
}

.checkout_header .secure-checkout ul li img {
  margin-right: 8px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .checkout_header .secure-checkout ul li img {
    margin-right: 5px;
  }
}

.checkout_header .secure-checkout ul li p {
  font-size: 14px;
  line-height: 19px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .checkout_header .secure-checkout ul li p {
    font-size: 12px;
  }
}

.checkout_header .secure-checkout ul li p img {
  margin-left: 8px;
}

@media (max-width: 767px) {
  .checkout_header .logos {
    padding-top: 15px;
  }
  .checkout_header .logos img {
    max-height: 35px;
  }
}

.checkout_header .logos img:nth-child(2) {
  margin: 0 16px;
}

@media (max-width: 915px) {
  .checkout_header .logos img:nth-child(2) {
    margin: 0 8px;
  }
}

.order {
  background-color: #fff;
  padding-top: 16px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .order {
    padding: 16px;
  }
}

.order .order-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.order .order-content .secure_order {
  width: 64%;
}

@media (min-width: 768px) and (max-width: 915px) {
  .order .order-content .secure_order {
    width: 55%;
  }
}

.order .order-content .secure_order .order_form .alert {
    text-align: center;
}

.order .order-content .secure_order .order_form {
  background: #114A97;
  border-radius: 11px;
  padding: 8px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .order .order-content .secure_order .order_form {
    border-radius: 8px;
    padding: 5px;
  }
}

.order .order-content .secure_order .order_form h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 10px 20px 17px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .order .order-content .secure_order .order_form h3 {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 5px 0 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.order .order-content .secure_order .order_form h3 span {
  font-weight: 500;
  font-size: 21px;
  line-height: 1;
  color: #F7F8FA;
}

@media (min-width: 768px) and (max-width: 915px) {
  .order .order-content .secure_order .order_form h3 span {
    font-size: 18px;
  }
}

.order .order-content .secure_order .order_form h3 img {
  margin-right: 15px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .order .order-content .secure_order .order_form h3 img {
    margin-right: 10px;
    height: 24px;
  }
}

.order .order-content .secure_order form {
  background: #ffffff;
  border-radius: 5px;
  padding: 24px;
  text-align: right;
}

@media (max-width: 915px) {
  .order .order-content .secure_order form {
    padding: 16px;
    text-align: left;
  }
}

.order .order-content .secure_order .select2-container {
  width: 100% !important;
}

.order .order-content .secure_order .select2-container--default .select2-selection--single {
  text-align: left;
  height: 48px;
  line-height: 48px;
  border: 1px solid #ccc9c8;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 915px) {
  .order .order-content .secure_order .select2-container--default .select2-selection--single {
    height: 40px;
    line-height: 40px;
    border-radius: 6px;
  }
}

.order .order-content .secure_order .select2-container--default .select2-selection--single.validate-error {
  border-color: #e4181a;
}

.order .order-content .secure_order .select2-container--default .select2-results > .select2-results__options {
  text-align: left;
}

.order .order-content .secure_order .select2-results__option {
  padding: 12px 24px;
}

@media (max-width: 915px) {
  .order .order-content .secure_order .select2-results__option {
    padding: 12px;
  }
}

.order .order-content .secure_order .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 24px;
  line-height: 48px;
}

@media (max-width: 915px) {
  .order .order-content .secure_order .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 12px;
    line-height: 40px;
  }
}

.order .order-content .secure_order .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  background-image: url(../imgs/checkout/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.order .order-content .secure_order .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.order .order-content .secure_order .select2-dropdown {
  border-color: #ccc9c8;
  font-size: 14px;
}

.order .order-content .secure_order .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #114A97;
}

.order .order-content .secure_order .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.order .order-content .secure_order .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  -webkit-transform: rotate(180deg) translateY(14px);
          transform: rotate(180deg) translateY(14px);
}

.order .order-content .secure_order .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #646C7A;
  font-size: 14px;
  font-weight: normal;
}

.order .order-content .secure_order .form-group {
  margin-bottom: 12px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 915px) {
  .order .order-content .secure_order .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.order .order-content .secure_order .form-group label {
  font-family: "Konnect";
  font-weight: 500;
  font-size: 16px;
  margin-right: 12px;
  margin-bottom: 0;
}

@media (max-width: 915px) {
  .order .order-content .secure_order .form-group label {
    display: inline-block;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 4px;
    margin-right: 0;
  }
}

.order .order-content .secure_order .form-group img {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}

.order .order-content .secure_order .form-group.select_box img.check, .order .order-content .secure_order .form-group.card-cvc img.check {
  right: 40px;
}

.order .order-content .secure_order .form-group .field_container {
  position: relative;
  width: 365px;
}

@media (max-width: 915px) {
  .order .order-content .secure_order .form-group .field_container {
    width: 100%;
    margin-bottom: 8px;
  }
}

.order .order-content .secure_order .form-group .field_container.validate .true {
  display: block;
}

.order .order-content .secure_order .form-group .field_container.validate .error {
  display: none;
}

.order .order-content .secure_order .form-group .field_container.not-validate .error {
  display: block;
}

.order .order-content .secure_order .form-group .field_container.not-validate .true {
  display: none;
}

.order .order-content .secure_order .form-group input:not(input[type="checkbox"]),
.order .order-content .secure_order .form-group select {
  width: 365px;
  background: #ffffff;
  border: 1px solid #ccc9c8;
  border-radius: 8px;
  height: 48px;
  padding: 0 24px;
  font-family: "Open Sans";
  font-weight: 600;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #23201f !important;
}

.order .order-content .secure_order .form-group input:not(input[type="checkbox"])::-webkit-input-placeholder,
.order .order-content .secure_order .form-group select::-webkit-input-placeholder {
  color: #646C7A;
  font-weight: normal;
}

.order .order-content .secure_order .form-group input:not(input[type="checkbox"]):-ms-input-placeholder,
.order .order-content .secure_order .form-group select:-ms-input-placeholder {
  color: #646C7A;
  font-weight: normal;
}

.order .order-content .secure_order .form-group input:not(input[type="checkbox"])::-ms-input-placeholder,
.order .order-content .secure_order .form-group select::-ms-input-placeholder {
  color: #646C7A;
  font-weight: normal;
}

.order .order-content .secure_order .form-group input:not(input[type="checkbox"])::placeholder,
.order .order-content .secure_order .form-group select::placeholder {
  color: #646C7A;
  font-weight: normal;
}

.order .order-content .secure_order .form-group input:not(input[type="checkbox"]):hover, .order .order-content .secure_order .form-group input:not(input[type="checkbox"]):focus,
.order .order-content .secure_order .form-group select:hover,
.order .order-content .secure_order .form-group select:focus {
  border-color: #aea9a8;
}

.order .order-content .secure_order .form-group input:not(input[type="checkbox"]).validate-error,
.order .order-content .secure_order .form-group select.validate-error {
  border: 1px solid #e4181a;
}

@media (max-width: 915px) {
  .order .order-content .secure_order .form-group input:not(input[type="checkbox"]),
  .order .order-content .secure_order .form-group select {
    font-size: 14px;
    height: 40px;
    width: 100%;
    padding: 0 12px;
    border-radius: 6px;
  }
  .order .order-content .secure_order .form-group input:not(input[type="checkbox"])::-webkit-input-placeholder,
  .order .order-content .secure_order .form-group select::-webkit-input-placeholder {
    font-weight: 400;
  }
  .order .order-content .secure_order .form-group input:not(input[type="checkbox"]):-ms-input-placeholder,
  .order .order-content .secure_order .form-group select:-ms-input-placeholder {
    font-weight: 400;
  }
  .order .order-content .secure_order .form-group input:not(input[type="checkbox"])::-ms-input-placeholder,
  .order .order-content .secure_order .form-group select::-ms-input-placeholder {
    font-weight: 400;
  }
  .order .order-content .secure_order .form-group input:not(input[type="checkbox"])::placeholder,
  .order .order-content .secure_order .form-group select::placeholder {
    font-weight: 400;
  }
}

.order .order-content .secure_order .form-group input:not(input[type="checkbox"]):active, .order .order-content .secure_order .form-group input:not(input[type="checkbox"]):focus,
.order .order-content .secure_order .form-group select:active,
.order .order-content .secure_order .form-group select:focus {
  outline: none;
}

.order .order-content .secure_order .form-group .expiration_date {
  width: 365px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .order .order-content .secure_order .form-group .expiration_date {
    width: 100%;
    display: block;
  }
}

.order .order-content .secure_order .form-group .expiration_date .field_container {
  width: 49%;
}

@media (max-width: 767px) {
  .order .order-content .secure_order .form-group .expiration_date .field_container {
    width: 100%;
  }
}

.order .order-content .secure_order .form-group .expiration_date .field_container select {
  background: #ffffff;
  border: 1px solid #ccc9c8;
  border-radius: 8px;
  height: 48px;
  padding: 0 24px;
}

.order .order-content .secure_order .form-group .expiration_date .field_container select::-webkit-input-placeholder {
  color: #646C7A;
}

.order .order-content .secure_order .form-group .expiration_date .field_container select:-ms-input-placeholder {
  color: #646C7A;
}

.order .order-content .secure_order .form-group .expiration_date .field_container select::-ms-input-placeholder {
  color: #646C7A;
}

.order .order-content .secure_order .form-group .expiration_date .field_container select::placeholder {
  color: #646C7A;
}

.order .order-content .secure_order .form-group .expiration_date .field_container select::-webkit-input-placeholder::placeholder {
  font-weight: 400;
}

.order .order-content .secure_order .form-group .expiration_date .field_container select:-ms-input-placeholder::placeholder {
  font-weight: 400;
}

.order .order-content .secure_order .form-group .expiration_date .field_container select::-ms-input-placeholder::placeholder {
  font-weight: 400;
}

.order .order-content .secure_order .form-group .expiration_date .field_container select::placeholder::placeholder {
  font-weight: 400;
}

@media (max-width: 915px) {
  .order .order-content .secure_order .form-group .expiration_date .field_container select {
    height: 40px;
    padding: 0 12px;
    width: 100%;
  }
}

.order .order-content .secure_order .form-group .expiration_date .field_container select:active, .order .order-content .secure_order .form-group .expiration_date .field_container select:focus {
  outline: none;
}

.order .order-content .secure_order .form-group .card-cvc {
  position: relative;
  display: inline-block;
}

@media (max-width: 915px) {
  .order .order-content .secure_order .form-group .card-cvc {
    display: block;
    width: 100%;
  }
}

.order .order-content .secure_order .form-group .info {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  cursor: pointer;
}

.order .order-content .secure_order .form-group .info:hover + .tooltiptext {
  opacity: 1;
  visibility: visible;
  top: -80px;
}

.order .order-content .secure_order .form-group .tooltiptext {
  position: absolute;
  display: inline-block;
  background: #4f4f4f;
  -webkit-box-shadow: 0px 6px 11px rgba(79, 79, 79, 0.3);
          box-shadow: 0px 6px 11px rgba(79, 79, 79, 0.3);
  width: 200px;
  height: 80px;
  font-size: 12px;
  line-height: 14px;
  color: #ffffff;
  padding: 12px 17px;
  top: -90px;
  right: 0;
  font-weight: 400;
  opacity: 0;
  visibility: hidden;
  border-radius: 5px;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.order .order-content .secure_order .form-group .tooltiptext:after {
  content: "";
  position: absolute;
  border-width: 8px;
  border-style: solid;
  border-color: #4f4f4f transparent transparent transparent;
  display: block;
  bottom: -16px;
  right: 5px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}

.order .order-content .secure_order .form-group.checkbox {
  padding-right: 70px;
}

@media (max-width: 915px) {
  .order .order-content .secure_order .form-group.checkbox {
    padding-right: 0;
  }
}

.order .order-content .secure_order .form-group.checkbox .check_container {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-family: "Open Sans";
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
}

.order .order-content .secure_order .form-group.checkbox .check_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.order .order-content .secure_order .form-group.checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  border: 1px solid #ccc9c8;
  border-radius: 3px;
  background-color: #fff;
}

.order .order-content .secure_order .form-group.checkbox .check_container:hover input ~ .checkmark {
  border: 1px solid #aea9a8;
  -webkit-box-shadow: 0px 2px 0px rgba(174, 169, 168, 0.1);
          box-shadow: 0px 2px 0px rgba(174, 169, 168, 0.1);
}

.order .order-content .secure_order .form-group.checkbox .check_container input:checked ~ .checkmark {
  background: #114A97;
  border: 1px solid #114A97;
}

.order .order-content .secure_order .form-group.checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.order .order-content .secure_order .form-group.checkbox .check_container input:checked ~ .checkmark:after {
  display: block;
}

.order .order-content .secure_order .form-group.checkbox .check_container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.order .order-content .secure_order .order_now_btn {
  background: #26A9E0;
  border-radius: 4px;
  font-family: "Konnect";
  font-weight: bold;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #ffffff;
  border: 0;
  padding: 14px;
  width: 365px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.order .order-content .secure_order .order_now_btn:active, .order .order-content .secure_order .order_now_btn:focus {
  outline: none;
}

@media (max-width: 915px) {
  .order .order-content .secure_order .order_now_btn {
    width: 100%;
  }
}

.order .order-content .secure_order .order_now_btn img {
  margin-left: 5px;
}

.order .order-content .secure_order .payment_methods ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 15px;
  margin-bottom: 12px;
}

@media (max-width: 915px) {
  .order .order-content .secure_order .payment_methods ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.order .order-content .secure_order .payment_methods ul li {
  margin: 0 2px 12px;
  background: #ffdfcd;
  border-radius: 3.625px;
  padding: 6px 12px;
  min-width: 55px;
  text-align: center;
}

@media (max-width: 767px) {
  .order .order-content .secure_order .payment_methods ul li {
    margin: 0 2px 4px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.order .order-content .trust_badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
}

@media (max-width: 915px) {
  .order .order-content .trust_badges {
    padding-top: 12px;
    margin-bottom: 32px;
  }
}

.order .order-content .trust_badges li {
  margin: 0 16px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .order .order-content .trust_badges li {
    margin: 0;
  }
  .order .order-content .trust_badges li img {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@media (max-width: 767px) {
  .order .order-content .trust_badges li {
    margin: 0 3px;
  }
  .order .order-content .trust_badges li img {
    max-height: 35px;
  }
}

.order .order-content .product_info {
  width: 32.5%;
}

@media (min-width: 768px) and (max-width: 915px) {
  .order .order-content .product_info {
    width: 40%;
  }
}

.order .order-content .product_info .product_img {
  max-width: 295px;
  margin: auto;
}

.order .order-content .product_info ul {
  border-bottom: 1px solid #dfdddd;
  padding-bottom: 10px;
}

.order .order-content .product_info ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 15px;
}

.order .order-content .product_info ul li .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.order .order-content .product_info ul li .item img {
  margin-right: 10px;
}

.order .order-content .product_info ul li .item p {
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
}

.order .order-content .product_info ul li .cost {
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  font-family: "Konnect";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.order .order-content .product_info ul li .cost .old_price {
  margin-right: 5px;
  color: #e4181a;
  margin-right: 5px;
}

.order .order-content .product_info .order_summary {
  text-align: right;
  padding-top: 24px;
}

.order .order-content .product_info .order_summary .original-price,
.order .order-content .product_info .order_summary .your-price,
.order .order-content .product_info .order_summary .savings {
  font-family: "Konnect";
  font-weight: 500;
  line-height: 23px;
  margin-bottom: 6px;
}

.order .order-content .product_info .order_summary .original-price {
  font-size: 18px;
  color: #e4181a;
}

.order .order-content .product_info .order_summary .your-price {
  font-size: 16px;
  color: #23201f;
}

.order .order-content .product_info .order_summary .savings {
  font-size: 16px;
  color: #009a37;
}

.order .order-content .product_info .order_money_back {
  background: #F5F7FA;
  border: 1px solid #cce0d8;
  border-radius: 11px;
  position: relative;
  padding: 55px 20px 20px;
  margin-top: 105px;
  text-align: center;
}

@media (max-width: 767px) {
  .order .order-content .product_info .order_money_back {
    display: none;
  }
}

.order .order-content .product_info .order_money_back img {
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.order .order-content .product_info .order_money_back h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  margin-bottom: 9px;
}

.order .order-content .product_info .order_money_back p {
  font-size: 14px;
  line-height: 24px;
  color: #474D57;
}

@media (max-width: 767px) {
  .order .order-content {
    display: block;
    padding: 0 10px;
  }
  .order .order-content .secure_order,
  .order .order-content .product_info {
    width: 100%;
  }
  .order .order-content .secure_order .order_form {
    padding: 4px;
  }
  .order .order-content .secure_order .order_form h3 {
    padding: 8px 0 12px;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .order .order-content .secure_order .order_form h3 span {
    font-size: 18px;
  }
  .order .order-content .secure_order .order_form h3 img {
    margin-right: 8px;
    height: 24px;
  }
}

@media (min-width: 768px) and (max-width: 915px) {
  .product_awards {
    padding: 16px;
  }
}

@media (max-width: 767px) {
  .product_awards {
    padding: 0 12px;
  }
}

.product_awards .product_awards_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #F5F7FA;
  border-radius: 17px;
  margin: 65px 0;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 915px) {
  .product_awards .product_awards_content {
    margin: 0 0 40px;
  }
}

@media (max-width: 767px) {
  .product_awards .product_awards_content {
    border-radius: 4px;
    margin: 32px 0;
    display: block;
  }
}

.product_awards .product_awards_content > div {
  width: 50%;
  padding: 40px 35px;
}

@media (max-width: 767px) {
  .product_awards .product_awards_content > div {
    padding: 40px 30px 24px;
    width: 100%;
  }
}

.product_awards .product_awards_content .money_back {
  position: relative;
}

.product_awards .product_awards_content .money_back::after {
  content: "";
  position: absolute;
  top: 0;
  width: 4px;
  background-color: #fff;
  height: 100%;
  display: block;
  right: 0;
}

@media (max-width: 767px) {
  .product_awards .product_awards_content .money_back::after {
    top: 100%;
    width: 100%;
    height: 4px;
    left: 0;
  }
}

.product_awards .product_awards_content h4 {
  font-weight: 500;
  font-size: 21px;
  line-height: 27px;
  margin: 24px 0 8px;
}

@media (max-width: 767px) {
  .product_awards .product_awards_content h4 {
    font-size: 18px;
    line-height: 23px;
  }
}

.product_awards .product_awards_content p {
  font-size: 16px;
  line-height: 30px;
  color: #474D57;
}

@media (max-width: 767px) {
  .product_awards .product_awards_content p {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (min-width: 768px) and (max-width: 915px) {
  .customers_testimonials {
    padding: 16px;
  }
}

@media (max-width: 767px) {
  .customers_testimonials {
    padding: 12px;
  }
}

.customers_testimonials h2 {
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .customers_testimonials h2 {
    margin-bottom: 0;
  }
}

.customers_testimonials .customer_testimonial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 767px) {
  .customers_testimonials .customer_testimonial {
    display: block;
    padding-top: 20px;
  }
}

.customers_testimonials .customer_testimonial .author_img {
  margin-right: 30px;
  position: relative;
}

.customers_testimonials .customer_testimonial .author_img img {
  max-width: 88px;
}

@media (max-width: 767px) {
  .customers_testimonials .customer_testimonial .author_img {
    margin-right: 0;
    display: inline-block;
    margin-bottom: 16px;
  }
}

.customers_testimonials .customer_testimonial .author_img .verified_badge {
  position: absolute;
  right: 0;
  bottom: 0;
}

.customers_testimonials .customer_testimonial .author_info {
  padding-bottom: 32px;
  border-bottom: 1px solid #dfdddd;
}

@media (max-width: 767px) {
  .customers_testimonials .customer_testimonial .author_info {
    padding-bottom: 20px;
  }
}

.customers_testimonials .customer_testimonial .author_info.last {
  border: 0;
}

.customers_testimonials .customer_testimonial .author_info p {
  font-size: 16px;
  line-height: 30px;
  color: #474D57;
}

.customers_testimonials .customer_testimonial .author_info .name {
  margin-bottom: 5px;
}

.customers_testimonials .customer_testimonial .author_info .name span {
  font-family: "Konnect";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  color: #23201f;
}

.pruchase_terms {
  background: #F7F8FA;
  border-radius: 11px;
  padding: 40px;
  margin-top: 32px;
  margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .pruchase_terms {
    margin: 0 16px;
  }
}

@media (max-width: 767px) {
  .pruchase_terms {
    border-radius: 4px;
    padding: 24px;
    margin: 13px;
  }
}

.pruchase_terms h3 {
  font-weight: 500;
  font-size: 21px;
  line-height: 27px;
  color: #23201f;
  margin-bottom: 20px;
}

.pruchase_terms p {
  font-size: 16px;
  line-height: 30px;
  color: #474D57;
  max-width: 750px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pruchase_terms p span {
  margin-right: 5px;
}

.thx_header {
  padding: 24px 0;
  border-bottom: 1px solid #dfdddd;
}

@media (min-width: 768px) and (max-width: 915px) {
  .thx_header {
    padding: 24px 16px;
  }
}

.thx_header_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .thx_header_content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 767px) {
  .thx_header_content .logo {
    margin-bottom: 24px;
  }
}

.thx_header_content .logo img {
  height: 60px;
}

.thx_header_content .contact_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .thx_header_content .contact_info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.thx_header_content .contact_info .contact-txt {
  margin-right: 8px;
  color: #474D57;
  font-weight: 600;
}

@media (max-width: 915px) {
  .thx_header_content .contact_info .contact-txt {
    display: none;
  }
}

.thx_header_content .contact_info div {
  margin-left: 16px;
}

@media (max-width: 767px) {
  .thx_header_content .contact_info div:not(:last-child) {
    margin-bottom: 12px;
  }
}

.thx_header_content .contact_info div a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

.thx_header_content .contact_info div img {
  margin-right: 6px;
}

.thx_header_content .contact_info div span {
  color: #474D57;
  font-weight: 600;
}

.order-received {
  background: #F5F7FA;
  border-radius: 11px;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 12px;
}

@media (max-width: 767px) {
  .order-received {
    padding: 20px 16px;
  }
}

.order-received img {
  margin-right: 15px;
}

@media (max-width: 767px) {
  .order-received img {
    margin-right: 10px;
  }
}

.order-received .desc h3 {
  font-family: "Konnect";
  font-weight: 500;
  font-size: 21px;
  line-height: 27px;
  color: #009a37;
  margin-bottom: 4px;
}

@media (max-width: 767px) {
  .order-received .desc h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 23px;
  }
}

.order-received .desc p {
  font-size: 14px;
  line-height: 19px;
  color: #474D57;
}

@media (max-width: 767px) {
  .order-received .desc p {
    text-align: center;
  }
}

.thx_heading {
  max-width: 715px;
  margin: 40px auto;
  line-height: 48px;
}

@media (max-width: 767px) {
  .thx_heading {
    line-height: 44px;
    margin: 24px 10px;
  }
}

.thx_heading mark {
  font-size: 32px;
  color: #e4181a;
  padding: 5px;
  background: #fff171;
}

@media (max-width: 767px) {
  .thx_heading mark {
    font-size: 26px;
  }
}

.thx_text {
  font-size: 18px;
  line-height: 30px;
  color: #23201f;
  margin: 0 55px 30px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .thx_text {
    margin: 0 35px 30px;
  }
}

@media (max-width: 767px) {
  .thx_text {
    font-size: 16px;
    margin: 0 20px 24px;
  }
}

.order_details {
  background: #F7F9FA;
  padding: 60px 65px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .order_details {
    padding: 40px 35px;
  }
}

@media (max-width: 767px) {
  .order_details {
    padding: 24px 20px;
  }
}

.order_details h2 {
  font-weight: 500;
  font-size: 32px;
  line-height: 42px;
  color: #26A9E0;
  margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .order_details h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .order_details h2 {
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 16px;
  }
}

.order_details ul li {
  font-size: 18px;
  line-height: 30px;
  color: #23201f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .order_details ul li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 26px;
  }
}

.order_details ul li span {
  width: 8px;
  min-width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #646C7A;
  margin-right: 15px;
  position: relative;
  top: 12px;
}

@media (max-width: 767px) {
  .order_details ul li span {
    margin-right: 10px;
    width: 5px;
    min-width: 5px;
    height: 5px;
  }
}

.surprise {
  padding: 60px 95px 20px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .surprise {
    padding: 40px 35px 20px;
  }
}

@media (max-width: 767px) {
  .surprise {
    padding: 24px 15px 0;
  }
}

.surprise h2 {
  font-weight: 500;
  font-size: 32px;
  line-height: 42px;
  color: #23201f;
}

@media (max-width: 767px) {
  .surprise h2 {
    font-size: 26px;
    line-height: 34px;
  }
}

.surprise h2 span {
  font-weight: bold;
  color: #114A97;
}

.surprise .free_books {
  position: relative;
  margin: 32px 0 55px;
}

@media (max-width: 767px) {
  .surprise .free_books {
    margin: 20px 0 40px;
  }
  .surprise .free_books.additional_bonus {
    margin-top: 0;
  }
}

.surprise .free_books h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  color: #646C7A;
  display: inline-block;
  background-color: #fff;
  padding: 0 5px;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .surprise .free_books h3 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .surprise .free_books h3.additional_bonus_title {
    max-width: 170px;
    margin: auto;
  }
}

.surprise .free_books:after {
  content: "";
  height: 1px;
  background-color: #dfdddd;
  width: 100%;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  z-index: 0;
  position: absolute;
}

.surprise .books {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .surprise .books {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.surprise .book {
  background: #F5F7FA;
  border-radius: 17px;
  padding: 24px;
  position: relative;
  text-align: right;
  width: 48%;
}

@media (min-width: 768px) and (max-width: 915px) {
  .surprise .book {
    padding: 20px 16px;
  }
}

@media (max-width: 767px) {
  .surprise .book {
    width: 100%;
    padding: 12px;
    margin-bottom: 52px;
    border-radius: 4px;
  }
}

.surprise .book img.book_img {
  position: absolute;
  left: 24px;
  top: -30px;
  -webkit-filter: drop-shadow(0px 3px 16px rgba(35, 32, 31, 0.3));
          filter: drop-shadow(0px 3px 16px rgba(35, 32, 31, 0.3));
  max-width: 76px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .surprise .book img.book_img {
    left: 16px;
  }
}

@media (max-width: 767px) {
  .surprise .book img.book_img {
    left: 9px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.surprise .book a {
  background: #26A9E0;
  border-radius: 4px;
  height: 48px;
  line-height: 48px;
  width: 206px;
  font-family: "Konnect";
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.surprise .book a:hover {
  background: #218fbd;
}

@media (max-width: 767px) {
  .surprise .book a {
    height: 40px;
    line-height: 40px;
    width: 178px;
    font-size: 14px;
  }
}

.surprise .book a img {
  margin-right: 5px;
}

.purchase-gift {
  padding: 0 95px 30px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .purchase-gift {
    padding: 0 35px 20px;
  }
}

@media (max-width: 767px) {
  .purchase-gift {
    padding: 0 15px 16px;
  }
}

.purchase-gift-content {
  background: #F5F7FA;
  border-radius: 17px;
  padding: 40px 0 40px 40px;
}

@media (max-width: 767px) {
  .purchase-gift-content {
    padding: 30px 15px;
  }
}

.purchase-gift-content .gift-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .purchase-gift-content .gift-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.purchase-gift .title {
  font-size: 32px;
  line-height: 42px;
  color: #23201f;
}

@media (max-width: 767px) {
  .purchase-gift .title {
    font-size: 26px;
    line-height: 34px;
  }
}

.purchase-gift .title span {
  background: #114A97;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  padding: 4px 10px 0;
}

.purchase-gift .desc {
  font-size: 18px;
  line-height: 30px;
  color: #23201f;
  margin: 14px 0 20px;
}

@media (max-width: 767px) {
  .purchase-gift .desc {
    font-size: 16px;
  }
}

.purchase-gift ul li {
  font-size: 14px;
  line-height: 19px;
  color: #474D57;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 40px;
}

@media (max-width: 767px) {
  .purchase-gift ul li {
    padding-right: 0;
  }
}

.purchase-gift ul li:not(:last-child) {
  margin-bottom: 16px;
}

.purchase-gift ul li img {
  margin-right: 8px;
}

.purchase-gift .text {
  width: 60%;
}

@media (max-width: 767px) {
  .purchase-gift .text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}

.purchase-gift .image {
  width: 38%;
}

@media (max-width: 767px) {
  .purchase-gift .image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    text-align: center;
    margin-bottom: 24px;
  }
}

.purchase-gift .image img {
  -webkit-filter: drop-shadow(0px 9px 18px rgba(0, 0, 0, 0.18));
          filter: drop-shadow(0px 9px 18px rgba(0, 0, 0, 0.18));
  max-width: 231px;
}

@media (max-width: 767px) {
  .purchase-gift .image img {
    max-width: 140px;
  }
}

.purchase-gift .confirm-purchase {
  text-align: center;
  margin-top: 40px;
  padding-right: 40px;
}

.cured-american-seniors {
    margin: 0 95px 30px;
}

.cured-american-seniors img {
    width: 100%;
}

@media (max-width: 767px) {
  .purchase-gift .confirm-purchase {
    margin-top: 30px;
    padding-right: 0;
  }

    .cured-american-seniors {
        margin: 0 15px 16px;
    }
}

.purchase-gift .confirm-purchase a {
  font-family: "Open Sans";
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #179bd7;
}

.purchase-gift .confirm-purchase a span {
  display: inline;
}

@media (min-width: 768px) {
  .purchase-gift .confirm-purchase a span {
    display: block;
  }
}

.members-discount {
  padding: 0 95px 50px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .members-discount {
    padding: 0 35px 40px;
  }
}

@media (max-width: 767px) {
  .members-discount {
    padding: 0 15px 30px;
  }
}

.members-discount-content {
  background: #F5F7FA;
  padding: 20px 77px 40px;
  border-radius: 17px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .members-discount-content {
    padding: 20px 65px 40px;
  }
}

@media (max-width: 767px) {
  .members-discount-content {
    padding: 20px;
  }
}

.members-discount .image img {
  width: 415px;
  max-width: 100%;
}

.members-discount h2 {
  font-size: 32px;
  line-height: 42px;
}

@media (max-width: 767px) {
  .members-discount h2 {
    font-size: 26px;
    line-height: 34px;
  }
}

.members-discount p {
  font-family: "Open Sans";
  font-size: 18px;
  line-height: 30px;
  margin: 12px 0 24px;
}

@media (max-width: 767px) {
  .members-discount p {
    font-size: 16px;
  }
}

/* .members-discount a {
  font-family: "Konnect", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  padding: 16px 49px;
  background: #26A9E0;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.members-discount a:hover {
  background: #218fbd;
} */

.members-discount a {
  font-family: "Open Sans";
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: #179bd7;
}

@media (max-width: 767px) {
  .members-discount a {
    width: 100%;
    padding: 16px 0;
  }
}

.contact_us {
  padding: 0 95px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .contact_us {
    padding: 0 35px;
  }
}

@media (max-width: 767px) {
  .contact_us {
    padding: 0 10px;
  }
}

.contact_us h2 {
  font-weight: bold;
  font-size: 32px;
  line-height: 42px;
  color: #23201f;
  margin-bottom: 70px;
}

@media (max-width: 767px) {
  .contact_us h2 {
    padding: 0 15px;
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 55px;
  }
}

.contact_us .boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .contact_us .boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contact_us .box {
  position: relative;
  text-align: center;
  width: 48%;
  padding: 65px 22px 30px;
  border: 3px solid #F7F9FA;
  border-radius: 17px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .contact_us .box {
    padding: 55px 12px 24px;
  }
}

@media (max-width: 767px) {
  .contact_us .box {
    width: 100%;
    padding: 52px 15px 28px;
  }
  .contact_us .box:first-child {
    margin-bottom: 48px;
  }
}

.contact_us .box .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #F7F9FA;
  position: absolute;
  top: -32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contact_us .box .icon img {
  margin: auto;
}

.contact_us .box h4 a {
  font-weight: 500;
  font-size: 21px;
  line-height: 27px;
  text-decoration: none;
  color: #23201f;
}

@media (max-width: 767px) {
  .contact_us .box h4 a {
    font-size: 18px;
    line-height: 23px;
  }
}

.contact_us .box small {
  font-size: 14px;
  line-height: 24px;
  color: #474D57;
  display: block;
  margin: 8px 0;
}

.contact_us .box p {
  font-size: 14px;
  line-height: 24px;
  color: #474D57;
  margin-bottom: 8px;
}

.contact_us .box p .day {
  font-weight: 600;
  display: inline-block;
  min-width: 113px;
  text-align: right;
}

.note {
  padding: 20px 95px 64px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .note {
    padding: 20px 35px 20px;
  }
}

@media (max-width: 767px) {
  .note {
    padding: 10px 10px 0px;
  }
}

.note .note_content {
  background: #F7F8FA;
  border-radius: 4px;
  padding: 20px 12px;
}

.note p {
  font-size: 18px;
  line-height: 25px;
  color: #3f352f;
}

@media (max-width: 767px) {
  .note p {
    font-size: 16px;
    line-height: 22px;
  }
}

.page_content h2 {
  margin: 40px 0;
}

@media (min-width: 768px) and (max-width: 915px) {
  .page_content h2 {
    margin: 30px 0;
  }

    .cured-american-seniors {
        margin: 0 35px 20px;
    }
}

@media (max-width: 767px) {
  .page_content h2 {
    margin: 20px 0;
  }
}

.page_content .content {
  padding: 60px 78px;
}

@media (max-width: 915px) {
  .page_content .content {
    border-radius: 0;
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .page_content .content {
    padding: 30px 20px;
  }
}

.page_content .content p {
  font-size: 18px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .page_content .content p {
    font-size: 16px;
    line-height: 26px;
  }

    .adv-page p {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }

    .adv-sources li {
        font-size: 14px;
    }
}

.page_content .content p:not(:last-of-type) {
  margin-bottom: 30px;
}

@media (max-width: 915px) {
  .page_content .content p:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

.page_content .content p.item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page_content .content p.item .bull {
  margin-right: 5px;
}

.page_content .content .contact_way {
  margin-bottom: 52px;
}

@media (max-width: 767px) {
  .page_content .content .contact_way {
    margin-bottom: 30px;
  }
}

.page_content .content .contact_way h3 {
  font-weight: 500;
  font-size: 32px;
  line-height: 45px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .page_content .content .contact_way h3 {
    font-size: 26px;
    line-height: 36px;
  }
}

@media (max-width: 767px) {
  .page_content .content .contact_way h3 {
    font-size: 20px;
    line-height: 30px;
  }
}

.page_content .content .contact_way > p {
  margin: 32px 0;
}

@media (max-width: 915px) {
  .page_content .content .contact_way > p {
    margin: 20px 0;
  }
}

.page_content .content .contact_way .email,
.page_content .content .contact_way .address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page_content .content .contact_way .email .icon,
.page_content .content .contact_way .address .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F5F7FA;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .page_content .content .contact_way .email .icon,
  .page_content .content .contact_way .address .icon {
    margin-right: 10px;
  }
}

.page_content .content .contact_way .email .icon a,
.page_content .content .contact_way .email .icon img,
.page_content .content .contact_way .address .icon a,
.page_content .content .contact_way .address .icon img {
  margin: auto;
}

.page_content .content .contact_way .email p,
.page_content .content .contact_way .address p {
  font-weight: 600;
  display: inline-block;
}

.page_content .content .contact_way .address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.page_content .content .contact_way .address li {
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .page_content .content .contact_way .address li {
    font-size: 16px;
    line-height: 26px;
  }
}

.page_content .content .call_hours {
  margin-top: 32px;
}

.page_content .content .call_hours li {
  font-size: 18px;
  line-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .page_content .content .call_hours li {
    font-size: 16px;
    line-height: 26px;
  }
}

.page_content .content .call_hours li span {
  width: 8px;
  height: 8px;
  background: #aea9a8;
  border-radius: 50%;
  margin-right: 15px;
}

.page_content .content .call_hours ~ a {
  font-size: 18px;
  line-height: 30px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #26A9E0;
  margin-bottom: 20px;
  display: block;
}

@media (max-width: 767px) {
  .page_content .content .call_hours ~ a {
    font-size: 16px;
    line-height: 26px;
  }
}

.page_content .content .resource h3 {
  font-weight: 500;
  font-size: 32px;
  line-height: 45px;
  margin-bottom: 32px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .page_content .content .resource h3 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .page_content .content .resource h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}

.page_content .content .resource ul {
  margin-bottom: 52px;
}

@media (max-width: 915px) {
  .page_content .content .resource ul {
    margin-bottom: 30px;
  }
}

.page_content .content .resource ul li {
  position: relative;
  padding-left: 20px;
  font-size: 18px;
  line-height: 30px;
}

.page_content .content .resource ul li:not(:last-child) {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .page_content .content .resource ul li:not(:last-child) {
    margin-bottom: 15px;
  }
}

.page_content .content .resource ul li:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  left: 0;
  top: 12px;
  background: #aea9a8;
}

.page_content .content .resource ul li a {
  font-size: 18px;
  line-height: 30px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #114A97;
  word-break: break-word;
}

@media (max-width: 767px) {
  .page_content .content .resource ul li a {
    font-size: 16px;
    line-height: 26px;
  }
}

.page_content .terms_title,
.page_content .pp_title {
  font-weight: 500;
  font-size: 32px;
  line-height: 45px;
  margin-bottom: 32px;
}

@media (min-width: 768px) and (max-width: 915px) {
  .page_content .terms_title,
  .page_content .pp_title {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .page_content .terms_title,
  .page_content .pp_title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}

.page_content .terms_txt,
.page_content .pp_txt {
  margin-bottom: 32px;
}

@media (max-width: 915px) {
  .page_content .terms_txt,
  .page_content .pp_txt {
    margin-bottom: 20px;
  }
}

.page_content .terms_txt span,
.page_content .pp_txt span {
  display: block;
}

.page_content .terms_list,
.page_content .pp_list {
  margin-bottom: 32px;
}

@media (max-width: 915px) {
  .page_content .terms_list,
  .page_content .pp_list {
    margin-bottom: 20px;
  }
}

.page_content .terms_list > li,
.page_content .pp_list > li {
  position: relative;
  padding-left: 20px;
  font-size: 18px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .page_content .terms_list > li,
  .page_content .pp_list > li {
    padding-left: 15px;
    font-size: 16px;
    line-height: 26px;
  }
}

.page_content .terms_list > li:not(:last-child),
.page_content .pp_list > li:not(:last-child) {
  margin-bottom: 20px;
}

@media (max-width: 915px) {
  .page_content .terms_list > li:not(:last-child),
  .page_content .pp_list > li:not(:last-child) {
    margin-bottom: 15px;
  }
}

.page_content .terms_list > li:before,
.page_content .pp_list > li:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  left: 0;
  top: 12px;
  background: #aea9a8;
}

@media (max-width: 767px) {
  .page_content .terms_list > li:before,
  .page_content .pp_list > li:before {
    width: 6px;
    height: 6px;
    left: 0;
    top: 10px;
  }
}

.page_content .terms_list > li a,
.page_content .pp_list > li a {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #26A9E0;
  word-break: break-word;
}

.page_content .terms_list > li p,
.page_content .pp_list > li p {
  margin-bottom: 15px !important;
}

.page_content .terms_list > li p a,
.page_content .pp_list > li p a {
  word-break: break-word;
}

.page_content .pp_nested_list {
  margin-bottom: 20px;
}

@media (max-width: 915px) {
  .page_content .pp_nested_list {
    margin-bottom: 15px;
  }
}

.page_content .pp_nested_list li {
  padding-left: 30px;
  position: relative;
  font-size: 18px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .page_content .pp_nested_list li {
    font-size: 16px;
    line-height: 26px;
    padding-left: 20px;
  }
}

.page_content .pp_nested_list li:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  display: block;
  border-radius: 50%;
  left: 15px;
  top: 12px;
  background: #23201f;
}

@media (max-width: 767px) {
  .page_content .pp_nested_list li:before {
    left: 10px;
    top: 10px;
  }
}

.page_content .pp_nested_list li a {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #26A9E0;
  word-break: break-word;
}

.page_content .pp_list2 {
  margin-bottom: 32px;
}

@media (max-width: 915px) {
  .page_content .pp_list2 {
    margin-bottom: 20px;
  }
}

.page_content .pp_list2 li {
  position: relative;
  padding-left: 30px;
  font-size: 18px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .page_content .pp_list2 li {
    font-size: 16px;
    line-height: 26px;
    padding-left: 20px;
  }
}

.page_content .pp_list2 li:not(:last-child) {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .page_content .pp_list2 li:not(:last-child) {
    margin-bottom: 15px;
  }
}

.page_content .pp_list2 li:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  display: block;
  border-radius: 50%;
  left: 15px;
  top: 12px;
  background: #23201f;
}

@media (max-width: 767px) {
  .page_content .pp_list2 li:before {
    left: 10px;
    top: 10px;
  }
}

.page_content .pp_list2 li p {
  display: inline;
}

.page_content .terms_subtitle,
.page_content .pp_subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 32px;
}

@media (max-width: 915px) {
  .page_content .terms_subtitle,
  .page_content .pp_subtitle {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
  }

    .adv-page .main_text {
        padding: 0 2rem 2rem;
    }

    .adv-page .main-heading {
        padding: 0 1rem;
    }

    .adv-watch-now {
        margin: 2rem auto;
    }
}

@media (max-width: 915px) {
  .gray_footer_m {
    background-color: #F7F8FA;
  }
}
@media (min-width: 768px) {
  .surprise .free_books {
    margin-bottom: 22px;
  }
}

@media (max-width: 500px) {
    .adv-illustration {
        margin: 0 0 0.6rem 0.6rem;
    }

    .adv-heading {
        margin: 0 1rem 2rem;
        font-size: 20px;
        line-height: 1.5;
    }

    .adv-page .main_text {
        padding: 0 1rem 1rem;
    }
}

/*# sourceMappingURL=style.css.map */
