@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
.steps {
  background-color: var(--primary-color);
}
.steps .wizard {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: bth-wizard-steps;
  display: flex;
  flex-wrap: no-wrap;
  overflow: hidden;
  margin-bottom: 0px;
}
.steps .wizard .wizard__item-arrows:after, .steps .wizard .wizard__item-arrows:before {
  content: " ";
  display: block;
  position: absolute;
}
.steps .wizard .wizard__item-arrows:before {
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 20px solid white;
  top: -4px;
  left: -1px;
  z-index: 1;
}
@media (max-width: 991px) {
  .steps .wizard .wizard__item-arrows:before {
    border-top: 43px solid transparent;
    border-bottom: 44px solid transparent;
    border-left: 23px solid white;
    top: 5px;
    left: -1px;
  }
}
.steps .wizard .wizard__item-arrows:after {
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-left: 18px solid var(--fourth-color);
  top: 0;
  right: -17px;
  left: auto;
  z-index: 2;
}
@media (max-width: 991px) {
  .steps .wizard .wizard__item-arrows:after {
    border-top: 38px solid transparent;
    border-bottom: 38px solid transparent;
    border-left: 16px solid var(--fourth-color);
    top: 10px;
  }
}
.steps .wizard .wizard__item {
  background-color: var(--fourth-color);
  color: var(--black);
  counter-increment: bth-wizard-steps;
  flex-grow: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 50px;
  min-width: 30px;
  max-width: 100%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  flex-wrap: no-wrap;
  padding-left: 34px;
  padding-right: 8px;
  position: relative;
}
@media (max-width: 991px) {
  .steps .wizard .wizard__item {
    display: block;
    text-align: center;
  }
}
.steps .wizard .wizard__item:before {
  content: counter(bth-wizard-steps);
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  min-width: 30px;
  display: flex;
  width: 40px;
  height: 40px;
  background-color: white;
  margin-right: 8px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .steps .wizard .wizard__item:before {
    margin: 8px auto;
  }
}
.steps .wizard .wizard__item:first-child {
  padding-left: 8px;
}
.steps .wizard .wizard__item:first-child .wizard__item-arrows:before {
  display: none;
}
.steps .wizard .wizard__item:last-child .wizard__item-arrows:after {
  display: none;
}
.steps .wizard .wizard__item-desc {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.steps .wizard .wizard__item--active {
  background-color: var(--secondary-color);
  color: var(--white);
  min-width: auto;
}
.steps .wizard .wizard__item--active .wizard__item-arrows:after {
  border-left-color: var(--secondary-color);
}
.steps .wizard .wizard__item--active:before {
  color: var(--primary-color);
}
.steps .wizard .wizard__item--visited {
  background-color: #CFDFF2;
  color: #595959;
}
.steps .wizard .wizard__item--visited .wizard__item-arrows:after {
  border-left-color: #CFDFF2;
}
.steps .wizard .wizard__item--visited:before {
  color: var(--primary-color);
  content: "check";
  font-size: 18px;
  text-transform: none;
}
.steps .wizard .wizard__item--disabled,
.steps .wizard .wizard__item [disabled] {
  background-color: #F5F7FA;
  color: #c0c0c0;
  cursor: default;
}
.steps .wizard .wizard__item--disabled .wizard__item-arrows:after,
.steps .wizard .wizard__item [disabled] .wizard__item-arrows:after {
  border-left-color: #F5F7FA;
}
.steps .wizard .wizard__item--disabled:before,
.steps .wizard .wizard__item [disabled]:before {
  color: #c0c0c0;
  content: counter(bth-wizard-steps);
}

.steps-container {
  max-width: 461px;
  height: 114px;
  position: relative;
  margin: 1rem auto;
  margin-top: -37px;
}

.steps-line {
  position: absolute;
  top: 32px;
  left: -7px;
  z-index: 1;
}
@media (max-width: 991px) {
  .steps-line {
    left: 0;
    top: 22px;
  }
}
.steps-line svg {
  max-width: 100%;
}

.step-numbers {
  display: flex;
  gap: 50px;
  justify-content: space-around;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.step-numbers .step {
  width: 84px;
  height: 90px;
}
@media (max-width: 991px) {
  .step-numbers .step {
    width: 54px;
  }
}
.step-numbers .step .circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 7px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-family: Inter, sans-serif;
  font-style: italic;
  font-weight: 900;
  color: var(--gray) !important;
}
@media (max-width: 991px) {
  .step-numbers .step .circle {
    font-size: 16px;
    width: 40px;
    height: 40px;
    border: 4px solid;
  }
  .step-numbers .step .circle svg {
    max-width: 20px;
  }
}
.step-numbers .step .step-label {
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 20px;
  font-family: Inter, sans-serif;
  font-style: italic;
  font-weight: 700;
  color: #231F20;
}
@media (max-width: 991px) {
  .step-numbers .step .step-label {
    position: relative;
    font-size: 12px;
    text-align: left;
  }
}
.step-numbers .step-1 {
  left: 14px;
}
.step-numbers .step-1 .checkmark {
  position: absolute;
  top: 0px;
  left: 20px;
}
.step-numbers .step-2 {
  left: 194px;
}
.step-numbers .step-2 .circle {
  border-color: #D03438;
}
.step-numbers .step-3 {
  left: 363px;
}
.step-numbers .step-3 .circle {
  border-color: #D03438;
}

.title-section {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .title-section {
    margin-bottom: 1rem;
  }
}
.title-section h2 {
  color: #26377D;
  font-size: 48px;
  font-family: Inter;
  font-weight: 900;
  word-wrap: break-word;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}
@media (max-width: 991px) {
  .title-section h2 {
    font-size: 30px;
  }
}
.title-section h2 span {
  color: #D03438;
  font-family: Inter;
  font-weight: 900;
  word-wrap: break-word;
}
.title-section svg {
  margin: 0 auto;
  display: flex;
  margin-top: 1rem;
}
.title-section svg {
  max-width: 100%;
}

.product-card {
  text-align: center;
  box-sizing: border-box;
  background: linear-gradient(180deg, #FFFFFF 0%, #F0F0F0 100%);
  border: 3px solid #D9D9D9;
  border-radius: 37px;
  padding: 30px 46px;
}
@media (max-width: 991px) {
  .product-card {
    margin-bottom: 1rem;
    padding: 30px 10px;
  }
}
.product-card.center-product {
  background: #F1F2F9;
  border-radius: 37px;
  border: 4px #D8AC55 solid;
  padding: 50px;
  margin-top: -25px;
}
@media (max-width: 991px) {
  .product-card.center-product {
    margin-top: 0;
    padding: 30px 10px;
  }
}
.product-card.center-product h2 {
  color: rgb(25, 37, 82);
}
.product-card h2 {
  font-family: "Inter";
  font-style: italic;
  font-weight: 900;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #26377D;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3), -1px -1px 0px #FFFFFF;
}
.product-card h3 {
  text-transform: uppercase;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3), -1px -1px 0px #FFFFFF;
  color: #26377D;
}
.product-card.center-product h2 {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.product-card.center-product h2::after {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  width: 22px;
  height: 22px;
  background: url("../../img/star.png") center center no-repeat;
  background-size: cover;
}
.product-card.center-product h2::before {
  content: "";
  position: absolute;
  right: -30px;
  top: 0;
  width: 22px;
  height: 22px;
  background: url("../../img/star.png") center center no-repeat;
  background-size: cover;
}
.product-card .image-product {
  position: relative;
}
.product-card .image-product .stamp {
  width: 118.55px;
  height: 118.55px;
  position: absolute;
  top: 0;
  right: 0;
}
.product-card .image-product .stamp .text-stamp {
  transform: rotate(-12deg);
  transform-origin: top left;
  text-align: center;
  color: white;
  font-size: 20px;
  font-family: Inter;
  font-style: italic;
  font-weight: 900;
  word-wrap: break-word;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 53px;
  left: 17px;
  line-height: 24px;
}
.product-card .image-product img {
  height: 220px;
  object-fit: contain;
}
@media (max-width: 991px) {
  .product-card .image-product img {
    height: auto;
    width: 100%;
  }
}
.product-card .value {
  display: flex;
  position: relative;
  justify-content: center;
}
.product-card .value .price {
  text-align: center;
  color: #26377D;
  font-size: 96px;
  font-family: Inter;
  font-style: italic;
  font-weight: 900;
  word-wrap: break-word;
  text-shadow: -1px -1px 0px rgb(255, 255, 255);
  line-height: 92px;
}
.product-card .value .money {
  text-align: center;
  color: #26377D;
  font-size: 32px;
  font-family: Inter;
  font-style: italic;
  font-weight: 900;
  word-wrap: break-word;
  text-shadow: -1px -1px 0px rgb(255, 255, 255);
}
.product-card .value .per-bottle {
  color: #26377D;
  font-size: 16px;
  font-family: Inter;
  font-style: italic;
  font-weight: 400;
  word-wrap: break-word;
  text-shadow: -1px -1px 0px rgb(255, 255, 255);
  margin-left: 7px;
  margin-top: 25px;
}
.product-card .flag {
  width: 100%;
  min-height: 43px;
  position: relative;
  border-radius: 8px;
  text-align: center;
  color: white;
  font-size: 16px;
  font-family: Inter;
  font-style: italic;
  font-weight: 700;
  word-wrap: break-word;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0;
  text-transform: uppercase;
}
.product-card .flag .icon-check {
  width: 43px;
  height: 43px;
  left: 0px;
  top: 0px;
  position: absolute;
  background: white;
  border-radius: 9999px;
  border: 3px #ffffff solid;
}
@media (max-width: 991px) {
  .product-card .flag .icon-check {
    width: 30px;
    height: 30px;
    left: 6px;
    top: 7px;
  }
}
.product-card .discount {
  width: 100%;
  height: 29px;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}
.product-card .discount .old-value {
  text-align: center;
  color: #26377D;
  font-size: 24px;
  font-family: Inter;
  font-style: italic;
  font-weight: 400;
  word-wrap: break-word;
  position: relative;
}
.product-card .discount .new-value {
  text-align: center;
  color: #26377D;
  font-size: 24px;
  font-family: Inter;
  font-style: italic;
  font-weight: 700;
  word-wrap: break-word;
}
.product-card .btn-buy {
  position: relative;
  display: inline-block;
  text-decoration: none;
  width: 100%;
  background: linear-gradient(180deg, #FAF3D7 0%, #B3DEE5 100%);
  border-radius: 40px;
  border: 3px #26377D solid;
  background: linear-gradient(180deg, #FAF3D7 0%, #B3DEE5 100%);
  border-radius: 40px;
  border: 3px #26377D solid;
  text-align: center;
  color: #26377D;
  font-size: 30px;
  font-family: Inter;
  font-style: italic;
  font-weight: 900;
  word-wrap: break-word;
  text-shadow: -1px -1px 0px rgb(255, 255, 255);
  padding: 0.5rem 0;
}
@media (max-width: 991px) {
  .product-card .btn-buy {
    font-size: 26px;
    display: flex;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}
.product-card.center-product .btn-buy {
  background: linear-gradient(180deg, #FEECCA 0%, #E3B967 100%);
}
.product-card .credit-card {
  max-width: 188px;
  margin: 1rem auto;
}
.product-card .shipping {
  font-weight: 700;
  color: #D03438;
}

.no-thanks {
  color: var(--text-color);
}

.modal.downsell {
  background-color: var(--secondary-color);
}
.modal.downsell .modal-body {
  border: solid 10px #D03438;
  border-radius: 39px;
  background-color: #d4dcf8;
}
.modal.downsell .modal-content {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 39px;
}
.modal.downsell .modal-content h2 {
  color: var(--secondary-color);
  font-weight: 700;
  text-shadow: 0px 2px rgba(225, 211, 211, 0.64);
}
.modal.downsell .modal-content .golden {
  position: relative;
  display: inline-block;
  text-decoration: none;
  width: 100%;
  border-radius: 40px;
  border: 3px #26377D solid;
  border-radius: 40px;
  border: 3px #26377D solid;
  text-align: center;
  color: #26377D;
  font-size: 30px;
  font-family: Inter;
  font-style: italic;
  font-weight: 900;
  word-wrap: break-word;
  text-shadow: -1px -1px 0px rgb(255, 255, 255);
  padding: 0.5rem 0;
  background: linear-gradient(180deg, #FEECCA 0%, #E3B967 100%);
}
.modal.downsell .modal-content .no-thanks {
  background-color: #ede8e8;
  border-color: #cccccc;
  color: var(--text-color);
}
.modal.downsell .modal-content .text-free-shipping {
  color: #26377D;
}
.modal.downsell figure {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.modal.downsell figure img {
  max-width: 400px;
}
@media (max-width: 991px) {
  .modal.downsell figure img {
    max-width: 100%;
  }
}
.modal.downsell figure .guarantee-badge {
  position: absolute;
  max-width: 100px;
  top: 1em;
  right: 2vw;
}
.modal.downsell .per-bottle {
  color: var(--primary-color);
  font-size: 2em;
}
.modal.downsell .savings {
  color: var(--secondary-color);
  font-size: 1.6em;
}
.modal.downsell .modal-dialog {
  max-width: 100%;
}
.modal.downsell .no-thanks {
  font-size: 1em;
}

.modal.downsell#down-two {
  background-color: var(--third-color);
}

.modal.downsell#down-twoPremium {
  background-color: var(--third-color);
}

@media (max-width: 599px) {
  .modal.downsell figure .guarantee-badge {
    max-width: 20vw;
    right: 0;
    top: 0;
  }
  .modal.downsell .button-bg {
    font-size: 1em !important;
  }
  .modal.downsell h2 {
    font-size: 1.4em !important;
  }
  .modal.downsell .per-bottle {
    margin-top: 1em;
    font-size: 1.4em;
  }
  .modal.downsell .savings {
    font-size: 1.2em;
  }
}
.faq-box h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #D03438;
  position: relative;
  width: fit-content;
  margin: 36px auto;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}
@media (max-width: 991px) {
  .faq-box h2 {
    font-size: 24px;
    line-height: 24px;
  }
}
.faq-box h2::after {
  content: "";
  position: absolute;
  width: 88px;
  height: 4px;
  background-color: #D9D9D9;
  top: 50%;
  left: -100px;
}
@media (max-width: 991px) {
  .faq-box h2::after {
    display: none;
  }
}
.faq-box h2::before {
  content: "";
  position: absolute;
  width: 88px;
  height: 4px;
  background-color: #D9D9D9;
  top: 50%;
  right: -100px;
}
@media (max-width: 991px) {
  .faq-box h2::before {
    display: none;
  }
}
.faq-box .accordion-button {
  background: #26377D;
  border-bottom: 2px solid #D03438;
  border-radius: 10px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 6px;
}
@media (max-width: 991px) {
  .faq-box .accordion-button {
    font-size: 14px;
    line-height: 20px;
  }
}
.faq-box .accordion-button::after {
  filter: invert(1);
}
.faq-box .accordion-button:focus {
  box-shadow: none;
}
.faq-box .accordion-item {
  border: 0;
}
.faq-box .accordion-body {
  background-color: #F1F2F9;
  margin-top: -6px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #231F20;
  padding: 35px;
}
@media (max-width: 991px) {
  .faq-box .accordion-body {
    font-size: 14px;
    padding: 20px;
  }
}

footer {
  background-color: var(--primary-color);
  text-align: center;
  padding: 40px 0;
  background-color: #F9F9F9;
  padding: 40px 0;
}
footer p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: #666666;
}
footer ul {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
  padding-left: 0;
}
@media (max-width: 991px) {
  footer ul {
    margin: 1rem 0;
  }
}
@media (max-width: 991px) {
  footer ul {
    display: flow;
  }
}
footer ul li {
  list-style: none;
}
footer ul li a {
  display: inline-block;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: #666666;
  font-weight: 700;
  text-decoration: none;
}

:root {
  --primary-color: #7ad3f7; 
  --secondary-color: #1A3D59; 
  --third-color: #102430; 
  --fourth-color: #A0E8F9; 
  --primary-color-light: rgb(186, 233, 250);
  --primary-color-dark: #3a97b5; 
  --secondary-color-light: rgb(90, 144, 177); 
  --secondary-color-dark: rgb(26, 61, 89); 
  --contrast-color: #fff490; 
  --text-color: #000000;
  --light-color: #F1F1F1;
  --gray: #666666;
  --gray-secondary: #767676;
  --light: #1B2A38;
  --red: #D03438;
  --black: #231F20;
  --white: #FFFFFF;
  --blue: #1A3D59; 
}

* {
  font-family: "Inter";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto";
}

img {
  max-width: 100%;
}

header {
  background-color: var(--light);
  padding-top: 19px;
  padding-bottom: 49px;
}
header img {
  max-width: 230px;
  margin: 0 auto;
  display: flex;
}
@media (max-width: 991px) {
  header img {
    max-width: 152px;
  }
}

.guarantee-box {
  background: #F9F9F9;
  border-radius: 30px;
  border: 1px #D9D9D9 solid;
  padding: 14px;
  position: relative;
  margin-bottom: 60px;
}
.guarantee-box::after {
  content: "";
  position: absolute;
  left: -5%;
  top: 95px;
  width: 110%;
  height: 49px;
  background: #26377D;
  border-radius: 24.5px;
  z-index: -1;
}
@media (max-width: 991px) {
  .guarantee-box::after {
    display: none;
  }
}
.guarantee-box::before {
  content: "";
  position: absolute;
  left: -4%;
  top: 229px;
  width: 107%;
  height: 49px;
  background: #D03438;
  border-radius: 24.5px;
  z-index: -1;
}
@media (max-width: 991px) {
  .guarantee-box::before {
    display: none;
  }
}
.guarantee-box .layer {
  background: linear-gradient(180deg, #F3F3F3 0%, white 100%);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  padding: 61px 68px 100px 68px;
}
@media (max-width: 991px) {
  .guarantee-box .layer {
    padding: 16px;
    padding-bottom: 50px;
    text-align: center;
  }
}
.guarantee-box .layer h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 32px;
  line-height: 39px;
  color: #D03438;
}
@media (max-width: 991px) {
  .guarantee-box .layer h2 {
    font-size: 24px;
    line-height: 22px;
    margin: 1rem 0;
  }
}
.guarantee-box .layer p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #231F20;
}
@media (max-width: 991px) {
  .guarantee-box .layer p {
    font-size: 16px;
  }
}
.guarantee-box .logos {
  background: linear-gradient(180deg, #FFFFFF 0%, #F0F0F0 100%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 69.5px;
  padding: 25px 37px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -30px;
  width: fit-content;
  margin: 0 auto;
  gap: 22px;
}
@media (max-width: 991px) {
  .guarantee-box .logos {
    padding: 13px;
  }
}
.guarantee-box .logos img {
  max-width: 74px;
}
@media (max-width: 991px) {
  .guarantee-box .logos img {
    max-width: 40px;
  }
}

@media (max-width: 575px) {
  .container-guarantee {
    padding: 0 !important;
  }
}
.references-box {
  margin: 53px 0;
}
.references-box > .container {
  max-width: 1000px;
}
.references-box h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #231F20;
}
@media (max-width: 991px) {
  .references-box h2 {
    font-size: 22px;
  }
}
.references-box li {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 18px;
  color: #666666;
}
.references-box li span {
  font-weight: 600;
}

header {
  padding: 0;
}

p {
  margin-bottom: 0;
}

.steps-container {
  margin-top: 0;
  padding-top: 1rem;
  height: 100px;
}

#basic-bundle,
#good-bundle,
#premium-bundle {
  display: none;
}

#video {
  position: relative;
  padding: 0px 0 30px 0 !important;
  background-image: radial-gradient(var(--secondary-color-light), var(--secondary-color));
}
#video .title-section.new-title-vsl h2 {
  font-size: 35px !important;
  color: #fff;
  padding: 0;
  margin: 1rem 0;
  text-shadow: 2px 2px 2px rgba(231, 211, 211, 0.25);
}
@media (max-width: 991px) {
  #video .title-section.new-title-vsl h2 {
    font-size: 20px !important;
  }
}
#video .title-section.new-title-vsl h2 span {
  color: var(--contrast-color);
}
#video .title-section.new-title-vsl h3 {
  color: #fff;
  font-size: 16px;
}
#video .title-section.new-title-vsl p {
  color: #fff;
}
#video .title-section.new-title-vsl svg {
  max-width: 100%;
}
#video .video {
  -webkit-box-shadow: 0px 0px 10px 0px rgb(255, 255, 255);
  -moz-box-shadow: 0px 0px 10px 0px rgb(255, 255, 255);
  box-shadow: 0px 0px 10px 0px rgb(255, 255, 255);
  border: 3px solid white;
  border-radius: 1em;
  overflow: hidden;
}

.title-vsl {
  background: #17214c;
  text-align: center;
  position: relative;
  padding: 1rem 0;
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .title-vsl {
    margin-bottom: 2rem;
  }
}
.title-vsl h2 {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #FFFFFF;
}
.title-vsl h2 span {
  color: #FF9FA2;
}
@media (max-width: 991px) {
  .title-vsl h2 {
    line-height: 25px;
  }
}
.title-vsl svg {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .title-vsl svg {
    bottom: -22px;
  }
}

.no-thanks-box {
  background: #F9F9F9;
  border: 1px solid #D9D9D9;
  border-radius: 30px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 1rem;
}
@media (max-width: 991px) {
  .no-thanks-box {
    display: grid;
    gap: 0;
  }
  .no-thanks-box img {
    display: none;
  }
}
.no-thanks-box a {
  font-family: "Inter";
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  padding: 12px 45px;
  white-space: nowrap;
  border-radius: 39px;
  background-color: #D9D9D9;
}
@media (max-width: 991px) {
  .no-thanks-box a {
    display: inline-block;
    margin-top: 1rem;
  }
}

.button-bg.promo {
  position: relative;
  display: inline-block;
  text-decoration: none;
  width: 100%;
  background: linear-gradient(180deg, #FEECCA 0%, #E3B967 100%);
  border-radius: 40px;
  border: 3px #26377D solid;
  border-radius: 40px;
  border: 3px #26377D solid;
  text-align: center;
  color: #26377D;
  font-size: 30px;
  font-family: Inter;
  font-style: italic;
  font-weight: 900;
  word-wrap: break-word;
  text-shadow: -1px -1px 0px rgb(255, 255, 255);
  padding: 0.5rem 0;
}

.blue-box {
  position: relative;
  border-radius: 28px !important;
}
.blue-box::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #26377D 0%, #7686CB 100%);
  left: 0;
  z-index: 1;
  border-radius: 28px;
}

.thinwaist {
  position: relative;
}
.thinwaist::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(38, 55, 125, 0.81);
  z-index: 1;
}

.congrats-box {
  background: #e2edf5;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 30px 30px 0 0;
  margin-top: 1rem;
  padding: 1rem 0;
}
.congrats-box.congrats-box-premium {
  background-color: transparent;
  margin-top: 0;
  padding: 1rem 0;
}
.congrats-box.congrats-box-premium span {
  color: #173cd0;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}

@media (max-width: 991px) {
  #contentBlack .steps-container {
    margin: 0 auto !important;
    height: 82px;
    margin-top: 0 !important;
  }
  .img-bottle-mobile {
    max-width: 100% !important;
  }
}
/*Bonus*/
#bonus {
  /* background-image: linear-gradient(45deg, var(--primary-color-light), var(--primary-color)); */
  max-width: 100%;
  overflow: hidden;
  /* background-image: radial-gradient(var(--secondary-color-light), var(--secondary-color)); */
  background-color: #fff;
}

#bonus h2 {
  color: var(--primary-color);
  text-align: center;
  font-size: 37px;
  font-weight: 700;
  text-shadow: 0px 2px rgba(0, 0, 0, 0.6392156863);
}

@media (max-width: 991px) {
  #bonus h2 {
    font-size: 30px;
  }
}
#bonus p.subtitle {
  font-size: 18px;
  line-height: 20px;
  color: var(--primary-color);
  text-align: center;
  font-style: italic;
  margin-top: 0px;
  margin-bottom: 0px;
}

#bonus .ebook {
  margin-top: 150px;
  width: 100%;
  border-radius: 12px;
  padding: 10px;
  background: var(--secondary-color);
  text-align: center;
  height: calc(100% - 150px);
  border: 5px double rgba(255, 255, 255, 0.5568627451);
}

#bonus .ebook p {
  font-size: 17px;
  line-height: 22px;
  text-align: center;
  color: #fff;
  margin: 1rem 0;
}

#bonus .ebook .strikeout {
  position: relative;
}

#bonus .ebook .strikeout::after {
  border-bottom: 0.12em solid #ff0202;
  content: "";
  left: 0;
  margin-top: -0.06em;
  position: absolute;
  right: 0;
  top: 54%;
  transform: rotate(-10deg);
}

#bonus .ebook .s7lhding2 {
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  margin-top: 15px;
  text-shadow: 0px 2px rgba(0, 0, 0, 0.6392156863);
}

#bonus .ebook .s7lhding2 span.span1 {
  font-weight: bold;
  text-transform: uppercase;
  color: #ffd200;
}

#bonus .ebook .s7ltxt {
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  margin-top: 11px;
  color: #fff;
}

#bonus .ebook h3 {
  color: #fff;
  font-weight: 900;
  font-size: 32px;
}

#bonus .img-mockup {
  position: relative;
  max-width: 200px;
  margin: 0px auto;
  margin-top: -150px;
}

#bonus .img-mockup img {
  max-width: 200px;
  margin: 0 auto;
  display: flex;
}

#bonus .img-mockup .happy-womans {
  max-width: 400px;
}
@media (max-width: 991px) {
  #bonus .img-mockup .happy-womans {
    max-width: 100%;
  }
}

#bonus .img-mockup .bonusbx {
  height: 133px;
  width: 134px;
  background: transparent url("../../img/ups/selo3.png") center top no-repeat;
  background-size: 100%;
  position: absolute;
  right: -50%;
  top: -10px;
  padding: 25px 0 0 0;
}

#bonus .img-mockup .bonusbx .bonusbx-txt1,
#bonus .img-mockup .bonusbx .bonusbx-txt2,
#bonus .img-mockup .bonusbx .bonusbx-txt3 {
  font-weight: bold;
  font-size: 25px;
  line-height: 25px;
  color: #ffd200;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  text-shadow: 0px 2px rgba(0, 0, 0, 0.6392156863);
  margin: 0;
}

#bonus .img-mockup .bonusbx .bonusbx-txt2 {
  font-size: 20px;
  color: #fff;
}

#bonus .img-mockup .bonusbx .bonusbx-txt3 {
  font-size: 40px;
  line-height: 36px;
}

#bonus-headline .subtitle.fw-bold {
  font-size: 25px;
}

.cta {
  position: relative;
  display: inline-block;
  text-decoration: none;
  width: 100%;
  border-radius: 40px;
  border: 3px #26377D solid;
  background: linear-gradient(180deg, #FEECCA 0%, #E3B967 100%);
  border-radius: 40px;
  border: 3px #26377D solid;
  text-align: center;
  color: #26377D;
  font-size: 30px;
  font-family: Inter;
  font-style: italic;
  font-weight: 900;
  word-wrap: break-word;
  text-shadow: -1px -1px 0px rgb(255, 255, 255);
  padding: 0.5rem 0;
}

#testimonials .card {
  background-color: #f6f6f6;
  border: 0;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 2em;
  text-align: left;
}

#testimonials .card h4 {
  color: var(--primary-color);
  font-weight: 700;
  text-align: left;
}

#testimonials .verfied {
  /* background-color: #00845d; */
  width: fit-content;
  /* padding: 0.1em 0.75em; */
  border-radius: 3em;
  margin-bottom: 0;
  color: #ff6f00;
  display: flex;
  font-weight: 700;
  gap: 5px;
  align-items: center;
}

#testimonials .purchased {
  color: #565959;
  font-weight: 600;
  font-size: 14px;
  font-weight: 400;
}

#testimonials .purchase {
  display: flex;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0;
  border-bottom: none;
}

#testimonials .purchase img {
  max-width: 80px;
}

#testimonials .purchase p {
  margin: 0;
  font-size: 20px;
}

#testimonials .user {
  max-width: 200px;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  #testimonials .user {
    float: inherit;
  }
}
#testimonials .user img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#testimonials .helpful-report {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

#testimonials .helpful-report .helpful {
  border: solid 1px var(--text-color);
  border-radius: 30px;
  padding: 5px 15px;
}

#testimonials .helpful-report .share {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

#testimonials .helpful-report .report {
  color: #979797;
}

.count-offer {
  font-size: 35px;
}
@media (max-width: 991px) {
  .count-offer {
    font-size: 25px;
  }
}

.value-old-vip {
  position: relative;
}
.value-old-vip::after {
  border-bottom: 0.12em solid #000;
  content: "";
  left: 0;
  margin-top: -0.06em;
  position: absolute;
  right: 0;
  top: 54%;
  transform: rotate(-10deg);
}

.subtitle-testimonials {
  text-align: center;
  font-size: 25px;
}

#testimonials .purchase img {
  max-width: 30px;
}

/*# sourceMappingURL=ups_v3.css.map */
