@charset "UTF-8";
/* USER VARIABLES SECTION */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
.font-small {
  font-size: 16px;
}

.font-normal {
  font-size: 18px;
}

.font-big {
  font-size: 22px;
}

.ls-small {
  letter-spacing: normal;
}

.ls-normal {
  letter-spacing: 4px;
}

.ls-big {
  letter-spacing: 8px;
}

.lh-small, html {
  --lh-100: 100%;
  --lh-110: 110%;
  --lh-120: 120%;
  --lh-130: 130%;
  --lh-140: 140%;
  --lh-150: 150%;
  --lh-160: 160%;
}

.lh-normal {
  --lh-100: 150%;
  --lh-110: 165%;
  --lh-120: 180%;
  --lh-130: 195%;
  --lh-140: 210%;
  --lh-150: 225%;
  --lh-160: 240%;
}

.lh-big {
  --lh-100: 200%;
  --lh-110: 220%;
  --lh-120: 240%;
  --lh-130: 260%;
  --lh-140: 280%;
  --lh-150: 300%;
  --lh-160: 320%;
}

.theme-standart {
  --color-black-text: black;
  --color-white-text: white;
  --color-00874D-text: #00874D;
  --color-9C9C9C-text: #9C9C9C;
  --color-585858-text: #585858;
  --color-000-text: 0,0,0;
  --border-black: black;
  --bg-white: white;
  --bg-black: black;
  --bg-green: #17A866;
  --bg-00874D: #00874D;
  --bg-F3F3F3: #F3F3F3;
  --bg-green-gradient: radial-gradient(262.5% 557.03% at 88% 85.63%, #00874D 0%, #00874D 10.1%, #FFFF00 100%);
}

.theme-black {
  --color-black-text: white;
  --color-white-text: black;
  --color-00874D-text: white;
  --color-9C9C9C-text: white;
  --color-585858-text: white;
  --color-000-text: 255,255,255;
  --border-black: white;
  --bg-white: black;
  --bg-black: white;
  --bg-green: black;
  --bg-00874D: white;
  --bg-F3F3F3: black;
  --bg-green-gradient: black;
}

.header-nav {
  list-style-type: none;
  margin: 0;
  padding-right: 16px;
  padding-top: 10px;
  z-index: 10;
}
.header-nav li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-nav li + li {
  margin-left: 40px;
}
.header-nav li img {
  max-height: 12px;
}
.header-nav li a {
  font-weight: 600;
  font-size: 0.625rem;
  color: #686868;
  text-decoration: none;
  cursor: pointer;
}
.header-nav.sticky {
  position: fixed;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.3);
}

.header-land {
  width: 1170px;
  box-sizing: border-box;
  max-width: calc(100% - 30px);
  border-radius: 40px;
  position: fixed;
  left: 50%;
  top: 36px;
  transform: translateX(-50%);
  z-index: 100;
  background: var(--bg-green);
  padding: 10px 10px;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
}
.header-land__box {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: center;
}
.header-land.sticky {
  position: fixed;
  right: 0;
  top: 36px;
  z-index: 100;
  padding: 10px 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}
.header-land__logo {
  text-decoration: none;
}
.header-land__logo img {
  filter: brightness(0) invert(1);
  height: 50px;
}
.header-land__logo span {
  font-weight: 400;
  font-size: 0.625rem;
  line-height: var(--lh-130);
  color: #FFFFFF;
  margin-left: 12px;
}
.header-land__city {
  font-weight: 400;
  font-size: 0.625rem;
  line-height: var(--lh-120);
  color: #65F7B4 !important;
}
.header-land__city::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("../../img/new/svg/header/nav_land.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  flex-shrink: 0;
  margin-right: 5px;
}
.header-land__nav {
  margin: 0;
  padding: 0;
  gap: 24px;
  list-style-type: none;
  padding-left: 4px;
}
.header-land__nav li a {
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  text-decoration: none;
}
.header-land__tel {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: var(--lh-100);
  text-decoration: none;
  color: #FFFFFF;
}
.header-land__tel:hover {
  color: #FFFFFF;
}
.header-land__open-modal {
  line-height: var(--lh-100);
  font-weight: 500;
  font-size: 0.9375rem;
  color: #65F7B4;
  text-decoration: underline;
  margin-top: 5px;
}
.header-land__open-modal:hover {
  color: #fff;
}
.header-land__phone {
  position: relative;
  padding-left: 32px;
}
.header-land__phone::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("../../img/new/svg/header/phone.svg");
  filter: brightness(0) invert(1);
  background-size: 100%;
  position: absolute;
  left: 0;
}
.header-land__btn {
  height: 40px;
  background: #FFFFFF;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.625rem;
  color: #222222;
  padding: 0 30px;
  text-decoration: none;
  letter-spacing: 6%;
  line-height: 110%;
  text-transform: uppercase;
}

.header-land.visuallyImpaired_active {
  top: 160px;
}

html.theme-black .header-land {
  border: 1px solid white;
}

html.theme-black .header-nav.sticky {
  background-color: transparent;
}

html.font-big .header-land > div,
html.ls-big .header-land > div {
  flex-wrap: wrap;
  row-gap: 10px;
}

html.ls-big.font-big .header-land.visuallyImpaired_active {
  top: 186px;
}

html.ls-big.font-big .header-land.visuallyImpaired_active.sticky {
  top: 160px;
}

@media (max-width: 767.98px) {
  .header-nav li + li {
    margin-left: 22px;
  }
  .header-nav li a {
    color: var(--color-black-text);
  }
  .header-nav {
    padding: 10px 0;
  }
  .header-nav .soon {
    display: none;
  }
}
@media (max-width: 570.98px) {
  .header-nav :nth-child(3) {
    display: none;
  }
}
.main-banner .banner-image {
  object-fit: cover;
  min-height: 760px;
  position: absolute;
  width: 100%; /* или нужная ширина */
}
.main-banner .container {
  position: relative;
  z-index: 2;
}
.main-banner__title {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: var(--lh-120);
  color: var(--color-black-text);
  width: 30ch;
}
.main-banner .next,
.main-banner .prev {
  background-color: white;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 100%;
  border: none;
  cursor: pointer;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
}
.main-banner .next:hover,
.main-banner .prev:hover {
  background-color: #17a866;
  border-color: #17a866;
}
.main-banner .next:hover svg path,
.main-banner .prev:hover svg path {
  stroke: white;
}
.main-banner__desc {
  font-size: 1.125rem;
  line-height: var(--lh-140);
  color: var(--color-black-text);
  margin-top: 30px;
  width: calc(100% - 600px);
}
.main-banner .prev svg {
  margin-left: -4px;
}
.main-banner .next svg {
  margin-right: -4px;
}
.main-banner__counter {
  color: var(--color-white-text);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: var(--lh-100);
  width: 58px;
}
.main-banner__counter .current-slide {
  font-size: 1.25rem;
  margin-bottom: -1px;
}
.main-banner__content {
  overflow: hidden;
  margin-top: 150px;
  padding-bottom: 20px;
  position: relative;
}
.main-banner__content .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-banner__list {
  margin-top: 50px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
.main-banner__list::before {
  content: "";
  position: absolute;
  left: -50vw;
  right: -50vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
.main-banner__list-row {
  padding-top: 30px;
  position: relative;
  line-height: 1.3;
}
.main-banner__list-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: -7px;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: #17a866;
}
.main-banner__list-row + div {
  margin-left: 60px;
}
.main-banner__list-title {
  font-weight: 600;
  font-size: 50px;
}
.main-banner__list-desc {
  font-size: 22px;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main-banner__list-desc::before {
  content: "";
  display: block;
  background-image: url(../../img/new/svg/big-arrow.svg);
  width: 51px;
  height: 19px;
  background-size: 100%;
  margin-right: 23px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.main-banner__buttons {
  margin-top: 38px;
}
.main-banner .no-hidden {
  overflow: visible;
}
.main-banner__nav {
  position: absolute;
  right: 15px;
  bottom: 20px;
  z-index: 3;
  margin-bottom: 18px;
  gap: 10px;
}
.main-banner .main-buttons {
  margin-top: 0px button;
  margin-top-padding: 0 32px;
}

@media (max-width: 1199.98px) {
  .main-banner {
    padding-bottom: 40px;
  }
  .main-banner .main-buttons {
    margin-top: 40px;
  }
  .main-banner__content {
    margin-top: 115px;
  }
}
@media (max-width: 991.98px) {
  .main-banner .banner-image {
    object-position: 60% 0%;
    margin-top: 0px;
    object-fit: cover;
  }
  .main-banner__title {
    font-size: 42px;
    width: calc(100% - 300px);
  }
  .main-banner__desc {
    width: calc(100% - 300px);
  }
  .main-banner__content {
    margin-top: 36px;
  }
}
@media (max-width: 767.98px) {
  .main-banner__title {
    font-size: calc(1.25rem + 6 * (100vw - 320px) / 850);
  }
  .main-banner .next,
  .main-banner .prev {
    width: 40px;
    height: 40px;
  }
  .main-banner__content {
    margin-top: 20px;
  }
  .main-banner__nav {
    position: relative;
    bottom: auto;
    margin-top: 20px;
    right: -20px;
  }
  .main-banner .main-buttons {
    margin-top: 20px;
  }
  .main-banner__buttons {
    flex-direction: column;
  }
  .main-banner .main-buttons {
    order: 2;
    margin-top: 36px;
  }
  .main-banner .main-buttons .btn-2 {
    padding: 0 12px;
    font-size: 12px;
    height: 58px;
  }
  .main-banner .main-buttons .btn-2.btn-arrow-right::after {
    margin-left: 14px;
  }
  .main-banner .main-buttons .btn-3 {
    font-size: 12px;
    height: 58px;
  }
}
@media (max-width: 547.98px) {
  .main-banner {
    padding-bottom: 0;
  }
  .main-banner .banner-image {
    object-position: 65% 0%;
    opacity: 0.5;
  }
  .main-banner__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .main-banner__title {
    width: 100%;
  }
  .main-banner__desc {
    width: 100%;
  }
  .main-banner .next, .main-banner .prev {
    background-color: #F3F3F3;
  }
  .main-banner__buttons {
    margin-top: 0;
  }
  .main-banner__counter {
    color: var(--color-black-text);
  }
}
html.theme-black .main-banner .banner-image {
  display: none;
}

html.theme-black .main-banner__counter {
  color: white;
}

.btn-arrow-right::after {
  content: "";
  display: inline-block;
  width: 12px; /* Размер вашей иконки */
  height: 12px;
  margin-left: 24px;
  background-image: url("/static/corp/img/new/svg/main/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.btn-arrow-right:hover::after {
  transform: translateX(4px);
}

.main-buttons {
  gap: 20px;
}

.benefit-cooperation .benefit-slider {
  margin-left: -66px;
  margin-right: -160px;
  padding: 44px 0 120px 67px;
}
.benefit-cooperation__wrapper {
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .benefit-cooperation .benefit-slider {
    margin-left: -49px;
    padding: 40px 50px;
    margin-right: 0;
  }
}
.audience-benefits__block .audience-benefits__title {
  position: relative;
  z-index: 3;
  margin-bottom: 52px;
}
.audience-benefits__block .audience-benefits__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.audience-benefits__block .audience-benefits__content .audience-benefits__category {
  padding: 40px 30px 30px 30px;
  background-color: var(--bg-F3F3F3);
  border-radius: 40px;
  width: 100%;
}
.audience-benefits__block .audience-benefits__content .audience-benefits__category .audience-benefits__category__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.audience-benefits__block .audience-benefits__content .audience-benefits__category .audience-benefits__category__wrapper .audience-benefits__category__title {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: var(--lh-120);
  text-transform: uppercase;
  color: var(--color-00874D-text);
  margin-bottom: 0;
  padding-left: 10px;
}
.audience-benefits__block .audience-benefits__content .audience-benefits__category .audience-benefits__category__wrapper .audience-benefits__category-content {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.audience-benefits__block .audience-benefits__content .audience-benefits__category .audience-benefits__category__wrapper .audience-benefits__category-content-card {
  width: 30%;
  display: flex;
  flex-direction: column;
}
.audience-benefits__block .audience-benefits__content .audience-benefits__category .audience-benefits__category__wrapper .audience-benefits__category-content-card__img {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}
.audience-benefits__block .audience-benefits__content .audience-benefits__category .audience-benefits__category__wrapper .audience-benefits__category-content-card__img::before {
  content: "";
  display: block;
  margin-top: 50%;
}
.audience-benefits__block .audience-benefits__content .audience-benefits__category .audience-benefits__category__wrapper .audience-benefits__category-content-card__img-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.audience-benefits__block .audience-benefits__content .audience-benefits__category .audience-benefits__category__wrapper .audience-benefits__category-content-card__img img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.audience-benefits__block .audience-benefits__content .audience-benefits__category .audience-benefits__category__wrapper .audience-benefits__category-content-card__title {
  max-width: 290px;
  font-size: 1rem;
  font-weight: 700;
  line-height: var(--lh-140);
  padding-left: 10px;
  color: var(--color-black-text);
}
.audience-benefits__block .audience-benefits__content .audience-benefits__category .audience-benefits__category__wrapper .audience-benefits__category-content-card__desc {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: var(--lh-140);
  max-width: 310px;
  padding-left: 10px;
  color: var(--color-585858-text);
}
.audience-benefits__block .audience-benefits__content .audience-benefits__category .audience-benefits__category__wrapper .audience-benefits__category-content-card_wider .audience-benefits__category-content-card__img::before {
  margin-top: 45%;
}
.audience-benefits__block .audience-benefits__content .audience-benefits__category .audience-benefits__category__wrapper .audience-benefits__category-content-card_wider {
  width: 370px;
}

@media (max-width: 1199.98px) {
  .audience-benefits__block .audience-benefits__content .audience-benefits__category .audience-benefits__category__wrapper .audience-benefits__category-content-card_wider {
    width: 30%;
  }
  .audience-benefits__block .audience-benefits__content .audience-benefits__category .audience-benefits__category__wrapper .audience-benefits__category-content-card_wider .audience-benefits__category-content-card__img::before {
    margin-top: 50%;
  }
}
@media (max-width: 991.98px) {
  .audience-benefits__block .audience-benefits__content .audience-benefits__category .audience-benefits__category__wrapper .audience-benefits__category-content-card_wider,
  .audience-benefits__block .audience-benefits__content .audience-benefits__category .audience-benefits__category__wrapper .audience-benefits__category-content-card {
    width: 47.5%;
  }
}
@media (max-width: 671.98px) {
  .audience-benefits__block .audience-benefits__content .audience-benefits__category .audience-benefits__category__wrapper .audience-benefits__category-content-card_wider,
  .audience-benefits__block .audience-benefits__content .audience-benefits__category .audience-benefits__category__wrapper .audience-benefits__category-content-card {
    width: 100%;
  }
  .audience-benefits__block .audience-benefits__content .audience-benefits__category .audience-benefits__category__wrapper .audience-benefits__category-content-card__desc {
    max-width: 100%;
  }
  .audience-benefits__block .audience-benefits__content .audience-benefits__category {
    padding: 30px 15px 30px 15px;
  }
  .audience-benefits__block .audience-benefits__content .audience-benefits__category .audience-benefits__category__wrapper .audience-benefits__category__title {
    font-size: 1.25rem;
  }
  .audience-benefits__block .audience-benefits__content .audience-benefits__category .audience-benefits__category__wrapper {
    gap: 26px;
  }
}
html.theme-black .audience-benefits__category {
  border: 1px solid white;
}

.color-1 {
  position: absolute;
  left: 0px;
  top: 0px;
  background-repeat: no-repeat;
  background-image: url("/static/corp/img/new/colors-background/color-1.webp");
  height: 750px;
  width: 52.1%;
  z-index: 1;
  background-size: 100% auto;
}

.color-2 {
  position: absolute;
  right: 0px;
  top: -100px;
  background-repeat: no-repeat;
  background-image: url("/static/corp/img/new/colors-background/color-2.webp");
  height: 1097px;
  width: 33.9%;
  z-index: 1;
  background-size: 100% auto;
}

.color-3 {
  position: absolute;
  right: 0px;
  top: -150px;
  background-repeat: no-repeat;
  background-image: url("/static/corp/img/new/colors-background/color-3.webp");
  height: 1271px;
  width: 66.4%;
  z-index: -1;
  background-size: 100% auto;
}

.color-4 {
  position: absolute;
  left: 0px;
  bottom: -541px;
  background-repeat: no-repeat;
  background-image: url("/static/corp/img/new/colors-background/color-4.webp");
  height: 1665px;
  width: 82%;
  z-index: -1;
  background-size: 100% auto;
  background-position: center;
}

.color-5 {
  position: absolute;
  right: 0px;
  top: -351px;
  background-repeat: no-repeat;
  background-image: url("/static/corp/img/new/colors-background/color-5.webp");
  height: 1238px;
  width: 74.9%;
  z-index: -1;
  background-size: 100% auto;
}

.color-6 {
  position: absolute;
  right: 0px;
  bottom: -495px;
  background-repeat: no-repeat;
  background-image: url("/static/corp/img/new/colors-background/color-6.webp");
  height: 2248px;
  width: 100%;
  z-index: -1;
  background-size: 100% auto;
  background-position: center;
}

.color-7 {
  position: absolute;
  left: 0px;
  top: 0px;
  background-repeat: no-repeat;
  background-image: url("/static/corp/img/new/colors-background/color-1.webp");
  height: 874px;
  width: 52.1%;
  z-index: 1;
  background-size: 100% auto;
}

.color-8 {
  position: absolute;
  right: 0px;
  top: -47px;
  background-repeat: no-repeat;
  background-image: url("/static/corp/img/new/colors-background/color-3.webp");
  height: 1271px;
  width: 66.4%;
  z-index: -1;
  background-size: 100% auto;
}

.color-9 {
  position: absolute;
  left: 0px;
  top: -280px;
  background-repeat: no-repeat;
  background-image: url("/static/corp/img/new/colors-background/color-9.webp");
  height: 1665px;
  width: 60.8%;
  z-index: -1;
  background-size: 100% 100%;
}

.color-10 {
  position: absolute;
  right: 0px;
  top: -148px;
  background-repeat: no-repeat;
  background-image: url("/static/corp/img/new/colors-background/color-5.webp");
  height: 1238px;
  width: 74.9%;
  z-index: -1;
  background-size: 100% 100%;
}

.color-11 {
  position: absolute;
  left: 0px;
  top: 0px;
  background-repeat: no-repeat;
  background-image: url("/static/corp/img/new/colors-background/color-7.webp");
  height: 855px;
  width: 74.7%;
  z-index: -1;
  background-size: 100% auto;
}

.color-12 {
  position: absolute;
  right: -82px;
  top: 0px;
  background-repeat: no-repeat;
  background-image: url("/static/corp/img/new/colors-background/color-10.webp");
  height: 597px;
  width: 804px;
  z-index: 1;
}

.color-13 {
  position: absolute;
  left: 0px;
  top: 158px;
  background-repeat: no-repeat;
  background-image: url("/static/corp/img/new/colors-background/color-11.webp");
  height: 1391px;
  width: 68.4%;
  z-index: -1;
  background-size: 100% auto;
}

.color-14 {
  position: absolute;
  right: 0px;
  top: 18px;
  background-repeat: no-repeat;
  background-image: url("/static/corp/img/new/colors-background/color-12.webp");
  height: 1572px;
  width: 55.4%;
  z-index: -1;
  background-size: 100% 100%;
}

.color-15 {
  position: absolute;
  left: 0px;
  top: -390px;
  background-repeat: no-repeat;
  background-image: url("/static/corp/img/new/colors-background/color-13.webp");
  height: 1665px;
  width: 64.9%;
  z-index: -1;
  background-size: 100% 100%;
}

.color-16 {
  position: absolute;
  right: 0px;
  top: -141px;
  background-repeat: no-repeat;
  background-image: url("/static/corp/img/new/colors-background/color-14.webp");
  height: 1270px;
  width: 87%;
  z-index: -1;
  background-size: 100% 100%;
  background-position: center;
}

@media (max-width: 767.98px) {
  .color-1 {
    background-size: 100% 100%;
  }
  .color-2 {
    background-size: 100% 100%;
  }
  .color-4 {
    bottom: -306px;
  }
  .color-5 {
    top: -136px;
  }
  .color-6 {
    bottom: -54px;
  }
  .color-7 {
    background-size: 100% 100%;
    top: -64px;
  }
  .color-8 {
    top: 724px;
  }
  .color-9 {
    background-size: 100% auto;
  }
  .color-10 {
    background-size: 100% auto;
  }
  .color-11 {
    background-size: 100% 100%;
    top: -64px;
  }
  .color-16 {
    background-size: 100% auto;
    background-position: unset;
  }
}
@media (max-width: 458.98px) {
  .color-2 {
    top: 150px;
  }
  .color-8 {
    top: 794px;
  }
  .color-9 {
    top: 990px;
  }
  .color-10 {
    top: -100px;
  }
  .color-16 {
    top: -60px;
  }
}
.metrics {
  margin: 120px 0;
  position: relative;
}
.metrics-block {
  gap: 120px;
}
.metrics-block-item {
  flex-direction: column;
  gap: 13px;
}
.metrics-block-item p {
  margin: 0;
}
.metrics-block-item-value {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: var(--lh-120);
  color: var(--color-00874D-text);
  width: max-content;
}
.metrics-block-item-desc {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: var(--lh-120);
  color: var(--color-black-text);
}

@media (max-width: 1200px) {
  .metrics-block {
    flex-wrap: wrap;
  }
}
@media (max-width: 1199.98px) {
  .metrics {
    margin: 42px 0;
  }
}
@media (max-width: 662px) {
  .metrics-block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .metrics-block-item {
    align-items: center;
  }
}
@media (max-width: 570px) {
  .metrics-block-item-value {
    font-size: 2.5rem;
  }
  .metrics-block-item-desc {
    font-size: 1.125rem;
  }
  .metrics-block {
    gap: 50px;
  }
  .metrics {
    margin: 60px 0;
  }
}
.switch-block-wrapper .switch-block-title-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.switch-block-wrapper .switch-block-title-box .switch-block-btn {
  position: relative;
  min-width: 102px;
  z-index: 3;
}
.switch-block-wrapper .switch-block-title-box .switch-block-btn .prev,
.switch-block-wrapper .switch-block-title-box .switch-block-btn .next {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(262.5% 557.03% at 50% 85.63%, #00874D 0%, #00874D 10.1%, #FFFF00 100%);
  cursor: pointer;
}
.switch-block-wrapper .switch-block-title-box .switch-block-btn .next {
  position: absolute;
  right: 0;
}
.switch-block-wrapper .switch-block-title-box .switch-block-btn .prev.swiper-button-disabled,
.switch-block-wrapper .switch-block-title-box .switch-block-btn .next.swiper-button-disabled {
  background: #F3F3F3;
}
.switch-block-wrapper .switch-block-title-box .switch-block-btn .prev.swiper-button-disabled svg path,
.switch-block-wrapper .switch-block-title-box .switch-block-btn .next.swiper-button-disabled svg path {
  stroke: black;
}
.switch-block-wrapper .switch-block-swiper-wrapper {
  width: 100%;
  display: flex;
}
.switch-block-wrapper .switch-block-swiper-wrapper .switch-block-swiper-slide {
  max-width: 370px;
  width: 370px;
  height: 370px;
  flex-shrink: 0;
}
.switch-block-wrapper .switch-block-swiper-wrapper .switch-block-swiper-slide .switch-block-slide-item {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background-color: var(--bg-white);
  box-shadow: 12px 12px 60px 0px rgba(0, 0, 0, 0.1215686275);
  padding: 24px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.switch-block-wrapper .switch-block-swiper-wrapper .switch-block-swiper-slide .switch-block-slide-item .switch-block-slide-item-box {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.switch-block-wrapper .switch-block-swiper-wrapper .switch-block-swiper-slide .switch-block-slide-item .switch-block-slide-item-box .switch-block-slide-item-header {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.switch-block-wrapper .switch-block-swiper-wrapper .switch-block-swiper-slide .switch-block-slide-item .switch-block-slide-item-box .switch-block-slide-item-header span {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: var(--lh-140);
  color: var(--color-9C9C9C-text);
}
.switch-block-wrapper .switch-block-swiper-wrapper .switch-block-swiper-slide .switch-block-slide-item .switch-block-slide-item-box .switch-block-slide-item-header .switch-block-slide-item-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: var(--lh-120);
  color: var(--color-black-text);
}
.switch-block-wrapper .switch-block-swiper-wrapper .switch-block-swiper-slide .switch-block-slide-item .switch-block-slide-item-box .switch-block-slide-item-img {
  height: 100%;
  display: flex;
  align-items: flex-start;
}
.switch-block-wrapper .switch-block-swiper-wrapper .switch-block-swiper-slide .switch-block-slide-item .switch-block-card__desc {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: var(--lh-140);
  color: var(--color-585858-text);
}

html.theme-black .switch-block-slide-item {
  border: 1px solid white;
}

.prepare__wrapper {
  display: flex;
  flex-direction: column;
}
.prepare__content {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
.prepare__content-block {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 30px 0;
  border-top: 1px solid #e5e5e5;
  gap: 40px;
}
.prepare__content-block:last-child {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 14px;
}
.prepare__content-block__number {
  font-size: 1.625rem;
  font-weight: 400;
  line-height: var(--lh-120);
  text-transform: uppercase;
  color: var(--color-00874D-text);
}
.prepare__content-block__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: var(--lh-120);
  min-width: 290px;
  margin-right: 40px;
  color: var(--color-black-text);
}
.prepare__content-block__desc {
  font-size: 1rem;
  font-weight: 500;
  line-height: var(--lh-140);
  color: var(--color-9C9C9C-text);
  text-align: left;
}
.prepare__content-block__desc h4 {
  font-size: 1rem;
  font-weight: 700;
  line-height: var(--lh-140);
}
.prepare__content-block__desc li {
  font-size: 1rem;
  line-height: var(--lh-160);
  font-weight: 500;
}
.prepare__info {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.prepare__info img {
  width: 42px; /* Размер вашей иконки */
  height: 42px;
  background-image: url("/static/corp/img/new/svg/heart-straight.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.prepare__info p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: var(--lh-120);
  color: var(--color-00874D-text);
  margin: 0;
}

@media (max-width: 992px) {
  .prepare__content-block {
    flex-wrap: wrap;
  }
}
@media (max-width: 757.98px) {
  .prepare__info p {
    font-size: 0.625rem;
  }
  .prepare__info img {
    width: 30px;
    height: 30px;
  }
}
.faq {
  -webkit-box-shadow: 0 33px 145px rgba(0, 0, 0, 0.07), 0 13.7866px 60.5775px rgba(0, 0, 0, 0.0503198), 0 7.37098px 32.3876px rgba(0, 0, 0, 0.0417275), 0 4.13211px 18.1562px rgba(0, 0, 0, 0.035), 0 2.19453px 9.64265px rgba(0, 0, 0, 0.0282725), 0 0.91319px 4.01252px rgba(0, 0, 0, 0.0196802);
  box-shadow: 0 33px 145px rgba(0, 0, 0, 0.07), 0 13.7866px 60.5775px rgba(0, 0, 0, 0.0503198), 0 7.37098px 32.3876px rgba(0, 0, 0, 0.0417275), 0 4.13211px 18.1562px rgba(0, 0, 0, 0.035), 0 2.19453px 9.64265px rgba(0, 0, 0, 0.0282725), 0 0.91319px 4.01252px rgba(0, 0, 0, 0.0196802);
  border-radius: 40px;
  padding: 27px 30px 0px 30px;
  background-color: var(--bg-white);
}
.faq__item {
  position: relative;
  cursor: pointer;
}
.faq__item + div {
  border-top: 1px solid #abeacd;
}
.faq__item.opened .faq__title::before {
  background-image: url(../../img/new/svg/Minus.svg);
}
.faq__title {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: var(--lh-120);
  position: relative;
  padding: 30px 0 30px 51px;
  color: var(--color-black-text);
}
.faq__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  background-image: url(../../img/new/svg/Plus.svg);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
}
.faq__desc {
  font-size: 1rem;
  color: #9C9C9C;
  line-height: var(--lh-140);
  padding-left: 51px;
  padding-bottom: 25px;
  display: none;
}
.faq__desc p:last-child {
  margin-bottom: 0;
}

html.theme-black .faq {
  border: 1px solid white;
}

@media (max-width: 768px) {
  .faq {
    padding: 27px 30px 20px 30px;
  }
  .faq__title {
    font-size: 1.125rem;
    padding: 10px 0 10px 40px;
  }
  .faq__desc {
    padding: 0 10px 10px;
  }
}
.about-company__wrapper {
  display: flex;
  flex-direction: row;
  gap: 70px;
}
.about-company__item-left {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.about-company__item-left__img-box {
  position: relative;
  margin-left: -136px;
  border-top-right-radius: 215px;
  border-bottom-right-radius: 215px;
  overflow: hidden;
}
.about-company__item-left__img-box img {
  width: 100%;
  max-height: 340px;
  height: 100%;
  object-fit: contain;
}
.about-company__item-left__desc {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: var(--lh-140);
  color: var(--color-black-text);
}
.about-company__item-right {
  min-width: 570px;
}
.about-company__item-right__desc {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: var(--lh-140);
  color: var(--color-black-text);
}
.about-company .about-company__title {
  font-size: 2.5rem;
  line-height: var(--lh-100) !important;
}
.about-company .about-company__metrics {
  gap: 80px;
  margin-top: 125px;
}

@media (max-width: 1047px) {
  .about-company__wrapper {
    flex-direction: column;
    gap: 46px;
  }
  .about-company__item-left__img-box {
    margin-left: -21px;
    max-height: 490px;
  }
}
@media (max-width: 767.98px) {
  .about-company .about-company__title {
    font-size: calc(24px + 6 * (100vw - 320px) / 850);
  }
  .about-company__metrics {
    flex-direction: column;
  }
}
@media (max-width: 570px) {
  .about-company__item-right {
    min-width: auto;
  }
  .about-company .about-company__metrics {
    gap: 50px;
    margin-top: 60px;
  }
  .about-company__item-left {
    gap: 30px;
  }
}
.our-center__title {
  margin-bottom: 50px;
}
.our-center__wrapper {
  min-height: 530px;
  display: flex;
  border-radius: 40px;
  background-color: var(--bg-white);
  box-shadow: 12px 12px 60px 0px rgba(0, 0, 0, 0.1215686275);
}
.our-center__content {
  padding: 20px 20px 20px 20px;
  width: 400px;
}
.our-center__content-select {
  width: 100%;
  min-height: 68px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  padding: 13px 20px 10px 20px;
  box-sizing: border-box;
  border: 1px solid #EBEBEB;
}
.our-center__content-select label {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: var(--lh-120);
  color: #9C9C9C;
  padding-bottom: 5px;
}
.our-center__content-select .choices {
  font-size: 1rem;
  font-weight: 400;
  line-height: var(--lh-120);
  height: 24px;
  max-height: 24px;
  flex: 1;
  outline: none;
  /* Убираем стандартную стрелку Choices.js */
}
.our-center__content-select .choices[data-type*=select-one]::after {
  display: none !important;
}
.our-center__content-select .choices[data-type*=select-one] .choices__inner {
  padding-bottom: 0;
}
.our-center__content-select .choices {
  /* Добавляем свою иконку */
}
.our-center__content-select .choices .choices__inner {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%2300874D" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 0px center;
  background-size: 26px;
  border: none;
  background-color: transparent;
  height: inherit;
  min-height: 24px;
  padding: 0;
}
.our-center__content-select .choices__item {
  height: inherit;
}
.our-center__content-select .choices__list--single {
  padding: 0;
}
.our-center__content-select .choices__list--dropdown {
  border-radius: 16px !important;
  overflow: hidden !important;
  top: 160% !important;
  border-color: #EBEBEB !important;
}
.our-center__content-select .choices__list--dropdown[aria-expanded] {
  background-color: white !important;
  padding: 10px;
}
.our-center__content-select .choices__list--dropdown .choices__item {
  padding: 0 !important;
  background-color: transparent !important;
  font-size: 0.75rem !important;
}
.our-center__content__adresses {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-top: 1px solid #EBEBEB;
  border-bottom: 1px solid #EBEBEB;
  padding: 15px 0;
  margin-top: 20px;
  max-height: 402px;
  overflow-y: scroll;
  padding-right: 15px;
}
.our-center__content__adresses-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: transparent;
  border-radius: 26px;
  padding: 10px;
  color: var(--color-black-text);
  transition: height 0.2s ease-in-out;
  cursor: pointer;
  justify-content: space-between;
}
.our-center__content__adresses-item__text-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 10px;
}
.our-center__content__adresses-item__status {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: var(--lh-120);
  color: #00874D;
}
.our-center__content__adresses-item__adress-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: inherit;
}
.our-center__content__adresses-item__adress-box p {
  margin: 0;
}
.our-center__content__adresses-item__adress-box__adress {
  font-size: 1rem;
  font-weight: 700;
  line-height: var(--lh-120);
}
.our-center__content__adresses-item__adress-box__time {
  font-size: 0.625rem;
  font-weight: 500;
  line-height: var(--lh-120);
  color: #9C9C9C;
}
.our-center__content__adresses-item__tel {
  font-size: 0.625rem;
  font-weight: 700;
  line-height: var(--lh-120);
  text-decoration: none;
  color: inherit;
  position: relative;
  padding-left: 16px;
}
.our-center__content__adresses-item__tel:hover {
  color: inherit;
}
.our-center__content__adresses-item__tel::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  background-size: 100%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-image: url(../../img/new/svg/contacts/phone-disconnect.svg);
}
.our-center__content__adresses-item__button {
  display: none !important;
  height: 36px !important;
  min-height: 36px !important;
  font-size: 0.625rem !important;
  line-height: var(--lh-110);
  padding: 12px 0 !important;
  color: var(--color-black-text);
}
.our-center__content__adresses-item__button:hover {
  color: var(--color-black-text) !important;
}
.our-center__content__adresses-item__button:active {
  transform: translateY(2px);
}
.our-center__content__adresses-item.active {
  background: radial-gradient(262.5% 557.03% at 88% 85.63%, #00874D 0%, #00874D 10.1%, #FFFF00 100%);
  height: fit-content;
  color: white;
  padding-top: 17px;
}
.our-center__content__adresses-item.active .our-center__content__adresses-item__status {
  color: white !important;
}
.our-center__content__adresses-item.active .our-center__content__adresses-item__button {
  background-color: var(--bg-white) !important;
}
.our-center__content__adresses-item.active .our-center__content__adresses-item__tel::before {
  background-image: url(../../img/new/svg/contacts/phone-disconnect-white.svg);
}
.our-center__content__adresses-item.active .our-center__content__adresses-item__button {
  display: block !important;
}
.our-center__content__adresses-item.active .our-center__content__adresses-item__adress-box__time {
  color: #d8d8d8;
}
.our-center__map {
  width: calc(100% - 400px);
}
.our-center__map #map {
  height: 100%;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
}

html.theme-black .our-center__wrapper,
html.theme-black .our-center__content__adresses-item {
  border: 1px solid white;
}

@media (max-width: 1196px) {
  .our-center__content {
    width: 325px;
  }
  .our-center__map {
    width: calc(100% - 325px);
  }
}
@media (max-width: 768px) {
  .our-center__wrapper {
    flex-direction: column;
  }
  .our-center__content {
    width: 100%;
  }
  .our-center__map {
    min-height: 540px;
    width: 100%;
  }
  .our-center__map #map {
    min-height: 540px;
  }
  .our-center__content__adresses-item__button {
    min-height: 44px !important;
  }
}
.footer {
  overflow: hidden;
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer__content {
  display: flex;
  flex-direction: row;
  gap: 72px;
}
.footer__content__logo {
  width: 68px;
  height: 68px;
}
.footer__content__logo img {
  width: 100%;
}
.footer__content__item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__content__item h4 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: var(--lh-120);
  color: var(--color-00874D-text);
  text-transform: none;
}
.footer__content__item nav {
  background-color: unset;
  list-style-type: none;
}
.footer__content__item nav ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  height: unset !important;
}
.footer__content__item nav ul li, .footer__content__item nav a {
  font-size: 0.625rem;
  line-height: var(--lh-110);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-black-text);
}
.footer__content__item nav ul li a:hover {
  transform: translateY(2px);
  color: black;
}
.footer__content__item-box {
  display: flex;
  flex-direction: row;
  gap: 124px;
  flex-wrap: wrap;
}
.footer__content__actions {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__content__actions__buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__content__actions__buttons-order {
  min-height: 36px !important;
  font-size: 0.625rem !important;
  max-width: 194px;
  padding: 0 20px !important;
  text-transform: uppercase;
}
.footer__content__actions__buttons-make {
  text-transform: uppercase;
  max-width: 270px;
  width: 270px;
  padding: 0 20px 0 35px !important;
}
.footer__content__actions .company-direction {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__content__actions .company-direction__requirements {
  font-size: 0.875rem;
  color: #9C9C9C;
  margin-bottom: 6px;
}
.footer__content__actions .company-direction__requirements p {
  margin: 0;
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
.footer__content__actions .company-direction__button {
  font-size: 0.5rem;
  font-weight: 700;
  line-height: var(--lh-110);
  letter-spacing: inherit;
  padding-left: 16px;
  position: relative;
  border: none;
  background-color: transparent;
  text-align: left;
  color: #9C9C9C;
}
.footer__content__actions .company-direction__button::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  background-size: 100%;
  background-position: 50%;
  background-repeat: no-repeat;
  opacity: 0.5;
  background-image: url(../../img/new/svg/import.svg);
}
.footer__policy {
  font-size: 0.5rem;
  font-weight: 500;
  line-height: var(--lh-120);
  color: #9C9C9C;
  display: flex;
  gap: 20px;
}
.footer__policy-privacy {
  color: inherit;
  text-decoration: none;
}
.footer__policy-dev {
  position: relative;
}
.footer__policy-dev::after {
  content: "";
  position: absolute;
  left: 111px;
  top: -2;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 10px;
  background-size: 100%;
  background-position: 50%;
  background-repeat: no-repeat;
  opacity: 0.5;
  background-image: url(../../img/new/svg/devmark.svg);
}
.footer__socials {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

@media (max-width: 1170.98px) {
  .footer__content {
    gap: 46px;
    justify-content: center;
  }
}
@media (max-width: 991.98px) {
  .footer__content__item nav {
    display: block;
  }
  .footer__content__item h4 {
    font-size: 1.625rem;
  }
  .footer__content__actions__buttons-make {
    width: 217px;
    font-size: 0.625rem !important;
    height: 54px !important;
  }
  .footer__content__actions__buttons-order {
    max-width: 175px;
    font-size: 0.5rem !important;
    height: 32px !important;
  }
}
@media (max-width: 767.98px) {
  .footer__wrapper {
    gap: 32px;
  }
  .footer__content,
  .footer__content__item-box {
    gap: 40px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .footer__content__item h4 {
    font-size: 1.5rem;
  }
  .footer__content__item {
    gap: 8px;
  }
  .footer__content__item nav ul {
    gap: 12px;
    height: auto;
  }
  .footer__content__actions__buttons {
    flex-direction: row;
  }
  .footer__content__actions .company-direction {
    flex-direction: row;
  }
  .footer__content__actions__buttons-make {
    height: 40px !important;
  }
  .footer__content__actions__buttons-order {
    height: 38px !important;
  }
}
@media (max-width: 567.98px) {
  .footer__policy {
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
  .footer__policy p {
    margin: 0;
    padding: 0;
  }
}
@media (max-width: 498.98px) {
  .footer__content__logo {
    display: none;
  }
  .footer__content__actions__buttons-make,
  .footer__content__actions__buttons-order {
    padding: 0 28px !important;
  }
  .footer__content__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer__socials {
    flex-wrap: wrap;
  }
  .footer__content__actions .company-direction {
    flex-direction: column;
  }
}
@media (max-width: 398.98px) {
  .footer__content,
  .footer__content__item-box {
    gap: 26px;
  }
  .footer__content__item h4 {
    font-size: 1.375rem;
  }
  .footer__content__actions__buttons-make,
  .footer__content__actions__buttons-order {
    padding: 0 22px !important;
  }
}
.about-banner {
  position: relative;
  min-height: 732px;
  top: -27px;
}
.about-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/static/corp/img/new/about/main.webp");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  background-position: 60% 0%;
}
.about-banner__blur {
  background: radial-gradient(circle, rgb(255, 255, 255), rgb(255, 255, 255), transparent 130%);
  filter: blur(10px);
  height: 353px;
  position: absolute;
  width: 875px;
  bottom: -21px;
  left: 26px;
}
.about-banner__blur2 {
  background: radial-gradient(circle, rgb(255, 255, 255), rgb(255, 255, 255), transparent 156%);
  filter: blur(10px);
  height: 50px;
  position: absolute;
  width: 100%;
  bottom: -21px;
}
.about-banner__content {
  display: flex;
  flex-direction: column;
  gap: 62px;
  margin-top: 42px;
}
.about-banner__content .about-banner__title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: var(--lh-120);
  color: var(--color-black-text);
  text-transform: uppercase;
}
.about-banner__content .about-banner__list-desc {
  font-size: 1.125rem;
  line-height: var(--lh-140);
  font-weight: 400;
  color: var(--color-black-text);
}

@media (max-width: 1047.98px) {
  .about-banner {
    min-height: 556px;
  }
  .about-banner__blur {
    bottom: -131px;
  }
}
@media (max-width: 992.98px) {
  .about-banner {
    min-height: 500px;
  }
  .about-banner__blur {
    left: -33px;
  }
}
@media (max-width: 901.98px) {
  .about-banner {
    overflow: hidden;
  }
}
@media (max-width: 767.98px) {
  .about-banner {
    height: 100%;
    min-height: 364px;
    top: -36px;
  }
  .about-banner__content .about-banner__title {
    font-size: calc(24px + 6 * (100vw - 320px) / 850);
  }
  .about-banner__content {
    margin-top: 54px;
    gap: 36px;
  }
  .about-banner__blur {
    bottom: -52px;
    height: 100px;
  }
}
@media (max-width: 458.98px) {
  .about-banner {
    top: -54px;
  }
}
html.theme-black .about-banner::before {
  content: none;
}

html.theme-black .about-banner__blur,
html.theme-black .about-banner__blur2 {
  display: none;
}

.about-second {
  margin-top: -92px;
}
.about-second .about-company__item-right {
  max-width: 600px;
}
.about-second .about-company__item-right .about-company__title {
  margin-bottom: 46px;
}
.about-second .about-company__item-right .about-second__desc-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 10px;
}
.about-second .about-company__item-right .about-second__desc-item span {
  min-width: 14px;
  margin-top: 5px;
}
.about-second .about-company__item-left__img-box img {
  max-height: none;
}

@media (max-width: 1047.98px) {
  .about-second {
    margin-top: -80px;
  }
}
@media (max-width: 537.98px) {
  .about-second {
    margin-top: -36px;
  }
}
.about-fourth .about-company__wrapper {
  gap: 93px;
}
.about-fourth .about-company__item-right {
  max-width: 570px;
}
.about-fourth .about-company__item-right .about-company__title {
  margin-bottom: 46px;
  padding-left: 0;
}
.about-fourth .about-company__item-left__img-box {
  position: relative;
  margin-left: 0px;
  border-top-left-radius: 215px;
  border-bottom-left-radius: 215px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.about-fourth .about-company__item-left__img-box img {
  max-height: 430px;
  width: unset;
}

@media (max-width: 570px) {
  .about-fourth .about-company__wrapper {
    gap: 20px;
  }
}
.about-reviews__wrapper .about-reviews__controls-switch {
  max-width: 302px;
  height: 56px;
  background-color: var(--bg-white);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2px;
  padding: 10px;
}
.about-reviews__wrapper .about-reviews__controls-switch__left, .about-reviews__wrapper .about-reviews__controls-switch__right {
  border: none;
  font-size: 0.625rem;
  line-height: var(--lh-110);
  text-transform: uppercase;
  font-weight: 500;
  min-height: 36px;
  background-color: var(--bg-F3F3F3);
  color: var(--color-black-text);
  padding: 12px 25px;
}
.about-reviews__wrapper .about-reviews__controls-switch__left {
  border-top-left-radius: 22px;
  border-bottom-left-radius: 22px;
}
.about-reviews__wrapper .about-reviews__controls-switch__right {
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
}
.about-reviews__wrapper .about-reviews__controls-switch__left.active, .about-reviews__wrapper .about-reviews__controls-switch__right.active {
  background-color: var(--bg-black);
  color: var(--color-white-text);
}
.about-reviews__wrapper .box .customer-reviews,
.about-reviews__wrapper .box .doctor-reviews {
  display: none;
}
.about-reviews__wrapper .box .customer-reviews.active,
.about-reviews__wrapper .box .doctor-reviews.active {
  display: block;
}

@media (max-width: 767.98px) {
  .about-reviews__wrapper .about-reviews__controls-switch__left,
  .about-reviews__wrapper .about-reviews__controls-switch__right {
    padding: 10px 16px;
  }
  .about-reviews .reviews-slider {
    margin-left: -30px;
  }
  .about-reviews {
    overflow: hidden;
  }
}
.legal-information {
  width: 100%;
}
.legal-information .color-13 {
  top: -80px;
  height: 952px;
  background-size: 100% 100%;
}
.legal-information__wrapper {
  flex-direction: column;
  box-shadow: 0 33px 145px rgba(0, 0, 0, 0), 0 13.7866px 60.5775px rgba(0, 0, 0, 0), 0 7.37098px 32.3876px rgba(0, 0, 0, 0), 0 4.13211px 18.1562px rgba(0, 0, 0, 0), 0 2.19453px 9.64265px rgba(0, 0, 0, 0.0282725), 0 0.91319px 4.01252px rgba(0, 0, 0, 0.0196802);
  background-color: unset;
  border-radius: 40px;
  padding: 27px 30px;
}
.legal-information__item {
  background-color: transparent;
  flex-direction: row;
  gap: 18px;
}
.legal-information__item-wrapper {
  width: 100%;
}
.legal-information__item-item {
  font-size: 0.875rem;
  line-height: var(--lh-140);
  text-decoration: none;
  border: 1px solid #00874D;
  border-radius: 20px;
  padding: 10px;
}
.legal-information__item-item:hover {
  color: white;
  background: radial-gradient(262.5% 557.03% at 88% 85.63%, #00874D 0%, #00874D 10.1%, #FFFF00 100%);
}
.legal-information__item-item:active {
  transform: translateY(2px);
}
.legal-information__item-item:last-child {
  margin-bottom: 0;
}
.legal-information__section {
  width: 100%;
}
.legal-information__section-inner {
  width: 100%;
  border-radius: 40px;
  padding: 40px;
  box-shadow: 12px 12px 60px 0px rgba(0, 0, 0, 0.1215686275);
}
.legal-information__section-title {
  display: block;
  width: 100%;
  margin: 0 0 25px 0;
  font-size: 1.5rem;
  color: var(--color-black-text);
  line-height: 140%;
}
.legal-information__block {
  width: 100%;
}
.legal-information__block-title {
  display: block;
  width: 100%;
  font-size: 0.875rem;
  color: #494949;
}
.legal-information__block-text {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 500;
  line-height: var(--lh-140);
  color: var(--color-black-text);
}
.legal-information__block-text span {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: var(--lh-140);
  color: var(--color-black-text);
}
.legal-information__block-text a {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: var(--lh-140);
  color: var(--color-black-text);
  text-decoration: none;
}
.legal-information__block-text a:hover {
  color: #107047;
}
.legal-information__block-link {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: var(--lh-140);
  color: var(--color-black-text);
}
.legal-information__block-link:hover {
  color: #107047;
  text-decoration: none;
}

@media (max-width: 468px) {
  .legal-information__nav-item {
    font-size: 0.75rem;
  }
  .legal-information__nav {
    gap: 12px;
  }
  .legal-information__block-text,
  .legal-information__block-link,
  .legal-information__block-text a {
    font-size: 1rem;
  }
  .legal-information__block-title {
    font-size: 0.875rem;
  }
  .legal-information__section-title {
    font-size: 1.375rem;
  }
  .legal-information__wrapper {
    padding: 27px 10px;
  }
  .legal-information .color-13 {
    background-size: 100% auto;
  }
}
@media (max-width: 992px) {
  .legal-information .color-13 {
    height: 958px;
  }
}
@media (max-width: 768px) {
  .legal-information .color-13 {
    height: 842px;
  }
}
.rating {
  display: inline-flex;
  gap: 4px;
  border-radius: 4px;
  background: #fff;
}

.star::before {
  content: url("/static/corp/img/new/svg/about/star.svg");
  width: 20px;
  height: 20px;
  display: inline-block;
  filter: grayscale(1); /* «серый» вариант при одном SVG */
}

/* активные */
.rating-1 .star:nth-child(-n+1)::before,
.rating-2 .star:nth-child(-n+2)::before,
.rating-3 .star:nth-child(-n+3)::before,
.rating-4 .star:nth-child(-n+4)::before,
.rating-5 .star:nth-child(-n+5)::before {
  filter: none;
}

.vacancy__wrapper {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.vacancy__cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.vacancy__cards-card {
  display: flex;
  flex-direction: row;
  background-color: var(--bg-F3F3F3);
  border-radius: 40px;
  width: 100%;
  padding: 10px;
  gap: 30px;
}
.vacancy__cards-card__info {
  background-color: var(--bg-white);
  display: flex;
  flex-direction: column;
  align-items: left;
  border-radius: 30px;
  width: 360px;
  min-width: 360px;
  max-height: 208px;
  padding: 24px 30px 22px 30px;
  gap: 10px;
}
.vacancy__cards-card__info-price {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.vacancy__cards-card__info-price span {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: var(--lh-140);
  color: var(--color-00874D-text);
}
.vacancy__cards-card__info-price .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-F3F3F3);
  padding: 3px 8px;
  text-transform: uppercase;
  color: var(--color-black-text);
  font-size: 0.625rem;
  font-weight: 600;
  line-height: var(--lh-110);
  border-radius: 22px;
}
.vacancy__cards-card__info-name {
  margin-bottom: 20px;
}
.vacancy__cards-card__info-name h4 {
  font-size: 1.5rem;
  line-height: var(--lh-120);
  font-weight: 700;
  color: var(--color-black-text);
}
.vacancy__cards-card__info-name button {
  height: 36px;
  min-height: 36px;
  width: 130px;
  font-size: 0.625rem;
}
.vacancy__cards-card__desc {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 21px 30px 15px 0;
  align-items: flex-start;
}
.vacancy__cards-card__desc h4 {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: var(--lh-140);
  color: var(--color-00874D-text);
  margin: 0;
}
.vacancy__cards-card__desc-offer-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vacancy__cards-card__desc-offer-box h6 {
  font-size: 1rem;
  font-weight: 600;
  line-height: var(--lh-140);
  margin: 0;
  color: var(--color-black-text);
}
.vacancy__cards-card__desc-offer-box ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-height: 64px;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  padding: 0;
}
.vacancy__cards-card__desc-offer-box ul li {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: var(--lh-140);
  color: var(--color-black-text);
}
.vacancy__cards-card__desc-offer-box .vacancy-content {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: var(--lh-140);
  color: var(--color-black-text);
}
.vacancy__cards-card__desc-expand-btn {
  border: none;
  background-color: transparent;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: var(--lh-110);
  text-transform: uppercase;
  color: var(--color-00874D-text);
  position: relative;
  padding-left: 18px;
  margin-top: -18px;
}
.vacancy__cards-card__desc-expand-btn::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  background-size: 100%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-image: url(../../img/new/svg/header/carret-down.svg);
}

@media (max-width: 767.98px) {
  .vacancy__cards-card {
    flex-direction: column;
    gap: 0;
  }
  .vacancy__cards-card__info {
    width: 100%;
  }
  .vacancy__cards-card__info-name button {
    min-height: 60px !important;
  }
  .vacancy__cards-card__info-name h4 {
    font-size: 1.375rem;
  }
}
@media (min-width: 767.98px) {
  .vacancy .color-10 {
    top: 180px;
  }
}
html.theme-black .vacancy__cards-card,
html.theme-black .vacancy__cards-card__info {
  border: 1px solid white;
}

.services-areas {
  top: -27px;
}
.services-areas__cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}
.services-areas__cards-link {
  text-decoration: none;
}
.services-areas__cards-card {
  display: flex;
  flex-direction: row;
  height: 240px;
  width: 570px;
  background-color: var(--bg-white);
  border-radius: 40px;
  box-shadow: 12px 12px 60px 0px rgba(0, 0, 0, 0.1215686275);
  overflow: hidden;
}
.services-areas__cards-card__info {
  position: relative;
  z-index: 1;
  padding: 10px 10px 20px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.services-areas__cards-card__info-count {
  position: absolute;
  z-index: -1;
  top: -1px;
  left: 30px;
  font-size: 136px;
  line-height: 70%;
  font-weight: 600;
  color: #EBEBEB;
}
.services-areas__cards-card__info-title {
  font-size: 1.25rem;
  line-height: var(--lh-120);
  font-weight: 600;
  color: var(--color-black-text);
}
.services-areas__cards-card__info-desc {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: var(--lh-140);
  color: var(--color-9C9C9C-text);
}
.services-areas__cards-card__img {
  width: 238px;
  border-radius: 40px;
  height: 100%;
  overflow: hidden;
}
.services-areas__cards-card__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (prefers-color-scheme: dark) {
  .services-areas__cards-card__info-count {
    color: #3b3b3b;
    opacity: 0.2;
  }
}
@media (max-width: 1169.98px) {
  .services-areas__cards {
    flex-direction: column;
  }
  .services-areas__cards-card {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .services-areas__cards-card {
    flex-direction: column;
    height: 100%;
  }
  .services-areas__cards-card__img {
    width: 100%;
  }
}
html.theme-black .services-areas__cards-card {
  border: 1px solid white;
}

.service-reaserch-form .form-single {
  background-color: var(--bg-F3F3F3);
  box-shadow: 12px 12px 60px rgba(255, 255, 255, 0.12);
}
.service-reaserch-form .form-single__field {
  background-color: var(--bg-white);
}
.service-reaserch-form .color-8 {
  top: -512px;
  opacity: 0.8;
}
.service-reaserch-form form {
  z-index: unset;
}
.service-reaserch-form .form-single__wrap {
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  .service-reaserch-form .form-single__title {
    font-size: 28px;
  }
  .service-reaserch-form .form-single {
    padding: 20px;
  }
  .service-reaserch-form .color-8 {
    top: -170px;
  }
}
.view-service-banner {
  position: relative;
  top: -27px;
}
.view-service-banner__wrapper {
  display: flex;
  flex-direction: row;
  margin-top: 36px;
  gap: 86px;
}
.view-service-banner__title {
  line-height: var(--lh-120) !important;
}
.view-service-banner__item-right__img-box {
  position: relative;
  width: 636px;
  height: 340px;
  margin-left: 10px;
}
.view-service-banner__item-right__img-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 215px;
  border-bottom-left-radius: 215px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.view-service-banner__item-left {
  max-width: 584px;
  min-width: 584px;
}
.view-service-banner__item-left__desc {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.view-service-banner__item-left__desc p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: var(--lh-140);
  color: var(--color-black-text);
}
.view-service-banner__buttons {
  gap: 20px;
}

@media (max-width: 991.98px) {
  .view-service-banner__item-left {
    min-width: 450px;
  }
  .view-service-banner__item-right__img-box img {
    width: auto;
  }
}
@media (max-width: 767.98px) {
  .view-service-banner__wrapper {
    flex-direction: column;
    gap: 56px;
  }
  .view-service-banner__item-left {
    min-width: 360px;
  }
  .view-service-banner__item-left__desc {
    gap: 14px;
  }
  .view-service-banner__item-left__desc p {
    font-size: 1rem;
  }
  .view-service-banner__item-right__img-box {
    width: 100%;
  }
  .view-service-banner__item-right__img-box img {
    width: 100%;
  }
  .view-service-banner__buttons .btn-2 {
    font-size: 0.625rem;
    padding: 0 14px;
    width: 210px;
  }
  .view-service-banner__buttons .btn-2.btn-arrow-right::after {
    margin-left: 10px;
  }
  .view-service-banner__buttons .btn-3 {
    font-size: 0.625rem;
  }
}
.view-service-price .color-8 {
  top: -184px;
}
.view-service-price .price-tab {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.view-service-price .price-tab__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px 22px 16px 57px;
  color: var(--color-black-text);
  position: relative;
  cursor: pointer;
  background-color: var(--bg-F3F3F3);
  border-radius: 30px;
  max-width: 700px;
}
.view-service-price .price-tab__item__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex: 1;
  gap: 17px;
}
.view-service-price .price-tab__item__content-price {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.view-service-price .price-tab__item__content-name {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.view-service-price .price-tab__item__content-name p {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: var(--lh-120);
  color: var(--color-black-text);
  margin: 0;
}
.view-service-price .price-tab__item__content-name span {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: var(--lh-140);
  color: var(--color-9C9C9C-text);
}
.view-service-price .price-tab__item__content-price__price {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: var(--lh-120);
  color: var(--color-black-text);
  white-space: nowrap;
}
.view-service-price .price-tab__item__content-price__nomenclature {
  font-size: 0.5625rem;
  font-weight: 500;
  line-height: var(--lh-130);
  color: var(--color-9C9C9C-text);
  white-space: nowrap;
}
.view-service-price .price-tab__item__count {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: radial-gradient(262.5% 557.03% at 88% 85.63%, #00874D 0%, #00874D 10.1%, #FFFF00 100%);
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.view-service-price .price-tab__item__block {
  position: absolute;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  background-repeat: no-repeat;
  border: 2px solid #0bb366;
  border-radius: 7px;
}
.view-service-price .price-tab__item input {
  visibility: hidden;
  width: 0;
  height: 0;
  position: absolute;
}
.view-service-price .price-tab__item input:checked + .price-tab__item-checkbox {
  border: none;
  background: radial-gradient(262.5% 557.03% at 88% 85.63%, #00874D 0%, #00874D 10.1%, #FFFF00 100%);
}
.view-service-price .price-tab__item input:checked + .price-tab__item-checkbox svg {
  display: block;
}
.view-service-price .price-tab__item-checkbox {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid #B2B3C3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s linear all;
  -moz-transition: 0.3s linear all;
  -o-transition: 0.3s linear all;
  transition: 0.3s linear all;
}
.view-service-price .price-tab__item-checkbox svg {
  width: 20px;
  display: none;
}
.view-service-price .price-tab__item.active {
  background-color: black;
}
.view-service-price .price-tab__item.active .price-tab__item__content-name p,
.view-service-price .price-tab__item.active .price-tab__item__content-name span,
.view-service-price .price-tab__item.active .price-tab__item__content-price__price {
  color: white;
}
.view-service-price__wripper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.view-service-price__category__list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.view-service-price__total {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.view-service-price__total-box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  border-bottom: 1px solid #EBEBEB;
  padding-bottom: 17px;
}
.view-service-price__total-desc {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: var(--lh-140);
  color: var(--color-black-text);
}
.view-service-price__total-price {
  font-size: 1.625rem;
  font-weight: 800;
  line-height: var(--lh-120);
  color: var(--color-black-text);
}
.view-service-price__title {
  margin-bottom: 25px;
}
.view-service-price__info {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: var(--lh-140);
  margin-bottom: 36px;
  color: var(--color-black-text);
}
.view-service-price__info::before {
  content: "";
  background: url("/static/corp/img/new/svg/plus-circle.svg");
  width: 20px;
  height: 20px;
  margin-right: 10px;
  display: inline-block;
  position: relative;
  left: 0;
  top: 5px;
}
.view-service-price .diagnostic-area {
  max-width: 370px;
  padding-top: 66px;
}
.view-service-price .diagnostic-area-box {
  position: relative;
  margin-bottom: 10px;
}
.view-service-price .diagnostic-area-box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  transition-duration: 0.15s;
  opacity: 0;
  visibility: hidden;
}
.view-service-price .diagnostic-area-box .price-tab__item__count.hover, .view-service-price .diagnostic-area-box.select .price-tab__item__count {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
}
.view-service-price .diagnostic-area-box .price-tab__item__count.hover.hover-item,
.view-service-price .diagnostic-area-box .price-tab__item__count.selected-item {
  background: radial-gradient(262.5% 557.03% at 88% 85.63%, #00874D 0%, #00874D 10.1%, #FFFF00 100%);
}
.view-service-price .diagnostic-area-box .price-tab__item__block.selected-item,
.view-service-price .diagnostic-area-box .price-tab__item__block.hover.hover-item {
  opacity: 1;
  visibility: visible;
}
.view-service-price .diagnostic-area-box.hover::before, .view-service-price .diagnostic-area-box.select::before {
  opacity: 1;
  visibility: visible;
}
.view-service-price .diagnostic-area .jaw-box {
  height: 110px;
  width: auto;
  position: relative;
}
.view-service-price .diagnostic-area .jaw-box .jaw__block {
  border: 2px solid #0bb366;
  border-radius: 5px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.view-service-price .diagnostic-area .jaw-box .jaw__block.hover-item,
.view-service-price .diagnostic-area .jaw-box .jaw__block.selected-item {
  opacity: 1;
  visibility: visible;
}
.view-service-price .diagnostic-area .jaw-box .jaw__block-lower-three {
  width: 227px;
  height: 67px;
  left: 160px;
  top: 45px;
}
.view-service-price .diagnostic-area .jaw-box .jaw__block-lower-four {
  width: 235px;
  height: 67px;
  left: -18px;
  top: 45px;
}
.view-service-price .diagnostic-area .jaw-box .jaw__block-lower-all {
  width: 100%;
  height: 100%;
}
.view-service-price .diagnostic-area__title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: var(--lh-120);
  margin-bottom: 32px;
  color: var(--color-black-text);
}
.view-service-price .diagnostic-area_one {
  top: 374px;
  left: 184px;
  width: 28px;
  height: 28px;
  border-top-left-radius: 9px;
  border-bottom-right-radius: 9px;
}
.view-service-price .diagnostic-area_block-one {
  top: 374px;
  left: 184px;
  width: 105px;
  height: 45px;
}
.view-service-price .diagnostic-area_two {
  top: 374px;
  left: 81px;
  width: 28px;
  height: 28px;
  border-top-left-radius: 9px;
  border-bottom-right-radius: 9px;
}
.view-service-price .diagnostic-area_block-two {
  top: 374px;
  left: 81px;
  width: 105px;
  height: 45px;
}
.view-service-price .diagnostic-area_three {
  top: 294px;
  left: 70px;
  width: 28px;
  height: 28px;
  border-top-left-radius: 9px;
  border-bottom-right-radius: 9px;
}
.view-service-price .diagnostic-area_block-three {
  top: 294px;
  left: 70px;
  width: 227px;
  height: 136px;
  border-radius: 8px;
}
.view-service-price .diagnostic-area_four {
  top: 281px;
  left: 12px;
  width: 28px;
  height: 28px;
  border-top-left-radius: 9px;
  border-bottom-right-radius: 9px;
}
.view-service-price .diagnostic-area_block-four {
  top: 281px;
  left: 12px;
  width: 347px;
  height: 159px;
  border-radius: 10px;
}
.view-service-price .diagnostic-area_five {
  top: 163px;
  left: 0px;
  border-top-left-radius: 18px;
  border-bottom-right-radius: 18px;
}
.view-service-price .diagnostic-area_block-five {
  top: 163px;
  left: 0px;
  width: 370px;
  height: 288px;
  border-radius: 20px;
}
.view-service-price .faq {
  -webkit-box-shadow: 0 33px 145px rgba(0, 0, 0, 0), 0 13.7866px 60.5775px rgba(0, 0, 0, 0.0503198), 0 7.37098px 32.3876px rgba(0, 0, 0, 0.0417275), 0 4.13211px 18.1562px rgba(0, 0, 0, 0.035), 0 2.19453px 9.64265px rgba(0, 0, 0, 0.0282725), 0 0.91319px 4.01252px rgba(0, 0, 0, 0.0196802);
  box-shadow: 0 33px 145px rgba(0, 0, 0, 0), 0 13.7866px 60.5775px rgba(0, 0, 0, 0), 0 7.37098px 32.3876px rgba(0, 0, 0, 0), 0 4.13211px 18.1562px rgba(0, 0, 0, 0), 0 2.19453px 9.64265px rgba(0, 0, 0, 0.0282725), 0 0.91319px 4.01252px rgba(0, 0, 0, 0.0196802);
  background-color: unset;
}

@media (max-width: 991.98px) {
  .view-service-price .diagnostic-area {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .view-service-price__total .btn-2 {
    height: 60px !important;
  }
}
@media (max-width: 448.98px) {
  .view-service-price .price-tab__item__content {
    flex-wrap: wrap;
  }
  .view-service-price .price-tab__item__content-name p {
    font-size: 1.125rem;
  }
}
html.theme-black .view-service-price .price-tab__item {
  border: 1px solid white;
}

html.theme-black .view-service-price .diagnostic-area img {
  background-color: white;
}

.view-service-reaserch-form .color-10 {
  top: -407px;
}

.view-service-promo .color-9 {
  top: -550px;
}

.promo-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bg-green-gradient);
  border-radius: 40px;
  min-height: 176px;
  width: 100%;
  padding: 30px;
  overflow: hidden;
}
.promo-banner__deadline {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.promo-banner__deadline-text {
  font-size: 0.75rem;
  line-height: var(--lh-120);
  font-weight: 400;
  color: white;
  opacity: 0.5;
}
.promo-banner__desc {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.promo-banner__desc-text {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: var(--lh-120);
  color: white;
  max-width: 613px;
  margin: 0;
}
.promo-banner__desc a {
  background-color: var(--bg-white);
}
.promo-banner__badge {
  width: 60px;
  min-height: 18px;
  background-color: white;
  text-transform: uppercase;
  font-size: 0.625rem;
  line-height: var(--lh-110);
  font-weight: 500;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-banner__img {
  background-image: url("/static/corp/img/new/promo-image.png");
  width: 313px;
  background-repeat: no-repeat;
  height: 100%;
  position: absolute;
  top: 0;
  right: -2px;
}

@media (max-width: 1199.98px) {
  .promo-banner__desc-text {
    font-size: 1.5rem;
    max-width: 480px;
  }
}
@media (max-width: 991.98px) {
  .promo-banner__desc-text {
    font-size: 1.125rem;
    max-width: 420px;
  }
  .promo-banner__desc {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .promo-banner__desc button {
    height: 42px !important;
  }
  .promo-banner {
    gap: 16px;
  }
  .promo-banner .color-12 {
    right: -180px;
  }
}
@media (max-width: 767.98px) {
  .promo-banner .color-12,
  .promo-banner__img {
    display: none;
  }
  .promo-banner__desc-text {
    font-size: 1rem;
  }
  .promo-banner__desc {
    align-items: unset;
    gap: 9px;
  }
  .promo-banner__desc button {
    height: 40px !important;
  }
  .promo-banner {
    gap: 12px;
  }
}
html.theme-black .promo-banner {
  border: 1px solid white;
}

.doctors-main-banner {
  position: relative;
  top: -27px;
  overflow: hidden;
}
.doctors-main-banner .color-11 {
  background-size: 100% 100%;
}
.doctors-main-banner__wrapper {
  display: flex;
  flex-direction: row;
  gap: 65px;
  padding-top: 36px;
}
.doctors-main-banner__metrics {
  gap: 90px;
  justify-content: center;
}
.doctors-main-banner__item-left {
  max-width: 604px;
}
.doctors-main-banner__item-left__desc p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: var(--lh-140);
  color: var(--color-black-text);
}
.doctors-main-banner__item-right {
  width: 636px;
  height: 340px;
  min-width: 570px;
}
.doctors-main-banner__item-right__img-box {
  width: 100%;
  height: 100%;
  position: relative;
  margin-left: 60px;
}
.doctors-main-banner__item-right__img-box__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-top-left-radius: 200px;
  border-bottom-left-radius: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doctors-main-banner__item-right__img-box::before {
  content: "";
  display: block;
}
.doctors-main-banner__item-right__img-box img {
  width: 100%;
}

@media (max-width: 991.98px) {
  .doctors-main-banner__item-left {
    max-width: 100%;
  }
  .doctors-main-banner__item-right__img-box {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .doctors-main-banner {
    top: -36px;
  }
  .doctors-main-banner__wrapper {
    flex-direction: column;
    gap: 36px;
  }
  .dflex.doctors-main-banner__metrics {
    gap: 40px;
  }
  .doctors-main-banner__item-left {
    order: 2;
  }
  .doctors-main-banner__item-right__img-box {
    height: 350px;
  }
  .doctors-main-banner__item-right__img-box img {
    object-fit: cover;
    width: 100%;
  }
}
@media (max-width: 496.98px) {
  .dflex.doctors-main-banner__metrics {
    flex-wrap: wrap;
  }
  .doctors-main-banner {
    top: -54px;
  }
  .doctors-main-banner__wrapper {
    padding-top: 54px;
  }
  .doctors-main-banner__item-right {
    width: 470px;
    height: 320px;
    min-width: 460px;
  }
  .doctors-main-banner__item-right__img-box {
    height: 100%;
    margin-left: 0px;
  }
}
.doctors-partner-form .form-single {
  background-color: var(--bg-F3F3F3);
  box-shadow: 12px 12px 60px rgba(255, 255, 255, 0.12);
}

.doctors-partner-form .form-single__field {
  background-color: var(--bg-white);
}

.doctors-partner-form .color-8 {
  top: -400px;
}

.doctors-partner-form .btn-2 {
  width: 105% !important;
  padding: 0 30px !important;
}

@media (max-width: 768px) {
  .doctors-partner-form .form-single__title {
    font-size: 1.25rem;
  }
  .doctors-partner-form .form-single {
    padding: 20px;
  }
  .doctors-partner-form .form-single__field {
    width: 100%;
  }
  .doctors-partner-form .form-single__submit {
    padding-left: 0px;
  }
  .doctors-partner-form .form-single .btn-2 {
    width: 100%;
    min-height: 36px;
    height: 50px;
    min-height: 50px;
    font-size: 0.875rem;
  }
  .doctors-partner-form .color-8 {
    top: -164px;
  }
  .doctors-partner-form {
    margin-top: 0px !important;
  }
  .doctors-partner-form .form-single__wrap {
    margin-top: 18px;
  }
}
.service-list__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
}
.service-list__item {
  background: var(--bg-white);
  box-shadow: 12px 12px 60px 0px rgba(0, 0, 0, 0.1215686275);
  border-radius: 40px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 30px;
  color: var(--color-black-text);
  width: 370px;
}
.service-list__item-title {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: var(--lh-120);
  color: var(--color-black-text);
}
.service-list__img {
  height: 100%;
  display: flex;
  align-items: flex-start;
}
.service-list__info {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.service-list__header-box {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.service-list__header-box span {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: var(--lh-140);
  color: var(--color-9C9C9C-text);
}
.service-list__desc {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: var(--lh-140);
  color: var(--color-9C9C9C-text);
}
.service-list__desc span {
  font-size: 0.75rem;
  line-height: var(--lh-120);
}

@media (max-width: 991.98px) {
  .service-list__item {
    width: 100%;
  }
}
html.theme-black .service-list__item {
  border: 1px solid white;
}

.doctors-reviews__title {
  margin: 0;
}
.doctors-reviews__box {
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .doctors-reviews .reviews-slider {
    margin-left: -30px;
  }
}
.reviews-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reviews-card__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.reviews-card__header-quote {
  background-image: url("/static/corp/img/new/svg/about/quote.svg");
  background-repeat: no-repeat;
  height: 25px;
  width: 38px;
}
.reviews-card__info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.reviews-card__info-name {
  font-size: 0.875rem;
  line-height: var(--lh-120);
  font-weight: 600;
  color: var(--color-black-text);
}
.reviews-card__info-data {
  font-size: 0.625rem;
  line-height: var(--lh-140);
  font-weight: 400;
  color: var(--color-9C9C9C-text);
}
.reviews-card__desc {
  font-size: 0.875rem;
  line-height: var(--lh-140);
  font-weight: 400;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 10; /* пример: примерно сколько строк влезает в 204px */
  -webkit-box-orient: vertical;
  color: var(--color-black-text);
  padding-top: 4px;
}
.reviews-card__desc-button {
  display: none;
  border: none;
  background-color: transparent;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: var(--lh-110);
  color: var(--color-00874D-text);
  text-align: justify;
  margin-top: -6px;
  padding: 0;
  text-transform: uppercase;
}
.reviews-card__desc-button.show {
  display: block;
}

.reviews-slider {
  margin-left: -51px;
  padding: 40px 50px;
}
.reviews-slider .switch-block-swiper-slide {
  height: 370px;
}

html:is(.font-normal, .font-big, .ls-normal, .ls-big, .lh-normal) .reviews-slider .switch-block-swiper-slide {
  min-height: 370px;
  height: max-content;
}

.tabs {
  max-width: 302px;
  min-height: 56px;
  background-color: white;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2px;
  padding: 10px;
}
.tabs__item {
  border: none;
  font-size: 0.625rem;
  line-height: var(--lh-110);
  text-transform: uppercase;
  font-weight: 500;
  min-height: 36px;
  background-color: #F3F3F3;
  color: black;
  padding: 12px 18px;
  flex: 1;
  cursor: pointer;
}
.tabs__item-left {
  border-top-left-radius: 22px;
  border-bottom-left-radius: 22px;
}
.tabs__item-right {
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
}
.tabs__item-left.active, .tabs__item-right.active {
  background-color: black;
  color: white;
}

.reviews {
  position: relative;
  top: -27px;
}
.reviews__wrapper .box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
.reviews__wrapper .box .btn-3 {
  height: 54px !important;
}
.reviews__wrapper .box .btn-3.btn-arrow-right::after {
  transform: rotate(90deg);
}
.reviews__wrapper .box .btn-arrow-right:hover::after {
  transform: translateX(0) !important;
  transform: translateY(4px);
}
.reviews__content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  min-height: 220px;
  height: 100%;
}
.reviews__content.customer-reviews, .reviews__content.doctor-reviews {
  display: none;
}
.reviews__content.customer-reviews.active, .reviews__content.doctor-reviews.active {
  display: flex;
}
.reviews__content .reviews-block__wrapper {
  transition-property: transform, -webkit-transform;
  height: 370px;
}
.reviews__content .reviews-block__wrapper .reviews-block__wrapper-box {
  height: 100%;
}
.reviews__content .reviews-block {
  width: 370px;
  height: 100%;
  border-radius: 40px;
  background-color: var(--bg-white);
  box-shadow: 12px 12px 60px 0px rgba(0, 0, 0, 0.1215686275);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.reviews__plug {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: #9C9C9C;
}

@media (max-width: 767.98px) {
  .reviews__plug {
    font-size: 34px;
  }
}
html.theme-black .reviews__content .reviews-block {
  border: 1px solid white;
}

.reviews-reaserch-form .form-single {
  background-color: var(--bg-F3F3F3);
  box-shadow: 12px 12px 60px rgba(255, 255, 255, 0.12);
}
.reviews-reaserch-form .form-single__field {
  background-color: var(--bg-white);
}
.reviews-reaserch-form .color-8 {
  top: -252px;
  opacity: 0.8;
  height: 903px;
  width: 906px;
}
.reviews-reaserch-form form {
  z-index: unset;
}
.reviews-reaserch-form .form-single__wrap {
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  .reviews-reaserch-form .form-single__title {
    font-size: 28px;
  }
  .reviews-reaserch-form .form-single {
    padding: 20px;
  }
}
.news-events {
  position: relative;
  top: -27px;
}
.news-events .color-8 {
  top: 100px;
}
.news-events__wrapper .box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
.news-events__wrapper .box .btn-3 {
  height: 54px !important;
}
.news-events__wrapper .box .btn-3.btn-arrow-right::after {
  transform: rotate(90deg);
}
.news-events__wrapper .box .btn-arrow-right:hover::after {
  transform: translateX(0) !important;
  transform: translateY(4px);
}
.news-events__wrapper .tabs__item {
  text-decoration: none;
  text-align: center;
}
.news-events__wrapper .tabs__item-left {
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
}
.news-events__content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}
.news-events__card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 370px;
}
.news-events__card-img {
  width: 100%;
  height: 196px;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}
.news-events__card-img .green-btn {
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.news-events__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-events__card-desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-events__card__title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: var(--lh-120);
  color: var(--color-black-text);
}
.news-events__card__date {
  font-size: 0.625rem;
  font-weight: 400;
  line-height: var(--lh-140);
  color: var(--color-9C9C9C-text);
}

@media (max-width: 991.98px) {
  .news-events__card {
    width: 100%;
  }
}
.news-events-reaserch-form .form-single {
  background-color: var(--bg-F3F3F3);
  box-shadow: 12px 12px 60px rgba(255, 255, 255, 0.12);
}
.news-events-reaserch-form .form-single__field {
  background-color: var(--bg-white);
}
.news-events-reaserch-form .color-8 {
  top: -252px;
  opacity: 0.8;
  height: 903px;
  width: 906px;
}
.news-events-reaserch-form form {
  z-index: unset;
}
.news-events-reaserch-form .form-single__wrap {
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  .news-events-reaserch-form .form-single__title {
    font-size: 1.75rem;
  }
  .news-events-reaserch-form .form-single {
    padding: 20px;
  }
}
.green-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(262.5% 557.03% at 50% 85.63%, #00874D 0%, #00874D 10.1%, #FFFF00 100%);
}
.green-btn .arrow-up {
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-image: url("/static/corp/img/new/svg/arrow-up-right.svg");
}

.new-event {
  position: relative;
  top: -27px;
}
.new-event__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 20px;
  gap: 140px;
}
.new-event__content {
  width: 770px;
  display: flex;
  flex-direction: column;
}
.new-event__content .s-title {
  margin: 14px 0 36px 0;
}
.new-event__content p {
  font-size: 1.25rem;
  line-height: var(--lh-140);
  font-weight: 400;
  color: var(--color-black-text);
}
.new-event__img {
  width: 100%;
  height: 408px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 12px 12px 60px 0px rgba(0, 0, 0, 0.1215686275);
  position: relative;
}
.new-event__img img {
  width: 100%;
  height: 100%;
  object-fit: none;
}
.new-event__img-socials {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
}
.new-event__img-socials .socials-circle {
  background-color: rgba(0, 0, 0, 0.1019607843);
  backdrop-filter: blur(10px);
}
.new-event__desc {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: var(--lh-140);
  color: var(--color-black-text);
}
.new-event__desc p {
  color: inherit;
}
.new-event__date {
  font-size: 0.625rem;
  font-weight: 400;
  line-height: var(--lh-140);
  color: var(--color-9C9C9C-text);
  margin-top: 26px;
}
.new-event__shared {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.new-event__shared span {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: var(--lh-120);
  color: var(--color-black-text);
}
.new-event__shared-socials {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.new-event__recommends {
  display: flex;
  flex-direction: column;
  gap: 74px;
}
.new-event__recommends-card {
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}
.new-event__recommends-card__img {
  width: 100%;
  height: 138px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 12px 12px 60px 0px rgba(0, 0, 0, 0.1215686275);
}
.new-event__recommends-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.new-event__recommends-card__desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.new-event__recommends-card__date {
  font-size: 0.625rem;
  font-weight: 400;
  line-height: var(--lh-140);
  color: var(--color-9C9C9C-text);
}
.new-event__recommends-card__title {
  font-size: 1.25rem;
  line-height: var(--lh-120);
  font-weight: 600;
  color: var(--color-black-text);
}

@media (max-width: 1170.98px) {
  .new-event__content {
    width: 100%;
  }
  .new-event__wrapper {
    flex-direction: column;
    gap: 100px;
  }
  .new-event__recommends {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767.98px) {
  .new-event__recommends-card {
    width: 100%;
  }
  .new-event__wrapper {
    margin-top: 36px;
  }
}
.new-event-reaserch-form .form-single {
  background-color: var(--bg-F3F3F3);
  box-shadow: 12px 12px 60px rgba(255, 255, 255, 0.12);
}
.new-event-reaserch-form .form-single__field {
  background-color: var(--bg-white);
}
.new-event-reaserch-form .color-8 {
  top: -252px;
  opacity: 0.8;
  height: 903px;
  width: 906px;
}
.new-event-reaserch-form form {
  z-index: unset;
}
.new-event-reaserch-form .form-single__wrap {
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  .new-event-reaserch-form .form-single__title {
    font-size: 1.75rem;
  }
  .new-event-reaserch-form .form-single {
    padding: 20px;
  }
}
.socials-circle {
  width: 44px;
  height: 44px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F3F3F3;
}
.socials-circle a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.socials-circle img {
  width: 16px;
  height: 16px;
}

.vacancies {
  position: relative;
  top: -27px;
}
.vacancies .color-8 {
  top: 190px;
}
.vacancies .btn-3 {
  height: 54px;
}

.vacancies-reaserch-form .form-single {
  background-color: var(--bg-F3F3F3);
  box-shadow: 12px 12px 60px rgba(255, 255, 255, 0.12);
}
.vacancies-reaserch-form .form-single__field {
  background-color: var(--bg-white);
}
.vacancies-reaserch-form .color-8 {
  top: -252px;
  opacity: 0.8;
  height: 903px;
  width: 906px;
}
.vacancies-reaserch-form form {
  z-index: unset;
}
.vacancies-reaserch-form .form-single__wrap {
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  .vacancies-reaserch-form .form-single__title {
    font-size: 28px;
  }
  .vacancies-reaserch-form .form-single {
    padding: 20px;
  }
}
.contacts-page {
  position: relative;
  top: -27px;
}
.contacts-page__wrapper .s-title {
  margin: 26px 0 50px 0;
}
.contacts-page-reaserch-form .form-single {
  background-color: var(--bg-F3F3F3);
  box-shadow: 12px 12px 60px rgba(255, 255, 255, 0.12);
}
.contacts-page-reaserch-form .form-single__field {
  background-color: var(--bg-white);
}
.contacts-page-reaserch-form .color-8 {
  top: -512px;
  opacity: 0.8;
}
.contacts-page-reaserch-form form {
  z-index: unset;
}
.contacts-page-reaserch-form .form-single__wrap {
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  .contacts-page-reaserch-form .form-single__title {
    font-size: 28px;
  }
  .contacts-page-reaserch-form .form-single {
    padding: 20px;
  }
  .contacts-page-reaserch-form .color-8 {
    top: -188px;
  }
}
.patients-banner {
  position: relative;
  top: -27px;
}
.patients-banner__box {
  overflow: hidden;
}
.patients-banner__wrapper {
  display: flex;
  flex-direction: row;
  margin-top: 36px;
  gap: 86px;
}
.patients-banner__title {
  line-height: var(--lh-120) !important;
}
.patients-banner__item-right {
  width: 636px;
  height: 340px;
  min-width: 570px;
}
.patients-banner__item-right__img-box {
  width: 100%;
  height: 100%;
  position: relative;
  margin-left: 30px;
}
.patients-banner__item-right__img-box::before {
  content: "";
  display: block;
}
.patients-banner__item-right__img-box__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-top-left-radius: 215px;
  border-bottom-left-radius: 215px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.patients-banner__item-right__img-box img {
  width: 100%;
}
.patients-banner__item-left {
  max-width: 584px;
  min-width: 584px;
}
.patients-banner__item-left__desc {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.patients-banner__item-left__desc p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: var(--lh-140);
  color: var(--color-black-text);
}
.patients-banner__buttons {
  gap: 20px;
}

@media (max-width: 1199.98px) {
  .patients-banner__item-right__img-box {
    margin-left: -65px;
    width: 500px;
  }
}
@media (max-width: 991.98px) {
  .patients-banner__item-left {
    min-width: 450px;
  }
}
@media (max-width: 767.98px) {
  .patients-banner__wrapper {
    flex-direction: column;
    gap: 56px;
  }
  .patients-banner__item-left {
    min-width: 360px;
  }
  .patients-banner__item-left__desc {
    gap: 14px;
  }
  .patients-banner__item-left__desc p {
    font-size: 1rem;
  }
  .patients-banner__item-right__img-box {
    margin-left: 0;
    margin-right: -10px;
  }
  .patients-banner__buttons .btn-2 {
    font-size: 0.625rem;
    padding: 0 14px;
    width: 210px;
  }
  .patients-banner__buttons .btn-2.btn-arrow-right::after {
    margin-left: 10px;
  }
  .patients-banner__buttons .btn-3 {
    font-size: 0.625rem;
  }
}
.patients-reaserch-form .form-single {
  background-color: var(--bg-F3F3F3);
  box-shadow: 12px 12px 60px rgba(255, 255, 255, 0.12);
}
.patients-reaserch-form .form-single__field {
  background-color: var(--bg-white);
}
.patients-reaserch-form .color-8 {
  top: -252px;
  opacity: 0.8;
  height: 903px;
  width: 906px;
}
.patients-reaserch-form form {
  z-index: unset;
}
.patients-reaserch-form .form-single__wrap {
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  .patients-reaserch-form .form-single__title {
    font-size: 1.75rem;
  }
  .patients-reaserch-form .form-single {
    padding: 20px;
  }
}
.patients-about-service {
  overflow: hidden;
}
.patients-about-service__wrapper {
  display: flex;
  flex-direction: row;
  gap: 65px;
  padding-top: 36px;
}
.patients-about-service__title {
  margin-bottom: 42px;
}
.patients-about-service__metrics {
  gap: 90px;
  justify-content: flex-start;
}
.patients-about-service__item-right {
  max-width: 570px;
}
.patients-about-service__item-right__desc p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: var(--lh-140);
  color: var(--color-black-text);
}
.patients-about-service__item-left__img-box {
  position: relative;
  margin-left: -135px;
}
.patients-about-service__item-left__img-box img {
  width: 100%;
  height: 100%;
  max-height: 374px;
  object-fit: cover;
  border-top-right-radius: 200px;
  border-bottom-right-radius: 200px;
}

@media (max-width: 991.98px) {
  .patients-about-service__item-right {
    max-width: 400px;
  }
}
@media (max-width: 767.98px) {
  .patients-about-service__wrapper {
    flex-direction: column;
    gap: 36px;
  }
  .dflex.patients-about-service__metrics {
    gap: 40px;
  }
  .patients-about-service__item-right {
    order: 2;
  }
}
@media (max-width: 496.98px) {
  .dflex.patients-about-service__metrics {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.patients-choose .patients-slider {
  margin-left: -66px;
  margin-right: -160px;
  padding: 60px 0 120px 60px;
}
.patients-choose .color-13 {
  top: -190px;
}
.patients-choose__wrapper {
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .patients-choose .color-13 {
    top: -110px;
  }
}
.patients-promo .color-14 {
  top: -850px;
}

.description-four-steps__box {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 40px;
  background-color: var(--bg-F3F3F3);
  border-radius: 40px;
  width: 100%;
  align-items: flex-start;
}
.description-four-steps__btn {
  height: 36px !important;
  min-height: 36px !important;
  font-weight: 500 !important;
  font-size: 0.625rem !important;
}
.description-four-steps__wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-wrap: wrap;
}
.description-four-steps__item {
  width: 242px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.description-four-steps__step {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 10px;
}
.description-four-steps__step span {
  color: var(--color-00874D-text);
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 80%;
}
.description-four-steps__step-separator {
  border-bottom: 1px solid var(--color-00874D-text);
  width: 100%;
}
.description-four-steps__title {
  margin-bottom: 52px;
}
.description-four-steps__desc {
  font-size: 1rem;
  line-height: var(--lh-140);
  font-weight: 400;
  color: var(--color-black-text);
}
.description-four-steps .color-14 {
  top: -300px;
}

@media (max-width: 991.98px) {
  .description-four-steps__item {
    flex-grow: 1;
  }
  .description-four-steps__box {
    gap: 30px;
  }
}
@media (max-width: 767.98px) {
  .description-four-steps__title {
    margin-bottom: 26px;
  }
  .description-four-steps__item {
    width: 100%;
  }
  .description-four-steps .color-14 {
    top: -257px;
    background-size: 100% auto;
  }
}
html.theme-black .description-four-steps__box {
  border: 1px solid white;
}

.visually_impaired {
  background-color: var(--bg-white);
  position: relative;
  height: 0px;
  z-index: 10;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.visually_impaired__wrapper {
  display: flex;
  flex-direction: row;
  gap: 80px;
  width: 100%;
  max-width: calc(100% - 30px);
  flex-wrap: wrap;
}
.visually_impaired__wrapper.paddingTop {
  padding-top: 30px;
}
.visually_impaired__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: end;
}
.visually_impaired__item-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
  color: var(--color-black-text);
}
.visually_impaired__item-block {
  display: flex;
  flex-direction: row;
  gap: 6px;
}
.visually_impaired__item-block__font {
  border: 1px solid var(--border-black);
  border-radius: 16px;
  height: 52px;
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black-text);
}
.visually_impaired__item-block__font button {
  background-color: unset;
  border: 0;
  color: inherit;
}
.visually_impaired__item-block__font-small {
  font-size: 15px;
}
.visually_impaired__item-block__font-normal {
  font-size: 18px;
}
.visually_impaired__item-block__font-big {
  font-size: 23px;
}
.visually_impaired__item-block__font.active {
  border-width: 3px;
}
.visually_impaired__item-block__ls {
  border: 1px solid var(--border-black);
  border-radius: 16px;
  height: 52px;
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black-text);
}
.visually_impaired__item-block__ls button {
  background-color: unset;
  border: 0;
  color: inherit;
}
.visually_impaired__item-block__ls-small, .visually_impaired__item-block__ls-normal, .visually_impaired__item-block__ls-big {
  font-size: 15px;
}
.visually_impaired__item-block__ls.active {
  border-width: 3px;
}
.visually_impaired__item-block__lh {
  border: 1px solid var(--border-black);
  border-radius: 16px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black-text);
}
.visually_impaired__item-block__lh button {
  background-color: unset;
  border: 0;
  color: inherit;
}
.visually_impaired__item-block__lh-small, .visually_impaired__item-block__lh-normal, .visually_impaired__item-block__lh-big {
  font-size: 15px;
}
.visually_impaired__item-block__lh-small {
  line-height: 110%;
}
.visually_impaired__item-block__lh-normal {
  line-height: 136%;
}
.visually_impaired__item-block__lh-big {
  line-height: 190%;
}
.visually_impaired__item-block__lh.active {
  border-width: 3px;
}
.visually_impaired__item-block__theme {
  border: 1px solid var(--border-black);
  border-radius: 16px;
  height: 52px;
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visually_impaired__item-block__theme button {
  background-color: unset;
  border: 0;
  color: inherit;
}
.visually_impaired__item-block__theme-standart, .visually_impaired__item-block__theme-black, .visually_impaired__item-block__theme-blue {
  font-size: 15px;
}
.visually_impaired__item-block__theme-black {
  color: var(--color-white-text);
}
.visually_impaired__item-block__theme.active {
  border-width: 3px;
}
.visually_impaired__item-block__theme[data-name=black] {
  background-color: var(--bg-black);
  color: var(--color-white-text);
}
.visually_impaired__item-block__theme[data-name=blue] {
  background-color: #a8d1fb;
}
.visually_impaired__item-block__theme[data-name=standart] {
  color: #4224fd;
}
.visually_impaired__hide-btn {
  display: none !important;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.visually_impaired.sticky {
  position: fixed;
  z-index: 10;
}

.visually_impaired.active {
  height: 123px;
  border-bottom: 1px solid black;
}

.visually_impaired.active.hide {
  height: 0;
}

@media (max-width: 1199.98px) {
  .visually_impaired__wrapper {
    gap: 56px;
  }
}
@media (max-width: 992.98px) {
  .visually_impaired.active {
    height: min-content;
    padding-bottom: 10px;
  }
  .visually_impaired__wrapper {
    gap: 26px;
  }
  .visually_impaired__wrapper.paddingTop {
    padding-top: 60px;
  }
  .header-nav.sticky {
    top: 68px;
  }
}
@media (max-width: 570.98px) {
  .visually_impaired__hide-btn {
    display: block !important;
  }
}
html.theme-black .visually_impaired.active {
  border-bottom: 1px solid white;
}

:root {
  --accent: orange;
  --text: #333;
  --regular-text: 1rem;
  --lineheight: 1.65;
  --userfont: Manrope, sans-serif;
  --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

::placeholder {
  color: #666;
}

::selection {
  background-color: var(--accent);
  color: #fff;
}

input, textarea {
  outline: none;
}

input:focus:required:invalid, textarea:focus:required:invalid {
  border-color: red;
}

input:required:valid, textarea:required:valid {
  border-color: green;
}

body {
  font-family: var(--userfont);
  font-size: var(--regular-text);
  line-height: var(--lineheight);
  color: var(--text);
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
}

/* USER STYLES */
.image {
  max-width: 100%;
  margin-bottom: var(--bs-gutter-x);
  border-radius: 4px;
}

.socials {
  height: 25px;
  width: 25px;
}

.accent {
  color: var(--accent);
  font-weight: bold;
}

.socials {
  height: 25px;
  width: 25px;
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: 0;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  -webkit-transition-duration: inherit;
  -o-transition-duration: inherit;
  transition-duration: inherit;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
  -o-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  -o-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
  direction: ltr;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  -o-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-caption .fancybox-caption,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-nav .fancybox-navigation .fancybox-button,
.fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  -webkit-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  -o-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 0.9375rem;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}
.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}
.fancybox-slide--image:before {
  display: none;
}
.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}
.fancybox-slide:before {
  content: "";
  display: inline-block;
  font-size: 0rem;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
  display: block;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #cccccc;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: 0 0;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-iframe,
.fancybox-video {
  background: 0 0;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}
.fancybox-error p {
  color: #444;
  font-size: 1.125rem;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: 0;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: 0;
}

.fancybox-button div {
  height: 100%;
}
.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}
.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--fsenter svg:nth-child(2),
.fancybox-button--fsexit svg:first-child,
.fancybox-button--pause svg:first-child,
.fancybox-button--play svg:nth-child(2) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0;
  -ms-transform-origin: 0;
  transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  z-index: 99998;
}

.fancybox-close-small {
  background: 0 0;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}
.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}
.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
}
.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-caption {
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, transparent);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(transparent));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, transparent);
  bottom: 0;
  color: #eee;
  font-size: 1rem;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}
.fancybox-caption--separate {
  margin-top: -50px;
}
.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}
.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

.fancybox-loading {
  -webkit-animation: a 1s linear infinite;
  animation: a 1s linear infinite;
  background: 0 0;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@-webkit-keyframes a {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes a {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-1turn);
  -ms-transform: rotate(-1turn);
  transform: rotate(-1turn);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(1turn);
  -ms-transform: rotate(1turn);
  transform: rotate(1turn);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scaleX(1) translateZ(0);
  transform: scaleX(1) translateZ(0);
}

.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translateZ(0) scale(1);
  transform: translateZ(0) scale(1);
}

@media (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }
  .fancybox-slide--image {
    padding: 6px 0;
  }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }
  .fancybox-close-small {
    right: -6px;
  }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}
.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.fancybox-share__button:link, .fancybox-share__button:visited {
  color: #fff;
}
.fancybox-share__button:hover {
  text-decoration: none;
}
.fancybox-share__button--fb {
  background: #3b5998;
}
.fancybox-share__button--fb:hover {
  background: #344e86;
}
.fancybox-share__button--pt {
  background: #bd081d;
}
.fancybox-share__button--pt:hover {
  background: #aa0719;
}
.fancybox-share__button--tw {
  background: #1da1f2;
}
.fancybox-share__button--tw:hover {
  background: #0d95e8;
}
.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}
.fancybox-share__button svg path {
  fill: #fff;
}
.fancybox-share__input {
  background: 0 0;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 1rem;
  margin: 10px 0 0;
  outline: 0;
  padding: 10px 15px;
  width: 100%;
}
.fancybox-share h1 {
  color: #222;
  font-size: 2.3125rem;
  font-weight: 700;
  margin: 0 0 20px;
}
.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0rem;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: relative;
  white-space: nowrap;
  width: 100%;
}
.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}
.fancybox-thumbs__list a:before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}
.fancybox-thumbs__list a:focus:before {
  opacity: 0.5;
}
.fancybox-thumbs__list a.fancybox-thumbs-active:before {
  opacity: 1;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

@media (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
*,
::after,
::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: bold;
  line-height: 1.4;
}

h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}
h2 {
  font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}
h3 {
  font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}
h4 {
  font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}
h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

abbr[data-bs-original-title],
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #0d6efd;
  text-decoration: underline;
}
a:hover {
  color: #0a58ca;
}
a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
  direction: ltr;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-container-pointer-events {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-pointer-events.swiper-container-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-next.swiper-button-black,
.swiper-button-prev.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  -o-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s top;
  -webkit-transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top;
  -webkit-transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  -o-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s left;
  -webkit-transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left;
  -webkit-transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  -o-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s right;
  -webkit-transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right;
  -webkit-transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-container-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

::-webkit-input-placeholder {
  color: #666;
}

::-moz-placeholder {
  color: #666;
}

:-ms-input-placeholder {
  color: #666;
}

::-ms-input-placeholder {
  color: #666;
}

::placeholder {
  color: #666;
}

::-moz-selection {
  background-color: #17a866;
  color: #fff;
}

::selection {
  background-color: #17a866;
  color: #fff;
}

input,
textarea {
  outline: 0;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
  border-color: red;
}

input:required:valid,
textarea:required:valid {
  border-color: green;
}

body,
html {
  min-height: 100%;
}

body {
  font-family: Manrope, sans-serif;
  font-size: 18px;
  line-height: 1.74;
  color: #222;
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
}

@media (max-width: 991.98px) {
  .page-body:not(.body-main) {
    padding-top: 66px !important;
  }
}
.container {
  width: 1170px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1199.98px) {
  .container {
    width: 992px;
  }
}
@media (max-width: 991.98px) {
  .container {
    width: 768px;
  }
}
@media (max-width: 767.98px) {
  .container {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.dflex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.diflex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.aic {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.aifs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.aife {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.jcfs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.jcfe {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.jcc {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.jcsb {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.fwrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.fdc {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.f-auto {
  width: auto;
}

.pos-r {
  position: relative;
}

.z-3 {
  z-index: 3;
}

.gap-10 {
  gap: 10px;
}

.pl-40 {
  padding-left: 40px;
}

.hide {
  display: none;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #17a866;
}

body::-webkit-scrollbar {
  width: 5px;
  background-color: #17a866;
}

body::-webkit-scrollbar-thumb {
  background-color: #17a866;
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}

a:hover {
  color: initial;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes spin {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@-webkit-keyframes spin2 {
  to {
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn);
  }
}
@keyframes spin2 {
  to {
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn);
  }
}
.circle {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.circle::before {
  content: "";
  background: #17a866;
  position: absolute;
  -webkit-box-shadow: 0 4px 10px rgba(23, 168, 102, 0.33);
  box-shadow: 0 4px 10px rgba(23, 168, 102, 0.33);
  border-radius: 100%;
}

.spin {
  -webkit-animation-name: spin;
  animation-name: spin;
}

.spin2 {
  -webkit-animation-name: spin2;
  animation-name: spin2;
}

.hover-shadow {
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
}

.hover-shadow:hover {
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.25);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.25);
}

.big-title {
  font-size: 102px;
  line-height: 1;
  color: #107047;
}

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

.s-title {
  font-size: 2.625rem;
  line-height: var(--lh-130);
  color: var(--color-black-text);
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .s-title {
    font-size: calc(1.5rem + 6 * (100vw - 320px) / 850);
  }
}
.big-title {
  font-size: 62px;
  line-height: 1.3;
  color: #107047;
}

.sub-title {
  font-size: 32px;
  font-weight: 600;
}

.green-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 120%;
  color: #17a866;
}

.btn {
  font-weight: 600;
  font-size: 0.875rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 35px;
  text-align: center;
  background: var(--bg-green-gradient);
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
}
.btn:hover {
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.25);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.25);
  color: #fff;
  transform: scale(1.1);
}
.btn:active, .btn:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(23, 168, 102, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(23, 168, 102, 0.5);
}

.btn-2:active, .btn-2:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(23, 168, 102, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(23, 168, 102, 0.5);
}

.btn,
.btn-2 {
  position: relative;
  z-index: 1;
}

.btn::before,
.btn-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 100px;
  background: rgb(23, 168, 102);
  background: -webkit-gradient(linear, left top, right top, from(rgb(23, 168, 102)), to(rgb(11, 227, 128)));
  background: -o-linear-gradient(left, rgb(23, 168, 102) 0%, rgb(11, 227, 128) 100%);
  background: linear-gradient(90deg, rgb(23, 168, 102) 0%, rgb(11, 227, 128) 100%);
  opacity: 0;
  -webkit-transition: ease 0.2s;
  -o-transition: ease 0.2s;
  transition: ease 0.2s;
}
.btn:focus:before, .btn:active:before,
.btn-2:focus:before,
.btn-2:active:before {
  opacity: 1;
}

.btn-2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 68px;
  padding: 0 35px;
  letter-spacing: 6%;
  background: var(--bg-green-gradient);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  border: none;
}
.btn-2:hover {
  color: white;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.25);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.25);
}
.btn-2.btn-arrow-right::after {
  content: "";
  display: inline-block;
  width: 8px; /* Размер вашей иконки */
  height: 16px;
  margin-left: 24px;
  background-image: url("/static/corp/img/new/svg/main/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  transition: transform 0.3s ease;
}
.btn-2.btn-arrow-right:hover::after {
  transform: translateX(4px);
}

.btn-4 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #00874D;
  text-decoration: none;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  text-transform: uppercase;
  cursor: pointer;
}
.btn-4:hover {
  color: #00874D;
  transform: scale(1.1);
}
.btn-4.btn-arrow-right::after {
  content: "";
  display: inline-block;
  width: 12px; /* Размер вашей иконки */
  height: 12px;
  margin-left: 6px;
  background-image: url("/static/corp/img/new/svg/main/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

@media (max-width: 767.98px) {
  .btn-2 {
    height: 40px;
    font-size: 16px;
  }
}
.btn-3 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 68px;
  padding: 0 35px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 6%;
  border: 1px solid #17a866;
  border-radius: 100px;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  color: var(--color-black-text);
  text-decoration: none;
  background-color: transparent;
}
.btn-3:hover {
  background-color: #17a866;
  color: #fff;
}
.btn-3.btn-arrow-right::after {
  content: "";
  display: inline-block;
  width: 12px; /* Размер вашей иконки */
  height: 12px;
  margin-left: 24px;
  background-image: url("/static/corp/img/new/svg/main/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  transition: transform 0.3s ease;
}
.btn-3.btn-arrow-right:hover::after {
  transform: translateX(4px);
  background-image: url("/static/corp/img/new/svg/main/arrow-white.svg");
}

@media (max-width: 767.98px) {
  .btn-3 {
    height: 40px;
    font-size: 16px;
  }
}
@media (max-width: 467.98px) {
  .btn-3 {
    height: 40px;
    font-size: 12px;
    min-height: 40px !important;
  }
}
html.theme-black .btn-2,
html.theme-black .btn-3,
html.theme-black .btn-4,
html.theme-black .btn {
  border: 1px solid white;
}

.bread {
  font-size: 0;
  padding-top: 125px;
}
.bread * {
  font-weight: 500;
  font-size: 0.625rem;
  line-height: var(--lh-120);
  letter-spacing: 0em;
  text-transform: uppercase;
  color: rgba(var(--color-000-text), 0.4);
  text-decoration: none;
  cursor: pointer;
}
.bread > * + ::before {
  content: "/";
  display: inline-block;
  margin: 0 5px;
}

html.font-big .bread {
  padding-top: 160px;
}

@media (max-width: 767.98px) {
  .bread {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .bread {
    padding-top: 57px;
  }
}
.mt170 {
  margin-top: 170px;
}

@media (max-width: 1199.98px) {
  .mt170 {
    margin-top: 80px;
  }
}
@media (max-width: 991.98px) {
  .mt170 {
    margin-top: 60px;
  }
}
@media (max-width: 767.98px) {
  .mt170 {
    margin-top: 40px;
  }
}
.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

@media (max-width: 767.98px) {
  .mt35 {
    margin-top: 15px;
  }
}
.mt30 {
  margin-top: 30px;
}

.mt45 {
  margin-top: 45px;
}

.mt75 {
  margin-top: 75px;
}

.mt70 {
  margin-top: 70px;
}

.mt100 {
  margin-top: 100px;
}

.mt110 {
  margin-top: 110px;
}

.mt15 {
  margin-top: 15px;
}

.mt50 {
  margin-top: 50px;
}

.mt120 {
  margin-top: 120px;
}

.pt70 {
  padding-top: 70px;
}

.h100 {
  height: 100%;
}

.w100 {
  width: 100%;
}

.mt95 {
  margin-top: 95px;
}

.title-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.next-slide,
.prev-slide {
  width: 19px;
  height: 36px;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../../img/new/svg/prev.svg);
  z-index: 3;
}

.prev-slide {
  left: -40px;
}

.next-slide {
  right: -40px;
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.product-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 15px;
  padding: 15px;
}
.product-card__img {
  height: 200px;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.product-card__img img {
  max-width: 100%;
  max-height: 100%;
}
.product-card__name {
  font-size: 14px;
  line-height: 1.3;
  margin-top: 20px;
  margin-bottom: 8px;
  color: initial;
  text-decoration: none;
}
.product-card__text {
  margin-top: auto;
}
.product-card__art {
  color: #bcbcbc;
  font-size: 12px;
}
.product-card__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 9px;
}
.product-card__btns .btn-2 {
  height: 44px;
  font-size: 16px;
  padding: 0 25px;
}

.catalog-item {
  padding: 15px;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 15px;
  color: initial;
  text-decoration: none;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
}
.catalog-item:hover {
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}
.catalog-item__img {
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.catalog-item__img img {
  max-width: 100%;
  max-height: 100%;
}
.catalog-item__title {
  padding: 20px 10px 5px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: #17a866;
}

.loadmore {
  background: #fff;
  border: 1px solid #abeacd;
  border-radius: 100px;
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  margin-top: 30px;
  color: #17a866;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 19px 20px 19px 70px;
  position: relative;
  cursor: pointer;
}
.loadmore::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 32px;
  height: 32px;
  background-image: url(../../img/new/svg/loadmore.svg);
  display: block;
  margin: auto;
}

.text-list ul {
  margin: 30px 0;
  padding: 0;
  list-style-type: none;
}
.text-list ul li {
  font-size: 20px;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.text-list ul li::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../../img/new/svg/check.svg);
  display: inline-block;
  margin-right: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.text-list ul li + li {
  margin-top: 15px;
}

.mobile-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 0 0 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition-duration: 0.15s;
  background-color: #17A866;
  display: none;
}

body.body-main.sticky .mobile-wrapper {
  background: rgba(23, 168, 102, 0.8);
  -webkit-backdrop-filter: blur(43px);
  backdrop-filter: blur(43px);
}

body:not(.body-main) .mobile-wrapper {
  background: rgba(23, 168, 102, 0.8);
  -webkit-backdrop-filter: blur(43px);
  backdrop-filter: blur(43px);
}

.mobile-wrapper .header__logo img {
  max-height: 43px;
  width: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.mobile-wrapper .header__logo-text b,
.mobile-wrapper .header__logo-text span {
  color: #251f34;
}
.mobile-wrapper .header__logo-text span {
  margin-top: 5px;
}
.mobile-wrapper .header-top__wrapper {
  display: flex;
  flex-direction: row;
  height: 100%;
  gap: 10px;
}
.mobile-wrapper .header-top__wrapper .language {
  display: flex;
  align-items: center;
}
.mobile-wrapper .header-top__wrapper .language img {
  width: 18px;
}
.mobile-wrapper .bottom {
  position: fixed;
  margin-top: 66px;
  max-width: 85vw;
  height: calc(100vh - 66px);
  overflow: auto;
  width: 100%;
  background-color: #fff;
  padding: 20px 20px;
  z-index: 3;
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
  -webkit-transform: translate(-200%, 0);
  -o-transform: translate(-200%, 0);
  -moz-transform: translate(-200%, 0);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translate(-200%, 0);
  -ms-transform: translate(-200%, 0);
  transform: translate(-200%, 0);
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.33);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.33);
}
.mobile-wrapper .bottom.opened {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.mobile-wrapper .bottom ul {
  padding: 0;
  margin: 0;
  font-size: 0;
  line-height: 0;
}
.mobile-wrapper .bottom ul + ul {
  margin-top: 30px;
}
.mobile-wrapper .bottom .menu a {
  font-size: 16px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
  color: #212529;
}
.mobile-wrapper .bottom .menu li + li {
  margin-top: 7px;
}
.mobile-wrapper .bottom .main-modal-menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
}
.mobile-wrapper .bottom .main-modal-menu a::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #17a866;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
}
.mobile-wrapper .bottom .city_popover a {
  margin: 5px 5px 0;
}
.mobile-wrapper .adress_popover {
  width: 100%;
}
.mobile-wrapper .top {
  position: relative;
  z-index: 10;
  height: 66px;
}
.mobile-wrapper .logo img {
  width: 50px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 991.98px) {
  .mobile-wrapper {
    display: block;
  }
  body {
    padding-top: 66px !important;
  }
}
@media (min-width: 570.98px) {
  .mobile-wrapper .header-top__wrapper .language {
    display: none;
  }
}
.header-top__phone {
  font-size: 14px;
  color: #2d2e33;
  line-height: 1;
  margin-top: 5px;
}

.bottom-mobile-phone {
  margin-top: 15px;
  font-size: 18px;
  line-height: 1;
  color: #000;
}
.bottom-mobile-phone .icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #f4f4f4;
  margin-right: 10px;
}
.bottom-mobile-phone .icon img {
  max-width: 11px;
  height: auto;
}

.bottom-social-mobile {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.bottom-social-mobile a + a {
  margin-left: 30px;
}

.contact-mobile a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #17A866;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.contact-mobile a img {
  max-width: 100%;
}
.contact-mobile a + a {
  margin-left: 5px;
}

body.hidd,
html.hidd {
  overflow: hidden;
}

body.hidd {
  padding-right: 5px;
}
body.hidd::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 20;
}

.hamburger {
  width: 20px;
  height: 14px;
  position: relative;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  cursor: pointer;
}
.hamburger.open span:nth-child(1) {
  top: 9px;
  width: 0;
  left: 50%;
}
.hamburger.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger.open span:nth-child(4) {
  width: 0;
}
.hamburger span {
  display: block;
  position: absolute;
  height: 1.5px;
  width: 100%;
  background: #2d2e33;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2), .hamburger span:nth-child(3) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.hamburger span:nth-child(4) {
  top: auto;
  bottom: 0;
  width: 100%;
  left: auto;
  right: 0;
}

.goal {
  margin-top: 220px;
}
.goal .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.goal__text {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.goal .form-main {
  margin-top: 120px;
}

.roles__title {
  font-weight: 600;
  font-size: 42px;
  line-height: 1.4;
}
.roles__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #abeacd;
  padding: 15px;
  border-radius: 70px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 420px;
  position: relative;
}
.roles__icons::before {
  content: "";
  position: absolute;
  left: 135px;
  right: 135px;
  height: 1px;
  background: #17a866;
  margin: auto;
  top: 0;
  bottom: 0;
}
.roles__icon-row {
  width: 93px;
  height: 93px;
  border-radius: 100%;
  background-color: #fff;
  -webkit-box-shadow: 6px 6px 40px rgba(0, 0, 0, 0.16);
  box-shadow: 6px 6px 40px rgba(0, 0, 0, 0.16);
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px;
}
.roles__icon-row:last-child span {
  right: auto;
  left: -15px;
}
.roles__icon-row img {
  max-width: 100%;
  max-height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.roles__icon-row span {
  position: absolute;
  right: -15px;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 18px;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: #17a866;
  -webkit-box-shadow: 0 4px 10px rgba(23, 168, 102, 0.33);
  box-shadow: 0 4px 10px rgba(23, 168, 102, 0.33);
  color: #fff;
}
.roles__text-blocks {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.roles__text-col {
  width: 250px;
}
.roles__text-col + div {
  margin-left: 45px;
}
.roles__text-col p {
  color: #868686;
  font-size: 16px;
  margin: 5px 0 0;
}
.roles__sub-title {
  font-weight: 600;
  font-size: 22px;
}
.roles .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.roles .container > div {
  width: 50%;
}
.roles .container > div:first-child {
  padding-right: 75px;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.events__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  margin-top: 40px;
  margin-bottom: 20px;
}
.events__item {
  position: relative;
  padding: 45px;
  border-radius: 15px;
  overflow: hidden;
}
.events__item > div {
  position: relative;
  z-index: 3;
}
.events__item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -o-linear-gradient(344.51deg, #222 0, rgba(34, 34, 34, 0.3) 100%);
  background: linear-gradient(105.49deg, #222 0, rgba(34, 34, 34, 0.3) 100%);
  opacity: 0.8;
  z-index: 2;
}
.events__item > img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.events__info {
  margin-top: 17px;
  color: #fff;
}
.events__sub-title {
  font-weight: 300;
  font-size: 42px;
  color: #fff;
  line-height: 1.4;
}
.events__date {
  font-weight: 600;
  font-size: 42px;
  line-height: 1;
}
.events__time {
  font-size: 22px;
  line-height: 1;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 3px solid #17a866;
}
.events__load {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.events .btn-2 {
  margin-top: 30px;
  position: relative;
  z-index: 3;
}

.news-item {
  text-decoration: none;
  color: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 15px;
  -webkit-box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
}
.news-item__img {
  height: 230px;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}
.news-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.news-item_text {
  padding: 35px;
  background-color: #fff;
  border-radius: 0 0 15px 15px;
}
.news-item__title {
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
}
.news-item__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 20px;
}
.news-item .services__detail {
  text-decoration: none;
}
.news-item .services__detail:hover {
  color: #17a866;
}
.news-item .services__detail:hover::after {
  width: 50px;
}
.news-item_date {
  font-size: 14px;
  color: #c4c4c4;
  margin-top: 5px;
}
.news-item__counters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
}
.news-item__counter + .news-item__counter {
  position: relative;
  margin-left: 100px;
}
.news-item__counter + .news-item__counter::before {
  content: "";
  width: 58px;
  height: 58px;
  border-right: 100%;
  background: #f1f1f1;
  display: block;
  position: absolute;
  left: -80px;
  top: 0;
  border-radius: 100%;
  background-image: url(../../img/new/svg/centers.svg);
  background-position: 50%;
  background-repeat: no-repeat;
}
.news-item__counter-title {
  font-weight: 600;
  font-size: 42px;
  line-height: 1;
  color: #17a866;
}
.news-item__counter-desc {
  font-size: 16px;
  line-height: 1;
  margin-top: 10px;
}

.cart__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cart__main-wrapper {
  margin-top: 15px;
}
.cart__table {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.cart__table-img {
  width: 70px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 15px;
}
.cart__table-img img {
  max-width: 100%;
  max-height: 100%;
}
.cart__table-info {
  max-width: 240px;
}
.cart__table-title {
  font-size: 14px;
  line-height: 1.4;
}
.cart__table-art {
  font-size: 12px;
  line-height: 1;
  color: #bcbcbc;
  margin-top: 8px;
}
.cart__table-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cart__table-price {
  font-size: 0;
  line-height: 1;
}
.cart__table-price-day {
  color: #b7b7b7;
  font-size: 12px;
  margin-top: 5px;
}
.cart__table-sum {
  font-size: 16px;
  font-weight: 700;
}
.cart table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.cart table tr {
  border-radius: 15px;
}
.cart table tr + tr {
  margin-top: 10px;
}
.cart table tr td {
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  padding: 10px;
}
.cart table tr td:first-child {
  border-left: 1px solid #e9e9e9;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
.cart table tr td:last-child {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-right: 1px solid #e9e9e9;
}
.cart__form {
  width: 400px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 85px;
  padding: 35px 40px;
  -webkit-box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
}
.cart__form .form-single__bottom {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 17px;
}
.cart__form .form-single__checkbox {
  margin: 0 0 15px;
  font-size: 14px;
}
.cart__form .form-single__wrap {
  margin-top: 30px;
}
.cart .spacer {
  height: 20px;
}
.cart__remove {
  width: 20px;
  height: 20px;
  background-image: url(../../img/new/svg/remove.svg);
  cursor: pointer;
}
.cart__final-price {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 700;
}

.product-card__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #abeacd;
  padding: 10px 12px;
  border-radius: 100px;
}
.product-card__number input {
  min-width: 34px;
  width: 34px;
  max-width: 80px !important;
  height: 20px;
  font-size: 16px;
  line-height: 1;
  color: #0d1026;
  text-align: center;
  border: none;
}
.product-card__number button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background: #17a866;
  border: none;
  position: relative;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
}
.product-card__number button:hover {
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.product-card__number button::after, .product-card__number button::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 2px;
  background-repeat: no-repeat;
  background-image: url(../../img/new/svg/minus-input.svg);
}
.product-card__number .minus::after {
  display: none;
}
.product-card__number .plus::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.info-case {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.info-case > div + div {
  margin-left: 60px;
}
.info-case__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.info-case__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 12px;
  width: 58px;
  height: 58px;
  border-radius: 100%;
  background: #f1f1f1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.info-case__title {
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  color: #17a866;
}
.info-case__desc {
  font-size: 16px;
  line-height: 1;
  margin-top: 10px;
}

.case-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 15px;
  background: #fff;
  -webkit-box-shadow: 6px 6px 100px rgba(0, 0, 0, 0.07);
  box-shadow: 6px 6px 100px rgba(0, 0, 0, 0.07);
  border-radius: 15px;
}
.case-map__text {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 330px;
  flex: 0 0 330px;
  padding-right: 40px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.case-map__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin-left: 32px;
}
.case-map__item > img {
  position: absolute;
  left: -32px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.case-map__item + div {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e4e9ed;
}
.case-map__city {
  font-weight: 600;
  font-size: 16px;
  color: #17a866;
  margin-bottom: 5px;
}
.case-map__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: initial;
  text-decoration: none;
}
.case-map__desc {
  font-weight: 500;
  font-size: 14px;
  color: #a4a4a4;
  margin-top: 5px;
}
.case-map__map {
  min-height: 130px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  border-radius: 5px;
  overflow: hidden;
}
.case-map__map #map {
  height: 100%;
}

.catalog-card {
  margin-top: 20px;
}
.catalog-card__bottom, .catalog-card__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.catalog-card__bottom > div, .catalog-card__main > div {
  width: 100%;
  overflow: hidden;
}
.catalog-card__bottom > div + div, .catalog-card__main > div + div {
  margin-left: 70px;
}
.catalog-card__gallery-init .swiper-slide a {
  border: 1px solid #eaecee;
  border-radius: 15px;
  background: #fff;
  height: 335px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  outline: 0;
}
.catalog-card__gallery-init .swiper-slide a img {
  max-width: 100%;
  max-height: 100%;
}
.catalog-card__stock {
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  color: #17a866;
}
.catalog-card__short-info {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.catalog-card__short-info span {
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  padding-bottom: 10px;
  border-bottom: 1px solid #eaecee;
  padding-right: 40px;
}
.catalog-card__short-info span + span {
  margin-left: 15px;
}
.catalog-card__wrap-price {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.catalog-card__price-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.catalog-card__price-box span {
  font-size: 14px;
  color: #acacac;
  line-height: 1;
}
.catalog-card__price-box b {
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  margin-top: 7px;
}
.catalog-card__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f4f5f5;
  border-radius: 30px;
  padding: 12px;
  margin-right: 18px;
}
.catalog-card__number input {
  min-width: 34px;
  width: 34px;
  max-width: 80px !important;
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  text-align: center;
  border: none;
  background: 0 0;
}
.catalog-card__number button {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background-color: #fff;
  cursor: pointer;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
}
.catalog-card__number button::before {
  content: "";
  display: inline-block;
  background-size: 100%;
  width: 24px;
  height: 24px;
  background-position: center;
}
.catalog-card__number .minus::before {
  background-image: url(../../img/new/svg/minus.svg);
}
.catalog-card__number .plus::before {
  background-image: url(../../img/new/svg/plus.svg);
}
.catalog-card__btns {
  margin-top: 25px;
}
.catalog-card__btns a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 60px;
  padding: 0 35px;
  border-radius: 100px;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  text-decoration: none;
}
.catalog-card__btns a:hover {
  color: #fff;
}
.catalog-card__add {
  background: #17a866;
  color: #fff;
}
.catalog-card__add:hover {
  -webkit-box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
}
.catalog-card__fast {
  margin-left: 12px;
  border: 1px solid #abeacd;
  color: initial;
}
.catalog-card__fast:hover {
  background-color: #17a866;
  border-color: #17a866;
}
.catalog-card__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 16px;
  color: #17a866;
}
.catalog-card__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.catalog-card__table tr {
  border-top: 1px solid #eaecee;
}
.catalog-card__table tr:last-child {
  border-bottom: 1px solid #eaecee;
}
.catalog-card__table td {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  padding: 6px 0;
}
.catalog-card__table td:last-child {
  font-weight: 700;
  text-align: right;
}
.catalog-card__desc p {
  font-size: 16px;
}
.catalog-card__desc p:last-child {
  margin-bottom: 0;
}
.catalog-card__bottom {
  margin-top: 65px;
}

.input-buffer {
  position: absolute;
  top: -1000px;
  left: -1000px;
  visibility: hidden;
  white-space: nowrap;
}

.catalog-page h1 {
  margin-top: 15px;
}

.catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 30px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.catalog__side {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 200px;
  flex: 0 0 200px;
  margin-right: 100px;
  position: sticky;
  top: 0;
}
.catalog__nav {
  border-top: 1px solid #eaecee;
  padding-top: 15px;
}
.catalog__nav > ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.catalog__nav > ul > li + li {
  margin-top: 20px;
}
.catalog__nav > ul > li > a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
}
.catalog__nav > ul > li .active {
  color: #17a866;
}
.catalog__nav > ul > li ul {
  padding: 0;
  margin: 15px 0;
  list-style-type: none;
}
.catalog__nav > ul > li ul li + li {
  margin-top: 7px;
}
.catalog__nav > ul > li ul li .active {
  background-color: #17a866;
  color: #fff;
}
.catalog__nav > ul > li ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 6px;
  border: 1px solid #eaecee;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  padding: 5px 12px;
  text-decoration: none;
  color: initial;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
}
.catalog__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 30px;
}
.catalog__grid-wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.comment__title {
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.comment__field-wrapper {
  padding: 10px 12px;
  border: 1px solid #d4d4d4;
  border-radius: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.comment__field-wrapper input[type=text] {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  margin: 0 20px;
  font-size: 16px;
  line-height: 1.3;
  border: none;
}
.comment__field-wrapper input[type=text]::-webkit-input-placeholder {
  color: #999;
}
.comment__field-wrapper input[type=text]::-moz-placeholder {
  color: #999;
}
.comment__field-wrapper input[type=text]:-ms-input-placeholder {
  color: #999;
}
.comment__field-wrapper input[type=text]::-ms-input-placeholder {
  color: #999;
}
.comment__field-wrapper input[type=text]::placeholder {
  color: #999;
}
.comment__field-wrapper .btn-2 {
  height: 44px;
  padding: 0 30px;
  font-size: 18px;
  margin-left: auto;
}
.comment__photo {
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.comment__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 100%;
}
.comment__list {
  margin-top: 45px;
}
.comment__item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.comment__item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.comment__item-list-row {
  border-top: 1px solid #ebe5ec;
  padding-top: 17px;
}
.comment__item-list-row:last-child {
  border-bottom: 1px solid #ebe5ec;
  padding-bottom: 17px;
}
.comment__item-list-row + .comment__item-list-row {
  margin-top: 15px;
}
.comment__item-list .comment__photo {
  margin-right: 16px;
}
.comment__item-list + .comment__item-list {
  margin-top: 15px;
  padding-top: 15px;
  margin-left: 55px;
  border-top: 1px solid #ebe5ec;
}
.comment__item-list-have-child .comment__item-list:first-child {
  position: relative;
}
.comment__item-list-have-child .comment__item-list:first-child::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 55px;
  bottom: -40px;
  width: 1px;
  background-color: #c4c4c4;
}
.comment__item-list-have-child .comment__item-list:first-child::after {
  content: "";
  width: 21px;
  height: 17px;
  background-size: 100%;
  display: block;
  position: absolute;
  left: 20px;
  bottom: -55px;
  background-image: url(../../img/new/svg/comment-arrow.svg);
}
.comment__item-bottom {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.comment__name {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
}
.comment__prof {
  margin-left: 11px;
  color: #b6b6b6;
  font-size: 16px;
  font-weight: 500;
}
.comment__time {
  margin-left: auto;
  font-size: 14px;
  color: #b6b6b6;
  font-weight: 500;
}
.comment__message {
  font-size: 14px;
  margin: 7px 0 0;
}
.comment__answer {
  font-size: 12px;
  line-height: 1;
  color: #17a866;
  text-decoration: none;
}
.comment__loadmore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contacts-single .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contacts-single__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 350px;
  flex: 0 0 350px;
}
.contacts-single__list {
  height: 620px;
  overflow: auto;
  padding: 50px 20px 50px 50px;
  margin-top: -30px;
  margin-left: -50px;
  position: relative;
}
.contacts-single__list::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 80px;
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0, #fff 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), to(#fff));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #fff 100%);
}
.contacts-single__list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #17a866;
}
.contacts-single__list::-webkit-scrollbar {
  width: 5px;
  background-color: #17a866;
}
.contacts-single__list::-webkit-scrollbar-thumb {
  background-color: #17a866;
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
.contacts-single__list label {
  width: 100%;
  cursor: pointer;
}
.contacts-single__list label + label {
  margin-top: 20px;
}
.contacts-single__list label input {
  display: none;
}
.contacts-single__list label input:checked + .contacts-single__item-row {
  border: none;
  -webkit-box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
}
.contacts-single__list label input:checked + .contacts-single__item-row .contacts-single__hidden {
  display: block;
}
.contacts-single__list label input:checked + .contacts-single__item-row .adres .contacts-single__city {
  color: #17a866;
}
.contacts-single__item {
  line-height: 1.2;
  padding-left: 32px;
  position: relative;
}
.contacts-single__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 19px;
  height: 19px;
  background-size: 100%;
  background-position: 50%;
  background-repeat: no-repeat;
}
.contacts-single__item-row {
  padding: 15px;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 15px;
}
.contacts-single__item a {
  text-decoration: none;
}
.contacts-single .tel::before {
  background-image: url(../../img/new/svg/contacts-page/1.svg);
}
.contacts-single .adres::before {
  background-image: url(../../img/new/svg/contacts-page/2.svg);
}
.contacts-single .metro::before {
  background-image: url(../../img/new/svg/contacts-page/3.svg);
}
.contacts-single__city {
  color: #a08d9f;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
}
.contacts-single__title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
  color: #222;
}
.contacts-single__desc {
  font-weight: 500;
  font-size: 14px;
  color: #a4a4a4;
}
.contacts-single__hidden {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.contacts-single__hidden .contacts-single__item {
  padding-top: 15px;
  border-top: 1px solid #e4e9ed;
  margin-top: 15px;
}
.contacts-single__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 12px;
}
.contacts-single__socials a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f5f5f5;
  border-radius: 100px;
  padding: 5px 20px 5px 6px;
  font-size: 14px;
  color: #222;
}
.contacts-single__socials a::before {
  content: "";
  display: inline-block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
}
.contacts-single__socials a + a {
  margin-left: 10px;
}
.contacts-single__socials a.whats::before {
  background: #25d366;
  background-image: url(../../img/new/svg/messagers/1.svg);
  background-position: 50%;
  background-repeat: no-repeat;
}
.contacts-single__socials a.tg::before {
  background: #08c;
  background-image: url(../../img/new/svg/messagers/2.svg);
  background-position: 50%;
  background-repeat: no-repeat;
}
.contacts-single__video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 6px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  background: #17a866;
  border-radius: 100px;
  margin-top: 8px;
}
.contacts-single__video::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: #fff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 15px;
  background-image: url(../../img/new/svg/triangle.svg);
  background-position: 50%;
  background-repeat: no-repeat;
}
.contacts-single__video:hover {
  color: #fff;
}
.contacts-single__map {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.contacts-single__map #map {
  width: 100%;
  height: 100%;
}

.bread.silver *,
.bread.silver a {
  color: #cfcfcf;
}

.curse {
  margin: 15px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.curse h1 {
  font-weight: 600;
  font-size: 42px;
  line-height: 120%;
  color: #222;
  margin: 0;
}
.curse h2 {
  font-weight: 600;
  font-size: 28px;
}
.curse h3 {
  font-size: 21px;
  line-height: 1.3;
  margin: 0;
}
.curse__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.curse__top {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.curse__top-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.curse__top-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  margin-right: 10px;
}
.curse__top-icon img {
  max-width: 100%;
  max-height: 100%;
}
.curse__top-text {
  line-height: 1;
}
.curse__top-title {
  font-size: 14px;
  color: #afafaf;
}
.curse__top-desc {
  font-size: 21px;
  margin-top: 8px;
}
.curse__form {
  margin-top: 35px;
  background: #fff;
  -webkit-box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
  padding: 35px 45px;
}
.curse__t-form {
  font-weight: 600;
  font-size: 22px;
}
.curse__inputs {
  margin-top: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 36px;
  height: 73px;
  padding: 8px 8px 8px 26px;
}
.curse__input {
  width: 39%;
  height: 100%;
  position: relative;
}
.curse__input::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 24px;
  height: 24px;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 2;
}
.curse__input input {
  border: none;
  width: 100%;
  padding-left: 32px;
  position: relative;
  height: 100%;
  font-size: 16px;
}
.curse__input input::-webkit-input-placeholder {
  color: #868686;
}
.curse__input input::-moz-placeholder {
  color: #868686;
}
.curse__input input:-ms-input-placeholder {
  color: #868686;
}
.curse__input input::-ms-input-placeholder {
  color: #868686;
}
.curse__input input::placeholder {
  color: #868686;
}
.curse__input + .curse__input {
  margin-left: 25px;
}
.curse__input + .curse__input::after {
  content: "";
  position: absolute;
  left: -25px;
  top: 5px;
  bottom: 5px;
  width: 1px;
  background-color: #abeacd;
}
.curse .phone::before {
  background-image: url(../../img/new/svg/stomatolog/phone.svg);
}
.curse .user::before {
  background-image: url(../../img/new/svg/stomatolog/user.svg);
}
.curse__submit {
  width: 22%;
  height: 100%;
}
.curse__submit input {
  width: 100%;
  height: 100%;
  background: #17a866;
  border-radius: 100px;
  padding: 0 25px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  border: none;
  cursor: pointer;
}
.curse__check {
  font-size: 14px;
  color: #bbb;
  line-height: 1.3;
  margin-top: 20px;
}
.curse__check a {
  color: #bbb;
}
.curse__text {
  margin-top: 65px;
}
.curse__map {
  margin-top: 35px;
}
.curse__map #map {
  height: 165px;
  border-radius: 15px;
}
.curse__side {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
  margin-left: 100px;
  position: sticky;
  top: 0;
}
.curse__users {
  margin-top: 40px;
}
.curse__users h3 {
  font-size: 21px;
}
.curse__users-list {
  margin-top: 25px;
}
.curse__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.curse__user + div {
  margin-top: 20px;
}
.curse__user-photo {
  width: 39px;
  height: 39px;
  border-radius: 100%;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 16px;
}
.curse__user-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.curse__user-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 1;
}
.curse__user-name {
  font-size: 14px;
  font-weight: 600;
}
.curse__user-rating {
  font-size: 12px;
  font-weight: 500;
  color: #b6b6b6;
  margin-top: 5px;
}

@media (min-width: 768px) {
  .curse__top-item:not(:last-child) {
    margin-right: 40px;
  }
}
.single-event {
  max-width: 800px;
  margin: 30px auto 0;
}
.single-event__img {
  border-radius: 15px;
  overflow: hidden;
  height: 365px;
  position: relative;
}
.single-event__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.single-event__date {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  padding: 5px 15px;
  background: #17a866;
  border-radius: 15px;
  margin-right: 18px;
}
.single-event__date-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 40px 0 20px;
}
.single-event__date-post {
  font-size: 14px;
  margin-top: 15px;
  color: #afafaf;
}
.single-event__date-post + .single-event__date-title {
  margin-top: 10px;
}
.single-event__title {
  margin: 0;
}
.single-event__day {
  margin-bottom: 20px;
}
.single-event__play {
  width: 135px;
  height: 135px;
  border-radius: 100%;
  background-color: #17a866;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
.single-event__play::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  width: 0;
  margin-right: -5px;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 38px;
  margin-left: 5px;
  border-color: transparent transparent transparent #fff;
}

.form-single {
  padding: 37px 42px 34px 42px;
  background: var(--bg-white);
  -webkit-box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  border-radius: 40px;
}
.form-single__title {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: var(--lh-120);
  color: var(--color-black-text);
  text-transform: uppercase;
}
.form-single__desc {
  margin-top: 24px;
  font-size: 1.125rem;
  color: #b4b4b4;
  line-height: var(--lh-120);
}
.form-single__wrap {
  display: -ms-grid;
  display: grid;
  gap: 17px;
}
.form-single .form-2-col {
  margin-top: 35px;
  -ms-grid-columns: 1fr [2];
  grid-template-columns: repeat(2, 1fr);
}
.form-single .form-3-col {
  margin-top: 34px;
  -ms-grid-columns: 1fr [4];
  grid-template-columns: repeat(4, 1fr);
}
.form-single__field {
  border: 1px solid #e1e1e1;
  border-radius: 20px;
  padding: 14px 15px 10px 20px;
  font-size: 0;
  width: 268px;
}
.form-single__field input {
  width: 100%;
  border: none;
  padding: 0;
  font-size: 1rem;
  line-height: var(--lh-100);
  margin-top: 5px;
}
.form-single__field input::-webkit-input-placeholder {
  color: #868686;
}
.form-single__field input::-moz-placeholder {
  color: #868686;
}
.form-single__field input:-ms-input-placeholder {
  color: #868686;
}
.form-single__field input::-ms-input-placeholder {
  color: #868686;
}
.form-single__field input::placeholder {
  color: #868686;
}
.form-single__field-title {
  font-size: 0.75rem;
  line-height: var(--lh-100);
  color: var(--color-black-text);
}
.form-single__submit {
  padding-left: 26px;
}
.form-single__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 28px;
}
.form-single__checkbox {
  font-size: 0.625rem;
  line-height: var(--lh-180);
  color: #9C9C9C;
}
.form-single__checkbox a {
  color: inherit;
}

html.theme-black .form-single {
  border: 1px solid white;
}

* + .form-single__checkbox {
  margin-left: 20px;
}

.community__post-links + .comment {
  border-top: 1px solid #ebe5ec;
  margin-top: 40px;
  padding-top: 40px;
}

.single-page {
  margin-top: 20px;
}

.nav-cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 0 -10px;
  list-style-type: none;
  padding: 0;
}
.nav-cat li {
  margin: 0 10px 10px;
}
.nav-cat li a {
  font-weight: 600;
  font-size: 16px;
  color: rgba(34, 34, 34, 0.4);
  text-decoration: none;
  padding-bottom: 3px;
}
.nav-cat li a.active {
  color: #222;
  border-bottom: 1px solid #17a866;
}
.nav-cat + .events__wrapper {
  margin-top: 20px;
}

.header {
  padding: 25px 0;
  background-color: #fff;
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: initial;
  text-decoration: none;
}
.header__logo img {
  width: 117px;
  height: auto;
  margin-right: 19px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.header__logo span {
  font-size: 12px;
  line-height: 1.3;
}
.header__types {
  font-weight: 600;
  font-size: calc(14px + 2 * (100vw - 320px) / 850);
  min-width: 132px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
  border-bottom: 1px solid #17a866;
}
.header__types::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 15px;
  background: url(../../img/new/svg/header/carret-down.svg) no-repeat center/100%;
}
.header__city::before {
  background-image: url(../../img/new/svg/header/nav.svg);
}
.header__city, .header__lc {
  font-size: 14px;
  position: relative;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__city::before, .header__lc::before {
  content: "";
  width: 24px;
  height: 24px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 8px;
}
.header__lc::before {
  background-image: url(../../img/new/svg/header/user.svg);
}
.header__phone {
  font-size: 20px;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: initial;
  text-decoration: none;
}
.header__phone::before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-right: 7px;
  background-image: url(../../img/new/svg/header/phone.svg);
}
.header__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__btns a + a {
  margin-left: 9px;
}

@media (max-width: 1199.98px) {
  .header {
    padding: 10px 0;
  }
}
@media (max-width: 991.98px) {
  .header {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .header__logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 1199.98px) {
  .header__logo span {
    margin-top: 10px;
  }
}
@media (max-width: 1199.98px) {
  .header__phone {
    font-size: 16px;
  }
}
.btn-cart {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid #abeacd;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
}
.btn-cart::before {
  content: "";
  display: inline-block;
  background-image: url(../../img/new/svg/header/cart.svg);
  width: 24px;
  height: 24px;
  background-size: 100%;
  background-repeat: no-repeat;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
}
.btn-cart:hover {
  border-color: #17a866;
  background-color: #17a866;
}
.btn-cart:hover::before {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

nav {
  background-color: #17a866;
}
nav ul {
  padding: 0;
  height: 52px;
  margin: 0;
  font-size: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
nav ul li a {
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: none;
}
nav ul li a:hover {
  text-decoration: underline;
  color: #fff;
}

@media (max-width: 991.98px) {
  nav {
    display: none;
  }
}
.invest {
  margin-top: 20px;
}
.invest__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.invest__item {
  -webkit-box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
  padding: 35px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  min-height: 340px;
  color: initial;
  text-decoration: none;
}
.invest__item:hover .main-page__item--arrow {
  width: 100px;
}
.invest__item > img {
  position: absolute;
  right: 40px;
  top: 60px;
  max-width: 190px;
  max-height: 250px;
}
.invest__item-content {
  max-width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.invest__title {
  font-weight: 600;
  font-size: 34px;
  line-height: 1.2;
}
.invest__desc {
  font-size: 16px;
  line-height: 1.2;
  margin-top: 20px;
  color: #868686;
  margin-bottom: 35px;
}
.invest__desc-price {
  font-size: 20px;
  line-height: 1;
  margin-top: 5px;
  color: #17a866;
  position: relative;
}
.invest__bottom-info {
  margin-top: auto;
}
.invest__price {
  font-weight: 600;
  font-size: 42px;
  line-height: 1;
}
.invest .main-page__item--arrow {
  margin-top: 30px;
}

.centers {
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid #e7e7e7;
}

.voxel-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 40px 0;
}
.voxel-counter__text {
  background: #fff;
  -webkit-box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding: 20px 20px 20px 95px;
  position: relative;
  height: 100%;
}
.voxel-counter__text::before {
  content: "";
  width: 58px;
  height: 58px;
  border-radius: 100%;
  background-image: url(../../img/new/svg/invest.svg);
  background-size: 40px;
  background-repeat: no-repeat;
  background-position: 50%;
  display: block;
  background-color: #f1f1f1;
  position: absolute;
  top: 50%;
  left: 21px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.voxel-counter__title {
  font-weight: 600;
  font-size: 42px;
  line-height: 1;
  color: #17a866;
}
.voxel-counter__title + .voxel-counter__desc {
  margin-top: 10px;
}
.voxel-counter__desc {
  font-size: 16px;
  line-height: 1.2;
  min-width: 240px;
}
.voxel-counter-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}
.voxel-counter-wrapper > div {
  margin: 0;
}
.voxel-counter-wrapper > div + div {
  margin-left: 20px;
}

.invest-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.invest-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  -webkit-box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.invest-list__item + div {
  margin-left: 15px;
}
.invest-list__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 5px;
  width: 58px;
  height: 58px;
  border-radius: 100%;
  background: #f1f1f1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 15px;
}
.invest-list__icon img {
  max-width: 100%;
  max-height: 100%;
}
.invest-list__text-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 1.3;
  white-space: nowrap;
}
.invest-list__text-row b {
  font-weight: 14px;
}
.invest-list__text-row span {
  font-size: 14px;
  color: #9b9b9b;
}
.invest-list__text-row + div {
  margin-top: 10px;
}

.slide-invest {
  height: 450px;
}
.slide-invest img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
}

.invest-slider__wrapper {
  position: relative;
}
.invest-slider__slider {
  overflow: hidden;
}
.invest-slider__slider img {
  width: 100%;
  height: auto;
  max-height: 450px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
}
.invest-slider a {
  outline: 0;
}

.examples__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}
.examples__item {
  -webkit-box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  padding: 20px 35px;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.examples__top {
  line-height: 1.2;
  margin-bottom: 20px;
}
.examples__title {
  font-weight: 600;
  font-size: 48px;
}
.examples__desc {
  font-size: 20px;
}
.examples__sub-desc {
  font-size: 14px;
  color: #c4c4c4;
  margin-top: 3px;
}
.examples__middle {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.examples__mid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.examples__mid-item + div {
  margin-left: 30px;
}
.examples__mid-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 17px;
  width: 58px;
  height: 58px;
  border-radius: 100%;
  background: #f1f1f1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.examples__mid-title {
  font-weight: 600;
  font-size: 42px;
  line-height: 1;
  color: #17a866;
  white-space: nowrap;
}
.examples__mid-desc {
  font-size: 16px;
  line-height: 1.3;
  margin-top: 7px;
}
.examples__bottom {
  margin-top: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #f1f1f1;
  border-radius: 10px;
  padding: 12px 15px;
}
.examples__bottom-price {
  white-space: nowrap;
  margin-right: 15px;
  font-weight: 600;
  font-size: 25px;
  line-height: 1;
  color: #17a866;
}
.examples__bottom-title {
  font-size: 14px;
  line-height: 1.3;
}
.examples__bottom-desc {
  font-size: 12px;
  margin-top: 5px;
  line-height: 1.3;
  color: #9e9e9e;
}

.franshiza {
  margin-top: 45px;
  padding-top: 45px;
  border-top: 1px solid #e7e7e7;
}
.franshiza__wrap {
  counter-reset: num;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [4];
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.franshiza__item {
  counter-increment: num;
  background: #fff;
  -webkit-box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
  padding: 20px 30px;
}
.franshiza__item::before {
  content: counter(num) " этап";
  font-weight: 300;
  font-size: 26px;
  line-height: 1;
}
.franshiza__item:nth-child(-n+9)::before {
  content: "0" counter(num) " этап";
}
.franshiza__title {
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
  color: #17a866;
  margin-top: 10px;
}
.franshiza__desc {
  font-size: 15px;
  line-height: 1.5;
  margin-top: 20px;
}

.marj {
  min-height: 480px;
}
.marj .container {
  position: relative;
}
.marj__text {
  background: #fff;
  -webkit-box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
  padding: 20px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 415px;
  margin-top: 30px;
  position: relative;
  z-index: 3;
}
.marj__top .marj__title {
  font-weight: 600;
  font-size: 42px;
}
.marj__title {
  color: #17a866;
  line-height: 1;
}
.marj__desc {
  font-size: 16px;
  line-height: 1.2;
  margin-top: 5px;
}
.marj__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
}
.marj__bottom > div + div {
  margin-left: 40px;
}
.marj .form-main {
  position: absolute;
  right: 300px;
  top: 0;
}
.marj__big-elipse {
  width: 265px;
  height: 265px;
  border-radius: 100%;
  position: absolute;
  right: -223px;
  top: 10px;
  background-color: #17a866;
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 70px 50px;
}
.marj__big-elipse span {
  font-size: 21px;
  line-height: 1;
  color: #fff;
}
.marj__big-elipse b {
  margin: 12px 0;
  font-weight: 600;
  font-size: 62px;
  color: #fff;
  line-height: 1;
}
.marj__mini-elipse {
  background: #fff;
  -webkit-box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  border-radius: 100%;
  width: 184px;
  height: 184px;
  position: absolute;
  right: -65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  bottom: -55px;
  z-index: 10;
  line-height: 1;
  padding: 45px;
}
.marj__mini-elipse > * {
  white-space: nowrap;
}
.marj__mini-elipse b {
  font-weight: 600;
  font-size: 42px;
}
.marj__mini-elipse span {
  font-size: 16px;
  margin-top: 10px;
}

.reviews-slide {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 15px;
  padding: 50px 25px 25px;
  color: initial;
}
.reviews-slide__logo {
  height: 60px;
}
.reviews-slide__logo img {
  max-width: 100%;
  max-height: 100%;
}
.reviews-slide__title {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.reviews-slide__bottom {
  margin-top: auto;
}
.reviews-slide__company {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
}
.reviews-slide__detail {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #17a866;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.reviews-slide__detail::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 5px;
  background-image: url(../../img/new/svg/stomatolog/arrow.svg);
  background-size: 100%;
  margin-left: 13px;
  background-repeat: no-repeat;
}

.reviews-slider__wrapper {
  position: relative;
}
.reviews-slider__wrapper .next,
.reviews-slider__wrapper .prev {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 34px;
  height: 11px;
  z-index: 3;
  cursor: pointer;
}
.reviews-slider__wrapper .prev {
  left: -60px;
}
.reviews-slider__wrapper .next {
  right: -60px;
}
.reviews-slider__init {
  overflow: hidden;
}

.graphics__table {
  width: 660px;
  height: 500px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  counter-reset: num;
}
.graphics__table::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 5;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0, #fff 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0)), to(#fff));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, #fff 100%);
  width: 4.5454545455%;
}
.graphics__table span {
  width: 4.5454545455%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;
  top: 0;
  bottom: 0;
  background: #f1f1f1;
  border-radius: 10px;
  counter-increment: num;
}
.graphics__table span::before {
  content: counter(num);
  font-size: 18px;
  margin-top: 5px;
}
.graphics__table span:nth-child(2n) {
  background-color: transparent;
}
.graphics__table-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.graphics__row {
  position: absolute;
  border-radius: 30px;
  height: 6px;
}
.graphics .row-1 {
  top: 66px;
  background: #4fa5de;
  left: 0;
  right: 0;
}
.graphics .row-2 {
  top: 126px;
  background: #02d295;
  left: 4.5454545455%;
  right: 0;
  width: 13.6363636364%;
}
.graphics .row-3 {
  top: 176px;
  background: #3fcee2;
  left: 0;
  right: 0;
  width: 22.7272727273%;
}
.graphics .row-4 {
  top: 226px;
  background: #fbbe5c;
  left: 27.2727272727%;
  right: 0;
  width: 72.7272727273%;
}
.graphics .row-5 {
  top: 276px;
  background: #ff817c;
  left: 36.3636363636%;
  right: 0;
  width: 63.6363636364%;
}
.graphics .row-6 {
  top: 326px;
  background: #e0a1e6;
  right: 0;
  width: 13.6363636364%;
}
.graphics .row-7 {
  top: 376px;
  background: #00ac5e;
  right: 0;
  left: 0;
}
.graphics .row-8 {
  top: 426px;
  background: #02b2c9;
  right: 0;
  width: 36.3636363636%;
}
.graphics .row-9 {
  top: 473px;
  background: #fe5e7d;
  right: 0;
  width: 4.5454545455%;
}
.graphics .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.graphics__text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 24px;
  padding-top: 48px;
}
.graphics__text-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.graphics__text-row span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 80px;
  padding: 5 15px;
  min-height: 38px;
  margin-right: 15px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 30px;
  color: #fff;
}
.graphics__text-row p {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
}
.graphics__text-row + div {
  margin-top: 12px;
}
.graphics__text-row:first-child span {
  background: #4fa5de;
}
.graphics__text-row:nth-child(2) {
  margin-top: 22px;
}
.graphics__text-row:nth-child(2) span {
  background: #02d295;
}
.graphics__text-row:nth-child(3) span {
  background: #3fcee2;
}
.graphics__text-row:nth-child(4) span {
  background: #fbbe5c;
}
.graphics__text-row:nth-child(5) span {
  background: #ff817c;
}
.graphics__text-row:nth-child(6) span {
  background: #e0a1e6;
}
.graphics__text-row:nth-child(7) span {
  background: #00ac5e;
}
.graphics__text-row:nth-child(8) span {
  background: #02b2c9;
}
.graphics__text-row:nth-child(9) span {
  background: #fe5e7d;
}

.univer-about + .goal {
  margin-top: 150px;
}

.main-page {
  background-color: #17a866;
  background-image: url(../../img/new/bg-line.png);
  min-height: 100%;
  background-position: center;
  background-size: cover;
  padding: 30px 0 60px;
}
.main-page__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.main-page__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main-page__logo img {
  width: 220px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.main-page__title {
  font-weight: 600;
  font-size: 43px;
  line-height: 1.22;
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin: 17px 0 0;
}
.main-page__desc {
  font-size: calc(18px + 3 * (100vw - 320px) / 850);
  line-height: 1.3;
  margin-top: 25px;
  text-align: center;
  color: #fff;
}
.main-page__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [6];
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  margin-top: 35px;
}
.main-page__item {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  background-color: #fff;
  -webkit-box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  color: initial;
  text-decoration: none;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
}
.main-page__item:hover {
  -webkit-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.5);
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.5);
}
.main-page__item:hover .main-page__item--arrow {
  width: 100px;
}
.main-page__item:hover .main-page__item--desc, .main-page__item:hover .main-page__item--title {
  color: #17a866;
}
.main-page__item div,
.main-page__item h2,
.main-page__item p {
  position: relative;
  z-index: 3;
}
.main-page__item > img {
  position: absolute;
  z-index: 1;
}
.main-page__item:not(:first-child):not(:nth-child(2)) .main-page__item--title {
  font-size: 24px;
}
.main-page__item:not(:first-child):not(:nth-child(2)) > img {
  top: 30px;
  right: 30px;
}
.main-page__item:first-child, .main-page__item:nth-child(2) {
  min-height: 200px;
  -ms-grid-column-span: 3;
  grid-column: span 3;
}
.main-page__item:first-child > img, .main-page__item:nth-child(2) > img {
  max-width: 185px;
  height: auto;
  right: 30px;
  bottom: 0;
}
.main-page__item:first-child .main-page__item--title, .main-page__item:nth-child(2) .main-page__item--title {
  font-size: 34px;
}
.main-page__item--title {
  font-weight: 600;
  line-height: 1.3;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  margin: 0;
}
.main-page__item--desc {
  max-width: 250px;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  font-size: 16px;
  line-height: 1.3;
  color: #868686;
  margin: 20px 0 25px;
  transition-duration: 0.15s;
}
.main-page__item--arrow {
  width: 51px;
  background-position: 100% 50%;
  background-repeat: no-repeat;
  height: 21px;
  background-image: url(../../img/new/svg/main/arrow.svg);
  margin-top: auto;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  position: relative;
}
.main-page__item--arrow::before {
  content: "";
  position: absolute;
  right: 2px;
  left: 0;
  top: 0;
  bottom: 0;
  height: 2px;
  display: block;
  background-color: #17a866;
  margin: auto;
  border-radius: 2px;
}

@media (max-width: 767.98px) {
  .main-page__title {
    font-size: calc(22px + 10 * (100vw - 320px) / 850);
  }
}
@media (max-width: 991.98px) {
  .main-page__wrapper {
    -ms-grid-columns: 1fr [2];
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .main-page__wrapper {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
@media (max-width: 991.98px) {
  .main-page__item {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}
@media (max-width: 991.98px) {
  .main-page__item:not(:first-child):not(:nth-child(2)) > img {
    top: 10px;
    right: 10px;
  }
}
@media (max-width: 991.98px) {
  .main-page__item:first-child, .main-page__item:nth-child(2) {
    grid-column: initial;
  }
}
@media (max-width: 991.98px) {
  .main-page__item:first-child > img, .main-page__item:nth-child(2) > img {
    max-width: 120px;
    right: 0;
  }
}
@media (max-width: 991.98px) {
  .main-page__item:first-child .main-page__item--title, .main-page__item:nth-child(2) .main-page__item--title {
    font-size: 24px;
  }
}
.pacient.form-main .form-main__img {
  width: 295px;
  height: 295px;
  margin-right: 140px;
}
.pacient.form-main .form-main .elipse-1 {
  width: 427px;
  height: 427px;
}
.pacient.form-main .form-main .point-1::before {
  top: 34px;
}

.services-center__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [3];
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.services-center__item {
  border-radius: 15px;
  background: #fff;
  -webkit-box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
  text-decoration: none;
  color: initial;
}
.services-center__item:hover .services__detail::after {
  width: 63px;
}
.services-center__img {
  height: 150px;
  border-radius: 15px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.services-center__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.services-center__bottom {
  padding: 25px;
}
.services-center__bottom-text {
  margin-top: auto;
}
.services-center__title {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.services-center__desc {
  font-size: 14px;
  line-height: 1.3;
  color: #9b9b9b;
}

.services-pacient__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.services-pacient__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 25px 25px 0;
  text-decoration: none;
  color: initial;
  background: #fff;
  -webkit-box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
  overflow: hidden;
}
.services-pacient__item:hover .services__detail::after {
  width: 64px;
}
.services-pacient__item > img {
  margin-left: -25px;
  width: calc(100% + 50px);
  border-radius: 15px 15px 0 0;
}
.services-pacient__title {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 7px;
}
.services-pacient .services__detail {
  margin-bottom: 20px;
}

.top-pac .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top-pac__text {
  width: 570px;
  margin-right: 80px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.top-pac .form-main__img {
  width: 398px;
  height: 398px;
}
.top-pac .form-main .elipse-2 {
  width: 760px;
  height: 760px;
}
.top-pac .form-main__fields {
  margin-top: 20px;
}
.top-pac .form-main__btns {
  margin-top: 30px;
}
.top-pac .t-form {
  font-weight: 600;
  margin-top: 10px;
  font-size: 22px;
}

.time-procedures ul {
  padding: 0;
  margin: 30px 0 0;
  list-style-type: none;
}
.time-procedures ul li {
  font-size: 16px;
  line-height: 1.3;
}
.time-procedures ul li + li {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #c4f0dc;
}

.pacient-slider .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.pacient-slider__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.pacient-slider__slider {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 430px;
  flex: 0 0 430px;
  overflow: hidden;
  margin-left: 65px;
  position: relative;
  margin-top: 30px;
}
.pacient-slider__init {
  overflow: hidden;
}
.pacient-slider .next,
.pacient-slider .prev {
  width: 56px;
  height: 56px;
  border-radius: 100%;
  border: 1px solid #17a866;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}
.pacient-slider .next {
  background-color: #fff;
}
.pacient-slider .prev {
  background-color: #17a866;
}
.pacient-slider__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
}
.pacient-slider__arrows * + * {
  margin-left: 10px;
}
.pacient-slider .swiper-slide img {
  width: 430px;
  height: 430px;
  border-radius: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.pac-list__wrapper {
  margin: 0;
  padding: 0;
  list-style-type: none;
  counter-reset: num;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 0 30px;
}
.pac-list__wrapper li {
  font-size: 16px;
  line-height: 1.3;
  counter-increment: num;
  padding: 12px 0;
  border-bottom: 1px solid #c4f0dc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pac-list__wrapper li::before {
  content: counter(num) ".";
  font-weight: 700;
  display: inline-block;
  margin-right: 5px;
  min-width: 25px;
}
.pac-list__wrapper li:nth-child(-n+9)::before {
  content: "0" counter(num) ".";
}

.partners__wrapper.partners__wrapper-3 {
  -ms-grid-columns: 1fr [3];
  grid-template-columns: repeat(3, 1fr);
}
.partners__wrapper.partners__wrapper-3 .partners__item:not(:last-child)::after {
  width: 80px;
}

.big-prices {
  margin: 140px 0;
  position: relative;
}
.big-prices__wrapper {
  position: relative;
}
.big-prices__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.big-prices__row .univer-about__counter {
  min-width: 360px;
}
.big-prices__row .univer-about__counter + .univer-about__counter {
  margin: 0;
}
.big-prices__row + div {
  margin-top: 65px;
}
.big-prices .form-main__img {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  width: 318px;
  height: 318px;
  z-index: -1;
}
.big-prices .form-main .elipse-1 {
  width: 423px;
  height: 423px;
}
.big-prices .form-main .elipse-2 {
  width: 784px;
  height: 784px;
}
.big-prices .form-main .point-1::before {
  width: 11px;
  height: 11px;
  top: 38px;
}
.big-prices .form-main .point-2::before {
  width: 28px;
  height: 28px;
  top: 32px;
}
.big-prices .form-main .point-3::before {
  top: 69px;
}

.counter-list {
  margin: 25px 0 0;
  list-style-type: none;
  padding: 0;
  counter-reset: num;
}
.counter-list li {
  font-size: 22px;
  line-height: 1.3;
  counter-increment: num;
  position: relative;
  padding-left: 89px;
}
.counter-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 40px;
  background: #f1f1f1;
  border-radius: 10px;
}
.counter-list li::after {
  content: counter(num);
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 1px solid #17a866;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 26px;
  color: #17a866;
  background-color: rgba(23, 168, 102, 0.2);
}
.counter-list li + li {
  margin-top: 50px;
}
.counter-list li b {
  font-weight: 600;
}

.ruc-main .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-columns: 1fr [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.ruc-main__item {
  background: #fff;
  -webkit-box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
  padding: 35px 190px 35px 40px;
  position: relative;
  min-height: 420px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.ruc-main__item > img {
  position: absolute;
  right: 40px;
  top: 75px;
  max-width: 190px;
  max-height: 250px;
  z-index: 1;
}
.ruc-main__title {
  line-height: 1.3;
  font-weight: 600;
  font-size: 42px;
}
.ruc-main__desc {
  font-size: 16px;
  margin-top: 20px;
  color: #868686;
  line-height: 1.3;
  margin-bottom: 30px;
}
.ruc-main__desc-price {
  font-size: 20px;
  line-height: 1;
  color: #17a866;
  margin-bottom: 35px;
  margin-top: 6px;
}
.ruc-main__bottom {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.ruc-main__price {
  font-weight: 600;
  font-size: 42px;
  line-height: 1;
}

.main-about .big-title {
  color: #17a866;
  font-size: 102px;
}

.big-title-main {
  font-size: 102px;
  color: #17a866;
  font-weight: 600;
  line-height: 1;
}

.video-images .t-form {
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
}
.video-images .form-main__btns {
  margin-top: 30px;
}
.video-images .form-main__fields {
  margin-top: 20px;
}

.goal__text .s-title {
  margin-bottom: 30px;
}

.community {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 20px;
}
.community .btn-2 {
  width: 100%;
  margin-top: 20px;
}
.community h1 {
  font-size: 62px;
  margin: 0;
}
.community__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.community__author-image {
  width: 90px;
  height: 90px;
  margin-right: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.community__author-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 100%;
}
.community__author-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.community__author-text b {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}
.community__author-text span {
  font-size: 16px;
  color: #a4a4a4;
  line-height: 1.2;
  margin-top: 10px;
}
.community__rating {
  margin-top: 40px;
  padding: 15px 35px 15px 70px;
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
}
.community__rating::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 46px;
  height: 46px;
  background-image: url(../../img/new/svg/rating.svg);
  background-size: 100%;
  display: block;
}
.community__rating-value {
  color: #17a866;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}
.community__rating-desc {
  color: #a4a4a4;
  font-size: 16px;
  line-height: 1;
  margin-top: 10px;
}
.community__posts {
  margin: 0 10px;
  padding: 24px 0 0;
  list-style-type: none;
}
.community__posts li + li {
  margin-top: 10px;
}
.community__posts li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: 600;
  font-size: 16px;
  color: initial;
  text-decoration: none;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
}
.community__posts li a:hover {
  color: #17a866;
}
.community__posts li a span {
  color: #d2d2d2;
}
.community__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 0 0;
  padding: 0;
  list-style-type: none;
}
.community__nav li + li {
  margin-left: 20px;
}
.community__nav li a {
  opacity: 0.4;
  font-size: 16px;
  font-weight: 600;
  color: initial;
  text-decoration: none;
}
.community__nav li .active {
  opacity: 1;
  border-bottom: 1px solid #17a866;
}
.community__grid {
  margin-top: 30px;
}
.community__post {
  padding: 22px 30px;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 15px;
}
.community__post:not(:last-child) {
  margin-bottom: 40px;
}
.community__post a {
  color: initial;
  text-decoration: none;
}
.community__post-title {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.community__post-img {
  height: 200px;
  border-radius: 5px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
}
.community__post-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.community__post-desc {
  color: #7d7d7d;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 23px;
}
.community__post-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.community__post-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.community__post-link {
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: initial;
}
.community__post-link span {
  margin-left: 9px;
  font-size: 14px;
}
.community__post-link + a {
  margin-left: 20px;
}
.community__login::before {
  background-image: url(../../img/new/svg/user.svg);
}
.community__login-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}
.community__login-desc {
  margin: 13px 0 0;
  font-size: 16px;
  line-height: 1.3;
  color: #afafaf;
}
.community__login-form {
  margin-top: 23px;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 15px;
  padding: 18px;
}
.community__login-field {
  position: relative;
}
.community__login-field::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background-size: 100%;
  z-index: 2;
  pointer-events: none;
}
.community__login-field input {
  border: none;
  font-size: 16px;
  line-height: 1;
  width: 100%;
  position: relative;
  padding-left: 45px;
}
.community__login-field input::-webkit-input-placeholder {
  color: #868686;
}
.community__login-field input::-moz-placeholder {
  color: #868686;
}
.community__login-field input:-ms-input-placeholder {
  color: #868686;
}
.community__login-field input::-ms-input-placeholder {
  color: #868686;
}
.community__login-field input::placeholder {
  color: #868686;
}
.community__login-field + div {
  margin-top: 30px;
  position: relative;
}
.community__login-field + div::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -15px;
  border-top: 1px solid #eaeaea;
}
.community__login-forget {
  margin-top: 10px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  color: #bdbdbd;
  text-decoration: none;
}
.community__login-register {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  color: #17a866;
}
.community .password::before {
  background-image: url(../../img/new/svg/login.svg);
}
.community__single-post h1 {
  font-size: 42px;
  margin-bottom: 1rem;
}
.community__single-post .community__post-links {
  margin-top: 2rem;
}
.community__single-img img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}
.community__single-date {
  color: #afafaf;
  font-size: 14px;
  margin: 15px 0;
}

.padding-content {
  padding-bottom: 90px;
}

.main-about {
  margin-top: 130px;
}
.main-about .big-title {
  line-height: 1;
}
.main-about .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-about .container > * + * {
  margin-left: 75px;
}
.main-about .container .s-title {
  margin-bottom: 35px;
}
.main-about__text {
  width: 470px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-top: 20px;
}
.main-about__text + .main-about__circle {
  margin-right: -70px;
}
.main-about__circle {
  width: 755px;
  height: 755px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.main-about__circle-text {
  border-radius: 100%;
  background: #fff;
  -webkit-box-shadow: 6px 6px 40px rgba(0, 0, 0, 0.16);
  box-shadow: 6px 6px 40px rgba(0, 0, 0, 0.16);
  padding: 10px;
  position: absolute;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}
.main-about .text-1 {
  left: 50px;
  top: 60px;
  width: 173px;
  height: 173px;
}
.main-about .text-2 {
  top: 90px;
  right: 260px;
  width: 115px;
  height: 115px;
}
.main-about .text-3 {
  top: 212px;
  right: 65px;
  width: 155px;
  height: 155px;
}
.main-about .text-4 {
  top: 326px;
  left: 15px;
  width: 125px;
  height: 125px;
}
.main-about .text-5 {
  bottom: 70px;
  left: 42px;
  width: 157px;
  height: 157px;
}
.main-about .text-6 {
  right: 198px;
  bottom: 40px;
  width: 167px;
  height: 167px;
}
.main-about .text-7 {
  bottom: 175px;
  right: 65px;
  width: 93px;
  height: 93px;
}
.main-about__c-1 {
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.main-about .point-1 {
  -webkit-animation-duration: 42s;
  animation-duration: 42s;
}
.main-about .point-1::before {
  top: 101px;
  right: 101px;
  width: 17px;
  height: 17px;
}
.main-about .point-2 {
  -webkit-animation-duration: 25s;
  animation-duration: 25s;
}
.main-about .point-2::before {
  top: 103px;
  left: 103px;
  width: 13px;
  height: 13px;
}
.main-about .point-3 {
  -webkit-animation-duration: 25s;
  animation-duration: 25s;
}
.main-about .point-3::before {
  top: 80px;
  right: 80px;
  width: 13px;
  height: 13px;
}
.main-about .point-4 {
  -webkit-animation-duration: 35s;
  animation-duration: 35s;
}
.main-about .point-4::before {
  top: 70px;
  left: 70px;
  width: 35px;
  height: 35px;
}
.main-about .point-5 {
  -webkit-animation-duration: 42s;
  animation-duration: 42s;
}
.main-about .point-5::before {
  top: -29px;
  right: -29px;
  width: 17px;
  height: 17px;
}
.main-about .point-6 {
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
}
.main-about .point-6::before {
  top: -37px;
  left: -37px;
  width: 35px;
  height: 35px;
}
.main-about__c-2 {
  left: 80px;
  right: 80px;
  top: 80px;
  bottom: 80px;
}
.main-about__c-3 {
  border: 85px solid #abeacd !important;
  width: 440px;
  height: 440px;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.main-about__center {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-decoration: none;
}
.main-about__center-text {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 9px;
  text-decoration: none;
  color: initial;
}
.main-about__center-text b {
  font-size: 22px;
}
.main-about__play {
  width: 103px;
  height: 103px;
  border-radius: 100%;
  background: #17a866;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
}
.main-about__play::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 0 18px 30px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  margin-left: 5px;
}
.main-about .circle-border {
  border: 1px solid #abeacd;
  position: absolute;
  border-radius: 100%;
}

@media (max-width: 1199.98px) {
  .main-about {
    margin-top: 50px;
  }
}
@media (max-width: 767.98px) {
  .main-about {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1199.98px) {
  .main-about .big-title {
    font-size: 52px;
  }
}
@media (max-width: 767.98px) {
  .main-about .big-title {
    font-size: calc(26px + 12 * (100vw - 320px) / 850);
  }
}
@media (max-width: 1199.98px) {
  .main-about .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 1199.98px) {
  .main-about .container > * + * {
    margin-left: 0;
    margin-top: 30px;
  }
}
@media (max-width: 767.98px) {
  .main-about .container .s-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 1199.98px) {
  .main-about__text {
    width: 100%;
  }
}
@media (max-width: 1199.98px) {
  .main-about__text + .main-about__circle {
    margin-right: 0;
  }
}
@media (max-width: 767.98px) {
  .main-about__circle {
    display: none;
  }
}
.main-about-2 {
  margin-top: 80px;
}
.main-about-2 .container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main-about-2 .main-about__circle {
  margin-left: -100px;
}

.form-main .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.form-main__big-title {
  font-size: 62px;
  line-height: 1;
  color: #17a866;
  font-weight: 800;
}
.form-main__big-desc {
  font-size: 22px;
  line-height: 1.3;
  margin-top: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 65px;
}
.form-main__big-desc::before {
  content: "";
  width: 51px;
  background-position: center;
  background-size: 100%;
  height: 20px;
  background-image: url(../../img/new/svg/big-arrow.svg);
  display: inline-block;
  margin-right: 23px;
}
.form-main__img {
  width: 438px;
  height: 438px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #abeacd;
  border-radius: 100%;
}
.form-main__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 100%;
  position: relative;
  z-index: 3;
}
.form-main .elipse {
  border: 1px solid #abeacd;
  position: absolute;
  border-radius: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: -1;
}
.form-main .elipse-1 {
  width: 584px;
  height: 584px;
}
.form-main .elipse-2 {
  width: 800px;
  height: 800px;
}
.form-main .point-1 {
  -webkit-animation-duration: 35s;
  animation-duration: 35s;
}
.form-main .point-1::before {
  top: 77px;
  right: 77px;
  width: 15px;
  height: 15px;
}
.form-main .point-2 {
  -webkit-animation-duration: 55s;
  animation-duration: 55s;
}
.form-main .point-2::before {
  top: 66px;
  left: 66px;
  width: 39px;
  height: 39px;
}
.form-main .point-3 {
  -webkit-animation-duration: 35s;
  animation-duration: 35s;
}
.form-main .point-3::before {
  top: 110px;
  right: 110px;
  width: 13px;
  height: 13px;
}
.form-main__info {
  width: 570px;
}
.form-main__title {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.3;
}
.form-main__desc {
  margin-top: 16px;
  font-size: 18px;
  line-height: 174%;
}
.form-main__fields {
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  margin-top: 35px;
  height: 70px;
}
.form-main__fields > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.form-main__fields > * + ::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background-color: #abeacd;
  display: block;
}
.form-main__input {
  position: relative;
  height: 100%;
  padding-left: 30px;
  padding-right: 25px;
  width: 33.3%;
  display: flex;
}
.form-main__input::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 24px;
  height: 24px;
  background-size: 100%;
  background-repeat: no-repeat;
}
.form-main__input* {
  height: 100%;
}
.form-main__input input {
  width: 100%;
  border: none;
  font-size: 16px;
}
.form-main__input input::-webkit-input-placeholder {
  color: #868686;
}
.form-main__input input::-moz-placeholder {
  color: #868686;
}
.form-main__input input:-ms-input-placeholder {
  color: #868686;
}
.form-main__input input::-ms-input-placeholder {
  color: #868686;
}
.form-main__input input::placeholder {
  color: #868686;
}
.form-main .phone::after {
  background-image: url(../../img/new/svg/stomatolog/phone.svg);
}
.form-main .date::after {
  background-image: url(../../img/new/svg/stomatolog/calendar.svg);
}
.form-main .user::after {
  background-image: url(../../img/new/svg/stomatolog/user.svg);
}
.form-main__btns {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.form-main__btns .btn-2 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 18px;
}
.form-main__check {
  color: #bbb;
  font-size: 14px;
  line-height: 1.5;
}
.form-main__check a {
  color: #bbb;
  text-decoration: underline;
}
.form-main.mini {
  width: 365px;
  height: 365px;
}
.form-main.mini .elipse-1 {
  width: 540px;
  height: 540px;
}
.form-main.mini .elipse-2 {
  width: 700px;
  height: 700px;
}
.form-main.mini .point-1::before {
  width: 32px;
  height: 32px;
  left: 0;
  top: 163px;
}
.form-main.mini .point-3::before {
  width: 45px;
  height: 45px;
  left: 80px;
  top: 80px;
}

@media (max-width: 1199.98px) {
  .form-main__img {
    width: 340px;
    height: 340px;
  }
}
@media (max-width: 767.98px) {
  .form-main__img {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .form-main__info {
    width: 100%;
    max-width: 570px;
  }
}
@media (max-width: 767.98px) {
  .form-main__fields {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .form-main__input input {
    height: 40px;
  }
}
@media (max-width: 767.98px) {
  .form-main__btns {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .form-main__check {
    margin-top: 10px;
  }
}
.services .container {
  position: relative;
}
.services .container .form-main__img {
  position: absolute;
  right: -200px;
  top: -50px;
  z-index: -1;
}
.services__wrapper {
  margin-top: 30px;
  display: -ms-grid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.services__item {
  padding: 30px 20px;
  background: #fff;
  -webkit-box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-decoration: none;
  color: initial;
}
.services__item:hover .services__title {
  color: #17a866;
}
.services__item:hover .services__detail::after {
  width: 63px;
}
.services__icon {
  height: 85px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 35px;
}
.services__icon img {
  max-width: 100%;
  max-height: 100%;
}
.services__text {
  margin-top: auto;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.services__title {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  color: #363636;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
}
.services__desc {
  margin: 17px 0 30px;
  font-size: 16px;
  color: #868686;
}
.services__detail {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: auto;
  font-size: 16px;
  color: #17a866;
  font-weight: 600;
  position: relative;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.services__detail::after {
  content: "";
  width: 32px;
  height: 1px;
  display: inline-block;
  background-color: #17a866;
  margin-left: 11px;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
}
.services__detail::before {
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  height: 8px;
  width: 5px;
  background-image: url(../../img/new/svg/main/arrow.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  margin: auto;
}
.services + .services {
  margin-top: 120px;
}

@media (max-width: 1199.98px) {
  .services__wrapper {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .services__wrapper {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .services__item {
    padding: 20px;
  }
}
@media (max-width: 767.98px) {
  .services__icon {
    height: 40px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767.98px) {
  .services__desc {
    margin: 10px 0 20px;
  }
}
@media (max-width: 991.98px) {
  .services + .services {
    margin-top: 70px;
  }
}
@media (max-width: 767.98px) {
  .services + .services {
    margin-top: 40px;
  }
}
.contacts {
  margin-top: 150px;
}
.contacts .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contacts__map {
  width: 548px;
  height: 548px;
  margin-left: -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 97px;
}
.contacts__map .elipse {
  position: absolute;
  width: 634px;
  height: 634px;
  border: 1px solid #abeacd;
  border-radius: 100%;
}
.contacts__map .elipse .point {
  -webkit-animation-duration: 35s;
  animation-duration: 35s;
}
.contacts__map .elipse .point::before {
  top: 85px;
  right: 85px;
  width: 15px;
  height: 15px;
}
.contacts__map #map {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  overflow: hidden;
}
.contacts__text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  z-index: 3;
}
.contacts__info {
  padding: 30px 40px;
  background: #fff;
  -webkit-box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
  margin-top: 65px;
  width: calc(100% + 140px);
  margin-left: -140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contacts__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.contacts__title {
  font-weight: 600;
  font-size: 32px;
}
.contacts__city-wrap {
  margin-bottom: 20px;
}
.contacts__city-wrap span {
  font-size: 14px;
  color: #868686;
  line-height: 1;
}
.contacts__city-title {
  font-size: 26px;
  line-height: 1;
  padding-bottom: 7px;
  margin-top: 2px;
  border-bottom: 1px dashed #000;
  cursor: pointer;
}
.contacts a.btn {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.contacts__right {
  margin-left: 110px;
}
.contacts__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.contacts__row + div {
  margin-top: 20px;
}
.contacts__t-row {
  color: #868686;
  font-size: 14px;
}
.contacts__c-row {
  display: inline-block;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  color: initial;
}

@media (max-width: 991.98px) {
  .contacts {
    margin-top: 100px;
  }
}
@media (max-width: 767.98px) {
  .contacts {
    margin-top: 40px;
  }
}
@media (max-width: 1199.98px) {
  .contacts__map {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 991.98px) {
  .contacts__map {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .contacts__info {
    margin-left: 0;
    margin-top: 30px;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .contacts__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
  }
}
@media (max-width: 767.98px) {
  .contacts__right {
    margin: 30px 0 0;
  }
}
a[href^="http://maps.google.com/maps"] {
  display: none !important;
}

a[href^="https://maps.google.com/maps"] {
  display: none !important;
}

.gm-style-cc,
.gmnoprint a,
.gmnoprint span {
  display: none;
}

.gmnoprint div {
  background: 0 0 !important;
}

blockquote {
  -webkit-box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
  padding: 12px 20px;
  margin: 30px 40px 30px -15px;
}
blockquote p {
  line-height: 1.3;
}
blockquote p:last-child {
  margin-bottom: 0;
}

.univer-about ol {
  margin: 35px 0;
  padding: 0;
  counter-reset: section;
}
.univer-about ol li {
  list-style-type: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 174%;
  color: #17a866;
  counter-increment: section;
}
.univer-about ol li::before {
  content: counter(section);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid #17a866;
  background-color: #d1eee0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 15px;
  font-size: 22px;
}
.univer-about ol li + li {
  margin-top: 15px;
}
.univer-about .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.univer-about__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: 600px;
}
.univer-about__text p:last-child {
  margin-bottom: 0;
}
.univer-about .form-main__img {
  margin-top: 50px;
  margin-left: 125px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 515px;
  height: 515px;
}
.univer-about .elipse-1 {
  width: 685px;
  height: 685px;
}
.univer-about .elipse-2 {
  width: 1270px;
  height: 1270px;
}
.univer-about .point-3::before {
  top: 179px;
  right: 178px;
}
.univer-about .point-1::before {
  top: 260px;
  right: 0;
}
.univer-about .point-2::before {
  top: 98px;
  right: 0;
}
.univer-about .s-title {
  margin-bottom: 40px;
}
.univer-about__img {
  width: 290px;
  height: 290px;
  border-radius: 100%;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 200px 0 90px;
}
.univer-about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.univer-about__counters {
  width: 450px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 100px;
}
.univer-about__counter + .univer-about__counter {
  margin-top: 50px;
}
.univer-about__counter-title {
  font-weight: 600;
  font-size: 56px;
  line-height: 1;
  color: #17a866;
}
.univer-about__counter-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
}
.univer-about__counter-desc .main-page__item--arrow {
  margin-top: 0;
  margin-right: 20px;
}

.video-images .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.video-images .elipse-1 {
  width: 498px;
  height: 498px;
  position: relative;
  margin-left: 80px;
  z-index: 30;
}
.video-images .elipse-1 .point-1::before {
  left: 0;
  top: 175px;
}
.video-images .elipse-1 .point-2::before {
  left: 0;
  top: 130px;
}
.video-images .elipse-1 .img-1 {
  width: 325px;
  height: 325px;
  border-radius: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: -41px;
  left: -23px;
}
.video-images .elipse-1 .img-2 {
  width: 255px;
  height: 255px;
  border-radius: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  bottom: -34px;
  right: -25px;
}
.video-images .elipse-1 .play {
  width: 159px;
  height: 150px;
  border-radius: 100%;
  background-color: #fff;
  -webkit-box-shadow: 6px 6px 40px rgba(0, 0, 0, 0.16);
  box-shadow: 6px 6px 40px rgba(0, 0, 0, 0.16);
  position: absolute;
  left: 0;
  bottom: 0;
}
.video-images .elipse-1 .play::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  border-style: solid;
  border-width: 22px 0 22px 35px;
  border-color: transparent transparent transparent #17a866;
}

.tab-table__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 45px;
}
.tab-table__nav {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 370px;
  flex: 0 0 370px;
  margin-right: 30px;
  background: #fff;
  -webkit-box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
  padding: 40px 30px;
}
.tab-table__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.tab-table__search {
  position: relative;
}
.tab-table__search::after {
  content: "";
  background-image: url(../../img/new/svg/main/search.svg);
  background-size: 32px;
  width: 54px;
  height: 54px;
  border-radius: 100%;
  background-position: 50%;
  background-repeat: no-repeat;
  display: block;
  background-color: #17a866;
  position: absolute;
  right: 9px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}
.tab-table__search input {
  width: 100%;
  padding: 0 70px 0 30px;
  background: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 35px;
  height: 70px;
  font-size: calc(14px + 2 * (100vw - 320px) / 850);
}
.tab-table__search input::-webkit-input-placeholder {
  color: #868686;
}
.tab-table__search input::-moz-placeholder {
  color: #868686;
}
.tab-table__search input:-ms-input-placeholder {
  color: #868686;
}
.tab-table__search input::-ms-input-placeholder {
  color: #868686;
}
.tab-table__search input::placeholder {
  color: #868686;
}
.tab-table ul.tabs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.tab-table ul.tabs li {
  background: 0 0;
  cursor: pointer;
  position: relative;
  padding-left: 47px;
  min-height: 30px;
  font-weight: 600;
  font-size: calc(16px + 2 * (100vw - 320px) / 850);
  line-height: 1.3;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.tab-table ul.tabs li::after, .tab-table ul.tabs li::before {
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  opacity: 0;
  visibility: hidden;
}
.tab-table ul.tabs li::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 1px;
  background-color: #17a866;
  margin-left: 15px;
}
.tab-table ul.tabs li::before {
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  width: 5px;
  height: 8px;
  background-image: url(../../img/new/svg/main/arrow.svg);
  margin: auto;
  background-size: 100%;
  background-repeat: no-repeat;
}
.tab-table ul.tabs li + li {
  margin-top: 20px;
}
.tab-table ul.tabs li img {
  max-width: 30px;
  max-height: 30px;
  margin-right: 17px;
  position: absolute;
  left: 0;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-filter: brightness(0) opacity(0.25);
  filter: brightness(0) opacity(0.25);
}
.tab-table ul.tabs li.current::after, .tab-table ul.tabs li.current::before {
  opacity: 1;
  visibility: visible;
}
.tab-table ul.tabs li.current img {
  -webkit-filter: none;
  filter: none;
}
.tab-table .tab-content {
  display: none;
  margin-top: 45px;
}
.tab-table .tab-content.current {
  display: inherit;
}
.tab-table .table {
  width: 100%;
  border-collapse: collapse;
}
.tab-table .table th {
  font-size: calc(14px + 3 * (100vw - 320px) / 850);
  font-weight: 600;
}
.tab-table .table td {
  font-size: 14px;
  vertical-align: top;
}
.tab-table .table td a {
  color: #17a866;
  text-decoration: none;
}
.tab-table .table tr {
  border-bottom: 1px solid #abeacd;
}
.tab-table .table td,
.tab-table .table th {
  line-height: 1.4;
  padding: 20px;
}

.teachers__slider {
  overflow: hidden;
  margin-top: 40px;
}

.teacher__photo {
  height: 239px;
  width: 239px;
  border: 1px solid #abeacd;
  border-radius: 100%;
  position: relative;
}
.teacher__photo::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 55px;
  background: #17a866;
  width: 22px;
  height: 22px;
  border-radius: 100%;
}
.teacher__photo img {
  position: absolute;
  right: 0;
  top: 0;
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 100%;
}
.teacher__text {
  margin-top: -20px;
  position: relative;
}
.teacher__name {
  font-size: calc(18px + 3 * (100vw - 320px) / 850);
}
.teacher__work {
  margin: 14px 0 0;
  color: #afafaf;
  font-size: calc(14px + 3 * (100vw - 320px) / 850);
  line-height: 1.4;
}

.next-green,
.prev-green {
  width: 55px;
  height: 55px;
  border-radius: 100%;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #17a866;
}

.prev-green {
  left: -27px;
}

.next-green {
  right: -27px;
}

.autor-section .s-title {
  margin-bottom: 10px;
}

.autor-name {
  font-size: 22px;
  line-height: 1.2;
  color: #17a866;
}

.single-quote {
  position: relative;
  padding-left: 89px;
  margin: 40px 0 0;
}
.single-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  width: 69px;
  height: 69px;
  background-image: url(../../img/new/svg/quote.svg);
}

.univer-about.autor-section .form-main__img {
  width: 438px;
  height: 438px;
  position: relative;
  margin-left: 200px;
}
.univer-about.autor-section .elipse-1 {
  width: 584px;
  height: 584px;
}
.univer-about.autor-section .point-1::before {
  top: 215px;
}
.univer-about.autor-section .point-2::before {
  top: 70px;
}
.univer-about.autor-section .play {
  position: absolute;
  left: -140px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
  -webkit-box-shadow: 6px 6px 40px rgba(0, 0, 0, 0.16);
  box-shadow: 6px 6px 40px rgba(0, 0, 0, 0.16);
  width: 216px;
  height: 216px;
  border-radius: 100%;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.univer-about.autor-section .play::before {
  content: "";
  border-style: solid;
  margin-left: 5px;
  border-width: 42px 0 42px 75px;
  border-color: transparent transparent transparent #17a866;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.autors-prems__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}
.autors-prems__item {
  padding: 50px;
  -webkit-box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  box-shadow: 12px 12px 60px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.autors-prems__item p {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
}
.autors-prems__icon {
  width: 90px;
  height: 90px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 60px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.autors-prems__icon img {
  max-width: 100%;
  max-height: 100%;
}

.single-slider {
  margin-top: 20px;
  overflow: hidden;
}
.single-slider__slide {
  padding: 55px 55px 0 55px;
  background: #f5f5f5;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 380px;
}
.single-slider__text {
  max-width: 350px;
}
.single-slider__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.single-slider__top .status + .price {
  margin-left: 15px;
}
.single-slider__title {
  font-size: calc(22px + 20 * (100vw - 320px) / 850);
  font-weight: 600;
  line-height: 1;
  margin-top: 30px;
}
.single-slider__desc {
  font-size: 18px;
  line-height: 150%;
  margin-top: 20px;
}
.single-slider__btn {
  margin-top: 30px;
}
.single-slider__image {
  width: 535px;
  margin-left: 50px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.single-slider__image::before {
  content: "";
  position: absolute;
  height: 195px;
  background: #fff;
  border-radius: 98px;
  left: 75px;
  top: 59px;
  right: -94px;
}
.single-slider__image img {
  max-width: 100%;
  position: relative;
}
.single-slider .swiper-pagination-bullets {
  margin-top: 5px;
}

.status {
  height: 32px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  background: #53abec;
  border-radius: 20px;
  color: #fff;
  padding: 0 25px;
}

.price {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}

.sale-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.sale-wrapper .price {
  color: #dd4343;
}

.old-price {
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 5px;
}

.swiper-pagination-bullet {
  background-color: #17a866;
}

.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 15px;
}

.swiper-pagination-bullets {
  text-align: center;
}

.products-slider ul.tabs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.products-slider ul.tabs li {
  cursor: pointer;
  font-size: calc(22px + 10 * (100vw - 320px) / 850);
  opacity: 0.3;
  font-weight: 600;
}
.products-slider ul.tabs li + li {
  margin-left: 30px;
}
.products-slider ul.tabs li.current {
  opacity: 1;
}
.products-slider .tab-content {
  display: none;
}
.products-slider .tab-content.current {
  display: inherit;
}
.products-slider__wrapper {
  margin-top: 25px;
  position: relative;
}
.products-slider__init {
  overflow: hidden;
}

.catalog-section__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [4];
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 25px;
}

.brands__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [7];
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 25px;
}
.brands_item {
  border-radius: 15px;
  border: 1px solid #eaecee;
  padding: 5px;
  height: 65px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
}
.brands_item img {
  max-width: 100%;
  height: auto;
}

.zub {
  margin: 145px 0 0;
}
.zub .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.zub__text {
  width: 550px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 90px;
}
.zub__text .s-title {
  margin-bottom: 55px;
}
.zub .form-main {
  position: relative;
  margin-top: 170px;
}
.zub .form-main__img {
  width: 360px;
  height: 360px;
}
.zub .form-main .elipse-1 {
  width: 480px;
  height: 480px;
}
.zub .form-main .point-1::before {
  width: 12px;
  height: 12px;
  top: 52px;
}
.zub .form-main .point-2::before {
  width: 32px;
  height: 32px;
  top: 42px;
}
.zub .form-main .elipse-2 {
  width: 885px;
  height: 885px;
}
.zub .form-main .point-3::before {
  top: 98px;
  width: 12px;
  height: 12px;
}

.form-main__top-img {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 30px;
  top: -287px;
  z-index: 5;
}
.form-main__top-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.list-icon__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  background: #f1f1f1;
  border-radius: 10px;
  margin-right: 48px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.list-icon__icon img {
  position: absolute;
  max-height: 100%;
  max-width: 100%;
  right: -20px;
}
.list-icon__item {
  font-size: 22px;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.list-icon__item + div {
  margin-top: 50px;
}

.services-pacient__item > img.mobile-image {
  display: none;
}

.mobile-footer {
  padding-bottom: 25px;
  display: none;
  margin-top: 65px;
}
.mobile-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.mobile-footer__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-footer__soc {
  display: flex;
  align-items: center;
}
.mobile-footer__soc a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #F8F8FB;
}
.mobile-footer__soc a img {
  max-width: 100%;
  max-height: 100%;
}
.mobile-footer__soc a + a {
  margin-left: 14px;
}
.mobile-footer__logo img {
  width: 115px;
  height: auto;
}
.mobile-footer__menu {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.mobile-footer__menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: grid;
  gap: 20px;
  font-size: 0;
}
.mobile-footer__menu a {
  display: inline-flex;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: #222222;
  text-decoration: none;
}
.mobile-footer__menu a:hover {
  color: #222222;
}
.mobile-footer__polyt {
  margin-top: 10px;
  font-size: 12px;
  line-height: 16px;
  text-decoration-line: underline;
  color: #17A866;
}
.mobile-footer__copy {
  margin-top: 45px;
  font-size: 12px;
  color: #AFAFAF;
  line-height: 1.2;
}

.mobile-3d {
  position: relative;
}
.mobile-3d__image {
  position: absolute;
  top: 0;
  right: -280px;
  width: 427px;
  height: 427px;
  border: 1px solid #E5E5EF;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-3d__image::before {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  background: #17A866;
  border-radius: 100%;
}
.mobile-3d__image::after {
  content: "";
  position: absolute;
  left: 75px;
  top: 27px;
  background: #17A866;
  box-shadow: 0 4px 10px rgba(23, 168, 102, 0.0033);
  width: 26px;
  height: 26px;
  border-radius: 100%;
}
.mobile-3d__image-wrapper {
  position: absolute;
  left: 0;
  overflow: hidden;
  top: 0;
  width: calc(100% + 10px);
  height: 600px;
}
.mobile-3d__wrapper {
  position: relative;
}
.mobile-3d__info {
  position: relative;
  z-index: 2;
}
.mobile-3d__desc {
  font-size: 14px;
  color: #222222;
  margin: 25px 0;
}

.mobile-get__item {
  position: relative;
  width: calc(100% + 20px);
  margin-left: -10px;
  background: #F8F8FB;
  border-radius: 0 74px 0 45px;
  padding: 30px 25px 20px;
}
.mobile-get__item + .mobile-get__item {
  margin-top: 25px;
}
.mobile-get__icon {
  width: 132px;
  height: 132px;
  border-radius: 100%;
  border: 1px solid #E5E5EF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: -40px;
}
.mobile-get__icon::before {
  content: "";
  position: absolute;
  width: 84px;
  height: 84px;
  border-radius: 100%;
  border: 1px solid #E5E5EF;
}
.mobile-get__icon img {
  position: relative;
}
.mobile-get__desc {
  font-size: 14px;
  color: #828792;
  margin: 15px 0 0;
}
.mobile-get__title {
  min-height: 56px;
  padding-right: 140px;
  font-weight: 800;
  font-size: 20px;
  color: #222222;
  line-height: 1.3;
  margin: 0;
}

.mobile-services,
.mobile-get,
.mobile-3d,
.mobile-message {
  margin-top: 50px;
  display: none;
}

.mobile-services__wrapper,
.mobile-get__wrapper {
  margin-top: 25px;
}

.mobile-services__item {
  border-radius: 8px 43px 8px 55px;
  overflow: hidden;
  background: #F8F8FB;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.mobile-services__item + .mobile-services__item {
  margin-top: 20px;
}
.mobile-services__top {
  position: relative;
  padding: 15px 85px 15px 20px;
}
.mobile-services__icon {
  position: absolute;
  right: 20px;
  top: 20px;
  background: #17A866;
  width: 44px;
  height: 44px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobile-services__image {
  height: 123px;
  border-radius: 8px 55px;
}
.mobile-services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobile-services__title {
  font-weight: 800;
  font-size: 20px;
  color: #222222;
  line-height: 1.2;
}
.mobile-services__desc {
  font-size: 14px;
  line-height: 120%;
  margin: 0;
  color: #828792;
  margin-top: 8px;
}

.mobile-slider {
  margin-top: 50px;
  display: none;
}
.mobile-slider__init {
  overflow: hidden;
}
.mobile-slider__image {
  border-radius: 55px 8px;
  width: 100%;
  max-width: 345px;
  height: 150px;
  overflow: hidden;
}
.mobile-slider__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobile-slider__title {
  margin-top: 30px;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
}
.mobile-slider__desc {
  font-size: 14px;
  line-height: 1.4;
  color: #828792;
  text-align: center;
}
.mobile-slider__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.mobile-slider__dots {
  margin-top: 15px;
  font-size: 0;
}
.mobile-slider__dots .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  opacity: 1;
  background: #DFE3EC;
}
.mobile-slider__dots .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 10px;
}
.mobile-slider__dots .swiper-pagination-bullet-active {
  width: 13px;
  height: 13px;
  border: 1px solid #17A866;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobile-slider__dots .swiper-pagination-bullet-active::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #222222;
  border-radius: 100%;
}
.mobile-slider__icon {
  background: #17A866;
  width: 44px;
  height: 44px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto;
  position: relative;
}
.mobile-slider__icon::before {
  content: "";
  position: absolute;
  left: -50vw;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(50vw - 11px);
  height: 1px;
  background-color: #E8EBF1;
}
.mobile-slider__icon::after {
  content: "";
  position: absolute;
  right: -50vw;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(50vw - 11px);
  height: 1px;
  background-color: #E8EBF1;
}

.mobile-main {
  position: relative;
  display: none;
  padding-top: 66px;
}
.mobile-main__wrapper {
  position: relative;
  z-index: 2;
  padding: 30px 20px 20px;
}
.mobile-main__services {
  margin-top: 55px;
  display: flex;
  flex-direction: column;
}
.mobile-main__services > * + * {
  margin-top: 26px;
}
.mobile-main__item-first {
  margin-right: -20px;
  width: calc(100% + 20px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.1);
  border-radius: 8px 0 0 55px;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding-right: 20px;
}
.mobile-main__item-first img {
  max-height: calc(100% + 20px);
  width: 165px;
  flex-shrink: 0;
  margin-top: -20px;
  margin-right: 15px;
}
.mobile-main__item-title {
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  line-height: 1.3;
}
.mobile-main__item-desc {
  font-size: 16px;
  line-height: 120%;
  color: #fff;
  margin-top: 5px;
}
.mobile-main__item-second {
  display: flex;
  align-items: center;
  margin-left: -20px;
  width: calc(100% + 20px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset -1px 1px 0px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(34px);
  text-decoration: none;
  border-radius: 0 8px 55px 0;
  padding-left: 20px;
}
.mobile-main__item-second img {
  width: 156px;
  max-height: calc(100% + 16px);
  flex-shrink: 0;
  margin-top: -16px;
  margin-left: 20px;
  margin-right: 8px;
}
.mobile-main__title {
  font-weight: 600;
  font-size: 30px;
  line-height: 120%;
  color: #fff;
}

.hamburger-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 8px 0 0 8px;
  width: 66px;
  height: 100%;
}

.services__item .btn {
  align-self: flex-start;
  color: #fff;
  text-decoration: none;
}

.contacts a.btn {
  color: #fff;
  text-decoration: none;
}

.mobile-pacient {
  background: #F8F8FB;
  border-radius: 0px 74px;
  padding: 45px 0;
  margin-top: 50px;
  overflow: hidden;
  display: none;
}
.mobile-pacient__btn {
  height: 60px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
.mobile-pacient__title {
  font-weight: 600;
  font-size: 30px;
  line-height: 120%;
}
.mobile-pacient__title span {
  color: #17A866;
}
.mobile-pacient__text p {
  font-size: 14px;
}
.mobile-pacient__wrapper {
  position: relative;
  padding-right: 130px;
}
.mobile-pacient__image {
  width: 427px;
  height: 427px;
  border-radius: 100%;
  border: 1px solid #E5E5EF;
  position: absolute;
  right: -245px;
  top: -10px;
  padding: 65px;
}
.mobile-pacient__image::before {
  content: "";
  position: absolute;
  left: 75px;
  top: 27px;
  background: #17A866;
  box-shadow: 0px 4px 10px rgba(23, 168, 102, 0.33);
  width: 26px;
  height: 26px;
  border-radius: 100%;
}
.mobile-pacient__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
  object-position: 0 50%;
  transform: scale(-1, 1);
}
.mobile-pacient__info {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  #top {
    left: 20px;
    bottom: 20px;
  }
  .pacient {
    display: none;
  }
  .services-pacient,
  .services {
    display: none;
  }
  .services-pacient__item > img.desc-image {
    display: none;
  }
  .services-pacient__item > img.mobile-image {
    display: block;
  }
  .mobile-main,
  .mobile-slider,
  .mobile-pacient,
  .mobile-services,
  .mobile-get,
  .mobile-3d,
  .mobile-message,
  .mobile-footer {
    display: block;
  }
}
@media (min-width: 768px) {
  body {
    font-size: 20px;
  }
}
#top {
  position: fixed;
  left: 40px;
  bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 100;
  background-color: #17A866;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
  opacity: 0;
  visibility: hidden;
}
#top::before {
  content: "";
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 5px;
  position: absolute;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  margin-top: 7px;
}
#top.show {
  opacity: 1;
  visibility: visible;
}

#quick-connection {
  position: fixed;
  z-index: 20;
  right: 40px;
  bottom: 40px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
}
#quick-connection.show {
  opacity: 1;
  visibility: visible;
}

.contacts-single .mail::before {
  background-image: url("../../img/new/mail.svg");
}

[class*=ymaps-2-1][class*=-ground-pane] {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(100%);
}

.ymaps-2-1-79-gototech {
  display: none !important;
}

.form-main.mt170 {
  display: none;
}

.services-pacient__desc {
  font-size: 14px;
  margin: 5px 0;
}
.services-pacient__item > img {
  max-height: 250px;
  object-fit: cover;
}

.thank-page {
  padding-bottom: 60px;
}
.thank-page__image {
  flex-shrink: 0;
  margin-left: 200px;
}
.thank-page__image-404 {
  margin-left: 80px;
}
.thank-page__image .form-main__img {
  width: 295px;
  height: 295px;
}
.thank-page__image.form-main .elipse-1 {
  width: 425px;
  height: 425px;
}
.thank-page__image.form-main .point-1::before {
  top: 54px;
  right: 54px;
}
.thank-page__wrapepr {
  padding-top: 50px;
}

.form-single__field label.error,
.form-main__input label.error {
  display: none !important;
}

.form-single__field input.is-invalid,
.form-main__input input.is-invalid {
  color: red;
}

label.error {
  font-size: 14px;
  line-height: 1;
  color: red;
  margin-top: 10px;
}

.modal {
  padding: 40px 50px;
  border-radius: 30px;
}
.modal__wrapper {
  width: 300px;
}
.modal__wrapper form {
  margin-top: 30px;
}
.modal__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
}
.modal__title--2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
}
.modal__phone {
  margin-top: 20px;
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  color: #054127;
  display: block;
  border-radius: 30px;
  padding: 8px;
  background: #fff;
}
.modal__social {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.modal__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-radius: 100px;
  padding: 5px 20px 5px 6px;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  margin-top: 20px;
  margin-right: 10px;
}
.modal__link::before {
  content: "";
  display: inline-block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
}
.modal__link.whats::before {
  background: #25d366;
  background-image: url("/images/svg/messagers/1.svg");
  background-position: 50%;
  background-repeat: no-repeat;
}
.modal__link.telega::before {
  background: #0088cc;
  background-image: url("/images/svg/messagers/2.svg");
  background-position: 50%;
  background-repeat: no-repeat;
}
.modal__desc {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  margin-top: 10px;
}
.modal__fields {
  padding: 15px;
  border-radius: 15px;
  border: 1px solid #fff;
  font-size: 0;
  background: #fff;
}
.modal__fields input {
  border: none;
  padding-left: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  width: 100%;
}
.modal__fields input.is-invalid {
  color: red;
}
.modal__field {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal__field::before {
  content: "";
  position: absolute;
  left: 8px;
  width: 24px;
  height: 24px;
  background-size: 100%;
  background-position: 50%;
  pointer-events: none;
}
.modal__field--user::before {
  background-image: url("../../img/new/form-1.svg");
}
.modal__field--calendar::before {
  background-image: url("../../img/new/calendar.svg");
}
.modal__field--phone::before {
  background-image: url("../../img/new/form-2.svg");
}
.modal__field--location::before {
  background-image: url("../../img/new/search.svg");
}
.modal__field + .modal__field {
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px solid #EAEAEA;
}
.modal__submit {
  margin-top: 25px;
}
.modal__submit input {
  width: 100%;
  cursor: pointer;
  height: 60px;
  background: #17A866;
  border-radius: 100px;
  border: none;
  font-weight: 600;
  font-size: 22px;
  color: #fff;
}
.modal__checkbox {
  font-weight: 400;
  font-size: 12px;
  color: #8b8888;
  line-height: 1.3;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}
.modal__checkbox a {
  color: #8b8888;
}

.fancybox-slide--html .fancybox-close-small {
  right: 10px;
  top: 10px;
  padding: 5px;
}

.ymaps-layers-pane {
  -webkit-filter: grayscale(100%) !important;
}

.mobile-wrapper a {
  text-decoration: none;
}

.form-main__sub-title {
  font-weight: 600;
  font-size: 22px;
}

.form-main__sub-title + .form-main__fields {
  margin-top: 20px;
}

.service-content__row:nth-child(2) {
  padding-right: 460px;
  min-height: calc(460px + 3rem);
}
.service-content__row h2,
.service-content__row h3,
.service-content__row h4 {
  font-weight: 600;
  font-size: 30px;
  line-height: 120%;
  color: #17A866;
}
.service-content__row ul,
.service-content__row ol {
  list-style-type: none;
  padding: 0;
}
.service-content__row ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 30px;
  counter-reset: section;
}
.service-content__row ol li::before {
  counter-increment: section;
  content: counter(section) ". ";
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 5px;
}
.service-content__row li {
  border-bottom: 1px solid #C4F0DC;
  font-size: 16px;
  line-height: 1.3;
  padding: 12px 0;
  display: flex;
  align-items: center;
}
.service-content__row + .service-content__row {
  margin-top: 3rem;
}
.service-content__row-gallery {
  display: flex;
  align-items: flex-start;
}
.service-content__row-slider {
  width: 430px;
  flex-shrink: 0;
  position: relative;
  min-width: 0;
  margin-left: auto;
  margin-bottom: -100%;
}
.service-content__row-slider-init {
  overflow: hidden;
}
.service-content__row-slider-init .swiper-slide img {
  width: 100%;
  height: 430px;
  border-radius: 100%;
  object-fit: cover;
}
.service-content__row-text {
  flex: 1;
}
.service-content__row-nav {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
}
.service-content__row-nav > * {
  width: 56px;
  height: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.service-content__row-nav .prev {
  background: #17A866;
}
.service-content__row-nav .next {
  border: 1px solid #17A866;
  background-color: #fff;
  margin-left: 10px;
}

.invest-slider,
.main-banner,
.goal {
  overflow: hidden;
}

.autors-prems {
  position: relative;
  z-index: 5;
}

.mobile-banner {
  display: none;
  margin-top: 40px;
}
.mobile-banner--item {
  text-decoration: none;
  min-height: 30vw;
  margin: 6px;
  border-radius: 6px;
  padding-left: 15px;
  display: flex;
  justify-content: space-between;
  background: rgb(139, 211, 178);
  background: linear-gradient(90deg, #8bd3b2 0%, #c4e9d8 100%);
  overflow: hidden;
}
.mobile-banner--title {
  font-weight: bold;
  font-size: 24px;
  margin-top: 20px;
  display: block;
  color: #222;
}

.mobile-row {
  display: flex;
  flex-direction: column;
}

@media (max-width: 1200px) {
  .reviews__slide {
    height: auto;
  }
  .header-land__nav li a {
    font-size: 14px;
  }
  .invest-slider__slider img {
    max-height: 400px;
    object-fit: cover;
  }
  .big-title {
    font-size: 42px;
  }
  .main-about__circle,
  .univer-about.sec-3 .form-main__img {
    display: none;
  }
  .main-about-2 {
    margin-top: 30px;
  }
  .univer-about__text {
    max-width: 100%;
  }
  .univer-about + .goal {
    margin-top: 100px;
  }
  .univer-about.autor-section .form-main__img {
    margin: 40px auto 0;
  }
  .autor-section .container {
    flex-direction: column;
  }
  .autors-prems__wrapper {
    gap: 20px 40px;
  }
  .autors-prems__item {
    padding: 20px;
    background-color: #fff;
  }
  .autors-prems__icon {
    width: 60px;
    height: 60px;
    margin-right: 25px;
  }
  .video-images .container {
    flex-direction: column;
  }
  .video-images .form-main {
    margin-top: 50px;
  }
}
@media (max-width: 992px) {
  .header-land {
    display: none;
  }
  .pacient.form-main .container {
    flex-direction: column-reverse;
  }
  .form-main .container {
    flex-direction: column;
  }
  .form-main .container p:last-child {
    margin-bottom: 0;
  }
  .mt120,
  .mt100 {
    margin-top: 60px;
  }
  .goal__text {
    width: 100%;
  }
  .goal__text .s-title {
    margin-bottom: 15px;
  }
  .service-list__wrapper {
    gap: 30px;
  }
  .services-pacient__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .form-single {
    padding: 20px;
  }
  .form-single .form-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-single .btn-2 {
    width: 100%;
  }
  .services__item {
    padding: 20px;
  }
  .services__icon {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
  }
  .services__title {
    font-size: 20px;
  }
  .services__wrapper {
    gap: 15px;
  }
  .services__desc {
    margin: 0 0 15px;
  }
  .service-content__row-gallery {
    flex-direction: column;
  }
  .service-content__row + .service-content__row {
    margin-top: 1.5rem;
  }
  .reviews__img {
    display: none;
  }
  .reviews__content {
    padding: 20px;
  }
  .reviews__text {
    font-size: 16px;
    line-height: 1.4;
  }
  .reviews .swiper-wrapper {
    margin-top: -20px;
  }
  .form-main__info {
    margin-top: 20px;
  }
  .big-title {
    font-size: 32px;
  }
  .main-banner__list-title {
    font-size: 34px;
  }
  .main-banner__list-desc {
    font-size: 18px;
  }
  .univer-about + .goal {
    margin-top: 40px;
  }
  .goal .container {
    flex-direction: column-reverse;
  }
  .goal .form-main {
    display: none;
  }
  .mt75 {
    margin-top: 40px;
  }
  .univer-about .s-title {
    margin-bottom: 20px;
  }
  p + .btn-3.mt35 {
    margin-top: 0;
  }
  .contacts-single .container {
    flex-direction: column;
  }
  .contacts-single__list {
    height: auto;
    padding: 0;
    margin: 0;
  }
  .contacts-single__left {
    flex: initial;
  }
  .contacts-single__map {
    flex: initial;
    height: 270px;
  }
  .thank-page__image,
  .thank-page__image-404 {
    display: none;
  }
  .main-banner {
    min-height: initial;
  }
  .service-content__row:nth-child(2) {
    padding-right: 360px;
    min-height: calc(330px + 1.5rem);
  }
  .service-content__row-slider {
    width: 330px;
  }
}
@media (max-width: 768px) {
  .contacts__info {
    background: #F8F8FB;
    border-radius: 0px 74px 0px 45px;
    box-shadow: none;
    margin-top: 0;
    width: calc(100% + 20px);
    margin-left: -10px;
    padding-bottom: 30px;
  }
  .contacts__title {
    font-weight: 600;
    font-size: 30px;
    line-height: 1.2;
  }
  .contacts__city-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
  }
  .contacts__city-wrap span {
    font-size: 12px;
  }
  .contacts__city-title {
    font-size: 24px;
    display: inline-flex;
    margin-top: 8px;
  }
  .contacts__t-row {
    font-size: 12px;
    line-height: 1;
  }
  .contacts__c-row {
    font-size: 16px;
    margin-top: 6px;
    line-height: 1.2;
  }
  a.contacts__c-row {
    font-weight: bold;
  }
  .form-single {
    padding: 0;
    background: none;
    box-shadow: none;
  }
  .form-single__field {
    padding: 8px 15px;
  }
  .form-single__field input {
    font-size: 0.875rem;
  }
  .form-single__field-title {
    font-size: 0.625rem;
  }
  .form-single__title {
    font-size: 1.53rem;
    line-height: var(--lh-120);
  }
  .form-single__title span {
    color: #17A866;
  }
  .form-single .btn-2 {
    width: auto;
    height: 60px;
    margin-top: 10px;
  }
  .form-single .form-3-col {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .form-single__desc {
    font-size: 0.875rem;
    color: #B4B4B4;
  }
  .mt120,
  .mt100,
  .mt70 {
    margin-top: 40px;
  }
  .service-content__row:nth-child(2) {
    padding-right: 0;
    min-height: auto;
  }
  .service-content__row-slider {
    margin: 0;
    width: 300px;
  }
  .service-content__row-slider-init .swiper-slide img {
    height: 300px;
  }
  .thank-page {
    padding-bottom: 40px;
  }
  .thank-page__wrapepr {
    padding-top: 30px;
  }
  .thank-page__text p {
    font-size: 14px;
  }
  .thank-page__text p br {
    display: none;
  }
  .service-list__wrapper {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
  }
  .services-pacient__wrapper {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .services-pacient__title {
    font-size: 20px;
  }
  .services-pacient__item {
    padding: 15px 15px 0;
  }
  .services-pacient__item > img {
    margin-left: -15px;
    width: calc(100% + 30px);
  }
  .mt30 {
    margin-top: 20px;
  }
  .form-single__bottom {
    margin-top: 20px;
  }
  .form-main__big-title {
    font-size: 34px;
  }
  .form-main__big-desc {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .form-main__title {
    font-size: 24px;
  }
  .form-main__fields {
    margin-top: 20px;
  }
  .form-main__fields > * + ::before {
    display: none;
  }
  .form-main__input {
    width: 100%;
  }
  .form-main__btns {
    margin-top: 15px;
  }
  .form-main__btns .btn-2 {
    margin-right: 0;
  }
  .reviews__text {
    padding: 0;
    margin-top: 20px;
  }
  .reviews__text::before {
    position: relative;
    width: 40px;
    height: 40px;
    background-size: 100%;
  }
  .big-title {
    font-size: 26px;
  }
  .sub-banner .main-banner__content {
    margin-top: 30px;
  }
  .padding-content {
    padding-bottom: 30px;
  }
  .main-banner__list-desc {
    font-size: 14px;
  }
  .main-banner__list-desc::before {
    width: 30px;
    height: 12px;
  }
  .main-banner__list-row + div {
    margin-left: 30px;
  }
  .univer-about.autor-section .form-main__img {
    display: none;
  }
  .univer-about__counter-title {
    font-size: 30px;
  }
  .autors-prems__wrapper {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
  }
  .video-images .form-main {
    display: none;
  }
  .main-about .container > * + * {
    margin-top: 0;
  }
  .main-about__text {
    padding-top: 0;
  }
  .mobile-banner {
    display: block !important;
  }
}
@media (max-width: 550px) {
  .main-banner__list {
    margin-top: 20px;
    flex-direction: column;
  }
  .main-banner__list::before {
    display: none;
  }
  .main-banner__list-row {
    padding-top: 0;
  }
  .main-banner__list-row::before {
    display: none;
  }
  .main-banner__list-row + div {
    margin: 10px 0 0;
  }
  .modal {
    padding: 40px 20px;
  }
  .modal__wrapper {
    width: 100%;
    max-width: 100%;
  }
  .single-quote {
    margin: 20px 0 0;
    padding: 0;
  }
  .single-quote::before {
    position: relative;
    top: 0;
    display: block;
    width: 45px;
    height: 45px;
    background-size: 100%;
  }
  .invest-slider__slider img {
    max-height: 280px;
  }
}
@media (max-width: 450px) {
  .form-single .form-3-col {
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .main-banner__desc {
    font-size: 1.125rem;
  }
}
/* New styles */
.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.d-flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

.circle {
  border-radius: 50%;
}

.circle-center {
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.block-center {
  align-items: center;
  justify-content: center;
}

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

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.content-start {
  align-content: flex-start;
}

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

.content-end {
  align-content: flex-end;
}

.transition {
  -webkit-transition: 0.3s linear all;
  -moz-transition: 0.3s linear all;
  -o-transition: 0.3s linear all;
  transition: 0.3s linear all;
}

.no-scroll {
  overflow: hidden;
}

.location-question__city {
  width: 100%;
  text-align: center;
  margin: 10px 0 20px 0;
  font-size: 30px;
  color: #107047;
}
.location-question__buttons {
  gap: 12px;
  flex-wrap: wrap;
}
.location-question__buttons .btn {
  min-width: 90px;
  margin-top: 0 !important;
  white-space: nowrap;
}
.location-question__buttons .btn:hover {
  transform: none;
}

.location-center {
  width: 600px;
  max-width: 100%;
}

.location-city {
  width: 600px;
  max-width: 100%;
}

.cities-list {
  width: 100%;
  margin-top: 20px;
}
.cities-list__item {
  width: calc(33.3% - 10px);
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.cities-list__item:hover {
  border-color: #107047;
  background-color: white;
}
.cities-list__item-input {
  visibility: hidden;
  width: 0;
  height: 0;
  position: absolute;
}
.cities-list__item-title {
  width: 100%;
  font-size: 16px;
  line-height: 1.1;
  color: #107047;
  font-weight: 500;
  height: 100%;
}

.city-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 17, 22, 0.88);
  overflow-y: auto;
  box-sizing: border-box;
  border-radius: 0;
  margin: 0;
}

.city-modal.is-open {
  display: flex;
}

.city-modal--required .city-dialog__close {
  display: none;
}

body.city-modal-open {
  overflow: hidden;
}

.city-modal .modal__wrapper.city-dialog {
  padding: 36px 32px 32px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
}

.modal__wrapper.city-dialog {
  width: 560px;
  max-width: calc(100vw - 80px);
  position: relative;
  color: #1f2937;
  padding-top: 6px;
  box-sizing: border-box;
}

.modal.fancybox__content:has(.city-dialog),
#modal-city.fancybox__content,
#modal-city--clone.fancybox__content {
  border-radius: 12px;
  overflow: hidden;
}

.city-dialog--ask {
  width: 420px;
}

.city-dialog--loading {
  width: 320px;
}

.city-dialog__close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.city-dialog__close::before, .city-dialog__close::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 15px;
  width: 16px;
  height: 1.5px;
  border-radius: 2px;
  background: #5f6673;
}
.city-dialog__close::before {
  transform: rotate(45deg);
}
.city-dialog__close::after {
  transform: rotate(-45deg);
}

#modal-city .f-button.is-close-btn,
#modal-city--clone .f-button.is-close-btn,
.fancybox__content#modal-city > .f-button.is-close-btn,
.fancybox__content#modal-city--clone > .f-button.is-close-btn {
  display: none;
}

.city-dialog__title {
  padding: 0 32px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  text-align: center;
  color: #1f2937;
}

.city-dialog__detected-city {
  margin: 24px 0 28px;
  font-size: 30px;
  line-height: 1.15;
  text-align: center;
  color: #007a4d;
}

.city-dialog__empty {
  padding: 16px;
  font-size: 14px;
  line-height: 1.35;
  color: #6b7280;
  text-align: center;
}

.city-dialog__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.city-dialog__primary,
.city-dialog__secondary {
  min-width: 112px;
  height: 42px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
}

.city-dialog__primary {
  background: #00874d;
}

.city-dialog__secondary {
  background: #17c977;
}

.city-dialog__search {
  position: relative;
  margin-top: 24px;
}

.city-dialog__search input {
  width: 100%;
  height: 48px;
  padding: 0 46px 0 42px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
  line-height: 1;
  color: #1f2937;
  background: #fff;
  box-sizing: border-box;
}
.city-dialog__search input:focus {
  border-color: #007a4d;
  box-shadow: 0 0 0 1px #007a4d;
}

.city-dialog__search-icon {
  position: absolute;
  left: 17px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 1.7px solid #8a93a0;
  border-radius: 50%;
  transform: translateY(-58%);
  pointer-events: none;
}
.city-dialog__search-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 7px;
  height: 1.7px;
  border-radius: 2px;
  background: #8a93a0;
  transform: rotate(45deg);
}

.city-dialog__clear {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
  cursor: pointer;
}
.city-dialog__clear::before, .city-dialog__clear::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 16px;
  width: 14px;
  height: 1.4px;
  border-radius: 2px;
  background: #6b7280;
}
.city-dialog__clear::before {
  transform: rotate(45deg);
}
.city-dialog__clear::after {
  transform: rotate(-45deg);
}

.city-dialog__results,
.city-dialog__panel {
  margin-top: 12px;
}

.city-dialog__panel {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}

.city-dialog__caption {
  padding: 14px 18px 6px;
  font-size: 13px;
  line-height: 1.2;
  color: #4b5563;
}

.city-dialog__list {
  max-height: min(46vh, 360px);
  overflow-y: auto;
  padding: 6px 0;
}

.city-dialog__option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 42px;
  padding: 9px 18px;
  border: 0;
  background: transparent;
  color: #006b46;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}
.city-dialog__option:hover, .city-dialog__option:focus {
  outline: none;
  background: #eef7f2;
}

.city-dialog__pin {
  width: 13px;
  height: 13px;
  margin-left: 2px;
  border: 1.6px solid #8a93a0;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  flex: 0 0 auto;
  position: relative;
}
.city-dialog__pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8a93a0;
  transform: translate(-50%, -50%);
}

.city-dialog__option-text {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  word-break: break-word;
}

.city-dialog__show-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-top: 1px solid #e5e7eb;
  background: #fff;
  color: #006b46;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

.city-dialog__arrow {
  width: 9px;
  height: 9px;
  border-top: 1.7px solid #006b46;
  border-right: 1.7px solid #006b46;
  transform: rotate(45deg);
  flex: 0 0 auto;
}

@media (max-width: 550px) {
  .city-modal {
    align-items: flex-start;
    padding: 20px 16px;
  }
  .city-modal .modal__wrapper.city-dialog {
    padding: 34px 24px 24px;
  }
  .modal__wrapper.city-dialog {
    width: 100%;
    max-width: 100%;
  }
  .city-dialog__title {
    padding: 0 28px;
    font-size: 17px;
  }
  .city-dialog__detected-city {
    margin: 20px 0 24px;
    font-size: 28px;
  }
  .city-dialog__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .city-dialog__primary,
  .city-dialog__secondary {
    width: 100%;
  }
  .city-dialog__search {
    margin-top: 20px;
  }
  .city-dialog__list {
    max-height: 48vh;
  }
  .location-question__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .location-question__buttons .btn {
    width: 100%;
    min-width: 0;
    padding: 0 18px;
  }
  .cities-list__item {
    width: 100%;
  }
}
/* Extra large (xl) */
@media (min-width: 1200px) {
  .text {
    font-size: 18px;
  }
}
/* Extra extra large (xxl) */
@media (min-width: 1400px) {
  .text {
    font-size: 22px;
  }
}
.dot_green {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--bg-00874D);
}

.soon {
  position: absolute;
  top: -5px;
  right: -40px;
  min-width: 36px;
  height: 12px;
  border-radius: 12px;
  background-color: red;
  color: #e9e9e9;
  font-size: 8px;
  text-transform: uppercase;
  line-height: 100%;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-list .color-13 {
  top: 70px;
}

html.ls-big div,
html.ls-big p {
  hyphens: auto; /* Автоматические переносы по слогам */
  word-break: break-word;
}

@media (max-width: 767.98px) {
  .service-list .color-13 {
    top: -84px;
  }
  .invest-form {
    margin-top: 50px !important;
  }
  .invest-form .form-single__field {
    width: 100%;
  }
  .invest-form .form-single .form-3-col {
    margin-top: 24px;
  }
  .invest-form .form-single__submit {
    padding-left: 0px;
  }
  .invest-form .form-single .btn-2 {
    width: 100%;
    min-height: 50px !important;
    height: 50% !important;
    font-size: 0.875rem !important;
  }
}

/*# sourceMappingURL=main.css.map */
