:root {
  --bg-1: #ffffff;
  --bg-1-blur: #f5f5f525;
  --bg-2: black;
  --bg-3: rgba(255, 255, 255, 0.04);
  --bg-3-bis: rgba(0, 0, 0, 0.791);
  --bg-lgrey: #f7f6f6;
  --bg-lgrey-sub: #f7f7f7;
  --bg-lgrey2: #e1e1e1;
  --bg-x: #fff4ed;
  --bg-x-hover: #fbe7db;
  --bg-x-2: #f7f7f7;
  --color-1: black;
  --color-2: white;
  --color-lightgrey: #b8b8b8;
  --color-grey: #838181;
  --color-darkgrey: #545454;
  --color-x: #fe6a00;
  --border-1: #ebebeb;
  --border-2: #ffffff;
  --border-3: #cdcdcd;
}

#pageContent {
  background-color: var(--bg-1);
}

.bg-1 {
  background-color: var(--bg-1);
  transition: 0.3s ease;
}

.bg-1-blur {
  background: var(--bg-1-blur);
  backdrop-filter: blur(22px);
  transition: 0.3s ease;
}

.bg-2 {
  background-color: var(--bg-2);
  transition: 0.3s ease;
}

.bg-3 {
  background-color: var(--bg-3);
  transition: 0.3s ease;
}

.bg-3-bis {
  background-color: var(--bg-3-bis);
  backdrop-filter: blur(22px);
  transition: 0.3s ease;
}

.bg-lgrey {
  background-color: var(--bg-lgrey);
  transition: 0.3s ease;
}

.bg-lgrey2 {
  background-color: var(--bg-lgrey2);
  transition: 0.3s ease;
}

.bg-grey-hover {
  background-color: transparent;
  transition: 0.3s ease;
}
.bg-grey-hover:hover {
  background-color: var(--bg-lgrey-sub);
}

.bg-x {
  background-color: var(--bg-x);
  transition: 0.3s ease;
}
.bg-x:hover {
  background-color: var(--bg-x-hover);
}

.bg-x-2 {
  background-color: var(--bg-x-2);
  transition: 0.3s ease;
}

.color-1 {
  color: var(--color-1);
  transition: 0.3s ease;
}

.color-2 {
  color: var(--color-2);
  transition: 0.3s ease;
}

.color-grey {
  color: var(--color-grey);
  transition: 0.3s ease;
}

.color-lightgrey {
  color: var(--color-lightgrey);
  transition: 0.3s ease;
}

.color-darkgrey {
  color: var(--color-darkgrey);
  transition: 0.3s ease;
}

.color-x {
  color: var(--color-x);
  transition: 0.3s ease;
}

.border-1 {
  border: 1px solid var(--border-1);
  transition: 0.3s ease;
}

.border-2 {
  border: 1px solid var(--border-2);
  transition: 0.3s ease;
}

.border-1-hover {
  border: 1px solid transparent;
  transition: 0.3s ease;
}
.border-1-hover:hover {
  border: 1px solid var(--border-1);
}

a {
  color: var(--color-1);
  transition: 0.3s ease;
}

.btn-1 {
  background: var(--color-1);
  color: var(--color-2);
  padding: 7px 12px;
  border-radius: 10px;
  transition: 0.3s ease;
}
.btn-1:hover {
  background: var(--border-1);
  color: var(--color-1);
}

.btn-2 {
  background: var(--color-1);
  color: var(--color-2);
  padding: 7px 12px;
  border-radius: 10px;
  transition: 0.3s ease;
}
.btn-2:hover {
  background: var(--bg-lgrey-sub);
  color: var(--color-1);
}

:root {
  color-scheme: light dark;
}

/* Pour tous les navigateurs */
::selection {
  background: #1c1c1c;
  color: white;
}

/* Firefox */
::-moz-selection {
  background: #1c1c1c;
  color: white;
}

.large-em {
  letter-spacing: 0.04em;
}

.italic {
  font-family: "Italic";
  letter-spacing: -0.015em;
}

.journal {
  font-family: "Journal";
  letter-spacing: -0.015em;
}

.inter-medium {
  font-family: "Inter Medium";
  letter-spacing: -0.015em;
}

.inter-semibold {
  font-family: "Inter Semibold";
  letter-spacing: -0.015em;
}

.inter-bold {
  font-family: "Inter Bold";
  letter-spacing: -0.015em;
}

button {
  color: #000;
}

.uppercase {
  text-transform: uppercase;
}

.underlined {
  text-underline-offset: 5px;
  text-decoration: underline;
}

.dashed {
  text-underline-offset: 3px;
  text-decoration: underline dotted;
  cursor: text;
}

.text-center {
  text-align: center;
}

.dotted {
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 12%;
  text-underline-offset: 2px;
  text-underline-position: from-font;
}

.turned-arrow {
  display: inline-block;
  transform: rotate(90deg) !important;
}

.semi-turned-arrow {
  display: inline-block;
  transform: rotate(-45deg) !important;
}

a {
  text-decoration: none;
  outline: none !important;
}

.semi-grey {
  color: #5a5a5a;
}

.dark-grey {
  color: #464646;
}

.link-hover {
  opacity: 1;
  transition: 0.3s ease;
  line-height: 100%;
  outline: none !important;
}
.link-hover:hover {
  opacity: 0.4;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
input,
span {
  font-weight: 400;
  font-display: swap;
  font-style: normal;
  line-height: 140%;
}

.xxs-size {
  font-size: 8.5px;
  letter-spacing: -0.015em;
}

.xs-size {
  font-size: 9px;
  letter-spacing: -0.015em;
}

@media (max-width: 850px) {
  .xs-size {
    font-size: 11px;
  }
}
.s-size {
  font-size: 10px;
  letter-spacing: 0em;
}

@media (max-width: 850px) {
  .s-size {
    font-size: 13px;
  }
}
.splus-size {
  font-size: 11px;
  letter-spacing: -0.02em;
}

@media (max-width: 850px) {
  .splus-size {
    font-size: 15px;
  }
}
.m-size {
  font-size: 12px;
  letter-spacing: -0.01em;
  line-height: 160%;
}

@media (max-width: 850px) {
  .m-size {
    font-size: 14px;
  }
}
.mplus-size {
  font-size: 14px;
  letter-spacing: -0.01em;
  line-height: 160%;
}

@media (max-width: 850px) {
  .mplus-size {
    font-size: 15px;
  }
}
.mplus2-size {
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 160%;
}

.xm-size {
  font-size: 22px;
  letter-spacing: -0.02em;
}

@media (max-width: 850px) {
  .xm-size {
    font-size: 26px;
  }
}
.xxm-size {
  font-size: 24px;
  letter-spacing: -0.02em;
}

@media (max-width: 850px) {
  .xxm-size {
    font-size: 30px;
  }
}
.lm-size {
  font-size: 28px;
  line-height: 100%;
  letter-spacing: -0.03em;
  transition: 0.3s ease;
}

.l-size {
  font-size: 28px;
  line-height: 100%;
  letter-spacing: -0.025em;
  transition: 0.3s ease;
}

.xl-size {
  font-size: 36px;
  line-height: 90%;
}

.xxl-size {
  font-size: 72px;
  line-height: 90%;
}

@media (max-width: 850px) {
  .l-size-x {
    font-size: 42px;
  }
}
.cta-1 {
  padding: 17px 40px;
  background-color: var(--color-1);
  color: var(--color-2);
  font-family: "Inter Bold";
  text-transform: uppercase;
  letter-spacing: 0em;
  border: none;
  outline: none;
  width: fit-content;
  transition: 0.3s ease;
}
.cta-1:hover {
  background-color: var(--bg-lgrey);
  color: var(--color-1);
}

:root {
  --bg-1: #ffffff;
  --bg-1-blur: #f5f5f525;
  --bg-2: black;
  --bg-3: rgba(255, 255, 255, 0.04);
  --bg-3-bis: rgba(0, 0, 0, 0.791);
  --bg-lgrey: #f7f6f6;
  --bg-lgrey-sub: #f7f7f7;
  --bg-lgrey2: #e1e1e1;
  --bg-x: #fff4ed;
  --bg-x-hover: #fbe7db;
  --bg-x-2: #f7f7f7;
  --color-1: black;
  --color-2: white;
  --color-lightgrey: #b8b8b8;
  --color-grey: #838181;
  --color-darkgrey: #545454;
  --color-x: #fe6a00;
  --border-1: #ebebeb;
  --border-2: #ffffff;
  --border-3: #cdcdcd;
}

#pageContent {
  background-color: var(--bg-1);
}

.bg-1 {
  background-color: var(--bg-1);
  transition: 0.3s ease;
}

.bg-1-blur {
  background: var(--bg-1-blur);
  backdrop-filter: blur(22px);
  transition: 0.3s ease;
}

.bg-2 {
  background-color: var(--bg-2);
  transition: 0.3s ease;
}

.bg-3 {
  background-color: var(--bg-3);
  transition: 0.3s ease;
}

.bg-3-bis {
  background-color: var(--bg-3-bis);
  backdrop-filter: blur(22px);
  transition: 0.3s ease;
}

.bg-lgrey {
  background-color: var(--bg-lgrey);
  transition: 0.3s ease;
}

.bg-lgrey2 {
  background-color: var(--bg-lgrey2);
  transition: 0.3s ease;
}

.bg-grey-hover {
  background-color: transparent;
  transition: 0.3s ease;
}
.bg-grey-hover:hover {
  background-color: var(--bg-lgrey-sub);
}

.bg-x {
  background-color: var(--bg-x);
  transition: 0.3s ease;
}
.bg-x:hover {
  background-color: var(--bg-x-hover);
}

.bg-x-2 {
  background-color: var(--bg-x-2);
  transition: 0.3s ease;
}

.color-1 {
  color: var(--color-1);
  transition: 0.3s ease;
}

.color-2 {
  color: var(--color-2);
  transition: 0.3s ease;
}

.color-grey {
  color: var(--color-grey);
  transition: 0.3s ease;
}

.color-lightgrey {
  color: var(--color-lightgrey);
  transition: 0.3s ease;
}

.color-darkgrey {
  color: var(--color-darkgrey);
  transition: 0.3s ease;
}

.color-x {
  color: var(--color-x);
  transition: 0.3s ease;
}

.border-1 {
  border: 1px solid var(--border-1);
  transition: 0.3s ease;
}

.border-2 {
  border: 1px solid var(--border-2);
  transition: 0.3s ease;
}

.border-1-hover {
  border: 1px solid transparent;
  transition: 0.3s ease;
}
.border-1-hover:hover {
  border: 1px solid var(--border-1);
}

a {
  color: var(--color-1);
  transition: 0.3s ease;
}

.btn-1 {
  background: var(--color-1);
  color: var(--color-2);
  padding: 7px 12px;
  border-radius: 10px;
  transition: 0.3s ease;
}
.btn-1:hover {
  background: var(--border-1);
  color: var(--color-1);
}

.btn-2 {
  background: var(--color-1);
  color: var(--color-2);
  padding: 7px 12px;
  border-radius: 10px;
  transition: 0.3s ease;
}
.btn-2:hover {
  background: var(--bg-lgrey-sub);
  color: var(--color-1);
}

:root {
  color-scheme: light dark;
}

.why-it-works-component {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 17vh;
  width: 100%;
}
.why-it-works-component h2 {
  margin-top: 20px;
  text-align: center;
  line-height: 110%;
}
.why-it-works-component h2 .italic {
  line-height: 100%;
}
.why-it-works-component h2 .uppercase {
  line-height: 90%;
}
.why-it-works-component .second-title-h3 {
  margin-top: 30px;
  text-align: center;
  line-height: 110%;
}
.why-it-works-component .second-title-h3 .italic {
  line-height: 100%;
}

@media (max-width: 850px) {
  .why-it-works-component {
    width: calc(100% - 20px);
    padding-top: 10vh;
  }
}
.label-top-why {
  padding: 11px 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.social-proof-why {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  gap: 8px;
}
.social-proof-why .stars {
  display: flex;
  align-items: center;
  gap: 15px;
}
.social-proof-why .stars img {
  height: 12px;
}
.social-proof-why .unit-sold {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-proof-why .unit-sold img {
  height: 12px;
}

.btn-main-cta-why {
  margin-top: 0px;
  margin-bottom: 20px;
}

.sub-text-cta-why {
  max-width: 375px;
  margin-top: 15px;
}

.container-science-blocks {
  width: 500px;
  margin-top: 5vh;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 850px) {
  .container-science-blocks {
    width: 100%;
  }
}
.block-science {
  width: 100%;
  display: flex;
  border-radius: 28px;
  padding: 8px;
  gap: 20px;
  align-items: center;
  background-color: #fbfbfb;
  border: 1px solid #f0f0f0;
}
.block-science .wrapper-img-science-block {
  height: 160px;
  width: 160px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid white;
}
.block-science .wrapper-img-science-block img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (max-width: 850px) {
  .block-science {
    flex-direction: column;
    gap: 0;
  }
  .block-science .wrapper-img-science-block {
    width: 100%;
    height: 80vw;
  }
}
.container-science-content {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  top: 4px;
}
.container-science-content h3 {
  letter-spacing: -0.01em;
  line-height: 100%;
}

@media (max-width: 850px) {
  .container-science-content {
    width: 100%;
    padding: 20px;
  }
}
.conclusion-text {
  max-width: 330px;
}

.subtitle-why {
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  line-height: 110%;
}

.mirror-content {
  margin-top: 20vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: fit-content;
  width: 100%;
  flex-direction: column;
  gap: 50px;
}

.left-content-mirror {
  width: 45%;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.left-content-mirror img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.right-content-mirror {
  width: 50%;
  margin-right: 0%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.top-text-img-down-component {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
}
.top-text-img-down-component h2 {
  margin-top: 20px;
  text-align: center;
}

.label-top {
  padding: 11px 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  gap: 8px;
}
.social-proof .stars {
  display: flex;
  align-items: center;
  gap: 15px;
}
.social-proof .stars img {
  height: 12px;
}
.social-proof .unit-sold {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-proof .unit-sold img {
  height: 12px;
}

.btn-main-cta {
  margin-top: 25px;
}

.sub-text-cta {
  max-width: 375px;
  margin-top: 15px;
}

.product-features-images {
  display: flex;
  align-items: center;
  position: relative;
  left: -50px;
  gap: 30px;
  margin-top: 50px;
}
.product-features-images .img-features {
  width: 50vw;
}

@media (max-width: 850px) {
  .product-features-images {
    flex-direction: column;
    left: 0;
    width: 100%;
  }
  .product-features-images .img-features {
    width: 90vw;
  }
}
.bullet-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (max-width: 850px) {
  .bullet-wrapper {
    margin-top: 20px;
  }
}
.container-1-bullets {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.container-1-bullets .container-first-bullet {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bullet-point-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bullet-point-feature img {
  height: 15px;
}

.comparison-check-component {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15vh;
}
.comparison-check-component h2 {
  margin-top: 20px;
  text-align: center;
}

.label-top {
  padding: 11px 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  gap: 8px;
}
.social-proof .stars {
  display: flex;
  align-items: center;
  gap: 15px;
}
.social-proof .stars img {
  height: 12px;
}
.social-proof .unit-sold {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-proof .unit-sold img {
  height: 12px;
}

.btn-main-cta {
  margin-top: 25px;
}

.sub-text-cta {
  max-width: 375px;
  margin-top: 15px;
}

.other-solutions {
  margin-top: 50px;
  display: flex;
  width: 700px;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}
.other-solutions .card-benefit {
  width: 346px;
}
.other-solutions .card-benefit .container-comparison-opponent {
  display: flex;
  align-items: center;
  gap: 8px;
}
.other-solutions .card-benefit .container-comparison-opponent img {
  width: 16px;
  height: 16px;
  background-color: transparent;
}

@media (max-width: 850px) {
  .other-solutions {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
}
.cta-indic-color-component {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-indic-color-component a {
  display: flex;
  gap: 10px;
  padding: 4px 4px;
  padding-right: 14px;
  border-radius: 1000px;
  width: fit-content;
  align-items: center;
}
.cta-indic-color-component .color-indic-cta {
  padding: 7px 12px;
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section {
  text-align: center;
  padding: 50px;
}

.hero-image {
  width: 100%;
  max-width: 800px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.5rem;
}

.hero-description {
  font-size: 1.2rem;
  color: #666;
}

.landing-page {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features {
  padding: 30px;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
}

.landing-page {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features {
  padding: 30px;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
}

.hero-section {
  text-align: center;
  padding: 50px;
}

.hero-image {
  width: 100%;
  max-width: 800px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.5rem;
}

.hero-description {
  font-size: 1.2rem;
  color: #666;
}

html,
body {
  width: 100%;
  display: flex;
  flex-direction: column;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  padding: 10px 10px;
  padding-top: 0px;
}

@media (max-width: 850px) {
  body {
    padding: 10px 10px;
    padding-top: 0;
  }
}
main {
  display: flex;
  flex-direction: column;
}

#pageContent {
  transition: opacity 0.3s ease;
}

.none {
  display: none;
}

.only-mobile {
  display: none;
}

@media (max-width: 850px) {
  .no-mobile {
    display: none !important;
  }
  .only-mobile {
    display: block;
  }
}
.pointer {
  cursor: pointer;
}

.z15 {
  z-index: 15;
}

.margin15 {
  margin-top: 15vh;
}

.margin20 {
  margin-top: 20vh;
}

.margin25 {
  margin-top: 25vh;
}

.margin15px {
  margin-top: 15px;
}

/* Cacher scrollbar sur Webkit (Chrome, Safari, Edge Chromium, Opera) */
::-webkit-scrollbar {
  display: none;
}

/* Cacher scrollbar sur Firefox */
* {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE et Edge Legacy */
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary,
menu,
main {
  display: block;
}

audio,
canvas,
video,
progress {
  display: inline-block;
  vertical-align: middle;
}

audio:not([controls]),
[hidden],
template {
  display: none;
  height: 0;
}

* {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}
*:after, *:before {
  box-sizing: inherit;
}

:after,
:before {
  vertical-align: inherit;
  text-decoration: inherit;
}

:root {
  box-sizing: border-box;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

a {
  background: transparent;
}
a:focus {
  outline: thin dotted;
}
a:active, a:hover {
  outline: 0;
}

iframe,
img,
svg {
  vertical-align: middle;
}

iframe,
embed,
object {
  max-width: 100%;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: inherit;
}

code,
kbd,
pre,
samp {
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow: auto;
  margin: 1em 0;
}

nav ul,
nav ol {
  list-style: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

fieldset,
legend {
  border: 0;
}

legend {
  white-space: normal;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
}

select {
  cursor: pointer;
}
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

button[disabled],
input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button,
input,
select,
textarea {
  vertical-align: baseline;
  font: inherit;
  background: none;
  border-radius: 0;
  margin: 0;
}

button,
input,
select {
  overflow: visible;
}

input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input[type=checkbox], input[type=radio] {
  cursor: pointer;
  padding: 0;
}
input[type=checkbox] {
  -moz-appearance: checkbox;
  -webkit-appearance: checkbox;
}
input[type=radio] {
  -moz-appearance: radio;
  -webkit-appearance: radio;
}
input[type=number] {
  width: auto;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  height: auto;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  appearance: button;
  -moz-appearance: button;
  -webkit-appearance: button;
  cursor: pointer;
}

textarea {
  vertical-align: top;
  overflow: auto;
  resize: vertical;
  -moz-appearance: none;
  -webkit-appearance: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

menu {
  margin: 1em 0;
  padding: 0 0 0 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

sup {
  position: relative;
  top: -0.5em;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

.why-it-works-component {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 17vh;
  width: 100%;
}
.why-it-works-component h2 {
  margin-top: 20px;
  text-align: center;
  line-height: 110%;
}
.why-it-works-component h2 .italic {
  line-height: 100%;
}
.why-it-works-component h2 .uppercase {
  line-height: 90%;
}
.why-it-works-component .second-title-h3 {
  margin-top: 30px;
  text-align: center;
  line-height: 110%;
}
.why-it-works-component .second-title-h3 .italic {
  line-height: 100%;
}

@media (max-width: 850px) {
  .why-it-works-component {
    width: calc(100% - 20px);
    padding-top: 10vh;
  }
}
.label-top-why {
  padding: 11px 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.social-proof-why {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  gap: 8px;
}
.social-proof-why .stars {
  display: flex;
  align-items: center;
  gap: 15px;
}
.social-proof-why .stars img {
  height: 12px;
}
.social-proof-why .unit-sold {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-proof-why .unit-sold img {
  height: 12px;
}

.btn-main-cta-why {
  margin-top: 0px;
  margin-bottom: 20px;
}

.sub-text-cta-why {
  max-width: 375px;
  margin-top: 15px;
}

.container-science-blocks {
  width: 500px;
  margin-top: 5vh;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 850px) {
  .container-science-blocks {
    width: 100%;
  }
}
.block-science {
  width: 100%;
  display: flex;
  border-radius: 28px;
  padding: 8px;
  gap: 20px;
  align-items: center;
  background-color: #fbfbfb;
  border: 1px solid #f0f0f0;
}
.block-science .wrapper-img-science-block {
  height: 160px;
  width: 160px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid white;
}
.block-science .wrapper-img-science-block img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (max-width: 850px) {
  .block-science {
    flex-direction: column;
    gap: 0;
  }
  .block-science .wrapper-img-science-block {
    width: 100%;
    height: 80vw;
  }
}
.container-science-content {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  top: 4px;
}
.container-science-content h3 {
  letter-spacing: -0.01em;
  line-height: 100%;
}

@media (max-width: 850px) {
  .container-science-content {
    width: 100%;
    padding: 20px;
  }
}
.conclusion-text {
  max-width: 330px;
}

.subtitle-why {
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  line-height: 110%;
}

.mirror-content {
  margin-top: 20vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: fit-content;
  width: 100%;
  flex-direction: column;
  gap: 50px;
}

.left-content-mirror {
  width: 45%;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.left-content-mirror img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.right-content-mirror {
  width: 50%;
  margin-right: 0%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.top-text-img-down-component {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
}
.top-text-img-down-component h2 {
  margin-top: 20px;
  text-align: center;
}

.label-top {
  padding: 11px 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  gap: 8px;
}
.social-proof .stars {
  display: flex;
  align-items: center;
  gap: 15px;
}
.social-proof .stars img {
  height: 12px;
}
.social-proof .unit-sold {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-proof .unit-sold img {
  height: 12px;
}

.btn-main-cta {
  margin-top: 25px;
}

.sub-text-cta {
  max-width: 375px;
  margin-top: 15px;
}

.product-features-images {
  display: flex;
  align-items: center;
  position: relative;
  left: -50px;
  gap: 30px;
  margin-top: 50px;
}
.product-features-images .img-features {
  width: 50vw;
}

@media (max-width: 850px) {
  .product-features-images {
    flex-direction: column;
    left: 0;
    width: 100%;
  }
  .product-features-images .img-features {
    width: 90vw;
  }
}
.bullet-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (max-width: 850px) {
  .bullet-wrapper {
    margin-top: 20px;
  }
}
.container-1-bullets {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.container-1-bullets .container-first-bullet {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bullet-point-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bullet-point-feature img {
  height: 15px;
}

.comparison-check-component {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15vh;
}
.comparison-check-component h2 {
  margin-top: 20px;
  text-align: center;
}

.label-top {
  padding: 11px 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  gap: 8px;
}
.social-proof .stars {
  display: flex;
  align-items: center;
  gap: 15px;
}
.social-proof .stars img {
  height: 12px;
}
.social-proof .unit-sold {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-proof .unit-sold img {
  height: 12px;
}

.btn-main-cta {
  margin-top: 25px;
}

.sub-text-cta {
  max-width: 375px;
  margin-top: 15px;
}

.other-solutions {
  margin-top: 50px;
  display: flex;
  width: 700px;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}
.other-solutions .card-benefit {
  width: 346px;
}
.other-solutions .card-benefit .container-comparison-opponent {
  display: flex;
  align-items: center;
  gap: 8px;
}
.other-solutions .card-benefit .container-comparison-opponent img {
  width: 16px;
  height: 16px;
  background-color: transparent;
}

@media (max-width: 850px) {
  .other-solutions {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
}
.cta-indic-color-component {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-indic-color-component a {
  display: flex;
  gap: 10px;
  padding: 4px 4px;
  padding-right: 14px;
  border-radius: 1000px;
  width: fit-content;
  align-items: center;
}
.cta-indic-color-component .color-indic-cta {
  padding: 7px 12px;
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}
