.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: 250px;
  object-fit: cover;
}
@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;
  }
}
.section-one {
  max-width: 1230px;
  margin: 30px auto;
  background: #F1F2F9;
  border-radius: 28px;
  padding: 60px;
  position: relative;
  margin-bottom: 86px;
}
@media (max-width: 991px) {
  .section-one {
    padding: 30px;
    margin-top: -20px;
    margin-bottom: 4rem;
  }
}
.section-one h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 64px;
  line-height: 77px;
  text-align: center;
  color: #D03438;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .section-one h2 {
    font-size: 30px;
    line-height: 24px;
  }
}
.section-one p.bold-text {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #26377D;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .section-one p.bold-text {
    font-size: 20px;
    line-height: 24px;
  }
}
.section-one p.bold-text-two {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  color: #D03438;
}
@media (max-width: 991px) {
  .section-one p.bold-text-two {
    font-size: 20px;
    line-height: 24px;
  }
}
.section-one p.text-alternative {
  color: var(--primary-color);
  font-size: 25px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .section-one p.text-alternative {
    font-size: 20px;
  }
}
.section-one img {
  margin: 26px auto;
  display: flex;
  justify-content: center;
  max-width: 100%;
}
@media (max-width: 991px) {
  .section-one img {
    max-width: 100px;
    margin: 1rem auto !important;
  }
}
@media (max-width: 991px) {
  .section-one .dr-name {
    font-size: 12px;
    line-height: 10px;
  }
}
.section-one p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #231F20;
}
@media (max-width: 991px) {
  .section-one p {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
}
.section-one .arrow-down {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  display: flex;
  justify-content: center;
}

.section-two {
  background: linear-gradient(180deg, #7686CB 0%, #26377D 100%);
  border-radius: 28px;
  padding: 46px 60px;
  max-width: 962px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  margin-bottom: 61px;
}
@media (max-width: 991px) {
  .section-two {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.section-two h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #FFFFFF;
  max-width: 700px;
  margin: 0px auto;
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .section-two h2 {
    font-size: 30px;
    line-height: 30px;
  }
}
.section-two p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
}
.section-two p strong {
  color: #FEECCA;
}
@media (max-width: 991px) {
  .section-two p {
    font-size: 16px;
    line-height: 24px;
  }
}

.section-three {
  padding: 62px 0;
  background-color: #F1F2F9;
}
@media (max-width: 991px) {
  .section-three {
    padding: 1rem 0 0 0;
  }
}
.section-three h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  text-transform: uppercase;
  color: #D03438;
  margin-bottom: 1rem;
  text-align: center;
}
.section-three h2 span {
  color: #26377D;
}
@media (max-width: 991px) {
  .section-three h2 {
    font-size: 30px;
    line-height: 30px;
  }
}
.section-three p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #231F20;
}
@media (max-width: 991px) {
  .section-three p {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
}
.section-three img {
  margin: 0 auto;
  display: flex;
}

.section-four {
  margin: 2rem 0;
  position: relative;
}
@media (max-width: 991px) {
  .section-four {
    margin: 0;
  }
}
.section-four::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 40%;
  width: 97%;
  height: 49px;
  background: #26377D;
  border-radius: 24.5px;
  z-index: -1;
}
@media (max-width: 991px) {
  .section-four::after {
    display: none;
  }
}
.section-four::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 60%;
  width: 95%;
  height: 49px;
  background: #D03438;
  border-radius: 24.5px;
  z-index: -1;
}
@media (max-width: 991px) {
  .section-four::before {
    display: none;
  }
}
.section-four .card-section {
  background: linear-gradient(180deg, #F3F3F3 0%, #FFFFFF 100%);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  position: relative;
  padding: 0;
  text-align: center;
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 991px) {
  .section-four .card-section {
    padding: 1rem;
  }
}
.section-four .card-section .vip-image {
  max-width: 200px;
}
@media (max-width: 991px) {
  .section-four .card-section .vip-image {
    max-width: 100px;
  }
}
.section-four .card-section::after {
  content: "";
  position: absolute;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  top: -6px;
  left: -6px;
  background: rgba(168, 163, 203, 0.168627451);
  border: 1px solid #D9D9D9;
  border-radius: 30px;
  z-index: 1;
  margin: 12px;
}
.section-four .card-section .row-card-section {
  padding: 38px 75px;
}
@media (max-width: 991px) {
  .section-four .card-section .row-card-section {
    padding: 1rem;
  }
}
.section-four .row {
  position: relative;
  z-index: 2;
}
.section-four h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #D03438;
}
@media (max-width: 991px) {
  .section-four h2 {
    font-size: 30px;
    line-height: 30px;
  }
}
.section-four p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #231F20;
}
@media (max-width: 991px) {
  .section-four p {
    font-size: 16px;
    line-height: 24px;
  }
}
.section-four p.font-claim {
  font-size: 40px;
  line-height: 42px;
}
@media (max-width: 991px) {
  .section-four p.font-claim {
    font-size: 30px;
    line-height: 32px;
  }
}
.section-four a {
  background: linear-gradient(180deg, #FEECCA 0%, #d2a856 100%);
  border: 3px solid #26377D;
  border-radius: 40px;
  font-family: "Inter";
  font-style: italic;
  font-weight: 900;
  font-size: 30px;
  line-height: 29px;
  text-align: center;
  color: #26377D;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3), -1px -1px 0px #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 20px 52px;
  width: fit-content;
  margin: 23px auto;
}
@media (max-width: 991px) {
  .section-four a {
    font-size: 25px;
    line-height: 20px;
    padding: 19px;
    align-items: center;
    width: 100%;
    justify-content: center;
  }
  .section-four a img {
    max-width: 40px;
  }
}
.section-four .prices {
  display: flex;
  justify-content: center;
  align-items: start;
  margin: 1rem auto;
}
.section-four .old-price,
.section-four .new-price {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 32px;
  line-height: 30px;
  text-align: center;
}
@media (max-width: 991px) {
  .section-four .old-price,
  .section-four .new-price {
    font-size: 23px;
  }
}
.section-four .old-price {
  color: #D03438;
  position: relative;
  font-size: 19px;
  line-height: 10px;
}
.section-four .old-price::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #D03438;
  transform: rotate(18deg);
}
.section-four .new-price {
  color: #3CB52C;
  font-size: 90px;
  line-height: 74px;
}
@media (max-width: 991px) {
  .section-four .new-price {
    font-size: 70px;
  }
}
.section-four .each-price {
  margin-top: 0.8rem;
}
.section-four .img-free-shipping {
  display: flex;
  margin: 20px auto;
}

.section-five {
  margin-bottom: 59px;
}
@media (max-width: 991px) {
  .section-five {
    margin-bottom: 1rem;
  }
}
.section-five .info-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #D9D9D9 100%);
  border: 1px solid #D9D9D9;
  border-radius: 34px;
  padding: 33px;
  height: 100%;
}
@media (max-width: 991px) {
  .section-five .info-card {
    margin-bottom: 15px;
    height: auto;
    padding: 1rem;
  }
}
.section-five h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  text-transform: uppercase;
  color: #26377D;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .section-five h2 {
    font-size: 30px;
    line-height: 30px;
  }
}
.section-five .icon-section {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 13px;
  margin: auto;
  margin-bottom: 24px;
}
.section-five .icon-section img {
  max-width: 80px;
  object-fit: contain;
}
.section-five .icon-section h3 {
  font-family: "Inter";
  font-style: italic;
  font-weight: 900;
  font-size: 24px;
  line-height: 29px;
  color: #26377D;
  max-width: 172px;
}
.section-five p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #231F20;
}
@media (max-width: 991px) {
  .section-five p {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
}

.section-six {
  margin-bottom: 83px;
}
@media (max-width: 991px) {
  .section-six {
    margin-bottom: 1rem;
  }
}
.section-six h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  text-transform: uppercase;
  color: #26377D;
  margin-bottom: 36px;
}
.section-six h2 span {
  color: #D03438;
}
@media (max-width: 991px) {
  .section-six h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 1rem;
  }
}
@media (min-width: 991px) {
  .section-six .col-lg-4 {
    margin-bottom: 30px;
  }
}
.section-six .card-ingredient {
  background-color: #F1F2F9;
  border-radius: 30px 30px 10px 10px;
  padding-bottom: 1rem;
  height: 100%;
}
@media (max-width: 991px) {
  .section-six .card-ingredient {
    margin-bottom: 15px;
    height: auto;
  }
}
.section-six .card-ingredient .ingredient-image {
  position: relative;
  border-radius: 30px;
  height: 273px;
}
@media (max-width: 991px) {
  .section-six .card-ingredient .ingredient-image {
    height: 130px;
  }
}
.section-six .card-ingredient .ingredient-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.section-six .card-ingredient .ingredient-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(141.24deg, rgba(255, 255, 255, 0) 45.76%, rgba(255, 255, 255, 0.53) 50.98%, rgba(255, 255, 255, 0.43) 64.02%, rgba(255, 255, 255, 0) 82.61%);
  border: 2px solid #D03438;
  border-radius: 30px;
}
.section-six .card-ingredient h3 {
  font-family: "Inter";
  font-style: italic;
  font-weight: 900;
  font-size: 24px;
  color: #000000;
  text-align: center;
  margin: 1rem auto;
  max-width: 80%;
}
@media (max-width: 991px) {
  .section-six .card-ingredient h3 {
    font-size: 18px;
    line-height: 24px;
  }
}
.section-six .card-ingredient p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  padding: 0 30px;
}
@media (max-width: 991px) {
  .section-six .card-ingredient p {
    font-size: 16px;
    line-height: 24px;
  }
}

.section-seven {
  background-color: #223D97;
  padding: 5px 0;
}
.section-seven img {
  margin: 0 auto;
  display: flex;
}

.section-eight {
  margin: 50px 0;
}
@media (max-width: 991px) {
  .section-eight {
    margin: 30px 0;
  }
  .section-eight .image-section-eight {
    margin-top: 30px;
  }
}
.section-eight h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  text-transform: uppercase;
  color: #26377D;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .section-eight h2 {
    font-size: 30px;
    line-height: 30px;
  }
}
.section-eight p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  max-width: 95%;
}
@media (max-width: 991px) {
  .section-eight p {
    font-size: 16px;
    max-width: 100%;
    text-align: center;
    margin-bottom: 1rem !important;
  }
}
@media (max-width: 991px) {
  .section-eight h3 {
    text-align: center;
    margin-top: 30px !important;
  }
}
.section-eight .testimonials-box {
  margin-top: 72px;
}
@media (max-width: 991px) {
  .section-eight .testimonials-box {
    margin-top: 1rem;
  }
}
.section-eight .testimonials-box h2 {
  color: #D03438;
}
.section-eight .testimonials-box .card-testimony {
  padding: 1rem;
  background: #FFFFFF;
  border: 4px solid #26377D;
  border-radius: 30px;
  height: 100%;
}
@media (max-width: 991px) {
  .section-eight .testimonials-box .card-testimony {
    padding: 20px;
    margin-bottom: 15px;
    height: auto;
  }
}
.section-eight .testimonials-box .card-testimony .before-after-image {
  height: 320px;
  width: 100%;
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .section-eight .testimonials-box .card-testimony .before-after-image {
    height: 200px;
  }
}
.section-eight .testimonials-box .card-testimony .before-after-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-eight .testimonials-box .card-testimony .profile-stars {
  display: flex;
  gap: 19px;
  align-items: center;
}
.section-eight .testimonials-box .card-testimony .image-profile {
  width: 140px;
  height: 140px;
  border-radius: 100%;
}
@media (max-width: 991px) {
  .section-eight .testimonials-box .card-testimony .image-profile {
    width: 150px;
    height: auto;
  }
}
.section-eight .testimonials-box .card-testimony .image-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}
.section-eight .testimonials-box .card-testimony .stars {
  display: inline-block;
}
.section-eight .testimonials-box .card-testimony .stars p {
  max-width: 100%;
  font-family: "Inter";
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  margin: 0;
}
@media (max-width: 991px) {
  .section-eight .testimonials-box .card-testimony .stars p {
    font-size: 16px;
    line-height: 20px;
    text-align: left;
  }
}
.section-eight .testimonials-box .card-testimony p {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  margin: 1rem 0;
  max-width: 100%;
}
@media (max-width: 991px) {
  .section-eight .testimonials-box .card-testimony p {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
  }
}
.section-eight .testimonials-box .card-testimony .verified {
  margin-top: 1rem;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #1B770E;
  display: flex;
  justify-content: end;
}
@media (max-width: 991px) {
  .section-eight .testimonials-box .card-testimony .verified {
    font-size: 14px;
    line-height: 24px;
  }
}

.section-nine .grey-section {
  background-color: #F1F2F9;
  padding-top: 57px;
  padding-bottom: 277px;
}
@media (max-width: 991px) {
  .section-nine .grey-section {
    padding-top: 1rem;
  }
}
.section-nine .grey-section h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 48px;
  line-height: 58px;
  text-align: center;
  text-transform: uppercase;
  color: #D03438;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .section-nine .grey-section h2 {
    font-size: 30px;
    line-height: 30px;
  }
}
.section-nine .grey-section p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #000000;
}
@media (max-width: 991px) {
  .section-nine .grey-section p {
    font-size: 16px;
    line-height: 24px;
  }
}
.section-nine .card-section {
  background: linear-gradient(180deg, #F3F3F3 0%, #FFFFFF 100%);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  position: relative;
  text-align: center;
  margin-top: -240px;
}
@media (max-width: 991px) {
  .section-nine .card-section {
    margin-top: -277px;
  }
}
.section-nine .card-section .content-card {
  padding: 0;
  position: relative;
}
@media (max-width: 991px) {
  .section-nine .card-section .content-card {
    padding: 0px;
  }
}
.section-nine .card-section .content-card::after {
  content: "";
  position: absolute;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  top: -6px;
  left: -6px;
  background: rgba(168, 163, 203, 0.168627451);
  border: 1px solid #D9D9D9;
  border-radius: 30px;
  z-index: 1;
  margin: 12px;
}
.section-nine .card-section .content-card p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #231F20;
}
.section-nine .card-section .content-card p.font-claim {
  font-size: 40px;
  line-height: 42px;
}
@media (max-width: 991px) {
  .section-nine .card-section .content-card p.font-claim {
    font-size: 30px;
    line-height: 32px;
  }
}
.section-nine .card-section .content-card h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #D03438;
}
.section-nine .card-section .content-card .vip-image {
  max-width: 200px;
}
@media (max-width: 991px) {
  .section-nine .card-section .content-card .vip-image {
    max-width: 100px;
  }
}
.section-nine .card-section .content-card .row-card-section {
  padding: 38px 75px;
}
@media (max-width: 991px) {
  .section-nine .card-section .content-card .row-card-section {
    padding: 1rem;
  }
}
.section-nine .card-section .header-card {
  position: relative;
  z-index: 2;
  padding: 22px;
  background: linear-gradient(180deg, #7686CB 0%, #26377D 100%);
  border-bottom: 3px solid #D03438;
  border-radius: 30px 30px 0px 0px;
}
.section-nine .card-section .header-card h2 {
  font-family: "Inter";
  font-style: italic;
  font-weight: 900;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #FEECCA;
  max-width: 532px;
  margin: auto;
}
@media (max-width: 991px) {
  .section-nine .card-section .header-card h2 {
    font-size: 24px;
    line-height: 30px;
  }
}
.section-nine .card-section a {
  background: linear-gradient(180deg, #FEECCA 0%, #d2a856 100%);
  border: 3px solid #26377D;
  border-radius: 40px;
  font-family: "Inter";
  font-style: italic;
  font-weight: 900;
  font-size: 30px;
  line-height: 29px;
  text-align: center;
  color: #26377D;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3), -1px -1px 0px #FFFFFF;
  text-decoration: none;
  display: flex;
  gap: 11px;
  padding: 20px 52px;
  width: fit-content;
  margin: 23px auto;
  align-items: center;
}
@media (max-width: 991px) {
  .section-nine .card-section a {
    font-size: 25px;
    line-height: 20px;
    padding: 19px;
    align-items: center;
    width: 100%;
    justify-content: center;
  }
  .section-nine .card-section a img {
    max-width: 40px;
  }
}
.section-nine .card-section .prices {
  display: flex;
  justify-content: center;
  align-items: start;
  margin: 1rem auto;
}
.section-nine .card-section .old-price,
.section-nine .card-section .new-price {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 32px;
  line-height: 30px;
  text-align: center;
}
@media (max-width: 991px) {
  .section-nine .card-section .old-price,
  .section-nine .card-section .new-price {
    font-size: 23px;
  }
}
.section-nine .card-section .old-price {
  color: #D03438;
  position: relative;
  font-size: 19px;
  line-height: 10px;
}
.section-nine .card-section .old-price::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #D03438;
  transform: rotate(18deg);
}
.section-nine .card-section .new-price {
  color: #3CB52C;
  font-size: 90px;
  line-height: 74px;
}
@media (max-width: 991px) {
  .section-nine .card-section .new-price {
    font-size: 70px;
  }
}
.section-nine .card-section .each-price {
  margin-top: 0.8rem;
}
.section-nine .card-section .img-free-shipping {
  display: flex;
  margin: 20px auto;
}
.section-nine .card-section .img-free-shipping {
  display: flex;
  margin: 20px auto;
}
.section-nine .card-section .second-content-card {
  position: relative;
  z-index: 2;
  margin-top: 51px;
  padding-bottom: 43px;
}
@media (max-width: 991px) {
  .section-nine .card-section .second-content-card {
    margin-top: 1rem;
    padding-bottom: 1rem;
  }
}
.section-nine .card-section .second-content-card h3 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #26377D;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .section-nine .card-section .second-content-card h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 1rem;
  }
}
.section-nine .card-section .second-content-card p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #000000;
}
@media (max-width: 991px) {
  .section-nine .card-section .second-content-card p {
    font-size: 16px;
    line-height: 24px;
  }
}
.section-nine .row {
  position: relative;
  z-index: 2;
}

.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: 20px;
}
@media (max-width: 991px) {
  .no-thanks-box {
    display: grid;
    gap: 0;
    margin: 30px 0 !important;
  }
  .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;
  }
}

.guarantee-box {
  background: #F9F9F9;
  border-radius: 30px;
  border: 1px #D9D9D9 solid;
  padding: 14px;
  position: relative;
  margin-bottom: 80px;
}
.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;
  }
}
@media (max-width: 991px) {
  .guarantee-box .layer .day-image {
    max-width: 100px;
  }
}
.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;
  }
  .checkmark svg {
    max-width: 30px;
  }
}
.product-image-card {
  max-width: 400px;
}

.steps-line {
  top: 21px;
}

@media (max-width: 991px) {
  header {
    padding: 0;
  }
  .steps-container {
    margin: 0;
  }
  .steps-line {
    left: 0;
    top: 11px;
  }
  .product-image-card {
    max-height: 200px;
    max-width: 100%;
  }
}

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