@charset "UTF-8";
.header {
  display: flex;
  max-width: 1820px;
  margin: 0 auto;
  width: 100%;
  gap: 5px;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  font-family: sans-serif;
  transition: transform 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
@media (max-width: 1820px) {
  .header {
    width: auto;
  }
}
@media (max-width: 1024px) {
  .header {
    padding: 0px 0px;
  }
}
.header--hidden {
  transform: translateY(-100%);
}
.header__left {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 16px;
  max-width: 340px;
  width: 100%;
  height: 84px;
}
@media (max-width: 1820px) {
  .header__left {
    padding: 0 5px;
  }
}
@media (max-width: 1024px) {
  .header__left {
    height: 76px;
    max-width: 280px;
    padding: 0;
  }
}
.header__vertical {
  height: 42.6px;
  border-left: 1.22px solid #d0dded;
  margin: 0 25px;
}
@media (max-width: 1820px) {
  .header__vertical {
    margin: 0 10px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: #fff;
  padding: 0px 45px;
  border-radius: 16px;
  margin: 0 auto;
  height: 84px;
  font-weight: 600;
}
@media (max-width: 1820px) {
  .header__nav {
    max-width: 800px;
    gap: 0;
    flex-wrap: wrap;
    width: 100%;
    min-width: 430px;
    justify-content: center;
    align-items: center;
    padding: 0px 15px;
  }
}
.header__nav .header__link {
  color: #023336;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  transition: 0.5s ease;
}
@media (max-width: 1820px) {
  .header__nav .header__link {
    padding: 0px 10px;
  }
}
.header__nav .header__link:hover {
  color: #ff7200;
  transition: 0.5s ease;
}
.header__nav--first {
  max-width: 860px;
  width: 100%;
  gap: 0;
  justify-content: space-between;
}
@media (max-width: 1520px) {
  .header__nav--first {
    justify-content: center;
  }
}
.header__nav--first .header__link {
  margin-right: 15px;
}
.header__nav--second {
  padding: 0px 38px;
}
@media (max-width: 1820px) {
  .header__nav--second {
    max-width: 220px;
    gap: 0;
    flex-wrap: wrap;
    width: 100%;
    min-width: 160px;
    justify-content: center;
    align-items: center;
    padding: 0px 15px;
  }
}
.header__nav .header__dropdown {
  position: relative;
}
.header__nav .header__dropdown:hover .dropdown {
  display: flex;
}
.header__buy {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #005d63;
  color: #fff;
  border-radius: 16px;
  transition: 0.5s ease;
  font-weight: 600;
  max-width: 240px;
  width: 100%;
  height: 84px;
}
.header__buy-icon {
  margin-right: 8px;
  animation: shake 30s infinite;
  transform-origin: center center;
}
@media (max-width: 1820px) {
  .header__buy {
    max-width: 188px;
  }
}
.header__buy:hover {
  background-color: #ff7200;
  transition: 0.5s ease;
}
.header__buy-icon {
  margin-right: 8px;
}
.header__buy-button {
  color: #fff;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .header {
    background-color: #fff;
    z-index: 10;
  }
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  opacity: 0;
  align-items: flex-start;
  flex-direction: column;
  transition: opacity 0.3s ease;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  border-radius: 10px;
}
.dropdown a {
  color: #023336;
  text-decoration: none;
  padding: 5px 0px;
  transition: 0.3s ease;
}
.dropdown a:hover {
  color: #ff7200;
  transition: 0.3s ease;
}
.dropdown--white65 {
  background-color: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  min-width: 227px;
  transition: all 0.3s ease;
  opacity: 1;
}
.dropdown--white55 {
  background-color: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  min-width: 325px;
  transition: all 0.3s ease;
  opacity: 1;
  left: -10px;
}
@media (max-width: 1024px) {
  .dropdown {
    position: relative;
    opacity: 1;
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }
}

.mobile__nav {
  display: none;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .mobile__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 66px;
    height: 66px;
  }
}
.mobile__nav #burger-btn {
  position: relative;
  width: 24px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: none;
  padding: 0;
  cursor: pointer;
  background: transparent !important;
  transition: transform 0.3s ease;
}
.mobile__nav #burger-btn span {
  display: block;
  height: 3px;
  background-color: #ff7200;
  border-radius: 2px;
  transition: all 0.3s ease;
  width: 100%;
  transform-origin: center;
}
.mobile__nav #burger-btn:hover span {
  background-color: #ff7200;
}
.mobile__nav #burger-btn.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.mobile__nav #burger-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile__nav #burger-btn.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 84px;
  right: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 99;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.mobile-menu.active {
  display: block;
  top: 76px;
}
.mobile-menu__nav {
  background-color: #edf1f6;
  display: flex;
  flex-direction: column;
  padding: 5px 15px;
  height: 90vh;
  z-index: 100;
  position: relative;
}
.mobile-menu__nav a {
  font-size: 18px;
  text-decoration: none;
  color: #005d63;
  padding: 10px 0;
  font-weight: 600;
  transition: all 0.3s ease;
}
@media (max-width: 560px) {
  .mobile-menu__nav a {
    padding: 7px 0 0 0;
  }
}
.mobile-menu__nav a:hover {
  color: #ff7200;
}
.mobile-menu__nav .header__dropdown--mob .dropdown--white55--mob a {
  color: #005d63;
  position: relative;
  cursor: pointer;
  transition: 0.5s ease;
}
.mobile-menu__nav .header__dropdown--mob .dropdown--white55--mob a:hover {
  color: #ff7200;
  transition: 0.5s ease;
}

@media (max-width: 1024px) {
  .header__nav,
  .header__nav--second,
  .header__buy {
    display: none !important;
  }
}
@keyframes shake {
  0%, 100% {
    transform: rotate(0deg);
  }
  1% {
    transform: rotate(15deg);
  }
  2% {
    transform: rotate(-15deg);
  }
  3% {
    transform: rotate(10deg);
  }
  4% {
    transform: rotate(-10deg);
  }
  5% {
    transform: rotate(0deg);
  }
}
.header__link--mob {
  cursor: pointer;
  text-decoration: none;
  color: #005d63;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 18px;
}
.header__link--mob:hover {
  color: #ff7200;
  transition: all 0.3s ease;
}

.header__dropdown--mob {
  position: relative;
  bottom: 0;
  margin: 10px 0;
}
@media (max-width: 375px) {
  .header__dropdown--mob {
    margin: 5px 0 0 0;
  }
}

.dropdown--white55--mob {
  position: static;
  min-width: 325px;
  transition: all 0.3s ease;
  opacity: 1;
  box-shadow: none;
  padding: 10px 0;
}
@media (max-width: 375px) {
  .dropdown--white55--mob {
    padding: 0;
  }
}
.dropdown--white55--mob a {
  font-weight: 400;
  font-size: 14px;
  padding: 6px 0;
  max-width: 280px;
}
.dropdown--white55--mob:hover {
  background-color: #edf1f6;
  transition: all 0.3s ease;
}

.mob-btn {
  display: block !important;
  border-radius: 16px;
  height: 65px;
  max-width: 1024px;
  width: 100%;
  margin-top: 15px;
}
@media (max-width: 375px) {
  .mob-btn {
    height: 40px;
    margin-top: 5px;
  }
}
.mob-btn .header__buy-button {
  width: 100%;
  color: #fff;
  padding: 0;
}
.mob-btn .header__buy-button:hover {
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  margin: 0;
  padding: 0;
  line-height: 1;
  background-color: #edf1f6;
  overflow-x: hidden;
  position: relative;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  min-height: 480px;
}

.main--static {
  padding-top: 104px;
}

button {
  padding: 0;
}

h1,
h2,
h3,
.h3,
h4 {
  margin: 0;
}

.attention {
  font-size: 28px;
  margin: 0px 0px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  color: #d3d6dc;
}
@media (max-width: 560px) {
  .attention {
    font-size: 24px;
  }
}
@media (max-width: 375px) {
  .attention {
    font-size: 18px;
  }
}

@font-face {
  font-family: "Inter";
  src: url("/css/fonts/inter/inter-v19-cyrillic_latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/css/fonts/inter/inter-v19-cyrillic_latin-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/css/fonts/inter/inter-v19-cyrillic_latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/css/fonts/inter/inter-v19-cyrillic_latin-500italic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/css/fonts/inter/inter-v19-cyrillic_latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/css/fonts/inter/inter-v19-cyrillic_latin-600italic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/css/fonts/inter/inter-v19-cyrillic_latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/css/fonts/inter/inter-v19-cyrillic_latin-700italic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/css/fonts/inter/inter-v19-cyrillic_latin-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/css/fonts/inter/inter-v19-cyrillic_latin-800italic.woff2") format("woff2");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
.content {
  max-width: 1920px;
  width: 100%;
  margin: 0 20px 20px 20px;
  display: flex;
}
@media (max-width: 1024px) {
  .content {
    margin-bottom: 0;
  }
}
.content--general {
  display: flex;
  justify-content: center;
  align-items: center;
}
.content .box__button--buymob {
  display: none;
}
@media (max-width: 1024px) {
  .content .box__button--buymob {
    display: block;
    height: 70px;
    max-width: 1024px;
    width: 96%;
    border-radius: 16px;
    background-color: #005d63;
    backdrop-filter: blur(50px);
    margin: 5px auto 0px;
    transition: 0.5s ease;
    border: solid 0px;
  }
  .content .box__button--buymob a {
    display: flex;
    border-radius: 16px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    height: 100%;
    transition: 0.5s ease;
  }
  .content .box__button--buymob a:hover {
    background-color: #ff7200;
    color: white;
  }
}

.container--1 {
  padding-top: 104px;
}
@media (max-width: 1024px) {
  .container--1 {
    padding-top: 78px;
  }
}
.container--3, .container--4, .container--51, .container--52, .container--12 {
  scroll-margin-top: 104px;
}
@media (max-width: 1024px) {
  .container--3, .container--4, .container--51, .container--52, .container--12 {
    scroll-margin-top: 78px;
  }
}
.container--1, .container--2, .container--3, .container--4, .container--5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1820px;
  width: 100%;
  margin: 0 15px 20px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .container--1, .container--2, .container--3, .container--4, .container--5 {
    margin: 0 0px 20px;
  }
}
.container--1 .age, .container--2 .age, .container--3 .age, .container--4 .age, .container--5 .age {
  font-size: 111px;
  font-weight: 600;
  color: #023336;
  margin: 0 0 35px 0;
  /* Медиазапрос для экранов до 1920px (плавающее изменение) */
  /* Фиксированные размеры на экранах до 1024px */
}
@media (max-width: 1024px) {
  .container--1 .age, .container--2 .age, .container--3 .age, .container--4 .age, .container--5 .age {
    margin: 10px 15px 20px !important;
  }
}
.container--1 .age span, .container--2 .age span, .container--3 .age span, .container--4 .age span, .container--5 .age span {
  font-size: 130px;
  font-weight: 600;
  font-family: "Times New Roman", Times, serif;
}
.container--1 .age span sup, .container--2 .age span sup, .container--3 .age span sup, .container--4 .age span sup, .container--5 .age span sup {
  font-family: "Raleway", sans-serif;
  font-size: 40px;
  font-weight: 800;
  bottom: 20px;
  position: relative;
}
@media (max-width: 1919px) {
  .container--1 .age, .container--2 .age, .container--3 .age, .container--4 .age, .container--5 .age {
    font-size: calc(55px + 56 * (100vw - 1024px) / 896);
  }
  .container--1 .age span, .container--2 .age span, .container--3 .age span, .container--4 .age span, .container--5 .age span {
    font-size: calc(65px + 65 * (100vw - 1024px) / 896);
  }
  .container--1 .age span sup, .container--2 .age span sup, .container--3 .age span sup, .container--4 .age span sup, .container--5 .age span sup {
    font-size: calc(20px + 20 * (100vw - 1024px) / 896);
    bottom: calc(10px + 10 * (100vw - 1024px) / 896);
  }
}
@media (max-width: 864px) {
  .container--1 .age, .container--2 .age, .container--3 .age, .container--4 .age, .container--5 .age {
    font-size: 45px;
    margin: 0 0 20px 0;
  }
  .container--1 .age span, .container--2 .age span, .container--3 .age span, .container--4 .age span, .container--5 .age span {
    font-size: 50px;
  }
  .container--1 .age span sup, .container--2 .age span sup, .container--3 .age span sup, .container--4 .age span sup, .container--5 .age span sup {
    font-size: 17px;
    bottom: 8px;
  }
}
@media (max-width: 560px) {
  .container--1 .age, .container--2 .age, .container--3 .age, .container--4 .age, .container--5 .age {
    font-size: 32px;
    margin: 0 0 20px 0;
  }
  .container--1 .age span, .container--2 .age span, .container--3 .age span, .container--4 .age span, .container--5 .age span {
    font-size: 37px;
  }
  .container--1 .age span sup, .container--2 .age span sup, .container--3 .age span sup, .container--4 .age span sup, .container--5 .age span sup {
    font-size: 17px;
    bottom: 8px;
  }
}
@media (min-width: 1024px) {
  .container--1 .age35,
  .container--1 .age20, .container--2 .age35,
  .container--2 .age20, .container--3 .age35,
  .container--3 .age20, .container--4 .age35,
  .container--4 .age20, .container--5 .age35,
  .container--5 .age20 {
    font-size: calc(55px + 56 * (55vw - 1024px) / 896) !important;
  }
}
@media (min-width: 1024px) {
  .container--1 .age50, .container--2 .age50, .container--3 .age50, .container--4 .age50, .container--5 .age50 {
    font-size: calc(55px + 56 * (44vw - 1024px) / 896) !important;
  }
}
@media (max-width: 1024px) {
  .container--2 {
    margin: 0 0px 0px;
  }
}
@media (max-width: 1024px) {
  .container--3 {
    margin-bottom: -60px !important;
  }
}
.container--5 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (min-width: 1025px) {
  .container--5 {
    align-items: stretch;
  }
  .container--5 .container-farma,
  .container--5 .container-shema {
    flex: 1;
    min-height: 100%;
  }
}
@media (max-width: 1024px) {
  .container--5 {
    display: flex;
    gap: 20px;
    flex-direction: column;
  }
}
.container__box {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
  width: 100%;
  border-radius: 24px;
  height: min(639px, 100vh);
  background-position: center;
  min-height: 256px;
}
@media (max-width: 1376px) {
  .container__box {
    height: min(639px, 68vh);
  }
}
@media (max-width: 864px) {
  .container__box {
    border-radius: 6.6px;
    height: 511.2px;
  }
}
@media (max-width: 768px) {
  .container__box {
    height: 447.3px;
  }
}
@media (max-width: 680px) {
  .container__box {
    height: 383.4px;
  }
}
@media (max-width: 550px) {
  .container__box {
    height: 319.5px;
  }
}
@media (max-width: 450px) {
  .container__box {
    height: 255.6px;
  }
}
.container__box--img {
  margin: -2px 14px;
  position: relative;
}
.container__box--img img {
  max-height: 686px;
  height: 100%;
  max-width: 1153px;
  width: 100%;
}
.container__box--cystone {
  display: flex;
  flex-direction: column;
  max-height: 538px;
  width: 100%;
  max-width: 415px;
  justify-content: center;
  margin-bottom: 50px;
  margin-right: 14px;
}
.container__box--cystone .box__img {
  height: 358px;
  max-width: 415px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(50px);
  margin-bottom: 10px;
  border: solid 1px rgba(255, 255, 255, 0.5);
}
.container__box--cystone .box__img img {
  max-width: 372px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.container__box--cystone .box__button--shema {
  height: 80px;
  max-width: 415px;
  width: 100%;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(50px);
  margin-bottom: 10px;
  border: solid 1px rgba(255, 255, 255, 0.5);
  transition: 0.5s ease;
}
.container__box--cystone .box__button--shema a {
  display: flex;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #023336;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  height: 100%;
  transition: 0.5s ease;
}
.container__box--cystone .box__button--shema a:hover {
  color: #ff7200;
  background-color: rgba(255, 255, 255, 0.85);
  transition: 0.5s ease;
}
.container__box--cystone .box__button--buy {
  height: 80px;
  max-width: 415px;
  width: 100%;
  border-radius: 16px;
  background-color: #005d63;
  backdrop-filter: blur(50px);
  margin-bottom: 10px;
  transition: 0.5s ease;
  border: solid 0px;
}
.container__box--cystone .box__button--buy a {
  display: flex;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  height: 100%;
  transition: 0.5s ease;
}
.container__box--cystone .box__button--buy a:hover {
  color: #ff7200;
  background-color: #ff7200;
  transition: 0.5s ease;
  color: white;
}
@media (max-width: 1599px) {
  .container__box--cystone {
    max-width: calc(415px * 0.82);
    max-height: calc(538px * 0.82);
    margin-bottom: calc(50px * 0.82);
    margin-right: calc(14px * 0.82);
  }
  .container__box--cystone .box__img {
    height: calc(358px * 0.82);
    max-width: calc(415px * 0.82);
    margin-bottom: calc(10px * 0.82);
  }
  .container__box--cystone .box__img img {
    max-width: calc(372px * 0.82);
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .container__box--cystone .box__button--shema,
  .container__box--cystone .box__button--buy {
    height: calc(80px * 0.82);
    max-width: calc(415px * 0.82);
    margin-bottom: calc(10px * 0.82);
  }
  .container__box--cystone .box__button--shema a,
  .container__box--cystone .box__button--buy a {
    font-size: calc(18px * 0.82);
  }
}
@media (max-width: 1024px) {
  .container__box--cystone {
    display: none;
  }
}
.container__background {
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
}
.container__background img {
  width: 100%;
  height: auto;
  display: none;
}
@media (min-width: 1024px) {
  .container__background .background--l {
    display: block;
  }
}
@media (min-width: 456px) and (max-width: 1023px) {
  .container__background .background--m {
    display: block;
  }
}
@media (max-width: 455px) {
  .container__background .background--s {
    display: block;
  }
}

.el-dialog {
  position: relative;
  margin: 25px 15px 25px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  width: 92%;
  justify-content: center;
  align-items: center;
  max-width: 960px;
}
.el-dialog__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}
.el-dialog__header {
  padding: 20px 3vw 10px;
  background: #006068;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.el-dialog__header i {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
}
.el-dialog__header i::before, .el-dialog__header i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px; /* Толщина линий крестика */
  background-color: currentColor; /* Цвет будет наследоваться от родителя */
}
.el-dialog__header i::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.el-dialog__header i::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.el-dialog__headerbtn {
  position: absolute;
  top: 13px;
  right: 20px;
  padding: 0;
  background: 0 0;
  border: none;
  outline: 0;
  cursor: pointer;
  font-size: 16px;
}
.el-dialog__headerbtn .el-dialog__close {
  color: #fff;
  font-size: 20px;
  transition: 0.3s ease;
}
.el-dialog__headerbtn .el-dialog__close:hover {
  color: #ff7200;
  transition: 0.3s ease;
}
.el-dialog__title {
  line-height: 24px;
  font-size: 18px;
  color: #fff;
}
.el-dialog__body {
  padding: 25px 3vw;
  color: #606266;
  font-size: 14px;
  background: #006068;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.form-block {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .form-block {
    flex-direction: column;
  }
}
.form-block-left {
  flex: 1;
}
.form-block-right {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

.el-input,
.el-textarea {
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
}
.el-input__inner,
.el-textarea__inner {
  width: 100%;
  padding: 10px;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  box-sizing: border-box;
}

.el-textarea__inner {
  min-height: 100px;
  resize: vertical;
}

.el-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.el-checkbox__input {
  position: relative;
  margin-right: 10px;
}
.el-checkbox__input .el-checkbox__inner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #dcdfe6;
  border-radius: 2px;
  background-color: #fff;
  position: relative;
}
.el-checkbox__input .el-checkbox__original {
  opacity: 0;
  position: absolute;
  margin: 0;
  z-index: -1;
}
.el-checkbox__label {
  font-size: 14px;
  color: white;
}

.el-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 25px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  min-width: 335px;
}
.el-button--primary {
  background-color: #fff;
  color: #006068;
  transition: all 0.3s;
}
.el-button--primary:hover {
  background-color: #004a50;
  color: #fff;
  transition: all 0.3s;
}

.question {
  background: #006068;
  color: #fff;
  border-radius: 4px;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.question p {
  color: white;
  font-size: 20px;
}
.question img {
  margin-top: 10px;
  max-width: 100px;
}

.form-politics {
  color: white;
  text-decoration: underline;
}

.text-danger {
  color: #f56c6c;
  font-size: 12px;
}

.dialog-fade-enter-active {
  animation: dialog-fade-in 0.3s;
}

.dialog-fade-leave-active {
  animation: dialog-fade-out 0.3s;
}

@keyframes dialog-fade-in {
  0% {
    transform: translate3d(0, -20px, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes dialog-fade-out {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, -20px, 0);
    opacity: 0;
  }
}
.el-checkbox__original {
  display: none;
}

.el-checkbox__inner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  background-color: #fff;
  cursor: pointer;
}

.el-checkbox__input.is-checked .el-checkbox__inner {
  background-color: #fff; /* или ваш цвет */
  border-color: #fff;
}

.el-checkbox__input.is-checked .el-checkbox__inner::after {
  content: "";
  position: absolute;
  display: block;
  left: 5px;
  top: 0px;
  width: 5px;
  height: 11px;
  border: solid #006068;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.reactor {
  background-image: url("/src/images/reactor.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 89vh;
  max-height: 859px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
@media (max-width: 1024px) {
  .reactor {
    height: 350px;
    width: 100%;
    margin: 0 15px;
  }
}
.reactor__wrapper {
  width: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  z-index: -1;
}
@media (max-width: 1024px) {
  .reactor__wrapper {
    border-radius: 24px;
  }
}
.reactor__wrapper-bg {
  width: 100%;
  height: 100vh;
  object-position: bottom;
  position: relative;
  object-fit: cover;
  z-index: 1;
}
@media (max-width: 1024px) {
  .reactor__wrapper-bg {
    height: 46vh;
  }
}
.reactor__wrapper-gr1, .reactor__wrapper-gr2 {
  position: absolute;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 2;
}
@media (max-width: 1024px) {
  .reactor__wrapper-gr1, .reactor__wrapper-gr2 {
    display: none;
  }
}
.reactor__wrapper-gr1 {
  top: 0;
  background: linear-gradient(180deg, #fff 18.18%, rgba(255, 255, 255, 0) 100%);
}
.reactor__wrapper-gr2 {
  bottom: 0;
  background: linear-gradient(0deg, #fff 18.18%, rgba(255, 255, 255, 0) 100%);
}
.reactor .reactor-item {
  position: absolute;
  width: 200px;
  height: 80px;
}
@media (max-width: 968px) {
  .reactor .reactor-item {
    display: none;
  }
}
.reactor .reactor-item.hov1, .reactor .reactor-item.hov2, .reactor .reactor-item.hov3, .reactor .reactor-item.hov4 {
  left: calc(50% - 385px);
  transform: rotate(22deg);
}
.reactor .reactor-item.hov5, .reactor .reactor-item.hov6, .reactor .reactor-item.hov7, .reactor .reactor-item.hov8 {
  right: calc(47% - 320px);
  transform: rotate(-22deg);
}
.reactor .reactor-item.hov1, .reactor .reactor-item.hov5 {
  top: 220px;
}
.reactor .reactor-item.hov2, .reactor .reactor-item.hov6 {
  top: 300px;
}
.reactor .reactor-item.hov3, .reactor .reactor-item.hov7 {
  top: 380px;
}
.reactor .reactor-item.hov4, .reactor .reactor-item.hov8 {
  top: 460px;
}
.reactor .reactor-item_popup {
  pointer-events: none;
  position: absolute;
  gap: 5px;
  max-width: 50vw;
  top: 0;
  display: none;
}
@media (max-width: 1530px) {
  .reactor .reactor-item_popup {
    max-width: 59vw;
  }
}
.reactor .reactor-item_popup.hov1, .reactor .reactor-item_popup.hov2, .reactor .reactor-item_popup.hov3, .reactor .reactor-item_popup.hov4 {
  left: calc(50% - 345px + 200px);
}
.reactor .reactor-item_popup.hov5, .reactor .reactor-item_popup.hov6, .reactor .reactor-item_popup.hov7, .reactor .reactor-item_popup.hov8 {
  right: calc(50% - 345px + 200px);
}
@media (max-width: 1530px) {
  .reactor .reactor-item_popup.hov5, .reactor .reactor-item_popup.hov6, .reactor .reactor-item_popup.hov7, .reactor .reactor-item_popup.hov8 {
    right: calc(50% - 345px + 100px);
  }
}
.reactor .reactor-item_popup.hov5 .reactor-item_popup-block, .reactor .reactor-item_popup.hov6 .reactor-item_popup-block, .reactor .reactor-item_popup.hov7 .reactor-item_popup-block, .reactor .reactor-item_popup.hov8 .reactor-item_popup-block {
  order: 2;
}
.reactor .reactor-item_popup.hov5 .reactor-item_popup-img, .reactor .reactor-item_popup.hov6 .reactor-item_popup-img, .reactor .reactor-item_popup.hov7 .reactor-item_popup-img, .reactor .reactor-item_popup.hov8 .reactor-item_popup-img {
  order: 1;
}
.reactor .reactor-item_popup.hov1, .reactor .reactor-item_popup.hov5 {
  top: 300px;
}
.reactor .reactor-item_popup.hov2, .reactor .reactor-item_popup.hov6 {
  top: 320px;
}
.reactor .reactor-item_popup.hov3, .reactor .reactor-item_popup.hov7 {
  top: 190px;
}
.reactor .reactor-item_popup.hov4, .reactor .reactor-item_popup.hov8 {
  top: 230px;
}
.swiper-slide .reactor .reactor-item_popup {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.reactor .reactor-item_popup-block {
  padding: 30px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: solid 1px rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  margin-right: 12px;
}
.swiper-slide .reactor .reactor-item_popup-block {
  width: 100%;
}
@media (max-width: 1530px) {
  .reactor .reactor-item_popup-block {
    width: 55%;
  }
}
.reactor .reactor-item_popup-img {
  max-width: 257px;
  width: 100%;
  background-color: #fff;
  border-radius: 24px;
  position: relative;
}
.swiper-slide .reactor .reactor-item_popup-img {
  width: 100%;
  height: 250px;
}
.reactor .reactor-item_popup-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  object-fit: contain;
  transform: translate(-50%, -50%) scale(0.85);
}
@media (max-width: 1024px) {
  .reactor .reactor-item_popup-img img {
    transform: translate(-50%, -50%) scale(0.5);
  }
}
.reactor .reactor-item_popup-title {
  font: 600 20px/22px "Inter";
  letter-spacing: 0.5px;
  text-align: left;
  color: #023336;
  margin-bottom: 15px;
}
.reactor .reactor-item_popup-text {
  font: 500 16px/20px "Inter";
  line-height: 1.22;
  letter-spacing: 0.5px;
  text-align: left;
  color: #023336;
}

.swiper-components {
  display: none;
}
@media (max-width: 1024px) {
  .swiper-components {
    display: block;
    max-width: 1024px;
    overflow: hidden;
    width: 100%;
    position: relative;
    border: solid 1px rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    top: -80px;
  }
  @supports (-webkit-backdrop-filter: blur(1px)) {
    .swiper-components {
      background-color: hsla(0, 0%, 100%, 0.3);
      -webkit-backdrop-filter: blur(15px);
    }
  }
  .swiper-components .swiper-wrapper {
    display: flex;
  }
  .swiper-components .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    width: 100%;
    max-width: 1024px;
  }
  .swiper-components .swiper-slide .reactor-item_popup {
    margin-top: 25px;
  }
  .swiper-components .swiper-slide .reactor-item_popup-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 25px;
  }
  .swiper-components .swiper-slide .reactor-item_popup-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  .swiper-components .swiper-slide .reactor-item_popup-img img {
    max-width: 136px;
    object-fit: contain;
    border-radius: 50%;
  }
  .swiper-components .swiper-slide .reactor-item_popup-title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    color: #023336;
  }
  .swiper-components .swiper-slide .reactor-item_popup-text {
    font-size: 16px;
    text-align: center;
    margin-bottom: 25px;
    color: #023336;
  }
  .swiper-components .swiper-pagination {
    position: static;
    margin-top: 0;
    margin-bottom: 35px;
  }
  .swiper-components .swiper-pagination-bullet {
    background: #000;
    opacity: 0.3;
  }
  .swiper-components .swiper-pagination-bullet-active {
    opacity: 1;
  }
}
.swiper-components .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 10px;
  background-color: rgba(155, 165, 183, 0.74);
}
.swiper-components .swiper-pagination-bullet-active {
  background-color: #023336;
  opacity: 1;
}

.container__text {
  display: flex;
  padding: 50px;
  border-radius: 24px;
  position: relative;
  top: -30px;
  border: solid 1px rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  margin-bottom: -30px;
  scroll-margin-top: 104px;
}
@supports (-webkit-backdrop-filter: blur(1px)) {
  .container__text {
    background-color: hsla(0, 0%, 100%, 0.6);
    -webkit-backdrop-filter: blur(10px);
  }
}
.container__text--cystit {
  top: 0;
}
@media (max-width: 1024px) {
  .container__text {
    flex-direction: column;
    padding: 0;
    scroll-margin-top: 78px;
  }
}
@media (max-width: 455px) {
  .container__text {
    top: -50px;
  }
}
.container__text-about {
  max-width: 740px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .container__text-about {
    max-width: 1024px;
    margin: 25px 30px 0 15px;
  }
}
.container__text-info {
  max-width: 840px;
  border: solid 2px rgb(255, 255, 255);
  border-radius: 24px;
  margin: 0 15px 25px 15px;
}
.container__text-info--cystit {
  max-width: 840px;
  border: solid 2px rgb(255, 255, 255);
  border-radius: 24px;
  margin: 60px 15px 25px 15px;
}
.container__text-info--cystit img {
  padding: 30px;
}
@media (max-width: 1024px) {
  .container__text-info--cystit img {
    padding: 25px 0px 0 20px;
    margin-bottom: 25px;
  }
}
.container__text-info--cystit .container__info-desc {
  padding: 30px;
}
@media (max-width: 1024px) {
  .container__text-info--cystit .container__info-desc {
    padding: 0px 20px 25px;
  }
}
.container__text-info--cystit .container__info-desc p {
  color: #ff7200;
  line-height: 140%;
}
.container__text-info--cystit .container__info-desc p:first-child {
  margin-bottom: 10px;
}
.container__text-info--cystit .container__info-desc p:last-child {
  margin-bottom: 0px;
}
@media (max-width: 1024px) {
  .container__text-info--cystit {
    margin-top: 0px;
  }
}
.container__text-info img {
  padding: 30px;
}
@media (max-width: 1024px) {
  .container__text-info img {
    padding: 25px 0px 0 20px;
  }
}
.container__text-info .container__info-desc {
  padding: 30px;
}
@media (max-width: 1024px) {
  .container__text-info .container__info-desc {
    padding: 0px 20px 25px;
  }
}
.container__text-info .container__info-desc p {
  color: #ff7200;
  line-height: 140%;
}
.container__text-info .container__info-desc p:first-child {
  margin-bottom: 10px;
}
.container__text-info .container__info-desc p:last-child {
  margin-bottom: 0px;
}
.container__text-title {
  margin-bottom: 20px;
}
.container__text-title p {
  font-size: 70px;
  font-weight: 600;
  color: #023336;
  margin: 0;
}
.container__text-title p span {
  font-family: "Times New Roman", Times, serif;
  font-size: 80px;
}
@media (max-width: 1024px) {
  .container__text-title p span {
    font-size: 34px;
  }
}
@media (max-width: 560px) {
  .container__text-title p span {
    font-size: 28px;
  }
}
.container__text-title p span sup {
  font-family: "Raleway", sans-serif;
  font-size: 28px;
}
@media (max-width: 560px) {
  .container__text-title p span sup {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .container__text-title p {
    font-size: 32px;
    color: #ff7200;
  }
}
@media (max-width: 560px) {
  .container__text-title p {
    font-size: 24px;
    color: #ff7200;
  }
}
.container__text-desc p {
  font-size: 20px;
  font-weight: 500;
  color: #023336;
  margin: 0;
  line-height: 150%;
}
@media (max-width: 1024px) {
  .container__text-desc p {
    font-size: 16px;
    line-height: 135%;
  }
}
@media (max-width: 1024px) {
  .container__text-desc {
    margin-bottom: 25px;
  }
}

.container__text--cystit {
  top: 0px;
}
@media (max-width: 1024px) {
  .container__text--cystit {
    margin-bottom: 0px;
  }
}

.container-farma {
  flex-direction: column;
}
.container-farma__blocks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.container-farma__blocks--block {
  display: flex;
  background-color: #fff;
  border-radius: 16px;
  width: clamp(345px, 20vw, 394px);
  align-items: center;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .container-farma__blocks--block {
    margin: 0 15px;
  }
}
.container-farma__blocks--block img {
  margin: 20px 15.5px 20px 20px;
}
.container-shema {
  flex-direction: column;
}
.container-shema__info {
  display: flex;
  justify-content: space-between;
  margin: 0 50px;
}
@media (max-width: 1600px) {
  .container-shema__info {
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media (max-width: 1024px) {
  .container-shema__info {
    flex-direction: row;
    margin: 0 15px;
  }
}
@media (max-width: 860px) {
  .container-shema__info {
    flex-direction: column-reverse;
  }
}
.container-shema__info--instr {
  display: flex;
  gap: 30px;
  flex-direction: column;
  justify-content: space-around;
}
@media (max-width: 1024px) {
  .container-shema__info--instr {
    margin-left: 0px;
  }
}
@media (max-width: 860px) {
  .container-shema__info--instr {
    width: 100%;
  }
}
.container-shema__info--instr--point {
  display: flex;
  align-items: center;
}
.container-shema__info--instr--point img {
  margin-right: 20px;
}
.container-shema__info--instr--point p {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.container-shema__info--instr--point p span {
  font-size: 14px;
  color: #90a0ba;
  max-width: 250px;
  display: inline-block;
  margin-top: 4px;
  font-weight: 500;
}
.container-shema__info--download {
  display: flex;
  flex-direction: column;
  transition: color 0.3s ease;
}
.container-shema__info--download:hover p {
  transition: color 0.3s ease;
  color: #ff7200 !important;
}
@media (max-width: 1600px) {
  .container-shema__info--download {
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .container-shema__info--download {
    margin-bottom: 0px;
  }
}
@media (max-width: 860px) {
  .container-shema__info--download {
    margin-bottom: 20px;
  }
}
.container-shema__info--download img {
  margin: 0 15px 38px;
  max-width: 295px;
}
.container-shema__info--download a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.container-shema__info--download a p {
  margin: 0;
  padding: 2px;
  border-bottom: 1px dashed;
  color: rgba(144, 160, 186, 0.85) !important;
  transition: color 0.3s ease;
}
.container-shema__info--download a svg {
  margin: 3.5px 8px 3.5px 0;
}
.container-shema__info--download a svg path {
  transition: fill 0.3s ease, stroke 0.3s ease;
}
.container-shema__info--download a:hover {
  color: #ff7200;
}
.container-shema__info--download a:hover svg path {
  fill: #ff7200;
  stroke: #ff7200;
  fill-opacity: 1;
}
.container-farma, .container-shema {
  display: flex;
  padding: 50px 0;
  border-radius: 24px;
  position: relative;
  border: solid 1px rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: auto;
  backdrop-filter: blur(15px);
  justify-content: space-around;
  box-sizing: border-box;
  scroll-margin-top: 104px;
}
@media (max-width: 1024px) {
  .container-farma, .container-shema {
    padding: 25px 0;
    scroll-margin-top: 78px;
  }
}
.container-farma__text, .container-shema__text {
  margin: 0 50px 30px;
}
@media (max-width: 1024px) {
  .container-farma__text, .container-shema__text {
    margin: 0 15px 25px;
  }
}
.container-farma__text--title h2, .container-shema__text--title h2 {
  font-size: 45px;
  color: #023336;
  font-weight: 600;
  margin: 0 0 20px;
}
.container-farma__text--title h2 span, .container-shema__text--title h2 span {
  font-family: "Times New Roman", Times, serif;
  font-size: 55px;
}
@media (max-width: 1024px) {
  .container-farma__text--title h2 span, .container-shema__text--title h2 span {
    font-size: 34px;
  }
}
@media (max-width: 560px) {
  .container-farma__text--title h2 span, .container-shema__text--title h2 span {
    font-size: 28px;
  }
}
.container-farma__text--title h2 span sup, .container-shema__text--title h2 span sup {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 560px) {
  .container-farma__text--title h2 span sup, .container-shema__text--title h2 span sup {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .container-farma__text--title h2, .container-shema__text--title h2 {
    font-size: 32px;
    color: #ff7200;
  }
}
@media (max-width: 560px) {
  .container-farma__text--title h2, .container-shema__text--title h2 {
    font-size: 24px;
    color: #ff7200;
  }
}
.container-farma__text--desc p, .container-shema__text--desc p {
  line-height: 122%;
  font-size: 16px;
}
.container-farma__text--desc p span, .container-shema__text--desc p span {
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
}
.container-farma__text--desc p span sup, .container-shema__text--desc p span sup {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 12px;
}

.container--51, .container--52 {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1820px;
  width: 100%;
  margin: 0 15px 20px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .container--51, .container--52 {
    margin: 0 0 20px;
  }
}
.container-farma2gr {
  flex-direction: row;
}
.container-farma2gr__blocks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}
.container-farma2gr__blocks--block {
  display: flex;
  background-color: #fff;
  border-radius: 16px;
  width: clamp(345px, 20vw, 394px);
  align-items: center;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .container-farma2gr__blocks--block {
    margin: 0 15px;
  }
}
.container-farma2gr__blocks--block img {
  margin: 20px 15.5px 20px 20px;
}
.container-shema2gr {
  flex-direction: column;
}
.container-shema2gr__info {
  margin: 0 50px;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1600px) {
  .container-shema2gr__info {
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media (max-width: 1024px) {
  .container-shema2gr__info {
    flex-direction: row;
    margin: 0 15px;
  }
}
@media (max-width: 860px) {
  .container-shema2gr__info {
    flex-direction: column-reverse;
  }
}
.container-shema2gr__info--instr {
  display: flex;
  gap: 60px;
  flex-direction: row;
  justify-content: space-evenly;
  background-color: #fff;
  border-radius: 20px;
  padding: 65px 25px;
  max-width: 840px;
  width: 100%;
}
@media (max-width: 1600px) {
  .container-shema2gr__info--instr {
    gap: 30px;
  }
}
@media (max-width: 1376px) {
  .container-shema2gr__info--instr {
    gap: 15px;
  }
}
@media (max-width: 1024px) {
  .container-shema2gr__info--instr {
    max-width: calc(100% - 50px);
    width: 100%;
    background-color: transparent;
  }
}
@media (max-width: 860px) {
  .container-shema2gr__info--instr {
    margin-left: 15px;
  }
}
@media (max-width: 650px) {
  .container-shema2gr__info--instr {
    flex-direction: column;
    gap: 10px;
  }
}
.container-shema2gr__info--instr--point {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.container-shema2gr__info--instr--point img {
  margin-top: 20px;
  margin-bottom: 25px;
}
.container-shema2gr__info--instr--point p {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  max-width: 203px;
  width: 100%;
}
.container-shema2gr__info--instr--point p span {
  font-size: 14px;
  color: #90a0ba;
  display: inline-block;
  margin-top: 4px;
  font-weight: 400;
}
.container-shema2gr__info--instr--point p:last-child {
  margin-bottom: 0px;
}
.container-shema2gr__info--download {
  display: flex;
  flex-direction: column;
  transition: color 0.3s ease;
}
.container-shema2gr__info--download:hover p {
  transition: color 0.3s ease;
  color: #ff7200 !important;
}
@media (max-width: 1600px) {
  .container-shema2gr__info--download {
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .container-shema2gr__info--download {
    margin-bottom: 0px;
  }
}
@media (max-width: 860px) {
  .container-shema2gr__info--download {
    margin-bottom: 20px;
  }
}
.container-shema2gr__info--download img {
  margin: 0 15px 38px;
  max-width: 295px;
}
.container-shema2gr__info--download a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: color 0.3s ease;
}
.container-shema2gr__info--download a p {
  margin: 0;
  padding: 2px;
  border-bottom: 1px dashed;
  color: rgba(144, 160, 186, 0.85) !important;
}
.container-shema2gr__info--download a svg {
  margin: 3.5px 8px 3.5px 0;
}
.container-shema2gr__info--download a svg path {
  transition: fill 0.3s ease, stroke 0.3s ease;
}
.container-shema2gr__info--download a:hover svg path {
  fill: #ff7200;
  stroke: #ff7200;
  fill-opacity: 1;
}
.container-shema2gr {
  display: flex;
  padding: 50px 0;
  border-radius: 24px;
  position: relative;
  border: solid 1px rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: auto;
  backdrop-filter: blur(15px);
  justify-content: space-around;
  box-sizing: border-box;
  flex-direction: row;
}
@media (max-width: 1024px) {
  .container-shema2gr {
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    margin: 20px 0 0;
  }
}
.container-shema2gr__text {
  margin: 0 50px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 740px;
}
@media (max-width: 1024px) {
  .container-shema2gr__text {
    margin: 0 15px 25px;
  }
}
.container-shema2gr__text--title h2 {
  font-size: 45px;
  color: #023336;
  font-weight: 600;
  margin: 0 0 20px;
}
.container-shema2gr__text--title h2 span {
  font-family: "Times New Roman", Times, serif;
  font-size: 55px;
}
@media (max-width: 1024px) {
  .container-shema2gr__text--title h2 span {
    font-size: 34px;
  }
}
.container-shema2gr__text--title h2 span sup {
  font-size: 20px;
}
@media (max-width: 1024px) {
  .container-shema2gr__text--title h2 {
    font-size: 32px;
    color: #ff7200;
  }
}
@media (max-width: 560px) {
  .container-shema2gr__text--title h2 {
    font-size: 24px;
    color: #ff7200;
  }
}
.container-shema2gr__text--desc p:first-child {
  margin-bottom: 15px;
  font-weight: 600;
}
.container-shema2gr__text--desc p:first-child span {
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
}
.container-shema2gr__text--desc p:last-child {
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .container-shema2gr__text--desc p:last-child {
    margin-bottom: 50px;
  }
}
.container-shema2gr__text--desc p {
  line-height: 122%;
  font-size: 16px;
}
.container-shema2gr__text--desc p span {
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
}
.container-farma2gr {
  display: flex;
  padding: 50px 0;
  border-radius: 24px;
  position: relative;
  border: solid 1px rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: auto;
  backdrop-filter: blur(15px);
  justify-content: space-around;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .container-farma2gr {
    padding: 25px 0;
    flex-direction: column;
  }
}
.container-farma2gr__text {
  margin: 0 50px 30px;
  flex: 1;
}
@media (max-width: 1024px) {
  .container-farma2gr__text {
    margin: 0 15px 25px;
  }
}
.container-farma2gr__text--title h2 {
  font-size: 45px;
  color: #023336;
  font-weight: 600;
  margin: 0 0 20px;
}
.container-farma2gr__text--title h2 span {
  font-family: "Times New Roman", Times, serif;
  font-size: 55px;
}
@media (max-width: 1024px) {
  .container-farma2gr__text--title h2 span {
    font-size: 34px;
  }
}
.container-farma2gr__text--title h2 span sup {
  font-family: "Raleway", sans-serif;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .container-farma2gr__text--title h2 {
    font-size: 32px;
    color: #ff7200;
  }
}
@media (max-width: 560px) {
  .container-farma2gr__text--title h2 {
    font-size: 24px;
    color: #ff7200;
  }
}
.container-farma2gr__text--desc p {
  line-height: 122%;
  font-size: 16px;
}
.container-farma2gr__text--desc p span {
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
}
.container-farma2gr__text--desc p span sup {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
}

.container--6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1820px;
  width: 100%;
  margin: 0 15px 20px;
  box-sizing: border-box;
  scroll-margin-top: 104px;
}
@media (max-width: 1024px) {
  .container--6 {
    margin: 0 0 20px;
    scroll-margin-top: 78px;
  }
}

.cystitis-symptoms.active .cystitis-symptoms--title h2 {
  color: #023336;
  transition: 0.5s ease;
}

.cystitis-symptoms {
  max-width: 1820px;
  width: 100%;
  margin: 0 auto;
  font-family: sans-serif;
  border: solid 1px rgba(255, 255, 255, 0.5);
  background-color: rgb(255, 255, 255);
  border-radius: 24px;
}
.cystitis-symptoms--title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 50px;
}
@media (max-width: 1024px) {
  .cystitis-symptoms--title {
    padding-right: 0px;
    cursor: pointer;
    margin: 25px 15px;
  }
}
.cystitis-symptoms .btn-arrow {
  display: none;
}
@media (max-width: 1024px) {
  .cystitis-symptoms .btn-arrow {
    display: block;
    width: 44px;
    height: 44px;
    transition: transform 0.3s ease;
  }
}
.cystitis-symptoms .arrow__off,
.cystitis-symptoms .arrow__on {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cystitis-symptoms .arrow__on {
  display: none;
  opacity: 0;
  transform: rotate(-90deg);
}
.cystitis-symptoms.active .arrow__off {
  display: none;
  opacity: 0;
  transform: rotate(90deg);
}
.cystitis-symptoms.active .arrow__on {
  display: block;
  opacity: 1;
  transform: rotate(0deg);
}
.cystitis-symptoms h2 {
  color: #023336;
  font-size: 45px;
  font-weight: 600;
  margin: 50px 0 25px 50px;
  transition: 0.5s ease;
}
@media (max-width: 1024px) {
  .cystitis-symptoms h2 {
    color: #ff7200;
    margin: 0;
    font-size: 28px;
  }
}
@media (max-width: 864px) {
  .cystitis-symptoms h2 {
    font-size: 28px;
  }
}
@media (max-width: 560px) {
  .cystitis-symptoms h2 {
    font-size: 24px;
  }
}

.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  padding: 0 50px 50px;
}
@media (max-width: 1024px) {
  .symptoms-grid {
    display: flex;
    flex-direction: column;
    padding: 0 15px 25px;
  }
}
@media (max-width: 1024px) {
  .symptoms-grid {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .cystitis-symptoms.active .symptoms-grid {
    max-height: 3000px;
    padding: 0 15px 25px;
  }
}

.symptom-card {
  background: #f3f6f9;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 140px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  justify-content: space-between;
}
.symptom-card img {
  width: 36px;
  height: 36px;
}
.symptom-card p {
  margin: 0;
  color: #023336;
  font-size: 20px;
  line-height: 1.24;
  font-weight: 600;
}
.symptom-card.card1, .symptom-card.card2, .symptom-card.card3, .symptom-card.card4, .symptom-card.card5, .symptom-card.card6, .symptom-card.card7, .symptom-card.card8 {
  justify-content: flex-start;
}
.symptom-card.card1 p, .symptom-card.card2 p, .symptom-card.card3 p, .symptom-card.card4 p, .symptom-card.card5 p, .symptom-card.card6 p, .symptom-card.card7 p, .symptom-card.card8 p {
  font-size: 20px;
  line-height: 1.24;
}
@media (max-width: 1024px) {
  .symptom-card.card1 p, .symptom-card.card2 p, .symptom-card.card3 p, .symptom-card.card4 p, .symptom-card.card5 p, .symptom-card.card6 p, .symptom-card.card7 p, .symptom-card.card8 p {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .symptom-card.card1, .symptom-card.card2, .symptom-card.card3, .symptom-card.card4, .symptom-card.card5, .symptom-card.card6, .symptom-card.card7, .symptom-card.card8 {
    min-height: auto;
  }
}
.symptom-card.card1 .cardimg-mob, .symptom-card.card2 .cardimg-mob, .symptom-card.card3 .cardimg-mob, .symptom-card.card4 .cardimg-mob, .symptom-card.card5 .cardimg-mob, .symptom-card.card6 .cardimg-mob, .symptom-card.card7 .cardimg-mob, .symptom-card.card8 .cardimg-mob {
  display: none;
}
@media (max-width: 1024px) {
  .symptom-card.card1 .cardimg-mob, .symptom-card.card2 .cardimg-mob, .symptom-card.card3 .cardimg-mob, .symptom-card.card4 .cardimg-mob, .symptom-card.card5 .cardimg-mob, .symptom-card.card6 .cardimg-mob, .symptom-card.card7 .cardimg-mob, .symptom-card.card8 .cardimg-mob {
    display: none;
    max-width: 46px;
    height: auto;
  }
}
@media (max-width: 1024px) {
  .symptom-card.card1 .cardimg, .symptom-card.card2 .cardimg, .symptom-card.card3 .cardimg, .symptom-card.card4 .cardimg, .symptom-card.card5 .cardimg, .symptom-card.card6 .cardimg, .symptom-card.card7 .cardimg, .symptom-card.card8 .cardimg {
    display: block;
  }
}
.symptom-card.card1 {
  grid-column: 1/3;
  grid-row: 1;
}
.symptom-card.card1 p {
  max-width: 457px;
}
.symptom-card.card2 {
  grid-column: 3;
  grid-row: 1;
}
.symptom-card.card2 p {
  max-width: 210px;
}
.symptom-card.card3 {
  grid-column: 4;
  grid-row: 1;
}
.symptom-card.card3 p {
  max-width: 307px;
}
.symptom-card.card4 {
  grid-column: 1;
  grid-row: 2;
}
.symptom-card.card4 p {
  max-width: 263px;
}
.symptom-card.card5 {
  grid-column: 2;
  grid-row: 2;
}
.symptom-card.card5 p {
  max-width: 212px;
}
.symptom-card.card6 {
  grid-column: 3/5;
  grid-row: 2/4;
}
@media (min-width: 1025px) {
  .symptom-card.card6 {
    background-image: url("../../src/images/symptoms/symptom.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
  }
}
@media (max-width: 1024px) {
  .symptom-card.card6 {
    order: 8;
    background-image: url("../../src/images/symptoms/symptom.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
  }
}
.symptom-card.card6 p {
  max-width: 252px;
}
.symptom-card.card7 {
  grid-column: 1;
  grid-row: 3;
}
.symptom-card.card7 p {
  max-width: 309px;
}
.symptom-card.card8 {
  grid-column: 2;
  grid-row: 3;
}
.symptom-card.card8 p {
  max-width: 196px;
}

.image-card {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.image-card p {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  padding: 16px;
  margin: 0;
  font-weight: 600;
}

p {
  margin: 0;
}

.container--7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1820px;
  width: 100%;
  margin: 0 15px 20px;
  box-sizing: border-box;
  scroll-margin-top: 104px;
}
@media (max-width: 1024px) {
  .container--7 {
    margin: 0 0 20px;
    scroll-margin-top: 78px;
  }
}

.cystitis-triggers {
  max-width: 1820px;
  width: 100%;
  margin: 10px auto 20px;
  font-family: "Inter", sans-serif;
  border: solid 1px rgba(255, 255, 255, 0.5);
  background-color: rgb(255, 255, 255);
  border-radius: 24px;
}
@media (max-width: 1024px) {
  .cystitis-triggers {
    margin: 0px auto 20px;
  }
}

.triggers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 50px;
}
@media (max-width: 1024px) {
  .triggers-grid {
    padding: 25px 15px 25px;
    max-width: 1024px;
  }
}
.triggers-grid .card1 {
  grid-column: 1/3;
  grid-row: 1/3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 90px;
  margin-bottom: 44px;
}
@media (max-width: 1024px) {
  .triggers-grid .card1 {
    margin-right: 0;
    margin-bottom: 0px;
  }
}
.triggers-grid .card1 h2 {
  font-size: 45px;
  color: #023336;
  margin: 0 0 25px 0;
}
@media (max-width: 1024px) {
  .triggers-grid .card1 h2 {
    font-size: 28px;
    color: #ff7200;
  }
}
@media (max-width: 560px) {
  .triggers-grid .card1 h2 {
    font-size: 24px;
  }
}
.triggers-grid .card1--text {
  margin: 0 0 50px 0;
}
.triggers-grid .card1--text p {
  margin: 0;
  color: #023336;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.22;
}
.triggers-grid .card1--text p:first-child {
  margin-bottom: 15px;
}
.triggers-grid .card2 {
  grid-column: 3/5;
  grid-row: 1/3;
  background-image: url("../../src/images/trigger-cystit.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  border-radius: 16px;
  margin-bottom: 44px;
  min-height: 330px;
}
@media (max-width: 1024px) {
  .triggers-grid .card2 {
    display: none;
  }
}
.triggers-grid .card3,
.triggers-grid .card4,
.triggers-grid .card5,
.triggers-grid .card6,
.triggers-grid .card7,
.triggers-grid .card8,
.triggers-grid .card9,
.triggers-grid .card10 {
  background: #ffffff;
  padding: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-right: 50px;
}
.triggers-grid .card3 img,
.triggers-grid .card4 img,
.triggers-grid .card5 img,
.triggers-grid .card6 img,
.triggers-grid .card7 img,
.triggers-grid .card8 img,
.triggers-grid .card9 img,
.triggers-grid .card10 img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}
.triggers-grid .card3 p,
.triggers-grid .card4 p,
.triggers-grid .card5 p,
.triggers-grid .card6 p,
.triggers-grid .card7 p,
.triggers-grid .card8 p,
.triggers-grid .card9 p,
.triggers-grid .card10 p {
  margin: 0;
  font-weight: 600;
  color: #023336;
  line-height: 1.19;
}
.triggers-grid .card7,
.triggers-grid .card8,
.triggers-grid .card9,
.triggers-grid .card10 {
  padding-top: 30px;
}
.triggers-grid .card3,
.triggers-grid .card4,
.triggers-grid .card5,
.triggers-grid .card6 {
  padding-bottom: 30px;
}
.triggers-grid .card4,
.triggers-grid .card5,
.triggers-grid .card6,
.triggers-grid .card8,
.triggers-grid .card9,
.triggers-grid .card10 {
  padding-left: 33px;
}
.triggers-grid .card3 {
  grid-column: 1;
  grid-row: 3;
  border-bottom: 1px solid #e5edf5;
  border-right: 1px solid #e5edf5;
}
.triggers-grid .card4 {
  grid-column: 2;
  grid-row: 3;
  border-bottom: 1px solid #e5edf5;
  border-right: 1px solid #e5edf5;
}
.triggers-grid .card5 {
  grid-column: 3;
  grid-row: 3;
  border-bottom: 1px solid #e5edf5;
  border-right: 1px solid #e5edf5;
}
.triggers-grid .card6 {
  grid-column: 4;
  grid-row: 3;
  border-bottom: 1px solid #e5edf5;
}
.triggers-grid .card7 {
  grid-column: 1;
  grid-row: 4;
  border-right: 1px solid #e5edf5;
}
.triggers-grid .card8 {
  grid-column: 2;
  grid-row: 4;
  border-right: 1px solid #e5edf5;
}
.triggers-grid .card9 {
  grid-column: 3;
  grid-row: 4;
  border-right: 1px solid #e5edf5;
}
.triggers-grid .card10 {
  grid-column: 4;
  grid-row: 4;
}
@media (max-width: 1024px) {
  .triggers-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .triggers-grid .card3,
  .triggers-grid .card4,
  .triggers-grid .card5,
  .triggers-grid .card6,
  .triggers-grid .card7,
  .triggers-grid .card8,
  .triggers-grid .card9,
  .triggers-grid .card10 {
    padding: 0;
    border: 0;
    margin-bottom: 25px;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  .triggers-grid .card3 {
    margin-top: 35px;
  }
}
@media (max-width: 1024px) {
  .triggers-grid .card10 {
    margin-bottom: 0px;
  }
  .triggers-grid .trigger-card {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .triggers-grid.triggers-hidden .card3,
  .triggers-grid.triggers-hidden .card4,
  .triggers-grid.triggers-hidden .card5,
  .triggers-grid.triggers-hidden .card6,
  .triggers-grid.triggers-hidden .card7,
  .triggers-grid.triggers-hidden .card8,
  .triggers-grid.triggers-hidden .card9,
  .triggers-grid.triggers-hidden .card10 {
    display: none !important;
  }
}

.toggle-triggers-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5edf5;
  border-top: 1px solid #e5edf5;
}
@media (max-width: 1024px) {
  .toggle-triggers-btn {
    padding-top: 10px;
    border-bottom: none;
  }
}
.toggle-triggers-btn:hover p {
  color: #ff7200;
  transition: 0.3s ease;
}
.toggle-triggers-btn p {
  color: #023336;
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s ease;
}
.toggle-triggers-btn .arrow__off,
.toggle-triggers-btn .arrow__on {
  transition: opacity 0.3s ease;
}
.toggle-triggers-btn .arrow__off img,
.toggle-triggers-btn .arrow__on img {
  width: 36px;
  height: 36px;
}
.toggle-triggers-btn .arrow__on {
  display: none;
}
.triggers-hidden .toggle-triggers-btn .arrow__off {
  display: none;
}
.triggers-hidden .toggle-triggers-btn .arrow__on {
  display: block;
}

@media (min-width: 1025px) {
  .triggers-hidden .card3,
  .triggers-hidden .card4,
  .triggers-hidden .card5,
  .triggers-hidden .card6,
  .triggers-hidden .card7,
  .triggers-hidden .card8,
  .triggers-hidden .card9,
  .triggers-hidden .card10 {
    display: none;
  }
}

.where-to-buy {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}
.where-to-buy__tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.where-to-buy .tab-button {
  padding: 10px 20px;
  background: #f0f0f0;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}
.where-to-buy .tab-button.active {
  background: #0078d7;
  color: white;
}
.where-to-buy__content {
  display: none;
}
.where-to-buy__content.active {
  display: block;
}
.where-to-buy .map-container {
  position: relative;
}
.where-to-buy .map-controls {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1000;
  background: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.where-to-buy .map-controls .product-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}
.where-to-buy .map-controls .product-info .product-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 10px;
}
.where-to-buy .map-controls .product-info .quantity-input {
  width: 60px;
  text-align: center;
}
.where-to-buy .map-controls .filters {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.where-to-buy .map-controls .filters .region-select {
  padding: 5px;
}
.where-to-buy .map-controls .filters .price-slider {
  display: flex;
  align-items: center;
  gap: 10px;
}
.where-to-buy .pharmacy-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .where-to-buy .pharmacy-list {
    grid-template-columns: 1fr;
  }
}
.where-to-buy .pharmacy-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  max-width: 423px;
  max-height: 203px;
  overflow: hidden;
}
.where-to-buy .pharmacy-card:nth-child(n+5) {
  display: none;
}
.where-to-buy .pharmacy-card.visible {
  display: block;
}
.where-to-buy .show-all {
  padding: 10px 20px;
  background: #0078d7;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.where-to-buy .pharmacy-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}
.where-to-buy .pharmacy-modal .modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  width: 100%;
}
.where-to-buy .pharmacy-modal .close-modal {
  float: right;
  cursor: pointer;
  font-size: 24px;
}

p {
  margin: 0;
  color: #023336;
}

.container--8 {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1820px;
  width: 100%;
  margin: 0 15px 20px;
  box-sizing: border-box;
  scroll-margin-top: 104px;
}
@media (max-width: 1024px) {
  .container--8 {
    margin: 0 0 20px;
    scroll-margin-top: 78px;
  }
}

.docrec {
  max-width: 1820px;
  width: 100%;
  margin: 10px auto 20px;
  font-family: "Inter", sans-serif;
  border: solid 1px rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 24px;
}
.docrec--title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 50px;
  margin: 50px 0 27px 50px;
}
.docrec--title h2 {
  color: #023336;
  font-size: 45px;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .docrec--title h2 {
    color: #ff7200;
    font-size: 28px;
  }
}
@media (max-width: 560px) {
  .docrec--title h2 {
    color: #ff7200;
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .docrec--title {
    padding-right: 0px;
    margin: 25px 15px;
    cursor: pointer;
  }
}
.docrec__btn-arrow {
  display: none;
}
@media (max-width: 1024px) {
  .docrec__btn-arrow {
    display: block;
    width: 44px;
    height: 44px;
    transition: transform 0.3s ease;
  }
}
.docrec__arrow__off, .docrec__arrow__on {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.docrec__arrow__on {
  display: none;
  opacity: 0;
  transform: rotate(-90deg);
}
.docrec.active .docrec__arrow__off {
  display: none;
  opacity: 0;
  transform: rotate(90deg);
}
.docrec.active .docrec__arrow__on {
  display: block;
  opacity: 1;
  transform: rotate(0deg);
}
@media (max-width: 1024px) {
  .docrec {
    margin: 0px auto 0px;
  }
}
.docrec__text {
  margin: 50px 0 50px 50px;
}
@media (max-width: 1024px) {
  .docrec__text {
    margin: 25px 15px;
  }
}
.docrec__text p {
  color: #023336;
  font-size: 16px;
  font-weight: 500;
  max-width: 650px;
  line-height: 1.22;
}
.docrec__symptoms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 50px 23px;
}
@media (max-width: 1376px) {
  .docrec__symptoms {
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .docrec__symptoms {
    margin: 0 15px 23px;
  }
}
.docrec__symptoms--card {
  max-width: 336px;
  height: 182px;
  width: 20%;
  max-width: 100%;
  height: auto;
  flex: 0 0 calc(20% - 10px);
  background-color: #fff;
  border-radius: 16px;
}
@media (max-width: 1376px) {
  .docrec__symptoms--card {
    display: flex;
    width: 100%;
    align-items: center;
  }
}
.docrec__symptoms--card img {
  margin: 20px 0 25px 20px;
}
.docrec__symptoms--card p {
  margin: 0 0 20px 20px;
  color: #023336;
  font-weight: 600;
  font-size: 20px;
  max-width: 296px;
}
@media (max-width: 1376px) {
  .docrec__symptoms--card p {
    margin-bottom: 0px;
    max-width: 900px;
  }
}
.docrec--gorizont {
  margin: 50px 50px 0;
  border-bottom: 1px solid #e5edf5;
}
.docrec--gorizont--2 {
  margin: 0px 50px 0;
  border-bottom: 1px solid #e5edf5;
}
.docrec__info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 50px;
  padding-bottom: 50px;
  gap: 40px;
}
@media (max-width: 1024px) {
  .docrec__info {
    flex-direction: column;
    margin: 50px 15px;
    padding-bottom: 0px;
  }
}
.docrec__info img {
  border-radius: 16px;
  width: 50%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  flex: 0 0 calc(50% - 40px);
}
@media (max-width: 1024px) {
  .docrec__info img {
    width: 100%;
    max-width: 1024px;
  }
}
.docrec__info--text {
  margin-top: 15px;
  flex: 0 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .docrec__info--text {
    width: 100%;
    max-width: 1024px;
    flex: 1;
  }
}
.docrec__info--text p:first-child {
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.24;
}
.docrec__info--text p:last-child {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.22;
}
.docrec__visit {
  margin: 10px 50px 0;
}
@media (max-width: 1024px) {
  .docrec__visit {
    margin: 15px 15px;
  }
}
.docrec__visit--info {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 1376px) {
  .docrec__visit--info {
    flex-direction: column;
  }
}
.docrec__visit--info--img {
  border-radius: 16px;
  width: 50%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  flex: 0 0 calc(50% - 40px);
  margin-bottom: 50px;
}
@media (max-width: 1376px) {
  .docrec__visit--info--img {
    width: 100%;
    margin-bottom: 0px;
  }
}
@media (max-width: 1024px) {
  .docrec__visit--info--img {
    display: none;
  }
}
.docrec__visit--info--text {
  max-width: 840px;
  width: 100%;
  flex: 0 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
  box-sizing: border-box;
}
@media (max-width: 1376px) {
  .docrec__visit--info--text {
    max-width: 1024px;
  }
}
.docrec__visit--info--text p {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.22;
}
.docrec__visit--info--text--points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.docrec__visit--info--text--points .point {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 16px;
}
.docrec__visit--info--text--points .point img {
  margin: 38.5px 15px 38.5px 25px;
}
.docrec__visit--info--text--points .point p {
  margin: 38.5px 10px 38.5px;
}
.docrec__diagnost {
  margin: 0px 50px 0;
  padding-bottom: 40px;
}
@media (max-width: 1024px) {
  .docrec__diagnost {
    margin: 15px 15px;
    padding-bottom: 0px;
  }
}
.docrec__diagnost--info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.docrec__diagnost--info p {
  margin-bottom: 15px;
}
.docrec__diagnost--info--point {
  background-color: #fff;
  border-radius: 16px;
  padding: 35px 25px;
}
.docrec__diagnost--info--point .point__text {
  margin-left: 30px;
  margin-bottom: 0;
  line-height: 1.22;
}
.docrec__diagnost--info--point .point__title {
  display: flex;
  align-items: start;
}
.docrec__diagnost--info--point .point__title img {
  margin-right: 15px;
}

.toggle-visit-btn,
.toggle-diagnost-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  border-top: 1px solid #e5edf5;
}
@media (max-width: 1024px) {
  .toggle-visit-btn,
  .toggle-diagnost-btn {
    border: none;
  }
}
.toggle-visit-btn:hover p,
.toggle-diagnost-btn:hover p {
  color: #ff7200;
  transition: 0.3s ease;
}
.toggle-visit-btn p,
.toggle-diagnost-btn p {
  color: #023336;
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s ease;
}
.toggle-visit-btn .arrow__off,
.toggle-visit-btn .arrow__on,
.toggle-diagnost-btn .arrow__off,
.toggle-diagnost-btn .arrow__on {
  transition: opacity 0.3s ease;
}
.toggle-visit-btn .arrow__off img,
.toggle-visit-btn .arrow__on img,
.toggle-diagnost-btn .arrow__off img,
.toggle-diagnost-btn .arrow__on img {
  width: 44px;
  height: 44px;
}
.toggle-visit-btn .arrow__on,
.toggle-diagnost-btn .arrow__on {
  display: none;
}
.triggers-hidden .toggle-visit-btn .arrow__off,
.triggers-hidden .toggle-diagnost-btn .arrow__off {
  display: none;
}
.triggers-hidden .toggle-visit-btn .arrow__on,
.triggers-hidden .toggle-diagnost-btn .arrow__on {
  display: block;
}

.docrec__visit--info,
.docrec__diagnost--info {
  display: none;
}

.toggle-visit-btn .arrow__off,
.toggle-diagnost-btn .arrow__off {
  display: block;
}

.toggle-visit-btn .arrow__on,
.toggle-diagnost-btn .arrow__on {
  display: none;
}

/* Анимация для блоков визита и диагностики */
.docrec__visit--info,
.docrec__diagnost--info {
  opacity: 1;
  transition: max-height 0.3s ease, opacity 0.2s ease;
  overflow: hidden;
}

/* Для плавного появления содержимого */
.docrec__visit--info[style*="max-height: 0"],
.docrec__diagnost--info[style*="max-height: 0"] {
  opacity: 0;
}

/* Сохраняем flex-расположение при раскрытии */
.docrec__visit--info {
  display: flex !important;
}

.docrec__diagnost--info {
  display: flex !important;
}

p {
  margin: 0;
  color: #023336;
}

.container--9 {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1820px;
  width: 100%;
  margin: 0 15px 20px;
  box-sizing: border-box;
  scroll-margin-top: 104px;
}
@media (max-width: 1024px) {
  .container--9 {
    margin: 0 0 20px;
    scroll-margin-top: 78px;
  }
}
.container .treatment {
  max-width: 1820px;
  width: 100%;
  margin: 10px auto 20px;
  font-family: "Inter", sans-serif;
  border: solid 1px rgba(255, 255, 255, 0.5);
  background-color: hsla(0, 0%, 100%, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 24px;
}
@media (max-width: 1024px) {
  .container .treatment {
    margin: 0px auto 0px;
  }
}
.container .treatment__text {
  display: none;
}
@media (max-width: 1376px) {
  .container .treatment__text {
    display: block;
    margin-left: 50px;
    margin-bottom: 25px;
  }
}
@media (max-width: 1024px) {
  .container .treatment__text {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.container .treatment__btn-arrow {
  display: none;
}
@media (max-width: 1024px) {
  .container .treatment__btn-arrow {
    display: block;
  }
}
.container .treatment--title {
  display: flex;
  cursor: pointer;
  margin: 50px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1376px) {
  .container .treatment--title {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
  }
}
@media (max-width: 1024px) {
  .container .treatment--title {
    margin: 25px 15px;
    flex-direction: row;
    align-items: center;
  }
}
.container .treatment--title h2 {
  font-size: 45px;
  font-weight: 600;
  color: #023336;
  margin: 0;
}
@media (max-width: 1024px) {
  .container .treatment--title h2 {
    font-size: 28px;
    color: #ff7200;
  }
}
@media (max-width: 560px) {
  .container .treatment--title h2 {
    font-size: 24px;
  }
}
.container .treatment--title p {
  line-height: 1.44;
  margin-right: 50px;
}
@media (max-width: 1376px) {
  .container .treatment--title p {
    display: none;
  }
}
.container .treatment--title .treatment__btn-arrow {
  display: none;
}
@media (max-width: 1024px) {
  .container .treatment--title .treatment__btn-arrow {
    display: block;
    width: 44px;
    height: 44px;
    transition: transform 0.3s ease;
  }
}
.container .treatment--title .treatment__arrow__off,
.container .treatment--title .treatment__arrow__on {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.container .treatment--title .treatment__arrow__on {
  display: none;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.container .treatment--title.active .treatment__arrow__off {
  display: none;
  opacity: 0;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.container .treatment--title.active .treatment__arrow__on {
  display: block;
  opacity: 1;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.container .treatment__info, .container .treatment__home {
  background-color: #f3f6f9;
  border-radius: 20px;
  margin: 0 50px 50px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .container .treatment__info, .container .treatment__home {
    margin: 25px 15px;
  }
}
.container .treatment__info {
  padding: 30px;
}
@media (max-width: 1024px) {
  .container .treatment__info {
    padding: 25px 15px;
  }
}
.container .treatment__info h3 {
  color: #ff7200;
  font-size: 24px;
  margin-bottom: 25px;
}
.container .treatment__info p {
  max-width: 600px;
  margin-bottom: 25px;
  line-height: 1.22;
}
.container .treatment__info .mobile {
  display: none;
}
@media (max-width: 1024px) {
  .container .treatment__info .mobile {
    display: flex;
    flex-direction: column;
  }
  .container .treatment__info .mobile .infect__1,
  .container .treatment__info .mobile .infect__2 {
    padding: 0px;
    border-radius: 0px;
    border: 0px;
  }
}
.container .treatment__info--infect {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .container .treatment__info--infect {
    display: none;
  }
}
.container .treatment__info--infect .infect__1,
.container .treatment__info--infect .infect__2 {
  padding: 30px;
  border-radius: 20px;
  border: 2px solid #fff;
}
.container .treatment__info--infect .infect__1 h4,
.container .treatment__info--infect .infect__2 h4 {
  color: #ff7200;
  margin-bottom: 25px;
}
.container .treatment__info--infect .infect__1 p,
.container .treatment__info--infect .infect__2 p {
  max-width: 760px;
  margin-bottom: 0;
}
.container .treatment__home {
  padding: 30px;
}
@media (max-width: 1024px) {
  .container .treatment__home {
    padding: 25px 15px;
  }
}
.container .treatment__home h3 {
  color: #ff7200;
  font-size: 24px;
  margin-bottom: 25px;
}
.container .treatment__home p {
  max-width: 600px;
  margin-bottom: 25px;
  line-height: 1.22;
}
.container .treatment__home--info {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 1376px) {
  .container .treatment__home--info {
    max-width: 1024px;
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .container .treatment__home--info {
    flex-direction: column-reverse;
  }
}
.container .treatment__home--info img {
  border-radius: 16px;
  width: 50%;
  max-width: 810px;
  height: auto;
  object-fit: contain;
  flex: 0 0 calc(50% - 40px);
}
@media (max-width: 1024px) {
  .container .treatment__home--info img {
    width: 100%;
    max-width: 1024px;
  }
}
.container .treatment__home--info .home__info {
  max-width: 810px;
  width: 100%;
  flex: 0 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: space-between;
  gap: 22px;
}
@media (max-width: 1376px) {
  .container .treatment__home--info .home__info {
    max-width: 1024px;
    gap: 12px;
  }
}
.container .treatment__home--info .home__info--point {
  background-color: #fff;
  border-radius: 16px;
  padding: 35px 25px;
}
.container .treatment__home--info .home__info--point p {
  max-width: 720px;
  margin: 0;
}
.container .treatment__home--info .home__info--point h4 {
  font-size: 20px;
  color: #023336;
  margin-bottom: 25px;
}

.toggle-infect-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-top: 1px solid #e5edf5 !important;
}
@media (max-width: 1024px) {
  .toggle-infect-btn {
    padding-top: 10px;
    border: none;
  }
}
.toggle-infect-btn:hover p {
  color: #ff7200;
  transition: 0.3s ease;
}
.toggle-infect-btn p {
  color: #023336;
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s ease;
  margin-bottom: 0 !important;
}
.toggle-infect-btn .arrow__off,
.toggle-infect-btn .arrow__on {
  transition: opacity 0.3s ease;
}
.toggle-infect-btn .arrow__off img,
.toggle-infect-btn .arrow__on img {
  width: 44px;
  height: 44px;
}
.toggle-infect-btn .arrow__on {
  display: none;
}
.triggers-hidden .toggle-infect-btn .arrow__off {
  display: none;
}
.triggers-hidden .toggle-infect-btn .arrow__on {
  display: block;
}

.infect__1 p:last-child,
.infect__2 p:last-child {
  opacity: 1;
  /* Начальная прозрачность */
  transition: opacity 0.2s ease;
}

/* Для плавного появления текста */
.infect__1 p:last-child[style*="max-height: 0"],
.infect__2 p:last-child[style*="max-height: 0"] {
  opacity: 0;
}

p {
  margin: 0;
  color: #023336;
}

.container--10 {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1820px;
  width: 100%;
  margin: 0 15px 20px;
  box-sizing: border-box;
  scroll-margin-top: 104px;
}
@media (max-width: 1024px) {
  .container--10 {
    margin: 0 0 20px;
    scroll-margin-top: 78px;
  }
}
.container .prevention {
  max-width: 1820px;
  width: 100%;
  margin: 10px auto 20px;
  font-family: "Inter", sans-serif;
  border: solid 1px rgba(255, 255, 255, 0.5);
  background-color: hsla(0, 0%, 100%, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .container .prevention {
    margin: 0px auto 0px;
  }
}
.container .prevention__title {
  display: flex;
  margin: 50px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1376px) {
  .container .prevention__title {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 1024px) {
  .container .prevention__title {
    margin: 25px 15px;
  }
}
.container .prevention__title h2 {
  font-size: 45px;
  font-weight: 600;
  color: #023336;
  margin: 0;
}
@media (max-width: 1024px) {
  .container .prevention__title h2 {
    font-size: 28px;
    color: #ff7200;
  }
}
@media (max-width: 560px) {
  .container .prevention__title h2 {
    font-size: 24px;
  }
}
.container .prevention__box {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0 50px 20px;
}
.container .prevention__box img:first-child {
  width: 100%;
  border-radius: 20px;
}
@media (max-width: 1024px) {
  .container .prevention__box img:first-child {
    display: none;
  }
}
.container .prevention__box :nth-child(2) {
  display: none;
}
@media (max-width: 1024px) {
  .container .prevention__box :nth-child(2) {
    border-radius: 20px;
    display: block;
    height: 70vw;
  }
}
.container .prevention__box :nth-child(3) {
  position: absolute;
  height: 28vw;
  max-height: 540px;
  left: 20%;
}
@media (max-width: 1024px) {
  .container .prevention__box :nth-child(3) {
    height: 70vw;
    display: block;
    left: 0%;
  }
}
.container .prevention__box img:last-child {
  position: absolute;
  max-height: 540px;
  height: 28vw;
  right: 20%;
}
@media (max-width: 1024px) {
  .container .prevention__box img:last-child {
    height: 70vw;
    display: block;
    right: 2%;
  }
}
.container .prevention__cards {
  display: flex;
  gap: 10px;
  margin: 0 50px 50px;
  justify-content: space-between;
}
@media (max-width: 1440px) {
  .container .prevention__cards {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 1376px) {
  .container .prevention__cards {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 1024px) {
  .container .prevention__cards {
    display: none;
    margin: 0 15px 25px;
  }
}
.container .prevention__cards--card {
  max-width: 238px;
  width: 100%;
  height: auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 16px;
}
.container .prevention__cards--card img {
  margin-bottom: 25px;
}
.container .prevention__cards--card p {
  max-width: 238px;
  line-height: 1.22;
  width: 100%;
}
.container .prevention__cards--mob {
  display: none;
}
@media (max-width: 1024px) {
  .container .prevention__cards--mob {
    display: flex;
    flex-direction: column;
    margin: 0 15px 25px;
    font-family: "Inter", sans-serif;
  }
  .container .prevention__cards--mob .prevention__cards--card {
    max-width: 238px;
    width: 100%;
    height: auto;
    padding: 0px;
    border-radius: 0px;
  }
  .container .prevention__cards--mob .prevention__cards--card img {
    margin: 25px auto;
  }
  .container .prevention__cards--mob .prevention__cards--card p {
    width: 100%;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  .container .prevention__cards--mob .swiper {
    display: block;
    max-width: 1024px;
    min-height: 300px;
    overflow: hidden;
    width: 100%;
    position: relative;
    border: solid 1px rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    top: -30px;
  }
  @supports (-webkit-backdrop-filter: blur(1px)) {
    .container .prevention__cards--mob .swiper {
      background-color: hsla(0, 0%, 100%, 0.3);
      -webkit-backdrop-filter: blur(15px);
    }
  }
  .container .prevention__cards--mob .swiper .swiper-wrapper {
    display: flex;
  }
  .container .prevention__cards--mob .swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    width: 100%;
    max-width: 1024px;
  }
  .container .prevention__cards--mob .swiper .swiper-slide img {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  .container .prevention__cards--mob .swiper .swiper-slide p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 25px;
  }
}
@media (max-width: 1024px) {
  .container .prevention__cards--mob .custom-pagination {
    top: -15px;
    text-align: center;
    position: relative;
  }
  .container .prevention__cards--mob .custom-pagination-bullet {
    background: #023336;
    opacity: 0.3;
  }
  .container .prevention__cards--mob .custom-pagination-bullet-active {
    opacity: 1;
  }
  .container .prevention__cards--mob .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 10px;
    background-color: rgba(155, 165, 183, 0.74);
  }
  .container .prevention__cards--mob .swiper-pagination-bullet-active {
    background-color: #023336;
    opacity: 1;
  }
}

p {
  margin: 0;
  color: #023336;
}

.container--11 {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1820px;
  width: 100%;
  margin: 0 15px 20px;
  box-sizing: border-box;
  scroll-margin-top: 104px;
}
@media (max-width: 1024px) {
  .container--11 {
    margin: 0 0 20px;
    scroll-margin-top: 78px;
  }
}
.container--11 .faq {
  max-width: 1820px;
  width: 100%;
  margin: 10px auto 20px;
  font-family: "Inter", sans-serif;
  border: solid 1px rgba(255, 255, 255, 0.5);
  background-color: hsl(184.62, 100%, 20.39%);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding-bottom: 86px;
  /* Состояние нажатой кнопки */
}
@media (max-width: 1024px) {
  .container--11 .faq {
    margin: 0px auto 20px;
    padding-bottom: 86px;
  }
}
.container--11 .faq h3 {
  font-size: 45px;
  font-weight: 600;
  color: white;
  margin: 50px 0 40px 50px;
}
@media (max-width: 1024px) {
  .container--11 .faq h3 {
    font-size: 28px;
    color: #ff7200;
  }
}
@media (max-width: 860px) {
  .container--11 .faq h3 {
    margin: 25px 0 25px 15px;
  }
}
@media (max-width: 560px) {
  .container--11 .faq h3 {
    font-size: 24px;
  }
}
.container--11 .faq__questans {
  display: flex;
  justify-content: space-between;
  margin: 0 50px;
  gap: 40px;
}
@media (max-width: 860px) {
  .container--11 .faq__questans {
    margin: 0 15px;
  }
}
.container--11 .faq__questans--area {
  max-width: 740px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 35px;
}
@media (max-width: 1376px) {
  .container--11 .faq__questans--area {
    max-width: 1276px;
  }
}
.container--11 .faq__questans--area--block {
  max-width: 740px;
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 1376px) {
  .container--11 .faq__questans--area--block {
    max-width: 1276px;
  }
}
.container--11 .faq__questans--area--block .block--quest {
  display: flex;
  justify-content: space-between;
  transition: 0.3s ease;
  cursor: pointer;
  border-bottom: 1px solid rgba(167, 196, 222, 0.25);
  padding-bottom: 20px;
}
.container--11 .faq__questans--area--block .block--quest .small-arrow {
  background: url("../../src/images/small_arrow-up.svg") center/cover no-repeat;
  width: 24px;
  height: 24px;
  /* важно указать высоту */
  display: inline-block;
  /* или block, в зависимости от контекста */
}
.container--11 .faq__questans--area--block .block--quest.active {
  border-bottom: 0px;
}
.container--11 .faq__questans--area--block .block--quest.active p {
  color: #ff7200 !important;
}
.container--11 .faq__questans--area--block .block--quest.active .small-arrow {
  filter: brightness(0) saturate(100%) invert(63%) sepia(98%) saturate(1061%) hue-rotate(1deg) brightness(102%) contrast(101%) !important;
  transform: rotate(180deg);
}
.container--11 .faq__questans--area--block .block--quest.active + .block--ans {
  border-bottom: 1px solid rgba(167, 196, 222, 0.25);
  padding-bottom: 15px;
}
.container--11 .faq__questans--area--block .block--quest:hover:not(.active) p {
  color: #ff7200;
  transition: 0.3s ease;
}
.container--11 .faq__questans--area--block .block--quest:hover:not(.active) .small-arrow {
  filter: brightness(0) saturate(100%) invert(63%) sepia(98%) saturate(1061%) hue-rotate(1deg) brightness(102%) contrast(101%);
  transition: 0.3s ease;
}
.container--11 .faq__questans--area--block .block--quest p {
  color: white;
  font-size: 20px;
  font-weight: 600;
  max-width: 740px;
  width: 100%;
}
.container--11 .faq__questans--area--block .block--quest p span {
  font-family: "Times New Roman", sans-serif;
  font-size: 24px;
  font-weight: 600;
}
.container--11 .faq__questans--area--block .block--quest p sup {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin: 2px;
  position: relative;
}
.container--11 .faq__questans--area--block .block--quest svg {
  position: relative;
  left: 0;
}
.container--11 .faq__questans--area--block .block--quest:hover p {
  color: #ff7200;
  transition: 0.3s ease;
}
.container--11 .faq__questans--area--block .block--quest:hover .small-arrow {
  filter: brightness(0) saturate(100%) invert(63%) sepia(98%) saturate(1061%) hue-rotate(1deg) brightness(102%) contrast(101%);
  transition: 0.5s ease;
}
.container--11 .faq__questans--area--block .block--ans {
  max-width: 740px;
}
.container--11 .faq__questans--area--block .block--ans p {
  margin-top: 20px;
  color: white;
  line-height: 1.22;
  font-size: 16px;
  font-family: "Inter", sans-serif;
}
.container--11 .faq__questans--area--block .block--ans p span {
  font-family: "Times New Roman", sans-serif;
  font-weight: 500;
  font-size: 20px;
}
.container--11 .faq__questans--area--block .block--ans p span sup {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 12px;
}
.container--11 .faq__questspec {
  max-width: 850px;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  max-height: 364px;
  position: relative;
}
.container--11 .faq__questspec--img {
  position: absolute;
  bottom: 0;
  right: 0px;
  z-index: 1;
  max-height: 447px;
  height: 23vw;
}
.container--11 .faq__questspec--round {
  max-height: 400px;
  max-width: 400px;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at center, #26b3bc 0%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 0) 100%);
  filter: blur(100px);
  position: absolute;
  bottom: 0;
  right: 0px;
  opacity: 0.9;
}
.container--11 .faq__questspec h4 {
  margin: 50px 0 80px 50px;
  font-size: 32px;
  font-weight: 600;
  max-width: 441px;
  width: 100%;
  color: #005d63;
  position: relative;
  z-index: 2;
}
@media (max-width: 1500px) {
  .container--11 .faq__questspec h4 {
    font-size: 26px;
    max-width: 300px;
  }
}
.container--11 .faq__questspec .quest-btn {
  position: relative;
  margin-left: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #005d63;
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  width: 100%;
  height: 100%;
  max-height: 67px;
  max-width: 350px;
  border: 0;
  font-size: 18px;
  transition: 0.3s ease;
  cursor: pointer;
  z-index: 20;
}
.container--11 .faq__questspec .quest-btn:hover {
  background-color: #ff7200;
  transition: 0.3s ease;
}
@media (max-width: 1376px) {
  .container--11 .faq__questspec {
    display: none;
  }
}
.container--11 .faq__questspec--mob {
  display: none;
}
@media (max-width: 1376px) {
  .container--11 .faq__questspec--mob {
    display: block;
    max-width: 1276px;
    width: 100%;
    background-color: #fff;
    border-radius: 20px;
    min-height: 364px;
    position: relative;
  }
  .container--11 .faq__questspec--mob--img {
    position: absolute;
    bottom: 0;
    right: 0px;
    z-index: 1;
    max-height: 300px;
  }
}
@media (max-width: 1376px) and (max-width: 860px) {
  .container--11 .faq__questspec--mob--img {
    max-height: 250px;
  }
}
@media (max-width: 1376px) {
  .container--11 .faq__questspec--mob--round {
    max-height: 400px;
    max-width: 400px;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, #26b3bc 0%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 0) 100%);
    filter: blur(100px);
    position: absolute;
    bottom: 0;
    right: 0px;
    opacity: 0.9;
  }
  .container--11 .faq__questspec--mob h4 {
    margin: 50px 0px 100px 50px;
    font-size: 32px;
    font-weight: 600;
    max-width: 441px;
    width: 100%;
    color: #005d63;
    position: relative;
    z-index: 2;
  }
}
@media (max-width: 1376px) and (max-width: 1500px) {
  .container--11 .faq__questspec--mob h4 {
    font-size: 26px;
    max-width: 300px;
  }
}
@media (max-width: 1376px) and (max-width: 1024px) {
  .container--11 .faq__questspec--mob h4 {
    margin: 20px 0px 160px 20px;
  }
}
@media (max-width: 1376px) and (max-width: 860px) {
  .container--11 .faq__questspec--mob h4 {
    margin: 20px 0px 185px 20px;
    font-size: 20px;
  }
}
@media (max-width: 1376px) {
  .container--11 .faq__questspec--mob .quest-btn {
    position: relative;
    margin-left: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #005d63;
    color: #fff;
    border-radius: 24px;
    font-weight: 600;
    width: 100%;
    height: 67px;
    max-width: 335px;
    border: 0;
    font-size: 18px;
    transition: 0.3s ease;
    cursor: pointer;
    z-index: 8;
  }
}
@media (max-width: 1376px) and (max-width: 1024px) {
  .container--11 .faq__questspec--mob .quest-btn {
    margin-left: 30px;
  }
}
@media (max-width: 1376px) {
  .container--11 .faq__questspec--mob .quest-btn:hover {
    background-color: #ff7200;
    transition: 0.3s ease;
  }
}
@media (max-width: 375px) {
  .container--11 .faq__questspec--mob {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 375px) and (max-width: 375px) {
  .container--11 .faq__questspec--mob .quest-btn {
    margin-left: 0px;
    height: 58px;
    max-width: 280px;
  }
}
.container--11 .faq .show-all-questions {
  position: absolute;
  left: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 50px 50px;
  height: 36px;
  width: 162px;
  border-radius: 30px;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.8s ease;
  box-shadow: inset 2px 0 2px rgba(0, 0, 0, 0.5), inset -2px 0 2px rgba(0, 0, 0, 0.5), inset 0 2px 2px rgba(0, 0, 0, 0.5), inset 0 -2px 2px rgba(0, 0, 0, 0.5);
}
@media (max-width: 860px) {
  .container--11 .faq .show-all-questions {
    position: absolute;
    right: 15px;
    left: auto;
  }
}
.container--11 .faq .show-all-questions p {
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: #023336;
  margin-left: 15px;
  margin-bottom: 2.5px;
  font-size: 16px;
  transition: all 0.8s ease;
}
.container--11 .faq .show-all-questions .small-arrow {
  background: url("../../src/images/small_arrow-up.svg") center/cover no-repeat;
  margin-right: 3px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ff7200;
  transition: all 0.8s ease;
  transform: rotate(0deg);
}
.container--11 .faq .show-all-questions:hover {
  flex-direction: row-reverse;
  background-color: #ff7200;
  box-shadow: none;
  transition: all 0.8s ease;
}
.container--11 .faq .show-all-questions:hover p {
  color: #fff;
  margin-left: 0;
  margin-right: 15px;
}
.container--11 .faq .show-all-questions:hover .small-arrow {
  background-color: #fff;
  background: url("../../src/images/orange_arrow-up.svg") center/cover no-repeat;
  transition: 0.8s ease;
  margin-right: 0;
  margin-left: 3px;
  transform: rotate(0deg);
}
.container--11 .faq .show-all-questions.active {
  flex-direction: row-reverse;
  background-color: #ff7200;
  box-shadow: none;
}
.container--11 .faq .show-all-questions.active p {
  color: #fff;
  margin-left: 0;
  margin-right: 15px;
}
.container--11 .faq .show-all-questions.active .small-arrow {
  background-color: #fff;
  background: url("../../src/images/orange_arrow-up.svg") center/cover no-repeat;
  transition: 0.8s ease;
  margin-right: 0;
  margin-left: 3px;
  transform: rotate(0deg);
}

input::placeholder {
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: #c2c2c2;
}

textarea::placeholder {
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: #c2c2c2;
}

p {
  margin: 0;
}

.container--12 {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1820px;
  width: 100%;
  margin: 0 15px 20px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .container--12 {
    margin: 0 0 20px;
  }
}

.wherebuy {
  max-width: 1820px;
  width: 100%;
  margin: 0px auto 20px;
  font-family: "Inter", sans-serif;
  border: solid 1px rgba(255, 255, 255, 0.5);
  background-color: rgb(255, 255, 255);
  border-radius: 24px;
  /* Состояние нажатой кнопки */
}
@media (max-width: 1024px) {
  .wherebuy {
    margin: 0px auto 20px;
  }
}
.wherebuy--subtitle {
  margin: 0 50px 40px;
  font-size: 16px;
  font-weight: 500;
  color: #90a0ba;
}
.wherebuy--subtitle span {
  font-family: "Times New Roman", sans-serif;
  font-size: 18px;
  font-weight: 600;
}
.wherebuy--subtitle sup {
  font-size: 8px;
  margin: 2px;
  position: relative;
}
@media (max-width: 1024px) {
  .wherebuy--subtitle {
    margin: 0px 15px 25px;
  }
}
.wherebuy--btn-block {
  display: flex;
  margin-left: 50px;
  margin-bottom: 32px;
  gap: 10px;
}
@media (max-width: 1024px) {
  .wherebuy--btn-block {
    margin-left: 15px;
    margin-right: 15px;
    flex-direction: column;
  }
}
.wherebuy--btn-block__info {
  display: none;
}
@media (max-width: 1024px) {
  .wherebuy--btn-block__info {
    height: 78px;
    background-color: #edf1f6;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.wherebuy--btn-block__info p {
  color: #023336;
  font-size: 16px;
  font-weight: 600;
  margin: 12px 25px;
}
.wherebuy--btn-block__info img {
  margin-left: 25px;
}
.wherebuy--btn-block__booking, .wherebuy--btn-block__apteca {
  height: 43px;
  background-color: #edf1f6;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.wherebuy--btn-block__booking p, .wherebuy--btn-block__apteca p {
  color: #023336;
  font-size: 16px;
  font-weight: 600;
  margin: 12px 25px;
}
.wherebuy--btn-block__booking:hover, .wherebuy--btn-block__apteca:hover {
  background-color: #4a9a9f;
  transition: all 0.3s ease;
}
.wherebuy--btn-block__booking:hover p, .wherebuy--btn-block__apteca:hover p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.wherebuy--title {
  margin: 50px 0 6px 50px;
}
.wherebuy--title h3 {
  font-size: 45px;
  font-weight: 600;
  color: #023336;
  margin: 0;
}
@media (max-width: 1024px) {
  .wherebuy--title h3 {
    font-size: 36px;
  }
}
@media (max-width: 1024px) {
  .wherebuy--title {
    margin: 25px 0 6px 15px;
  }
}
.wherebuy .show-all-apteki {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  width: 162px;
  border-radius: 30px;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.8s ease;
  box-shadow: inset 2px 0 2px rgba(0, 0, 0, 0.2), inset -2px 0 2px rgba(0, 0, 0, 0.2), inset 0 2px 2px rgba(0, 0, 0, 0.2), inset 0 -2px 2px rgba(0, 0, 0, 0.2);
}
@media (max-width: 860px) {
  .wherebuy .show-all-apteki {
    right: 15px;
    left: auto;
  }
}
.wherebuy .show-all-apteki p {
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: #023336;
  margin-left: 15px;
  margin-bottom: 1.5px;
  font-size: 16px;
  transition: all 0.8s ease;
}
.wherebuy .show-all-apteki .apteki-arrow {
  background: url("../../src/images/small_arrow-up.svg") center/cover no-repeat;
  margin-right: 3px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #005d63;
  transition: all 0.8s ease;
  transform: rotate(0deg);
}
.wherebuy .show-all-apteki:hover {
  flex-direction: row-reverse;
  background-color: #023336;
  box-shadow: none;
}
.wherebuy .show-all-apteki:hover p {
  color: #fff;
  margin-left: 0;
  margin-right: 15px;
}
.wherebuy .show-all-apteki:hover .apteki-arrow {
  background-color: #fff;
  background: url("../../src/images/green_arrow-up.svg") center/cover no-repeat;
  transition: 0.8s ease;
  margin-right: 0;
  margin-left: 3px;
  transform: rotate(0deg);
}
.wherebuy .show-all-apteki.active {
  flex-direction: row-reverse;
  background-color: #023336;
  box-shadow: none;
}
.wherebuy .show-all-apteki.active p {
  color: #fff;
  margin-left: 0;
  margin-right: 15px;
}
.wherebuy .show-all-apteki.active .apteki-arrow {
  background-color: #fff;
  background: url("../../src/images/green_arrow-up.svg") center/cover no-repeat;
  transition: 0.8s ease;
  margin-right: 0;
  margin-left: 3px;
  transform: rotate(0deg);
}
.wherebuy--apteki {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1820px;
  width: 100%;
  margin: 0 0px 50px;
}
@media (max-width: 860px) {
  .wherebuy--apteki {
    gap: 8px;
    margin: 0 0px 25px;
  }
}
.wherebuy--apteki__card {
  background-color: #edf1f6;
  min-width: 168px;
  border-radius: 16px;
  max-width: 422px;
  width: 100%;
  height: clamp(75px, 10vw, 203px);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
.wherebuy--apteki__card img {
  max-width: 65%;
  max-height: 80%;
  object-fit: contain;
}
.wherebuy--apteki__card:hover {
  box-shadow: 0 0 8px rgba(0, 96, 104, 0.35);
  transition: box-shadow 0.3s ease;
}
.wherebuy--apteki .small-arrow.apteki-arrow {
  height: clamp(45px, 5vw, 70px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 860px) {
  .wherebuy--apteki__card {
    width: calc(33.333% - 10px);
  }
}
@media (max-width: 600px) {
  .wherebuy--apteki__card {
    width: calc(50% - 10px);
  }
}
.wherebuy--btn-apteki {
  margin: 0 50px 50px;
  display: flex;
}
@media (max-width: 860px) {
  .wherebuy--btn-apteki {
    margin: 0 15px 25px;
    justify-content: flex-end;
  }
}

.wherebuy--btn-block__booking.active p {
  color: #fff;
}

.wherebuy--btn-block__apteca.active p {
  color: #fff;
}

.container--13 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1820px;
  width: 100%;
  margin: 0 15px 20px;
  box-sizing: border-box;
  border: solid 1px rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  height: 797px;
}
@media (max-width: 1024px) {
  .container--13 {
    margin: 0 0 20px;
    flex-direction: column;
    max-height: 797px;
    height: 100%;
    max-width: 1024px;
    width: 100%;
  }
}

.tableblock {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 50px 0 0 50px;
}
@media (max-width: 1024px) {
  .tableblock {
    margin: 25px 15px;
    max-width: calc(100% - 30px);
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
    width: 100%;
  }
}
.tableblock__header {
  display: flex;
  align-items: start;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .tableblock__header {
    flex-direction: column;
  }
  .tableblock__header h1 {
    font-size: 32px;
    margin-bottom: 0.5rem;
  }
  .tableblock__header p {
    max-width: 100%;
    margin-bottom: 1rem;
  }
}
.tableblock__header h3 {
  font-size: 85px;
  font-family: "Times New Roman", sans-serif;
  color: #023336;
  margin: 0 0 25px 0;
  font-weight: bold;
}
.tableblock__header h3 sup {
  font-family: "Raleway", sans-serif;
  font-size: 25px;
  font-weight: bold;
  margin: 0 5px;
}
@media (max-width: 560px) {
  .tableblock__header h3 sup {
    font-size: 22px;
  }
}
@media (max-width: 1024px) {
  .tableblock__header h3 {
    font-size: 44px;
  }
}
@media (max-width: 560px) {
  .tableblock__header h3 {
    font-size: 36px;
  }
}
.tableblock__header p {
  max-width: 320px;
  font-size: 16px;
  line-height: 1.22;
  margin: 0;
  color: #023336;
}

.info-list {
  margin-top: 131px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 1024px) {
  .info-list {
    margin-top: 25px;
    display: block;
    width: 100%;
    touch-action: pan-y;
    user-select: none;
  }
}

.info-box {
  background: rgba(255, 255, 255, 0.3);
  padding: 25px;
  border-radius: 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 466px;
  display: none !important;
  width: 100%;
  height: 327px;
  overflow: hidden;
}
@media (max-width: 1650px) {
  .info-box {
    width: 20vw;
  }
}
@media (max-width: 1376px) {
  .info-box {
    width: 26vw;
  }
}
@media (max-width: 1024px) {
  .info-box {
    max-width: calc(100% - 50px);
    width: 100%;
    position: relative;
  }
}
.info-box.active {
  display: block !important;
}
.info-box h4 {
  font-size: 24px;
  font-weight: 600;
  color: #023336;
  max-width: 187px;
  margin-bottom: 74px;
  line-height: 1.24;
}
@media (max-width: 1024px) {
  .info-box h4 {
    margin-bottom: 25px;
  }
}
.info-box__img {
  max-width: 100%;
  position: relative;
  bottom: 30px;
  right: -240px;
}
@media (max-width: 1650px) {
  .info-box__img {
    right: -190px;
  }
}
@media (max-width: 1376px) {
  .info-box__img {
    bottom: 0px;
    max-width: 75%;
    right: -180px;
  }
}
.info-box ul {
  z-index: 10;
  position: absolute;
  bottom: 70px;
  padding: 0;
}
.info-box ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
}
@media (max-width: 1024px) {
  .info-box ul li {
    justify-content: flex-start;
  }
}
.info-box ul li .info-box--img {
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
  bottom: inherit;
  right: inherit;
  width: 55px;
  height: 55px;
  margin-right: 15px;
  z-index: 10;
  left: 0px;
}
@media (max-width: 1024px) {
  .info-box ul li .info-box--img {
    background-color: transparent;
    left: -10px;
  }
}
.info-box ul li .info-box--img img {
  position: relative;
  width: 35px;
  height: 35px;
  padding: 10px;
  z-index: 11;
}
@media (max-width: 1024px) {
  .info-box ul li .info-box--img img {
    margin-right: 20px;
  }
}
.info-box ul li p {
  position: relative;
  left: 45px;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 10px;
  width: 260px;
  text-align: center;
  border-bottom: 1px dashed #13d5e1;
}
@media (max-width: 1650px) {
  .info-box ul li p {
    width: 200px;
  }
}
@media (max-width: 1024px) {
  .info-box ul li p {
    position: relative;
    text-align: start;
    left: 45px;
    max-width: 235px;
    width: 100%;
  }
}

#info-0 ul,
#info-2 ul,
#info-6 ul {
  bottom: 140px !important;
}

#info-5 ul,
#info-3 ul {
  bottom: 110px !important;
}

#info-1 .info-box__img {
  max-width: 100%;
  position: relative;
  bottom: -15px;
  right: -220px;
}
@media (max-width: 1650px) {
  #info-1 .info-box__img {
    right: -190px;
  }
}
@media (max-width: 1376px) {
  #info-1 .info-box__img {
    bottom: -60px;
    max-width: 75%;
    right: -180px;
  }
}

#info-2 .info-box__img {
  max-width: 100%;
  position: relative;
  bottom: -60px;
  right: -200px;
}
@media (max-width: 1650px) {
  #info-2 .info-box__img {
    right: -190px;
  }
}
@media (max-width: 1376px) {
  #info-2 .info-box__img {
    bottom: -120px;
    max-width: 75%;
    right: -150px;
  }
}

#info-3 .info-box__img {
  max-width: 100%;
  position: relative;
  bottom: 20px;
  right: -220px;
}
@media (max-width: 1650px) {
  #info-3 .info-box__img {
    right: -190px;
  }
}
@media (max-width: 1376px) {
  #info-3 .info-box__img {
    bottom: -30px;
    max-width: 75%;
    right: -160px;
  }
}

#info-4 .info-box__img {
  position: relative;
}
@media (max-width: 1650px) {
  #info-4 .info-box__img {
    right: -190px;
  }
}
@media (max-width: 1376px) {
  #info-4 .info-box__img {
    bottom: -40px;
    max-width: 75%;
    right: -190px;
  }
}

#info-5 .info-box__img {
  max-width: 100%;
  position: relative;
  bottom: 40px;
  right: -170px;
}
@media (max-width: 1650px) {
  #info-5 .info-box__img {
    right: -190px;
  }
}
@media (max-width: 1376px) {
  #info-5 .info-box__img {
    bottom: -80px;
    max-width: 85%;
    right: -150px;
  }
}

@media (max-width: 1024px) {
  #info-1 .info-box__img,
  #info-2 .info-box__img,
  #info-3 .info-box__img,
  #info-4 .info-box__img,
  #info-5 .info-box__img,
  #info-6 .info-box__img,
  #info-0 .info-box__img {
    bottom: 0px;
    right: 0px;
    position: absolute;
  }
  #info-1 ul,
  #info-2 ul,
  #info-3 ul,
  #info-4 ul,
  #info-5 ul,
  #info-6 ul,
  #info-0 ul {
    position: relative;
    top: 0px !important;
  }
}
@media (max-width: 860px) {
  #info-1 .info-box__img,
  #info-2 .info-box__img,
  #info-3 .info-box__img,
  #info-4 .info-box__img,
  #info-5 .info-box__img,
  #info-6 .info-box__img,
  #info-0 .info-box__img {
    width: 20vh;
  }
  #info-2 info-box__img {
    bottom: -15px;
    right: -14px;
  }
  #info-4 info-box__img {
    bottom: -40px;
    right: 0px;
  }
  #info-5 info-box__img {
    bottom: -15px;
  }
}
.table {
  display: grid;
  grid-template-columns: 80px repeat(2, 160px) 200px repeat(2, 160px);
  margin: 50px 50px 0 0;
  background-color: transparent;
}
@media (max-width: 1475px) {
  .table {
    grid-template-columns: 80px 150px 130px 190px 150px 130px;
  }
}
@media (max-width: 1376px) {
  .table {
    grid-template-columns: 80px repeat(5, 110px);
  }
}
@media (max-width: 1276px) {
  .table {
    grid-template-columns: 80px repeat(5, 100px);
  }
}
@media (max-width: 1176px) {
  .table {
    grid-template-columns: 80px repeat(5, 90px);
  }
}
@media (max-width: 1024px) {
  .table {
    display: none;
  }
}

.table-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: bold;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  height: 123px;
  padding: 0 6px;
  margin-bottom: 2px;
}
.table-header img {
  margin-bottom: 10px;
}
.table-header p {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 1376px) {
  .table-header p {
    display: none;
  }
}

.table-side {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 6px;
  height: 70px;
  width: 70px;
  border: 2.3px solid #fff;
  border-radius: 14px;
  position: relative;
  right: 34.5px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-bottom: 8px;
}
@media (max-width: 1475px) {
  .table-side {
    right: 14.5px;
  }
}
.table-side img {
  position: absolute;
  top: 0;
  right: 0;
}

.table-row {
  display: contents;
}

.table-cell {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  font-size: 30px;
  font-weight: 600;
  color: rgba(0, 50, 63, 0.37);
  cursor: pointer;
  transition: 0.3s ease;
}

.table-cell--1,
.table-cell--3,
.table-cell--5 {
  background: #e7eef5;
}

.table-cell--01 {
  border-bottom-left-radius: 25px;
}

.table-cell--05 {
  border-bottom-right-radius: 25px;
}

.table-cell--2,
.table-cell--4 {
  background: transparent !important;
}

.highlight-row {
  background: rgba(126, 163, 181, 0.1) !important;
  color: rgba(0, 50, 63, 0.9);
}

.highlight-row1 {
  background: #fff !important;
  transform: scale(1.05);
}

.mobile-icons {
  display: none;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .mobile-icons {
    display: flex;
    width: 100%;
    margin: 25px 0px 25px;
    justify-content: center;
    gap: 5px;
  }
}
@media (max-width: 375px) {
  .mobile-icons {
    gap: 3px;
  }
}

.icon-button {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
  border: 1px solid #fff;
}
@media (max-width: 1024px) {
  .icon-button.active {
    background-color: #023336;
  }
}
@media (max-width: 375px) {
  .icon-button {
    width: 36px;
    height: 36px;
  }
}
.icon-button:hover {
  background-color: #023336;
}
.icon-button img {
  max-width: 100%;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  #info-0 {
    display: block;
  }
}

.container--14 {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1820px;
  width: 100%;
  margin: 0 15px 20px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .container--14 {
    margin: 0 0 20px;
  }
}
.container .farmnadzor {
  max-width: 1820px;
  width: 100%;
  margin: 10px auto 20px;
  font-family: "Inter", sans-serif;
  border: solid 1px rgba(255, 255, 255, 0.5);
  background-color: hsla(0, 0%, 100%, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  overflow: hidden;
  margin-top: 104px;
}
@media (max-width: 1024px) {
  .container .farmnadzor {
    margin: 86px auto 0px;
  }
}
.container .farmnadzor__title {
  display: flex;
  margin: 50px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1376px) {
  .container .farmnadzor__title {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 1024px) {
  .container .farmnadzor__title {
    margin: 25px 15px;
  }
}
.container .farmnadzor__title h3,
.container .farmnadzor__title .h3 {
  font-size: 45px;
  font-weight: 600;
  color: #023336;
  margin: 0;
}
@media (max-width: 1024px) {
  .container .farmnadzor__title h3,
  .container .farmnadzor__title h3 {
    font-size: 28px;
  }
}
.container .farmnadzor__text {
  margin: 50px;
}
.container .farmnadzor__text--simple {
  font-size: 20px;
  line-height: 1.24;
}
.container .farmnadzor__text--list li {
  font-size: 16px;
  line-height: 1.22;
  margin-bottom: 10px;
}
.container .farmnadzor__text--list li a {
  text-decoration: none;
  color: #005d63;
  transition: all 0.3s ease;
}
.container .farmnadzor__text--list li a:hover {
  text-decoration: underline;
  transition: all 0.3s ease;
}

.container--15 {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1820px;
  width: 100%;
  margin: 0 15px 20px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .container--15 {
    margin: 0 0 20px;
  }
}
.container .contacts {
  max-width: 1820px;
  width: 100%;
  margin: 10px auto 20px;
  font-family: "Inter", sans-serif;
  border: solid 1px rgba(255, 255, 255, 0.5);
  background-color: hsla(0, 0%, 100%, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  overflow: hidden;
  margin-top: 104px;
}
@media (max-width: 1024px) {
  .container .contacts {
    margin: 86px auto 0px;
  }
}
.container .contacts__title {
  display: flex;
  margin: 50px 50px 20px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1376px) {
  .container .contacts__title {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 1024px) {
  .container .contacts__title {
    margin: 25px 15px;
  }
}
.container .contacts__title h3,
.container .contacts__title .h3 {
  font-size: 45px;
  font-weight: 600;
  color: #023336;
  margin: 0;
}
@media (max-width: 1024px) {
  .container .contacts__title h3,
  .container .contacts__title .h3 {
    font-size: 28px;
  }
}
.container .contacts__block {
  display: flex;
  justify-content: space-between;
  margin: 0px 50px 20px;
}
@media (max-width: 1024px) {
  .container .contacts__block {
    flex-direction: column;
    margin: 0px 15px 20px;
  }
}
.container .contacts__block--left {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  max-width: 640px;
  width: 100%;
}
@media (max-width: 1024px) {
  .container .contacts__block--left {
    margin-bottom: 20px;
  }
}
.container .contacts__block--right {
  max-width: 1040px;
  width: 100%;
}
.container .contacts__block--right iframe {
  border-radius: 24px;
  max-height: 255px;
}
@media (max-width: 1024px) {
  .container .contacts__block--right iframe {
    max-height: 400px;
  }
}
.container .contacts__block--item {
  display: flex;
  align-items: center;
  justify-content: start;
}
.container .contacts__block--item--icon {
  margin-right: 25px;
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .container .contacts__block--item--icon svg {
    width: 35px;
    height: 35px;
  }
}
.container .contacts__block--item span {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.23;
}

.container--16 {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1820px;
  width: 100%;
  margin: 0 15px 20px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .container--16 {
    margin: 0 0 20px;
  }
}
.container .official {
  max-width: 1820px;
  width: 100%;
  margin: 10px auto 20px;
  font-family: "Inter", sans-serif;
  border: solid 1px rgba(255, 255, 255, 0.5);
  background-color: hsla(0, 0%, 100%, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  overflow: hidden;
  margin-top: 104px;
}
@media (max-width: 1024px) {
  .container .official {
    margin: 86px auto 0px;
  }
}
.container .official__title {
  display: flex;
  margin: 50px 50px 20px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1376px) {
  .container .official__title {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 1024px) {
  .container .official__title {
    margin: 25px 15px;
  }
}
.container .official__title h3 {
  font-size: 45px;
  font-weight: 600;
  color: #023336;
  margin: 0;
}
@media (max-width: 1024px) {
  .container .official__title h3 {
    font-size: 28px;
  }
}
.container .official__subtitle {
  display: flex;
  margin: 20px 50px 20px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1376px) {
  .container .official__subtitle {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 1024px) {
  .container .official__subtitle {
    margin: 25px 15px;
  }
}
.container .official__subtitle h4 {
  font-size: 30px;
  font-weight: 600;
  color: #ff7200;
  margin: 0;
}
@media (max-width: 1024px) {
  .container .official__subtitle h4 {
    font-size: 28px;
  }
}
.container .official p {
  margin: 20px 50px 0px;
}
@media (max-width: 1024px) {
  .container .official p {
    margin: 25px 15px;
  }
}
.container .official p:last-child {
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .container .official p:last-child {
    margin-bottom: 25px;
  }
}
.container .official__list {
  margin: 0 50px;
  color: #023336;
}
@media (max-width: 1024px) {
  .container .official__list {
    margin: 0 15px;
  }
}
.container .official__list ul li {
  margin-bottom: 10px;
}

.container--15 {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1820px;
  width: 100%;
  margin: 0 15px 20px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .container--15 {
    margin: 0 0 20px;
  }
}
.container .privacy {
  max-width: 1820px;
  width: 100%;
  margin: 10px auto 20px;
  font-family: "Inter", sans-serif;
  border: solid 1px rgba(255, 255, 255, 0.5);
  background-color: hsla(0, 0%, 100%, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .container .privacy {
    margin: 20px auto 0px;
  }
}
.container .privacy__title {
  display: flex;
  margin: 50px 50px 20px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1376px) {
  .container .privacy__title {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 1024px) {
  .container .privacy__title {
    margin: 25px 15px;
  }
}
.container .privacy__title h3 {
  font-size: 45px;
  font-weight: 600;
  color: #023336;
  margin: 0;
}
@media (max-width: 1024px) {
  .container .privacy__title h3 {
    font-size: 28px;
  }
}
.container .privacy__block {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin: 0px 50px 20px;
}
.container .privacy__block--text {
  font-size: 18px;
  line-height: 1.22;
  color: #023336;
}
.container .privacy__block--text li {
  font-size: 18px;
  color: #023336;
  line-height: 1.22;
}
@media (max-width: 1024px) {
  .container .privacy__block {
    flex-direction: column;
    margin: 0px 15px 20px;
  }
}

.footer {
  background: #023336;
  color: white;
  text-align: center;
  padding: 50px 0 50px;
  width: 100%;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
@media (max-width: 1024px) {
  .footer {
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 560px) {
  .footer {
    padding: 30px 0 30px;
  }
}
.footer-up {
  margin: 0 50px 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 560px) {
  .footer-up {
    margin: 0 0px 20px;
  }
}
@media (max-width: 375px) {
  .footer-up {
    flex-direction: column;
    gap: 15px;
  }
}
.footer-up__vertical {
  height: 42.6px;
  border-left: 1.51px solid rgba(208, 221, 237, 0.15);
  margin: 0 25px;
}
@media (max-width: 375px) {
  .footer-up__vertical {
    display: none;
  }
}
@media (max-width: 375) {
  .footer-up img {
    max-width: 50px;
  }
}
.footer-down {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 50px;
}
@media (max-width: 1024px) {
  .footer-down {
    gap: 15px;
  }
}
@media (max-width: 870px) {
  .footer-down {
    flex-direction: column;
    margin: 0 25px;
  }
}
.footer-down__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
}
.footer-down__info--license {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-down__info--phone, .footer-down__info--mail {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
  text-decoration: none;
}
.footer-down__info--adress {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0px;
}
.footer-down__menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-down__menu a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  text-decoration: none;
  transition: 0.5s ease;
}
.footer-down__menu a:hover {
  color: #ff7200;
  transition: 0.5s ease;
}
.footer-down__faq {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
  max-width: 390px;
  line-height: auto;
}
.footer-down__faq a {
  font-size: 16px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  margin-bottom: 20px;
  text-decoration: none;
  transition: 0.5s ease;
}
.footer-down__faq a:hover {
  color: #ff7200;
  transition: 0.5s ease;
}
.footer-down__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff7200;
  border-radius: 16px;
  transition: 0.5s ease;
  font-weight: 600;
  max-width: 257px;
  width: 100%;
  height: 67px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .footer-down__btn {
    max-width: 1024px;
    width: 100%;
  }
}
.footer-down__btn a {
  text-decoration: none;
  color: #fff;
  padding: 25px 4vw;
}
@media (max-width: 1024px) {
  .footer-down__btn a {
    padding: 25px 18vw;
  }
}
.footer-down__btn:hover {
  background-color: #005d63;
  transition: 0.5s ease;
}
.footer-down__btn-icon {
  margin-right: 8px;
}
.footer-down__btn-button {
  color: #fff;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

span.bold{
  font-weight: bold;
}
/*# sourceMappingURL=main.css.map */
