@charset "UTF-8";

@font-face {
  font-family: "playfair_bi";
  src: local("PlayfairDisplay-BoldItalic"), url("../fonts/PlayfairDisplay-BoldItalic.woff2") format("woff2"), url("../fonts/PlayfairDisplay-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  padding: 0;
  margin: 0;
}

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

img {
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

:root {
  --grey-color: #8c8c8c;
  --green-color: rgba(142, 166, 77, 1);
  --black-color: rgba(51, 51, 51, 1);
  --header-height: 6.07vw;
}

@media (max-width: 850px) {
  :root {
    --header-height: 9.375vw;
  }
}

@media (max-width: 500px) {
  :root {
    --header-height: 17.14vw;
  }
}

body {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  color: var(--black-color);
}

body::-webkit-scrollbar {
  width: 0.65vw;
  /* ширина scrollbar */
}

body::-webkit-scrollbar-track {
  background: transparent;
  /* цвет дорожки */
}

body::-webkit-scrollbar-thumb {
  background-color: #B0B3B9;
  /* цвет плашки */
  border-radius: 10px;
  /* закругления плашки */
}

body.frozen {
  overflow: hidden;
}

h1 {
  margin: 0;
  font-weight: 400;
}

strong {
  font-weight: 400;
}

.buttonCircle {
  position: relative;
  overflow: hidden;
  transition: 0.4s;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  cursor: pointer;
}

.buttonCircle.buttonCircle_green .buttonCircle__circle {
  background: rgba(255, 255, 255, 0.55);
}

.buttonCircle.buttonCircle_white .buttonCircle__circle {
  background: rgba(142, 166, 77, 0.65);
}

.buttonCircle .buttonCircle__circle {
  position: absolute;
  left: var(--left);
  top: var(--top);
  width: 0.0714vw;
  height: 0.0714vw;
  transform: scale(1);
  opacity: 0;
  border-radius: 50%;
  pointer-events: none;
  -webkit-animation: button_circle_anim 1.5s;
  animation: button_circle_anim 1.5s;
  will-change: transform, opacity;
}

@-webkit-keyframes button_circle_anim {
  0% {
    transform: scale(1);
    opacity: 0;
  }

  25% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    transform: scale(400);
  }
}

@keyframes button_circle_anim {
  0% {
    transform: scale(1);
    opacity: 0;
  }

  25% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    transform: scale(400);
  }
}

.greenBluredBg {
  position: fixed;
  z-index: 4;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  background: transparent;
  pointer-events: none;
  transition: 0.4s;
}

.greenBluredBg.greenBluredBg_shown {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background: rgba(142, 166, 77, 0.75);
  pointer-events: all;
}

.greenBluredBgRequest {
  position: fixed;
  z-index: 7;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  background: transparent;
  pointer-events: none;
  transition: 0.4s;
}

.greenBluredBgRequest.greenBluredBgRequest_shown {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background: rgba(142, 166, 77, 0.75);
  pointer-events: all;
}

.desktopSearch {
  position: fixed;
  z-index: 5;
  left: 0;
  right: 0;
  top: var(--header-height);
  padding-top: 0.857vw;
  padding-bottom: 2.142vw;
  background: white;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  will-change: transform;
  transition: 0.4s;
}

.desktopSearch.desktopSearch_shown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.desktopSearch .desktopSearch__wrap {
  position: relative;
  margin: 0 18.571vw;
  border-bottom: 0.07vw solid rgba(140, 140, 140, 0.5);
  display: flex;
  align-items: center;
  gap: 7vw;
}

.desktopSearch .desktopSearch__button {
  margin-left: auto;
  position: relative;
  right: 0;
  z-index: 2;
  flex-shrink: 0;
  width: 9.285vw;
  padding: 1.125vw 0;
  background: var(--green-color);
  color: white;
  border-radius: 0.714vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.285vw;
  cursor: pointer;
  box-shadow: 0px 0px 0 0px transparent;
  transition: 0.4s;
}

@media (min-width: 850px) {
  .desktopSearch .desktopSearch__button:hover {
    box-shadow: 0px 0px 0.5vw 0.15vw rgba(142, 166, 77, 0.6);
  }
}

.desktopSearch .desktopSearch__input {
  flex: 1 1 auto;
  padding: 1.857vw 0;
  font-size: 2.28vw;
  border: none;
  outline: none;
}

.desktopSearch .desktopSearch__input::-moz-placeholder {
  color: rgba(140, 140, 140, 0.5);
  opacity: 1;
  transform: translateX(0%);
  -moz-transition: 0.4s;
  transition: 0.4s;
}

.desktopSearch .desktopSearch__input::-webkit-input-placeholder {
  color: rgba(140, 140, 140, 0.5);
  opacity: 1;
  transform: translateX(0%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.desktopSearch .desktopSearch__input:-ms-input-placeholder {
  color: rgba(140, 140, 140, 0.5);
  opacity: 1;
  transform: translateX(0%);
  -ms-transition: 0.4s;
  transition: 0.4s;
}

.desktopSearch .desktopSearch__input::-ms-input-placeholder {
  color: rgba(140, 140, 140, 0.5);
  opacity: 1;
  transform: translateX(0%);
  -ms-transition: 0.4s;
  transition: 0.4s;
}

.desktopSearch .desktopSearch__input::placeholder {
  color: rgba(140, 140, 140, 0.5);
  opacity: 1;
  transform: translateX(0%);
  transition: 0.4s;
}

.desktopSearch .desktopSearch__input:focus::-moz-placeholder {
  opacity: 0;
  transform: translateX(2%);
}

.desktopSearch .desktopSearch__input:focus::-webkit-input-placeholder {
  opacity: 0;
  transform: translateX(2%);
}

.desktopSearch .desktopSearch__input:focus:-ms-input-placeholder {
  opacity: 0;
  transform: translateX(2%);
}

.desktopSearch .desktopSearch__input:focus::-ms-input-placeholder {
  opacity: 0;
  transform: translateX(2%);
}

.desktopSearch .desktopSearch__input:focus::placeholder {
  opacity: 0;
  transform: translateX(2%);
}

.desktopSearch .desktopSearch__close {
  position: absolute;
  left: 50%;
  top: calc(100% + 1.21vw);
  width: 2.85vw;
  height: 2.85vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 0.357vw;
  cursor: pointer;
  box-shadow: 0px 0px 0 0px transparent;
  transition: 0.4s;
}

@media (min-width: 850px) {
  .desktopSearch .desktopSearch__close:hover {
    box-shadow: 0px 0px 0.5vw 0.15vw rgba(255, 255, 255, 0.3);
  }
}

.desktopSearch .desktopSearch__close::before {
  content: "+";
  transform: translateX(0.05vw) rotateZ(45deg);
  color: #8ea64d;
  font-size: 1.5vw;
}

.mainPage_main {
  min-height: 100vh;
  overflow: hidden;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 6;
  background: white;
}

.header .header__wrap {
  height: var(--header-height);
  padding: 0 2.85vw 0 2.85vw;
  display: flex;
  align-items: center;
}

.header .header__logo {
  display: inline-block;
  height: 2.142vw;
  margin-right: 3.64vw;
}

.header .header__logo .header__logoImg {
  width: 100%;
  height: 100%;
}

.header .header__menu {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}

.header .header__search {
  margin-right: 3.57vw;
  color: var(--grey-color);
  display: flex;
  align-items: center;
  gap: 0.85vw;
  font-size: 1vw;
  cursor: pointer;
}

.header .header__search::before {
  content: "";
  flex-shrink: 0;
  width: 0.8vw;
  height: 0.8vw;
  background: url(../imgs/headerSearch.svg) no-repeat center/contain;
}

.header .header__search .header__search__mobileInput {
  display: none;
}

.header .header__allServicesButton {
  padding: 0.5vw 1.28vw;
  font-size: 1vw;
  color: var(--green-color);
  background: rgba(142, 166, 77, 0.1);
  border: 0.142vw solid transparent;
  border-radius: 7.14vw;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.57vw;
  transition: 0.4s;
}

@media (min-width: 850px) {
  .header .header__allServicesButton:hover {
    border-color: #8EA64D;
  }
}

.header .header__allServicesButton .header__allServicesButton__burger {
  width: 0.71vw;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .header__allServicesButton .header__allServicesButton__burger .header__allServicesButton__burger__line {
  position: absolute;
  width: 0.71vw;
  height: 0.12vw;
  background: rgb(142, 166, 77);
  border-radius: 7.14vw;
  will-change: transform;
  transition: 0.4s;
}

.header .header__allServicesButton .header__allServicesButton__burger .header__allServicesButton__burger__line:nth-of-type(1) {
  transform: translateY(-0.22vw);
}

.header .header__allServicesButton .header__allServicesButton__burger .header__allServicesButton__burger__line:nth-of-type(3) {
  transform: translateY(0.22vw);
}

.header .header__allServicesButton.header__allServicesButton_clicked {
  background: #8EA64D;
  color: white;
}

.header .header__allServicesButton.header__allServicesButton_clicked .header__allServicesButton__burger .header__allServicesButton__burger__line {
  background: white;
}

.header .header__allServicesButton.header__allServicesButton_clicked .header__allServicesButton__burger .header__allServicesButton__burger__line:nth-of-type(1) {
  transform: translateY(0) rotateZ(-45deg);
}

.header .header__allServicesButton.header__allServicesButton_clicked .header__allServicesButton__burger .header__allServicesButton__burger__line:nth-of-type(2) {
  opacity: 0;
}

.header .header__allServicesButton.header__allServicesButton_clicked .header__allServicesButton__burger .header__allServicesButton__burger__line:nth-of-type(3) {
  transform: translateY(0) rotateZ(45deg);
}

.header .header__nav {
  margin-left: 2.14vw;
  flex: 1 1 auto;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.14vw;
}

.header .header__nav li a {
  position: relative;
  font-size: 1vw;
  transition: 0.4s;
}

@media (min-width: 850px) {
  .header .header__nav li a:hover {
    color: var(--green-color);
  }
}

.header .header__nav li a .animatingLine {
  display: inline-block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0.142vw;
  background: var(--green-color);
  transition: 0.5s;
}

.header .header__nav li a .animatingLine.mouseOut {
  left: auto;
  right: 0;
}

.header .header__nav li a .header__nav__mobileIcon {
  display: none;
}

.header .header__info {
  display: flex;
  align-items: center;
}

.header .header__adres {
  margin-right: 3.57vw;
  display: flex;
  flex-direction: column;
  gap: 0.25vw;
}

.header .header__adres .header__adres_adr {
  font-size: 1vw;
}

.header .header__adres .header__adres__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1vw;
}

.header .header__adres .header__adres__time {
  font-size: 0.71vw;
  color: var(--grey-color);
}

.header .header__adres .header__adres__metro {
  font-size: 0.71vw;
  color: #2B569D;
  display: flex;
  align-items: flex-start;
  gap: 0.357vw;
  cursor: pointer;
}

.header .header__adres .header__adres__metro::before {
  content: "";
  flex-shrink: 0;
  width: 0.71vw;
  height: 0.71vw;
  background: url(../imgs/metroIcon.svg) no-repeat center/contain;
}

.header .header__adres .header__adres__mobileTime {
  display: none;
}

.header .header__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.25vw;
}

.header .header__contacts .header__contacts__tel {
  font-size: 1vw;
  transition: 0.4s;
}

@media (min-width: 850px) {
  .header .header__contacts .header__contacts__tel:hover {
    color: var(--green-color);
  }
}

.header .header__contacts .header__contacts__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1vw;
}

.header .header__contacts .header__contacts__request {
  font-size: 0.71vw;
  color: var(--grey-color);
  text-decoration: underline;
  cursor: pointer;
}

@media (min-width: 850px) {
  .header .header__contacts .header__contacts__request:hover {
    text-decoration: none;
  }
}

.header .header__contacts .header__contacts__soc {
  display: flex;
  align-items: center;
  gap: 0.57vw;
}

.header .header__contacts .header__contacts__soc .header__contacts__tgIcon {
  width: 0.78vw;
  height: 0.78vw;
  background: url(../imgs/tgIcon.svg) no-repeat center/contain;
  cursor: pointer;
}

.header .header__contacts .header__contacts__soc .header__contacts__wsIcon {
  width: 0.78vw;
  height: 0.78vw;
  background: url(../imgs/wsIcon.svg) no-repeat center/contain;
  cursor: pointer;
}

.header .header__contacts .header__contacts__mobileRequest {
  display: none;
}

.header .header__mobile {
  display: none;
}

@media (max-width: 850px) {
  .header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }

  .header .header__wrap {
    padding: 0 1.562vw 0 1.562vw;
    background: rgb(255, 255, 255);
  }

  .header .header__logo {
    position: relative;
    z-index: 2;
    height: 4.687vw;
    margin-right: 0;
  }

  .header .header__mobile {
    position: relative;
    z-index: 2;
    margin-left: auto;
    display: flex;
    gap: 1.5625vw;
  }

  .header .header__mobile .header__mobile__tel,
  .header .header__mobile .header__mobile__adr,
  .header .header__mobile .header__mobile__burger {
    width: 6.25vw;
    height: 6.25vw;
    border-radius: 1.5625vw;
    background: rgba(142, 166, 77, 0.1);
    cursor: pointer;
  }

  .header .header__mobile .header__mobile__tel,
  .header .header__mobile .header__mobile__adr {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header .header__mobile .header__mobile__tel img,
  .header .header__mobile .header__mobile__adr img {
    width: 100%;
    height: 100%;
    max-width: 40%;
    max-height: 40%;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .header .header__mobile .header__mobile__burger {
    background: rgb(142, 166, 77);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.625vw;
  }

  .header .header__mobile .header__mobile__burger.header__mobile__burger_clicked .header__mobile__burger__close {
    opacity: 1;
  }

  .header .header__mobile .header__mobile__burger.header__mobile__burger_clicked .header__mobile__burger__line {
    opacity: 0;
    gap: 0;
  }

  .header .header__mobile .header__mobile__burger .header__mobile__burger__close {
    position: absolute;
    width: 1.875vw;
    height: 1.875vw;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s;
  }

  .header .header__mobile .header__mobile__burger .header__mobile__burger__close::before,
  .header .header__mobile .header__mobile__burger .header__mobile__burger__close::after {
    content: "";
    position: absolute;
    flex-shrink: 0;
    width: 2.3vw;
    height: 0.5vw;
    background: #fff;
    border-radius: 2vw;
  }

  .header .header__mobile .header__mobile__burger .header__mobile__burger__close::before {
    transform: rotateZ(45deg);
  }

  .header .header__mobile .header__mobile__burger .header__mobile__burger__close::after {
    transform: rotateZ(-45deg);
  }

  .header .header__mobile .header__mobile__burger .header__mobile__burger__line {
    display: flex;
    gap: 0.625vw;
    transition: 0.4s;
  }

  .header .header__mobile .header__mobile__burger .header__mobile__burger__circle {
    width: 0.625vw;
    height: 0.625vw;
    border-radius: 50%;
    background: white;
  }

  .header .header__menu {
    position: fixed;
    z-index: -1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 0 1.56vw;
    padding-top: var(--header-height);
    padding-bottom: 5vw;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: auto;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
  }

  .header .header__menu:not(.header__menu_shown) * {
    pointer-events: none !important;
  }

  .header .header__menu.header__menu_shown {
    pointer-events: all;
    opacity: 1;
  }

  .header .header__menu .header__allServicesButton {
    display: none;
  }

  .header .header__menu .header__search {
    flex-shrink: 0;
    align-self: stretch;
    height: 6.25vw;
    padding-left: 2.15vw;
    background: rgba(140, 140, 140, 0.1);
    margin: 0;
    margin-bottom: 1.5625vw;
    border-radius: 1.5625vw;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .header .header__menu .header__search::before {
    width: 1.8vw;
    height: 1.8vw;
  }

  .header .header__menu .header__search .header__search__text {
    display: none;
  }

  .header .header__menu .header__search .header__search__mobileInput {
    width: 100%;
    display: inline-block;
    padding-left: 1vw;
    background: transparent;
    border: none;
    outline: none;
    font-size: 2.187vw;
  }

  .header .header__menu .header__search .header__search__mobileInput::-moz-placeholder {
    color: rgb(140, 140, 140);
    opacity: 1;
    transform: translateX(0%);
    -moz-transition: 0.4s;
    transition: 0.4s;
  }

  .header .header__menu .header__search .header__search__mobileInput::-webkit-input-placeholder,
  .desktopSearch .desktopSearch__input::-webkit-input-placeholder {
    color: rgb(140, 140, 140);
    opacity: 1;
    transform: translateX(0%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .header .header__menu .header__search .header__search__mobileInput::-moz-placeholder,
  .desktopSearch .desktopSearch__input::-moz-placeholder {
    color: rgb(140, 140, 140);
    opacity: 1;
    transform: translateX(0%);
    -moz-transition: 0.4s;
    transition: 0.4s;
  }

  .header .header__menu .header__search .header__search__mobileInput:-ms-input-placeholder,
  .desktopSearch .desktopSearch__input:-ms-input-placeholder {
    color: rgb(140, 140, 140);
    opacity: 1;
    transform: translateX(0%);
    -ms-transition: 0.4s;
    transition: 0.4s;
  }

  .header .header__menu .header__search .header__search__mobileInput::-ms-input-placeholder,
  .desktopSearch .desktopSearch__input::-ms-input-placeholder {
    color: rgb(140, 140, 140);
    opacity: 1;
    transform: translateX(0%);
    -ms-transition: 0.4s;
    transition: 0.4s;
  }

  .header .header__menu .header__search .header__search__mobileInput::-webkit-input-placeholder, .desktopSearch .desktopSearch__input::-webkit-input-placeholder {
    color: rgb(140, 140, 140);
    opacity: 1;
    transform: translateX(0%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .header .header__menu .header__search .header__search__mobileInput::-moz-placeholder, .desktopSearch .desktopSearch__input::-moz-placeholder {
    color: rgb(140, 140, 140);
    opacity: 1;
    transform: translateX(0%);
    -moz-transition: 0.4s;
    transition: 0.4s;
  }

  .header .header__menu .header__search .header__search__mobileInput:-ms-input-placeholder, .desktopSearch .desktopSearch__input:-ms-input-placeholder {
    color: rgb(140, 140, 140);
    opacity: 1;
    transform: translateX(0%);
    -ms-transition: 0.4s;
    transition: 0.4s;
  }

  .header .header__menu .header__search .header__search__mobileInput::-ms-input-placeholder, .desktopSearch .desktopSearch__input::-ms-input-placeholder {
    color: rgb(140, 140, 140);
    opacity: 1;
    transform: translateX(0%);
    -ms-transition: 0.4s;
    transition: 0.4s;
  }

  .header .header__menu .header__search .header__search__mobileInput::placeholder,
  .desktopSearch .desktopSearch__input::placeholder {
    color: rgb(140, 140, 140);
    opacity: 1;
    transform: translateX(0%);
    transition: 0.4s;
  }

  .desktopSearch__wrap:before {
    content: "";
    position: absolute;
    width: 3.185vw;
    top: 4.2vw;
    left: 6.57vw;
    height: 3.285vw;
    background: url(../imgs/headerSearch.svg) no-repeat center / contain;
  }

  .header .header__menu .header__search .header__search__mobileInput:focus::-moz-placeholder {
    opacity: 0;
    transform: translateX(2%);
  }

  .header .header__menu .header__search .header__search__mobileInput:focus::-webkit-input-placeholder {
    opacity: 0;
    transform: translateX(2%);
  }

  .header .header__menu .header__search .header__search__mobileInput:focus:-ms-input-placeholder {
    opacity: 0;
    transform: translateX(2%);
  }

  .header .header__menu .header__search .header__search__mobileInput:focus::-ms-input-placeholder {
    opacity: 0;
    transform: translateX(2%);
  }

  .header .header__menu .header__search .header__search__mobileInput:focus::placeholder {
    opacity: 0;
    transform: translateX(2%);
  }

  .header .header__menu .header__nav {
    flex: 0 1 auto;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.56vw;
  }

  .header .header__menu .header__nav li a {
    font-size: 2.81vw;
    display: flex;
    align-items: center;
  }

  .header .header__menu .header__nav li a .header__nav__mobileIcon {
    width: 6.25vw;
    height: 6.25vw;
    margin-right: 2.34vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 1.56vw;
    background: rgba(142, 166, 77, 0.1);
  }

  .header .header__menu .header__nav li a .header__nav__mobileIcon img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-filter: grayscale(100%) brightness(100%) sepia(30%) hue-rotate(50deg) saturate(500%);
    filter: grayscale(100%) brightness(100%) sepia(30%) hue-rotate(50deg) saturate(500%);
  }

  .header .header__menu .header__info {
    align-self: stretch;
    gap: 3.125vw;
    align-items: stretch;
  }

  .header .header__menu .header__adres {
    flex: 1 0 auto;
    margin: 0;
    margin-top: 3.125vw;
    padding-top: 3.125vw;
    padding-bottom: 2.34vw;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    background: rgba(140, 140, 140, 0.1);
    border-radius: 1.56vw;
    text-align: center;
  }

  .header .header__menu .header__adres .header__adres_adr {
    order: 2;
    max-width: 28.125vw;
    font-size: 2.81vw;
  }

  .header .header__menu .header__adres .header__adres__bottom {
    order: 1;
    margin-bottom: 2.18vw;
  }

  .header .header__menu .header__adres .header__adres__bottom .header__adres__time {
    display: none;
  }

  .header .header__menu .header__adres .header__adres__bottom .header__adres__metro {
    font-size: 1.56vw;
    gap: 0.78vw;
  }

  .header .header__menu .header__adres .header__adres__bottom .header__adres__metro::before {
    width: 1.56vw;
    height: 1.56vw;
  }

  .header .header__menu .header__adres .header__adres__mobileTime {
    order: 3;
    margin-top: 2.187vw;
    display: inline-block;
    font-size: 2.187vw;
    color: rgb(140, 140, 140);
  }

  .header .header__menu .header__contacts {
    flex: 1 0 auto;
    margin-top: 3.125vw;
    padding-top: 3.125vw;
    padding-bottom: 2.34vw;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    background: rgb(142, 166, 77);
    border-radius: 1.56vw;
    text-align: center;
  }

  .header .header__menu .header__contacts .header__contacts__tel {
    order: 2;
    font-size: 2.81vw;
    color: white;
  }

  .header .header__menu .header__contacts .header__contacts__bottom {
    order: 1;
    margin-bottom: 2.18vw;
  }

  .header .header__menu .header__contacts .header__contacts__bottom .header__contacts__soc {
    gap: 1.87vw;
  }

  .header .header__menu .header__contacts .header__contacts__bottom .header__contacts__soc .header__contacts__tgIcon {
    width: 3.125vw;
    height: 3.125vw;
    background: url(../imgs/tgIcon_white.svg) no-repeat center/contain;
  }

  .header .header__menu .header__contacts .header__contacts__bottom .header__contacts__soc .header__contacts__wsIcon {
    width: 3.125vw;
    height: 3.125vw;
    background: url(../imgs/wsIcon_white.svg) no-repeat center/contain;
  }

  .header .header__menu .header__contacts .header__contacts__bottom .header__contacts__request {
    display: none;
  }

  .header .header__menu .header__contacts .header__contacts__mobileRequest {
    order: 3;
    display: inline-block;
    margin-top: 2.187vw;
    font-size: 2.187vw;
    color: white;
    text-decoration: underline;
  }
}

@media (max-width: 500px) {
  .header .header__logo {
    height: 9.857vw;
  }

  .header .header__wrap {
    padding: 0 2.857vw;
  }

  .header .header__menu {
    padding-left: 2.857vw;
    padding-right: 2.857vw;
  }

  .header .header__menu .header__search {
    height: 11.42vw;
    padding-left: 6.57vw;
    margin-bottom: 2.85vw;
  }

  .header .header__menu .header__search::before {
    width: 3.285vw;
    height: 3.285vw;
  }

  .header .header__menu .header__search .header__search__mobileInput {
    padding-left: 1vw;
    font-size: 4vw;
  }

  .header .header__menu .header__nav {
    gap: 2.857vw;
  }

  .header .header__menu .header__nav li a {
    font-size: 4.57vw;
  }

  .header .header__menu .header__nav li a .header__nav__mobileIcon {
    width: 11.428vw;
    height: 11.428vw;
    margin-right: 4.28vw;
  }

  .header .header__menu .header__info {
    margin-top: 2.857vw;
    flex-direction: column;
    gap: 2.857vw;
  }

  .header .header__menu .header__adres {
    margin-top: 0;
    padding-top: 5.71vw;
    padding-bottom: 4.28vw;
  }

  .header .header__menu .header__adres .header__adres__bottom .header__adres__metro {
    font-size: 2.857vw;
    gap: 1.42vw;
  }

  .header .header__menu .header__adres .header__adres__bottom .header__adres__metro::before {
    width: 2.857vw;
    height: 2.857vw;
  }

  .header .header__menu .header__adres .header__adres_adr {
    max-width: 51.42vw;
    font-size: 5.142vw;
  }

  .header .header__menu .header__adres .header__adres__mobileTime {
    font-size: 4vw;
  }

  .header .header__menu .header__contacts {
    margin-top: 0;
    padding-top: 5.71vw;
    padding-bottom: 4.28vw;
  }

  .header .header__menu .header__contacts .header__contacts__bottom {
    margin-bottom: 6.28vw;
  }

  .header .header__menu .header__contacts .header__contacts__bottom .header__contacts__soc {
    gap: 4.28vw;
  }

  .header .header__menu .header__contacts .header__contacts__bottom .header__contacts__soc .header__contacts__tgIcon {
    width: 5.5vw;
    height: 5.5vw;
  }

  .header .header__menu .header__contacts .header__contacts__bottom .header__contacts__soc .header__contacts__wsIcon {
    width: 5.5vw;
    height: 5.5vw;
  }

  .header .header__menu .header__contacts .header__contacts__tel {
    margin-bottom: 6.28vw;
    font-size: 5.142vw;
  }

  .header .header__menu .header__contacts .header__contacts__mobileRequest {
    font-size: 4vw;
  }

  .header .header__mobile .header__mobile__tel,
  .header .header__mobile .header__mobile__adr,
  .header .header__mobile .header__mobile__burger {
    width: 11.428vw;
    height: 11.428vw;
    border-radius: 2.857vw;
  }

  .header .header__mobile .header__mobile__burger {
    gap: 1.142vw;
  }

  .header .header__mobile .header__mobile__burger .header__mobile__burger__close {
    width: 1.875vw;
    height: 1.875vw;
  }

  .header .header__mobile .header__mobile__burger .header__mobile__burger__close::before,
  .header .header__mobile .header__mobile__burger .header__mobile__burger__close::after {
    content: "";
    width: 4.5vw;
    height: 0.8vw;
    border-radius: 2vw;
  }

  .header .header__mobile .header__mobile__burger .header__mobile__burger__close::before {
    transform: rotateZ(45deg);
  }

  .header .header__mobile .header__mobile__burger .header__mobile__burger__close::after {
    transform: rotateZ(-45deg);
  }

  .header .header__mobile .header__mobile__burger .header__mobile__burger__line {
    gap: 1.142vw;
  }

  .header .header__mobile .header__mobile__burger .header__mobile__burger__circle {
    width: 1.142vw;
    height: 1.142vw;
  }
}

.services {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
  background: white;
  border-top: 1px solid rgba(140, 140, 140, 0.1);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}

@media (min-width: 850px) {
  .services:not(.services_shown) .services__pages .services__elementPages.services__elementPages_shown {
    pointer-events: none;
  }
}

.services.services_shown {
  opacity: 1;
  pointer-events: all;
}

.services .services__wrap {
  height: 100%;
  display: flex;
}

.services .services__cats {
  width: 50vw;
  height: 100%;
  padding-top: 0.928vw;
  padding-left: 8.57vw;
  display: flex;
  gap: 4vw;
}

.services .services__cats .services__cats__imageBlock {
  position: relative;
  width: 14.285vw;
  height: 14.285vw;
  border-radius: 2.5vw;
  overflow: hidden;
}

.services .services__cats .services__cats__imageBlock .services__cats__imageBlock__image {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-filter: blur(3px);
  filter: blur(3px);
  width: 100%;
  height: 100%;
  transition: 0.4s;
}

.services .services__cats .services__cats__imageBlock .services__cats__imageBlock__image.shown {
  pointer-events: none;
  opacity: 1;
  -webkit-filter: blur(0px);
  filter: blur(0px);
}

.services .services__cats .services__cats__nav {
  display: flex;
  flex-direction: column;
  gap: 1.56vw;
  margin-bottom: 1.56vw;
}

.services .services__cats .services__cats__nav .services__cats__item {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.services .services__cats .services__cats__nav .services__cats__item::after {
  content: "";
  flex-shrink: 0;
  margin-left: 0.9vw;
  width: 0.25vw;
  height: 0.5vw;
  background: url(../imgs/arrowRight.svg) no-repeat center/contain;
  opacity: 0;
  will-change: transform;
  transform: translateX(-0.5vw) translateY(30%);
  transition: 0.4s;
}

.services .services__cats .services__cats__nav .services__cats__item .services__cats__item__icon {
  width: 2.5vw;
  height: 2.5vw;
  margin-right: 1.07vw;
  border-radius: 0.714vw;
  background: rgba(140, 140, 140, 0.1);
  border: 0.142vw solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}

.services .services__cats .services__cats__nav .services__cats__item .services__cats__item__icon img {
  width: 100%;
  height: 100%;
  max-width: 50%;
  max-height: 50%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-filter: initial;
  filter: initial;
  transition: 0.4s;
}

.services .services__cats .services__cats__nav .services__cats__item .services__cats__item__text {
  font-size: 1.285vw;
  transition: 0.4s;
}

@media (min-width: 850px) {
  .services .services__cats .services__cats__nav .services__cats__item:hover .services__cats__item__icon {
    border-color: #8EA64D;
  }

  .services .services__cats .services__cats__nav .services__cats__item:hover .services__cats__item__icon img {
    -webkit-filter: grayscale(100%) brightness(100%) sepia(30%) hue-rotate(50deg) saturate(500%);
    filter: grayscale(100%) brightness(100%) sepia(30%) hue-rotate(50deg) saturate(500%);
  }

  .services .services__cats .services__cats__nav .services__cats__item:hover .services__cats__item__text {
    color: #8EA64D;
  }
}

@media (min-width: 850px) {
  .services .services__cats .services__cats__nav .services__cats__item.chosen::after {
    opacity: 1;
    transform: translateX(0) translateY(30%);
  }

  .services .services__cats .services__cats__nav .services__cats__item.chosen .services__cats__item__icon {
    border-color: #8EA64D;
    background: rgba(142, 166, 77, 0.1);
  }

  .services .services__cats .services__cats__nav .services__cats__item.chosen .services__cats__item__icon img {
    -webkit-filter: grayscale(100%) brightness(100%) sepia(30%) hue-rotate(50deg) saturate(500%);
    filter: grayscale(100%) brightness(100%) sepia(30%) hue-rotate(50deg) saturate(500%);
  }

  .services .services__cats .services__cats__nav .services__cats__item.chosen .services__cats__item__text {
    color: #8EA64D;
  }
}

.services .services__pages {
  position: relative;
  width: 50vw;
  height: 100%;
  background: rgba(140, 140, 140, 0.1);
}

.services .services__pages::before {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  height: 2.5vw;
  pointer-events: none;
  background: linear-gradient(to bottom, rgb(244, 244, 244), rgba(244, 244, 244, 0));
}

.services .services__pages::after {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5vw;
  pointer-events: none;
  background: linear-gradient(to top, rgb(244, 244, 244), rgba(244, 244, 244, 0));
}

.services .services__pages .services__elementPages {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 1.428vw 2.785vw 4vw 2.785vw;
  margin-right: 0.357vw;
  display: flex;
  flex-direction: column;
  gap: 1.785vw;
  overflow: auto;
  transition: 0.4s;
  opacity: 0;
  transform: translateX(25%);
  pointer-events: none;
}

@media (min-width: 850px) {
  .services .services__pages .services__elementPages.services__elementPages_shown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0%);
  }
}

.services .services__pages .services__elementPages::-webkit-scrollbar {
  width: 0.357vw;
  /* ширина scrollbar */
}

.services .services__pages .services__elementPages::-webkit-scrollbar-track {
  background: transparent;
  /* цвет дорожки */
}

.services .services__pages .services__elementPages::-webkit-scrollbar-thumb {
  background-color: rgba(140, 140, 140, 0.5);
  /* цвет плашки */
  border-radius: 7.142vw;
  /* закругления плашки */
}

.services .services__pages .services__elementPages .services__pages__item {
  max-width: 38.64vw;
  font-size: 1.285vw;
  cursor: pointer;
  transition: 0.4s;
  display: flex;
  align-items: center;
}

@media (min-width: 850px) {
  .services .services__pages .services__elementPages .services__pages__item:hover.hasSubMenu::after {
    background: url(../imgs/arrowRight.svg) no-repeat center/contain;
  }
}

.services .services__pages .services__elementPages .services__pages__item.hasSubMenu::after {
  content: "";
  flex-shrink: 0;
  margin-left: 0.9vw;
  width: 0.25vw;
  height: 0.5vw;
  background: url(../imgs/arrowRight_black.svg) no-repeat center/contain;
  will-change: transform;
  transform: translateY(20%);
  transition: 0.4s;
}

@media (min-width: 850px) {
  .services .services__pages .services__elementPages .services__pages__item:hover {
    color: var(--green-color);
    text-decoration: underline;
  }
}

.services .services__pages .services__elementPages .services__elementPages__mobileBack {
  display: none;
}

.services .services__pages .services__elementPages .services__elementPages__mobileName {
  display: none;
}

@media (max-width: 850px) {
  .services {
    flex-shrink: 0;
    position: static;
    height: auto;
    opacity: 1;
    border-top: none;
    pointer-events: all;
  }

  .services .services__cats {
    width: auto;
    padding: 0;
  }

  .services .services__cats .services__cats__imageBlock {
    display: none;
  }

  .services .services__cats .services__cats__nav .services__cats__item::after {
    margin-left: 2.03vw;
    width: 0.5vw;
    height: 1vw;
    opacity: 1;
  }

  .services .services__cats .services__cats__nav .services__cats__item .services__cats__item__icon {
    width: 6.25vw;
    height: 6.25vw;
    margin-right: 2.34vw;
    border-radius: 1.56vw;
    background: rgba(142, 166, 77, 0.1);
    border: none;
  }

  .services .services__cats .services__cats__nav .services__cats__item .services__cats__item__icon img {
    width: 100%;
    height: 100%;
    max-width: 50%;
    max-height: 50%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-filter: grayscale(100%) brightness(100%) sepia(30%) hue-rotate(50deg) saturate(500%);
    filter: grayscale(100%) brightness(100%) sepia(30%) hue-rotate(50deg) saturate(500%);
  }

  .services .services__cats .services__cats__nav .services__cats__item:nth-child(1) .services__cats__item__icon img {
    max-width: 37.5%;
    max-height: 50%;
  }

  .services .services__cats .services__cats__nav .services__cats__item:nth-child(2) .services__cats__item__icon img {
    max-width: 42.5%;
    max-height: 50%;
  }

  .services .services__cats .services__cats__nav .services__cats__item:nth-child(3) .services__cats__item__icon img {
    max-width: 45%;
    max-height: 50%;
  }

  .services .services__cats .services__cats__nav .services__cats__item:nth-child(4) .services__cats__item__icon img {
    max-width: 45%;
    max-height: 50%;
  }

  .services .services__cats .services__cats__nav .services__cats__item .services__cats__item__text {
    font-size: 2.81vw;
  }

  .services .services__pages {
    position: fixed;
    left: 0;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    background: white;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
  }

  .services .services__pages.services__pages_mobileShown {
    opacity: 1;
    pointer-events: all;
  }

  .services .services__pages::before,
  .services .services__pages::after {
    display: none;
  }

  .services .services__pages .services__elementPages {
    gap: 0;
    transform: translateX(25%);
    transition: 0.4s;
  }

  .services .services__pages .services__elementPages.services__elementPages_mobileShown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0%);
    transition-delay: 0.4s;
  }

  .services .services__pages .services__elementPages .services__pages__item {
    max-width: initial;
    padding: 2.65vw 0;
    padding-left: 2.81vw;
    padding-right: 2.96vw;
    font-size: 2.81vw;
    border-radius: 1.56vw;
    background: rgba(140, 140, 140, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5vw;
  }

  .services .services__pages .services__elementPages .services__pages__item:not(:last-of-type) {
    margin-bottom: 1.56vw;
  }

  .services .services__pages .services__elementPages .services__elementPages__mobileBack {
    margin-bottom: 2.65vw;
    font-size: 2.81vw;
    color: rgb(140, 140, 140);
    display: flex;
    align-items: center;
    gap: 2.03vw;
  }

  .services .services__pages .services__elementPages .services__elementPages__mobileBack::before {
    content: "";
    width: 0.46vw;
    height: 0.93vw;
    background: url(../imgs/arrowLeft_grey.svg) no-repeat center/contain;
  }

  .services .services__pages .services__elementPages .services__elementPages__mobileName {
    margin-bottom: 1.56vw;
    display: flex;
    align-items: center;
    gap: 2.34vw;
  }

  .services .services__pages .services__elementPages .services__elementPages__mobileName .services__elementPages__mobileName__icon {
    width: 6.25vw;
    height: 6.25vw;
    border-radius: 1.56vw;
    border: 0.234vw solid rgb(142, 166, 77);
    background: rgba(142, 166, 77, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .services .services__pages .services__elementPages .services__elementPages__mobileName .services__elementPages__mobileName__icon img {
    width: 100%;
    height: 100%;
    max-width: 50%;
    max-height: 50%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-filter: grayscale(100%) brightness(100%) sepia(30%) hue-rotate(50deg) saturate(500%);
    filter: grayscale(100%) brightness(100%) sepia(30%) hue-rotate(50deg) saturate(500%);
  }

  .services .services__pages .services__elementPages .services__elementPages__mobileName .services__elementPages__mobileName__text {
    font-size: 2.81vw;
    color: rgb(142, 166, 77);
  }
}

@media (max-width: 500px) {
  .services .services__cats .services__cats__nav {
    margin-bottom: 2.857vw;
    gap: 2.857vw;
  }

  .services .services__cats .services__cats__nav .services__cats__item::after {
    width: 0.857vw;
    height: 1.71vw;
    margin-left: 3.7vw;
  }

  .services .services__cats .services__cats__nav .services__cats__item .services__cats__item__icon {
    width: 11.428vw;
    height: 11.428vw;
    margin-right: 4.28vw;
  }

  .services .services__cats .services__cats__nav .services__cats__item .services__cats__item__text {
    font-size: 4.57vw;
  }

  .services .services__pages .services__elementPages {
    padding-top: 0;
  }

  .services .services__pages .services__elementPages .services__elementPages__mobileBack {
    margin-bottom: 2.857vw;
    font-size: 4.571vw;
    gap: 3.71vw;
  }

  .services .services__pages .services__elementPages .services__elementPages__mobileBack::before {
    content: "";
    width: 1vw;
    height: 1.9vw;
  }

  .services .services__pages .services__elementPages .services__elementPages__mobileName {
    margin-bottom: 2.857vw;
    gap: 4.285vw;
  }

  .services .services__pages .services__elementPages .services__elementPages__mobileName .services__elementPages__mobileName__icon {
    width: 11.428vw;
    height: 11.428vw;
    border-radius: 2.857vw;
    border: 0.428vw solid #8ea64d;
  }

  .services .services__pages .services__elementPages .services__elementPages__mobileName .services__elementPages__mobileName__text {
    font-size: 4.57vw;
  }

  .services .services__pages .services__elementPages .services__pages__item {
    padding: 3.2vw 0;
    padding-left: 5.142vw;
    padding-right: 5.428vw;
    font-size: 4.571vw;
    border-radius: 2.857vw;
    gap: 2.5vw;
  }

  .services .services__pages .services__elementPages .services__pages__item::after {
    content: "";
    width: 1vw;
    height: 1.9vw;
  }

  .services .services__pages .services__elementPages .services__pages__item:not(:last-of-type) {
    margin-bottom: 2.857vw;
  }
}

.services__pages {
  width: auto;
}

.hero {
  position: relative;
  z-index: 3;
  padding-top: 4.571vw;
  background: white;
}

.hero .hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero .hero__content .hero__subtitle {
  margin-bottom: 1.785vw;
  font-size: 1.428vw;
  color: var(--grey-color);
}

.hero .hero__content .hero__title {
  margin-bottom: 2.5vw;
  font-size: 4vw;
  line-height: 4vw;
  font-family: "Jost", sans-serif;
  font-weight: 400;
}

.hero .hero__content .hero__title strong {
  color: var(--green-color);
}

.hero .hero__content .hero__button {
  width: 21.428vw;
  padding: 1.285vw 0 1.357vw 0;
  border-radius: 0.714vw;
  font-size: 1.285vw;
  background: var(--green-color);
  color: white;
  cursor: pointer;
}

.hero .hero__images {
  position: relative;
  width: 100%;
  height: 20.857vw;
}

.hero .hero__images .hero__images__row {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.hero .hero__images .hero__images__row .hero__imageWrap {
  position: absolute;
  border-radius: 2vw;
  animation: hero_image_anim 2s alternate-reverse infinite;
}

@-webkit-keyframes hero_image_anim {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(10%);
  }
}

@keyframes hero_image_anim {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(10%);
  }
}

.hero .hero__images .hero__images__row .hero__imageWrap.mobile {
  display: none;
}

.hero .hero__images .hero__images__row .hero__imageWrap .hero__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  image-rendering: optimizeSpeed;
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimize-contrast;
  -ms-interpolation-mode: nearest-neighbor;
}

.hero .hero__images .hero__images__row:nth-of-type(1) .hero__imageWrap:nth-of-type(1) {
  left: -7.142vw;
  bottom: 24.285vw;
  width: 11.428vw;
  height: 11.428vw;
}

.hero .hero__images .hero__images__row:nth-of-type(1) .hero__imageWrap:nth-of-type(6) {
  right: -7.142vw;
  bottom: 24.285vw;
  width: 11.428vw;
  height: 11.428vw;
}

.hero .hero__images .hero__images__row:nth-of-type(1) .hero__imageWrap:nth-of-type(2) {
  left: 8.571vw;
  bottom: 20.714vw;
  width: 11.428vw;
  height: 11.428vw;
}

.hero .hero__images .hero__images__row:nth-of-type(1) .hero__imageWrap:nth-of-type(5) {
  right: 8.571vw;
  bottom: 20.714vw;
  width: 11.428vw;
  height: 11.428vw;
}

.hero .hero__images .hero__images__row:nth-of-type(1) .hero__imageWrap:nth-of-type(3) {
  left: 25vw;
  bottom: 17.285vw;
  width: 7.142vw;
  height: 7.142vw;
}

.hero .hero__images .hero__images__row:nth-of-type(1) .hero__imageWrap:nth-of-type(4) {
  right: 25vw;
  bottom: 17.285vw;
  width: 7.142vw;
  height: 7.142vw;
}

.hero .hero__images .hero__images__row:nth-of-type(2) .hero__imageWrap:nth-of-type(1) {
  left: -8.57vw;
  bottom: 5.714vw;
  width: 14.285vw;
  height: 14.285vw;
}

.hero .hero__images .hero__images__row:nth-of-type(2) .hero__imageWrap:nth-of-type(7) {
  right: -8.57vw;
  bottom: 5.714vw;
  width: 14.285vw;
  height: 14.285vw;
}

.hero .hero__images .hero__images__row:nth-of-type(2) .hero__imageWrap:nth-of-type(2) {
  left: 8.9vw;
  bottom: 3vw;
  width: 14.285vw;
  height: 14.285vw;
}

.hero .hero__images .hero__images__row:nth-of-type(2) .hero__imageWrap:nth-of-type(6) {
  right: 8.9vw;
  bottom: 3vw;
  width: 14.28vw;
  height: 14.28vw;
}

.hero .hero__images .hero__images__row:nth-of-type(2) .hero__imageWrap:nth-of-type(3) {
  left: 27.142vw;
  bottom: 1.428vw;
  width: 11.428vw;
  height: 11.428vw;
}

.hero .hero__images .hero__images__row:nth-of-type(2) .hero__imageWrap:nth-of-type(5) {
  right: 27.142vw;
  bottom: 1.428vw;
  width: 11.428vw;
  height: 11.428vw;
}

.hero .hero__images .hero__images__row:nth-of-type(2) .hero__imageWrap:nth-of-type(4) {
  left: 42.4vw;
  bottom: 0px;
  width: 14.28vw;
  height: 14.28vw;
}

@media (max-width: 850px) {
  .hero {
    padding-top: 6.25vw;
  }

  .hero .hero__content .hero__subtitle {
    margin-bottom: 3.75vw;
    font-size: 3.125vw;
  }

  .hero .hero__content .hero__title {
    margin-bottom: 5.46vw;
    font-size: 7.5vw;
    line-height: 7.5vw;
  }

  .hero .hero__content .hero__button {
    width: 45.875vw;
    padding: 2.81vw 0 2.23vw 0;
    border-radius: 2.96vw;
    font-size: 2.8125vw;
  }

  .hero .hero__images {
    width: auto;
    height: auto;
    margin-top: 7.18vw;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    overflow: hidden;
    gap: 2.8125vw;
  }

  .hero .hero__images .hero__images__row {
    position: static;
    width: auto;
    display: flex;
    gap: 1.875vw;
    padding-right: 1.875vw;
    will-change: transform;
    animation: hero_row_anim 15s linear infinite reverse;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  @-webkit-keyframes hero_row_anim {
    0% {
      transform: translateX(-50%);
    }

    100% {
      transform: translateX(0%);
    }
  }

  @keyframes hero_row_anim {
    0% {
      transform: translateX(-50%);
    }

    100% {
      transform: translateX(0%);
    }
  }

  .hero .hero__images .hero__images__row .hero__imageWrap {
    position: static;
    -webkit-animation: none;
    animation: none;
    border-radius: 6.4vw;
  }

  .hero .hero__images .hero__images__row .hero__imageWrap.mobile {
    display: inline-block;
  }

  .hero .hero__images .hero__images__row:nth-of-type(2) {
    animation-direction: reverse;
    animation: hero_row_anim_reversed 20s linear infinite reverse;
  }

  @-webkit-keyframes hero_row_anim_reversed {
    0% {
      transform: translateX(0%);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  @keyframes hero_row_anim_reversed {
    0% {
      transform: translateX(0%);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  .hero .hero__images .hero__images__row:nth-of-type(1) .hero__imageWrap:nth-of-type(n),
  .hero .hero__images .hero__images__row:nth-of-type(2) .hero__imageWrap:nth-of-type(n) {
    width: 30vw;
    height: 30vw;
    flex-shrink: 0;
  }
}

@media (max-width: 500px) {
  .hero {
    padding-top: 5.428vw;
  }

  .hero .hero__content {
    margin: 0 2.857vw;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }

  .hero .hero__content .hero__subtitle {
    order: 2;
    margin-bottom: 5.71vw;
    font-size: 4vw;
  }

  .hero .hero__content .hero__title {
    order: 1;
    margin-bottom: 5.71vw;
    font-size: 9.14vw;
    line-height: 9.14vw;
  }

  .hero .hero__content .hero__button {
    order: 3;
    width: 100%;
    padding: 5.42vw 0 5.71vw 0;
    border-radius: 2.85vw;
    font-size: 4.57vw;
    text-align: center;
  }

  .hero .hero__images {
    margin-top: 5.71vw;
    gap: 2.85vw;
  }

  .hero .hero__images .hero__images__row {
    gap: 2.85vw;
    padding-right: 2.85vw;
  }

  .hero .hero__images .hero__images__row:nth-of-type(1) .hero__imageWrap:nth-of-type(n),
  .hero .hero__images .hero__images__row:nth-of-type(2) .hero__imageWrap:nth-of-type(n) {
    width: 45.714vw;
    height: 45.714vw;
  }
}

.container {
  margin: 0 8.57vw;
}

@media (max-width: 850px) {
  .container {
    margin: 0 1.5625vw;
  }
}

@media (max-width: 500px) {
  .container {
    margin: 0 2.857vw;
  }
}

.smallTitle {
  margin-bottom: 3.14vw;
  display: inline-flex;
  align-items: center;
  gap: 0.85vw;
  padding: 1.05vw 1.5vw;
  background: rgba(51, 51, 51, 0.05);
  border-radius: 7.14vw;
  font-size: 1vw;
  color: rgb(140, 140, 140);
  font-weight: 400;
  cursor: default;
}

.smallTitle .smallTitle__gif {
  flex-shrink: 0;
  width: 1vw;
  height: 1vw;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 850px) {
  .smallTitle {
    margin-bottom: 5.468vw;
    padding: 2.5vw 3.28vw;
    font-size: 2.185vw;
    gap: 1.9vw;
  }

  .smallTitle .smallTitle__gif {
    width: 2vw;
    height: 2vw;
  }
}

@media (max-width: 500px) {
  .smallTitle {
    margin-bottom: 10vw;
    padding: 4.57vw 5.71vw;
    font-size: 4vw;
    gap: 3.42vw;
  }

  .smallTitle .smallTitle__gif {
    width: 3.8vw;
    height: 3.8vw;
  }
}

.inNumbers {
  position: relative;
  z-index: 2;
  padding-top: 12.14vw;
  background: white;
}

.inNumbers .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.inNumbers .inNumbers__wrap {
  display: grid;
  grid-template-columns: 25.71vw 25.71vw;
  gap: 2.857vw;
}

.inNumbers .inNumbers__item .inNumbers__item__title {
  margin-bottom: 0.5vw;
  color: rgb(142, 166, 77);
  display: flex;
  gap: 0.71vw;
}

.inNumbers .inNumbers__item .inNumbers__item__title .inNumbers__item__title__number {
  font-size: 8.57vw;
  line-height: 7.5vw;
}

.inNumbers .inNumbers__item .inNumbers__item__title .inNumbers__item__title__small {
  font-size: 3.428vw;
}

.inNumbers .inNumbers__item .inNumbers__item__title .inNumbers__item__title__small.bottom {
  align-self: flex-end;
}

.inNumbers .inNumbers__item .inNumbers__item__title .inNumbers__item__title__small.center {
  align-self: center;
}

.inNumbers .inNumbers__item .inNumbers__item__text {
  font-size: 1.28vw;
  line-height: 1.55vw;
}

@media (max-width: 850px) {
  .inNumbers {
    padding-top: 14.06vw;
  }

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

  .inNumbers .inNumbers__wrap {
    grid-template-columns: 46.875vw 46.875vw;
    gap: 3.125vw;
  }

  .inNumbers .inNumbers__item .inNumbers__item__title {
    margin-bottom: 0.5vw;
    gap: 1.56vw;
  }

  .inNumbers .inNumbers__item .inNumbers__item__title .inNumbers__item__title__number {
    font-size: 15vw;
    line-height: 14vw;
  }

  .inNumbers .inNumbers__item .inNumbers__item__title .inNumbers__item__title__small {
    font-size: 7.5vw;
  }

  .inNumbers .inNumbers__item .inNumbers__item__text {
    max-width: 37.5vw;
    font-size: 2.81vw;
    line-height: 3.4vw;
  }
}

@media (max-width: 500px) {
  .inNumbers {
    padding-top: 17.14vw;
  }

  .inNumbers .inNumbers__wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10vw;
  }

  .inNumbers .inNumbers__item .inNumbers__item__title {
    margin-bottom: 1vw;
    gap: 2.85vw;
  }

  .inNumbers .inNumbers__item .inNumbers__item__title .inNumbers__item__title__number {
    font-size: 20.57vw;
    line-height: 18.5vw;
  }

  .inNumbers .inNumbers__item .inNumbers__item__title .inNumbers__item__title__small {
    font-size: 9.14vw;
  }

  .inNumbers .inNumbers__item .inNumbers__item__text {
    max-width: initial;
    font-size: 4.7vw;
    line-height: 6vw;
  }
}

.aboutMed {
  position: relative;
  z-index: 2;
  padding-top: 8.57vw;
  padding-bottom: 8.57vw;
  background: white;
}

.aboutMed .aboutMed__wrap {
  display: flex;
  gap: 2.857vw;
}

.aboutMed .aboutMed__item {
  flex: 1 1 50%;
}

.aboutMed .aboutMed__item .aboutMed__imageBlock {
  height: 18.57vw;
  margin-bottom: 2.857vw;
  border-radius: 2.5vw;
  overflow: hidden;
}

.aboutMed .aboutMed__item .aboutMed__imageBlock img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.aboutMed .aboutMed__item .aboutMed__item__text {
  font-size: 1.285vw;
  line-height: 130%;
}

.aboutMed .aboutMed__item .aboutMed__item__text strong {
  color: rgb(142, 166, 77);
}

@media (max-width: 850px) {
  .aboutMed {
    padding-top: 14.06vw;
    padding-bottom: 14.06vw;
  }

  .aboutMed .aboutMed__wrap {
    flex-direction: column;
    gap: 5.46vw;
  }

  .aboutMed .aboutMed__item {
    flex: 1 1 auto;
  }

  .aboutMed .aboutMed__item .aboutMed__imageBlock {
    height: 45.3vw;
    margin-bottom: 3.125vw;
    border-radius: 5.46vw;
    overflow: hidden;
  }

  .aboutMed .aboutMed__item .aboutMed__item__text {
    font-size: 2.81vw;
  }
}

@media (max-width: 500px) {
  .aboutMed {
    padding-top: 17.14vw;
    padding-bottom: 17.14vw;
  }

  .aboutMed .aboutMed__wrap {
    flex-direction: column;
    gap: 9.714vw;
  }

  .aboutMed .aboutMed__item .aboutMed__imageBlock {
    height: 40vw;
    margin-bottom: 4.28vw;
    border-radius: 8.571vw;
  }

  .aboutMed .aboutMed__item .aboutMed__item__text {
    font-size: 4.57vw;
  }
}

.osnovatel {
  position: relative;
  z-index: 2;
  padding-bottom: 8.57vw;
  background: white;
}

.osnovatel .osnovatel__wrap {
  display: flex;
  gap: 2.857vw;
}

.osnovatel .osnovatel__content {
  display: flex;
  flex-direction: column;
}

.osnovatel .osnovatel__content .smallTitle {
  align-self: flex-start;
}

.osnovatel .osnovatel__content .osnovatel__title {
  margin-bottom: 2.78vw;
  font-size: 4vw;
  line-height: 100%;
}

.osnovatel .osnovatel__content .osnovatel__content__imageBlock {
  display: none;
}

.osnovatel .osnovatel__content .osnovatel__text {
  display: flex;
  gap: 2.857vw;
}

.osnovatel .osnovatel__content .osnovatel__text .osnovatel__text__item {
  flex: 0 1 50%;
  font-size: 1.285vw;
}

.osnovatel .osnovatel__imageBlock {
  flex-shrink: 0;
  width: 25.71vw;
  height: 25.71vw;
  border-radius: 2.5vw;
  overflow: hidden;
}

.osnovatel .osnovatel__imageBlock img {
  width: 100%;
  height: 100%;
}

.osnovatel .osnovatel__imageBlockMobile {
  display: none;
}

@media (max-width: 850px) {
  .osnovatel {
    padding-bottom: 14.06vw;
  }

  .osnovatel .osnovatel__wrap {
    display: flex;
    gap: 0;
  }

  .osnovatel .osnovatel__content .osnovatel__title {
    margin-bottom: 5.468vw;
    font-size: 7.5vw;
  }

  .osnovatel .osnovatel__content .osnovatel__wrapImageText {
    display: flex;
    gap: 3.125vw;
  }

  .osnovatel .osnovatel__content .osnovatel__text {
    display: flex;
    flex-direction: column;
    gap: 3.125vw;
  }

  .osnovatel .osnovatel__content .osnovatel__text .osnovatel__text__item {
    flex: 0 1 auto;
    font-size: 2.81vw;
  }

  .osnovatel .osnovatel__content .osnovatel__content__imageBlock {
    display: inline-block;
    flex-shrink: 0;
    width: 46.875vw;
    height: 46.875vw;
    border-radius: 4.687vw;
    overflow: hidden;
  }

  .osnovatel .osnovatel__content .osnovatel__content__imageBlock img {
    width: 100%;
    height: 100%;
  }

  .osnovatel .osnovatel__imageBlock {
    display: none;
  }
}

@media (max-width: 500px) {
  .osnovatel {
    padding-bottom: 17.14vw;
  }

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

  .osnovatel .osnovatel__content .osnovatel__title {
    margin-bottom: 5.71vw;
    font-size: 9.14vw;
  }

  .osnovatel .osnovatel__content .osnovatel__content__imageBlock {
    display: none;
  }

  .osnovatel .osnovatel__content .osnovatel__text {
    gap: 5.71vw;
  }

  .osnovatel .osnovatel__content .osnovatel__text .osnovatel__text__item {
    font-size: 4.57vw;
  }

  .osnovatel .osnovatel__imageBlockMobile {
    margin-bottom: 5.71vw;
    display: inline-block;
    width: 94.3vw;
    height: 94.3vw;
    flex-shrink: 0;
    border-radius: 8.57vw;
    overflow: hidden;
  }

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

.scrollingLine {
  position: relative;
  z-index: 2;
  height: 7.14vw;
  background: rgb(244, 244, 244);
  display: flex;
  align-items: center;
}

.scrollingLine .scrollingLine__wrap {
  display: flex;
  align-items: center;
  gap: 7.14vw;
  padding-right: 7.14vw;
  will-change: transform;
  -webkit-animation: scrollingLineAnim 14s linear infinite;
  animation: scrollingLineAnim 14s linear infinite;
}

@-webkit-keyframes scrollingLineAnim {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollingLineAnim {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.scrollingLine .scrollingLine__item {
  font-size: 1.285vw;
  color: rgb(140, 140, 140);
}

.scrollingLine .scrollingLine__item strong {
  font-family: playfair_bi;
  font-weight: 700;
}

@media (max-width: 850px) {
  .scrollingLine {
    height: 15.625vw;
  }

  .scrollingLine .scrollingLine__wrap {
    gap: 15.625vw;
    padding-right: 15.625vw;
    -webkit-animation-duration: 14s;
    animation-duration: 14s;
  }

  .scrollingLine .scrollingLine__item {
    font-size: 2.81vw;
  }
}

@media (max-width: 500px) {
  .scrollingLine {
    height: 28.57vw;
  }

  .scrollingLine .scrollingLine__wrap {
    gap: 7.14vw;
    padding-right: 7.14vw;
    -webkit-animation-duration: 14s;
    animation-duration: 14s;
  }

  .scrollingLine .scrollingLine__item {
    font-size: 4.57vw;
  }
}

.map {
  position: relative;
  z-index: 2;
  height: 35.71vw;
  background: white;
}

.map .map__block {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.map .map__callTaxi {
  position: absolute;
  left: 50%;
  bottom: 1.64vw;
  transform: translateX(-50%);
  padding: 0.428vw;
  padding-right: 2.64vw;
  background: white;
  border-radius: 7.142vw;
  display: flex;
  align-items: center;
  gap: 1.285vw;
  box-shadow: 0vw 0.714vw 3.57vw 0vw rgba(0, 0, 0, 0.15);
  cursor: pointer;
  white-space: nowrap;
  color: black;
  transition: 0.4s;
}

.map .map__callTaxi.mobile {
  display: none;
}

@media (min-width: 850px) {
  .map .map__callTaxi:hover {
    box-shadow: 0vw 0.714vw 3.57vw 0vw rgba(0, 0, 0, 0.35);
  }
}

.map .map__callTaxi .map__callTaxi__icon {
  width: 3.428vw;
  height: 3.428vw;
  flex-shrink: 0;
  background: url(../imgs/map_callTaxi.svg) no-repeat center/contain;
  border-radius: 50%;
}

.map .map__callTaxi .map__callTaxi__text {
  font-size: 1.285vw;
}

@media (max-width: 850px) {
  .map {
    height: 78.125vw;
  }

  .map .map__callTaxi {
    bottom: 6.25vw;
    padding: 0.937vw;
    padding-right: 5.78vw;
    border-radius: 15.625vw;
    gap: 2.81vw;
    box-shadow: 0vw 1.56vw 7.8vw 0vw rgba(0, 0, 0, 0.15);
  }

  .map .map__callTaxi .map__callTaxi__icon {
    width: 7.5vw;
    height: 7.5vw;
  }

  .map .map__callTaxi .map__callTaxi__text {
    font-size: 2.81vw;
  }
}

@media (max-width: 500px) {
  .map {
    height: 142.85vw;
  }

  .map .map__callTaxi {
    bottom: 14.857vw;
    padding: 1.71vw;
    padding-right: 11.14vw;
    border-radius: 28.57vw;
    gap: 4.85vw;
    box-shadow: 0vw 2.857vw 14.28vw 0vw rgba(0, 0, 0, 0.15);
  }

  .map .map__callTaxi.desktop {
    display: none;
  }

  .map .map__callTaxi.mobile {
    display: flex;
  }

  .map .map__callTaxi .map__callTaxi__icon {
    width: 13.71vw;
    height: 13.71vw;
  }

  .map .map__callTaxi .map__callTaxi__text {
    font-size: 4.57vw;
  }
}

.footer {
  position: relative;
}

.footer .footer__scrollWrap {
  padding-top: 5.35vw;
  padding-bottom: 2.14vw;
}

.footer .footer__container {
  display: flex;
  align-items: stretch;
  gap: 7.14vw;
}

.footer .footerForm {
  position: relative;
  flex: 0 0 25.71vw;
  padding: 2.14vw;
  padding-top: 3.57vw;
  padding-bottom: 1.785vw;
  background: var(--green-color);
  border-radius: 0.71vw;
  box-sizing: border-box;
}

.footer .footerForm::before {
  content: "";
  display: inline-block;
  width: 26.8vw;
  height: 12.35vw;
  position: absolute;
  right: 1.85vw;
  top: 24.2vw;
  background: url(../imgs/footerFormImage.svg) no-repeat center/contain;
  pointer-events: none;
}

.footer .footerForm .footerForm__wrap {
  display: flex;
  flex-direction: column;
  gap: 1.428vw;
}

.footer .footerForm .footerForm__info {
  display: flex;
  flex-direction: column;
  gap: 1.07vw;
  color: white;
}

.footer .footerForm .footerForm__info .footerForm__title {
  font-size: 2.428vw;
}

.footer .footerForm .footerForm__info .footerForm__subtitle {
  max-width: 18.57vw;
  font-size: 1.142vw;
  line-height: 130%;
  opacity: 0.75;
}

.footer .footerForm .footerForm__form .wpcf7-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.71vw;
}

.footer .footerForm .footerForm__inputWrap {
  position: relative;
  width: 100%;
  height: 4.28vw;
}

.footer .footerForm .footerForm__inputWrap.jsForm__inputWrap_incorrect input {
  border-color: #C1000F;
}

.footer .footerForm .footerForm__inputWrap.jsForm__inputWrap_correct input {
  border-color: rgb(142, 166, 77);
}

.footer .footerForm .footerForm__inputWrap input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  padding-top: 1.928vw;
  padding-left: 0.857vw;
  padding-bottom: 0.71vw;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.714vw;
  outline: none;
  border: 0.07vw solid transparent;
  font-size: 1.142vw;
  color: white;
  transition: 0.4s;
}

.footer .footerForm .footerForm__inputWrap input:focus {
  border-color: white;
}

.footer .footerForm .footerForm__inputWrap .footerForm__placeholder {
  position: absolute;
  top: 0.71vw;
  left: 0.857vw;
  color: white;
  font-size: 0.71vw;
}

.footer .footerForm .footerForm__submit {
  position: relative;
  width: 9.285vw;
  height: 4.285vw;
  border-radius: 7.14vw;
  color: var(--green-color);
  font-size: 1.142vw;
  overflow: hidden;
}

.footer .footerForm .footerForm__submit input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: none;
  outline: none;
  cursor: pointer;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--green-color);
}

.footer .footerForm .footerForm__form__rights {
  margin-top: 11vw;
  font-size: 0.71vw;
  line-height: 130%;
  color: white;
  opacity: 0.75;
}

.footer .footerForm .footerForm__form__rights a {
  text-decoration: underline;
}

@media (min-width: 850px) {
  .footer .footerForm .footerForm__form__rights a:hover {
    text-decoration: none;
  }
}

.footer .footer__wrap {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer .footer__contacts {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 18.57vw);
  -moz-column-gap: 5.714vw;
  column-gap: 5.714vw;
  row-gap: 2.5vw;
}

.footer .footer__contacts .footer__contacts__name {
  margin-bottom: 1.428vw;
  font-size: 1vw;
  color: var(--green-color);
}

.footer .footer__contacts a.footer__contacts__data {
  transition: 0.4s;
}

@media (min-width: 850px) {
  .footer .footer__contacts a.footer__contacts__data:hover {
    color: var(--green-color);
  }
}

.footer .footer__contacts .footer__contacts__data {
  font-size: 1.57vw;
  color: var(--black-color);
}

.footer .footer__contacts .footer__contacts__desktopLogo {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  width: 4.285vw;
  height: 4.285vw;
}

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

.footer .footer__soc {
  margin-top: 3.71vw;
  display: flex;
  align-items: center;
}

.footer .footer__soc .footer__soc__mobileLogo {
  display: none;
}

.footer .footer__soc .footer__soc__items {
  margin-right: 4.64vw;
  display: flex;
  align-items: center;
  gap: 1.07vw;
}

.footer .footer__soc .footer__soc__items .footer__soc__item {
  position: relative;
  width: 4.285vw;
  height: 4.285vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 0.07vw solid rgba(140, 140, 140, 0.5);
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s;
}

.footer .footer__soc .footer__soc__items .footer__soc__item svg {
  width: 1.3vw;
  height: 1.3vw;
  position: relative;
  z-index: 2;
}

.footer .footer__soc .footer__soc__items .footer__soc__item path {
  -o-object-fit: contain;
  object-fit: contain;
  fill: var(--green-color);
  transition: 0.4s;
}

.footer .footer__soc .footer__soc__items .footer__soc__item::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
  border-radius: 50%;
  background: var(--green-color);
  opacity: 0;
  will-change: transform opacity;
  transition: 0.4s;
}

@media (min-width: 850px) {
  .footer .footer__soc .footer__soc__items .footer__soc__item:hover {
    border-color: var(--green-color);
  }

  .footer .footer__soc .footer__soc__items .footer__soc__item:hover::before {
    transform: translateY(0);
    opacity: 1;
  }

  .footer .footer__soc .footer__soc__items .footer__soc__item:hover path {
    fill: white;
  }
}

.footer .footer__nav {
  padding-top: 3.21vw;
  padding-bottom: 3.21vw;
  display: grid;
  grid-template-columns: 11.428vw 11.428vw 18.57vw;
  grid-template-rows: repeat(3, auto);
  justify-content: space-between;
  row-gap: 1.785vw;
  grid-auto-flow: column;
  border-bottom: 0.07vw dashed rgba(140, 140, 140, 0.5);
}

.footer .footer__nav .footer__nav__item {
  font-size: 1vw;
  color: rgb(140, 140, 140);
  transition: 0.4s;
}

@media (min-width: 850px) {
  .footer .footer__nav .footer__nav__item:hover {
    color: var(--green-color);
  }
}

.footer .footer__bottomNav {
  padding-top: 3.21vw;
  padding-bottom: 3.21vw;
  display: grid;
  gap: 1vw;
  justify-content: space-between;
  grid-template-columns: repeat(4, auto);
  border-bottom: 0.07vw dashed rgba(140, 140, 140, 0.5);
}

.footer .footer__bottomNav .footer__bottomNav__item {
  font-size: 0.857vw;
  color: rgb(140, 140, 140);
  display: flex;
  align-items: center;
  transition: 0.4s;
}

@media (min-width: 850px) {
  .footer .footer__bottomNav .footer__bottomNav__item:hover {
    color: black;
  }
}

.footer .footer__bottomNav .footer__bottomNav__item.footer__bottomNav__item_nalog {
  gap: 0.714vw;
}

.footer .footer__bottomNav .footer__bottomNav__item.footer__bottomNav__item_nalog::before {
  content: "";
  flex-shrink: 0;
  width: 1.857vw;
  height: 1.857vw;
  background: url(../imgs/nalogIcon.svg) no-repeat center/contain;
}

.footer .footer__dashedLine {
  flex: 1 1 auto;
  border-bottom: 0.07vw dashed rgba(140, 140, 140, 0.5);
}

.footer .footer__dashedLine.mobile {
  display: none;
}

.footer .footer__bottom {
  margin-top: 2.21vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .footer__bottom .footer__rights {
  font-size: 0.71vw;
  color: rgb(140, 140, 140);
}

.footer .footer__bottom .footer__creators {
  display: flex;
  align-items: center;
  gap: 0.714vw;
  font-size: 0.71vw;
  color: rgb(140, 140, 140);
  cursor: pointer;
}

.footer .footer__bottom .footer__creators:hover {
  opacity: 0.6;
}

.footer .footer__bottom .footer__creators .footer__creators__icon {
  width: 1.07vw;
  height: 0.785vw;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 850px) {
  .footer {
    height: auto;
  }

  .footer .footer__scrollWrap {
    position: relative;
    padding-top: 0;
    padding-bottom: 2.5vw;
  }

  .footer .footer__container {
    display: flex;
    flex-direction: column;
    gap: 7.03vw;
  }

  .footer .footerForm {
    position: relative;
    left: -1.5625vw;
    width: calc(100% + 3.125vw);
    flex: 1 1 auto;
    padding: 1.56vw;
    padding-top: 6.25vw;
    padding-bottom: 18.43vw;
    border-radius: 0;
  }

  .footer .footerForm::before {
    width: 56.95vw;
    height: 27.12vw;
    right: 53vw;
    top: 30.15vw;
  }

  .footer .footerForm .footerForm__wrap {
    flex-direction: row;
    gap: 7.81vw;
  }

  .footer .footerForm .footerForm__info {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 2.34vw;
    color: white;
  }

  .footer .footerForm .footerForm__info .footerForm__title {
    font-size: 5vw;
  }

  .footer .footerForm .footerForm__info .footerForm__subtitle {
    max-width: 42.18vw;
    font-size: 2.5vw;
  }

  .footer .footerForm .footerForm__form .wpcf7-form {
    gap: 1.56vw;
  }

  .footer .footerForm .footerForm__inputWrap {
    height: 9.375vw;
  }

  .footer .footerForm .footerForm__inputWrap input {
    padding-top: 4.21vw;
    padding-left: 1.875vw;
    padding-bottom: 1.56vw;
    border-radius: 1.56vw;
    border: 0.156vw solid transparent;
    font-size: 2.5vw;
  }

  .footer .footerForm .footerForm__inputWrap .footerForm__placeholder {
    top: 1.56vw;
    left: 1.875vw;
    font-size: 1.56vw;
  }

  .footer .footerForm .footerForm__submit {
    width: auto;
    height: 9.375vw;
    border-radius: 15.62vw;
    font-size: 2.5vw;
  }

  .footer .footerForm .footerForm__form__rights {
    margin-top: 0;
    font-size: 1.56vw;
  }

  .footer .footer__wrap {
    justify-content: flex-start;
  }

  .footer .footer__contacts {
    order: 2;
    margin-bottom: 7.03vw;
    grid-template-columns: repeat(2, 40.625vw);
    -moz-column-gap: 9.37vw;
    column-gap: 9.37vw;
    row-gap: 6.25vw;
  }

  .footer .footer__contacts .footer__contacts__name {
    margin-bottom: 3.125vw;
    font-size: 2.187vw;
  }

  .footer .footer__contacts .footer__contacts__data {
    font-size: 3.437vw;
  }

  .footer .footer__contacts .footer__contacts__desktopLogo {
    display: none;
  }

  .footer .footer__soc {
    order: 1;
    margin-top: 0;
    margin-bottom: 7.03vw;
  }

  .footer .footer__soc .footer__soc__mobileLogo {
    display: inline-block;
    width: 9.375vw;
    height: 9.375vw;
    margin-right: 3.9vw;
  }

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

  .footer .footer__soc .footer__soc__items {
    margin-right: 3.9vw;
    margin-left: 3.9vw;
    gap: 2.34vw;
  }

  .footer .footer__soc .footer__soc__items .footer__soc__item {
    width: 9.375vw;
    height: 9.375vw;
    border: 0.156vw solid rgba(140, 140, 140, 0.5);
  }

  .footer .footer__soc .footer__soc__items .footer__soc__item svg {
    width: 2.81vw;
    height: 2.81vw;
  }

  .footer .footer__dashedLine {
    flex: 1 1 auto;
    border-bottom: 0.07vw dashed rgba(140, 140, 140, 0.5);
  }

  .footer .footer__dashedLine.mobile {
    display: inline-block;
    flex: 0 1 33.9vw;
  }

  .footer .footer__nav {
    order: 3;
    padding-top: 7.03vw;
    padding-bottom: 7.03vw;
    display: grid;
    grid-template-columns: 25vw 1fr;
    grid-template-rows: repeat(6, auto);
    grid-auto-flow: column;
    justify-content: space-between;
    -moz-column-gap: 25vw;
    column-gap: 25vw;
    row-gap: 3.9vw;
    border-top: 0.15vw dashed rgba(140, 140, 140, 0.5);
    border-bottom: 0.15vw dashed rgba(140, 140, 140, 0.5);
  }

  .footer .footer__nav .footer__nav__item {
    font-size: 2.187vw;
  }

  .footer .footer__bottomNav {
    order: 4;
    padding-top: 7.03vw;
    padding-bottom: 7.03vw;
    border-bottom: 0.15vw dashed rgba(140, 140, 140, 0.5);
    grid-template-columns: 35.15vw auto;
    grid-template-rows: repeat(3, auto);
    -moz-column-gap: 14.84vw;
    column-gap: 14.84vw;
    row-gap: 3.9vw;
    grid-auto-flow: column;
    justify-content: flex-start;
  }

  .footer .footer__bottomNav .footer__bottomNav__item {
    font-size: 1.875vw;
  }

  .footer .footer__bottomNav .footer__bottomNav__item.footer__bottomNav__item_nalog {
    order: 99;
    gap: 1.56vw;
  }

  .footer .footer__bottomNav .footer__bottomNav__item.footer__bottomNav__item_nalog::before {
    content: "";
    width: 4.06vw;
    height: 4.06vw;
    background: url(../imgs/nalogIcon.png) no-repeat center/contain;
  }

  .footer .footer__bottom {
    order: 5;
    margin-top: 2.5vw;
  }

  .footer .footer__bottom .footer__rights {
    font-size: 1.56vw;
  }

  .footer .footer__bottom .footer__creators {
    gap: 1.56vw;
    font-size: 1.56vw;
  }

  .footer .footer__bottom .footer__creators .footer__creators__icon {
    width: 2.34vw;
    height: 1.56vw;
  }
}

@media (max-width: 500px) {
  .footer .footer__scrollWrap {
    padding-bottom: 4.857vw;
  }

  .footer .footer__container {
    gap: 14.85vw;
  }

  .footer .footerForm {
    left: -2.857vw;
    width: calc(100% + 5.714vw);
    padding: 2.857vw;
    padding-top: 14.857vw;
    padding-bottom: 7.14vw;
    border-radius: 0;
  }

  .footer .footerForm::before {
    width: 118vw;
    height: 58vw;
    right: 2.857vw;
    top: 95.71vw;
  }

  .footer .footerForm .footerForm__wrap {
    flex-direction: column;
    gap: 5.71vw;
  }

  .footer .footerForm .footerForm__info {
    gap: 4.28vw;
  }

  .footer .footerForm .footerForm__info .footerForm__title {
    font-size: 9.14vw;
  }

  .footer .footerForm .footerForm__info .footerForm__subtitle {
    max-width: 74.28vw;
    font-size: 4.57vw;
  }

  .footer .footerForm .footerForm__form .wpcf7-form {
    gap: 2.857vw;
  }

  .footer .footerForm .footerForm__inputWrap {
    height: 17.14vw;
  }

  .footer .footerForm .footerForm__inputWrap input {
    padding-top: 7.71vw;
    padding-left: 3.42vw;
    padding-bottom: 2.857vw;
    border-radius: 2.857vw;
    border: 0.285vw solid transparent;
    font-size: 4.57vw;
  }

  .footer .footerForm .footerForm__inputWrap .footerForm__placeholder {
    top: 2.857vw;
    left: 3.42vw;
    font-size: 2.857vw;
  }

  .footer .footerForm .footerForm__submit {
    width: 37.142vw;
    height: 17.14vw;
    border-radius: 28.57vw;
    font-size: 4.57vw;
  }

  .footer .footerForm .footerForm__form__rights {
    margin-top: 47vw;
    font-size: 3.2vw;
  }

  .footer .footer__contacts {
    order: 2;
    margin-bottom: 12.85vw;
    display: flex;
    flex-direction: column;
  }

  .footer .footer__contacts .footer__contacts__name {
    margin-bottom: 5.71vw;
    font-size: 4vw;
  }

  .footer .footer__contacts .footer__contacts__data {
    font-size: 6.28vw;
  }

  .footer .footer__soc {
    order: 1;
    margin-top: 0;
    margin-bottom: 12.857vw;
  }

  .footer .footer__soc .footer__soc__mobileLogo {
    width: 17.14vw;
    height: 17.14vw;
    margin-right: 7.42vw;
  }

  .footer .footer__soc .footer__soc__items {
    margin-right: 0;
    margin-left: 7.42vw;
    gap: 2.857vw;
  }

  .footer .footer__soc .footer__soc__items .footer__soc__item {
    width: 17.14vw;
    height: 17.14vw;
    border: 0.285vw solid rgba(140, 140, 140, 0.5);
  }

  .footer .footer__soc .footer__soc__items .footer__soc__item svg {
    width: 5.14vw;
    height: 5.14vw;
  }

  .footer .footer__dashedLine {
    border-bottom: 0.285vw dashed rgba(140, 140, 140, 0.5);
  }

  .footer .footer__dashedLine.mobile {
    flex: 1 1 auto;
  }

  .footer .footer__dashedLine.desktop {
    display: none;
  }

  .footer .footer__nav {
    order: 3;
    padding-top: 12.857vw;
    padding-bottom: 12.857vw;
    display: flex;
    flex-direction: column;
    gap: 4.28vw;
    border-top: 0.285vw dashed rgba(140, 140, 140, 0.5);
    border-bottom: 0.285vw dashed rgba(140, 140, 140, 0.5);
  }

  .footer .footer__nav .footer__nav__item {
    font-size: 4vw;
  }

  .footer .footer__bottomNav {
    order: 4;
    padding-top: 12.857vw;
    padding-bottom: 12.857vw;
    border-bottom: 0.285vw dashed rgba(140, 140, 140, 0.5);
    display: flex;
    flex-direction: column;
    gap: 4.28vw;
  }

  .footer .footer__bottomNav .footer__bottomNav__item {
    font-size: 3.42vw;
  }

  .footer .footer__bottomNav .footer__bottomNav__item.footer__bottomNav__item_nalog {
    order: 0;
    gap: 2.857vw;
  }

  .footer .footer__bottomNav .footer__bottomNav__item.footer__bottomNav__item_nalog::before {
    content: "";
    width: 7.42vw;
    height: 7.42vw;
  }

  .footer .footer__bottom {
    order: 5;
    margin-top: 4.28vw;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4.28vw;
  }

  .footer .footer__bottom .footer__rights {
    font-size: 2.857vw;
  }

  .footer .footer__bottom .footer__creators {
    gap: 2.857vw;
    font-size: 2.857vw;
  }

  .footer .footer__bottom .footer__creators .footer__creators__icon {
    width: 4.28vw;
    height: 3.14vw;
  }
}

.request {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}

.request.request_shown {
  opacity: 1;
}

.request.request_shown .request__wrap {
  pointer-events: all;
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.4s;
}

.request .request__wrap {
  position: relative;
  width: 32.14vw;
  height: 28.57vw;
  box-sizing: border-box;
  padding: 0 2.857vw;
  padding-top: 3.71vw;
  padding-bottom: 2.71vw;
  border-radius: 2.14vw;
  background: white;
  pointer-events: none;
  opacity: 0;
  transform: translateY(50%);
  will-change: transform;
  transition: 0.7s;
  transition-delay: 0s;
}

.request .request__title {
  margin-bottom: 1.07vw;
  font-size: 2.285vw;
}

.request .request__subtitle {
  font-size: 1.142vw;
  line-height: 130%;
}

.request .request__close {
  position: absolute;
  right: 1.428vw;
  top: 1.428vw;
  width: 2.857vw;
  height: 2.857vw;
  background: rgba(142, 166, 77, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.request .request__close .request__close__cross {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.request .request__close .request__close__cross::before,
.request .request__close .request__close__cross::after {
  content: "";
  position: absolute;
  flex-shrink: 0;
  width: 0.65vw;
  height: 0.12vw;
  background: var(--green-color);
  border-radius: 2vw;
  transition: 0.4s;
}

.request .request__close .request__close__cross::before {
  transform: rotateZ(45deg);
}

.request .request__close .request__close__cross::after {
  transform: rotateZ(-45deg);
}

.request .request__close::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
  border-radius: 50%;
  background: var(--green-color);
  opacity: 0;
  will-change: transform opacity;
  transition: 0.4s;
}

@media (min-width: 850px) {
  .request .request__close:hover::before {
    transform: translateY(0);
    opacity: 1;
  }

  .request .request__close:hover .request__close__cross::before,
  .request .request__close:hover .request__close__cross::after {
    background: white;
  }
}

.request .request__form .wpcf7-form {
  margin-top: 1.5vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.71vw;
}

.request .request__inputWrap {
  position: relative;
  height: 4.285vw;
}

.request .request__inputWrap.jsForm__inputWrap_focused .request__placeholder {
  top: 0.75vw;
  transform: translateX(1.428vw) translateY(0%);
  font-size: 0.71vw;
}

.request .request__inputWrap.jsForm__inputWrap_correct .request__placeholder {
  color: var(--green-color);
}

.request .request__inputWrap.jsForm__inputWrap_correct input {
  background: rgba(142, 166, 77, 0.2);
  border-color: var(--green-color);
}

.request .request__inputWrap.jsForm__inputWrap_incorrect .request__placeholder {
  color: var(#C1000F);
}

.request .request__inputWrap.jsForm__inputWrap_incorrect input {
  background: rgba(193, 0, 15, 0.1);
  border-color: #C1000F;
}

.request .request__inputWrap .request__placeholder {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 50%;
  pointer-events: none;
  color: #7E7E7E;
  font-size: 1.14vw;
  transform: translateX(1.428vw) translateY(-50%);
  transition: 0.4s;
  will-change: transform, font-size;
}

.request .request__inputWrap input {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  padding-left: 1.428vw;
  padding-top: 1.928vw;
  padding-bottom: 0.71vw;
  border-radius: 0.71vw;
  outline: none;
  border: 0.07vw solid transparent;
  background: #F4F4F4;
  font-size: 1.14vw;
  transition: 0.4s;
}

.request .request__form__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.428vw;
}

.request .request__form__submit {
  position: relative;
  flex-shrink: 0;
  width: 10.71vw;
  height: 4.28vw;
  border-radius: 7.14vw;
  font-size: 1.2vw;
}

.request .request__form__submit input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: none;
  outline: none;
  background: var(--green-color);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.request .request__form__agree {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.71vw;
}

.request .request__form__agree.jsForm__agree_clicked .request__form__agree__fakeCheckbox::before {
  opacity: 1;
}

.request .request__form__agree.jsForm__agree_incorrect .request__form__agree__fakeCheckbox {
  border-color: rgb(193, 0, 15);
  background: rgba(193, 0, 15, 0.1);
}

.request .request__form__agree .request__form__agree__fakeCheckbox {
  flex-shrink: 0;
  width: 1.428vw;
  height: 1.428vw;
  border-radius: 0.357vw;
  background: #F4F4F4;
  border: 0.07vw solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}

.request .request__form__agree .request__form__agree__fakeCheckbox::before {
  content: "";
  width: 0.57vw;
  height: 0.428vw;
  background: url(../imgs/tip_grey.svg) no-repeat center/contain;
  opacity: 0;
  transition: 0.4s;
}

.request .request__form__agree .request__form__agree__text {
  font-size: 0.72vw;
  color: #8C8C8C;
}

.request .request__form__agree .request__form__agree__text a {
  text-decoration: underline;
}

@media (max-width: 850px) {
  .request .request__wrap {
    width: 70.31vw;
    height: 62.5vw;
    padding: 0 6.25vw;
    padding-top: 8.125vw;
    padding-bottom: 5.937vw;
    border-radius: 4.687vw;
  }

  .request .request__title {
    margin-bottom: 2.343vw;
    font-size: 5vw;
  }

  .request .request__subtitle {
    font-size: 2.5vw;
  }

  .request .request__close {
    position: absolute;
    right: 3.125vw;
    top: 3.125vw;
    width: 6.25vw;
    height: 6.25vw;
  }

  .request .request__close .request__close__cross::before,
  .request .request__close .request__close__cross::after {
    content: "";
    width: 1.421vw;
    height: 0.262vw;
    border-radius: 2vw;
  }

  .request .request__form .wpcf7-form {
    margin-top: 3.28vw;
    gap: 1.56vw;
  }

  .request .request__inputWrap {
    height: 9.37vw;
  }

  .request .request__inputWrap.jsForm__inputWrap_focused .request__placeholder {
    top: 1.64vw;
    transform: translateX(3.123vw) translateY(0%);
    font-size: 1.55vw;
  }

  .request .request__inputWrap .request__placeholder {
    font-size: 2.5vw;
    transform: translateX(3.123vw) translateY(-50%);
  }

  .request .request__inputWrap input {
    padding-left: 3.123vw;
    padding-top: 4.217vw;
    padding-bottom: 1.55vw;
    border-radius: 1.55vw;
    border: 0.15vw solid transparent;
    font-size: 2.5vw;
  }

  .request .request__form__bottom {
    gap: 3.123vw;
  }

  .request .request__form__submit {
    width: 23.428vw;
    height: 9.36vw;
    border-radius: 15.61vw;
    font-size: 2.5vw;
  }

  .request .request__form__agree {
    gap: 1.55vw;
  }

  .request .request__form__agree .request__form__agree__fakeCheckbox {
    width: 3.123vw;
    height: 3.123vw;
    border-radius: 0.78vw;
    border: 0.15vw solid transparent;
  }

  .request .request__form__agree .request__form__agree__fakeCheckbox::before {
    content: "";
    width: 1.246vw;
    height: 0.93vw;
  }

  .request .request__form__agree .request__form__agree__text {
    font-size: 1.57vw;
  }
}

@media (max-width: 500px) {
  .request {
    align-items: flex-end;
  }

  .request.activeKeyboard {
    height: 100vh;
  }

  .request.activeKeyboard .request__wrap {
    padding-bottom: 49.14vw;
  }

  .request .request__wrap {
    width: 100vw;
    height: 140vw;
    padding: 0 11.428vw;
    padding-top: 9.14vw;
    padding-bottom: 11.42vw;
    border-radius: 8.57vw 8.57vw 0 0;
    transform: translateY(100%);
    transition: 0.4s;
  }

  .request .request__title {
    max-width: 51.42vw;
    margin-bottom: 4.28vw;
    font-size: 9.14vw;
    line-height: 100%;
  }

  .request .request__subtitle {
    max-width: 54.28vw;
    font-size: 4.57vw;
  }

  .request .request__subtitle br {
    display: none;
  }

  .request .request__close {
    right: 2.857vw;
    top: 2.857vw;
    width: 11.42vw;
    height: 11.42vw;
  }

  .request .request__close .request__close__cross::before,
  .request .request__close .request__close__cross::after {
    content: "";
    width: 2.8vw;
    height: 0.45vw;
    border-radius: 2vw;
  }

  .request .request__form .wpcf7-form {
    margin-top: 5.71vw;
    gap: 2.857vw;
  }

  .request .request__inputWrap {
    height: 17.14vw;
  }

  .request .request__inputWrap.jsForm__inputWrap_focused .request__placeholder {
    top: 3vw;
    transform: translateX(5.71vw) translateY(0%);
    font-size: 2.83vw;
  }

  .request .request__inputWrap .request__placeholder {
    font-size: 4.57vw;
    transform: translateX(5.71vw) translateY(-50%);
  }

  .request .request__inputWrap input {
    padding-left: 5.71vw;
    padding-top: 7.71vw;
    padding-bottom: 2.8vw;
    border-radius: 2.8vw;
    border: 0.28vw solid transparent;
    font-size: 4.57vw;
  }

  .request .request__form__bottom {
    margin-top: 2.857vw;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 5.71vw;
  }

  .request .request__form__submit {
    order: 2;
    width: 100%;
    height: 17.14vw;
    border-radius: 28.57vw;
    font-size: 4.57vw;
  }

  .request .request__form__agree {
    order: 1;
    gap: 2.857vw;
  }

  .request .request__form__agree .request__form__agree__fakeCheckbox {
    width: 5.71vw;
    height: 5.71vw;
    border-radius: 1.428vw;
    border: 0.28vw solid transparent;
  }

  .request .request__form__agree .request__form__agree__fakeCheckbox::before {
    content: "";
    width: 2.278vw;
    height: 1.7vw;
  }

  .request .request__form__agree .request__form__agree__text {
    font-size: 2.857vw;
  }
}

.wpcf7-form-control-wrap {
  position: static;
}

.wpcf7-not-valid-tip,
.wpcf7-spinner,
.wpcf7-response-output {
  display: none !important;
}

.page404_main {
  padding: 3.857vw 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page404_main .page404_smallTitle {
  width: 11.57vw;
  height: 3.21vw;
  margin-bottom: 1.14vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.785vw;
  background: rgba(51, 51, 51, 0.05);
  border-radius: 7.14vw;
  font-size: 1vw;
  color: rgb(140, 140, 140);
}

.page404_main .page404_smallTitle .page404_smallTitle__icon {
  flex-shrink: 0;
  width: 1vw;
  height: 1vw;
}

.page404_main .page404__title {
  margin: 0;
  margin-bottom: 1.48vw;
  font-size: 4vw;
  line-height: 100%;
}

.page404_main .page404__title br {
  display: none;
}

.page404_main .page404__subtitle {
  max-width: 20.64vw;
  margin-bottom: 2.14vw;
  font-size: 1.428vw;
  color: rgb(140, 140, 140);
  text-align: center;
}

.page404_main .page404__button {
  position: relative;
  overflow: hidden;
  width: 21.42vw;
  height: 4.28vw;
  background: var(--green-color);
  border-radius: 0.714vw;
  color: white;
  font-size: 1.285vw;
}

@media (max-width: 850px) {
  .page404_main {
    padding-top: 4.687vw;
    padding-bottom: 14.06vw;
  }

  .page404_main .page404_smallTitle {
    width: 25.31vw;
    height: 7.03vw;
    margin-bottom: 2.5vw;
    gap: 1.71vw;
    border-radius: 15.62vw;
    font-size: 2.18vw;
  }

  .page404_main .page404_smallTitle .page404_smallTitle__icon {
    width: 1.875vw;
    height: 1.875vw;
  }

  .page404_main .page404__title {
    margin-bottom: 3.125vw;
    font-size: 7.5vw;
  }

  .page404_main .page404__subtitle {
    max-width: 45.156vw;
    margin-bottom: 4.687vw;
    font-size: 3.125vw;
  }

  .page404_main .page404__button {
    width: 46.875vw;
    height: 9.375vw;
    border-radius: 1.56vw;
    font-size: 2.81vw;
  }

}

@media (max-width: 500px) {
  .page404_main {
    padding-top: 5.625vw;
    padding-bottom: 18.75vw;
  }

  .page404_main .page404_smallTitle {
    width: 50.625vw;
    height: 14.06vw;
    margin-bottom: 4.68vw;
    gap: 3.75vw;
    border-radius: 31.25vw;
    font-size: 4.37vw;
  }

  .page404_main .page404_smallTitle .page404_smallTitle__icon {
    width: 3.75vw;
    height: 3.75vw;
  }

  .page404_main .page404__title {
    text-align: center;
    max-width: 93.75vw;
    margin-bottom: 4.68vw;
    font-size: 10vw;
  }

  .page404_main .page404__title br {
    display: initial;
  }

  .page404_main .page404__subtitle {
    max-width: 62.5vw;
    margin-bottom: 5.714vw;
    font-size: 4.375vw;
  }

  .page404_main .page404__button {
    width: 93.75vw;
    height: 18.75vw;
    border-radius: 3.125vw;
    font-size: 5vw;
  }
}

.doctors_items {
  gap: 40px;
}

.doctor_item {
  width: 100%;
}

.price_item_tab {
  font-size: 1.278vw;
  padding: 1.349vw 1.42vw 1.278vw;
  width: 100%;
  background: #F4F4F4;
  border-radius: 0.71vw;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price_list_title {}

.price_item_tab .arrow-price {
  pointer-events: none;
  fill: #333333;
  transition: 0.2s;
}

.price_list_content * {
  box-sizing: border-box;
}

.price_item_prices {
  border-radius: 0 0 0.71vw 0.71vw;
  background: #F4F4F4;
  padding: 1.428vw;
}

.price_item {
  display: flex;
  flex-direction:column;
  align-items: center;
  padding: 1.428vw 0;
  border-bottom: 1px dashed #B0B3B9;
  align-items: flex-start;
  gap:0.9286vw;
}
.price_item_name{
	font-size:1.2857vw;
	color:#333333;
	line-height:130%;
}
.price_item_desc{
	color:#8C8C8C;
	line-height:130%;
	font-size:1.1429vw;
}
.price_item_top_bage{
	padding:1.0714vw 1.7143vw;
	background:#fff;
	border-radius:7.1429vw;
	display: flex;
    align-items: center;
    justify-content: center;
	font-size:1vw;
    gap: 0.4vw;
	box-sizing: border-box;
}
.price_item_top_bage svg{
	width:1.1429vw;
	height:1.1429vw;
}
ul.price_item_services {
    list-style: none;
	display:flex;
	flex-direction:column;
	gap: 0.5714vw;
}
li.price_item_service{
	font-size: 1vw;
    display: flex;
    align-items: center;
    gap: 0.5714vw;
}
li.price_item_service img{
	width:1vw;
	height:1vw;
}
li.price_item_service span{
	width:calc(100% - 1.5714vw);
}
.price_item_bage_block{
	display:flex;
	flex-wrap:wrap;
	align-items: center;
	gap:0.5714vw;
}
.price_item_bage{
	padding:0.4286vw 1.7143vw;
	background:#8EA64D;
	color:#fff;
	border-radius:0.4286vw;
	font-size:1.1429vw;
	line-height: 130%;
	display: flex;
    gap: 0.8571vw;
    align-items: center;
}
.price_item_bage span:nth-child(1){
	font-weight:500;
}
.price_item_bage span:nth-child(2){
	font-size:0.8571vw;
}
.price_item_time{
	color: #8C8C8C;
	font-size:0.8571vw;
	line-height:130%;
}
.price_item_czena_block {
    display: flex;
    flex-wrap: wrap;
	align-items: center;
    gap: 0.5714vw;
}
.price_item_czena{
	font-size:1.2857vw;
	color:#333333;
	font-weight:400;
}
.price_item_czena.two{
	font-weight:500;
	color:#8EA64D;
}
.price_item_old_czena{
	font-size:0.8571vw;
	color:#8C8C8C;
	text-decoration:line-through;
}
ul.price_item_notices {
    list-style: none;
    display: flex;
    flex-direction: column;
	gap:0.5714vw;
}
li.price_item_notice{
	display:flex;
	align-items: center;
	gap:0.4286vw;
	font-size:0.7143vw;
	color:#8C8C8C;
}
li.price_item_notice svg{
	width:0.8571vw;
	height:0.8571vw;
}
li.price_item_notice span{
	width:calc(100% - 1.2857vw);
}
.price_item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.price_item_light {
  display: flex;
  width: 20%;
}

.price_item_code {
  width: 100%;
  color: #8C8C8C;
  font-size: 1vw;
}

.price_item_of_code {
  width: 50%;
  color: #8C8C8C;
  font-size: 1vw;
}

.price_item_dark {
  display: flex;
  width: 80%;
}
.price_item_prices {
  display: none;
  opacity: 0;
  visibility: hidden;
}
#stoimost .price_item_prices{
	display:block;
	opacity:1;
	visibility: visible;
	padding: 0 1.428vw 1.428vw;
}
#stoimost .price_item_prices{
	border-radius:0.71vw;
}
.serviceBlock .serviceBlock__content ul li.price_item_service,.serviceBlock .serviceBlock__content ul li.price_item_notice{
	padding-left: 0;
}
.serviceBlock .serviceBlock__content ul li.price_item_service::before, .serviceBlock .serviceBlock__content ul li.price_item_notice::before{
	display:none;
}
.price_item_prices.active {
  display: flex;
  flex-direction: column;
  opacity: 1;
  visibility: visible;
}

.price_list_content {
  display: flex;
  flex-direction: column;
  gap: 1.42vw;
}

.price_item_tab:hover {
  background: #F4F6ED;
  color: #8EA64D;
}

.price_item_tab:hover .arrow-price {
  fill: #8EA64D;
}

.price_item_tab.active {
  background: #8EA64D;
  color: #fff;
  border-radius: 0.71vw 0.71vw 0 0;
}

.price_item_tab.active .arrow-price {
  fill: #fff;
  transition: 0.2s;
  rotate: 180deg;
}

section#price-list {
  margin-top: 3.35vw;
}

@media screen and (min-width: 501px) and (max-width: 900px) {
  .price_list_title {
    font-size: 48px;
    max-width: 589px;
  }

  .price_item_tab {
    font-size: 19px;
    padding: 18px 20px 19px;
    border-radius: 10px;
  }

  .price_item_tab.active {
    border-radius: 10px 10px 0 0;
  }

  .price_item_code,
  .price_item_of_code {
    font-size: 13px;
  }

  .price_item_name {
    font-size: 17px;
    padding-left: 0;
    width: 80%;
  }

  .price_item_code {
    width: 20%;
  }
  .price_item_dark {
    justify-content: space-between;
  }
.price_item {
    gap: 13px;
    padding: 30px 0;
    flex-direction: column;
  }
  .price_item_top_bage{
  	width: 100%;
    padding: 12px;
    font-size: 14px;
    gap: 8px;
  }
  .price_item_top_bage svg{
    width:16px;
	height:16px;
  }
  ul.price_item_services{
    gap:8px;
  }
  li.price_item_service{
	font-size:12px;
	gap:8px;
  }
  li.price_item_service img{
	width:16px;
	height:16px;
  }
  .price_item_bage_block{
    gap:8px;
  }
  .price_item_bage{
	padding: 6px 24px;	
	font-size: 16px;
	border-radius:8px;
	gap:8px;
  }
  .price_item_time{
    font-size:10px;		
  }
  .price_item_bage span:nth-child(2) {
    font-size:10px;
  }
  .price_item_czena{
    font-size:16px;		
  }
  .price_item_prices {
    padding: 0 20px 20px;
  }
  .price_item_czena_block{
    gap:8px;
  }
  .price_item_old_czena{
    font-size:10px;		
  }
  ul.price_item_notices{
    gap:8px;	
  }
  li.price_item_notice{
    font-size:10px;	
  }
  li.price_item_notice svg{
    width:12px;
	height:12px;
  }
  .price_item_desc{
    font-size:14px;
  }
  section#price-list {
    margin-top: 34px;
    margin-bottom: 40px;
  }

  .price_item {
    gap: 20px;
    padding: 20px 0;
    flex-direction: column;
  }

  .price_item_prices {
    padding: 20px;
  }

  .price_item_light,
  .price_item_dark {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .price_list_title {
    font-size: 32px;
  }

  .price_item_tab {
    font-size: 18px;
    padding: 18px 20px 19px;
    border-radius: 10px;
  }

  .price_item_tab.active {
    border-radius: 10px 10px 0 0;
  }

  .price_item_code,
  .price_item_of_code {
    font-size: 14px;
  }

  .price_item_name {
    font-size: 20px;
    padding-left: 0;
    width: 100%;
  }
  .price_item_desc{
    font-size:16px;
  }
  .price_item_code {
    width: 100%;
  }
  section#price-list {
    margin-top: 34px;
    margin-bottom: 40px;
  }

  .price_item {
    gap: 16px;
    padding: 30px 0;
    flex-direction: column;
  }
  .price_item_top_bage{
  	width: 100%;
    padding: 12px;
    font-size: 18px;
    gap: 8px;
	border-radius:100px;
  }
  .price_item_top_bage svg{
    width:18px;
	height:18px;
  }
  ul.price_item_services{
    gap:11px;
  }
  li.price_item_service{
	font-size:18px;
	gap:8px;
  }
  li.price_item_service span{
    width:calc(100% - 24px);		
  }
  li.price_item_service img{
	width:16px;
	height:16px;
  }
  .price_item_bage_block{
    gap:8px;
  }
  .price_item_bage{
	padding: 6px 24px;	
	font-size: 20px;
	border-radius:8px;
	gap:8px;
  }
  .price_item_time{
    font-size:14px;		
  }
  .price_item_bage span:nth-child(2) {
    font-size:14px;
  }
  .price_item_czena{
    font-size:20px;		
  }
  .price_item_prices {
    padding: 0 20px 20px;
  }
  #stoimost .price_item_prices{
    padding: 0 20px 20px;
	  border-radius:10px;
  }
  .serviceBlock .serviceBlock__content ul.price_item_services{
	gap: 8px;	
  }
  .price_item_czena_block{
    gap:8px;
  }
  .price_item_old_czena{
    font-size:14px;		
  }
  ul.price_item_notices{
    gap:8px;	
  }
  li.price_item_notice{
    font-size:12px;
	gap: 8px;
  }
  li.price_item_notice svg{
    width:14px;
	height:14px;
  }
  li.price_item_notice span {
    width: calc(100% - 22px);
  }
  .price_item_light,
  .price_item_dark {
    width: 100%;
	flex-wrap: wrap;
	gap:10px;
  }
}

nav.doctors__breads {
  margin-top: 4.285vw;
}

h1.doctors_title {
  margin-top: 2.357vw;
  font-size: 4vw;
  line-height: 100%;
  margin-bottom: 1.92vw;
}

.doctors__breads li {
  color: #b0b3b9;
  display: flex;
}

.doctors__breads li:not(:first-of-type)::before {
  content: "";
  margin-right: .714vw;
  flex-shrink: 0;
  align-self: center;
  display: inline-block;
  width: .142vw;
  height: .142vw;
  border-radius: 50%;
  background: #b0b3b9;
}

.doctors__breads ul {
  display: inline-flex;
  gap: .714vw;
  list-style: none;
}

.doctors__breads li span,
.doctors__breads li a {
  font-size: 1vw;
}

form#filter {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.search_doctors_block {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

input#search-fio {
  width: 100%;
  border: none;
  background: #F4F4F4;
  border-radius: 0.71vw;
  font-size: 1.142vw;
  color: #333333;
  padding: 1.278vw 1.42vw 1.349vw;
  box-sizing: border-box;
}

.search_reset_icon svg,
.search_normal_icon svg,
#all_doctor_filter_reset {
  width: 1.065vw;
  height: 1.065vw;
}

.filter_radio {
  border-radius: 10px;
  background: #F4F4F4;
  padding: 10px;
  display: flex;
  gap: 5px;
}

.filter_radio input {
  display: none;
  opacity: 0;
}

.filter_radio div {
  display: flex;
}

.filter_qualification_item select {
  height: 100%;
}

.filter_radio label {
  font-size: 1.142vw;
  line-height: normal;
  background: transparent;
  cursor: pointer;
  color: #333333;
  padding: 0.56vw 0.71vw 0.639vw;
  border-radius: 0.71vw;
}

.filter_radio label:hover {
  color: var(--green-color);
}

.filter_radio input:checked+label {
  background: var(--green-color);
  color: #fff;
}

.filter_radio input:checked+label:hover {
  color: #fff;
}

.doctors_items {
  gap: 2.857vw;
  width: 100%;
  display: grid;
}

.doctor_item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  align-items: flex-start;
}

.doctor_item_title {
  margin-top: 1.07vw;
  margin-bottom: .714vw;
  font-size: 1.1vw;
  line-height: 130%;
  transition: .4s;
}

.doctor_item_image {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 1.428vw;
  overflow: hidden;
}

.doctor_item_image img {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: .8s;
  -o-object-fit: cover;
  object-fit: cover;
  will-change: transform;
  max-width: 100%;
  max-height: 100%;
}

.doctor_item_descr {
  font-size: .825vw;
  color: #8c8c8c;
  line-height: 130%;
}

.doctor_item:hover .doctor_item_title {
  color: var(--green-color);
}

.doctor_item_button {
  background: #F4F6ED;
  border-radius: .5em;
  font-size: 1.1vw;
  color: #8EA64D;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .625em;
  padding: .5em 1.5em .5em;
  margin-top: .714vw;
  border: 1px solid #F4F6ED;
  box-sizing: border-box;
}

.doctor_item_button:hover {
  border-color: #8ea64d;
  background: #8ea64d;
  color: #fff
}

.doctor_item_button:hover svg path {
  fill: #fff;
}

.filter_specialization_item,
.filter_qualification_item {
  position: relative;
  background: #F4F4F4;
  border-radius: 10px;
  width: 26.8%;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.filter_specialization_item svg.arrow,
.filter_qualification_item svg.arrow {
  position: absolute;
  right: 20px;
  transition: 0.2s;
  pointer-events: none;
}

.filter_specialization_item:hover,
.filter_qualification_item:hover {
  background: #F4F6ED;
}

.filter_specialization_item.open,
.filter_qualification_item.open {
  background: var(--green-color);
  color: #fff;
}

.filter_specialization_item svg.arrow path,
.filter_qualification_item svg.arrow path {
  fill: #333333;
}

.filter_specialization_item.open svg.arrow path,
.filter_qualification_item.open svg.arrow path {
  fill: #fff;
}

.filter_specialization_item.open svg.arrow,
.filter_qualification_item.open svg.arrow {
  rotate: 180deg;
}

.filter_specialization_item .dropdown_popup,
.filter_qualification_item .dropdown_popup {
  position: absolute;
  top: calc(100% + 20px);
  opacity: 0;
  visibility: hidden;
}

.filter_specialization_item.open .dropdown_popup,
.filter_qualification_item.open .dropdown_popup {
  transition: .2s visibility linear, .2s opacity linear;
  visibility: visible;
  opacity: 1;
  z-index: 10;
}

.dropdown {
  font-size: 1.142vw;
  padding: 1.278vw 1.42vw;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.filter_specialization_item .dropdown_popup,
.filter_qualification_item .dropdown_popup {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  z-index: 2;
  width: 460px;
  background: #F4F4F4;
  box-shadow: 0px 30px 50px 0px #0000001A;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
}

.control {
  padding-bottom: 20px;
  border-bottom: 1px dashed #B0B3B9;
  box-sizing: border-box;
  position: relative;
}

.docrors_search_icon {
  position: absolute;
  right: 15px;
  top: 18px;
}

input#search-specialization {
  width: 100%;
  border: none;
  font-size: 16px;
  padding: 18px 20px;
  box-sizing: border-box;
  border-radius: 10px;
}

input#search-specialization::-webkit-input-placeholder {
  font-size: 16px;
}

input#search-specialization::-moz-placeholder {
  font-size: 16px;
}

input#search-specialization:-ms-input-placeholder {
  font-size: 16px;
}

input#search-specialization::-ms-input-placeholder {
  font-size: 16px;
}

input#search-specialization::placeholder {
  font-size: 16px;
}

input#search-specialization:focus-visible {
  border: none;
  outline: none;
}

.checkbox_items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 310px;
  overflow: auto;
  max-width: 100%;
  box-sizing: border-box;
}

#special-select .checkbox_items {
  padding-top: 20px;
}

.checkbox_item input {
  display: none;
}

.checkbox_item label {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333333;
  cursor: pointer;
}

.checkbox_item label span {
  color: #8EA64D;
}

.checkbox_item label:before {
  content: '';
  width: 30px;
  height: 30px;
  margin-right: 15px;
  background-image: url('../imgs/checkbox.svg');
}

.checkbox_item:hover label:before {
  background-image: url('../imgs/hover-checkbox.svg');
}

.checkbox_item input:checked+label:before {
  background-image: url('../imgs/checked-checkbox.svg');
}

.custom_doctor_filter {
  margin-bottom: 40px;
}

.filters_block {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.filter_button {
  display: none;
  opacity: 0;
}

#filter_submit {
  display: none;
}

.filter_tabs {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  overflow: hidden;
  align-items: center;
}

.tab_doctor_filter {
  font-size: 0.852vw;
  background: #F4F6ED;
  padding: 0.639vw 1.42vw 0.568vw;
  border-radius: 8px;
  position: relative;
  color: #8EA64D;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}

#all_doctor_filter_reset {
  cursor: pointer;
}

.tab_doctor_filter:after {
  content: '';
  background: url('/wp-content/themes/drshipkov/assets/imgs/reset-filter.svg');
  width: 1.265vw;
  height: 1.265vw;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 0.1vw;
  background-repeat: no-repeat;
  background-position: center;
}

#search-fio:focus-visible {
  border: none;
  outline: none;
}

.no_found {
  color: #333333;
}

.search_doctor_icon {
  position: absolute;
  right: 20px;
}

.mobile_filter_header {
  display: none;
}

.filters_block_filter_part {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.mobile.dropdown_popup_footer {
  display: none;
}

div#mobile_tags {
  display: none;
}

.filter_radio .mobile.filter_radio_title {
  display: none;
}

.doctors_not_found_title {
  font-size: 1.142vw;
  margin-bottom: 0.714vw;
}

.doctors_not_found_sub_title {
  font-size: .857vw;
  color: #8C8C8C;
}

.price_list_title {
  margin-top: 2vw;
}

@media (min-width: 850px) {
  .doctor_item:hover .doctor_item_image img {
    transform: scale(1.15);
  }
}

@media (max-width: 850px) and (min-width:500px) {
  h1.doctors_title {
    font-size: 7vw;
  }

  .price_list_title {
    font-size: 42px;
    max-width: 510px;
  }

  .doctors__breads li span,
  .doctors__breads li a {
    font-size: 2.187vw;
  }

  nav.doctors__breads {
    margin-top: 8.375vw;
  }

  .doctors_items {
    gap: 2.856vw;
  }

  .doctor_item {
    width: 100%;
  }

  .doctor_item_image {
    width: 100%;
    aspect-ratio: 1/1;
  }

  .doctor_item_title {
    margin-top: 2.687vw;
    margin-bottom: 2.125vw;
    font-size: 3.25vw;
  }

  .doctor_item_descr {
    font-size: 2.75vw;
  }

  .doctor_item_button {
    font-size: 2.75vw;
    width: 50%;
    margin-top: 2.125vw;
    padding: 2vw 2.28vw;
  }

  #doctors {
    margin-bottom: 8.375vw;
  }

  .filters_block {
    display: none;
  }

  input#search-fio {
    width: calc(100% - 75px);
    border-radius: 10px;
    font-size: 16px;
    padding: 18px 20px 19px;
  }

  .search_doctors_block {
    display: flex;
    gap: 15px;
  }

  .filter_button {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: #8ea64d;
  }

  .search_doctor_icon {
    right: 95px;
  }

  .filters_block.mobile-open {
    display: flex;
    position: fixed;
    z-index: 10;
    background: #fff;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    max-width: 100vw;
    top: 0;
    left: 0;
    flex-direction: column;
    padding: 2.857vw;
    box-sizing: border-box;
  }

  .filter_specialization_item,
  .filter_qualification_item {
    width: 100%;
  }

  .mobile_filter_header {
    display: flex;
    position: relative;
    justify-content: space-between;
  }

  .filters_block_filter_part {
    flex-direction: column;
    max-width: 100vw;
    max-height: 90vh;
  }

  .mobile_filter_header_title {
    font-size: 32px;
    color: #333333;
  }

  .close_mobile_filter {
    cursor: pointer;
  }

  .mobile {
    display: inline-block;
  }

  .filter_radio {
    border-radius: 0;
    background: transparent;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .mobile.filter_radio_title {
    width: 100%;
    font-size: 16px;
  }

  .filter_radio label {
    font-size: 12px;
    color: #8EA64D;
    background: #F4F6ED;
    padding: 8px 10px 9px;
    border-radius: 10px;
  }

  .filter_pol_item.filter_radio.filter_item,
  .filter_vozrast_item.filter_radio.filter_item {
    border-top: 1px dashed #B0B3B9;
    padding: 25px 0;
    width: 100%;
    max-width: 100vw;
  }

  .filter_qualification_item {
    border-radius: 0;
    background: transparent;
    border-top: 1px dashed #B0B3B9;
  }

  .filter_qualification_item .dropdown {
    padding: 25px 0;
  }

  .filter_tabs {
    display: none;
  }

  .filter_specialization_item {
    border-radius: 0;
    background: transparent;
    margin-top: 22px;
  }

  .filter_specialization_item .dropdown {
    padding: 25px 0;
  }

  .filter_qualification_item .dropdown_popup,
  .filter_specialization_item .dropdown_popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 2.857vw;
  }

  .mobile.dropdown_popup_header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px dashed #B0B3B9;
    padding-bottom: 20px;
    margin-bottom: 10px;
  }

  .dropdown_popup_prev {
    font-size: 18px;
    color: #8C8C8C;
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .dropdown_popup_prev span {
    font-size: 11px;
    padding-top: 1px;
  }

  .checkbox_items {
    max-height: 90%;
    padding: 0;
  }

  .filter_specialization_item:hover,
  .filter_qualification_item:hover {
    background: transparent;
  }

  .filter_specialization_item.open,
  .filter_qualification_item.open {
    background: transparent;
    color: #333333;
  }

  #qualif-select {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .mobile.dropdown_popup_footer {
    display: flex;
    gap: 20px;
    border-top: 1px dashed #B0B3B9;
    padding-top: 20px;
  }

  .dropdown_reset {
    width: calc(50% - 10px);
    border-radius: 10px;
    border: 1px solid #8EA64D;
    font-size: 16px;
    text-align: center;
    padding: 18px;
    box-sizing: border-box;
    color: #8EA64D;
    cursor: pointer;
  }

  .dropdown_draw {
    width: calc(50% - 10px);
    border-radius: 10px;
    font-size: 16px;
    background: #8EA64D;
    text-align: center;
    padding: 18px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
  }

  .dropdown_draw span {
    display: none;
  }

  .filter_specialization_item .mobile.dropdown_popup_header {
    border-bottom: none;
  }

  .filter_specialization_item .checkbox_items {
    height: calc(100% - 223px);
    padding-top: 20px;
    overflow: auto;
  }

  .custom_doctor_filter {
    margin-top: 20px;
  }

  .filter_specialization_item svg.arrow {
    top: 31px;
  }

  div#mobile_tags,
  div#mobile_tags_q {
    display: flex;
    gap: 10px;
    max-width: 100%;
    overflow: auto;
    width: 100%;
    height: -webkit-fill-available;
  }

  div#mobile_tags .tab_doctor_filter,
  div#mobile_tags_q .tab_doctor_filter {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }

  .filter_radio div {
    display: flex;
  }

  .filter_specialization_item {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
  }

  .tab_doctor_filter {
    background: #8EA64D;
    color: #fff;
  }

  .dropdown {
    font-size: 16px;
  }

  .tab_doctor_filter {
    font-size: 16px;
    padding: 9px 20px 8px;
    height: 35px;
    box-sizing: border-box;
  }

  .tab_doctor_filter:after {
    background: url('/wp-content/themes/drshipkov/assets/imgs/reset-filter-mob.svg');
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 2px;
    background-repeat: no-repeat;
    background-position: center;
    width: 17px;
    height: 17px;
  }

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

  .filter_qualification_item svg.arrow {
    top: 31px;
  }

  .search_reset_icon svg,
  .search_normal_icon svg,
  #all_doctor_filter_reset {
    width: 15px;
    height: 15px;
  }

  .doctors_not_found_title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .doctors_not_found_sub_title {
    font-size: 16px;
  }

  .doctors__breads li:not(:first-of-type)::before {
    content: "";
    margin-right: 1.56vw;
    width: .31vw;
    height: .31vw;
  }

  .doctors__breads ul {
    gap: 1.56vw;
  }

  .filter_specialization_item,
  .filter_qualification_item {
    display: block;
    height: auto;
    padding-bottom: 0;
  }

  .filter_specialization_item .dropdown,
  .filter_qualification_item .dropdown {
    padding: 0;
    height: 60px;
  }

  div#mobile_tags,
  div#mobile_tags_q {
    height: 0px;
  }

  div#mobile_tags.have-lements,
  div#mobile_tags_q.have-lements {
    height: 35px;
    padding-bottom: 20px;
  }

  #mobile_submit {
    display: block;
    background: #8EA64D;
    border: none;
    color: #fff;
    border-radius: 8px;
    padding: 19px;
  }
	.price_item {
    gap: 13px;
    padding: 30px 0;
    flex-direction: column;
  }
  .price_item_top_bage{
  	width: 100%;
    padding: 12px;
    font-size: 14px;
    gap: 8px;
  }
  .price_item_top_bage svg{
    width:16px;
	height:16px;
  }
  ul.price_item_services{
    gap:8px;
  }
  li.price_item_service{
	font-size:12px;
	gap:8px;
  }
  li.price_item_service img{
	width:16px;
	height:16px;
  }
  li.price_item_service span{
    width:calc(100% - 24px);
  }
  .price_item_bage_block{
    gap:8px;
  }
  .price_item_bage{
	padding: 6px 24px;	
	font-size: 16px;
	border-radius:8px;
	gap:8px;
  }
  .price_item_time{
    font-size:10px;		
  }
  .price_item_bage span:nth-child(2) {
    font-size:10px;
  }
  .price_item_czena{
    font-size:16px;		
  }
  .price_item_prices {
    padding: 0 20px 20px;
  }
  .price_item_czena_block{
    gap:8px;
  }
  .price_item_old_czena{
    font-size:10px;		
  }
  ul.price_item_notices{
    gap:8px;	
  }
  li.price_item_notice{
    font-size:10px;	
  }
  li.price_item_notice svg{
    width:12px;
	height:12px;
  }
}

.mobile {
  display: none;
}

@media (max-width: 500px) {
  .doctor_item_button.desktop {
    display: none;
  }

  h1.doctors_title {
    font-size: 10vw;
  }

  .doctors__breads li span,
  .doctors__breads li a {
    font-size: 3.75vw;
  }

  nav.doctors__breads {
    margin-top: 8.375vw;
  }

  .doctors_items {
    gap: 2.856vw;
  }

  .doctor_item {
    width: 100%;
  }

  .doctor_item_image {
    width: 100%;
    aspect-ratio: 1/1;
  }

  .doctor_item_title {
    margin-top: 2.687vw;
    margin-bottom: 2.125vw;
    font-size: 4.5vw;
  }

  .doctor_item_descr {
    font-size: 3.25vw;
  }

  .doctor_item_button {
    font-size: 4.25vw;
    width: 100%;
    margin-top: 2.125vw;
    padding: 2vw 2.28vw;
  }

  #doctors {
    margin-bottom: 8.375vw;
  }

  .filters_block {
    display: none;
  }

  input#search-fio {
    width: calc(100% - 75px);
    border-radius: 10px;
    font-size: 16px;
    padding: 18px 20px 19px;
  }

  .search_doctors_block {
    display: flex;
    gap: 15px;
  }

  .filter_button {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: #8ea64d;
  }

  .search_doctor_icon {
    right: 95px;
  }

  .filters_block.mobile-open {
    display: flex;
    position: fixed;
    z-index: 10;
    background: #fff;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    max-width: 100vw;
    top: 0;
    left: 0;
    flex-direction: column;
    padding: 2.857vw;
    box-sizing: border-box;
  }

  .filter_specialization_item,
  .filter_qualification_item {
    width: 100%;
  }

  .mobile_filter_header {
    display: flex;
    position: relative;
    justify-content: space-between;
  }

  .filters_block_filter_part {
    flex-direction: column;
    max-width: 100vw;
    max-height: 90vh;
  }

  .mobile_filter_header_title {
    font-size: 32px;
    color: #333333;
  }

  .close_mobile_filter {
    cursor: pointer;
  }

  .mobile {
    display: inline-block;
  }

  .filter_radio {
    border-radius: 0;
    background: transparent;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .mobile.filter_radio_title {
    width: 100%;
    font-size: 16px;
  }

  .filter_radio label {
    font-size: 12px;
    color: #8EA64D;
    background: #F4F6ED;
    padding: 8px 10px 9px;
    border-radius: 10px;
  }

  .filter_pol_item.filter_radio.filter_item,
  .filter_vozrast_item.filter_radio.filter_item {
    border-top: 1px dashed #B0B3B9;
    padding: 25px 0;
    width: 100%;
    max-width: 100vw;
  }

  .filter_qualification_item {
    border-radius: 0;
    background: transparent;
    border-top: 1px dashed #B0B3B9;
  }

  .filter_qualification_item .dropdown {
    padding: 25px 0;
  }

  .filter_tabs {
    display: none;
  }

  .filter_specialization_item {
    border-radius: 0;
    background: transparent;
    margin-top: 22px;
  }

  .filter_specialization_item .dropdown {
    padding: 25px 0;
  }

  .filter_qualification_item .dropdown_popup,
  .filter_specialization_item .dropdown_popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 2.857vw;
  }

  .mobile.dropdown_popup_header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px dashed #B0B3B9;
    padding-bottom: 20px;
    margin-bottom: 10px;
  }

  .dropdown_popup_prev {
    font-size: 18px;
    color: #8C8C8C;
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .dropdown_popup_prev span {
    font-size: 11px;
    padding-top: 1px;
  }

  .checkbox_items {
    max-height: 90%;
    padding: 0;
  }

  .filter_specialization_item:hover,
  .filter_qualification_item:hover {
    background: transparent;
  }

  .filter_specialization_item.open,
  .filter_qualification_item.open {
    background: transparent;
    color: #333333;
  }

  #qualif-select {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .mobile.dropdown_popup_footer {
    display: flex;
    gap: 20px;
    border-top: 1px dashed #B0B3B9;
    padding-top: 20px;
  }

  .dropdown_reset {
    width: calc(50% - 10px);
    border-radius: 10px;
    border: 1px solid #8EA64D;
    font-size: 16px;
    text-align: center;
    padding: 18px;
    box-sizing: border-box;
    color: #8EA64D;
    cursor: pointer;
  }

  .dropdown_draw {
    width: calc(50% - 10px);
    border-radius: 10px;
    font-size: 16px;
    background: #8EA64D;
    text-align: center;
    padding: 18px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
  }

  .dropdown_draw span {
    display: none;
  }

  .filter_specialization_item .mobile.dropdown_popup_header {
    border-bottom: none;
  }

  .filter_specialization_item .checkbox_items {
    height: calc(100% - 223px);
    padding-top: 20px;
    overflow: auto;
  }

  .custom_doctor_filter {
    margin-top: 20px;
  }

  .filter_specialization_item svg.arrow {
    top: 31px;
  }

  div#mobile_tags,
  div#mobile_tags_q {
    display: flex;
    gap: 10px;
    max-width: 100%;
    overflow: auto;
    width: 100%;
    height: -webkit-fill-available;
  }

  div#mobile_tags .tab_doctor_filter,
  div#mobile_tags_q .tab_doctor_filter {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }

  .filter_radio div {
    display: flex;
  }

  .filter_specialization_item {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
  }

  .tab_doctor_filter {
    background: #8EA64D;
    color: #fff;
  }

  .dropdown {
    font-size: 16px;
  }

  .tab_doctor_filter {
    font-size: 16px;
    padding: 9px 20px 8px;
    height: 35px;
    box-sizing: border-box;
  }

  .tab_doctor_filter:after {
    background: url('/wp-content/themes/drshipkov/assets/imgs/reset-filter-mob.svg');
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 2px;
    background-repeat: no-repeat;
    background-position: center;
    width: 17px;
    height: 17px;
  }

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

  .filter_qualification_item svg.arrow {
    top: 31px;
  }

  .search_reset_icon svg,
  .search_normal_icon svg,
  #all_doctor_filter_reset {
    width: 15px;
    height: 15px;
  }

  .doctors_not_found_title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .doctors_not_found_sub_title {
    font-size: 16px;
  }

  .doctors__breads li:not(:first-of-type)::before {
    content: "";
    margin-right: 3.125vw;
    width: .625vw;
    height: .625vw;
  }

  .doctors__breads ul {
    gap: 3.125vw;
  }

  .filter_specialization_item,
  .filter_qualification_item {
    display: block;
    height: auto;
    padding-bottom: 0;
  }

  .filter_specialization_item .dropdown,
  .filter_qualification_item .dropdown {
    padding: 0;
    height: 60px;
  }

  div#mobile_tags,
  div#mobile_tags_q {
    height: 0px;
  }

  div#mobile_tags.have-lements,
  div#mobile_tags_q.have-lements {
    height: 35px;
    padding-bottom: 20px;
  }

  #mobile_submit {
    display: block;
    background: #8EA64D;
    border: none;
    color: #fff;
    border-radius: 8px;
    padding: 19px;
  }

  .doctor_item_button.mobile {
    display: flex;
  }
}

.desktopSearch .desktopSearch__button {
  border: none;
}

ul.ajax-search {
  width: 62.858vw;
  padding: 16px;
  list-style: none;
  font-size: 1.58vw;
  margin: 0 18.571vw;
  position: absolute;
  background: #fff;
  box-sizing: border-box;
  outline: 1px solid #ece7e2 !important;
}

.dpth_items {
  gap: 10px;
  padding-top: 20px;
  padding-left: 20px;
  display: none;
}

.dpth_items.active {
  display: flex;
  flex-direction: column;
}

.dpth_item {
  font-size: 1vw;
  cursor: pointer;
}

.dpth_item:hover {
  color: var(--green-color);
  text-decoration: underline;
}

@media (max-width:500px) {
  .services_sub_menu {
    margin-bottom: 2.857vw;
    position: relative;
    background: rgba(140, 140, 140, .1);
    padding: 3.2vw 5.428vw 3.2vw 5.142vw;
    border-radius: 2.857vw;
  }

  .dpth_item {
    font-size: 4.571vw;
  }

  .dpth_items {
    padding-left: 3.428vw;
    padding-top: 4.428vw;
  }

  .services .services__pages .services__elementPages .services__pages__item.hasSubMenu::after {
    content: "";
    width: 1vw;
    height: 1.9vw;
  }

  .services .services__pages .services__elementPages .services__pages__item.active.hasSubMenu::after {
    rotate: 90deg;
    transition: 0.2s;
  }

  .services .services__pages .services__elementPages .services__pages__item.hasSubMenu {
    background: none;
    padding: 0;
  }
}

.ajax-search__item a {
  font-size: 1.3vw;
  cursor: pointer;
}

.ajax-search__item p {
  font-size: 1vw;
  color: #8c8c8c;
}

.ajax-search__item {
  margin-bottom: 1vw;
}

.fast_search_result {
  text-align: center;
  display: block;
  width: 100%;
  font-size: 1vw;
  color: #8ea64d;
  cursor: pointer;
}

@media (max-width:500px) {
  .services .services__pages.services__pages_mobileShown {
    z-index: 15;
  }

  .header__search__mobile .desktopSearch .desktopSearch__wrap {
    margin: 0;
    border-bottom: none;
  }

  .header__search__mobile .desktopSearch__input {
    height: 11.42vw;
    padding-left: 6.57vw;
    background: rgba(140, 140, 140, .1);
    margin: 0 0 1.5625vw;
    border-radius: 1.5625vw;
    font-size: 4vw;
    pointer-events: all;
  }

  ul.ajax-search {
    width: 100%;
    margin: 0;
    pointer-events: all;
    font-size: 3vw;
  }

  .ajax-search__item a {
    font-size: 4vw;
  }

  .ajax-search__item p {
    font-size: 3.4vw;
  }

  .fast_search_result {
    font-size: 3vw;
  }
}

.description-post {
  margin-top: 30px;
}

.box-post:last-child {
  margin-bottom: 30px;
}

.description-post h2 {
  margin-bottom: 15px;
}

a.readmore {
  color: #8ea64d;
}

@media (min-width:500px) and (max-width:850px) {
  .desktopSearch {
    opacity: 1;
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    transform: none;
    top: auto;
    z-index: 0;
    pointer-events: all;
  }

  .desktopSearch__wrap:before {
    width: 1.8vw;
    height: 1.8vw;
    top: 2.2vw;
    left: 2.15vw;
  }

  .desktopSearch .desktopSearch__wrap {
    margin: 0;
    border-bottom: none;
  }

  .desktopSearch .desktopSearch__button {
    display: none;
  }

  .desktopSearch .desktopSearch__input {
    height: 6.25vw;
    padding: 0 0 0 5.5vw;
    background: rgba(140, 140, 140, .1);
    margin: 0 0 1.5625vw;
    border-radius: 1.5625vw;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-size: 2vw;
  }

  .header .header__menu .header__search {
    display: none;
  }

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

  ul.ajax-search {
    width: 100%;
    margin: 0;
    pointer-events: all;
    font-size: 3vw;
  }

  .ajax-search__item a {
    font-size: 2vw;
  }

  .ajax-search__item p {
    font-size: 1.6vw;
  }

  .fast_search_result {
    font-size: 2vw;
  }

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

  .desktopSearch .desktopSearch__close {
    width: 3vw;
    height: 3vw;
    left: calc(50% - 4vw);
    background: transparent;

  }

  .desktopSearch .desktopSearch__close::before {
    font-size: 3vw;
  }

  .desktopSearch .desktopSearch__close {
    display: none;
  }

  .desktopSearch.open .desktopSearch__close {
    display: flex;
  }
}

@media (max-width:500px) {
  .desktopSearch {
    opacity: 1;
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    transform: none;
    top: auto;
    z-index: 0;
    pointer-events: all;
  }

  .desktopSearch .desktopSearch__wrap {
    margin: 0;
    border-bottom: none;
  }

  .desktopSearch .desktopSearch__button {
    display: none;
  }

  .desktopSearch .desktopSearch__input {
    height: 11.42vw;
    padding: 0 0 0 12vw;
    margin-bottom: 2.85vw;
    background: rgba(140, 140, 140, .1);
    margin: 0 0 1.5625vw;
    border-radius: 1.5625vw;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-size: 4vw;
  }

  .header .header__menu .header__search {
    display: none;
  }

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

  .desktopSearch .desktopSearch__close {
    width: 8vw;
    height: 8vw;
    left: calc(50% - 4vw);
    background: transparent;
  }

  .desktopSearch .desktopSearch__close {
    display: none;
  }

  .desktopSearch.open .desktopSearch__close {
    display: flex;
  }

  .desktopSearch .desktopSearch__close::before {
    font-size: 4vw;
  }
}

#contact-map-block {
  height: 30vw;
}

.contact_info_items {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2vw;
}

.contact_info_item_title {
  font-size: 1vw;
  color: var(--green-color);
  margin-bottom: 1.228vw;
}

.contact_info_item_text {
  font-size: 1.57vw;
  color: var(--black-color);
}

.contact_info_item_metro,
.contact_info_item_clock,
.contact_info_item_park {
  font-size: 1.2vw;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 0.727vw;
}

.contact_info_item_metro:before {
  content: "";
  flex-shrink: 0;
  width: 1.5vw;
  height: 1.5vw;
  background: url(../imgs/metroIcon.svg) no-repeat center / contain;
}

.contact_info_item_clock:before {
  content: "";
  flex-shrink: 0;
  width: 1.5vw;
  height: 1.5vw;
  background: url(../imgs/icon_clock.svg) no-repeat center / contain;
}

.contact_info_item_park:before {
  content: "";
  flex-shrink: 0;
  width: 1.5vw;
  height: 1.5vw;
  background: url(../imgs/park_icon.svg) no-repeat center / contain;
}

#contact-map [class*=ymaps][class*=-ground-pane] {
  filter: grayscale(1);
  -ms-filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
}

.service .service__description .service__description__request.mobile {
  display: none;
}

#contact-map {
  position: relative;
}

.contact_map {
  height: 35.5vw;
  display: none;
}

.contact_map.active {
  display: block;
}

.contact_map_desc p {
  display: none;
}

.contact_map_desc p.active {
  display: block;
}

.contact_info_item_link:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
  border-radius: 50%;
  background: var(--green-color);
  opacity: 0;
  will-change: transform opacity;
  transition: 0.4s;
}

.contact_info_item_link:hover:before {
  transform: translateY(0);
  opacity: 1;
}

.contact_info_item_link:hover path {
  fill: #fff;
}

.contact_info_item_metro,
.contact_info_item_clock,
.contact_info_item_park {
  margin-bottom: 1vw;
}

.contact_map_tabs {
  position: absolute;
  z-index: 1;
  left: 8.57vw;
  display: flex;
  top: 1.4vw;
  gap: 0.7vw;
}

.contact_map_tab {
  font-size: 1vw;
}

.contact_map_tab {
  font-size: 1vw;
  box-shadow: 0px 10px 30px 0px #0000004D;
  border-radius: 0.5vw;
  padding: 0.5vw 0.9vw 0.5vw 0.7vw;
  display: flex;
  gap: 0.5vw;
  align-items: center;
  background: #fff;
  color: #333333;
  cursor: pointer;
}

.contact_map_tab.active {
  color: #fff;
  background: #8EA64D;
}

.contact_map_tab.active path {
  fill: #fff;
}

.contact_map_desc {
  position: absolute;
  z-index: 1;
  top: 4.3vw;
  left: 8.57vw;
  background: #fff;
  width: 25vw;
  padding: 1vw;
  border-radius: 0.5vw;
  box-shadow: 0px 10px 30px 0px #00000026;
  font-size: 1vw;
}

@media (min-width:500px) and (max-width:850px) {
  .contact_map {
    height: 120vw;
  }

  .contact_map_tabs {
    left: 2.857vw;
    display: flex;
    top: 2vw;
    gap: 0.7vw;
  }

  .contact_map_tab {
    font-size: 3vw;
    border-radius: 5px;
    padding: 1.5vw 1.9vw 1.5vw 1.7vw;
  }

  .contact_map_desc {
    top: auto;
    bottom: 2vw;
    left: 2.857vw;
    width: 94.286vw;
    font-size: 3vw;
    padding: 5px 7px;
    box-sizing: border-box;
  }
}

@media (max-width:500px) {
  .contact_map {
    height: 120vw;
  }

  .contact_map_tabs {
    left: 2.857vw;
    display: flex;
    top: 2vw;
    gap: 0.7vw;
  }

  .contact_map_tab {
    font-size: 3vw;
    border-radius: 5px;
    padding: 1.5vw 1.9vw 1.5vw 1.7vw;
  }

  .contact_map_desc {
    top: auto;
    bottom: 2vw;
    left: 2.857vw;
    width: 94.286vw;
    font-size: 3vw;
    padding: 5px 7px;
    box-sizing: border-box;
    border-radius: 5px;
  }
}

.contact_info_item:nth-child(3) {
  display: flex;
  flex-wrap: wrap;
  gap: 1.07vw;
  width: 15.915vw;
  justify-content: space-between;
}

.contact_info_item_link {
  position: relative;
  width: 4.285vw;
  height: 4.285vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 0.07vw solid rgba(140, 140, 140, 0.5);
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s;
}

.contact_info_item:nth-child(1) .contact_info_item_text {
  margin-bottom: 1vw;
}

.contact_info_item:nth-child(2) p:nth-child(3) {
  margin-top: 1vw;
}

@media (min-width:500px) {
  .contact_info_item:nth-child(3) .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 1.07vw;
    width: 15.915vw;
  }
}

@media (min-width:500px) and (max-width:850px) {

  .contact_info_item:nth-child(1) .contact_info_item_text {
    max-width: 39vw;
  }

  .contact_info_item:nth-child(2) p:nth-child(3) {
    margin-top: 3vw;

  }

  .contact_info_item_title {
    font-size: 2.5vw;
  }

  .contact_info_item_text {
    font-size: 3vw;
  }

  .contact_info_items {
    flex-wrap: wrap;
  }

  .contact_info_item:nth-child(3) {
    width: 100%;
    order: 0;
    gap: 2.07vw;
    justify-content: flex-start;
    margin-bottom: 3vw;
  }

  .contact_info_item:nth-child(-n+2) {
    width: 50%;
    order: 1;
  }

  .contact_info_item_metro,
  .contact_info_item_park,
  .contact_info_item_clock {
    font-size: 2vw;
  }

  .contact_info_item_clock:before,
  .contact_info_item_park:before,
  .contact_info_item_metro:before {
    width: 3vw;
    height: 3vw;
  }

  .contact_info_item_link {
    width: 9.375vw;
    height: 9.375vw;
    border: 0.156vw solid rgba(140, 140, 140, 0.5);
  }
}

@media (max-width: 500px) {
  .contact_info_item_title {
    font-size: 4vw;
    margin-bottom: 3vw;
  }

  .contact_info_item_text {
    font-size: 5vw;
    margin-bottom: 3vw;
  }

  .contact_info_item:nth-child(2) p:nth-child(3) {
    margin-top: 8vw;
  }

  .contact_info_item_metro,
  .contact_info_item_park,
  .contact_info_item_clock {
    font-size: 4vw;
    margin-bottom: 2vw;
    gap: 1.727vw;
  }

  .contact_info_item_clock:before,
  .contact_info_item_park:before,
  .contact_info_item_metro:before {
    width: 5vw;
    height: 5vw;
  }

  .contact_info_items {
    flex-wrap: wrap;
    margin: 0 2.875vw;
  }

  .container.mobcontact .doctors_title,
  .container.mobcontact .doctors__breads {
    margin-right: 2.875vw;
    margin-left: 2.875vw;
  }

  .container.mobcontact .doctors_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  svg.icon-swipe {
    width: 6vw;
    height: 6vw;
  }

  .container.mobcontact {
    margin: 0;
    width: 100%;
    overflow: hidden;
  }

  .contact_info_item:nth-child(3) {
    width: 100%;
    display: block;
    order: 0;
    margin: 5vw 0 5vw;
  }

  .contact_info_item:nth-child(1) {
    width: 100%;
    order: 2;
    margin-bottom: 3vw;
    margin-top: 7vw;
  }

  .contact_info_item:nth-child(2) {
    width: 100%;
    order: 1;
    margin-bottom: 3vw;
  }

  .contact_info_item_link {
    box-sizing: border-box;
    width: 17.14vw;
    height: 17.14vw;
    border: 0.285vw solid rgba(140, 140, 140, 0.5);
    height: 18.22vw;
  }

  .service .service__description .service__description__request.mobile {
    display: flex;
  }

  .service .service__description .service__description__request.desktop {
    display: none;
  }

  .contact_info_item:nth-child(1) .contact_info_item_text {
    margin-bottom: 3vw;
  }
}

#aboutMed .osnovatel__title {
  margin-bottom: 2.78vw;
  font-size: 3vw;
  line-height: 100%;
}

@media (max-width: 850px) {
  #aboutMed .osnovatel__title {
    margin-bottom: 5.468vw;
    font-size: 5.5vw;
  }
}

@media (max-width: 500px) {
  #aboutMed .osnovatel__title {
    margin-bottom: 5.71vw;
    font-size: 8vw;
  }
}