*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

svg {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

label {
  display: block;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

::-moz-placeholder {
  color: inherit;
}

::placeholder {
  color: inherit;
}

textarea {
  display: block;
}

input,
textarea,
button,
select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
}

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

picture,
img {
  display: inline-block;
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 1.5px solid #333333;
  outline-offset: 0px;
}

html,
body {
  overflow-x: clip;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}
@media (prefers-reduced-motion) {
  html {
    scroll-behavior: none;
  }
}

body {
  min-width: 320px;
  -webkit-tap-highlight-color: transparent;
}

:root {
  /* Brand colors */
  --color-primary-blue: #366793;
  --color-primary-blue-light: #4781ae;
  --color-primary-blue-lighter: #ccdceb;
  --color-primary-blue-lightest: #e8eef7;
  --color-primary-orange: #fe8615;
  --color-primary-red: #ff5959;
  --color-primary-red-light: #f6857f;
  /* Neutral colors */
  --color-neutral-white: #ffffff;
  --color-neutral-50: #f6f6f6;
  --color-neutral-200: #d1d1d1;
  --color-neutral-300: #b0b0b0;
  /* Creamy colors */
  --color-creamy-50: #fdfcfc;
  --color-creamy-100: #faf7f5;
  --color-creamy-200: #e7d9cf;
  --color-creamy-400: #c3a088;
  /* Content colors */
  --color-text-body: #222222;
  --color-text-heading: #222222;
  --color-text-grey: #333333;
  /* Fonts */
  --font-primary: "Open Sans", sans-serif;
  --font-secondary: "Lora", sans-serif;
  --font-logo: "Lato", sans-serif;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-body);
  background-color: var(--color-creamy-100);
}

.header {
  background-color: var(--color-neutral-white);
  width: 100%;
}

.header__container {
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .header__container {
    max-width: 768px;
    padding: 0 32px;
  }
}
@media (min-width: 1024px) {
  .header__container {
    max-width: 1224px;
  }
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}
@media (min-width: 768px) {
  .header__top {
    justify-content: space-between;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__logo-image {
  width: 80px;
  height: auto;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-logo);
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .header__logo-text {
    flex-direction: row;
    gap: 5px;
  }
}

.header__logo-portal {
  font-size: 28px;
  font-weight: 400;
  color: var(--color-primary-red-light);
  letter-spacing: -0.28px;
}

.header__logo-title {
  font-size: 28px;
  font-weight: 500;
  color: var(--color-primary-blue-light);
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.header__search {
  display: none;
}
@media (min-width: 768px) {
  .header__search {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-creamy-50);
    border: 1px solid var(--color-creamy-400);
    border-radius: 8px;
    padding: 8px;
  }
}

.header__search-input {
  width: 250px;
  font-size: 14px;
  color: var(--color-text-body);
}
.header__search-input:focus-visible, .header__search-input:focus {
  outline: none;
  border: none;
}

.header__search-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.header__nav {
  display: none;
}
@media (min-width: 768px) {
  .header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    min-width: 100%;
    padding: 16px 0;
  }
}
@media (min-width: 1024px) {
  .header__nav {
    min-width: 757px;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.header__nav-link {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-body);
  line-height: 1.55;
  padding: 0 8px;
  transition: color 0.3s ease;
}
.header__nav-link:hover {
  color: #000;
}

.header__nav-divider {
  display: block;
  width: 1px;
  height: 28px;
  background-color: var(--color-neutral-300);
}

.hero {
  position: relative;
  width: 100%;
  background: radial-gradient(circle at 50% 50%, #d7f4db, #a0c5e0);
  padding: 32px 0 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero {
    padding: 24px 0 0;
    min-height: 650px;
  }
}
@media (min-width: 1200px) {
  .hero {
    min-height: auto;
    padding: 0;
  }
}

.hero__formula {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  display: none;
  animation: fadeIn 0.8s ease-out;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hero__formula--1 {
  display: none;
  animation-delay: 0.4s;
}
@media (min-width: 1200px) {
  .hero__formula--1 {
    display: block;
    width: 284px;
    top: -100px;
    left: 0;
  }
}
@media (min-width: 1460px) {
  .hero__formula--1 {
    top: -50px;
    left: -10px;
  }
}
@media (min-width: 1750px) {
  .hero__formula--1 {
    left: 0.83%;
    top: 20.68px;
  }
}

.hero__formula--2 {
  width: 116px;
  height: auto;
  animation-delay: 0.1s;
}
@media (min-width: 768px) {
  .hero__formula--2 {
    display: block;
    left: 16px;
    bottom: 22px;
  }
}
@media (min-width: 1460px) {
  .hero__formula--2 {
    left: 0.9%;
    bottom: 240.652px;
  }
}

.hero__formula--3 {
  display: none;
  animation-delay: 0.5s;
}
@media (min-width: 1760px) {
  .hero__formula--3 {
    left: 4.89%;
    bottom: 16.652px;
  }
}

.hero__formula--4 {
  width: 220px;
  height: auto;
  animation-delay: 0.2s;
}
@media (min-width: 768px) {
  .hero__formula--4 {
    display: block;
    right: 190px;
    bottom: 219.332px;
  }
}
@media (min-width: 1200px) {
  .hero__formula--4 {
    right: auto;
    left: 48%;
    top: 37px;
    bottom: auto;
  }
}

.hero__formula--5 {
  width: 166px;
  height: auto;
  animation-delay: 0.3s;
}
@media (min-width: 768px) {
  .hero__formula--5 {
    display: block;
    right: 297px;
    bottom: 14.332px;
  }
}
@media (min-width: 1200px) {
  .hero__formula--5 {
    right: auto;
    left: 48.43%;
    bottom: 16.332px;
  }
}

.hero__container {
  max-width: 1224px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .hero__container {
    padding: 0 32px;
  }
}
@media (min-width: 1200px) {
  .hero__container {
    display: flex;
    align-items: center;
    gap: 62px;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 704px;
}
@media (min-width: 768px) {
  .hero__content {
    gap: 62px;
  }
}
@media (min-width: 1200px) {
  .hero__content {
    max-width: 596px;
  }
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__title {
  font-family: var(--font-secondary);
  font-size: clamp(32px, 5.46875vw, 42px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary-blue);
}

.hero__title-highlight {
  color: var(--color-primary-red);
}

.hero__subtitle {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-body);
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media (min-width: 1200px) {
  .hero__buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.hero__media {
  position: relative;
  max-width: 358px;
  margin: 24px auto 0;
  z-index: 1;
}
@media (min-width: 768px) {
  .hero__media {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
@media (min-width: 1200px) {
  .hero__media {
    position: relative;
    max-width: 502px;
  }
}
@media (min-width: 1360px) {
  .hero__media {
    min-width: 502px;
    margin: 0;
  }
}

.hero__image {
  width: 100%;
  height: auto;
}

.hero__badge {
  position: absolute;
  bottom: 16px;
  left: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-primary-blue-lightest);
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .hero__badge {
    left: auto;
    right: 16px;
  }
}
@media (min-width: 1400px) {
  .hero__badge {
    bottom: 16px;
    right: 0;
    transform: translateX(40%);
    bottom: 90px;
  }
}

.hero__badge-icon {
  width: 40px;
  height: 40px;
}

.hero__badge-text {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: var(--color-primary-blue);
  text-transform: uppercase;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-primary);
  font-weight: 700;
  border-radius: 100vmax;
  cursor: pointer;
  transform-origin: center;
  transition: all 0.3s ease;
}

.button--primary {
  background-color: var(--color-primary-blue);
  color: var(--color-neutral-50);
  font-size: 18px;
  line-height: 1;
  padding: 16px 24px 16px 32px;
}
@media (pointer: fine) {
  .button--primary {
    padding: 16px 50px 16px 32px;
  }
  .button--primary:hover {
    background-color: #2c5578;
  }
  .button--primary:hover .button__icon {
    transform: translateX(20px);
  }
  .button--primary:active {
    transform: scale(0.98);
  }
}

.button--ghost {
  background-color: transparent;
  color: var(--color-primary-blue);
  font-size: 18px;
  line-height: 1;
  padding: 16px 24px;
  border: 1px solid var(--color-primary-blue);
}
.button--ghost:hover {
  border-color: #2c5578;
  color: #2c5578;
}
.button--ghost:active {
  transform: scale(0.98);
}

.button--cta {
  background-color: var(--color-primary-orange);
  color: var(--color-neutral-50);
  font-size: 22px;
  line-height: 1.5;
  padding: 20px 32px 20px 48px;
  letter-spacing: 0.26px;
  border-radius: 8px;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 400px) {
  .button--cta {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (pointer: fine) {
  .button--cta {
    padding: 20px 57px 20px 48px;
  }
  .button--cta:hover {
    background-color: #ef6707;
  }
  .button--cta:hover .button__icon {
    transform: translateX(20px);
  }
  .button--cta:active {
    transform: scale(0.98);
  }
}
@media (min-width: 768px) {
  .button--cta {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .button--cta {
    font-size: 26px;
  }
}

.button--cta-summary {
  padding: 8px 8px 12px 8px;
  gap: 8px;
}
@media (min-width: 500px) {
  .button--cta-summary {
    padding: 20px 32px 20px 48px;
    gap: 16px;
  }
}
@media (pointer: fine) {
  .button--cta-summary {
    padding: 20px 57px 20px 48px;
  }
}

.button--phone {
  background-color: #fff;
  border: 2px solid var(--color-primary-orange);
  color: var(--color-primary-orange);
  font-size: 26px;
  line-height: 1.5;
  padding: 16px 32px 16px 32px;
  letter-spacing: 0.26px;
  border-radius: 8px;
  width: 100%;
}
.button--phone:hover {
  border-color: #ef6707;
  color: #ef6707;
}
.button--phone:active {
  transform: scale(0.98);
}
@media (min-width: 400px) {
  .button--phone {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (min-width: 768px) {
  .button--phone {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  .button--phone {
    font-size: 32px;
  }
}

.button__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.button.hidden {
  display: none;
}

.button:not(.hidden) {
  display: flex;
}

.trust-badges {
  background-color: var(--color-neutral-white);
  padding: 12px 0;
  box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.02);
}
@media (min-width: 768px) {
  .trust-badges {
    padding: 8px 0;
  }
}

.trust-badges__container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  -moz-column-gap: 16px;
       column-gap: 16px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .trust-badges__container {
    padding: 0 32px;
    justify-content: space-between;
  }
}

.trust-badges__logo {
  width: auto;
}
.trust-badges__logo:nth-child(1) {
  height: 42px;
}
.trust-badges__logo:nth-child(2) {
  height: 46px;
}
.trust-badges__logo:nth-child(3) {
  height: 30px;
}
.trust-badges__logo:nth-child(4) {
  height: 45px;
}

.section-laboratory {
  padding: 32px 0 12px;
}
@media (min-width: 768px) {
  .section-laboratory {
    padding: 40px 0 20px;
  }
}

.section-laboratory__container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .section-laboratory__container {
    padding: 0 32px;
  }
}

.section-laboratory__title {
  font-family: var(--font-secondary);
  font-size: clamp(26px, 4.1666666667vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-heading);
}

.section-laboratory__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-body);
}

.section-laboratory__media {
  width: 100%;
  max-width: 896px;
  border-radius: 16px;
  overflow: hidden;
}

.section-laboratory__image {
  width: 100%;
  height: auto;
}

.section-benefits {
  padding: 12px 0;
}
@media (min-width: 768px) {
  .section-benefits {
    padding: 20px 0;
  }
}

.section-benefits__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-benefits__cards {
  max-width: 1224px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 271px;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .section-benefits__cards {
    grid-template-columns: repeat(2, 271px);
    gap: 24px;
    padding: 0 32px;
  }
}
@media (min-width: 1230px) {
  .section-benefits__cards {
    grid-template-columns: repeat(4, 271px);
  }
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to bottom, var(--color-primary-blue-lighter), rgba(255, 255, 255, 0));
  border-radius: 16px;
  padding: 16px 0;
  width: 271px;
  max-width: 271px;
  min-height: 271px;
}
@media (min-width: 768px) {
  .benefit-card {
    padding: 24px 0;
    gap: 16px;
  }
}

.benefit-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.benefit-card__icon {
  width: 188px;
  height: auto;
}

.benefit-card__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-body);
  text-align: center;
  padding: 0 16px;
}

.section-benefits__summary {
  font-size: 20px;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .section-benefits__summary {
    padding: 0 32px;
  }
}

.section-before-after {
  padding: 12px 0 52px;
}
@media (min-width: 768px) {
  .section-before-after {
    padding: 20px 0 60px;
  }
}

.section-before-after__container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .section-before-after__container {
    padding: 0 32px;
  }
}

.section-before-after__title {
  font-family: var(--font-secondary);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-heading);
}
@media (min-width: 768px) {
  .section-before-after__title {
    font-size: 32px;
  }
}

.section-before-after__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-body);
}

.section-before-after__card {
  background-color: var(--color-creamy-50);
  border: 1px solid var(--color-creamy-200);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.07);
}
@media (min-width: 768px) {
  .section-before-after__card {
    padding: 32px;
  }
}

.section-before-after__images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.section-before-after__image-wrap {
  position: relative;
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 346px;
  height: 329px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.section-before-after__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-before-after__number {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  background-color: var(--color-primary-blue-lighter);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: var(--color-text-body);
  padding-bottom: 2px;
}

.section-before-after__description {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-body);
}

.section-discovery {
  padding: 12px 0;
}
@media (min-width: 768px) {
  .section-discovery {
    padding: 20px 0;
  }
}

.section-discovery__container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .section-discovery__container {
    padding: 0 32px;
    gap: 24px;
  }
}

.discovery-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .discovery-card {
    flex-direction: row;
    gap: 40px;
  }
}

@media (min-width: 768px) {
  .discovery-card--reverse {
    flex-direction: row-reverse;
  }
}

.discovery-card__media {
  width: 100%;
  max-width: 350px;
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .discovery-card__media {
    min-width: 314px;
  }
}
@media (min-width: 1200px) {
  .discovery-card__media {
    min-width: 350px;
  }
}

.discovery-card__image {
  width: 100%;
  height: auto;
}

.discovery-card__text {
  font-family: var(--font-secondary);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-body);
  padding: 0 16px;
}
@media (min-width: 768px) {
  .discovery-card__text {
    font-size: 22px;
    text-align: left;
    padding: 0 40px;
  }
}
@media (min-width: 768px) {
  .discovery-card--reverse .discovery-card__text {
    text-align: right;
  }
}

.section-discovery__quote {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 24px 0;
}

.section-discovery__quote-text {
  font-family: var(--font-secondary);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-body);
}

.section-discovery__quote-author {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-body);
  text-align: right;
}

.section-testimonials {
  padding: 12px 0;
}
@media (min-width: 768px) {
  .section-testimonials {
    padding: 20px 0;
  }
}

.section-testimonials__container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .section-testimonials__container {
    padding: 0 32px;
  }
}

.testimonial {
  background-color: var(--color-creamy-50);
  border: 2px solid var(--color-creamy-200);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}

.testimonial__media {
  min-width: 221px;
  width: 221px;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
}

.testimonial__image {
  display: block;
  width: 100%;
  height: auto;
}

.testimonial__content {
  flex: 1 1 250px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  color: var(--color-text-body);
}

.testimonial__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--color-text-body);
}

.testimonial__author {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-text-body);
}

.section-offer {
  padding: 12px 0 32px;
}
@media (min-width: 768px) {
  .section-offer {
    padding: 20px 0 40px;
  }
}

.section-offer__container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .section-offer__container {
    padding: 0 32px;
  }
}

.section-offer__text--lead {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-body);
}
@media (min-width: 768px) {
  .section-offer__text--lead {
    font-size: 24px;
  }
}

.section-offer__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-body);
}

.section-offer__text--underline {
  text-decoration: underline;
}

.section-offer__media {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.section-offer__image {
  width: 100%;
  height: auto;
}

.section-offer__title {
  font-family: var(--font-secondary);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-heading);
}
@media (min-width: 768px) {
  .section-offer__title {
    font-size: 32px;
  }
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  width: 100%;
}
@media (min-width: 768px) {
  .cta {
    padding: 20px 0;
  }
}

.cta__text {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  color: var(--color-primary-orange);
  text-align: center;
  padding: 16px 0;
}

.section-comments {
  padding: 32px 0;
}
@media (min-width: 768px) {
  .section-comments {
    padding: 40px 0;
  }
}

.section-comments__container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .section-comments__container {
    padding: 0 32px;
  }
}

.section-comments__title {
  font-family: var(--font-secondary);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-heading);
  text-align: center;
}
@media (min-width: 768px) {
  .section-comments__title {
    font-size: 32px;
  }
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comment {
  background-color: var(--color-creamy-50);
  border: 1px solid var(--color-creamy-200);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.comment__avatar {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.comment__avatar--default {
  background-color: var(--color-neutral-200);
}

.comment__content {
  flex: 1 1 250px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 20px;
}

.comment__name {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  color: var(--color-text-body);
}

.comment__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-body);
}

.footer {
  background-color: var(--color-neutral-200);
  padding: 20px 0px;
  font-size: 14px;
}

.footer__copyright-text-year {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.footer__copyright-text-year p {
  font-weight: 400;
  line-height: 1;
  color: var(--color-text-grey);
}

.footer__copyright {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .footer__copyright {
    padding: 0 32px;
  }
}
.footer__copyright > p {
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-grey);
  text-align: center;
}

.footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-grey);
}
@media (min-width: 768px) {
  .footer__links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.footer__links a {
  text-decoration: underline;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.footer__links a:hover {
  color: #000;
}

.footer__text {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-grey);
  text-align: center;
}
@media (min-width: 768px) {
  .footer__text {
    font-size: 12px;
  }
}
@media (min-width: 1024px) {
  .footer__text {
    font-size: 12px;
  }
}

.summary__title {
  width: 100%;
  font-size: clamp(34px, 5.2083333333vw, 48px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 2.4px;
  color: #faf7f5;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  padding: 8px clamp(16px, 4.1666666667vw, 32px);
  background-color: #00bd84;
  word-break: break-word;
}
@media (min-width: 768px) {
  .summary__title {
    font-size: 48px;
  }
}

.summary__container {
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1224px;
  margin: 0 auto;
  color: #222222;
}
@media (min-width: 768px) {
  .summary__container {
    padding: 64px 32px;
  }
}

.summary__product {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  align-items: center;
}

.summary__product-image {
  width: 100%;
  max-width: 283px;
  min-width: 283px;
  height: auto;
  position: relative;
}
.summary__product-image::before {
  z-index: -1;
  content: "";
  display: block;
  position: absolute;
  width: 450px;
  height: 341px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0, 212, 146, 0.2);
  filter: blur(60px);
}

.summary__product-content {
  max-width: 718px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.summary__product-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 140%; /* 42px */
}
@media (min-width: 768px) {
  .summary__product-title {
    font-size: 30px;
  }
}

.summary__product-title-highlight {
  color: var(--colors-green-500, #00bd84);
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 78px */
}
@media (min-width: 768px) {
  .summary__product-title-highlight {
    font-size: 52px;
  }
}

.text-red {
  color: #ff2626;
}

.text-date {
  border-radius: 8px;
  background: #feffc2;
  padding-inline: 4px;
}

.summary__text-lg {
  font-size: 22px;
  line-height: 1.5;
}

.summary__text-md {
  font-size: 20px;
  line-height: 1.7;
}

.summary__cta {
  position: relative;
  max-width: 768px;
  margin: 0 auto;
  border-radius: 16px;
  padding: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .summary__cta {
    padding: 32px;
  }
}
.summary__cta::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #00d492 0%, #ff8904 50%, #00d492 100%);
  border-radius: 16px;
  position: absolute;
  top: -4px;
  left: 0;
  z-index: -1;
}

.text-orange {
  color: #fe8615;
}

.summary__cta-title {
  font-size: 22px;
}
@media (min-width: 768px) {
  .summary__cta-title {
    font-size: 30px;
  }
}

.summary__info {
  max-width: 841px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  background: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
}
@media (min-width: 768px) {
  .summary__info {
    padding: 32px;
  }
}

.text-icon {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: center;
  justify-content: center;
}

.summary__info-divider {
  background-color: #e7e7e7;
  width: 100%;
  height: 1px;
}

.summary__columns {
  display: grid;
  grid-template-columns: 300px;
  justify-content: center;
  gap: 24px;
}
@media (min-width: 768px) {
  .summary__columns {
    grid-template-columns: repeat(2, 300px);
  }
}

.summary__column {
  text-align: left;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 20px;
  line-height: 1.7;
}

.summary__column-icon {
  margin-top: 7px;
}/*# sourceMappingURL=main.css.map */