/* Fonts */

@font-face {
  font-family: "firago-bookitalic";
  src: url("../fonts/firago-bookitalic.woff2") format("woff2"),
    url("../fonts/firago-bookitalic.woff") format("woff"),
    url("../fonts/firago-bookitalic.ttf") format("truetype");
  font-weight: 10;
  font-style: normal;
}

@font-face {
  font-family: "firago-italic";
  src: url("../fonts/firago-italic.woff2") format("woff2"),
    url("../fonts/firago-italic.woff") format("woff"),
    url("../fonts/firago-italic.ttf") format("truetype");
  font-weight: 10;
  font-style: normal;
}

@font-face {
  font-family: "firago-mediumitalic";
  src: url("../fonts/firago-mediumitalic.woff2") format("woff2"),
    url("../fonts/firago-mediumitalic.woff") format("woff"),
    url("../fonts/firago-mediumitalic.ttf") format("truetype");
  font-weight: 10;
  font-style: normal;
}

@font-face {
  font-family: "firago-semibolditalic";
  src: url("../fonts/firago-semibolditalic.woff2") format("woff2"),
    url("../fonts/firago-semibolditalic.woff") format("woff"),
    url("../fonts/firago-semibolditalic.ttf") format("truetype");
  font-weight: 10;
  font-style: normal;
}

@font-face {
  font-family: "firago-bolditalic";
  src: url("../fonts/firago-bolditalic.woff2") format("woff2"),
    url("../fonts/firago-bolditalic.woff") format("woff"),
    url("../fonts/firago-bolditalic.ttf") format("truetype");
  font-weight: 10;
  font-style: normal;
}

@font-face {
  font-family: "firago-heavyitalic";
  src: url("../fonts/firago-heavyitalic.woff2") format("woff2"),
    url("../fonts/firago-heavyitalic.woff") format("woff"),
    url("../fonts/firago-heavyitalic.ttf") format("truetype");

  font-style: normal;
}

@font-face {
  font-family: "firago-extrabolditalic";
  src: url("../fonts/firago-extrabolditalic.woff2") format("woff2"),
    url("../fonts/firago-extrabolditalic.woff") format("woff"),
    url("../fonts/firago-extrabolditalic.ttf") format("truetype");
  font-weight: 10;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  font-family: "firago-italic";
  background: #e1d9cc;
  color: #1e1e1e;
  font-feature-settings: "case" on;
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

/* Prevent horizontal overflow on mobile */

/* Ensure container boxes don’t overflow */
.section1-div,
.section2-div,
.section3-div,
.section4-div,
.section5-div,
.section1,
.section3,
.section5,
.form-section,
.questions-div,
.reviews-div {
  box-sizing: border-box;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

header {
  background: #e8ebf9;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  padding: 40px 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
header img {
  height: 60px;
}

header .header-button {
  background: #3a6bff;
  font-family: "firago-mediumitalic";
  text-decoration: none;
  font-size: 20px;
  border-radius: 30px;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-feature-settings: "case" on;
}

.icon-box {
  will-change: transform, opacity;
  overflow-anchor: none;
}

.header-button:hover {
  background: #c5294a;
}

.white-box {
  background: white;
  padding: 30px;
  border-radius: 35px;
  opacity: 0;
  transition: all 1.8s ease 0.1s;
  transform: translateX(0px) translateY(150px);
  background: white;
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 20px;
  margin-bottom: 70px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.white-box ._active {
  opacity: 100%;
  transform: translate(0px, 0px);
}

@media (max-width: 1000px) {
  .white-box {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 30px;
  }

  .first-text {
    position: static;
    margin-left: 0;
    margin-top: 0;
    width: 100%;
    text-align: center;
  }

  .first-text h2 {
    font-size: 18px;
  }

  .first-text h3 {
    font-size: 14px;
  }

  .first-text-desc {
    font-size: 13px;
    padding: 15px;
  }

  .varikoz1 {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
}

.fixed-order-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "firago-mediumitalic";
  font-size: 24px;
  font-feature-settings: "case" on;
  text-decoration: none;
  background: #3a6bff;
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 30px;
  animation: pulse 2s infinite;
  z-index: 999;
}

.fixed-order-btn:hover {
  background: #c5294a;
  animation: pulse-hover 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(58, 107, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(58, 107, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(58, 107, 255, 0);
  }
}

@keyframes pulse-hover {
  0% {
    box-shadow: 0 0 0 0 rgba(197, 41, 74, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(197, 41, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(197, 41, 74, 0);
  }
}

.hidden {
  display: none;
}

/* Section 1 */

.flex1 {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 90px;
  opacity: 0;
  transition: all 1.8s ease 0.1s;
}

.flex1._active {
  opacity: 100%;
}

.column11 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  margin-bottom: 80px;
}

.discount-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 0px;
}

.discount-bubble {
  width: 80px;
  height: 80px;
  border-radius: 50% 50% 0 50%;
  font-size: 25px;
  font-family: "firago-bolditalic";
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  animation: popPulse 1.5s infinite;
}

.discount-label {
  text-align: left;
  font-size: 24px;
  font-family: "firago-bolditalic";
  line-height: 1.2;
  color: #122578;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
}

@keyframes popPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.85;
  }
}

.sale {
  color: #ffffff;
  background-color: #ff007a;
  font-size: 30px;
  padding: 6px 10px;
  font-family: "firago-mediumitalic";
  border-radius: 12px;
}

.section1 {
  background-color: #ffffff;
  padding-bottom: 50px;
  padding-top: 0px;
}

.section1-div {
  width: 100%;
  padding: 40px 0px;
  max-width: 1200px;
  margin: auto;
  gap: 100px;
}

.section2-div {
  width: 100%;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  gap: 100px;
}

.section4-div {
  width: 100%;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  gap: 100px;
}

.section1 h1 {
  margin-left: 30px;
  font-size: 42px;
  line-height: 46px;
  font-family: "firago-mediumitalic";
  color: #172f9b;
  margin-bottom: 20px;
}

.section1 p {
  margin-left: 30px;
  font-size: 24px;
  margin-top: 0px;
  font-family: "firago-bookitalic";
  color: #353535;
}

.section1 .to-form {
  margin-left: 30px;
  font-size: 24px;
  margin-top: 0px;
  font-family: "firago-bookitalic";
  color: #353535;
}

.section1 .to-form {
  cursor: pointer;
  color: #ffffff;
  background-image: linear-gradient(
    to right,
    #ff512f 0%,
    #dd2476 51%,
    #ff512f 100%
  );
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 25px;
  outline: none;
  background-size: 200% auto;
  display: block;
  padding: 20px;
  width: 25vw;
  text-align: center;
  transition: 0.5s;
  position: relative;
  margin-left: 30px;
  border: none;
  font-family: "firago-mediumitalic";
  font-feature-settings: "case" on;
}

.section1 .to-form:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.section1 .texts {
  margin-top: 50px;
  opacity: 0;
  transition: all 1.8s ease 0.1s;
  transform: translateX(0px) translateY(150px);
}

.section1 .texts._active {
  opacity: 100%;
  transform: translate(0px, 0px);
}

.section1 .texts-p {
  font-size: 22px;
  font-family: "firago-bookitalic";
  color: #353535;
}

.section1 .texts-h2 {
  font-size: 44px;
  font-family: "firago-bolditalic";
  color: #353535;
  margin-top: 0px;
  line-height: 52px;
}

.offer-up {
  width: 75%;
  margin-left: 70px;
  margin-top: 25px;
}

/* section2 */

.main-problems {
  padding-top: 50px;
  padding-bottom: 100px;
}

.main-problems h2 {
  margin-top: 10px;
  font-size: 42px;
  font-family: "firago-mediumitalic";
  color: #172f9b;
  margin-bottom: 50px;
  text-align: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.main-problems h3 {
  font-size: 25px;
  font-family: "firago-semibolditalic";
  margin-bottom: 0px;
  margin-top: 42px;
  text-align: center;
  color: #353535;
}

.main-problems p {
  font-size: 18px;
  font-family: "firago-bookitalic";
  color: #353535;
  text-align: center;
}

.main-problems .icon-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  text-align: left;
  opacity: 0;
  transition: all 1.8s ease 0.1s;
  transform: translateX(0px) translateY(150px);
}

.main-problems .icon-box._active {
  opacity: 100%;
  transform: translate(0px, 0px);
  cursor: pointer;
}

.main-problems .icon-box._active:hover {
  transition: all 0.3s ease 0.1s;
  transform: translate(0px, -10px);
}

.problem-image-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.problem-img {
  display: block;
  width: 100% !important;
  border-radius: 12px;
  text-align: center;
}

.pulsing-x {
  position: absolute;
  bottom: -34px; /* lift it into the image */
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  color: red;
  animation: pulseX 1s infinite;
  pointer-events: none;
}

@keyframes pulseX {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) scale(1.3);
    opacity: 0.6;
  }
}

/* Section 2 */

.section2 p {
  font-size: 28px;
  line-height: 36px;
  font-family: "firago-mediumitalic";
  color: #353535;
}

.white-box1 {
  background: white;
  padding: 30px;
  border-radius: 35px;
  transition: all 1.8s ease 0.1s;
  transform: translateX(0px) translateY(150px);
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 20px;
  margin-bottom: 70px;
}

.white-box._active {
  opacity: 100%;
  transform: translate(0px, 0px);
}

/* Section 3 */

.section3 {
  padding-top: 50px;
  padding-bottom: 80px;
  background-color: #ffffff;
  opacity: 0;
  transition: all 1.8s ease 0.1s;
}

.section3-div {
  width: 100%;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.section3 .column1 {
  flex: 1;
  justify-content: center;
}

.section3 .doctor-name {
  margin-top: 10px;
  font-size: 18px;
  font-family: "firago-bookitalic";
  color: #282828;
  text-align: center;
  opacity: 0.7;
}

.section3 .column2 {
  flex: 2;
  justify-content: center;
}

.section3 .texts-h2 {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 36px;
  width: 80%;
}

.section3._active {
  opacity: 1;
}

.section3 p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-family: "firago-bookitalic";
  color: #353535;
}

.section3 img {
  width: 100%;
  border-radius: 20px;
}

/* Section 4 */

.false-methods {
  padding-top: 50px;
  padding-bottom: 100px;
}

.false-methods h3 {
  font-size: 25px;
  font-family: "firago-semibolditalic";
  margin-bottom: 0px;
  text-align: center;
  color: #353535;
}

.false-methods h2 {
  margin-top: 10px;
  font-size: 42px;
  font-family: "firago-mediumitalic";
  color: #191919;
  margin-bottom: 50px;
  text-align: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.false-methods p {
  position: relative;
  padding-left: 25px;
  text-align: left;
  font-size: 18px;
  font-family: "firago-bookitalic";
  color: #353535;
}

@keyframes slightPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

.false-methods .x-icon {
  position: absolute;
  left: 3px;
  top: 1px;
  color: red;
  font-size: 20px;
  animation: slightPulse 1s infinite;
}

.false-methods .icon-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  opacity: 0;
  transition: all 1.8s ease 0.1s;
  transform: translateX(0px) translateY(150px);
}

.icon-box._active {
  opacity: 100%;
  transform: translate(0px, 0px);
  cursor: pointer;
}

.icon-box._active:hover {
  transition: all 0.3s ease 0.1s;
  transform: translate(0px, -10px);
}

.false-methods .icon-box img {
  position: relative;
  width: 100%;
  border-radius: 22px;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
}

.wish {
  margin-top: 100px !important;
  text-align: center;
  font-size: 25px;
  color: #191919;
  opacity: 0;
  transition: all 1.8s ease 0.5s;
  transform: translateX(0px) translateY(0px);
}

.wish._active {
  opacity: 100%;
  transform: translate(0px, 0px);
}

/* section2 */

.main-benefits {
  padding-top: 50px;
  padding-bottom: 100px;
}

.main-benefits h2 {
  margin-top: 10px;
  font-size: 42px;
  font-family: "firago-mediumitalic";
  color: #191919;
  margin-bottom: 50px;
  text-align: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.main-benefits h3 {
  font-size: 25px;
  font-family: "firago-semibolditalic";
  margin-bottom: 0px;
  margin-top: 42px;
  text-align: center;
  color: #353535;
}

.main-benefits p {
  font-size: 18px;
  font-family: "firago-bookitalic";
  color: #353535;
  text-align: center;
}

.main-benefits .icon-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  text-align: left;
  opacity: 0;
  transition: all 1.8s ease 0.1s;
  transform: translateX(0px) translateY(150px);
}

.main-benefits .icon-box._active {
  opacity: 100%;
  transform: translate(0px, 0px);
  cursor: pointer;
}

.main-benefits .icon-box._active:hover {
  transition: all 0.3s ease 0.1s;
  transform: translate(0px, -10px);
}

.benefit-image-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.benefit-img {
  display: block;
  width: 100% !important;
  border-radius: 12px;
  text-align: center;
}

.pulsing-tick {
  position: absolute;
  bottom: -34px; /* lift it into the image */
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  color: #6bcd08;
  animation: pulseX 1s infinite;
  pointer-events: none;
}

@keyframes pulseX {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) scale(1.3);
    opacity: 0.6;
  }
}

.section5 {
  background-color: #ffffff;
  padding-bottom: 50px;
  transition: all 1.8s ease 0.1s;
  opacity: 0;
}

.section5._active {
  opacity: 1;
}

.section5-div {
  width: 100%;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  gap: 100px;
}

.section5-flex {
  display: flex;
  margin-top: 50px;
  gap: 50px;
}

.section5-flex1 {
  margin-top: 30px;
  flex: 1.8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  margin-bottom: 50px;
}

.section5-flex2 {
  flex: 1;
}

.center-image {
  width: 90%;
}

.section5 h1 {
  font-size: 38px;
  font-family: "firago-bolditalic";
  color: #172f9b;
  margin-bottom: 20px;
}

.section5 h3 {
  font-size: 26px;
  margin-top: 0px;
  margin-bottom: 2px;
  font-family: "firago-mediumitalic";
  color: #353535;
}

.section5 h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.h3-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.section5 p {
  font-size: 20px;
  margin-top: 0px;
  font-family: "firago-bookitalic";
  color: #353535;
}

.section5 .texts {
  margin-top: 50px;
  opacity: 0;
  transition: all 1.8s ease 0.1s;
  transform: translateX(0px) translateY(150px);
}

.section5 .texts._active {
  opacity: 100%;
  transform: translate(0px, 0px);
}

.section5 .texts-p {
  font-size: 22px;
  font-family: "firago-bookitalic";
  color: #353535;
}

.section5 .texts-h2 {
  font-size: 44px;
  font-family: "firago-bolditalic";
  color: #353535;
  margin-top: 0px;
  line-height: 52px;
}

/* Section 4 */

.instruction {
  padding-top: 50px;
}

.instruction h3 {
  font-size: 25px;
  font-family: "firago-bookitalic";
  margin-bottom: 0px;
  color: #353535;
}

.instruction h2 {
  margin-top: 10px;
  font-size: 47px;
  font-family: "firago-mediumitalic";
  color: #191919;
  margin-bottom: 50px;
}

.instruction p {
  font-size: 20px;
  font-family: "firago-bookitalic";
  color: #353535;
}

.icon-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  text-align: left;
  opacity: 0;
  transition: all 1.8s ease 0.1s;
  transform: translateX(0px) translateY(150px);
}

.icon-box._active {
  opacity: 100%;
  transform: translate(0px, 0px);
  cursor: pointer;
}

.icon-box._active:hover {
  transition: all 0.3s ease 0.1s;
  transform: translate(0px, -10px);
}

.icon-box img {
  width: 50px;
  margin-bottom: 0px;
}

.questions {
  background-color: #ffffff;
  padding-top: 20px;
  padding-bottom: 60px;
}

.questions-div {
  width: 100%;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.questions .texts-h2 {
  font-size: 47px;
  color: #191919;
  font-family: "firago-mediumitalic";
}

.question-p {
  font-size: 24px;
  color: #191919;
  font-family: "firago-mediumitalic";
  margin-top: 20px;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition: all 1.8s ease 0.1s;
  transform: translateX(0px) translateY(150px);
}

.question-p._active {
  opacity: 100%;
  transform: translate(0px, 0px);
  cursor: pointer;
}

.h4-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.answer {
  font-size: 20px;
  color: #191919;
  font-family: "firago-bookitalic";
  margin-top: 5px;
  margin-bottom: 0px;
  opacity: 0;
  transition: all 1.8s ease 0.1s;
  transform: translateX(0px) translateY(150px);
}

.answer._active {
  opacity: 100%;
  transform: translate(0px, 0px);
  cursor: pointer;
}

/* Section 4 */

.form-section {
  width: 100%;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  padding-top: 70px;
  padding-bottom: 60px;
  transition: all 2s ease 0.2s;
  opacity: 0;
}

.form-section._active {
  opacity: 1;
}

.form-section .form-product {
  width: 80%;
  border-radius: 20px;
  margin-left: 80px;
}

.form-title {
  font-size: 47px;
  font-family: "firago-mediumitalic";
  color: #172f9b;
  text-align: center;
}

.form-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-section h2 {
  font-size: 26px;
  font-family: "firago-mediumitalic";
  text-align: center;
  color: #353535;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 5px;
}

.upper-form {
  font-family: "firago-bookitalic";
  font-size: 18px;
  color: #353535;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: 0px;
}

input[type="text"] {
  color: #1f1f1f;
  font-family: "firago-bookitalic";
  font-size: 22px;
  padding: 12px 20px;
  margin: 8px 0;
  border-radius: 25px;
  box-sizing: border-box;
  border: none;
  text-align: left;
  display: block;
  margin-left: auto;
  margin-right: auto;

  position: relative;
  width: 520px;
  height: 80px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  font-feature-settings: "case" on;
}

input[type="tel"] {
  color: #1f1f1f;
  font-family: "firago-bookitalic";
  font-size: 22px;
  padding: 12px 20px;
  margin: 8px 0;
  border-radius: 25px;
  box-sizing: border-box;
  border: none;
  text-align: left;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  position: relative;
  width: 520px;
  height: 80px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  font-feature-settings: "case" on;
}

::placeholder {
  color: #808080;
  font-family: "firago-bookitalic";
  font-size: 22px;
  font-feature-settings: "case" on;
}

.form-section button {
  cursor: pointer;
  color: #ffffff;
  background-image: linear-gradient(
    to right,
    #ff512f 0%,
    #dd2476 51%,
    #ff512f 100%
  );
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 25px;
  outline: none;
  background-size: 200% auto;
  display: block;
  text-align: center;
  padding: 20px;
  transition: 0.5s;
  position: relative;
  width: 520px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  border: none;
  font-family: "firago-mediumitalic";
  font-feature-settings: "case" on;
}

.form-section button:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.smalltext {
  text-align: center;
  color: #494949;
}

.price {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  gap: 1.2rem;
  padding-top: 0;
  margin-top: 20px;
}

.oldprice {
  font-family: "firago-mediumitalic";
  font-size: 2.7rem;
  text-decoration: line-through;
  color: #393939;
  margin-top: 0px;
  margin-bottom: 0px;
}

.newprice {
  font-size: 2.7rem;
  font-family: "firago-bolditalic";
  color: #191919;
  margin-top: 0px;
  margin-bottom: 0px;
}

.final-offer {
  margin-top: 100px;
  font-family: "firago-mediumitalic";
  text-align: center;
  opacity: 0;
  transition: all 1.8s ease 0.5s;
}

.final-offer._active {
  opacity: 100%;

  cursor: pointer;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.column {
  flex: 1;
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.womanup {
  display: none;
}

/* Section 4 */

.reviews {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #faf3e8;
}

.reviews-div {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.reviews .icon-box {
  text-align: center;
}

.reviews .flex {
  gap: 30px;
}

.reviews h3 {
  font-size: 25px;
  font-family: "firago-bookitalic";
  margin-bottom: 0px;
  color: #353535;
}

.reviews h2 {
  margin-top: 10px;
  font-size: 47px;
  font-family: "firago-mediumitalic";
  color: #172f9b;
  margin-bottom: 50px;
}

.reviews .name {
  font-size: 20px;
  font-family: "firago-mediumitalic";
}

.reviews p {
  font-size: 17px;
  font-family: "firago-bookitalic";
  color: #353535;
}

.reviews .r-img {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  margin-top: 20px;
  width: 30%;
}

.icon-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  text-align: left;
  opacity: 0;
  transition: all 1.8s ease 0.1s;
  transform: translateX(0px) translateY(150px);
  box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
}

.icon-box._active {
  opacity: 100%;
  transform: translate(0px, 0px);
  cursor: pointer;
}

.icon-box._active:hover {
  transition: all 0.3s ease 0.1s;
  transform: translate(0px, -10px);
}

.icon-box img {
  width: 50px;
  margin-bottom: 0px;
}

.final-offer {
  text-align: center;
  font-size: 50px;
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .flex1,
  .form-flex,
  .section3-div,
  .section5-flex,
  .flex.row {
    flex-direction: column;
    gap: 30px;
  }

  .section1 h1 {
    font-size: 38px;
    line-height: 45px;
    margin-left: 0;
    text-align: center;
  }

  .section1 p {
    font-size: 24px;
    margin-left: 0;
    text-align: center;
  }

  .offer-up {
    width: 100%;
    margin: 20px auto 0;
    display: block;
  }

  .discount-wrapper {
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .main-problems h2,
  .false-methods h2,
  .reviews h2,
  .questions .texts-h2 {
    font-size: 32px;
    width: 90%;
  }

  .main-problems p,
  .false-methods p,
  .section3 p,
  .section5 p,
  .reviews p,
  .questions .answer {
    font-size: 16px;
  }

  .form-title {
    font-size: 32px;
    line-height: 40px;
    text-align: center;
  }

  input[type="text"],
  input[type="tel"],
  .form-section button {
    width: 100%;
    max-width: 90%;
    font-size: 18px;
    height: 60px;
  }

  .section3 .texts-h2,
  .section5 h1 {
    font-size: 30px;
    text-align: center;
    width: 100%;
  }

  .section3 .column1 img,
  .section5-flex2 img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .r-img {
    width: 60%;
  }
}

@media (max-width: 768px) {
  header {
    justify-content: center;
  }

  header img {
    height: 50px;
    margin-left: auto;
    margin-right: auto;
  }

  header .header-button {
    display: none;
  }
  .flex.row {
    flex-direction: column;
  }
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* ------ Section1 ------ */

  .section1 {
    background-color: #ffffff;
    padding-bottom: 0px;
    padding-top: 0px;
  }

  .section1-div {
    width: 100%;
    padding: 0;
    padding-top: 30px;
    padding-bottom: 20px;
    max-width: 1200px;
    margin: auto;
    gap: 100px;
  }

  .flex1 {
    margin-top: 0px;
    flex-direction: column;
    gap: 5vh;
  }

  .section1 h1 {
    width: 90%;
    font-size: 1.6rem;
    line-height: normal;
    margin-top: 10px;
    margin-bottom: 5px;
    margin-left: 0px;
    font-family: "firago-mediumitalic";
  }

  .column11 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    margin-bottom: 0px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .section1-div {
    width: 100%;
    margin: auto;
    gap: 100px;
  }

  .section1 p {
    font-size: 1.3rem;
    font-family: "firago-bookitalic";
    color: #353535;
    margin-top: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
  }

  .section1 .to-form {
    cursor: pointer;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 23px;
    outline: none;
    background-size: 200% auto;
    display: block;
    padding-top: 2vh;
    padding-bottom: 2vh;
    width: 70vw;
    text-align: center;
    transition: 0.5s;
    position: relative;
    margin-left: 0px;
    border: none;
    font-family: "firago-mediumitalic";
    font-feature-settings: "case" on;
  }

  .section1 .to-form:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

  .section1 .texts-p {
    font-size: 5vw;
    font-family: "firago-bookitalic";
    color: #353535;
  }

  .section1 .texts-h2 {
    margin-top: 0px;
    font-size: 1vw;
    line-height: 9vw;
    font-family: "firago-bolditalic";
  }

  .offer-up {
    position: relative;
    width: 90%;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    margin-top: 25px;
  }

  .discount-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }

  .discount-bubble {
    width: 50px;
    height: 50px;
    border-radius: 50% 50% 0 50%;
    font-size: 4vw;
    font-family: "firago-mediumitalic";
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    animation: popPulse 1.5s infinite;
  }

  .discount-label {
    text-align: left;
    font-size: 4vw;
    font-family: "firago-bolditalic";
    line-height: 1.2;
    color: #172f9b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
  }

  .sale {
    color: #ffffff;
    background-color: #ff007a;
    font-size: 1rem;
    padding: 6px 10px;
    font-family: "firago-mediumitalic";
    border-radius: 10px;
  }

  /* section2 */

  .main-problems {
    padding: 0;
  }

  .section2-div {
    width: 100%;
    padding: 40px 20px;

    margin: auto;
    gap: 100px;
  }

  .main-problems h2 {
    margin-top: 10px;
    font-size: 1.5rem;
    font-family: "firago-mediumitalic";
    color: #191919;
    margin-bottom: 30px;
    text-align: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .main-problems h3 {
    font-size: 1.5rem;
    font-family: "firago-semibolditalic";
    margin-bottom: 0px;
    margin-top: 42px;
    text-align: center;
    color: #353535;
  }

  .main-problems p {
    font-size: 1rem;
    font-family: "firago-bookitalic";
    color: #353535;
    text-align: center;
  }

  .main-problems .icon-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-align: left;
    opacity: 0;
    transition: all 1.8s ease 0.1s;
    transform: translateX(0px) translateY(120px);
  }

  .main-problems .icon-box._active {
    opacity: 100%;
    transform: translate(0px, 0px);
    cursor: pointer;
  }

  .main-problems .icon-box._active:hover {
    transition: all 0.3s ease 0.1s;
    transform: translate(0px, -10px);
  }

  .problem-image-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
  }

  .problem-img {
    display: block;
    width: 100% !important;
    border-radius: 18px;
    text-align: center;
  }

  .pulsing-x {
    position: absolute;
    bottom: -34px; /* lift it into the image */
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px;
    color: red;
    animation: pulseX 1s infinite;
    pointer-events: none;
  }

  /* Section 3 */

  .section3 {
    padding-top: 50px;
    padding-bottom: 80px;
    background-color: #ffffff;
    opacity: 0;
    transition: all 1.8s ease 0.1s;
  }

  .section3-div {
    width: 100%;
    padding: 0;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 30px;
  }

  .section3 .column1 {
    flex: 1;
  }

  .section3 .column2 {
    flex: 2;
  }

  .section3 .texts-h2 {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1.7rem;
    width: 100%;
  }

  .section3._active {
    opacity: 1;
  }

  .section3 p {
    margin-top: 20px;
    font-size: 20px;
    font-family: "firago-bookitalic";
    color: #353535;
  }

  .section3 img {
    width: 100%;
    border-radius: 20px;
  }

  .section3 .doctor-name {
    margin-top: 10px;
    margin-bottom: 0px;
    font-size: 1rem;
    font-family: "firago-bookitalic";
    color: #282828;
    text-align: center;
    opacity: 0.7;
  }

  /* Section 4 */

  .instruction {
    padding-top: 20px;
  }

  .instruction h3 {
    font-size: 5.5vw;
    font-family: "firago-bookitalic";
    margin-bottom: 0px;
    color: #353535;
  }

  .instruction h2 {
    margin-top: 10px;
    font-size: 9.7vw;
    line-height: 11vw;
    font-family: "firago-mediumitalic";
    color: #191919;
  }

  .instruction p {
    font-size: 5vw;
    font-family: "firago-bookitalic";
    color: #353535;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  /* Section 4 */

  .false-methods {
    padding-top: 0px;
    padding-bottom: 20px;
  }

  .false-methods h3 {
    font-size: 25px;
    font-family: "firago-semibolditalic";
    margin-bottom: 0px;
    text-align: center;
    color: #353535;
  }

  .false-methods h2 {
    margin-top: 10px;
    font-size: 1.5rem;
    font-family: "firago-mediumitalic";
    color: #191919;
    margin-bottom: 25px;
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .false-methods p {
    position: relative;
    padding-left: 25px;
    text-align: left;
    font-size: 18px;
    font-family: "firago-bookitalic";
    color: #353535;
  }

  @keyframes slightPulse {
    0%,
    100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.2);
      opacity: 0.7;
    }
  }

  .false-methods .x-icon {
    position: absolute;
    left: 3px;
    top: 1px;
    color: red;
    font-size: 20px;
    animation: slightPulse 1s infinite;
  }

  .false-methods .icon-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-align: center;
    opacity: 0;
    transition: all 1.8s ease 0.1s;
    transform: translateX(0px) translateY(0px);
  }

  .icon-box._active {
    opacity: 100%;
    transform: translate(0px, 0px);
    cursor: pointer;
  }

  .icon-box._active:hover {
    transition: all 0.3s ease 0.1s;
    transform: translate(0px, -10px);
  }

  .false-methods .icon-box img {
    position: relative;
    width: 100%;
    border-radius: 18px;
    margin-bottom: 0px;
    margin-left: auto;
    margin-right: auto;
  }

  .wish {
    margin-top: 30px !important;
    text-align: center;
    font-size: 25px;
    color: #191919;
    opacity: 0;
    transition: all 1.8s ease 0.5s;
    transform: translateX(0px) translateY(0px);
  }

  .wish._active {
    opacity: 100%;
    transform: translate(0px, 0px);
  }

  /* section2 */

  .main-benefits {
    padding: 0;
  }

  .section2-div {
    width: 100%;
    padding: 40px 20px;

    margin: auto;
    gap: 100px;
  }

  .main-benefits h2 {
    margin-top: 10px;
    font-size: 1.5rem;
    font-family: "firago-mediumitalic";
    color: #191919;
    margin-bottom: 30px;
    text-align: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .main-benefits h3 {
    font-size: 1.5rem;
    font-family: "firago-semibolditalic";
    margin-bottom: 0px;
    margin-top: 42px;
    text-align: center;
    color: #353535;
  }

  .main-benefits p {
    font-size: 1rem;
    font-family: "firago-bookitalic";
    color: #353535;
    text-align: center;
  }

  .main-benefits .icon-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-align: left;
    opacity: 0;
    transition: all 1.8s ease 0.1s;
    transform: translateX(0px) translateY(120px);
  }

  .main-benefits .icon-box._active {
    opacity: 100%;
    transform: translate(0px, 0px);
    cursor: pointer;
  }

  .main-benefits .icon-box._active:hover {
    transition: all 0.3s ease 0.1s;
    transform: translate(0px, -10px);
  }

  .problem-image-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
  }

  .problem-img {
    display: block;
    width: 100% !important;
    border-radius: 18px;
    text-align: center;
  }

  .pulsing-x {
    position: absolute;
    bottom: -34px; /* lift it into the image */
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px;
    color: red;
    animation: pulseX 1s infinite;
    pointer-events: none;
  }

  /* section 5 - mob */

  .section5 {
    background-color: #ffffff;
    padding-bottom: 0px;
    transition: all 1.8s ease 0.1s;
    opacity: 0;
  }

  .section5._active {
    opacity: 1;
  }

  .section5-div {
    width: 100%;
    padding: 0;
    padding-top: 20px;
    max-width: 1200px;
    margin: auto;
    gap: 100px;
  }

  .section5-flex {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }

  .section5-flex1 {
    margin-top: 30px;
    flex: 1.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    margin-bottom: 50px;
  }

  .section5-flex2 {
    flex: 1;
  }

  .section5 h1 {
    font-size: 1.4rem;
    font-family: "firago-bolditalic";
    color: #172f9b;
    margin-bottom: 20px;
  }

  .section5 h3 {
    font-size: 1rem;
    margin-top: 0px;
    margin-bottom: 2px;
    font-family: "firago-mediumitalic";
    color: #353535;
  }

  .section5 h3 {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .h3-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .section5 p {
    font-size: 0.9rem;
    margin-top: 10px;
    font-family: "firago-bookitalic";
    color: #353535;
  }

  .section5 .texts {
    margin-top: 50px;
    opacity: 0;
    transition: all 1.8s ease 0.1s;
    transform: translateX(0px) translateY(120px);
  }

  .section5 .texts._active {
    opacity: 100%;
    transform: translate(0px, 0px);
  }

  .section5 .texts-p {
    font-size: 22px;
    font-family: "firago-bookitalic";
    color: #353535;
  }

  .section5 .texts-h2 {
    font-size: 44px;
    font-family: "firago-bolditalic";
    color: #353535;
    margin-top: 0px;
    line-height: 52px;
  }

  /* Reviews */

  .reviews {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .reviews-div {
    padding-top: 20px;
    padding-bottom: 50px;
    max-width: 1200px;
    margin: auto;
  }

  .reviews .icon-box {
    text-align: center;
  }

  .reviews .flex {
    gap: 30px;
  }

  .reviews h3 {
    font-size: 1rem;
    font-family: "firago-bookitalic";
    margin-bottom: 0px;
    color: #353535;
  }

  .reviews h2 {
    margin-top: 10px;
    font-size: 2rem;
    font-family: "firago-mediumitalic";
    color: #03045e;
    margin-bottom: 30px;
  }

  .reviews .name {
    font-size: 1.2rem;
    font-family: "firago-mediumitalic";
  }

  .reviews p {
    font-size: 1rem;
    font-family: "firago-bookitalic";
    color: #353535;
  }

  .reviews .r-img {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    margin-top: 20px;
    width: 30%;
  }

  .icon-box {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 3px;
    border-radius: 20px;
    text-align: left;
    opacity: 0;
    transition: all 1.8s ease 0.1s;
    transform: translateX(0px) translateY(120px);
  }

  .icon-box._active {
    opacity: 100%;
    transform: translate(0px, 0px);
    cursor: pointer;
  }

  .icon-box._active:hover {
    transition: all 0.3s ease 0.1s;
    transform: translate(0px, -10px);
  }

  .icon-box img {
    width: 50px;
    margin-bottom: 0px;
  }

  /* ---------- Questions --------------- */

  .questions {
    background-color: #ffffff;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 60px;
  }

  .questions-div {
    width: 100%;
    padding: 0px;
    max-width: 1200px;
    margin: auto;
  }

  .questions .texts-h2 {
    font-size: 2rem;
    color: #191919;
    font-family: "firago-mediumitalic";
  }

  .question-p {
    font-size: 1rem;
    color: #191919;
    font-family: "firago-mediumitalic";
    margin-top: 20px;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: all 1.8s ease 0.1s;
    transform: translateX(0px) translateY(120px);
  }

  .question-p._active {
    opacity: 100%;
    transform: translate(0px, 0px);
    cursor: pointer;
  }

  .h4-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .answer {
    font-size: 0.9rem;
    color: #191919;
    font-family: "firago-bookitalic";
    margin-top: 10px;
    margin-bottom: 0px;
    opacity: 0;
    transition: all 1.8s ease 0.1s;
    transform: translateX(0px) translateY(120px);
  }

  .answer._active {
    opacity: 100%;
    transform: translate(0px, 0px);
    cursor: pointer;
  }

  /* ------ FinalForm ------ */

  .form-section {
    padding-top: 30px;
    padding-bottom: 36px;
  }

  .womanup {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
  }

  .form-section .woman {
    display: none;
  }

  .form-title {
    font-size: 1.5rem;
    font-family: "firago-mediumitalic";
    color: #353535;
  }

  .section1 .texts-h2 {
    display: none;
  }

  .form-flex {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    gap: 0px;
  }

  .form-section h2 {
    display: none;
  }

  .upper-form {
    font-family: "firago-bookitalic";
    font-size: 1rem;
    color: #353535;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 0px;
  }

  form {
    margin-left: auto;
    margin-right: auto;
  }

  input[type="text"] {
    color: #1f1f1f;
    font-family: "firago-mediumitalic";
    font-size: 1.2rem;
    padding: 12px 20px;
    margin: 8px 0;
    margin-bottom: 5px;
    border-radius: 23px;
    box-sizing: border-box;
    border: none;
    text-align: left;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px;
    position: relative;
    width: 85vw;
    height: 9vh;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
    font-feature-settings: "case" on;
  }

  input[type="tel"] {
    color: #1f1f1f;
    font-family: "firago-mediumitalic";
    font-size: 1.2rem;
    padding: 12px 20px;
    margin: 8px 0;
    margin-bottom: 5px;
    border-radius: 23px;
    box-sizing: border-box;
    border: none;
    text-align: left;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    position: relative;
    width: 85vw;
    height: 9vh;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
    font-feature-settings: "case" on;
  }

  ::placeholder {
    color: #808080;
    font-family: "firago-bookitalic";
    font-size: 1.2rem;
    font-feature-settings: "case" on;
  }

  .form-section button {
    cursor: pointer;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 23px;
    outline: none;

    background-size: 200% auto;
    display: block;
    text-align: center;
    padding: 0px;
    transition: 0.5s;
    position: relative;
    width: 85vw;
    height: 9vh;
    margin-left: auto;
    margin-right: auto;
    border: none;
    font-family: "firago-mediumitalic";
    font-feature-settings: "case" on;
  }

  .form-section button:hover {
    background-color: #9c233d;
  }

  .form-section .form-product {
    width: 100%;
    border-radius: 20px;
    margin-top: 30px;
    margin-left: 0px;
    margin-right: 0px;
  }

  .final-offer {
    margin-top: 60px;
    font-size: 2rem;
    font-family: "firago-mediumitalic";
    text-align: center;
    opacity: 0;
    transition: all 1.8s ease 0.5s;
  }

  .final-offer._active {
    opacity: 100%;

    cursor: pointer;
  }

  .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .column {
    flex: 1;
  }

  .blue-section {
    background: #3a6bff;
    color: white;
    border-radius: 30px;
    padding: 40px 20px;
  }
  .blue-section .icon-box {
    background: transparent;
    color: white;
  }
  .form-section form {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .price {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    gap: 1.2rem;
    padding-top: 0;
    margin-top: 20px;
  }

  .oldprice {
    font-size: 2.3rem;

    margin-top: 0px;
    margin-bottom: 0px;
  }

  .newprice {
    font-size: 2.3rem;

    margin-top: 0px;
    margin-bottom: 0px;
  }

  /* fixed button */

  .fixed-order-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "firago-mediumitalic";
    font-size: 3.8vw;
    font-feature-settings: "case" on;
    text-decoration: none;
    background: #3a6bff;
    color: white;
    width: 50%;
    text-align: center;
    border: none;
    padding: 15px 25px;
    border-radius: 30px;
    animation: pulse 2s infinite;
    z-index: 999;
  }
}
