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

*,
*::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: "Onest";
  src: local("Onest"), url("fonts/Onest-ExtraLight.woff2") format("woff2"), url("fonts/Onest-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: local("Onest"), url("fonts/Onest-Light.woff2") format("woff2"), url("fonts/Onest-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: local("Onest"), url("fonts/Onest-Regular.woff2") format("woff2"), url("fonts/Onest-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: local("Onest"), url("fonts/Onest-Medium.woff2") format("woff2"), url("fonts/Onest-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: local("Onest"), url("fonts/Onest-SemiBold.woff2") format("woff2"), url("fonts/Onest-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Prata";
  src: local("Prata"), url("fonts/Prata-Regular.woff2") format("woff2"), url("fonts/Prata-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-family: "Onest", sans-serif;
  --second-family: "Prata", sans-serif;
  --f-extralight: 200;
  --f-light: 300;
  --f-regular: 400;
  --f-medium: 500;
  --f-semibold: 600;
  --fs-40: 40px;
  --fs-32: 32px;
  --fs-28: 28px;
  --fs-24: 24px;
  --fs-20: 20px;
  --fs-18: 18px;
  --fs-17: 17px;
  --fs-15: 15px;
  --fs-13: 13px;
  --lh-110: 110%;
  --lh-120: 120%;
  --lh-140: 140%;
  --lh-160: 160%;
  --black: #322e2e;
  --pink: #cb1a90;
  --txt: #4a4949;
  --white: #fff;
  --purple: #8b52b2;
  --bg: #f2f6f9;
  --pink-2: #f475a3;
  --stroke-bg: #dee4e9;
  --dark-purple: #3e2689;
  --transition: 0.3s;
}

@media (min-width: 900px) {
  :root {
    --fs-40: 32px;
    --fs-32: 28px;
    --fs-28: 24px;
    --fs-24: 20px;
    --fs-20: 18px;
    --fs-18: 17px;
    --fs-17: 16px;
    --fs-15: 14px;
    --fs-13: 13px;
  }
}

@media (min-width: 1024px) {
  :root {
    --fs-40: 40px;
    --fs-32: 30px;
    --fs-28: 28px;
    --fs-24: 22px;
    --fs-20: 20px;
    --fs-18: 19px;
    --fs-15: 16px;
  }
}

@media (min-width: 1200px) {
  :root {
    --fs-40: 44px;
    --fs-32: 38px;
    --fs-28: 32px;
    --fs-24: 28px;
    --fs-20: 24px;
    --fs-18: 20px;
    --fs-17: 17px;
    --fs-13: 14px;
  }
}

@media (min-width: 1440px) {
  :root {
    --fs-40: 52px;
    --fs-32: 46px;
    --fs-28: 38px;
    --fs-24: 30px;
    --fs-20: 26px;
    --fs-18: 21px;
    --fs-17: 18px;
  }
}

@media (min-width: 1600px) {
  :root {
    --fs-40: 58px;
    --fs-32: 52px;
    --fs-28: 44px;
    --fs-24: 33px;
    --fs-20: 28px;
    --fs-18: 22px;
    --fs-17: 20px;
    --fs-15: 17px;
    --fs-13: 15px;
  }
}

@media (min-width: 1680px) {
  :root {
    --fs-40: 65px;
    --fs-32: 60px;
    --fs-28: 50px;
    --fs-24: 35px;
    --fs-20: 30px;
    --fs-17: 24px;
    --fs-15: 18px;
    --fs-13: 15px;
  }
}

body {
  position: relative;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--font-family);
  font-size: var(--fs-15);
  font-weight: var(--f-regular);
  line-height: var(--lh-160);
  font-style: normal;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

.menu-open {
  overflow: hidden;
}

@media (min-width: 1200px) {
  .menu-open {
    overflow-x: hidden;
  }
}

.menu-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2;
  background: var(--black);
  opacity: 0.3;
}

@media (min-width: 1200px) {
  .menu-open::before {
    display: none;
  }
}

.menu-open .header.header-home .header-mobile {
  background-color: var(--bg);
}

.menu-open .header-content {
  opacity: 1;
  z-index: 0;
  visibility: visible;
}

.menu-open .header__menu-btn .header__menu-btn-band {
  transition-duration: 0.1s;
  transition-delay: 0.3s;
  background-color: transparent;
}

.menu-open .header__menu-btn .header__menu-btn-band::before {
  transition: top 0.3s, transform 0.3s 0.3s;
  top: 1px;
  transform: rotateZ(-45deg);
}

.menu-open .header__menu-btn .header__menu-btn-band::after {
  transition: top 0.4s, transform 0.3s 0.3s;
  top: 1px;
  transform: rotateZ(45deg);
}

main {
  flex-grow: 1;
  overflow-x: hidden;
}

.container {
  max-width: 1652px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.page_content {
  padding: 118px 0 100px;
}

@media (min-width: 900px) {
  .page_content {
    padding: 125px 30px 100px;
  }
}

@media (min-width: 1680px) {
  .page_content {
    padding: 165px 30px 170px;
  }
}

.page__title {
  margin-bottom: 1em;
  font-family: var(--second-family);
  font-size: var(--fs-40);
  line-height: var(--lh-110);
  color: var(--dark-purple);
}

@media (min-width: 900px) {
  .page__title {
    margin-bottom: 1.07em;
  }
}

.page__title span {
  color: var(--pink);
}

.page .where__card {
  border: 1px solid var(--stroke-bg);
}

.section {
  margin-bottom: 6.67em;
}

@media (min-width: 1680px) {
  .section {
    margin-bottom: 9.44em;
  }
}

.section-grey {
  border-radius: 0 0 40px 40px;
  padding: 6.67em 0;
  background-color: var(--bg);
}

@media (min-width: 640px) {
  .section-grey {
    padding: 4em 0;
  }
}

@media (min-width: 900px) {
  .section-grey {
    border-radius: 20px;
    max-width: 1900px;
    width: calc(100% - 1.1em);
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 1680px) {
  .section-grey {
    padding: 9.44em 0;
    border-radius: 60px;
  }
}

@media (min-width: 900px) {
  .section__box {
    padding: 0 1.67em;
  }
}

.section__title {
  font-family: var(--second-family);
  font-size: var(--fs-32);
  line-height: var(--lh-120);
  color: var(--dark-purple);
}

.section__title span {
  color: var(--pink);
}

.section__title-mb {
  margin-bottom: 1.25em;
}

@media (min-width: 900px) {
  .section__title-mb {
    margin-bottom: 1em;
    width: 14em;
  }
}

.btn-box {
  display: flex;
  align-items: center;
  gap: 0.66em;
}

@media (min-width: 1680px) {
  .btn-box {
    gap: 0.55em;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.56em;
  padding: 0.87em 1em;
  border-radius: 12px;
  font-weight: var(--f-medium);
  font-size: var(--fs-15);
  line-height: var(--lh-160);
}

@media (min-width: 1680px) {
  .btn {
    padding: 0.87em 0.87em;
    gap: 0.5em;
  }
}

.btn-white {
  color: var(--dark-purple);
  background-color: var(--white);
  transition: color var(--transition);
}

.btn-white:hover {
  color: var(--purple);
}

.btn-purple {
  color: var(--white);
  background-color: var(--dark-purple);
  transition: color var(--transition);
}

.btn-purple:hover {
  background-color: var(--pink);
  color: var(--white);
}

.btn-pink {
  padding-right: 14px;
  color: var(--white);
  background-color: var(--pink);
  transition: background-color var(--transition);
}

.btn-pink:hover {
  color: var(--white);
  background-color: var(--purple);
}

.btn-pink::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("img/arrow-square-right.svg");
  background-size: contain;
}

@media (min-width: 900px) {
  .btn-pink::after {
    width: 24px;
    height: 24px;
  }
}

.btn-light {
  outline: 1px solid var(--stroke-bg);
  transition: background-color var(--transition);
}

.btn-light:hover {
  background-color: var(--stroke-bg);
}

.breadcrumbs {
  margin-bottom: 2.3em;
  font-size: var(--fs-13);
  line-height: var(--lh-160);
  color: var(--dark-purple);
}

@media (min-width: 900px) {
  .breadcrumbs {
    margin-bottom: 2.7em;
  }
}

.breadcrumbs>span {}

@media (min-width: 900px) {
  .breadcrumbs>span {
    gap: 20px;
  }
}

.breadcrumbs a {
  opacity: 1;
  transition: color var(--transition);
}

.breadcrumbs a:hover {
  color: var(--purple);
}

.breadcrumb__last {
  opacity: 0.5;
}

.accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.4em;
}

@media (min-width: 900px) {
  .accordion {
    gap: 0.8em;
  }
}

@media (min-width: 1600px) {
  .accordion {
    gap: 1.11em;
  }
}

.accordion__item {
  border-radius: 16px;
  border: 1px solid transparent;
  overflow: hidden;
  transition: border var(--transition);
}

@media (min-width: 1680px) {
  .accordion__item {
    border-radius: 20px;
  }
}

.accordion__item.open {
  padding-bottom: 20px;
  border: 1px solid var(--stroke-bg);
}

@media (min-width: 1680px) {
  .accordion__item.open {
    padding-bottom: 30px;
  }
}

.accordion__item.open .accordion__btn {
  padding-bottom: 10px;
  background-color: transparent;
  transition: background-color 0s, padding-bottom var(--transition);
}

.accordion__item.open .accordion__btn:hover {
  background-color: transparent;
}

.accordion__item.open .accordion__btn:hover svg path {
  fill: var(--pink);
}

.accordion__item.open .accordion__btn svg {
  transform: rotate(-180deg);
}

.accordion__item.open .accordion__btn svg path {
  fill: #a3a3a3;
}

.accordion__item.open .accordion__content {
  max-height: 2000px;
  opacity: 1;
  visibility: visible;
}

.accordion__btn {
  padding: 20px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  border-radius: 16px;
  text-align: left;
  font-weight: var(--f-medium);
  font-size: var(--fs-17);
  line-height: var(--lh-140);
  color: var(--dark-purple);
  background-color: var(--bg);
  transition: background-color var(--transition);
}

@media (min-width: 1680px) {
  .accordion__btn {
    border-radius: 20px;
  }
}

.accordion__btn:hover {
  background-color: var(--stroke-bg);
}

@media (min-width: 1680px) {
  .accordion__btn {
    padding: 30px;
  }
}

.accordion__btn svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
  transition: transform var(--transition);
}

@media (min-width: 1680px) {
  .accordion__btn svg {
    width: 35px;
    height: 35px;
  }
}

.accordion__btn svg path {
  transition: fill var(--transition);
}

.accordion__content {
  padding: 0 20px;
  color: var(--dark-purple);
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

@media (min-width: 1680px) {
  .accordion__content {
    padding: 0 30px;
    padding-right: 75px;
  }
}

.accordion__item.open .accordion__content p {
  margin-bottom: 0.7em;
}

.accordion__content ul {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  margin-bottom: 0.7em;
}

.accordion__content ul li {
  position: relative;
  padding-left: 14px;
}

.accordion__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(0deg, var(--pink) 0%, #ffaeda 100%);
}

.accordion__content table {
  table-layout: fixed;
  width: 100%;
  border: 1px solid var(--purple);
}

.accordion__content table td {
  padding: 0.47em;
  border-bottom: 1px solid var(--purple);
  vertical-align: top;
}

.accordion__content table td.img_container {
  width: 70px;
  height: 70px;
  position: relative;
}

.accordion__content table td img {
  position: relative;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

@media (min-width: 640px) {
  .accordion__content table td {
    padding: 0.6em;
  }
}

.accordion__content table td:not(:last-child) {
  border-right: 1px solid var(--purple);
}

.pagination {
  margin-top: 1.33em;
}

@media (min-width: 900px) {
  .pagination {
    margin-top: 1.66em;
  }
}

.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 900px) {
  .pagination ul {
    gap: 0.27em;
  }
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.33em;
  height: 3.33em;
  padding: 0.5em;
  border-radius: 12px;
  transition: background-color var(--transition);
}

.pagination a:hover,
.pagination span:hover {
  background-color: var(--stroke-bg);
}

.pagination li.active a,
.pagination li.active span {
  background-color: var(--bg);
}

.instruction__btn {
  display: flex;
  justify-content: center;
  gap: 0.4em;
  margin-top: 0.8em;
}

@media (min-width: 900px) {
  .instruction__btn {
    gap: 0.8em;
    margin-top: 1.6em;
  }
}

@media (min-width: 1600px) {
  .instruction__btn {
    gap: 1.11em;
    margin-top: 2.2em;
  }
}

sup {
  top: -0.9em;
  font-size: 0.4em;
  line-height: inherit;
}

h1 sup,
h2 sup,
h3 sup,
h4 sup,
h5 sup,
h6 sup {
  top: -0.9em;
  font-size: 0.4em;
  line-height: inherit;
}

.header {
  padding-top: 1.06em;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

@media (min-width: 1800px) {
  .header {
    padding-top: 2.22em;
  }
}

.header.header-home .header-mobile {
  background-color: rgba(255, 255, 255, 0.25);
  transition: background-color var(--transition);
}

@media (min-width: 1024px) {
  .header.header-home .header-content {
    box-shadow: 0 4px 35px 0 rgba(175, 175, 175, 0.1);
    background-color: rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.6);
    transition: background-color var(--transition);
  }
}

.header.header-bg .header-mobile {
  background-color: var(--bg);
  box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .header.header-bg .header-content {
    background-color: var(--bg);
    box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.1);
  }
}

.header-mobile {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  padding: 0.66em;
  padding-left: 1em;
  border-radius: 18px;
  background-color: var(--bg);
}

@media (min-width: 1024px) {
  .header-mobile {
    display: none;
  }
}

.header__logo {
  display: block;
  width: 7.06em;
  height: 1.34em;
}

@media (min-width: 900px) {
  .header__logo {
    width: 8.61em;
    height: 1.66em;
    width: 10em;
    height: 2em;
  }
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  padding: 10px;
  border-radius: 8px;
  background-color: var(--white);
}

.header__menu-btn-band {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--dark-purple);
  border-radius: 2px;
  transition-duration: 0.3s;
  transition-delay: 0.3s;
}

.header__menu-btn-band::before {
  content: "";
  position: absolute;
  left: 0px;
  top: -6px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--dark-purple);
  transition-duration: 0.3s;
  transition: transform 0.3s, top 0.3s 0.3s;
}

.header__menu-btn-band::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 6px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--dark-purple);
  transition-duration: 0.3s;
  transition: transform 0.3s, top 0.3s 0.3s;
}

.header-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.33em;
  padding: 8.73em 1em 3.33em;
  border-radius: 0 0 40px 40px;
  background-color: var(--white);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), z-index var(--transition), visibility var(--transition);
}

@media (min-width: 1024px) {
  .header-content {
    position: static;
    flex-direction: row;
    justify-content: space-between;
    gap: 1.33em;
    padding: 0.66em;
    padding-left: 1.66em;
    border-radius: 20px;
    background-color: var(--bg);
    opacity: 1;
    visibility: visible;
  }
}

.header-content .header__logo {
  display: none;
}

@media (min-width: 1024px) {
  .header-content .header__logo {
    display: block;
    flex-shrink: 0;
  }
}

.header-content .btn-box {
  min-width: 298px;
}

@media (min-width: 900px) {
  .header-content .btn-box {
    min-width: 0;
  }
}

.header-content .btn-box .btn {
  width: 50%;
}

@media (min-width: 900px) {
  .header-content .btn-box .btn {
    width: auto;
  }
}

.header-content .btn-box .btn-white {
  outline: 1px solid #dee4e9;
  color: var(--dark-purple);
}

@media (min-width: 1024px) {
  .header-content .btn-box .btn-white {
    outline: none;
    color: var(--txt);
  }

  .header-content .btn-box .btn-white:hover {
    color: var(--purple);
  }
}

.header__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.17em;
  font-family: var(--font-family);
  font-weight: var(--f-medium);
  font-size: var(--fs-17);
  line-height: var(--lh-140);
  color: var(--dark-purple);
}

@media (min-width: 1024px) {
  .header__list {
    flex-direction: row;
    font-weight: var(--f-regular);
    line-height: var(--lh-160);
  }
}

@media (min-width: 1200px) {
  .header__list {
    gap: 2em;
    font-size: var(--fs-15);
  }
}

.header__list a {
  transition: color var(--transition);
}

.header__list a:hover {
  color: var(--purple);
}

@media (min-width: 1024px) {
  .header__list li {
    display: none;
  }

  .header__list li:nth-child(1) {
    display: block;
  }

  .header__list li:nth-child(2) {
    display: block;
  }

  .header__list li:nth-child(3) {
    display: block;
  }
}

@media (min-width: 1200px) {
  .header__list li {
    display: block;
  }
}

.footer {
  padding: 4em 0 6.66em;
  border-radius: 40px 40px 0 0;
  background-color: var(--bg);
  background-image: url("img/footer-bg-mobile.jpg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}

@media (min-width: 900px) {
  .footer {
    margin-bottom: 0.55em;
    max-width: 1900px;
    width: calc(100% - 1.1em);
    margin-right: auto;
    margin-left: auto;
    padding: 6.11em 0;
    border-radius: 20px;
    background-image: url("img/footer-bg-desktop.jpg");
  }
}

@media (min-width: 1680px) {
  .footer {
    border-radius: 60px;
  }
}

@media (min-width: 900px) {
  .footer__box {
    padding: 0 2.66em 0 1.11em;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4.44em;
  }
}

.footer-menu {
  max-width: 600px;
  margin-bottom: 2em;
}

@media (min-width: 900px) {
  .footer-menu {
    max-width: 410px;
    margin-bottom: 0;
  }
}

.footer-menu__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, auto));
  -moz-column-gap: 2.3em;
  column-gap: 2.3em;
  row-gap: 0.77em;
  font-size: var(--fs-15);
  line-height: var(--lh-160);
  color: var(--dark-purple);
}

@media (min-width: 900px) {
  .footer-menu__list {
    -moz-column-gap: 2em;
    column-gap: 2em;
    row-gap: 0.8em;
  }
}

.footer-menu__list a {
  transition: color var(--transition);
}

.footer-menu__list a:hover {
  color: var(--purple);
}

.footer .btn-box {
  margin-bottom: 2.66em;
}

@media (min-width: 900px) {
  .footer .btn-box {
    margin-bottom: 0;
    justify-items: end;
    justify-content: flex-end;
  }
}

.footer-info {
  margin-bottom: 2.66em;
}

@media (min-width: 900px) {
  .footer-info {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 1.66em;
  }
}

.footer-info__logo {
  margin-bottom: 1.33em;
  width: 6.26em;
  height: 2.53em;
}

@media (min-width: 900px) {
  .footer-info__logo {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 8.86em;
    height: 3.55em;
  }
}

.footer-info__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer-info__text {
  font-size: var(--fs-13);
  line-height: var(--lh-160);
  color: var(--dark-purple);
  opacity: 0.5;
}

@media (min-width: 900px) {
  .footer-info__text {
    max-width: 460px;
  }
}

@media (min-width: 900px) {
  .footer-docs {
    align-self: center;
    margin-left: auto;
  }
}

.footer-docs li:not(:last-child) {
  margin-bottom: 0.4em;
}

@media (min-width: 900px) {
  .footer-docs li:not(:last-child) {
    margin-bottom: 0.11em;
  }
}

.footer-docs a {
  border-bottom: 1px solid rgba(62, 38, 137, 0.3);
  font-size: var(--fs-13);
  line-height: var(--lh-160);
  color: var(--dark-purple);
  opacity: 0.5;
  transition: opacity var(--transition);
}

.footer-docs a:hover {
  opacity: 0.7;
}

.contacts__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55em;
}

@media (min-width: 640px) {
  .contacts__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .contacts__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .contacts__list {
    gap: 1.1em;
  }
}

.contacts-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.34em;
  padding: 1.33em;
  border-radius: 24px;
  color: var(--dark-purple);
  background-color: var(--bg);
}

@media (min-width: 640px) {
  .contacts-card {
    padding: 1.67em;
    gap: 0.833em;
    justify-content: space-between;
  }

  .contacts-card:nth-child(5) {
    grid-column: span 2;
  }
}

@media (min-width: 900px) {
  .contacts-card:nth-child(2) {
    order: 4;
  }

  .contacts-card:nth-child(3) {
    order: 2;
  }

  .contacts-card:nth-child(4) {
    order: 5;
  }

  .contacts-card:nth-child(5) {
    grid-row: span 2;
    grid-column: span 1;
    order: 3;
  }
}

.contacts-card__title {
  opacity: 0.6;
}

.contacts-card__descr {
  font-family: var(--font-family);
  font-size: var(--fs-17);
  font-weight: var(--f-medium);
  line-height: var(--lh-140);
}

@media (min-width: 640px) {
  .hero {
    position: relative;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-banner {
  position: relative;
  margin-bottom: 1.33em;
  padding-top: 7.4em;
  border-radius: 0 0 40px 40px;
  background: linear-gradient(65deg, #9ec7e4 0%, #eef4f8 24.66%, #f2f6f9 55.24%, #d3edff 100%);
  overflow: hidden;
}

@media (min-width: 900px) {
  .hero-banner {
    padding-top: 10em;
    padding-bottom: 10em;
    margin: 0.55em;
    margin-bottom: 0;
    border-radius: 18px;
    background: linear-gradient(149deg, #9ec7e4 0%, #f2f6f9 100%);
    background: linear-gradient(149deg, #9ec7e454 0%, #f2f6f9 100%);

  }
}

@media (min-width: 1200px) {
  .hero-banner {
    border-radius: 20px;
    padding-top: 8em;
    padding-bottom: 8em;
  }
}

@media (min-width: 1680px) {
  .hero-banner {
    padding-top: 10.77em;
    padding-bottom: 14.94em;
  }
}

@media (min-width: 1800px) {
  .hero-banner {
    border-radius: 60px;
  }
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/hero-flower.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
}

@media (min-width: 900px) {
  .hero-banner::before {
    background-image: url("img/hero-flower-desktop.png");
  }
}

.hero-banner .container {
  position: relative;
  z-index: 2;
}

.hero-banner__content {
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero-banner__content {
    max-width: 34em;
  }
}

@media (min-width: 1200px) {
  .hero-banner__content {
    max-width: 40em;
  }
}

@media (min-width: 1680px) {
  .hero-banner__content {
    max-width: 44.44em;
  }
}

.hero-banner__title {
  margin-bottom: 0.5em;
  font-family: var(--second-family);
  font-weight: var(--f-regular);
  font-size: var(--fs-40);
  line-height: var(--lh-110);
  color: var(--dark-purple);
}

@media (min-width: 900px) {
  .hero-banner__title {
    margin-bottom: 0.46em;
  }
}

.hero-banner__title span {
  color: var(--pink);
}

.hero-banner__text {
  display: flex;
  flex-direction: column;
  gap: 0.66em;
  color: var(--dark-purple);
}

@media (min-width: 900px) {
  .hero-banner__text {
    max-width: 39.44em;
    gap: 0.94em;
  }
}

.hero-banner__text b {
  font-weight: var(--f-semibold);
}

.hero-banner__img {
  position: relative;
  width: 100%;
  z-index: 1;
}

@media (min-width: 600px) {
  .hero-banner__img {
    max-width: 600px;
    margin-left: auto;
  }
}

@media (min-width: 900px) {
  .hero-banner__img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 1920px;
    width: 60vw;
  }
}

@media (min-width: 1200px) {
  .hero-banner__img {
    width: 80vw;
  }
}

@media (min-width: 1680px) {
  .hero-banner__img {
    width: 100%;
  }
}

.hero-banner__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (min-width: 640px) {
  .hero-adv {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 2em;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .hero-adv {
    bottom: 2em;
  }
}

@media (min-width: 1680px) {
  .hero-adv {
    bottom: 5em;
  }
}

.hero-adv__list {
  display: flex;
  flex-direction: column;
  gap: 0.53em;
}

@media (min-width: 640px) {
  .hero-adv__list {
    align-items: flex-start;
  }
}

@media (min-width: 900px) {
  .hero-adv__list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 1680px) {
  .hero-adv__list {
    gap: 0.83em;
  }
}

.hero-adv__item {
  padding: 0.33em;
  padding-left: 1.33em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  border-radius: 100px;
  font-weight: var(--f-semibold);
  color: var(--dark-purple);
  background-color: var(--bg);
}

@media (min-width: 900px) {
  .hero-adv__item {
    flex-direction: row-reverse;
    gap: 0.7em;
    padding: 0.33em;
    padding-right: 1.2em;
    background-color: var(--white);
  }
}

@media (min-width: 1680px) {
  .hero-adv__item {
    padding: 0.55em;
    padding-right: 1.94em;
    gap: 0.83em;
  }
}

.hero-adv__icon {
  flex-shrink: 0;
  display: block;
  width: 2.66em;
  height: 2.66em;
  border-radius: 50%;
}

@media (min-width: 900px) {
  .hero-adv__icon {
    width: 2.22em;
    height: 2.22em;
  }
}

.hero-adv__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 640px) {
  .about__box {
    display: flex;
    flex-direction: column;
    position: relative;
  }
}

.about-content {
  margin-bottom: 2.66em;
}

@media (min-width: 640px) {
  .about-content {
    margin-bottom: 3em;
    width: 50vw;
    max-width: 660px;
  }
}

@media (min-width: 1200px) {
  .about-content {
    max-width: 660px;
  }
}

.about-content .section__title {
  margin-bottom: 0.25em;
}

.about-content__text {
  margin-bottom: 1em;
  font-weight: var(--f-extralight);
  font-size: var(--fs-20);
  line-height: var(--lh-140);
  color: var(--dark-purple);
}

@media (min-width: 1200px) {
  .about-content__text {
    margin-bottom: 1.33em;
  }
}

.about-img {
  position: relative;
  margin-bottom: 2em;
  width: 100%;
  aspect-ratio: 8/9;
  z-index: 1;
}

@media (min-width: 440px) {
  .about-img {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 640px) {
  .about-img {
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    max-width: 380px;
    z-index: -1;
    aspect-ratio: 95/96;
  }
}

@media (min-width: 980px) {
  .about-img {
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (min-width: 1200px) {
  .about-img {
    width: 50vw;
    max-width: 450px;
  }
}

@media (min-width: 1440px) {
  .about-img {
    max-width: 520px;
  }
}

@media (min-width: 1680px) {
  .about-img {
    width: 50vw;
    max-width: 680px;
  }
}

.about-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 0.53em;
}

@media (min-width: 640px) {
  .about-list {
    max-width: 550px;
  }
}

@media (min-width: 980px) {
  .about-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.11em;
    max-width: 78%;
  }
}

@media (min-width: 1280px) {
  .about-list {
    max-width: 76%;
  }
}

@media (min-width: 1680px) {
  .about-list {
    max-width: 1035px;
  }
}

.about-list__item {
  display: flex;
  flex-direction: column;
  gap: 0.66em;
  padding: 1.66em;
  border-radius: 16px;
  color: var(--dark-purple);
  background-color: var(--bg);
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
}

@media (min-width: 980px) {
  .about-list__item {
    min-height: 200px;
    padding: 1.94em;
    border-radius: 20px;
    gap: 1.11em;
    display: grid;
  }
}

@media (min-width: 1680px) {
  .about-list__item {
    min-height: 331px;
  }
}

.about-list__title {
  font-weight: var(--f-medium);
  font-size: var(--fs-17);
  line-height: var(--lh-140);
}

@media (min-width: 980px) {
  .about-list__title {
    /* min-height: calc(var(--fs-17) * 1.4 * 3); */
  }
}

.work {
  background-image: url("img/work-bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
}

@media (min-width: 900px) {
  .work {
    padding-bottom: 8.72em;
    background-image: url("img/work-bg-desktop.png");
  }
}

@media (min-width: 1200px) {
  .work {
    padding-bottom: 6em;
  }
}

@media (min-width: 1680px) {
  .work {
    padding-bottom: 8.72em;
  }
}

@media (min-width: 1200px) {
  .work__box {
    display: flex;
    justify-content: space-between;
    gap: 1em;
  }
}

.work .section__title {
  margin-bottom: 0.93em;
}

@media (min-width: 1200px) {
  .work .section__title {
    min-width: 7.1em;
    margin-bottom: 0;
  }
}

.work__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.53em;
}

@media (min-width: 640px) {
  .work__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 0.94em;
    column-gap: 0.94em;
    row-gap: 1.11em;
  }
}

@media (min-width: 1200px) {
  .work__list {
    max-width: 901px;
  }
}

.work-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  font-weight: var(--f-light);
  font-size: var(--fs-17);
  line-height: var(--lh-140);
  color: var(--white);
  background-color: var(--pink);
  overflow: hidden;
}

@media (min-width: 900px) {
  .work-card {
    border-radius: 20px;
  }
}

.work-card-purple {
  background-color: var(--purple);
}

.work-card__title {
  padding: 0.8em 1.25em;
  font-weight: var(--f-medium);
  font-size: var(--fs-20);
  line-height: var(--lh-140);
}

@media (min-width: 900px) {
  .work-card__title {
    padding: 0.67em 1em;
  }
}

.work-card__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.94em;
  padding: 1.47em;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.25);
}

@media (min-width: 900px) {
  .work-card__content {
    border-radius: 20px;
    padding: 1.25em;
    gap: 1.25em;
  }
}

.work-card__text span {
  position: relative;
  display: inline-block;
}

.work-card__text span:not(:last-child) {
  margin-bottom: 0.3em;
}

@media (min-width: 900px) {
  .work-card__text span:not(:last-child) {
    margin-bottom: 0.2em;
  }
}

.work-card__text span img {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(70%, 50%);
}

.work-card__text b {
  display: block;
}

.work-card__text:first-child img {
  transform: translate(60%, 65%);
}

@media (min-width: 1440px) {
  .work-card__text:first-child img {
    transform: translate(60%, 67%) scale(1.2);
  }
}

.work-card__text:nth-child(2) img {
  transform: translate(40%, 67%);
}

@media (min-width: 1440px) {
  .work-card__text:nth-child(2) img {
    transform: translate(40%, 67%) scale(1.2);
  }
}

.work-item {
  padding: 1.66em;
  border-radius: 16px;
  color: var(--dark-purple);
  background-color: var(--white);
}

@media (min-width: 640px) {
  .work-item {
    grid-column: span 2;
  }
}

@media (min-width: 900px) {
  .work-item {
    display: flex;
    flex-direction: row-reverse;
    font-size: var(--fs-17);
  }
}

@media (min-width: 1200px) {
  .work-item {
    font-size: var(--fs-15);
  }
}

.work-item p:not(:last-child) {
  margin-bottom: 0.8em;
}

.work-item b {
  font-weight: var(--f-semibold);
}

.work-item__img {
  position: relative;
  height: 6.6em;
  width: 4.6em;
  float: right;
}

@media (min-width: 900px) {
  .work-item__img {
    flex-shrink: 0;
    height: 100%;
    width: 13em;
    float: none;
  }
}

.work-item__img img {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-37%, 15%);
  max-width: none;
  width: 11.5em;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (min-width: 900px) {
  .work-item__img img {
    width: 20em;
    height: 23em;
    transform: translate(-7%, 27%);
  }
}

@media (min-width: 1800px) {
  .work-item__img img {
    width: 21em;
    height: 25em;
    transform: translate(0%, 27%);
  }
}

.work-item::after {
  content: "";
  display: table;
  clear: both;
}

@media (min-width: 900px) {
  .work-item::after {
    display: none;
  }
}

.advantages__box {
  margin-bottom: 2.66em;
}

@media (min-width: 900px) {
  .advantages__box {
    margin-bottom: 2em;
    display: flex;
    align-items: flex-end;
    gap: 1em;
    justify-content: space-between;
  }
}

@media (min-width: 1680px) {
  .advantages__box {
    margin-bottom: 3.33em;
  }
}

.advantages__box .btn-box {
  display: none;
}

@media (min-width: 900px) {
  .advantages__box .btn-box {
    display: flex;
  }
}

.advantages__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.53em;
}

@media (min-width: 640px) {
  .advantages__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .advantages__list {
    gap: 1.11em;
  }
}

.advantages-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1em;
  padding: 1.25em;
  border-radius: 16px;
  font-weight: var(--f-extralight);
  font-size: var(--fs-20);
  line-height: var(--lh-140);
  color: var(--dark-purple);
  background-color: var(--bg);
  background-image: url("img/adv-card-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 640px) {
  .advantages-card {
    min-height: 9.86em;
    padding: 1em;
    flex-direction: column-reverse;
    border-radius: 20px;
    background-image: url("img/adv-card-bg-desktop.svg");
    justify-content: flex-end;
  }
}

@media (min-width: 900px) {
  .advantages-card {
    padding: 1.33em;
  }
}

@media (min-width: 1200px) {
  .advantages-card {
    font-size: 20px;
  }
}

@media (min-width: 1600px) {
  .advantages-card {
    font-size: var(--fs-20);
    font-size: 24px;
    min-height: 8em;
  }
}

.advantages-card__text b {
  font-weight: var(--f-medium);
}

@media (min-width: 640px) {
  .advantages-card__text {
    margin-top: auto;
  }
}

.advantages-card__icon {
  flex-shrink: 0;
  width: 2em;
  height: 2em;
}

.advantages-card__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.advantages-card-purple {
  position: relative;
  padding: 1.25em;
  padding-bottom: 5.6em;
  border-radius: 16px;
  font-weight: var(--f-extralight);
  font-size: var(--fs-20);
  line-height: var(--lh-140);
  color: var(--white);
  background-color: var(--purple);
  overflow: hidden;
}

@media (min-width: 640px) {
  .advantages-card-purple {
    grid-row: span 2;
    padding: 1em;
    padding-bottom: 14.4em;
    border-radius: 20px;
  }
}

@media (min-width: 900px) {
  .advantages-card-purple {
    padding: 1.33em;
  }
}

@media (min-width: 1200px) {
  .advantages-card-purple {
    font-size: 20px;
  }
}

@media (min-width: 1600px) {
  .advantages-card-purple {
    font-size: var(--fs-20);
  }
}

.advantages-card-purple__title {
  margin-bottom: 0.5em;
  font-weight: var(--f-medium);
}

@media (min-width: 900px) {
  .advantages-card-purple__title {
    margin-bottom: 0.4em;
  }
}

.advantages-card-purple__img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-height: 11.5em;
  height: 100%;
}

@media (min-width: 640px) {
  .advantages-card-purple__img {
    max-height: 20.4em;
  }
}

.advantages-card-purple__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom right;
  object-position: bottom right;
}

.video {
  position: relative;

}

.video .section__box {
  display: flex;
  position: relative;
}

.video::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5em;
  transform: translateY(47%);
  display: block;
  width: 24em;
  aspect-ratio: 3/7;
  background-image: url("img/flower.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

@media (min-width: 900px) {

  .video::before {
    bottom: 0;
    transform: translate(1%, 24%);
    width: 66vw;
    aspect-ratio: 7/6;
    background-image: url("img/flower-desktop.png");
  }
}

.video video {
  max-width: 100%;
  max-height: 60vh;
  border-radius: 16px;
}

.how {
  background-image: url("img/how-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 900px) {
  .how {
    background-image: url("img/how-bg-desktop.svg");
  }
}

@media (min-width: 640px) {
  .how__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
  }
}

@media (min-width: 1024px) {
  .how__box {
    gap: 2em;
  }
}

@media (min-width: 1400px) {
  .how__box {
    justify-content: flex-start;
    gap: 3em;
    align-items: flex-end;
  }
}

@media (min-width: 1680px) {
  .how__box {
    justify-content: space-between;
    gap: 2em;
  }

}

.how-content {
  margin-bottom: 3.33em;
}

@media (min-width: 640px) {
  .how-content {
    margin-bottom: 0;
  }
}

@media (min-width: 1480px) {
  .how-content {
    max-width: 35em;
    font-size: var(--fs-17);
  }
}

.how-content__box {
  margin-bottom: 1.34em;
}

@media (min-width: 900px) {
  .how-content__box {
    margin-bottom: 2.77em;
  }
}

.how-content__title {
  margin-bottom: 0.75em;
  font-weight: var(--f-medium);
  font-size: var(--fs-20);
  line-height: var(--lh-140);
  color: var(--dark-purple);
}

@media (min-width: 900px) {
  .how-content__title {
    margin-bottom: 1em;
  }
}

.how-content__list {
  display: flex;
  flex-direction: column;
  gap: 0.47em;
  font-weight: var(--f-light);
  font-size: var(--fs-17);
  line-height: var(--lh-140);
  color: var(--dark-purple);
}

@media (min-width: 900px) {
  .how-content__list {
    gap: 0.625em;
  }
}

.how-content__list li {
  position: relative;
  padding-left: 14px;
}

.how-content__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  top: 0.5em;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: linear-gradient(0deg, var(--pink) 0%, #ffaeda 100%);
}

.how-img {
  position: relative;
  display: flex;
  align-items: center;
}

@media (min-width: 900px) {
  .how-img {
    margin-left: 2.22em;
    flex-shrink: 0;
    min-height: 20em;
  }
}

@media (min-width: 1200px) {
  .how-img {
    min-height: 30em;
  }
}

@media (min-width: 1480px) {
  .how-img {
    margin-left: 0;
    min-height: 20em;
  }

  .how-img__img img {
    translate: 0 15%;
  }
}

@media (min-width: 1680px) {
  .how-img {
    min-height: 30em;
  }

  .how-img__img img {
    translate: 0 0;
  }

}

.how-img__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.26em;
}

@media (min-width: 440px) {
  .how-img__list {
    max-width: 448px;
    margin-left: auto;
  }
}

@media (min-width: 640px) {
  .how-img__list {
    min-width: 313px;
  }
}

@media (min-width: 900px) {
  .how-img__list {
    max-width: none;
    padding-left: 1em;
    width: auto;
    gap: 0.555em;
  }
}

@media (min-width: 1200px) {
  .how-img__list {
    padding-left: 10em;
  }
}

.how-img__item {
  border-radius: 16px;
  padding: 1.06em;
  padding-right: 12em;
  color: var(--white);
  background-color: var(--pink);
}

@media (min-width: 900px) {
  .how-img__item {
    position: relative;
    padding: 1.6em;
    padding-left: 14em;
    padding-right: 4em;
    border-radius: 20px;
  }
}

@media (min-width: 1200px) {
  .how-img__item {
    padding: 2.24em;
    padding-left: 14em;
    padding-right: 4.44em;
  }
}

.how-img__item b {
  font-weight: var(--f-semibold);
}

.how-img__item-purple {
  background-color: var(--purple);
}

@media (min-width: 900px) {
  .how-img__item-purple .how-img__item-icon {
    top: 2px;
    right: 1px;
    width: 6em;
    height: 8em;
  }
}

@media (min-width: 1200px) {
  .how-img__item-purple .how-img__item-icon {
    top: -3px;
    right: 0px;
    width: 7.16em;
    height: 10.44em;
  }
}

.how-img__item-icon {
  display: none;
}

@media (min-width: 900px) {
  .how-img__item-icon {
    display: block;
    position: absolute;
    top: 16px;
    right: 20px;
    width: 2.22em;
    height: 2.22em;
  }
}

@media (min-width: 1200px) {
  .how-img__item-icon {
    top: 35px;
    right: 30px;
  }
}

.how-img__img {
  position: absolute;
  right: -16px;
  width: 17.3em;
}

@media (min-width: 900px) {
  .how-img__img {
    bottom: -15px;
    right: auto;
    left: -15px;
  }
}

@media (min-width: 1200px) {
  .how-img__img {
    left: 65px;
    bottom: 20px;
    width: 22em;
  }
}

@media (min-width: 1680px) {
  .how-img__img {
    left: -25px;
    bottom: -50px;
    width: 28em;
  }
}

.how-img__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.days7-block {
  display: flex;
  flex-direction: column;
  margin: 2em 0 2em 0;
  gap: 1em;
  font-size: var(--fs-20);
  padding: 1.25em;
  border-radius: 16px;
  font-weight: var(--f-extralight);
  line-height: var(--lh-140);
  color: var(--dark-purple);
  background-color: var(--bg);
}

.days7-block img {
  width: 200px;
}

.days7-block__content {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.days7-block__content-title {
  font-weight: 600;
  font-size: var(--fs-24);
  font-family: var(--second-family);
}


.days7-times {
  font-size: var(--fs-17);
  padding-left: 3px;
}

.days7-time {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 2em;
}

.days7-timeline {
  position: absolute;
  top: 0px;
  left: 0;
  height: 100%;
  border-left: 1px solid var(--stroke-bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 1em;
  padding-bottom: 1em;
}

.days7-timeline span {
  position: relative;
  width: 7px;
  height: 7px;
  display: block;
  background: linear-gradient(0deg, var(--pink) 0%, #ffaeda 100%);
  border-radius: 50%;
  margin-left: -4px;
}

.days7-time {
  position: relative;
  display: grid;
  grid-gap: 1em;
}

.days7-time.days7-time--1 {
  padding-bottom: 8em;
  margin-bottom: -2.2em;
}

.days7-time .days7-time__span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.2em 0.8em;
  background-color: var(--pink-2);
  color: var(--white);
  border-radius: 1em;
  margin-right: auto;
}

.days7-time.days7-time--7 .days7-time__span {
  background-color: var(--pink);
}

.days7-time-content {
  font-size: var(--fs-17);
  padding: 1.25em;
  border-radius: 16px;
  font-weight: var(--f-extralight);
  line-height: var(--lh-140);
  color: var(--dark-purple);
  background-color: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 1em;

}

.days7-time-content .days7-time__title {
  font-weight: 600;
}

.days7-time-content .days7-time__text {}


.day7-result {
  font-size: var(--fs-17);
  padding: 0;
  border-radius: 16px;
  font-weight: var(--f-extralight);
  line-height: var(--lh-140);
  color: white;
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 3em;
}

.day7-result__img {
  border-radius: 16px;
  aspect-ratio: 1/1;
  background-color: white;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}

.day7-result__img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.day7-result__content {
  position: relative;
  padding: 1.25em;
  border-radius: 16px;
  background-color: var(--purple);
}

.day7-result__content:after {
  position: absolute;
  content: "";
  display: block;
  background-image: url("img/adv-card-bg-desktop.svg");
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.05;
}

.day7-result__content p {
  font-size: var(--fs-24);
  line-height: 1.4em;
  font-weight: 600;
}

@media (min-width: 480px) {

  .days7-block img {
    max-width: 35%;
  }

  .days7-block {
    flex-direction: row;
    align-items: center;
    gap: 2em;
  }
}

@media (min-width: 640px) {
  .day7-result {
    flex-direction: row;
  }

  .day7-result__content {
    display: flex;
  }

  .day7-result__img {
    width: 200px;
    min-width: 200px;
  }

  .day7-result__content p {
    margin-top: auto;
  }
}


@media (min-width: 768px) {
  .days7-times {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .days7-time.days7-time--1 {
    margin-bottom: 0;
    padding-bottom: 0;
    margin-right: -1em;
    padding-right: 1em;
    padding-left: 0;
    width: 100%;
  }

  .days7-time-content {
    margin-top: 1em;
    width: 16em;
  }

  .days7-timeline {
    width: calc(100% + 5em);
    height: 1px;
    top: 3em;
    left: 0;
    flex-direction: row;
    padding: 0 1.5em 0 2em;
    border-left: none;
    border-bottom: 1px solid var(--stroke-bg);
  }

  .days7-timeline span {
    margin-left: 0;
    margin-bottom: -2px;
  }
}

@media (min-width: 900px) {

  .days7-time-content {
    width: auto;
    max-width: 30em;
    min-width: 20em;
  }
}

@media (min-width: 980px) {
  .day7-result__content {
    width: calc(var(--fs-17) * 25);
    min-width: calc(var(--fs-17) * 25);
  }

  .days7-time--7 .days7-time-content {
    width: calc(var(--fs-17) * 25);
    min-width: calc(var(--fs-17) * 25);
  }

  .day7-result__img {
    margin-right: 1em;
  }

  .days7-block {
    width: calc(100% - var(--fs-17) * 27);
  }
}

@media (min-width: 1024px) {
  .days7-time-content {
    font-size: 20px;
  }

  .days7-times {
    font-size: 20px;

  }
}

@media (min-width: 1400px) {
  .days7-times {
    padding-left: 0;
  }

  .days7-container {
    position: relative;
    display: flex;
    align-items: flex-end;
  }

  .days7-time--7 .days7-time-content {
    width: auto;
    max-width: 30em;
    min-width: 20em;
  }

  .day7-result {
    margin-top: calc(var(--fs-17) * 3 - 200px);
  }

  .day7-result__content {
    width: 18em;
    margin-left: calc(2em - 5px);
    min-width: initial;
    min-height: calc(20px * 7.7);
  }

  .day7-result {
    flex-direction: column;
  }

  .day7-result__content p {
    font-size: 24px;
  }
}

@media (min-width: 1420px) {

  .day7-result__content {
    margin-left: 2em;
  }
}

.unique__box {
  margin-bottom: 0.53em;
  display: flex;
  flex-direction: column;
  gap: 2.67em;
  margin-top: 2.67em;
}

@media (min-width: 440px) {
  .unique__box {
    margin-bottom: 2.67em;
  }
}

@media (min-width: 768px) {
  .unique__box {
    flex-direction: row;
    align-items: stretch;
    margin-bottom: 3.4em;
    gap: 2em;
  }

}

@media (min-width: 1024px) {
  .unique__box {
    flex-direction: row;
    /*align-items: center;*/
    margin-bottom: 3.4em;
  }
}

@media (min-width: 1200px) {
  .unique__box {
    gap: 3em;
  }
}

.unique-card {
  padding: 1.33em;
  display: grid;
  grid-template-columns: 88px auto;
  -moz-column-gap: 1.4em;
  column-gap: 1.4em;
  row-gap: 1.2em;
  border-radius: 16px;
  background-color: var(--bg);
}

@media (min-width: 440px) {
  .unique-card {
    width: 408px;
    grid-template-columns: 78px auto;
    border-radius: 20px;
  }
}

@media (min-width: 640px) {
  .unique-card {
    width: 460px;
    padding: 1.67em;
    padding-bottom: 1em;
    grid-template-columns: 110px auto;
  }
}

@media (min-width: 768px) {
  .unique-card {
    grid-template-columns: 1fr;
  }

}

@media (min-width: 1024px) {
  .unique-card {
    flex-shrink: 0;
    width: 480px;
    grid-template-columns: 110px auto;
  }
}

@media (min-width: 1180px) {
  .unique-card {
    grid-template-columns: 130px auto;

  }
}

@media (min-width: 1200px) {
  .unique-card {
    grid-template-columns: 140px auto;
    width: 32em;
    column-gap: 2em;
  }
}

@media (min-width: 1600px) {
  .unique-card {
    grid-template-columns: 160px auto;
    width: 33em;
  }
}

@media (min-width: 1680px) {
  .unique-card {
    width: 564px;
    grid-template-columns: 143px auto;
  }
}

.unique-card__img img {
  width: 100%;
  height: auto;
}

@media (min-width: 440px) {
  .unique-card__img {
    display: flex;
  }

  .unique-card__img {
    margin-top: auto;
  }
}


@media (min-width: 768px) {
  .unique-card__img {
    width: 100px;
  }
}

@media (min-width: 1180px) {

  .unique-card__img {
    width: 100%;
  }
}

.unique-card__descr {
  font-size: var(--fs-18);
  font-weight: var(--f-light);
  line-height: var(--lh-140);
  color: var(--dark-purple);
  margin-top: auto;
  margin-bottom: 0.5em;
}

@media (min-width: 1180px) {
  .unique-card__descr {
    margin-bottom: 0.7em;
  }

}

@media (min-width: 440px) {}

.unique-card__descr b {
  font-weight: var(--f-medium);
}

.unique-card .btn-box {
  grid-column: span 2;
  flex-wrap: wrap;
}

@media (min-width: 440px) {
  .unique-card .btn-box {
    grid-column: span 1;
    align-self: start;
  }
}

@media (min-width: 768px) {
  .unique-card .btn-box {
    grid-column: span 2;
  }
}

@media (min-width: 980px) {
  .unique-card .btn-box {
    grid-column: span 1;
  }
}

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

@media (min-width: 768px) {
  .unique__picture {
    /* max-height: 19em; */
  }
}

@media (min-width: 800px) {
  .unique__picture {
    max-height: 21.5em;
  }
}

@media (min-width: 900px) {
  .unique__picture {
    border-radius: 20px;
  }
}

@media (min-width: 980px) {
  .unique__picture {
    /* height: 13em; */
  }
}

@media (min-width: 1180px) {
  .unique__picture {
    height: 16em;
  }
}

@media (min-width: 1400px) {
  .unique__picture {
    height: 19em;
  }
}

.unique__picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: center top;
}

.home-instruction {
  position: relative;
}

.home-instruction::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(47%);
  display: block;
  width: 24em;
  aspect-ratio: 3/7;
  background-image: url("img/flower.png");
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 900px) {
  .home-instruction::before {
    right: 0;
    bottom: -9.44em;
    transform: translate(1%, 24%);
    display: block;
    width: 66vw;
    aspect-ratio: 7/6;
    background-image: url("img/flower-desktop.png");
  }
}

.home-instruction .section__box {
  position: relative;
  z-index: 1;
}

.home-where {
  position: relative;
  z-index: 1;
  background-image: url("img/home-where-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 900px) {
  .home-where {
    background-image: url("img/home-where-bg-desktop.svg");
  }
}

.where {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.53em;
}

@media (min-width: 640px) {
  .where {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.11em;
  }
}

@media (min-width: 840px) {
  .where {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .where {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.where__card {
  border-radius: 16px;
  aspect-ratio: 14/9;
  background-color: var(--white);
  overflow: hidden;
}

@media (min-width: 900px) {
  .where__card {
    border-radius: 20px;
  }
}

.where__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  filter: grayscale(20%);
  opacity: 0.8;
  transition: filter 0.3s, opacity 0.3s;
}

.where__card img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transition: filter 0.3s, opacity 0.3s;
}

.where__card.hide {
  display: none;
}

@media (min-width: 840px) {
  .where__card.hide {
    display: block;
  }
}

.where__more {
  display: block;
  margin: 0 auto;
  margin-top: 1.54em;
  border-bottom: 1px solid rgba(62, 38, 137, 0.3);
  font-size: var(--fs-13);
  line-height: var(--lh-160);
  color: var(--dark-purple);
  opacity: 0.5;
}

@media (min-width: 840px) {
  .where__more {
    display: none;
  }
}

.home-articles__box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.66em;
}

@media (min-width: 900px) {
  .home-articles__box {
    grid-template-columns: 1fr 160px;
    gap: 3.33em;
  }
}

@media (min-width: 640px) {
  .home-articles .article:nth-child(3) {
    display: none;
  }
}

@media (min-width: 1200px) {
  .home-articles .article:nth-child(3) {
    display: block;
  }
}

@media (min-width: 900px) {
  .home-articles .articles {
    grid-column: span 2;
    order: 3;
  }
}

@media (min-width: 640px) {
  .home-articles .btn-pink {
    justify-self: center;
  }
}

@media (min-width: 900px) {
  .home-articles .btn-pink {
    justify-self: end;
    align-self: end;
  }
}

.articles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.533em;
}

@media (min-width: 640px) {
  .articles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .articles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.11em;
  }
}

.article__card {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  aspect-ratio: 41/35;
  border-radius: 16px;
  padding: 0.53em;
  overflow: hidden;
}

@media (min-width: 900px) {
  .article__card {
    border: 1px solid var(--stroke-bg);
    border-radius: 30px;
    padding: 0.83em;
    aspect-ratio: 125/133;
  }
}

.article:hover .article__title {
  color: var(--pink);
}

.article__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.article__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.article__img::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("img/article-flower.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.article__content {
  width: 100%;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  padding: 1.33em;
  color: var(--dark-purple);
  background-color: var(--white);
}

@media (min-width: 1200px) {
  .article__content {
    border-radius: 20px;
    padding: 1.94em;
  }
}

.article__title {
  margin-bottom: 0.4em;
  font-weight: var(--f-medium);
  font-size: var(--fs-17);
  line-height: var(--lh-140);
  color: var(--dark-purple);
  transition: color var(--transition);
}

.article__descr {
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 900px) {
  .article__descr {
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }
}


.post-template-default main .index_content p {
  margin-bottom: 1em;
}

.post-template-default main .index_content .page__title {
  padding-bottom: 0.7em;
  margin-bottom: 1em;
  border-bottom: 1px solid var(--stroke-bg);
}

.post-template-default main .index_content h2 {
  font-family: var(--second-family);
  font-size: var(--fs-28);
  line-height: var(--lh-110);
  color: var(--dark-purple);
  margin-bottom: 0.5em;
}

.post-template-default main .index_content h3 {
  font-family: var(--second-family);
  font-size: var(--fs-24);
  line-height: var(--lh-110);
  color: var(--dark-purple);
  margin-bottom: 0.5em;
}

.post-template-default main .index_content ul {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  margin-bottom: 0.7em;
}

.post-template-default main .index_content ul li {
  position: relative;
  padding-left: 1em;
}

.post-template-default main .index_content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(0deg, var(--pink) 0%, #ffaeda 100%);
}

.post-template-default main .index_content p a,
.post-template-default main .index_content ul li a {
  color: var(--dark-purple);
  text-decoration: underline;
}

.post-template-default main .section.about, 
.post-template-default main .section.home-articles {
  margin-top: 6em;
  margin-bottom: 4em;
}

.error404 main p {
  font-size: var(--fs-15);
}

.error404 main p a {
  color: var(--dark-purple);
  text-decoration: underline;
}

.articles.speczialistam li {
  height: auto;
}

.articles.speczialistam li a {
  aspect-ratio: initial;
  height: 100%;
}

.articles.speczialistam .article__img img {
  display: none;
}

.articles.speczialistam .article__content {
  background-color: rgba(255, 255, 255, .75);
}

.articles.speczialistam .article__descr {
  line-clamp: 4;
  -webkit-line-clamp: 4;
}



.overflow_popup {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  backdrop-filter: blur(10px);
}

.overflow_popup.opened {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  z-index: 99999;
}

.overflow_popup .overflow_content {
  display: block;
  width: 100%;
  max-width: 900px;
  padding: 30px;
  background-color: var(--bg);
  border-radius: 20px;
  margin-top: 20vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

body.popup_opened {
  overflow: hidden;
}

.overflow_popup .overflow_content#speczialistam p {
  color: var(--dark-purple);
  margin-bottom: 0.5em;
}

.overflow_popup .overflow_content#speczialistam p.subtitle {
  font-size: var(--fs-17);
}

.overflow_popup .overflow_content#speczialistam a.btn {
  min-width: 6em;
}


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

.section-anchor.section-grey {
  scroll-margin-top: calc(-6.67em + var(--fs-15)*8);
}

@media (min-width: 640px) {
  .section-anchor.section-grey {
    scroll-margin-top: calc(-4em + var(--fs-15)*2);
  }

}

@media (min-width: 1680px) {
  .section-anchor.section-grey {
    scroll-margin-top: calc(-4em + var(--fs-15)*3);
  }

}

main video {
  width: auto;
  height: auto;
  max-height: 60vh;
  aspect-ratio: 128/72;
}




/*landing-page*/

.page-template-mikroflora main .container {
  max-width: 1500px;
}

.page-template-mikroflora .page_content {
  padding-bottom: 0px !important;
}

.text-block h3,
.text-block p.h3 {
  margin: 0;
  font-weight: var(--f-medium);
  font-size: var(--fs-20);
  line-height: var(--lh-120);
  color: var(--dark-purple);
}

.text-block h4,
.text-block p.h4 {
  margin: 0;
  font-weight: var(--f-medium);
  font-size: var(--fs-20);
  line-height: var(--lh-120);
  color: var(--dark-purple);
}

.text-block p {
  margin: 0;
  font-weight: var(--f-regular);
  font-size: var(--fs-15);
  line-height: var(--lh-140);
  color: var(--dark-purple);
}

@media (min-width: 990px) {
  /*.text-block h3 {*/
  /*    font-size: var(--fs-24);*/
  /*}*/
  /*.text-block h4 {*/
  /*    font-size: var(--fs-20);*/
  /*}*/
  /*.text-block p {*/
  /*    font-size: var(--fs-17);*/
  /*}*/
}

.landing-intro {
  text-align: center;
  padding: 4em 0;
}

.page-template-mikroflora .img-wrapper {
  margin: 0 auto 2em auto;
}

.page-template-mikroflora .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 40vh;
}

.page-template-mikroflora .img-wrapper.intro {
  max-width: 320px;
}

.page-template-mikroflora .hero-banner__title {
  text-align: center;
}

.page-template-mikroflora .about-content__text {
  max-width: 436px;
  text-align: center;
  font-weight: var(--f-regular);
  font-size: var(--fs-17);
  line-height: var(--lh-140);
  color: var(--dark-purple);
  margin: 0 auto 1em auto;
}

.landing-intro__box {
  max-width: 494px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.33em;
}

.landing-intro__box-title {
  margin: 0;
  font-weight: var(--f-semibold);
  font-size: var(--fs-17);
  line-height: var(--lh-140);
  color: var(--dark-purple);
}

.landing-intro__text {
  margin: 0;
  font-weight: var(--f-extralight);
  font-size: var(--fs-17);
  line-height: var(--lh-140);
  color: var(--dark-purple);
}

.landing-intro__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5em;
}

@media (min-width: 700px) {
  .landing-intro {
    text-align: left;
  }

  .landing-intro__box {
    width: 100%;
    max-width: none;
  }

  .landing-intro .landing-intro__content-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 2em;
    align-items: end;
  }

  .landing-intro .img-wrapper.intro {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: end;
    justify-self: end;
    margin: 0;
    max-width: 233px;
    min-width: 233px;
  }

  .landing-intro .img-wrapper.intro img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: initial;
  }

  .landing-intro .about-content__text,
  .landing-intro .landing-intro__box {
    grid-column: 1;
    justify-self: start;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .landing-intro .landing-intro__box-title,
  .landing-intro .landing-intro__text {
    text-align: left;
  }
}

@media (min-width: 900px) {
  .landing-intro .img-wrapper.intro {
    max-width: 220px;
    min-width: 220px;
  }

  .page-template-mikroflora .about-content__text {
    max-width: 374px;
  }
}

@media (min-width: 1000px) {
  .landing-intro .img-wrapper.intro {
    max-width: 240px;
    min-width: 240px;
  }
}

@media (min-width: 1024px) {
  .page-template-mikroflora .about-content__text {
    max-width: 422px;
  }
}

@media (min-width: 1200px) {
  .page-template-mikroflora .landing-intro__content-box {
    max-width: min(1005px, 92vw);
    margin: 0 auto;
  }

  .page-template-mikroflora .about-content__text {
    max-width: 100%;
  }
}

@media (min-width: 1440px) {
  .page-template-mikroflora .landing-intro__content-box {
    max-width: min(1212px, 90vw);
  }
}

@media (min-width: 1600px) {


  .page-template-mikroflora .landing-intro__content-box {
    max-width: min(1352px, 88vw);
  }
}

/*блок - состав микрофлоры - composition-of-microflora*/
.composition-of-microflora__box {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  width: 100%;
  max-width: 100%;
  margin-bottom: 2em;
}

.composition-of-microflora__box .work-card__title {
  font-size: var(--fs-17);
}

.work-card__content {
  font-size: var(--fs-15);

}

.section.composition-of-microflora .pink__block {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
}

.composition-of-microflora__info.top,
.composition-of-microflora__info.replay {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.53em;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
}

.composition-of-microflora__info {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  text-align: start;
}

.composition-of-microflora__img-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  transform: none;
}

.problem__sphere {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  width: min(50vw, 280px);
  height: min(50vw, 280px);
  max-width: 280px;
  max-height: 280px;
  margin: 0;
  border-radius: 50%;
  background-image: url(https://lactagel.ru/wf-files/images/problem_sphereBack.png);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.problem__woman {
  position: absolute;
  left: 50%;
  top: 10%;
  display: block;
  width: 88%;
  height: 92%;
  max-width: none;
  max-height: none;
  margin: 0;
  transform: translateX(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.problem__woman.woman-left {
  background-image: url(https://lactagel.ru/wf-files/images/%D0%B6%D0%B5%D0%BD_%D1%81%D0%BB%D0%B5%D0%B2%D0%B0.png);
}

.problem__woman.woman-center {
  background-image: url(https://lactagel.ru/wf-files/images/%D0%B6%D0%B5%D0%BD_%D1%81%D1%86%D0%B5%D0%BD%D1%82%D1%80.png);
}

.problem__woman.woman-right {
  background-image: url(https://lactagel.ru/wf-files/images/%D0%B6%D0%B5%D0%BD_%D0%BF%D1%80%D0%B0%D0%B2%D0%B0.png);
}

@media (min-width: 480px) {
  .composition-of-microflora__img-wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(0.5rem, 2vw, 1.25rem);
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .problem__sphere {
    width: min(28vw, 200px);
    height: min(28vw, 200px);
    max-width: 200px;
    max-height: 200px;
  }
}

@media (min-width: 640px) {
  .section.composition-of-microflora .work__list {
    display: flex;
    flex-direction: column;
  }

  .composition-of-microflora__info.top,
  .composition-of-microflora__info.replay {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 1em;
    row-gap: 0.5em;
    align-items: start;
  }

  .composition-of-microflora__info.top p.h4 {
    grid-column: 1 / 3;
    margin: 0;
  }

  .composition-of-microflora__info.top p {
    grid-column: 3 / 5;
    margin: 0;
    align-self: center;
  }

  .composition-of-microflora__info.replay p:first-child {
    grid-column: 1 / 3;
    margin: 0;
  }

  .composition-of-microflora__info.replay p:nth-child(2) {
    grid-column: 3 / 5;
    margin: 0;
  }
}

@media (min-width: 700px) {
  .composition-of-microflora__box h2.section__title {
    grid-column: 1 / -1;
    max-width: 634px;
  }

  .section.composition-of-microflora .pink__block {
    flex-direction: row;
    gap: 2em;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 1em;
  }

  .composition-of-microflora .work-card__content {
    margin-bottom: 0;
  }

  .composition-of-microflora .work-card.work-card-purple {
    justify-content: space-between;
  }

  .composition-of-microflora__img-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1em;
  }

  .problem__sphere {
    width: min(25vw, 168px);
    height: min(25vw, 168px);
    max-width: 168px;
    max-height: 168px;
    justify-self: center;
  }
}

@media (min-width: 900px) {
  .composition-of-microflora__box h2.section__title {
    width: 100%;
    max-width: 600px;
  }

  .composition-of-microflora__box .work-card__title {
    padding: 1em 1em;
  }
}



@media (min-width: 990px) {

  .composition-of-microflora__info.top,
  .composition-of-microflora__info.replay {
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .composition-of-microflora__box h2.section__title {
    max-width: 768px;
  }

  .composition-of-microflora__info.top,
  .composition-of-microflora__info.replay {
    gap: 2.5em;
    max-width: min(1005px, 92vw);
  }

  .problem__sphere {
    width: 200px;
    height: 200px;
    max-width: 200px;
    max-height: 200px;
  }
}

@media (min-width: 1440px) {

  .composition-of-microflora__info.top,
  .composition-of-microflora__info.replay {
    max-width: min(1212px, 90vw);
    gap: 3em;
  }
}

@media (min-width: 1600px) {
  .composition-of-microflora__box {
    row-gap: 0.65em;
    margin: 0 auto;
  }

  .composition-of-microflora__info.top,
  .composition-of-microflora__info.replay {
    max-width: min(1352px, 88vw);
    gap: 3em;
  }

  .composition-of-microflora__box h2.section__title {
    max-width: 1030px;
  }

  .composition-of-microflora__img-wrapper {
    margin-top: 0.25em;
    margin-bottom: 0.25em;
    padding-left: 2%;
    padding-right: 2%;
    max-width: 100%;
  }

  .problem__sphere {
    width: 180px;
    height: 180px;
    max-width: 180px;
    max-height: 180px;
  }

  .problem__woman {
    top: 6%;
    height: 94%;
  }
}


/*Микрофлора - блок microflora*/
.microflora-content__box {
  display: flex;
  flex-direction: column;
  gap: 2em;
  width: 100%;
}

.microflora-content .section__title {
  margin-bottom: 1em;
  max-width: none;
}

.microflora-content__description.down-block {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
}

.microflora .white-block {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-left: 0;
  margin-right: 0;
  background-color: var(--white);
  padding: 1em 1em;
  border-radius: 10px;
}

.microflora-content__description {
  width: 100%;
  min-width: 0;
}

.microflora-content__description p.h4 {
  margin: 0 0 0.5em;
}

.microflora-content__description p {
  margin: 0 0 0.75em;
}

.microflora-content__description p:last-child {
  margin-bottom: 0;
}

.microflora-content__description span {
  display: block;
  margin-top: 0.25em;
  font-weight: var(--f-regular);
  font-size: var(--fs-17);
  line-height: var(--lh-140);
  color: var(--dark-purple);
}

.key-text {
  font-weight: var(--f-regular);
  font-size: var(--fs-15);
  line-height: var(--lh-140);
  color: var(--dark-purple);
  margin: 0;
}

.key-text span {
  font-weight: var(--f-regular);
  font-size: inherit;
  display: inline;
}

.microflora .white-block .img-wrapper.microflora {
  display: flex;
  width: 100%;
  height: auto;
  margin: 0 auto;
  justify-content: center;
}

.microflora-graph__box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.5em;
}

.microflora-graph__box .white-block {
  order: 1;
}

.microflora-graph__box .microflora-content__description.first {
  order: 2;
}

.microflora-graph__box .microflora-content__description.second {
  order: 3;
}

@media (min-width: 700px) {
  .section-grey.microflora {
    padding-top: 2.5em;
    padding-bottom: 2.5em;
  }

  .microflora-content .section__title {
    margin-bottom: 0.75em;
    line-height: var(--lh-110);
    grid-column: 1 / -1;
    max-width: 720px;
  }

  .microflora-content__description.top-block {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }

  .microflora-content__description.down-block {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 1.25em;
    row-gap: 2em;
    grid-column: 1 / -1;
    width: 100%;
    align-items: flex-start;
  }

  .microflora-graph__box {
    grid-template-columns: 1fr 1fr;
  }

  .microflora-graph__box .white-block {
    grid-column-start: 1;
    grid-column-end: 3;
  }

  .microflora-content__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
    min-width: 0;
    margin: 0;
    padding-left: 0;
  }

  .microflora-content__item.left {
    grid-column: 1;
  }

  .microflora-content__item.right {
    grid-column: 2;
  }

  .img-wrapper.microflora {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .microflora-content__description p.h4 {
    grid-column: 1;
    margin-bottom: 0;
  }

  .microflora-content__description p {
    grid-column: 2;
    margin: 0;
  }
}

@media (min-width: 768px) {
  .microflora-content__item.left p {
    padding-left: 0;
  }

  .microflora-content__item.right p.h4 {
    padding-left: 8%;
  }

  .microflora-content__item.right .key-text {
    padding-left: 8%;
  }
}

@media (min-width: 900px) {
  .microflora .section__title {
    width: 100%;
  }

  .microflora .white-block {
    margin-left: 0;
    margin-right: 0;
    /*padding: 3em 2.25em;*/
  }

  .microflora .white-block .img-wrapper.microflora img {
    /*max-width: min(100%, 640px);*/
    /*max-height: 8.5rem;*/
  }
}

@media (min-width: 990px) {
  .microflora-content__box {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    max-width: 100%;
  }

  .microflora-content__description {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 2em;
    align-items: flex-start;
    max-width: 100%;
    margin: 0 auto;
  }

  .microflora-content__description p.h4 {
    flex: 0 1 55%;
    margin-bottom: 0;
    font-size: var(--fs-17);
  }

  .microflora-content__description p {
    flex: 1 1 58%;
    margin: 0;
    padding-left: 0;
    font-size: var(--fs-15);
  }

  .microflora-content__item.right p.h4 {
    padding-left: 0;
  }

  .microflora-content__item.right .key-text {
    padding-left: 0;
  }

  .img-wrapper.microflora img {
    max-height: 14rem;
  }
}

@media (min-width: 1200px) {
  .microflora .white-block .img-wrapper.microflora img {
    /*max-width: min(100%, 800px);*/
    /*max-height: 9.5rem;*/

    width: 75%;
    max-width: initial;
    max-height: initial;
  }


  .microflora-graph__box {
    grid-template-columns: 1fr 2fr 1fr;
    align-items: end;
  }

  .microflora-graph__box .white-block {
    order: 2;
    grid-column-start: initial;
    grid-column-end: initial;
  }

  .microflora-graph__box .microflora-content__description.first {
    order: 1;
  }

  .microflora-graph__box .microflora-content__description.second {
    order: 3;
  }


}

@media (min-width: 1440px) {
  .microflora .section__title {
    max-width: 1057px;
  }
}

@media (min-width: 1600px) {
  .microflora .white-block .img-wrapper.microflora img {
    /*max-width: min(100%, 800px);*/
    /*max-height: 10rem;*/
  }
}


/*блок симптомы  - symptoms*/

.symptoms-content__box {
  width: 100%;
}

.symptoms-content__list {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  width: 100%;
  max-width: 100%;
}

.symptoms-content__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
  padding-bottom: 1.25em;
  border-bottom: 1px solid var(--dark-purple);
}

.symptoms-content__item.text-block p {
  font-size: var(--fs-15);
}

.img-wrapper.symptoms {
  flex-shrink: 0;
  width: auto;
  max-width: 95px;
  margin: 0 0 1em;
}

.img-wrapper.symptoms.smell {
  max-width: 112px;
}

.img-wrapper.symptoms.without {
  max-width: 187px;
}

.without-list {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  width: 100%;
  margin: 0;
}

.symptoms-content__item .without-list p:not(:last-child) {
  margin-bottom: 0;
}

.symptoms-content__item:nth-child(4) p.h4 {
  margin: 0 0 0.5em;
}

@media (min-width: 480px) {
  .symptoms-content__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    column-gap: 1.25em;
    row-gap: 0;
    align-items: center;
  }

  .img-wrapper.symptoms {
    grid-column: 2;
    grid-row: 1 / -1;
    justify-self: end;
    align-self: center;
    margin: 0;
  }

  .symptoms-content__item p.h4 {
    grid-column: 1;
    grid-row: 1;
  }

  .symptoms-content__item>p,
  .symptoms-content__item .without-list {
    grid-column: 1;
    grid-row: 2;
  }

  .symptoms-content__item:nth-child(4) p.h4 {
    margin: 0 0 1.5em;
  }
}

@media (min-width: 640px) {
  .symptoms-content__list {
    gap: 1em;
  }

  .symptoms-content__item {
    padding-bottom: 1em;
  }
}

@media (min-width: 900px) {
  .symptoms-content .section__title {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .symptoms-content__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 3em;
    row-gap: 0;
  }

  .symptoms-content__item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .symptoms-content__item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    /*padding-right: 40px;*/
  }

  .symptoms-content__item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }

  .symptoms-content__item:nth-child(-n + 3) {
    padding-bottom: 1.25em;
  }

  .symptoms-content__item:nth-child(4) {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    grid-column: 1 / -1;
    grid-row: 2;
    border-bottom: 1px solid var(--dark-purple);
    padding-top: 2.25em;
    padding-bottom: 1.25em;
    margin-top: 0;
  }

  .symptoms-content__item:nth-child(4) .img-wrapper.symptoms.without {
    grid-row: 1 / -1;
  }
}

@media (min-width: 1400px) {
  .symptoms-content__item:nth-child(4) {
    padding-right: 100px;
  }
}


/*блок .complications__woman*/
.section.section-grey.complications__woman {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

.complications__woman .container {
  position: relative;
  display: flex;
  flex-direction: column;
}

.complications-content__box {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
  padding-bottom: 2em;
}

.complications-content__box h3 {
  font-size: var(--fs-17);
}

.complications-content__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65em;
}

.complications-content__box .complications-content__list p {
  position: relative;
  padding-left: 1.1em;
}

.complications-content__box .complications-content__list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: linear-gradient(0deg, var(--pink) 0%, #ffaeda 100%);
}

.complications__woman__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
}

.block-transition {
  position: relative;
  width: 100%;
}

.block-transition .transition-up {
  position: absolute;
  top: -7px;
  left: 0;
  right: 0;
  z-index: 3;
  height: 30px;
  pointer-events: none;
  background: linear-gradient(to bottom,
      var(--bg) 0%,
      rgba(242, 246, 249, 0.92) 25%,
      rgba(242, 246, 249, 0.55) 50%,
      rgba(242, 246, 249, 0.15) 75%,
      transparent 100%);
}

.block-transition .transition-down {
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 0;
  z-index: 3;
  height: 30px;
  pointer-events: none;
  background: linear-gradient(to top,
      var(--bg) 0%,
      rgba(242, 246, 249, 0.92) 25%,
      rgba(242, 246, 249, 0.55) 50%,
      rgba(242, 246, 249, 0.15) 75%,
      transparent 100%);
}

.complications__woman__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}


@media (min-width: 640px) {
  .section.section-grey.complications__woman {
    padding-bottom: 4em;
  }

  .complications-content {
    display: flex;
    flex-direction: row;
    gap: 1.5em;
    align-items: center;
  }

  .block-transition {
    display: flex;
    align-self: center;
    height: 100%;
    flex: 0 1 50%;
  }

  .complications-content__box {
    width: 100%;
    padding-bottom: 0;
    flex: 0 1 50%;
  }
}

@media (min-width: 840px) {
  .section.section-grey.complications__woman {
    padding: 0;
  }

}

@media (min-width: 1200px) {
  .complications-content {
    gap: 2.5em;
    max-width: min(1005px, 92vw);
    margin: 0 auto;
  }
}

@media (min-width: 1440px) {
  .complications-content {
    max-width: min(1212px, 90vw);
    gap: 3em;
  }
}

@media (min-width: 1600px) {
  .complications-content {
    max-width: min(1352px, 88vw);
  }
}

/*блок лечение  - treatment*/
.section.treatment {
  padding: 4em 0 6.66em;
  border-radius: 40px 40px 0 0;
  background-color: #ffffff;
  background-image: url(img/footer-bg-mobile.jpg);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}

@media (min-width: 900px) {
  .section.treatment {
    margin-bottom: 6.67em;
    width: calc(100% - 1.1em);
    margin-right: auto;
    margin-left: auto;
    padding: 3em 0 4em 0;
    border-radius: 20px;
    background-image: url(img/footer-bg-desktop.jpg);
  }
}

.treatment-content__box {
  width: 100%;
}

.treatment-content .section__title {
  width: 100%;
}

.treatment-content__list {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  width: 100%;
  max-width: 100%;
}

.treatment-content__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
  padding-bottom: 2em;
  border-bottom: 1px solid var(--dark-purple);
}

.treatment-content__item p.h4 {
  margin: 0 0 0.5em;
}


@media (min-width: 1200px) {
  .treatment-content__box {
    gap: 2.5em;
    max-width: min(1005px, 92vw);
    margin: 0 auto;
  }
}

@media (min-width: 1400px) {
  .treatment-content__box {
    max-width: min(1212px, 90vw);
    gap: 3em;
  }
}

@media (min-width: 1600px) {
  .treatment-content__box {
    max-width: min(1352px, 88vw);
  }
}

/*блок - восстановление микрофлоры - microflora-of-restoration*/
.section.microflora-of-restoration .microflora-of-restoration-content__box {
  width: 100%;
}

.microflora-of-restoration .section__title {
  width: 100%;
}

.microflora-of-restoration__description {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.microflora-of-restoration .blue-block {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  min-width: 0;
  padding: 2em 1em;
  box-sizing: border-box;
  background-color: var(--bg);
}

.microflora-of-restoration .blue-block .number {
  display: flex;
}

.number span {
  font-size: var(--fs-40);
  line-height: var(--lh-120);
  color: var(--dark-purple);
  align-self: center;
  padding: 0 0.5em 0 0.5em;
}

.microflora-of-restoration__description p.h4 {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

@media (min-width: 600px) {

  .microflora-of-restoration .blue-block {
    flex-direction: row;
  }
}

@media (min-width: 900px) {
  .microflora-of-restoration .blue-block {
    border-radius: 10px;
  }
}

@media (min-width: 1200px) {
  .microflora-of-restoration__description {
    gap: 2em;
  }
}

@media (min-width: 1400px) {
  .microflora-of-restoration__description {
    gap: 2.5em;
  }
}


/*!*блок - разнообразие микрофлоры -*/


.microflora-of-diversity__box {
  width: 100%;
}

.microflora-of-diversity__box p.h4 {
  margin-bottom: 1em;
  font-size: var(--fs-17);
}

.microflora-of-diversity__box p.h3:last-child {
  margin-top: 2em;
}

.microflora-of-diversity-content .section__title {
  width: 100%;
  margin-bottom: 0.5em;
}

.microflora-of-diversity__description-list {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.microflora-of-diversity__description {
  padding: 1.5em;
  background-color: var(--white);
  border-radius: 10px;
}

.microflora-of-diversity__description.text-block h3,
.microflora-of-diversity__description.text-block p.h3 {
  margin-bottom: 1em;
  font-size: var(--fs-17);
}

.footnote {
  margin: 1em 0 0 0;
  font-weight: var(--f-regular);
  font-size: var(--fs-13);
  line-height: var(--lh-110);
  color: var(--stroke-bg);
}

.chart-block__woman {
  position: relative;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 94% 87%;
}

/*
.chart-block__woman.anastasia {
  background-image: url(img/recovery_woman-charts_2.jpg);
}

.chart-block__woman.olga {
  background-image: url(img/recovery_woman-charts_3.jpg);
}

.chart-block__woman.ekaterina {
  background-image: url(img/recovery_woman-charts_5.jpg);
}

.chart-block__woman.darja {
  background-image: url(img/recovery_woman-charts_6.jpg);
}
*/
.chart-block__woman img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 1em;
}

.legend-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.microbe {
  display: flex;
  height: 20px;
  align-items: center;
  border-radius: 4px;
  background-color: #ea0257;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 0 4px;
}

.microbe.l-iners {
  background-color: #ff7c70;
}

.microbe.atopobium {
  background-color: #2d39c5;
}

.microbe.peptoniphilus {
  background-color: #ec6ec8;
}

.microbe.streptococcus {
  background-color: #65849d;
}

.microbe.gardnerella {
  background-color: #6ba7d9;
}

.microbe.corynebacterium {
  background-color: #efc560;
}

.microbe.anaerococcus {
  background-color: #985054;
}

.legend-wrapper__and-more {
  color: #7c7c7c;
  font-size: 12px;
  font-weight: 600;
  height: 20px;
  display: flex;
  align-items: center;
}

@media (min-width: 700px) {
  .microflora-of-diversity__description {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .chart-block__woman,
  .recovery__chart-title-wrapper {
    width: 100%;
    max-width: min(900px, 68vw);
    margin: 0 auto;
  }

  .chart-block__woman img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .microflora-of-diversity__description.text-block h3,
  .microflora-of-diversity__description.text-block p.h3 {
    flex: 0 1 22%;
  }
}

@media (min-width: 990px) {

  .microflora-of-restoration__description p.h4,
  .microflora-of-restoration__description h3 {
    font-size: var(--fs-17);
  }

  .microflora-of-restoration__description p {
    font-size: var(--fs-15);
  }

  .microflora-of-diversity__description h3,
  .microflora-of-diversity__description p.h3 {
    font-size: var(--fs-17);
  }
}

@media (min-width: 1024px) {
  .microflora-of-diversity__description-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2.5em;
    row-gap: 2.5em;
  }

  .microflora-of-diversity__box>p.h4 {
    grid-column: 1 / -1;
  }

  .microflora-of-diversity__box>p.h3:last-child {
    grid-column: 1 / -1;
    margin-top: 1.5em;
  }

  .microflora-of-diversity__description {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: none;
    margin: 0;
    padding: 1em 1em 0.5em 1em;
    background-color: var(--white);
    border-radius: 10px;
    box-sizing: border-box;
    min-width: 0;
  }

  .microflora-of-diversity__description.text-block h3,
  .microflora-of-diversity__description.text-block p.h3 {
    flex: none;
    width: 100%;
    margin: 0 0 0.4em;
  }

  .microflora-of-diversity__description .recovery__chart-block {
    width: 100%;
    min-width: 0;
  }

  .microflora-of-diversity__description .chart-block {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .chart-block__woman {
    background-size: 90% 80%;
  }

  .microflora-of-diversity__description .chart-block__woman,
  .microflora-of-diversity__description .recovery__chart-title-wrapper {
    max-width: none;
    width: 100%;
    margin: 0;
  }

  .microflora-of-diversity__description .chart-block {
    flex-direction: column;
  }
}

@media (min-width: 1200px) {
  .microflora-of-diversity__description-list {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .footnote {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;

  }

  .microflora-of-diversity__description {
    max-width: none;
  }
}

@media (min-width: 1400px) {
  .chart-block__woman {
    background-size: 90% 82%;
  }

  .microflora-of-diversity__description-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 1em;
    max-width: initial;
  }
}

@media (min-width: 1600px) {

  .footnote {
    max-width: initial;
  }

  .chart-block__woman {
    background-size: 90% 83%;
  }
}

@media (min-width: 1680px) {
  .microflora-of-diversity {
    padding: 4em 0;
  }
}

/*блок восстановление - recovery*/

.recovery .section__title {
  width: 100%;
}

.recovery-content .days7-time {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 2em;
  grid-gap: 0;
}

.recovery-content .days7-time.days7-time--1 {
  padding-bottom: 3em;
}

.recovery-content .days7-time .days7-time-content {
  background-color: var(--white);
}

.recovery__process-step {
  margin: 0 auto;
  padding-left: 2em;
}


.recovery__process-step.bottle {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 145px;
  margin-bottom: 2em;
}

.recovery__process-step__description .recovery__process-arrow-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.recovery__process-step__description .recovery__process-arrow-wrapper img {
  max-width: 14%;
  height: auto;
  object-fit: contain;
  padding-top: 1.25em;
}

.recovery__process-sphere {
  position: relative;
  width: min(100%, 140px);
  aspect-ratio: 1 / 1;
  max-width: 170px;
  margin: 0 auto;
  background-image: linear-gradient(134deg, #f1f9ff, hsla(0, 0%, 62%, 0) 88%);
  border-radius: 50%;
}

.recovery__process-sphere img {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 72%;
  max-width: 150px;
  transform: translate(-50%, -50%);
}

.recovery-content .days7-timeline {
  height: 152%;
}

.recovery__process-step__description p.h4 {
  padding-top: 0.5em;
  margin-bottom: 0.5em;
  font-size: var(--fs-17);
}

.recovery__process-sphere.five-step {
  border: 1px solid rgba(71, 30, 100, 0.28);
  background-image: none;
}


@media (min-width: 425px) {
  .recovery-content .days7-time .days7-time-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2em;
  }

  .recovery__process-sphere {
    flex: 1 1 0;
  }

  .recovery__process-step__description {
    flex: 1 1 0;
  }

  .recovery__process-sphere {
    max-width: 100px;
  }

  .recovery__process-step {
    padding-left: 0;
  }

  .recovery__process-step.bottle {
    max-width: 118px;
  }
}

@media (min-width: 600px) {
  .recovery-content__track {
    display: flex;
  }

  .recovery-content .recovery__process-step.bottle {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 0 0 auto;
    margin-right: 3em;
    margin-left: 0;
    max-width: 145px;
    align-self: start;
  }

  .recovery-content .recovery__process-step.bottle .recovery__process-arrow-wrapper img {
    max-width: 24px;
    height: 24px;
    padding-top: 0;
    transform: rotate(-90deg);
  }

  .recovery-content .days7-time {
    padding-left: 1em;
  }

  .recovery-content .days7-time .days7-time-content {
    padding: 0.4em 1em 0.4em 4px;
  }
}

@media (min-width: 768px) {
  .recovery-content .days7-times {
    position: static;
    display: block;
    align-items: stretch;
    justify-content: flex-start;
    padding-left: 3px;
  }

  .recovery-content .days7-container {
    position: static;
    display: block;
    align-items: stretch;
  }

  .recovery-content .days7-time {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 2em;
    grid-gap: 0;
  }

  .recovery-content .days7-time.days7-time--1 {
    margin-bottom: -2.2em;
    padding-bottom: 2em;
    margin-right: 0;
    padding-right: 0;
    padding-left: 2em;
    width: auto;
  }

  .recovery-content .days7-time.days7-time--7 {
    padding-left: 2em;
  }

  .recovery-content .days7-time .days7-time__span {
    margin-right: auto;
    font-size: var(--fs-15);
  }

  .recovery-content .days7-time-content {
    margin-top: 0;
    width: 100%;
    max-width: none;
    min-width: 0;
    font-size: var(--fs-17);
  }

  .recovery-content .days7-timeline {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 152%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1em 0;
    border-left: 1px solid var(--stroke-bg);
    border-bottom: none;
  }

  .recovery-content .days7-timeline span {
    margin-left: -4px;
    margin-bottom: 0;
  }
}

/*преимущества lactagel - блок lactagel-result*/

.lactagel-result h2.section__title-mb {
  width: 100%;
  margin-bottom: 0.5em;
}

.lactagel-result .white-block {
  display: flex;
  flex-direction: row;
  gap: 1.25em;
  min-width: 0;
  padding: 1.1em 1em 1.3em 1em;
  box-sizing: border-box;
  background-color: var(--white);

}

.lactagel-result .white-block .number {
  display: flex;
}

.lactagel-result .days7-time .days7-time-content {
  padding: 0;
  min-width: 0;
}

.page-template-mikroflora .lactagel-result .days7-time-content_row {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
}

.page-template-mikroflora .lactagel-result .img-wrapper.lactagel-process_box {
  max-width: 285px;
  min-width: 285px;
  height: auto;
  margin: 0 auto 2em auto;
}

.page-template-mikroflora .lactagel-result .img-wrapper.lactagel-result-img {
  max-width: 150px;
  min-width: 150px;
  height: auto;
  margin: 0 auto;
}

.page-template-mikroflora .lactagel-result .img-wrapper.lactagel-result-woman-img {
  max-width: 200px;
  min-width: 200px;
}

@media (min-width: 425px) {
  .lactagel-result .days7-time .days7-time-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2em;
    padding: 1.5em;
  }

  .page-template-mikroflora .lactagel-result .days7-time-content_row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    /*grid-template-rows: auto auto;
    align-items: stretch;*/
    align-items: center;
    column-gap: 1.25em;
    row-gap: 0.75em;
    width: 100%;
    max-width: none;
    min-width: 0;
    margin: 0;
  }

  .lactagel-result .days7-time-content_row>.img-wrapper.lactagel-result-img {
    grid-column: 1;
    grid-row: 1 / -1;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: none;
    min-width: 0;
    width: auto;
    height: 100%;
    margin: 0;
  }

  .lactagel-result .days7-time-content_row>.img-wrapper.lactagel-result-img img {
    width: auto;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    max-width: 100px;
    min-width: 100px;
  }

  .lactagel-result .days7-time-content_row>.text-block:first-of-type {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    margin: 0;
    display: flex;
    align-items: center;
  }

  .lactagel-result .days7-time-content_row>.text-block:first-of-type p.h4 {
    margin: 0;
  }

  .lactagel-result .days7-time-content_row>.recovery__process-step__description {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
    margin: 0;
  }

  .page-template-mikroflora .lactagel-result .img-wrapper.lactagel-result-img {}

  .page-template-mikroflora .lactagel-result .img-wrapper.lactagel-result-woman-img {
    max-width: 200px;
    min-width: 200px;
  }
}

@media (min-width: 768px) {
  .lactagel-result .days7-times {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    padding: 0;
    margin-top: 1em;
  }

  .lactagel-result .days7-time.days7-time--1,
  .lactagel-result .days7-time.days7-time--7 {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr);
    align-content: start;
    align-items: start;
    /*flex: 1 1 0;*/
    min-width: 0;
    height: auto;
    position: relative;
    padding: 0;
  }

  .lactagel-result .days7-time.days7-time--1 {
    flex: 0 0 53%;
  }

  .lactagel-result .days7-time.days7-time--7 {
    flex: 0 0 25%;
  }

  /* бейдж — всегда строка 1 */
  .lactagel-result .days7-time>.days7-time__span {
    grid-row: 1;
    grid-column: 1;
    align-self: start;
  }

  .lactagel-result .days7-time .days7-time-content {
    width: 100%;
    max-width: none;
    min-height: 100%;
    height: 100%;
    margin-top: 0em;
    flex-direction: column;
    justify-content: center;
    /*align-items: end;*/
    background-color: var(--bg);
  }

  .lactagel-result .days7-time .days7-time-content.salute-dance {
    padding: 0 0 0 0;
    justify-content: end;
    margin-bottom: -2em;
  }

  .lactagel-result .days7-time.days7-time--7>.days7-time__span {
    justify-self: end;
    margin-left: auto;
    margin-right: 0;
    margin-left: -3.5em;
    margin-right: auto;
  }

  .lactagel-result .days7-time.days7-time--1 .days7-timeline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 141%;
    width: 100% !important;
    height: 1px;
    margin: 0;
    top: 2.5em;
  }

  .page-template-mikroflora .lactagel-result .img-wrapper.lactagel-process_box {
    display: flex;
    align-self: end;
    max-width: 190px;
    min-width: 0;
    margin: 0 1em 0 0;
  }

  .page-template-mikroflora .lactagel-result h3 {
    margin-top: 1em;
  }

  .page-template-mikroflora .lactagel-result .img-wrapper.lactagel-result-img p.h4 {
    flex: 1 1 0;
  }

  .page-template-mikroflora .lactagel-result .img-wrapper.lactagel-result-img img {
    flex: 1 1 0;
  }

  .page-template-mikroflora .lactagel-result .img-wrapper.lactagel-result-woman-img {
    max-width: 180px;
    min-width: 180px;
    margin: 0;
    opacity: 0.6;
  }
}

@media (min-width: 900px) {
  .lactagel-result .white-block {
    border-radius: 10px;
  }
}

@media (min-width: 960px) {
  .lactagel-result .days7-time.days7-time--1 .days7-timeline {
    width: 142%;
  }
}

@media (min-width: 1080px) {
  .lactagel-result .days7-time.days7-time--1 .days7-timeline {
    width: 143%;
  }
}

@media (min-width: 1200px) {
  .lactagel-result .days7-time.days7-time--1 .days7-timeline {
    width: 146%;
  }

  .page-template-mikroflora .microflora-of-restoration__description {
    gap: 1em;
  }
}

@media (min-width: 1340px) {
  .lactagel-result .days7-time.days7-time--1 .days7-timeline {
    width: 149%;
  }
}

@media (min-width: 1500px) {
  .lactagel-result .days7-time.days7-time--1 .days7-timeline {
    width: 152%;
    z-index: 2;
  }
}


@media (min-width: 1680px) {
  .lactagel-result {
    padding: 4em 0;
  }
}


/*блок Сравнение методов - comparison-of-methods*/
.comparison-of-methods__box {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  width: 100%;
  max-width: 100%;
  margin-bottom: 2em;
}

.methods__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.53em;
}

.comparison-of-methods .about-content__text {
  margin: 0;
  text-align: start;
  max-width: 100%;
}

@media (min-width: 768px) {
  .methods__list {
    display: none;
  }
}

/*
@media (min-width: 640px) {
  .methods__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .methods__list {
    gap: 1.11em;
  }
}*/

.method-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1em;
  padding: 1.25em;
  border-radius: 16px;
  font-weight: var(--f-extralight);
  font-size: var(--fs-20);
  line-height: var(--lh-140);
  color: var(--dark-purple);
  background-color: var(--bg);
  background-image: url("img/adv-card-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 640px) {
  .method-card {
    min-height: 9.86em;
    padding: 1em;
    flex-direction: column-reverse;
    border-radius: 20px;
    background-image: url("img/adv-card-bg-desktop.svg");
    justify-content: flex-end;
  }
}

/*
@media (min-width: 900px) {
  .method-card {
    padding: 1.33em;
  }
}

@media (min-width: 1200px) {
  .method-card {
    font-size: 20px;
  }
}

@media (min-width: 1600px) {
  .method-card {
    font-size: var(--fs-20);
    font-size: 24px;
    min-height: 8em;
  }
}
  */

.methods__list_2 {
  position: relative;
  grid-gap: 0;
  display: none;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 768px) {

  .methods__list_2 {
    display: grid;
    grid-template-columns: 1fr;
  }

  .methods__list_2>div {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0;    
    align-items: center;
  }
}

.methods__list_2 .method-card_2 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;

  padding: 1.25em;
  border-radius: 16px;
  color: var(--dark-purple);
  background-image: url("img/adv-card-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

.methods__list_2 p {
  position: relative;
  background-color: var(--bg);
  padding: 0.5em 1em;
  height: 100%;
}
.methods__list_2 p:not(.h3) {
  border-bottom: 1px dotted var(--dark-purple);
  display: flex;
  align-items: center;
}
.methods__list_2 p.p_lactagel {
  background-color: var(--purple);
  color: #fff;
  border-color: #fff;
}
.methods__list_2 div:last-child p {
  border-bottom: 0px;
}
.methods__list_2 p:not(.h3) span {
  position: relative;
  display: block;
  padding-left: 15px;
}
.methods__list_2 p:not(.h3) span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: linear-gradient(0deg, var(--pink) 0%, #ffaeda 100%);
}