html {
  box-sizing: border-box;
  font-size: 16px;
}

.section-anchor {
  scroll-margin-top: 100px;
}

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

img {
  max-width: 100%;
}

a:focus,
button:focus {
  outline: none;
}

input {
  border: none;
  outline: none;
}

textarea {
  border: none;
  outline: none;
  resize: none;
}

@font-face {
  font-family: "GolosText";
  src: local("GolosText"), url("fonts/GolosText-Regular.woff2") format("woff2"), url("fonts/GolosText-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GolosText";
  src: local("GolosText"), url("fonts/GolosText-Medium.woff2") format("woff2"), url("fonts/GolosText-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GolosText";
  src: local("GolosText"), url("fonts/GolosText-SemiBold.woff2") format("woff2"), url("fonts/GolosText-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PTSerif";
  src: local("PTSerif"), url("fonts/PTSerif-Regular.woff2") format("woff2"), url("fonts/PTSerif-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PTSerif";
  src: local("PTSerif"), url("fonts/PTSerif-Bold.woff2") format("woff2"), url("fonts/PTSerif-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-family: "GolosText", sans-serif;
  --second-family: "PTSerif", sans-serif;
  --f-regular: 400;
  --f-medium: 500;
  --f-semibold: 600;
  --f-bold: 700;
  --fs-40: 40px;
  --fs-35: 35px;
  --fs-30: 30px;
  --fs-25: 25px;
  --fs-23: 23px;
  --fs-18: 18px;
  --fs-16: 16px;
  --fs-14: 14px;
  --fs-12: 12px;
  --fs-33: 33px;
  --lh-110: 110%;
  --lh-120: 120%;
  --lh-150: 150%;
  --purple: #7a4b8f;
  --white: #fff;
  --purple-dark: #52375e;
  --bg: #f7f9fc;
  --bg-in-bg: #ecf1f8;
  --pink: #cd8ab8;
  --bg-in-purple-dark: #644571;
  --green: #4b8f4b;
  --transition: 0.3s;
}

@media (min-width: 768px) {
  :root {
    --fs-33: 42px;
  }
}
@media (min-width: 1024px) {
  :root {
    --fs-40: 36px;
    --fs-35: 30px;
    --fs-30: 26px;
    --fs-25: 22px;
    --fs-23: 20px;
    --fs-18: 17px;
    --fs-16: 15px;
    --fs-14: 13px;
    --fs-12: 11px;
    --fs-33: 58px;
  }
}
@media (min-width: 1200px) {
  :root {
    --fs-40: 52px;
    --fs-35: 40px;
    --fs-30: 35px;
    --fs-25: 30px;
    --fs-23: 25px;
    --fs-18: 20px;
    --fs-16: 18px;
    --fs-14: 15px;
    --fs-12: 13px;
    --fs-33: 66px;
  }
}
@media (min-width: 1440px) {
  :root {
    --fs-40: 64px;
    --fs-35: 48px;
    --fs-30: 42px;
    --fs-25: 36px;
    --fs-23: 29px;
    --fs-18: 24px;
    --fs-16: 20px;
    --fs-14: 16px;
    --fs-12: 14px;
    --fs-33: 80px;
  }
}
@media (min-width: 1600px) {
  :root {
    --fs-40: 78px;
    --fs-35: 54px;
    --fs-30: 48px;
    --fs-25: 40px;
    --fs-23: 32px;
    --fs-18: 28px;
    --fs-16: 22px;
    --fs-14: 17px;
    --fs-33: 88px;
  }
}
@media (min-width: 1680px) {
  :root {
    --fs-40: 90px;
    --fs-35: 60px;
    --fs-30: 52px;
    --fs-25: 45px;
    --fs-23: 35px;
    --fs-18: 30px;
    --fs-16: 24px;
    --fs-14: 18px;
  }
}
body {
  position: relative;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--font-family);
  font-size: var(--fs-14);
  font-weight: var(--f-regular);
  line-height: var(--lh-150);
  font-style: normal;
  color: var(--purple);
  background-color: var(--bg);
  overflow-x: hidden;
}

.menu-open {
  overflow: hidden;
}
@media (min-width: 768px) {
  .menu-open {
    overflow: auto;
    overflow-x: hidden;
  }
}
.menu-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100vh;
  background: var(--purple-dark);
  opacity: 0.6;
  z-index: 2;
}
@media (min-width: 768px) {
  .menu-open::before {
    display: none;
  }
}
.menu-open .header {
  background-color: var(--bg);
}
@media (min-width: 768px) {
  .menu-open .header {
    background-color: var(--white);
  }
}
.menu-open .header.header-bg {
  background-color: var(--bg);
}
.menu-open .header-btn {
  background-color: var(--white);
}
.menu-open .header-btn__img.open {
  display: none;
}
.menu-open .header-btn__img.close {
  display: block;
}
.menu-open .header__nav {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}

@media (min-width: 600px) {
  .instruction_menu_item {
    display: none;
  }
}

main {
  flex-grow: 1;
}

.inner-page-content {
  padding-top: 5.35em;
}
@media (min-width: 1024px) {
  .inner-page-content {
    padding-top: 5.3em;
  }
}
@media (min-width: 1200px) {
  .inner-page-content {
    padding-top: 6.66em;
  }
}
@media (min-width: 1440px) {
  .inner-page-content {
    padding-top: 6.68em;
  }
}
@media (min-width: 1480px) {
  .inner-page-content {
    padding-top: 7.81em;
  }
}
@media (min-width: 1600px) {
  .inner-page-content {
    padding-top: 7.64em;
  }
}
@media (min-width: 1680px) {
  .inner-page-content {
    padding-top: 7.44em;
  }
}

.container {
  max-width: calc(1480px + 4.44em);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.07em;
}
@media (min-width: 1200px) {
  .container {
    padding: 0 2em;
  }
}
@media (min-width: 1480px) {
  .container {
    padding: 0 2.22em;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1.125em 1.66em;
  border-radius: 40px;
  font-weight: var(--f-medium);
  font-size: var(--fs-12);
  line-height: var(--lh-150);
  text-transform: uppercase;
  background-color: var(--bg);
  transition: background-color var(--transition);
}
@media (min-width: 1200px) {
  .btn {
    padding: 1.21em 2.85em;
  }
}
.btn:hover {
  background-color: var(--bg-in-bg);
}
.btn.btn-purple {
  color: var(--white);
  background-color: var(--purple);
}
.btn.btn-purple:hover {
  background-color: var(--purple-dark);
}
.btn.btn-download::after {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 1.25em;
  height: 1.25em;
  background-image: url("img/download.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (min-width: 1200px) {
  .btn.btn-download::after {
    width: 1.42em;
    height: 1.42em;
  }
}

.btn-box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-arrow {
  padding: 0.41em;
  padding-left: 1.66em;
  display: inline-flex;
  align-items: center;
  gap: 2.5em;
  border-radius: 50px;
  font-weight: var(--f-medium);
  font-size: var(--fs-12);
  line-height: var(--lh-150);
  text-transform: uppercase;
  background: linear-gradient(122deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
@media (min-width: 1200px) {
  .btn-arrow {
    padding: 0.71em;
    padding-left: 1.78em;
    gap: 5.21em;
  }
}
.btn-arrow:hover {
  background: var(--white);
}
.btn-arrow:hover .btn-arrow__img {
  background-color: var(--purple-dark);
}
.btn-arrow:hover .btn-arrow__img svg path {
  stroke: var(--white);
}
.btn-arrow__img {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.33em;
  height: 3.33em;
  border-radius: 50%;
  background-color: var(--white);
  transition: background-color var(--transition);
}
@media (min-width: 1200px) {
  .btn-arrow__img {
    width: 3.42em;
    height: 3.42em;
  }
}
.btn-arrow__img svg path {
  transition: stroke var(--transition);
}

.section-head {
  margin-bottom: 2.14em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.07em;
}
@media (min-width: 768px) {
  .section-head {
    align-items: center;
    text-align: center;
  }
}
@media (min-width: 1480px) {
  .section-head {
    margin-bottom: 2.6em;
    gap: 1.11em;
  }
}
.section-head__title {
  font-family: var(--second-family);
  font-size: var(--fs-25);
  line-height: var(--lh-120);
}
.section-head__descr {
  font-family: var(--font-family);
  font-weight: var(--f-medium);
  font-size: var(--fs-16);
  line-height: var(--lh-150);
}

.tag {
  display: inline-block;
  padding: 0.5em 1.07em;
  border-radius: 30px;
  font-weight: var(--f-semibold);
  text-align: center;
  background-color: var(--bg-in-bg);
}
@media (min-width: 1200px) {
  .tag {
    padding: 0.41em 0.83em;
    font-weight: var(--f-regular);
    font-size: var(--fs-16);
    line-height: var(--lh-150);
  }
}

.stork {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 10em;
  aspect-ratio: 351/422;
  background-image: url("img/stork.png");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 1024px) {
  .stork {
    right: 2em;
    width: 14em;
    transform: translateY(-4%);
  }
}
@media (min-width: 1200px) {
  .stork {
    width: 16em;
    transform: translateY(-4%);
  }
}
@media (min-width: 1480px) {
  .stork {
    width: 19.5em;
    right: 3em;
    transform: translateY(-9%);
  }
}
@media (min-width: 1800px) {
  .stork {
    transform: translateY(-2%);
  }
}
@media (min-width: 1920px) {
  .stork {
    right: auto;
    left: 50%;
    transform: translate(158%, -2%);
  }
}

.round::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 180/13;
  background-image: url("img/round-top-white.svg");
  background-size: cover;
  background-position: bottom;
}
.round::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 180/13;
  background-image: url("img/round-bottom-white.svg");
  background-size: cover;
  background-position: top;
}
.round__inner {
  background-color: var(--white);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  transition: background-color var(--transition), box-shadow var(--transition);
}
.header.header-home {
  background-color: var(--bg);
}
@media (min-width: 1024px) {
  .header.header-home {
    background-color: transparent;
  }
}
.header.header-home .header-btn {
  background-color: var(--white);
}
@media (min-width: 1024px) {
  .header.header-home .header__nav {
    background-color: var(--white);
  }
}
.header.header-home .header__btn-instruction {
  background-color: var(--white);
}
@media (min-width: 1024px) {
  .header.header-home .header__btn-instruction {
    background-color: var(--bg);
  }
}
.header.header-home .header__btn-instruction:hover {
  background-color: var(--bg-in-bg);
}
.header.header-bg {
  background-color: var(--white);
  box-shadow: 4px 4px 10px var(--bg);
}
.header.header-bg.header-home {
  background-color: var(--bg);
  box-shadow: 4px 4px 10px var(--white);
}
@media (min-width: 1024px) {
  .header.header-bg.header-home {
    background-color: var(--white);
  }
}
@media (min-width: 1024px) {
  .header.header-bg {
    background-color: var(--white);
  }
  .header.header-bg .header__nav {
    background-color: var(--bg);
  }
}
@media (min-width: 1200px) {
  .header.header-bg .header__box {
    padding: 1.07em 0;
  }
}
.header__box {
  padding: 1.07em 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  transition: padding var(--transition);
}
@media (min-width: 1200px) {
  .header__box {
    padding: 1.66em 0;
  }
}
@media (min-width: 1480px) {
  .header__box {
    padding: 2.22em 0;
  }
}
.header__logo {
  display: block;
  width: 10em;
}
@media (min-width: 1024px) {
  .header__logo {
    width: 11.5em;
  }
}
@media (min-width: 1200px) {
  .header__logo {
    width: 13.55em;
  }
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.header__nav {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  width: 100%;
  padding: 2.14em 1.07em 3.21em;
  background-color: var(--bg);
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  transition: opacity var(--transition), z-index var(--transition), visibility var(--transition);
}
@media (min-width: 1024px) {
  .header__nav {
    position: static;
    width: auto;
    padding: 0.94em 2.22em;
    transform: translateY(0);
    border-radius: 40px;
    background-color: var(--bg);
    opacity: 1;
    z-index: 0;
    visibility: visible;
  }
}
.header__nav::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  transform: translateY(100%);
  display: block;
  width: 100%;
  aspect-ratio: 180/13;
  background-image: url("img/round-bottom-bg.svg");
  background-size: cover;
  background-position: top;
}
@media (min-width: 1024px) {
  .header__nav::after {
    display: none;
  }
}
.header__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25em;
  font-weight: var(--f-medium);
  font-size: var(--fs-16);
  line-height: var(--lh-150);
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .header__list {
    flex-direction: row;
    font-size: var(--fs-12);
    line-height: var(--lh-150);
    gap: 2.85em;
  }
}
.header__list a {
  transition: color var(--transition);
}
.header__list a:hover {
  color: var(--pink);
}
.header__btn-box {
  display: flex;
  align-items: center;
  gap: 0.71em;
}
.header__btn-instruction {
  display: none;
}
@media (min-width: 600px) {
  .header__btn-instruction {
    display: inline-flex;
  }
}
.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  width: 3.21em;
  height: 3.21em;
  background-color: var(--bg);
  transition: background-color var(--transition);
}
@media (min-width: 1024px) {
  .header-btn {
    display: none;
  }
}
.header-btn__img.close {
  display: none;
}

.footer {
  position: relative;
  padding: 5.71em 0 2.85em;
}
@media (min-width: 1200px) {
  .footer {
    padding: 8.33em 0 3.88em;
  }
}
.footer::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-45%);
  display: block;
  width: 20.21em;
  height: 37.78em;
  background-image: url("img/footer-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  z-index: -1;
}
@media (min-width: 1200px) {
  .footer::before {
    top: auto;
    right: auto;
    left: 0;
    bottom: 0;
    width: 34.66em;
    height: 31em;
    transform: translateY(0);
    background-image: url("img/footer-bg-desktop.png");
    background-position: left bottom;
  }
}
.footer__content {
  position: relative;
  z-index: 1;
  margin-bottom: 1.07em;
  padding: 1.78em;
  display: flex;
  flex-direction: column;
  gap: 2.85em;
  border-radius: 20px;
  background-color: var(--white);
}
@media (min-width: 1200px) {
  .footer__content {
    margin-bottom: 1.66em;
    padding: 2.22em;
    gap: 3.33em;
  }
}
.footer-top {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.42em;
  padding-bottom: 2.85em;
}
@media (min-width: 1024px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .footer-top {
    padding-bottom: 3.33em;
  }
}
.footer-top::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  height: 2px;
  width: 100%;
  background-image: url("img/dashed-line.svg");
  background-repeat: repeat-x;
}
.footer-top__logo {
  display: block;
  width: 9.85em;
}
@media (min-width: 1200px) {
  .footer-top__logo {
    width: 10.88em;
  }
}
.footer-top__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer-top__nav {
  margin-bottom: 0.71em;
}
@media (min-width: 768px) {
  .footer-top__nav {
    margin-bottom: 0;
  }
}
.footer-top__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.83em;
  font-weight: var(--f-medium);
  font-size: var(--fs-12);
  line-height: var(--lh-150);
  text-transform: uppercase;
}
@media (min-width: 480px) {
  .footer-top__list {
    justify-content: flex-start;
    gap: 1.66em;
  }
}
.footer-top__list a {
  transition: color var(--transition);
}
.footer-top__list a:hover {
  color: var(--pink);
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.42em;
}
@media (min-width: 900px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-bottom__box {
  display: flex;
  flex-direction: column;
  gap: 1.07em;
}
@media (min-width: 768px) {
  .footer-bottom__box {
    flex-direction: row;
    align-items: center;
    gap: 1.61em;
  }
}
.footer-bottom__logo {
  width: 5.5em;
}
@media (min-width: 1200px) {
  .footer-bottom__logo {
    width: 7em;
  }
}
.footer-bottom__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer-bottom__text {
  display: flex;
  flex-direction: column;
  gap: 0.41em;
  font-weight: var(--f-medium);
  font-size: var(--fs-12);
  line-height: var(--lh-150);
  opacity: 0.5;
}
@media (min-width: 1200px) {
  .footer-bottom__text {
    gap: 0.71em;
  }
}
.footer-bottom__list {
  display: flex;
  flex-direction: column;
  gap: 0.41em;
  font-weight: var(--f-medium);
  font-size: var(--fs-12);
  line-height: var(--lh-150);
}
@media (min-width: 900px) {
  .footer-bottom__list {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .footer-bottom__list {
    gap: 0.71em;
  }
}
.footer-bottom__list a {
  border-bottom: 1px solid transparent;
  opacity: 0.5;
  transition: border-bottom var(--transition), opacity var(--transition);
}
.footer-bottom__list a:hover {
  border-bottom: 1px solid var(--purple);
  opacity: 1;
}
.footer__disclaimer {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: var(--fs-33);
  line-height: var(--lh-110);
  text-transform: uppercase;
  opacity: 0.15;
}

.hero {
  position: relative;
}
@media (min-width: 600px) {
  .hero {
    padding-top: 15em;
  }
}
@media (min-width: 768px) {
  .hero {
    padding-top: 0;
  }
}
@media (min-width: 600px) {
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 15em;
    background-color: var(--bg);
    box-shadow: 0px 5px 10px var(--bg), 0px 20px 30px var(--bg), 0px 40px 50px var(--bg);
  }
}
@media (min-width: 768px) {
  .hero::before {
    display: none;
  }
}
.hero-img {
  width: 100%;
}
@media (min-width: 2500px) {
  .hero-img {
    height: 800px;
  }
}
.hero-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.hero-content {
  position: absolute;
  width: 100%;
  top: 18.3%;
  bottom: 13.3%;
  display: flex;
}
@media (min-width: 600px) {
  .hero-content {
    top: 7.14em;
  }
}
@media (min-width: 768px) {
  .hero-content {
    top: 39%;
  }
}
@media (min-width: 1480px) {
  .hero-content {
    top: 37%;
  }
}
@media (min-width: 1920px) {
  .hero-content {
    top: 31%;
  }
}
.hero-content__box {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 3.33em;
  justify-content: space-between;
}
@media (min-width: 900px) {
  .hero-content__box {
    justify-content: flex-start;
  }
}
.hero-content__title {
  margin-bottom: 0.375em;
  text-align: center;
  font-family: var(--second-family);
  font-size: var(--fs-40);
  line-height: var(--lh-110);
}
@media (min-width: 1200px) {
  .hero-content__title {
    margin-bottom: 0.22em;
  }
}
.hero-content__title sup {
  font-size: 50%;
  top: -0.9em;
}
.hero-content__text {
  text-align: center;
  font-size: var(--fs-16);
  line-height: var(--lh-150);
}
@media (min-width: 768px) {
  .hero-content__text {
    margin: 0 auto;
    max-width: 20em;
  }
}
@media (min-width: 1200px) {
  .hero-content__text {
    max-width: none;
    margin: 0;
  }
}
.hero-content__btn {
  text-align: center;
}

.reasons {
  position: relative;
  padding: 5.71em 0;
}
@media (min-width: 1200px) {
  .reasons {
    padding: 8em 0;
  }
}
.reasons::before {
  content: "";
  position: absolute;
  top: 7.5em;
  right: 0;
  display: block;
  width: 20.21em;
  height: 37.78em;
  background-image: url("img/reason-bg-flower.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
  z-index: -1;
}
@media (min-width: 480px) {
  .reasons::before {
    top: 5em;
  }
}
@media (min-width: 640px) {
  .reasons::before {
    top: 3em;
  }
}
@media (min-width: 768px) {
  .reasons::before {
    top: 2em;
  }
}
@media (min-width: 1024px) {
  .reasons::before {
    display: none;
  }
}
@media (min-width: 768px) {
  .reasons__box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.83em;
  }
}
@media (min-width: 900px) {
  .reasons__box {
    grid-template-columns: 2fr 1fr;
  }
}
.reasons-content {
  margin-bottom: 0.71em;
  padding: 1.78em;
  border-radius: 20px;
  background-color: var(--white);
}
@media (min-width: 768px) {
  .reasons-content {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .reasons-content {
    padding: 2.22em;
    border-radius: 40px;
  }
}
.reasons-content__title {
  position: relative;
  margin-bottom: 1.42em;
  padding-bottom: 1.42em;
  font-weight: var(--f-semibold);
}
.reasons-content__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(205, 138, 184, 0.05), rgba(205, 138, 184, 0.25), rgba(205, 138, 184, 0.05));
}
.reasons-content__text p:not(:last-child) {
  margin-bottom: 0.71em;
}
@media (min-width: 1200px) {
  .reasons-content__text p:not(:last-child) {
    margin-bottom: 0.8em;
  }
}
.reasons__img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .reasons__img {
    position: relative;
  }
}
@media (min-width: 1200px) {
  .reasons__img {
    border-radius: 40px;
  }
}
.reasons__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (min-width: 768px) {
  .reasons__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.reasons .stork {
  display: none;
}
@media (min-width: 1024px) {
  .reasons .stork {
    display: block;
    transform: translateY(-18%);
  }
}
@media (min-width: 1200px) {
  .reasons .stork {
    transform: translateY(-15%);
  }
}
@media (min-width: 1680px) {
  .reasons .stork {
    transform: translateY(-20%);
  }
}
@media (min-width: 1920px) {
  .reasons .stork {
    transform: translate(158%, -20%);
  }
}

.signal {
  position: relative;
  padding: 3.92em 0 5.71em;
}
@media (min-width: 768px) {
  .signal {
    padding: 0.66em 0 5.71em;
  }
}
@media (min-width: 1200px) {
  .signal {
    padding: 0.66em 0 8.33em;
  }
}
@media (min-width: 1024px) {
  .signal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-102%);
    display: block;
    width: 29.77em;
    height: 27.44em;
    background-image: url("img/reason-bg-flower-desktop.png");
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
  }
  .signal::after {
    content: "";
    position: absolute;
    top: 8.33em;
    bottom: 5.71em;
    right: 0;
    display: block;
    aspect-ratio: 364/819;
    background-image: url("img/signal-flower.png");
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media (min-width: 1200px) {
  .signal::after {
    bottom: 8.33em;
  }
}
.signal .container {
  position: relative;
  z-index: 1;
}
@media (min-width: 1480px) {
  .signal .section-head {
    margin-bottom: 1.8em;
  }
}
.signal .section-head__descr {
  max-width: 16em;
}
@media (min-width: 480px) {
  .signal .section-head__descr {
    max-width: none;
  }
}
.signal__box {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background-color: var(--bg);
  overflow: hidden;
}
@media (min-width: 900px) {
  .signal__box {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .signal__box {
    border-radius: 40px;
  }
}
.signal-content {
  padding: 1.78em;
  display: flex;
  flex-direction: column;
}
@media (min-width: 900px) {
  .signal-content {
    max-width: 60%;
  }
}
@media (min-width: 1200px) {
  .signal-content {
    padding: 2.77em;
    padding-right: 2.2em;
  }
}
.signal-content__list {
  margin-bottom: 1.78em;
  display: flex;
  flex-direction: column;
  gap: 1.07em;
}
@media (min-width: 1200px) {
  .signal-content__list {
    margin-bottom: 2.77em;
    gap: 0.83em;
  }
}
.signal-content-item {
  display: flex;
  gap: 0.71em;
}
@media (min-width: 1200px) {
  .signal-content-item {
    gap: 1.11em;
  }
}
.signal-content-item__icon {
  flex-shrink: 0;
  width: 2.85em;
  height: 2.85em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--pink);
}
@media (min-width: 1200px) {
  .signal-content-item__icon {
    width: 2.6em;
    height: 2.6em;
  }
}
.signal-content-item__icon img {
  width: 1.28em;
  height: 1.28em;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (min-width: 1200px) {
  .signal-content-item__icon img {
    width: 1.33em;
    height: 1.33em;
  }
}
.signal-content-item__text {
  align-self: center;
}
.signal-content__text {
  padding: 0.93em 1.25em;
  border-left: 2px solid var(--purple);
  border-radius: 20px;
  font-weight: var(--f-medium);
  font-size: var(--fs-16);
  line-height: var(--lh-150);
  background-color: var(--white);
}
@media (min-width: 768px) {
  .signal-content__text {
    max-width: 29.625em;
  }
}
.signal__img {
  align-self: flex-end;
  max-width: 40em;
  width: 100%;
}
@media (min-width: 768px) {
  .signal__img {
    max-width: 50em;
  }
}
@media (min-width: 900px) {
  .signal__img {
    align-self: stretch;
    height: 100%;
    width: auto;
    max-width: 29.78em;
  }
}
@media (min-width: 1024px) {
  .signal__img {
    max-width: 29.15em;
  }
}
@media (min-width: 1200px) {
  .signal__img {
    max-width: 30.1em;
  }
}
@media (min-width: 1480px) {
  .signal__img {
    max-width: 30.06em;
  }
}
@media (min-width: 1600px) {
  .signal__img {
    max-width: 30.47em;
  }
}
@media (min-width: 1680px) {
  .signal__img {
    max-width: 30.44em;
  }
}
.signal__img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: right bottom;
  object-position: right bottom;
}
@media (min-width: 900px) {
  .signal__img img {
    -o-object-position: right top;
    object-position: right top;
  }
}

.product {
  position: relative;
  padding-bottom: 3.92em;
}
@media (min-width: 768px) {
  .product {
    padding-bottom: 0.66em;
  }
}
.product::before {
  content: "";
  position: absolute;
  top: 0;
  transform: translateY(-80%);
  right: 0;
  display: block;
  width: 12em;
  height: 38.07em;
  background-image: url("img/product-flower.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}
@media (min-width: 1024px) {
  .product::before {
    right: auto;
    left: 0;
    transform: translateY(-27%);
    width: 24.33em;
    height: 40.55em;
    background-image: url("img/product-flower-desktop.png");
    background-position: left;
  }
}
.product .container {
  position: relative;
  z-index: 1;
}
.product .section-head__title {
  max-width: 25.86em;
}
@media (min-width: 768px) {
  .product__box {
    display: grid;
    grid-template-columns: 1fr 40% 1fr;
    gap: 0.83em;
  }
}
@media (min-width: 1024px) {
  .product__box {
    padding-left: 3.72em;
    padding-right: 1.9em;
    grid-template-columns: 30.5% 32.7% 1fr;
  }
}
@media (min-width: 1200px) {
  .product__box {
    gap: 2em;
  }
}
.product__img {
  max-width: 26em;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .product__img {
    max-width: 22em;
  }
}
@media (min-width: 768px) {
  .product__img {
    margin-top: 0.55em;
    max-width: none;
    order: 2;
  }
}
.product__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.product__text {
  margin-bottom: 2.14em;
}
@media (min-width: 768px) {
  .product__text {
    position: relative;
    margin-bottom: 0;
    margin-top: 1.22em;
    padding-top: 1.22em;
    text-align: right;
  }
  .product__text::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 82.69%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--pink));
  }
  .product__text::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    border: 3px solid var(--pink);
    background-color: var(--white);
  }
}
@media (min-width: 1200px) {
  .product__text {
    margin-top: 2em;
    padding-top: 2.94em;
  }
}
@media (min-width: 768px) {
  .product-info {
    order: 3;
    align-self: end;
    position: relative;
    padding-top: 1.22em;
    padding-bottom: 1.22em;
  }
  .product-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 82.69%;
    height: 3px;
    background: linear-gradient(-90deg, transparent, var(--pink));
  }
  .product-info::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    border: 3px solid var(--pink);
    background-color: var(--white);
  }
}
@media (min-width: 900px) {
  .product-info {
    padding-bottom: 4em;
  }
}
@media (min-width: 1200px) {
  .product-info {
    padding-top: 2.94em;
  }
}
.product-info__title {
  margin-bottom: 1.25em;
  font-weight: var(--f-medium);
  font-size: var(--fs-16);
  line-height: var(--lh-150);
}
.product-info__list {
  display: flex;
  flex-direction: column;
  gap: 0.35em;
}
@media (min-width: 1200px) {
  .product-info__list {
    gap: 0.55em;
  }
}
.product-info__item {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1em;
  padding: 0.57em 1.28em;
  border-radius: 19px;
  background-color: var(--bg);
}
@media (min-width: 1200px) {
  .product-info__item {
    padding: 0.55em 1.11em;
    border-radius: 40px;
  }
}
.product-info__item span:last-child {
  flex-shrink: 0;
  text-align: right;
  font-weight: var(--f-semibold);
}

.components {
  position: relative;
  padding: 5.71em 0;
}
@media (min-width: 1200px) {
  .components {
    padding: 8.33em 0;
  }
}
@media (min-width: 768px) {
  .components .section-head {
    margin-bottom: 1.11em;
  }
}
@media (min-width: 768px) {
  .components .section-head__title {
    max-width: 25.51em;
  }
}
@media (min-width: 1024px) {
  .components .stork {
    transform: translateY(20%);
  }
}
@media (min-width: 1200px) {
  .components .stork {
    transform: translateY(48%);
  }
}
@media (min-width: 1480px) {
  .components .stork {
    transform: translateY(32%);
  }
}
@media (min-width: 1680px) {
  .components .stork {
    transform: translateY(36%);
  }
}
@media (min-width: 1920px) {
  .components .stork {
    transform: translate(146%, 36%);
  }
}
.components .container {
  position: relative;
}
.components__box .section-head__descr {
  margin-bottom: 1.25em;
}
@media (min-width: 768px) {
  .components__box .section-head__descr {
    text-align: center;
  }
}
.components__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.71em;
}
@media (min-width: 768px) {
  .components__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.4em;
  }
}
@media (min-width: 1024px) {
  .components__list {
    gap: 0.71em;
  }
}
.components-card {
  display: flex;
  align-items: center;
  gap: 1.42em;
  padding: 0.35em;
  padding-right: 1em;
  border-radius: 20px;
  background-color: var(--white);
}
@media (min-width: 768px) {
  .components-card {
    flex-direction: column;
    padding: 1.07em;
  }
}
@media (min-width: 1200px) {
  .components-card {
    gap: 1.2em;
    padding: 0.83em 0.83em 1.11em 1.66em;
    border-radius: 40px;
  }
}
.components-card__img {
  flex-shrink: 0;
  width: 5.85em;
  height: 5.85em;
  border-radius: 15px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .components-card__img {
    align-self: flex-end;
  }
}
@media (min-width: 1024px) {
  .components-card__img {
    border-radius: 25px;
  }
}
.components-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.components-card__text b {
  font-weight: var(--f-semibold);
}

.folic {
  position: relative;
  padding-bottom: 5.71em;
}
@media (min-width: 1200px) {
  .folic {
    padding-bottom: 8.33em;
  }
}
@media (min-width: 1480px) {
  .folic .section-head__title {
    max-width: 24.44em;
  }
}
.folic .section-head__title b {
  font-weight: var(--f-bold);
}
.folic-about {
  margin-bottom: 2.14em;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background-color: var(--white);
  overflow: hidden;
}
@media (min-width: 900px) {
  .folic-about {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .folic-about {
    margin-bottom: 3.88em;
    border-radius: 40px;
  }
}
.folic-about::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-37%);
  display: block;
  width: 9.71em;
  height: 24.71em;
  background-image: url("img/folic-flower.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  z-index: -1;
}
@media (min-width: 1024px) {
  .folic-about::before {
    right: auto;
    left: 0;
    width: 44.33em;
    height: 40.44em;
    transform: translateY(5%);
    background-image: url("img/folic-flower-desktop.png");
    background-position: left;
  }
}
.folic-about__box {
  padding: 1.78em;
  display: flex;
  flex-direction: column;
  gap: 1.42em;
}
@media (min-width: 900px) {
  .folic-about__box {
    justify-content: space-between;
    max-width: 61%;
  }
}
@media (min-width: 1024px) {
  .folic-about__box {
    max-width: 68%;
  }
}
@media (min-width: 1200px) {
  .folic-about__box {
    max-width: 64.8%;
    padding: 2.77em 1em 2.77em 1.6em;
  }
}
@media (min-width: 1440px) {
  .folic-about__box {
    max-width: 61%;
    padding: 2.77em;
    padding-right: 2.2em;
  }
}
@media (min-width: 1480px) {
  .folic-about__box {
    max-width: 59%;
  }
}
@media (min-width: 1600px) {
  .folic-about__box {
    max-width: 61%;
  }
}
@media (min-width: 1680px) {
  .folic-about__box {
    max-width: 66%;
  }
}
.folic-about-top p:not(:last-child) {
  margin-bottom: 0.71em;
}
@media (min-width: 1200px) {
  .folic-about-top p:not(:last-child) {
    margin-bottom: 1.11em;
  }
}
.folic-about-top p:last-child {
  font-weight: var(--f-semibold);
}
.folic-about-bottom__text {
  margin-bottom: 0.93em;
  font-size: var(--fs-16);
  line-height: var(--lh-150);
}
.folic-about-bottom__list {
  display: flex;
  flex-direction: column;
  gap: 0.35em;
}
@media (min-width: 640px) {
  .folic-about-bottom__list {
    align-items: flex-start;
  }
}
.folic-about-bottom__list li {
  padding: 0.57em 1.28em;
  border-radius: 19px;
  background-color: var(--bg);
}
@media (min-width: 1200px) {
  .folic-about-bottom__list li {
    border-radius: 40px;
  }
}
.folic-about__img {
  align-self: flex-end;
  max-width: 40em;
  width: 100%;
}
@media (min-width: 768px) {
  .folic-about__img {
    max-width: 50em;
  }
}
@media (min-width: 900px) {
  .folic-about__img {
    max-width: 30em;
  }
}
@media (min-width: 1024px) {
  .folic-about__img {
    align-self: stretch;
    width: auto;
    max-width: 25em;
  }
}
@media (min-width: 1200px) {
  .folic-about__img {
    max-width: 27em;
  }
}
@media (min-width: 1480px) {
  .folic-about__img {
    max-width: 31%;
  }
}
@media (min-width: 1600px) {
  .folic-about__img {
    max-width: 31.5%;
  }
}
@media (min-width: 1680px) {
  .folic-about__img {
    max-width: 35%;
  }
}
.folic-about__img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: right bottom;
  object-position: right bottom;
}
@media (min-width: 900px) {
  .folic-about__img img {
    height: 100%;
    -o-object-position: right top;
    object-position: right top;
  }
}
@media (min-width: 768px) {
  .folic-table-mobile {
    display: none;
  }
}
.folic-table-mobile__acc:not(:last-child) {
  margin-bottom: 0.35em;
}
.folic-table-mobile__acc-current .folic-table-mobile__btn {
  background-color: var(--green);
}
.folic-table-mobile__acc-current .folic-table-mobile__content {
  background-color: rgba(75, 143, 75, 0.1);
}
.folic-table-mobile__acc-current .folic-table-mobile-item__icon {
  background-image: url("img/folic-plus.svg");
}
.folic-table-mobile__acc.open .folic-table-mobile__arrow {
  transform: rotate(-180deg);
}
.folic-table-mobile__acc.open .folic-table-mobile__content {
  display: flex;
}
.folic-table-mobile__btn {
  margin-bottom: 0.35em;
  padding: 0.85em 1.78em;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  border-radius: 40px;
  font-weight: var(--f-semibold);
  color: var(--white);
  background-color: var(--pink);
}
.folic-table-mobile__arrow {
  flex-shrink: 0;
  display: block;
  width: 1em;
  height: 1em;
  transition: transform var(--transition);
}
.folic-table-mobile__arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.folic-table-mobile__content {
  padding: 1.78em;
  display: none;
  flex-direction: column;
  gap: 1.07em;
  border-radius: 20px;
  background-color: rgba(205, 138, 184, 0.1);
}
.folic-table-mobile-item {
  display: flex;
  align-items: flex-start;
  gap: 0.71em;
}
.folic-table-mobile-item__icon {
  flex-shrink: 0;
  display: block;
  width: 1.42em;
  height: 1.42em;
  background-image: url("img/folic-minus.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.folic-table-mobile-item__box {
  display: flex;
  flex-direction: column;
  gap: 0.21em;
}
.folic-table-mobile-item__box span:first-child {
  font-weight: var(--f-medium);
  font-size: var(--fs-12);
  line-height: var(--lh-150);
  opacity: 0.7;
}
.folic-table-mobile-item__box span:last-child {
  font-weight: var(--f-semibold);
}
.folic-table-desktop {
  display: none;
}
@media (min-width: 768px) {
  .folic-table-desktop {
    display: block;
  }
}
.folic-table-desktop__table {
  table-layout: fixed;
  width: 100%;
  border-spacing: 0.55em 0;
  border-collapse: separate;
}
.folic-table-desktop__table tbody tr:not(:last-child) td {
  position: relative;
}
.folic-table-desktop__table tbody tr:not(:last-child) td::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  height: 2px;
  width: calc(100% + 0.55em);
  background-image: url(img/dashed-line.svg);
  background-repeat: repeat-x;
}
.folic-table-desktop__table tbody tr:not(:last-child) td:last-child::after {
  width: 100%;
}
.folic-table-desktop__table tbody tr:first-child td:not(:first-child) {
  border-radius: 30px 30px 0 0;
}
.folic-table-desktop__table tbody tr:last-child td:not(:first-child) {
  border-radius: 0 0 30px 30px;
}
.folic-table-desktop__table tbody td {
  vertical-align: top;
}
.folic-table-desktop__table tbody td span {
  display: flex;
  height: 100%;
  align-items: flex-start;
  gap: 0.55em;
  padding: 1.6em 2.22em;
}
.folic-table-desktop__table tbody td:first-child {
  font-weight: var(--f-semibold);
}
.folic-table-desktop__table tbody td:not(:first-child):not(:last-child) {
  background-color: rgba(205, 138, 184, 0.1);
}
.folic-table-desktop__table tbody td:not(:first-child):not(:last-child) span::before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 1.33em;
  height: 1.33em;
  background-image: url("img/folic-minus.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.folic-table-desktop__table tbody td:last-child {
  color: var(--green);
  background-color: rgba(75, 143, 75, 0.1);
}
.folic-table-desktop__table tbody td:last-child span::before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 1.33em;
  height: 1.33em;
  background-image: url("img/folic-plus.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.folic-table-desktop__title {
  display: block;
  margin-bottom: 0.55em;
  padding: 1.33em 2.22em;
  border-radius: 40px;
  font-weight: var(--f-semibold);
  color: var(--white);
  background-color: var(--pink);
}
.folic-table-desktop__title.green {
  background-color: var(--green);
}
@media (min-width: 1600px) {
  .folic-table-desktop__title.green {
    padding: 0.83em 1.66em;
    font-weight: var(--f-medium);
    font-size: var(--fs-16);
    line-height: var(--lh-150);
  }
}

.faq {
  position: relative;
  padding: 3.92em 0 5.71em;
}
@media (min-width: 768px) {
  .faq {
    padding: 0.66em 0 5.71em;
  }
}
@media (min-width: 1200px) {
  .faq {
    padding: 0.66em 0 8.33em;
  }
}
@media (min-width: 1024px) {
  .faq::after {
    content: "";
    position: absolute;
    bottom: 5.71em;
    right: 0;
    display: block;
    aspect-ratio: 364/819;
    width: 20.22em;
    background-image: url("img/signal-flower.png");
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media (min-width: 1200px) {
  .faq::after {
    bottom: 7.5em;
  }
}
.faq .container {
  position: relative;
  z-index: 1;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.35em;
}
@media (min-width: 1200px) {
  .faq__list {
    gap: 0.75em;
  }
}
.faq-item {
  border: 1.5px solid transparent;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--white);
  transition: border var(--transition);
}
@media (min-width: 1200px) {
  .faq-item {
    border-radius: 45px;
  }
}
.faq-item.open {
  border: 1.5px solid var(--bg-in-bg);
}
.faq-item.open .faq-item__title {
  padding-bottom: 0.31em;
}
@media (min-width: 1200px) {
  .faq-item.open .faq-item__title {
    padding-top: 1.25em;
  }
}
.faq-item.open .faq-item__btn {
  background-color: var(--white);
}
.faq-item.open .faq-item__icon {
  background-color: var(--bg);
  transform: rotate(45deg);
}
.faq-item.open .faq-item__content {
  display: block;
}
.faq-item__btn {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.42em;
  padding: 0.35em 0.35em 0.35em 1.78em;
  border-radius: 20px;
  background-color: var(--bg);
  cursor: pointer;
  transition: background-color var(--transition);
}
@media (min-width: 1200px) {
  .faq-item__btn {
    padding: 0.27em 0.27em 0.27em 2.22em;
    border-radius: 45px;
  }
}
.faq-item__btn:hover .faq-item__icon {
  background-color: var(--pink);
}
.faq-item__btn:hover .faq-item__icon svg path {
  stroke: var(--white);
}
.faq-item__title {
  padding: 1.25em 0;
  font-weight: var(--f-semibold);
  font-size: var(--fs-16);
  line-height: var(--lh-150);
}
@media (min-width: 1200px) {
  .faq-item__title {
    padding: 0.9em 0;
  }
}
.faq-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.85em;
  height: 2.85em;
  border-radius: 50%;
  background-color: var(--white);
  transition: background-color var(--transition), transform var(--transition);
}
@media (min-width: 1200px) {
  .faq-item__icon {
    width: 4.44em;
    height: 4.44em;
  }
}
.faq-item__icon svg {
  width: 1.14em;
  height: 1.14em;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (min-width: 1200px) {
  .faq-item__icon svg {
    width: 1.55em;
    height: 1.55em;
  }
}
.faq-item__icon svg path {
  transition: stroke var(--transition);
}
.faq-item__content {
  display: none;
  max-width: 50em;
  padding: 1.78em;
  padding-top: 0;
}
@media (min-width: 1200px) {
  .faq-item__content {
    padding: 2.22em;
    padding-bottom: 2em;
    padding-top: 0;
  }
}
.faq-item__content p:not(:last-child) {
  margin-bottom: 0.35em;
}

.support {
  position: relative;
  padding-bottom: 3.92em;
}
@media (min-width: 768px) {
  .support {
    padding-bottom: 0.66em;
  }
}
.support::before {
  content: "";
  position: absolute;
  top: 0;
  transform: translateY(-75%);
  right: 0;
  display: block;
  width: 12em;
  height: 38.07em;
  background-image: url("img/product-flower.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}
@media (min-width: 1024px) {
  .support::before {
    right: auto;
    left: 0;
    width: 34.66em;
    height: 31em;
    transform: translate(-15%, -62%);
    background-image: url("img/footer-bg-desktop.png");
    background-position: left bottom;
  }
}
.support .container {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .support .section-head__title {
    max-width: 23em;
  }
}
.support__box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.71em;
}
@media (min-width: 768px) {
  .support__box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.83em;
  }
}
.support__img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .support__img {
    position: relative;
  }
}
@media (min-width: 1200px) {
  .support__img {
    border-radius: 40px;
  }
}
.support__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (min-width: 768px) {
  .support__img img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.support__content {
  padding: 1.78em;
  border-radius: 20px;
  background-color: var(--bg);
}
@media (min-width: 1200px) {
  .support__content {
    padding: 2.77em;
    border-radius: 25px;
  }
}
.support__title {
  margin-bottom: 1.25em;
  font-weight: var(--f-medium);
  font-size: var(--fs-16);
  line-height: var(--lh-150);
}
@media (min-width: 1200px) {
  .support__title {
    margin-bottom: 1.66em;
  }
}
.support__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.07em;
}
@media (min-width: 1200px) {
  .support__list {
    gap: 1.66em;
  }
}
.support__list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.28em;
  height: 100%;
  background-image: url("img/dashed-line-vertical.svg");
  background-repeat: repeat-y;
}
@media (min-width: 1600px) {
  .support__list::before {
    left: 1px;
  }
}
@media (min-width: 1680px) {
  .support__list::before {
    left: 2px;
  }
}
.support__item {
  position: relative;
  padding-left: 2em;
}
@media (min-width: 1200px) {
  .support__item {
    padding-left: 1.83em;
  }
}
.support__item b {
  font-weight: var(--f-semibold);
}
.support__item::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 4px;
  display: block;
  width: 0.78em;
  height: 0.78em;
  border-radius: 50%;
  border: 1px solid var(--pink);
  background-color: var(--bg);
}
@media (min-width: 1200px) {
  .support__item::before {
    left: 2px;
    top: 0.38em;
    width: 0.94em;
    height: 0.94em;
  }
}
.support__item:first-child::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.78em;
  height: calc(0.5em - 1px);
  background-color: var(--bg);
}
@media (min-width: 1200px) {
  .support__item:first-child::after {
    height: calc(0.38em - 1px);
  }
}
.support__item:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0.78em;
  height: calc(100% - 0.78em - 0.5em);
  background-color: var(--bg);
}
@media (min-width: 1200px) {
  .support__item:last-child::after {
    height: calc(100% - 0.94em - 0.38em);
  }
}

.advantages {
  position: relative;
  padding: 5.71em 0;
}
@media (min-width: 1200px) {
  .advantages {
    padding: 8.33em 0;
  }
}
.advantages .stork {
  display: none;
}
@media (min-width: 1024px) {
  .advantages .stork {
    display: block;
  }
}
@media (min-width: 768px) {
  .advantages .section-head__title {
    max-width: 18em;
  }
}
.advantages__box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.71em;
}
@media (min-width: 768px) {
  .advantages__box {
    grid-template-columns: 8fr 8fr 5fr;
  }
}
@media (min-width: 1024px) {
  .advantages__box {
    grid-template-columns: 7fr 7fr 5fr;
  }
}
.advantages-card {
  position: relative;
  padding: 1.2em 1.2em 1.2em 1.78em;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.42em;
  border-radius: 20px;
  background-color: var(--white);
  overflow: hidden;
}
@media (min-width: 768px) {
  .advantages-card {
    padding: 1.2em;
  }
}
@media (min-width: 1024px) {
  .advantages-card {
    padding: 2.22em 1.2em;
  }
}
@media (min-width: 1200px) {
  .advantages-card {
    border-radius: 40px;
    align-items: center;
  }
}
.advantages-card::before {
  content: "";
  position: absolute;
  left: calc(100% - 80px);
  top: 0px;
  display: block;
  width: 353px;
  height: 294px;
  background-image: url("img/advantages-ellipse.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 1200px) {
  .advantages-card::before {
    top: 40%;
    left: calc(100% - 160px);
  }
}
@media (min-width: 1680px) {
  .advantages-card::before {
    top: 40%;
    left: calc(100% - 160px);
  }
}
.advantages-card__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 0.35em;
}
@media (min-width: 768px) {
  .advantages-card__content {
    align-self: flex-start;
    max-width: 33em;
  }
}
@media (min-width: 1200px) {
  .advantages-card__content {
    gap: 0.55em;
  }
}
.advantages-card__title {
  font-weight: var(--f-medium);
  font-size: var(--fs-16);
  line-height: var(--lh-150);
}
.advantages-card__img {
  position: relative;
  flex-shrink: 0;
  width: 4.8em;
  height: 4.8em;
}
@media (min-width: 768px) {
  .advantages-card__img {
    width: 4em;
    height: 4em;
  }
}
@media (min-width: 1024px) {
  .advantages-card__img {
    width: 5em;
    height: 5em;
  }
}
@media (min-width: 768px) {
  .advantages-card:nth-child(3) {
    grid-column: span 2;
  }
}
.advantages__product {
  padding: 0.92em 0 1.85em;
  border-radius: 27px;
  background-color: var(--bg-in-bg);
  background-image: url("img/advantages-product-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .advantages__product {
    grid-column: 3/4;
    grid-row: 1/3;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1200px) {
  .advantages__product {
    border-radius: 40px;
  }
}
.advantages__product img {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 26em;
}
@media (min-width: 768px) {
  .advantages__product img {
    max-width: 100%;
  }
}
@media (min-width: 1024px) {
  .advantages__product img {
    max-width: 90%;
  }
}

.instruction {
  position: relative;
  margin-bottom: 5.71em;
}
@media (min-width: 1200px) {
  .instruction {
    margin-bottom: 8.33em;
  }
}
@media (min-width: 1024px) {
  .instruction::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 44.33em;
    height: 40.44em;
    transform: translate(-20%, -18%) rotate(-15deg);
    background-image: url("img/folic-flower-desktop.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: -1;
  }
}
.instruction__box {
  border-radius: 20px;
  background-color: var(--white);
}
@media (min-width: 768px) {
  .instruction__box {
    display: grid;
    grid-template-columns: 2fr 3fr;
  }
}
@media (min-width: 1200px) {
  .instruction__box {
    border-radius: 40px;
    grid-template-columns: 38.7em 1fr;
  }
}
.instruction__img {
  display: none;
}
@media (min-width: 768px) {
  .instruction__img {
    display: block;
    max-width: 30em;
  }
}
@media (min-width: 1200px) {
  .instruction__img {
    max-width: 33.77em;
  }
}
.instruction__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: top;
  object-position: top;
}
.instruction__content {
  padding: 1.78em;
}
@media (min-width: 1200px) {
  .instruction__content {
    padding: 2.77em;
  }
}
.instruction__list:not(:last-child) {
  margin-bottom: 2.14em;
}
@media (min-width: 1200px) {
  .instruction__list:not(:last-child) {
    margin-bottom: 3.33em;
  }
}
.instruction-item:not(:last-child) {
  position: relative;
  margin-bottom: 1.42em;
  padding-bottom: 1.42em;
}
@media (min-width: 1200px) {
  .instruction-item:not(:last-child) {
    margin-bottom: 1.6em;
    padding-bottom: 1.6em;
  }
}
.instruction-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  height: 2px;
  width: 100%;
  background-image: url("img/dashed-line.svg");
  background-repeat: repeat-x;
}
.instruction-item.open .instruction-item__btn {
  margin-bottom: 0.93em;
}
@media (min-width: 1200px) {
  .instruction-item.open .instruction-item__btn {
    margin-bottom: 0.83em;
  }
}
.instruction-item.open .instruction-item__icon {
  transform: rotate(45deg);
}
.instruction-item.open .instruction-item__content {
  display: block;
}
.instruction-item__btn {
  display: flex;
  align-items: center;
  gap: 0.71em;
  text-align: left;
  font-family: var(--font-family);
  font-weight: var(--f-medium);
  font-size: var(--fs-16);
  line-height: var(--lh-150);
  transition: color var(--transition), margin-bottom var(--transition);
}
@media (min-width: 1200px) {
  .instruction-item__btn {
    gap: 0.83em;
  }
}
.instruction-item__btn:hover {
  color: var(--pink);
}
.instruction-item__btn:hover .instruction-item__icon {
  transition: transform var(--transition);
}
.instruction-item__btn:hover .instruction-item__icon svg path {
  stroke: var(--pink);
}
.instruction-item__icon {
  flex-shrink: 0;
  display: block;
  width: 28px;
  height: 28px;
}
.instruction-item__icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.instruction-item__icon svg path {
  transition: stroke var(--transition);
}
.instruction-item__content {
  display: none;
  padding-left: calc(28px + 0.71em);
}
@media (min-width: 1200px) {
  .instruction-item__content {
    padding-left: calc(28px + 0.83em);
  }
}
.instruction-item__content p:not(:last-child) {
  margin-bottom: 0.6em;
}
.instruction-item__content table {
  table-layout: fixed;
  width: 100%;
  border: 1px solid var(--purple);
}
.instruction-item__content table:not(:last-child) {
  margin-bottom: 0.6em;
}
.instruction-item__content table td {
  padding: 0.5em;
  border-bottom: 1px solid var(--purple);
  vertical-align: top;
}
.instruction-item__content table td:not(:last-child) {
  border-right: 1px solid var(--purple);
}

.where {
  position: relative;
  padding: 3.92em 0 5.71em;
  overflow: hidden;
}
@media (min-width: 768px) {
  .where {
    padding: 0.66em 0 5.71em;
  }
}
@media (min-width: 1200px) {
  .where {
    padding: 0.66em 0 8em;
  }
}
.where .container {
  position: relative;
  z-index: 1;
}
.where-slider {
  position: relative;
}
@media (min-width: 768px) {
  .where-slider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    display: block;
    width: 38%;
    height: 200%;
    background: radial-gradient(#fff, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
  }
}
@media (min-width: 768px) {
  .where-slider::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    display: block;
    width: 38%;
    height: 200%;
    background: radial-gradient(#fff, rgba(255, 255, 255, 0.2), transparent);
    z-index: 1;
    pointer-events: none;
  }
}
.where-slider__box {
  position: relative;
}
.where-slider__swiper {
  margin-bottom: 0.71em;
}
@media (min-width: 1200px) {
  .where-slider__swiper {
    margin-bottom: 1em;
  }
}
.where-slider__slide {
  display: block;
  width: 100%;
  height: 100%;
}
.where-slider__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.where-slider__next {
  display: none;
}
@media (min-width: 768px) {
  .where-slider__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.05em;
    height: 3.05em;
    border-radius: 50%;
    background-color: var(--purple);
    z-index: 3;
    transition: background-color var(--transition);
  }
  .where-slider__next:hover {
    background-color: var(--purple-dark);
  }
}
.where-slider__pagination {
  text-align: center;
}
.where-slider__pagination .swiper-pagination-bullet {
  background: var(--bg-in-bg);
  opacity: 1;
}
.where-slider__pagination .swiper-pagination-bullet-active {
  background: var(--purple);
}

.articles {
  position: relative;
  padding-bottom: 3.92em;
}
@media (min-width: 768px) {
  .articles {
    padding-bottom: 0.66em;
  }
}
@media (min-width: 1200px) {
  .articles {
    padding-bottom: 4.6em;
  }
}
.articles::before {
  content: "";
  position: absolute;
  top: 0;
  transform: translateY(-24%);
  right: 0;
  display: block;
  width: 10.42em;
  height: 28.78em;
  background-image: url("img/articles-flower.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}
@media (min-width: 1024px) {
  .articles::before {
    right: auto;
    left: 0;
    width: 11.44em;
    height: 19.22em;
    transform: translateY(-82%);
    background-image: url("img/articles-flower-desktop.png");
    background-position: left;
  }
}
@media (min-width: 1024px) {
  .articles::after {
    content: "";
    position: absolute;
    bottom: 5.71em;
    right: 0;
    display: block;
    aspect-ratio: 364/819;
    width: 20.22em;
    background-image: url("img/signal-flower.png");
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media (min-width: 1200px) {
  .articles::after {
    bottom: 16.5em;
  }
}
.articles .container {
  position: relative;
  z-index: 1;
}
.articles__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.71em;
}
@media (min-width: 640px) {
  .articles__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .articles__list {
    gap: 0.83em;
  }
}
.articles-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background-color: var(--bg);
  transition: background-color var(--transition), color var(--transition);
}
@media (min-width: 1200px) {
  .articles-card {
    border-radius: 40px;
  }
}
.articles-card:hover {
  color: var(--white);
  background-color: var(--purple-dark);
}
.articles-card:hover .articles-card__arrow {
  opacity: 1;
}
.articles-card__title {
  padding: 1.56em;
  font-weight: var(--f-medium);
  font-size: var(--fs-16);
  line-height: var(--lh-150);
}
@media (min-width: 640px) {
  .articles-card__title {
    padding: 1.56em 0.7em;
    font-size: var(--fs-14);
    line-height: var(--lh-150);
  }
}
@media (min-width: 768px) {
  .articles-card__title {
    padding: 1.56em 1em;
  }
}
@media (min-width: 900px) {
  .articles-card__title {
    padding: 1.56em 1.2em;
  }
}
@media (min-width: 1200px) {
  .articles-card__title {
    padding: 2.22em 1.66em;
  }
}
.articles-card__img {
  position: relative;
  margin-top: auto;
  width: 100%;
  aspect-ratio: 33/18;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .articles-card__img {
    aspect-ratio: 483/310;
  }
}
@media (min-width: 1200px) {
  .articles-card__img {
    border-radius: 40px;
  }
}
.articles-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.articles-card__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 2.88em;
  height: 2.88em;
  border-radius: 50%;
  background-color: var(--white);
  background-image: url("img/article-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.55em 1.55em;
  opacity: 0;
  transition: opacity var(--transition);
}
@media (min-width: 1024px) {
  .articles-card__arrow {
    width: 3.88em;
    height: 3.88em;
  }
}
.articles__all {
  margin-top: 1.6em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.round-bottom::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 180/13;
  background-image: url("img/round-bottom-white.svg");
  background-size: cover;
  background-position: top;
}
.round-bottom__inner {
  padding-top: 6.42em;
  padding-bottom: 3.92em;
  background-color: var(--white);
}
@media (min-width: 1200px) {
  .round-bottom__inner {
    padding-top: 8.61em;
    padding-bottom: 5.55em;
    padding-bottom: 1em;
  }
}
.round-bottom__title {
  margin-bottom: 0.75em;
  font-family: var(--second-family);
  font-size: var(--fs-40);
  line-height: var(--lh-110);
}
@media (min-width: 1200px) {
  .round-bottom__title {
    margin-bottom: 0.66em;
  }
}

.flower-bottom {
  position: relative;
}
@media (min-width: 1024px) {
  .flower-bottom::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 17.38em;
    aspect-ratio: 313/495;
    background-image: url("img/inner-page-bottom-flower.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
  }
}
.flower-bottom .container {
  position: relative;
  z-index: 1;
}

.flower-below {
  position: relative;
}
@media (min-width: 1024px) {
  .flower-below::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 10%;
    display: block;
    width: 17.38em;
    aspect-ratio: 313/495;
    background-image: url("img/inner-page-bottom-flower.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
  }
}
.flower-below .container {
  position: relative;
  z-index: 1;
}

.flower-top {
  position: relative;
}
@media (min-width: 768px) {
  .flower-top::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 14em;
    aspect-ratio: 311/396;
    background-image: url("img/inner-page-top-flower.png");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
  }
}
@media (min-width: 1200px) {
  .flower-top::after {
    width: 17.27em;
  }
}
.flower-top .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  margin-bottom: 1.25em;
  margin-left: -1.07em;
  margin-right: -1.07em;
  padding-left: 1.07em;
  padding-right: 1.07em;
  font-size: var(--fs-12);
  line-height: var(--lh-150);
  white-space: nowrap;
  overflow-x: auto;
  color: rgba(122, 75, 143, 0.5);
}
@media (min-width: 1200px) {
  .breadcrumbs {
    margin-bottom: 1.42em;
  }
}
.breadcrumbs > span {
  display: flex;
  gap: 10px;
}
@media (min-width: 1200px) {
  .breadcrumbs > span {
    gap: 20px;
  }
}
.breadcrumbs a {
  color: var(--purple);
  transition: color var(--transition);
}
.breadcrumbs a:hover {
  color: var(--purple-dark);
}

.instruction-page .instruction__box {
  border-radius: 0;
  background-color: transparent;
}
@media (min-width: 1200px) {
  .instruction-page .instruction__box {
    grid-template-columns: 33.5em 1fr;
  }
}
.instruction-page .instruction__content {
  padding: 0;
}
@media (min-width: 768px) {
  .instruction-page .instruction__content {
    padding-top: 1.5em;
  }
}
@media (min-width: 1024px) {
  .instruction-page .instruction__content {
    padding-top: 2.77em;
  }
}
.instruction-page .instruction__box {
  gap: 0.83em;
}

.where-page__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.71em;
}
@media (min-width: 640px) {
  .where-page__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 900px) {
  .where-page__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .where-page__list {
    padding-bottom: 4em;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.83em;
  }
}
@media (min-width: 1480px) {
  .where-page__list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.where-page__item {
  width: 100%;
  aspect-ratio: 160/103;
}
@media (min-width: 1200px) {
  .where-page__item {
    aspect-ratio: 234/150;
  }
}
.where-page__item a {
  display: block;
  width: 100%;
  height: 100%;
}
.where-page__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (min-width: 1200px) {
  .blog-page__box {
    padding-bottom: 4em;
  }
}
.blog-page .pagination {
  margin-top: 30px;
}
@media (min-width: 1200px) {
  .blog-page .pagination {
    margin-top: 60px;
  }
}
.blog-page .pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-page .pagination a.page-numbers, .blog-page .pagination span.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.21em;
  height: 3.21em;
  padding: 0.5em;
  border-radius: 50%;
  transition: background-color var(--transition), color var(--transition);
}
@media (min-width: 1200px) {
  .blog-page .pagination a.page-numbers, .blog-page .pagination span.page-numbers {
    width: 3.05em;
    height: 3.05em;
  }
}
.blog-page .pagination a.page-numbers:hover {
  background-color: var(--bg);
}
.blog-page .pagination .page-numbers.current {
  color: var(--white);
  background-color: var(--purple);
}
.blog-page .pagination .screen-reader-text {
  display: none;
}

.contacts-page__box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.71em;
}
@media (min-width: 640px) {
  .contacts-page__box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .contacts-page__box {
    padding-bottom: 4em;
    gap: 0.83em;
  }
}
.contacts-page__content {
  padding: 1.78em;
  border-radius: 20px;
  background-color: var(--bg);
}
@media (min-width: 1200px) {
  .contacts-page__content {
    padding: 2.22em;
    border-radius: 40px;
  }
}
.contacts-page__contacts {
  position: relative;
  margin-bottom: 2.14em;
  padding-bottom: 2.14em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.71em;
}
@media (min-width: 1200px) {
  .contacts-page__contacts {
    margin-bottom: 2em;
    padding-bottom: 2em;
    gap: 1.11em;
  }
}
.contacts-page__contacts::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  height: 2px;
  width: 100%;
  background-image: url("img/dashed-line.svg");
  background-repeat: repeat-x;
}
.contacts-page__tel {
  font-family: var(--second-family);
  font-size: var(--fs-25);
  line-height: var(--lh-120);
  transition: color var(--transition);
}
.contacts-page__tel:hover {
  color: var(--purple-dark);
}
.contacts-page__mail {
  font-family: var(--second-family);
  font-size: var(--fs-18);
  line-height: var(--lh-150);
  opacity: 0.7;
  transition: color var(--transition);
}
.contacts-page__mail:hover {
  color: var(--purple-dark);
}
.contacts-page__list {
  display: flex;
  flex-direction: column;
  gap: 1.07em;
}
@media (min-width: 1200px) {
  .contacts-page__list {
    gap: 1.66em;
  }
}
.contacts-page__list li {
  display: flex;
  flex-direction: column;
  gap: 0.35em;
}
@media (min-width: 1200px) {
  .contacts-page__list li {
    gap: 0.55em;
  }
}
.contacts-page__list li span:first-child {
  opacity: 0.6;
}
.contacts-page__list li span:last-child {
  font-size: var(--fs-16);
  line-height: var(--lh-150);
}
.contacts-page__img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 640px) {
  .contacts-page__img {
    height: 100%;
    position: relative;
  }
}
@media (min-width: 1200px) {
  .contacts-page__img {
    border-radius: 40px;
  }
}
.contacts-page__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (min-width: 640px) {
  .contacts-page__img img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.detail-page-content h1 {
  position: relative;
  margin-bottom: 0.75em;
  padding-bottom: 0.75em;
  font-family: var(--second-family);
  font-size: var(--fs-35);
  line-height: var(--lh-110);
}
@media (min-width: 1200px) {
  .detail-page-content h1 {
    margin-bottom: 0.77em;
    padding-bottom: 0.77em;
  }
}
.detail-page-content h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  height: 2px;
  width: 100%;
  background-image: url("img/dashed-line.svg");
  background-repeat: repeat-x;
}
.detail-page-content__box {
  display: flex;
  flex-direction: column;
  gap: 2.14em;
}
@media (min-width: 768px) {
  .detail-page-content__box {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .detail-page-content__box {
    padding-bottom: 4em;
  }
}
@media (min-width: 768px) {
  .detail-page-content__block {
    max-width: 54.55em;
  }
}
.detail-page-content__block h2 {
  margin: 0.28em 0;
  font-family: var(--second-family);
  font-size: var(--fs-30);
  line-height: var(--lh-120);
}
@media (min-width: 1200px) {
  .detail-page-content__block h2 {
    margin: 0.5em 0;
  }
}
.detail-page-content__block h3 {
  margin: 0.8em 0;
  font-family: var(--second-family);
  font-size: var(--fs-25);
  line-height: var(--lh-120);
}
@media (min-width: 1200px) {
  .detail-page-content__block h3 {
    margin: 0.88em 0;
  }
}
.detail-page-content__block h4 {
  margin: 0.86em 0;
  font-family: var(--second-family);
  font-size: var(--fs-23);
  line-height: var(--lh-150);
}
@media (min-width: 1200px) {
  .detail-page-content__block h4 {
    margin: 0.85em 0;
  }
}
.detail-page-content__block h5 {
  margin: 1.11em 0 0.83em;
  font-family: var(--second-family);
  font-size: var(--fs-18);
  line-height: var(--lh-150);
}
@media (min-width: 1200px) {
  .detail-page-content__block h5 {
    margin: 2em 0 1.33em;
  }
}
.detail-page-content__block h6 {
  margin: 0.93em 0;
  font-weight: var(--f-medium);
  font-size: var(--fs-16);
  line-height: var(--lh-150);
}
@media (min-width: 1200px) {
  .detail-page-content__block h6 {
    margin: 1.25em 0 0.65em;
  }
}
.detail-page-content__block h2:first-child, .detail-page-content__block h3:first-child, .detail-page-content__block h4:first-child, .detail-page-content__block h5:first-child, .detail-page-content__block h6:first-child {
  margin-top: 0;
}
.detail-page-content__block h2:last-child, .detail-page-content__block h3:last-child, .detail-page-content__block h4:last-child, .detail-page-content__block h5:last-child, .detail-page-content__block h6:last-child {
  margin-bottom: 0;
}
.detail-page-content__block > img {
  margin: 1.42em 0 2.14em;
  width: 100%;
  aspect-ratio: 33/20;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 640px) {
  .detail-page-content__block > img {
    aspect-ratio: 982/396;
  }
}
@media (min-width: 1200px) {
  .detail-page-content__block > img {
    margin: 2.2em 0 3.88em;
  }
}
.detail-page-content__block img {
  border-radius: 20px;
}
@media (min-width: 1200px) {
  .detail-page-content__block img {
    border-radius: 40px;
  }
}
.detail-page-content__block p:not(:last-child) {
  margin-bottom: 0.71em;
}
.detail-page-content__block .columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.07em;
}
@media (min-width: 640px) {
  .detail-page-content__block .columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .detail-page-content__block .columns {
    gap: 0.83em;
  }
}
.detail-page-content__block .columns img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.detail-page-content__block ul {
  margin: 0.71em 0;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}
@media (min-width: 1200px) {
  .detail-page-content__block ul {
    margin: 1.11em 0;
    gap: 0.55em;
  }
}
.detail-page-content__block ul:first-child {
  margin-top: 0;
}
.detail-page-content__block ul:last-child {
  margin-bottom: 0;
}
.detail-page-content__block ul li {
  position: relative;
  padding-left: 1em;
}
@media (min-width: 1200pz) {
  .detail-page-content__block ul li {
    padding-left: 0.83em;
  }
}
.detail-page-content__block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--pink);
}
@media (min-width: 1200px) {
  .detail-page-content__block ul li::before {
    top: 11px;
    width: 5px;
    height: 5px;
  }
}
.detail-page-content__block blockquote {
  position: relative;
  margin: 1.875em 0;
  padding: 1.56em;
  padding-right: 4.28em;
  border-radius: 20px;
  font-size: var(--fs-16);
  line-height: var(--lh-150);
  background-color: var(--bg);
}
@media (min-width: 1200px) {
  .detail-page-content__block blockquote {
    margin: 2.91em 0;
    padding: 1.8em;
    padding-right: 5.2em;
    border-radius: 40px;
  }
}
.detail-page-content__block blockquote::before {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  background-color: var(--purple);
  background-image: url("img/blockquote.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 9px;
}
@media (min-width: 1200px) {
  .detail-page-content__block blockquote::before {
    width: 2.91em;
    height: 2.91em;
    background-size: 16px 12px;
  }
}
.detail-page-content__block blockquote:first-child {
  margin-top: 0;
}
.detail-page-content__block blockquote:last-child {
  margin-bottom: 0;
}
.detail-page-content__aside {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .detail-page-content__aside {
    position: relative;
    align-items: flex-start;
  }
}

.share {
  margin-bottom: 2.14em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.71em;
}
@media (min-width: 768px) {
  .share {
    position: sticky;
    top: 5.35em;
    padding: 1.11em 0;
    align-items: flex-start;
  }
}
@media (min-width: 1200px) {
  .share {
    gap: 1.11em;
  }
}
.share__text {
  font-weight: var(--f-semibold);
}
.share__list {
  display: flex;
  align-items: center;
  gap: 0.35em;
}
@media (min-width: 1200px) {
  .share__list {
    gap: 0.55em;
  }
}
.share__item {
  flex-shrink: 0;
  flex-grow: 1;
}
.share__link {
  display: block;
  width: 3.21em;
  height: 3.21em;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .share__link {
    width: 3.05em;
    height: 3.05em;
  }
}
.share__link svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.share__link svg rect {
  transition: fill var(--transition);
}
.share__link:hover svg rect {
  fill: var(--bg-in-bg);
}

.next-page-link {
  display: flex;
  align-items: center;
  gap: 0.71em;
  font-weight: var(--f-semibold);
  transition: color var(--transition);
}
@media (min-width: 768px) {
  .next-page-link {
    margin-top: auto;
  }
}
@media (min-width: 1200px) {
  .next-page-link {
    gap: 0.55em;
  }
}
.next-page-link svg {
  width: 1.42em;
  height: 1.42em;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (min-width: 1200px) {
  .next-page-link svg {
    width: 1.55em;
    height: 1.55em;
  }
}
.next-page-link svg path {
  transition: stroke var(--transition);
}
.next-page-link:hover {
  color: var(--pink);
}
.next-page-link:hover svg path {
  stroke: var(--pink);
}