* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --app-height: 100%;
  --white: #ffffff;
  --black: #000;
  --black_text: #000;
  --dark: #293c56;
  --dark_text: #293c56;
  --dark_blue: #152789;
  --dark_blue_text: #152789;
  --blue: #2d4ff9;
  --blue_btn: #2d4ff9;
  --violet: #465ac6;
  --violet_text: #465ac6;
  --grey_text: #eff0f2;
  --grey: #eff0f2;
  --dark_grey_text: #707d8e;
  --dark_grey: #707d8e;
  --middle_grey: #b8bec7;
  --gradient: linear-gradient(180deg, #788cf8, #465ac6);
  --shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.shadow {
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

.c_wh {
  color: var(--white);
}

.c_grey {
  color: var(--grey);
}

.c_black_text {
  color: var(--black_text);
}

.c_dark {
  color: var(--dark);
}

.c_darkgrey {
  color: var(--darkgrey);
}

.c_dark_text {
  color: var(--dark_text);
}

.c_blue {
  color: var(--blue);
}

.c_grey {
  color: var(--grey_text);
}

.c_dark_grey_text {
  color: var(--dark_grey_text);
}

.c_violet_text {
  color: var(--violet_text);
}

.c_dark_blue_text {
  color: var(--dark_blue_text);
}

.transition {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bg_wh {
  background-color: var(--white);
}

.bg_black {
  background-color: var(--black);
}

.bg_dark {
  background-color: var(--dark);
}

.bg_grey {
  background-color: var(--grey);
}

.elem__anim > h1, .elem__anim > h2, .elem__anim > h3, .elem__anim > h4, .elem__anim > a, .elem__anim > button, .elem__anim > p, .elem__anim > ul, .elem__anim > ol {
  opacity: 0;
}

.bg_darkgrey {
  background-color: var(--darkgrey);
}

.bg_dark_blue {
  background-color: var(--dark_blue);
}

.bg_blue {
  background-color: var(--blue);
}

.bg_violet {
  background-color: var(--violet);
}

.bg_darkgrey {
  background-color: var(--darkgrey);
}

.bg_middle_grey {
  background-color: var(--middle_grey);
}

body,
html {
  scrollbar-color: var(--qadark) var(--light);
  scrollbar-width: thick;
  overflow-x: hidden;
}

.swiper-container {
  overflow: hidden;
}

.xyz_start {
  opacity: 0;
}

.xyz_start.xyz-in {
  opacity: 1;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--dark);
  background-color: var(--white);
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  line-height: 1.2em;
  color: var(--dark_text);
}

section {
  position: relative;
}

/* ::-webkit-scrollbar {
  height: 5px;
} */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--grey);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--violet);
}

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

a:hover,
a:active,
a:visited,
a {
  text-decoration: none;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  display: block;
}

p {
  margin-bottom: 0;
}

input:hover,
select:hover,
textarea:hover,
input:active,
select:active,
textarea:active,
input:focus,
select:focus,
textarea:focus,
input,
select,
textarea {
  display: block;
  outline: none;
  font-family: "Montserrat", sans-serif;
}

button {
  background-color: transparent;
  border: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}

button,
button:focus,
button:active,
button:hover {
  outline: none;
}

svg,
path,
stroke {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.container {
  position: relative;
}

a.btn,
button.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Montserrat", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  font-weight: 600;
  height: 55px;
  width: 174px;
  position: relative;
  background-color: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
  border-radius: 20px;
}
a.btn:hover,
button.btn:hover {
  background-color: var(--white);
  border-color: var(--blue);
  color: var(--blue);
}
a.btn:hover path,
button.btn:hover path {
  stroke: var(--blue);
}
a.btn.btn_tr,
button.btn.btn_tr {
  background-color: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
}
a.btn.btn_tr:hover,
button.btn.btn_tr:hover {
  background-color: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
a.btn.btn_tr:hover path,
button.btn.btn_tr:hover path {
  stroke: var(--white);
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: transparent;
  -webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
}
.header.header_fixed {
  background-color: var(--white);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}
.header .header__top {
  height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header .header__top a svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header .header__top a:hover {
  color: var(--grey);
}
.header .header__top .social a:hover path {
  fill: var(--blue);
}

.category .header,
.blog .header,
.single-post .header,
.page-template-template-main.white_header .header,
.page-template-template-contact .header,
.page-template-template-news .header,
.page-template-template-price .header,
.single-services .header,
.page-template-template-service .header,
.page-template-template-doctors .header {
  background-color: var(--white);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

@media screen and (min-width: 576px) {
  .header.header_fixed {
    top: -46px;
  }
}
.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.social a {
  width: 16px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.social a:not(:last-child) {
  margin-right: 16px;
}

.header__phone span {
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header__phone svg {
  margin-right: 8px;
}
.header__phone:hover {
  color: var(--blue);
}
.header__phone:hover span {
  border-bottom: 1px solid var(--blue);
}

.custom-logo-link {
  width: 100px;
  display: block;
}
.custom-logo-link img {
  width: 100%;
  height: auto;
}

.nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
.nav__menu .nav__item {
  position: relative;
  margin-right: 30px;
}
.nav__menu .nav__item:last-child {
  margin-right: 0;
}
.nav__menu .nav__item a {
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1.2em;
  padding: 0;
  color: var(--black);
  position: relative;
  border-bottom: 1px solid transparent;
}
.nav__menu .nav__item a:hover {
  color: var(--blue);
}
.nav__menu .nav__item.menu-item-has-children > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 26px;
}
.nav__menu .nav__item.menu-item-has-children > a:before, .nav__menu .nav__item.menu-item-has-children > a::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  top: calc(50% - 12x);
  background: url(../img/menu_arrow.svg) no-repeat center;
  -webkit-transition: all 0.4se ease;
  transition: all 0.4se ease;
}
.nav__menu .nav__item.menu-item-has-children > a::after {
  opacity: 0;
  background: url(../img/menu_arrow_blue.svg) no-repeat center;
}
.nav__menu .nav__item.menu-item-has-children .sub-menu {
  width: 100%;
  min-width: 250px;
  padding: 20px;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 100%;
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  pointer-events: none;
  border-radius: 20px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}
.nav__menu .nav__item.menu-item-has-children .sub-menu li {
  margin-bottom: 12px;
}
.nav__menu .nav__item.menu-item-has-children .sub-menu li a {
  font-weight: 400;
  color: var(--dark);
}
.nav__menu .nav__item.menu-item-has-children .sub-menu li a:hover {
  color: var(--blue);
}

@media screen and (min-width: 992px) {
  .nav__menu .nav__item.menu-item-has-children:hover > a:before {
    opacity: 0;
  }
  .nav__menu .nav__item.menu-item-has-children:hover > a::after {
    opacity: 1;
  }
  .nav__menu .nav__item.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    pointer-events: all;
  }
}
.menu__burger {
  display: none;
  width: 30px;
}
.menu__burger span {
  display: block;
  height: 2px;
  width: 30px;
  border-radius: 50px;
  background-color: var(--dark);
  margin-bottom: 7px;
  pointer-events: none;
  border-radius: 2px;
}
.menu__burger span:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1199px) {
  .nav__menu .nav__item {
    margin-right: 20px;
  }
  .header__contact {
    margin-left: 15px;
  }
}
@media screen and (max-width: 991px) {
  .header {
    border-bottom: none;
  }
  .nav {
    position: fixed;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    z-index: 999999;
    right: -450px;
    top: 0;
    opacity: 0;
    pointer-events: none;
    background: var(--white);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    overflow-y: auto;
    padding-top: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nav.open_menu {
    right: 0;
    top: 0px;
    opacity: 1;
    pointer-events: all;
  }
  .nav .nav__row {
    width: 100%;
    padding: 20px 12px;
    position: relative;
  }
  .nav .nav__row .custom-logo-link {
    width: 100px;
  }
  .nav .menu__close {
    width: 31px;
    height: 31px;
    outline: none;
    /* margin-left: auto; */
    position: relative;
    background-color: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .nav .menu__close:before, .nav .menu__close::after {
    content: "";
    display: block;
    background-color: var(--dark);
    pointer-events: none;
    position: absolute;
  }
  .nav .menu__close:before {
    width: 100%;
    height: 1px;
    left: 0;
    top: 15px;
  }
  .nav .menu__close::after {
    height: 100%;
    width: 1px;
    top: 0;
    left: 15px;
  }
  .nav .menu__close > * {
    pointer-events: none;
  }
  .nav .nav__menu {
    padding: 0 10px;
    width: 100%;
    display: block;
    margin-bottom: 30px;
  }
  .nav .nav__menu .nav__item {
    margin-bottom: 0;
    width: 100%;
    text-align: left;
    margin-right: 0;
  }
  .nav .nav__menu .nav__item:last-child {
    margin-bottom: 0;
  }
  .nav .nav__menu .nav__item a {
    font-size: 20px;
    position: relative;
    color: var(--dark);
    display: block;
    padding: 10px 0;
    border: none;
  }
  .nav .nav__menu .nav__item a:hover {
    color: var(--blue);
    border: none;
  }
  .nav .nav__menu .nav__item.menu-item-has-children > a {
    padding-right: 10px;
  }
  .nav .nav__menu .nav__item.menu-item-has-children > a:before, .nav .nav__menu .nav__item.menu-item-has-children > a::after {
    display: none;
  }
  .nav .nav__menu .nav__item.menu-item-has-children > a.open .open_child_menu {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .nav .nav__menu .nav__item.menu-item-has-children .open_child_menu {
    position: absolute;
    display: block;
    right: 0;
    top: calc(50% - 22px);
    width: 44px;
    height: 44px;
    background-color: var(--grey);
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .nav .nav__menu .nav__item.menu-item-has-children .open_child_menu::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/menu_arrow.svg) no-repeat center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    pointer-events: none;
  }
  .nav .nav__menu .nav__item.menu-item-has-children .sub-menu {
    width: 100%;
    min-width: 250px;
    padding: 0 20px;
    background-color: var(--grey);
    position: static;
    left: auto;
    top: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    pointer-events: all;
    border-radius: 0;
  }
  .nav .nav__menu .nav__item.menu-item-has-children .sub-menu li {
    margin-bottom: 12px;
  }
  .nav .nav__menu .nav__item.menu-item-has-children .sub-menu li:first-child {
    padding-top: 20px;
  }
  .nav .nav__menu .nav__item.menu-item-has-children .sub-menu li:last-child {
    padding-bottom: 20px;
  }
  .nav .nav__menu .nav__item.menu-item-has-children .sub-menu li a {
    font-size: 18px;
    padding: 0;
    font-weight: 400;
    color: var(--dark);
  }
  .nav .nav__menu .nav__item.menu-item-has-children .sub-menu li a:hover {
    color: var(--blue);
  }
  .nav .header__contact {
    padding: 30px;
    text-align: left;
    margin-top: auto;
  }
  .nav .header__contact .header__phone {
    font-size: 16px;
    text-align: left;
  }
  .nav .header__contact .header__phone svg {
    width: 20px;
    height: 20px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .nav .header__contact .social a {
    width: 24px;
    height: 24px;
  }
  .nav .header__contact .social a svg {
    width: 24px;
    height: 24px;
  }
  .menu__burger {
    display: block;
    cursor: pointer;
    background-color: transparent;
    border: none;
  }
}
.section__title {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 55px */
  color: var(--dark_text);
  letter-spacing: -0.02em;
}

.text__content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 55px */
  color: var(--dark_text);
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}
.text__content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 55px */
  color: var(--dark_text);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.text__content p,
.text__content li {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 160%;
  color: var(--dark_text);
}
.text__content p {
  margin-bottom: 1.6em;
}
.text__content ul {
  margin-bottom: 0;
}
.text__content li {
  padding-left: 30px;
  position: relative;
  color: var(--dark_grey_text);
}
.text__content li li {
  margin-bottom: 1.25em;
}
.text__content li:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/icon_list.svg) no-repeat center;
  position: absolute;
  left: 0;
  top: 3px;
}
.text__content ol li {
  padding-left: 40px;
}
.text__content ol li:before {
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
  background: url(../img/icon_list2.svg) no-repeat center;
}

@media screen and (max-width: 1439px) {
  .text__content h2,
  .section__title {
    font-size: 36px;
  }
}
@media screen and (max-width: 1199px) {
  .text__content h3 {
    font-size: 36px;
  }
}
@media screen and (max-width: 991px) {
  .text__content h2,
  .section__title {
    font-size: 32px;
  }
  .text__content h3 {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .text__content p,
  .text__content li {
    font-size: 16px;
  }
}
.form__wrap {
  width: 100%;
}
.form__wrap.form__wrap_content {
  width: 450px;
}
.form__wrap.form__wrap_content .input__group {
  width: 100%;
}
.form__wrap.form__wrap_content .btn__wrap {
  width: 100%;
}
.form__wrap.form__wrap_content .btn__wrap .btn {
  width: 100%;
  max-width: 100%;
}
.form__wrap .input__group {
  margin-bottom: 20px;
}
.form__wrap .input__group p {
  margin: 0 !important;
}
.form__wrap .input__group .order__input {
  display: block;
  width: 100%;
  height: 55px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  padding-left: 12px;
  border: 2px solid var(--middle_grey);
  border-radius: 20px;
  background-color: var(--white);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: var(--dark_grey_text);
}
.form__wrap .input__group .order__input.wpcf7-not-valid {
  border-color: red;
}
.form__wrap .input__group .order__input::-webkit-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--dark_grey_text);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-moz-placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--dark_grey_text);
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input:-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--dark_grey_text);
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--dark_grey_text);
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--dark_grey_text);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input:focus {
  border-color: var(--middle_grey);
}
.form__wrap input[type=checkbox] {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid var(--lightgrey);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-right: 10px;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.form__wrap input[type=checkbox]:checked {
  background: #c5cdcd url(../img/check_icon_wh.svg) no-repeat center;
}
.form__wrap .wpcf7-not-valid-tip {
  font-size: 18px;
  color: var(--orange);
}
.form__wrap span {
  display: block;
}
.form__wrap .wpcf7-list-item {
  display: block;
  margin: 0 !important;
}

.home .head__section {
  background: -webkit-gradient(linear, left top, right top, from(#dddae1), color-stop(70%, #dddae1), to(#bcbcc4));
  background: linear-gradient(90deg, #dddae1 0%, #dddae1 70%, #bcbcc4 100%);
}

.head__section {
  padding-top: 125px;
  max-height: 994px;
  min-height: 670px;
  height: 100vh;
  position: relative;
}
.head__section .container {
  height: 100%;
}
.head__section .offer {
  height: 100%;
  padding-top: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.head__section .offer .offer__main {
  line-height: 1.4em;
}
.head__section .offer .offer__main b {
  font-weight: 700;
}
.head__section .offer .offer__title {
  font-size: 88px;
  letter-spacing: -0.02em;
  line-height: 1em;
  font-weight: 700;
}
.head__section .offer .offer__subtitle {
  line-height: 1.3em;
}
.head__section .offer .offer__link svg {
  margin-right: 6px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.head__section .offer .head__img {
  position: absolute;
  bottom: 0;
  left: 60%;
  max-height: calc(100% + 122px);
}
.head__section .offer .head__callback {
  padding: 47px 54px;
  border-radius: 16px;
  margin-bottom: -78px;
  position: relative;
  z-index: 5;
}
.head__section .offer .head__callback p {
  line-height: 1.1em;
}
.head__section .offer .head__callback .form__wrap .input__group {
  margin-bottom: 0;
  width: calc(100% - 200px);
}
.head__section .offer .head__callback .form__wrap .btn {
  width: 180px;
}
.head__section.head__section_other {
  max-height: initial;
  min-height: initial;
  height: 630px;
  padding-top: 220px;
}
.head__section.head__section_other .offer {
  padding-top: 0;
  padding-bottom: 80px;
}
.head__section.default {
  background: -webkit-gradient(linear, left top, right top, from(#dddae1), color-stop(70%, #dddae1), to(#bcbcc4));
  background: linear-gradient(90deg, #dddae1 0%, #dddae1 70%, #bcbcc4 100%);
}
.head__section.default .breadcrumbs {
  color: var(--dark);
}
.head__section.default .breadcrumbs span {
  color: var(--dark);
}
.head__section.default .breadcrumbs span a {
  color: var(--dark);
  text-decoration: underline;
}
.head__section.default .offer__title {
  color: var(--dark);
}
.head__section.bg_dark {
  background: var(--dark);
}
.head__section.bg_dark .breadcrumbs {
  color: var(--white);
}
.head__section.bg_dark .breadcrumbs span {
  color: var(--white);
}
.head__section.bg_dark .breadcrumbs span a {
  color: var(--white);
  text-decoration: underline;
}
.head__section.bg_dark .offer__title {
  color: var(--white);
}
.head__section.bg__style {
  background-color: transparent;
}
.head__section.bg__style .breadcrumbs {
  color: var(--white);
}
.head__section.bg__style .breadcrumbs span {
  color: var(--white);
}
.head__section.bg__style .breadcrumbs span a {
  color: var(--white);
  text-decoration: underline;
}
.head__section.bg__style:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #283B56;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.4;
}
.head__section.bg__style .offer__title {
  color: var(--white);
}

.breadcrumbs {
  color: var(--dark);
}
.breadcrumbs span {
  letter-spacing: -0.02em;
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
}
.breadcrumbs span a {
  color: var(--dark);
  text-decoration: underline;
}
.breadcrumbs span.breadcrumb_last {
  opacity: 0.5;
}

@media screen and (max-height: 760px) {
  .head__section .offer {
    padding-top: 20px;
  }
  .head__section .offer__main {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1439px) {
  .head__section .offer .offer__title {
    font-size: 68px;
  }
  .head__section .offer .head__img {
    max-width: 700px;
    left: 55%;
  }
}
@media screen and (max-width: 1199px) {
  .head__section {
    max-height: 700px;
  }
  .head__section .offer .offer__title {
    font-size: 60px;
  }
  .head__section .offer .head__callback {
    padding: 30px;
  }
}
@media screen and (max-width: 991px) {
  .head__section {
    height: initial;
    max-height: initial;
    min-height: initial;
  }
  .head__section .offer .offer__title {
    font-size: 48px;
  }
  .head__section .offer .head__callback .form__wrap .input__group {
    margin-bottom: 20px;
  }
  .head__section .offer {
    padding-top: 10px;
  }
  .head__section .offer .offer__main {
    margin-bottom: 15px;
  }
  .form__wrap.form__wrap_content {
    width: 100%;
  }
  .about .form__wrap.form__wrap_content {
    width: 100%;
  }
  .about .form__wrap.form__wrap_content .input__group {
    width: 48%;
  }
  .about .form__wrap.form__wrap_content .btn__wrap {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .head__section .offer .head__callback {
    padding: 20px 15px;
    margin-top: 300px;
    margin-bottom: -120px;
  }
  .head__section .offer .head__callback p {
    font-size: 24px;
  }
  .head__section .offer .head__callback .form__wrap .input__group {
    width: 100%;
  }
  .head__section .offer .head__callback .form__wrap .input__group * {
    width: 100%;
  }
  .head__section .offer .head__callback .form__wrap p {
    max-width: 100%;
  }
  .head__section .offer .head__callback .form__wrap .btn__wrap {
    width: 100%;
  }
  .head__section .offer .head__callback .form__wrap .btn__wrap .btn {
    width: 100%;
  }
  .head__section .offer .head__img {
    max-width: 500px;
    left: calc(50% - 200px);
  }
  .head__section.head__section_other {
    height: auto;
    padding-top: 150px;
  }
  .head__section.head__section_other .breadcrumbs {
    margin-bottom: 100px !important;
  }
  .head__section.head__section_other.offer_img .offer {
    padding-bottom: 380px;
  }
  .head__section.head__section_other.offer_img .offer .head__img {
    max-width: 350px;
  }
}
@media screen and (max-width: 576px) {
  .head__section {
    padding-top: 80px;
  }
  .home .head__section {
    background: -webkit-gradient(linear, left top, right top, from(#dddae1), color-stop(60%, #dddae1), to(#dddae1));
    background: linear-gradient(90deg, #dddae1 0%, #dddae1 60%, #dddae1 100%);
  }
  .head__section .offer .offer__title {
    font-size: clamp(34px, 10vw, 40px);
  }
  .head__section .offer .head__callback {
    padding: 16px 15px;
    margin-bottom: -115px;
  }
  .head__section .offer .head__callback p {
    font-size: 20px;
    max-width: 360px;
  }
  .head__section .offer .offer__main {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .head__section .offer .offer__title {
    margin-bottom: 20px;
  }
  .head__section .offer .offer__subtitle {
    font-size: 18px;
  }
  .head__section .offer .head__callback .form__wrap .input__group {
    width: 100%;
  }
  .about .form__wrap.form__wrap_content {
    width: 100%;
  }
  .about .form__wrap.form__wrap_content .input__group {
    width: 100%;
  }
  .about .form__wrap.form__wrap_content .btn__wrap {
    width: 100%;
  }
}
.service.pt_40 {
  padding-top: 40px;
}
.service .service__card {
  width: 100%;
  border-radius: 20px;
  padding: 34px 30px;
  min-height: 318px;
  position: relative;
  overflow: hidden;
}
.service .service__card::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: var(--gradient);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.service .service__card:hover:before {
  opacity: 1;
}
.service .service__card:hover p,
.service .service__card:hover .service__more,
.service .service__card:hover h3 {
  color: var(--white);
}
.service .service__card:hover .service__more {
  border-bottom-color: var(--white);
}
.service .service__card .service__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.service .service__card h3 {
  line-height: 1.2em;
}
.service .service__card p {
  line-height: 1.4em;
}
.service .service__card .service__more {
  line-height: 1.8em;
  border-bottom: 2px solid var(--violet_text);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

@media screen and (max-width: 1439px) {
  .service {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .service {
    padding-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .service {
    padding-top: 120px;
  }
}
@media screen and (max-width: 576px) {
  .service .service__card {
    min-height: initial;
  }
  .service .service__card .service__text {
    margin-bottom: 30px;
  }
}
.about .about__img {
  overflow: hidden;
}
.about .about__img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.about .text__content.show_list_dotted ul > li {
  padding-left: 24px;
}
.about .text__content.show_list_dotted ul > li:before {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  top: 7px;
}
.about .text__content li:not(:last-child) {
  margin-bottom: 16px;
}
.about .numbers__count {
  line-height: 1em;
}
.about.about_step .numbers .numbers__count {
  color: var(--white);
  text-shadow: -1px -1px 0 var(--violet), 1px -1px 0 var(--violet), -1px 1px 0 var(--violet), 1px 1px 0 var(--violet);
}

@media screen and (max-width: 1199px) {
  .numbers .numbers__count {
    font-size: 48px;
  }
}
@media screen and (max-width: 991px) {
  .about .about__img {
    max-width: 540px;
    margin: 0 auto 25px;
  }
}
.team .team__swiper .team__thumbnail {
  height: 340px;
  overflow: hidden;
  border-radius: 20px;
}
.team .team__swiper .team__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.team .team__swiper .team__slide {
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 30px;
  height: auto;
  position: relative;
}
.team .team__swiper .team__slide::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--gradient);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
}
.team .team__swiper .team__slide .team__name,
.team .team__swiper .team__slide .team__position {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.team .team__swiper .team__slide:hover::before {
  opacity: 1;
}
.team .team__swiper .team__slide:hover .team__name,
.team .team__swiper .team__slide:hover .team__position {
  color: var(--white);
}
.team .team__swiper .team__slide:hover .team__thumbnail img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.slider_item .swiper-container {
  margin-bottom: 24px;
}

.swiper__pag {
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.swiper__pag.swiper-pagination-lock {
  display: none;
}
.swiper__pag .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background-color: var(--middle_grey);
  margin: 0 2px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 1;
}
.swiper__pag .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--blue);
  width: 30px;
}

@media screen and (max-width: 991px) {
  .team .team__swiper .team__thumbnail {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .team .team__swiper .team__thumbnail {
    height: 260px;
  }
  .team .team__swiper .team__slide .team__name {
    font-size: 16px;
  }
  .team .team__swiper .team__slide .team__position {
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  .slider_item .swiper-container .swiper-slide {
    width: 290px;
  }
  .team .team__swiper .team__slide .team__name {
    font-size: 18px;
  }
  .team .team__swiper .team__slide .team__position {
    font-size: 16px;
  }
  .team .team__swiper .team__thumbnail {
    height: 280px;
  }
}
.callback .callback__block {
  border-radius: 20px;
}
.callback .callback__info {
  padding: 50px 0 50px 54px;
}
.callback .callback__info .callback__title {
  line-height: 1.2em;
}
.callback .callback__info .callback__subtitle {
  line-height: 1.4em;
}
.callback .form__wrap {
  margin-bottom: 74px;
}
.callback .form__wrap.form__wrap_content .input__group {
  width: 100%;
}
.callback .form__wrap.form__wrap_content .btn {
  width: 100%;
}
.callback .form__wrap .input__group {
  width: calc(100% - 200px);
}
.callback .form__wrap .btn {
  width: 180px;
}
.callback .form__wrap .wpcf7-response-output {
  color: var(--white);
}
.callback .callback__img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.callback .callback__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.callback .callback__contact .callback__col {
  width: 180px;
}
.callback .callback__contact .callback__col:nth-child(odd) {
  width: 276px;
}
.callback .callback__contact .callback__col .callback__item {
  margin-bottom: 12px;
  line-height: 1.4em;
}
.callback .callback__contact .callback__col .callback__item span {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.callback .callback__contact .callback__col .callback__item:last-child {
  margin-bottom: 0;
}
.callback .callback__contact .callback__col .callback__item svg {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.callback .callback__contact .callback__col a.callback__item:hover {
  color: var(--grey);
}
.callback .callback__contact .callback__col a.callback__item:hover span {
  text-decoration: underline;
}

@media screen and (max-width: 1199px) {
  .callback .callback__info {
    padding: 40px 0 40px 24px;
  }
  .callback .form__wrap {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 991px) {
  .callback .callback__block {
    max-width: 540px;
    margin: 0 auto;
  }
  .callback .callback__info {
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .callback .form__wrap p {
    max-width: 100%;
  }
  .callback .form__wrap .btn__wrap {
    width: 100%;
  }
  .callback .form__wrap .btn__wrap .btn {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .callback .form__wrap .input__group {
    width: 100%;
  }
}
.news .news__swiper .news__thumbnail {
  height: 340px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.news .news__swiper .news__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.news .news__swiper .news__thumbnail .news__tag {
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 8px;
  z-index: 2;
}
.news .news__swiper .news__slide {
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 30px;
  height: auto;
  position: relative;
}
.news .news__swiper .news__slide .news__text {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
  margin-bottom: 24px;
}
.news .news__swiper .news__slide .news__date,
.news .news__swiper .news__slide .news__name,
.news .news__swiper .news__slide .news__text {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.news .news__swiper .news__slide:hover .news__thumbnail img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media screen and (max-width: 1199px) {
  .news .news__swiper .news__thumbnail {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .news .news__swiper .news__thumbnail {
    height: 260px;
  }
  .news .news__swiper .news__thumbnail .news__tag {
    left: 10px;
    top: 10px;
    border-radius: 5px;
  }
}
@media screen and (max-width: 576px) {
  .news .news__swiper .news__thumbnail {
    height: 280px;
  }
}
.works .works__swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.works .swiper-slide {
  display: block;
  height: 340px;
  margin-bottom: 24px;
  border-radius: 20px;
  overflow: hidden;
  width: calc(33.3333333333% - 24px);
  margin: 0 12px 24px;
}
.works .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1199px) {
  .works .swiper-slide {
    height: 300px;
  }
}
@media screen and (max-width: 991px) {
  .works .works__swiper .swiper-wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .works .swiper-slide {
    width: calc(33.3333333333% + 50px);
  }
}
@media screen and (max-width: 767px) {
  .works .swiper-slide {
    width: calc(50% + 50px);
  }
}
@media screen and (max-width: 576px) {
  .works .swiper-slide {
    width: calc(50% + 100px);
  }
}
.sertificate .sertificate__swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sertificate .swiper-slide {
  display: block;
  height: 440px;
  margin-bottom: 24px;
  border-radius: 20px;
  overflow: hidden;
  width: calc(33.3333333333% - 24px);
  margin: 0 12px 24px;
}
.sertificate .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1199px) {
  .sertificate .swiper-slide {
    height: 400px;
  }
}
@media screen and (max-width: 991px) {
  .sertificate .sertificate__swiper .swiper-wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .sertificate .swiper-slide {
    width: calc(33.3333333333% + 50px);
  }
}
@media screen and (max-width: 767px) {
  .sertificate .swiper-slide {
    width: calc(50% + 50px);
  }
}
@media screen and (max-width: 576px) {
  .sertificate .swiper-slide {
    width: calc(50% + 100px);
  }
}
.single__content .content__block .content__img {
  width: 100%;
  height: auto;
}
.single__content .content__block .content__img img {
  width: auto;
  height: auto;
  max-width: 100%;
  border-radius: 20px;
}
.single__content .text__content.show_list_dotted ul > li {
  padding-left: 24px;
}
.single__content .text__content.show_list_dotted ul > li:before {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  top: 7px;
}
.single__content .content__gallary .gallary__item {
  margin-bottom: 24px;
}
.single__content .content__gallary .gallary__item a {
  display: block;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
}
.single__content .content__gallary .gallary__item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sidebar .sidebar__wrap .sidebar__close {
  width: 31px;
  height: 31px;
  outline: none;
  /* margin-left: auto; */
  position: relative;
  background-color: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  display: block;
}
.sidebar .sidebar__wrap .sidebar__close:before, .sidebar .sidebar__wrap .sidebar__close::after {
  content: "";
  display: block;
  background-color: var(--dark);
  pointer-events: none;
  position: absolute;
}
.sidebar .sidebar__wrap .sidebar__close:before {
  width: 100%;
  height: 1px;
  left: 0;
  top: 15px;
}
.sidebar .sidebar__wrap .sidebar__close::after {
  height: 100%;
  width: 1px;
  top: 0;
  left: 15px;
}
.sidebar .sidebar__wrap .sidebar__close > * {
  pointer-events: none;
}
.sidebar .sidebar__wrap .sidebar__menu li {
  position: relative;
  margin-bottom: 10px;
}
.sidebar .sidebar__wrap .sidebar__menu li::before, .sidebar .sidebar__wrap .sidebar__menu li::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 24px;
  top: calc(50% - 6px);
  z-index: 5;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: url(../img/sidebar_arrow_dark.svg);
}
.sidebar .sidebar__wrap .sidebar__menu li::after {
  background: url(../img/sidebar_arrow.svg);
  opacity: 0;
}
.sidebar .sidebar__wrap .sidebar__menu li:hover::before {
  opacity: 0;
}
.sidebar .sidebar__wrap .sidebar__menu li:hover::after {
  opacity: 1;
}
.sidebar .sidebar__wrap .sidebar__menu li a {
  position: relative;
  padding-right: 40px;
  height: 64px;
  border-radius: 10px;
  padding-left: 10px;
  color: var(--dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(51%, #788cf8), to(#465ac6));
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #788cf8 51%, #465ac6 100%);
  background-size: 100% 200%;
  background-position: left top;
}
.sidebar .sidebar__wrap .sidebar__menu li a:hover {
  color: var(--white);
  background-position: left bottom;
}

@media screen and (max-width: 991px) {
  .sidebar .sidebar__wrap {
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}
.doctor .doctor__img {
  height: 436px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
}
.doctor .doctor__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.doctor .social a {
  width: 24px;
  height: 24px;
  padding: 0;
}
.doctor .social a:not(:last-child) {
  margin-right: 16px;
}
.doctor .social a svg {
  width: 24px;
  height: 24px;
}
.doctor .social a:hover path {
  fill: var(--blue);
}
.doctor .doctor__name {
  line-height: 1em;
}

.price .price__item {
  margin-bottom: 40px;
}
.price .price__name {
  height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  padding: 0 16px;
  background-color: #d0d4e7;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 400;
}
.price table {
  border-collapse: collapse;
  width: 100%;
}
.price table td {
  border: none;
  border-bottom: 1px solid var(--grey);
  font-size: 16px;
  padding: 16px;
  text-align: left;
}
.price table td:last-child {
  text-align: right;
  max-width: 35%;
  font-weight: 500;
}

.contact .contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
.contact .contact__item .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
.contact .contact__item .icon svg {
  width: 24px;
  height: 24px;
}
.contact .contact__item .contact__text {
  line-height: 1.4em;
}
.contact .contact__item .contact__text a {
  border-bottom: 1px solid transparent;
  font-weight: 500;
}
.contact .contact__item .contact__text a:hover {
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
}
.contact .social a {
  width: 24px;
  height: 24px;
  padding: 0;
}
.contact .social a:not(:last-child) {
  margin-right: 16px;
}
.contact .social a svg {
  width: 24px;
  height: 24px;
}
.contact .social a:hover path {
  fill: var(--blue);
}
.contact .contact__map {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
}
.contact .contact__map iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .contact .contact__map {
    position: static;
    height: 500px;
    width: calc(100% - 24px);
    margin: 25px auto 0;
  }
}
.pagination span.page-numbers {
  pointer-events: none;
}
.pagination .page-numbers {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--dark_grey);
  font-size: 16px;
  font-weight: 500;
  color: var(--blue);
  margin: 0 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination .page-numbers img {
  width: 8px;
  height: auto;
}
.pagination .page-numbers.prev {
  margin-right: 5px;
}
.pagination .page-numbers.current {
  border: 1px solid var(--blue);
}
.pagination .page-numbers.next {
  margin-left: 5px;
}
.pagination .page-numbers:hover {
  border: 1px solid var(--blue);
}

.not_404 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 680px;
  height: 100vh;
}
.not_404 .not_404__number {
  font-size: 200px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #ff2f22;
  line-height: 1em;
}
.not_404 h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1em;
}
.not_404 .not_404__subtitle {
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.6em;
}
.not_404 .btn {
  width: 262px;
}

@media screen and (max-width: 1439px) {
  .not_404 .not_404__number {
    font-size: 160px;
  }
  .not_404 h1 {
    font-size: 42px;
  }
}
@media screen and (max-width: 1199px) {
  .not_404 .not_404__number {
    font-size: 150px;
  }
  .not_404 h1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 991px) {
  .not_404 .not_404__number {
    font-size: 100px;
  }
  .not_404 h1 {
    font-size: 32px;
  }
}
.page-template-template-success .footer {
  margin-top: 0;
}

.footer {
  margin-top: 40px;
}
.footer .footer__logo {
  display: block;
}
.footer .footer__logo img {
  width: 100px;
  height: auto;
  margin-right: 8px;
}
.footer .footer__logo span {
  font-size: 12px;
  color: var(--white);
  line-height: 1.3em;
}
.footer .footer__menu li {
  margin-bottom: 12px;
}
.footer .footer__menu li:last-child {
  margin-right: 0;
}
.footer .footer__menu li a {
  font-weight: 400;
  font-size: 14px;
  color: var(--white);
  line-height: 1.6em;
}
.footer .footer__menu li a:hover {
  color: var(--dark_grey_text);
}
.footer .footer__contact svg {
  margin-right: 8px;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer .footer__contact span {
  line-height: 1.4em;
}
.footer a.footer__contact span {
  text-decoration: underline;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer a.footer__contact:hover span {
  color: var(--blue);
}
.footer a.footer__info {
  text-decoration: underline;
}
.footer .social a {
  width: 24px;
  height: 24px;
}
.footer .social a svg {
  width: 24px;
  height: 24px;
}
.footer .social a:hover path {
  fill: var(--blue);
}

.simple__content h1 {
  font-size: 60px;
  font-weight: 400;
}
.simple__content .text__content h2, .simple__content.text__content h2 {
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.simple__content .text__content h3, .simple__content.text__content h3 {
  font-size: 24px;
  line-height: 1.3em;
  font-weight: 700;
  margin-bottom: 24px;
}
.simple__content .text__content h4, .simple__content.text__content h4 {
  font-size: 18px;
  line-height: 1.3em;
  font-weight: 600;
  margin-bottom: 16px;
}
.simple__content .text__content p,
.simple__content .text__content li, .simple__content.text__content p,
.simple__content.text__content li {
  font-size: 16px;
  line-height: 1.5em;
  color: var(--dark);
}
.simple__content .text__content p a,
.simple__content .text__content li a, .simple__content.text__content p a,
.simple__content.text__content li a {
  color: var(--dark);
  text-decoration: underline;
  font-weight: 500;
}
.simple__content .text__content p a:hover,
.simple__content .text__content li a:hover, .simple__content.text__content p a:hover,
.simple__content.text__content li a:hover {
  color: var(--blue);
}
.simple__content .text__content li, .simple__content.text__content li {
  padding-left: 30px;
  position: relative;
  color: var(--dark_grey_text);
}
.simple__content .text__content li li, .simple__content.text__content li li {
  margin-bottom: 1.25em;
}
.simple__content .text__content li:before, .simple__content.text__content li:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/icon_list.svg) no-repeat center;
  position: absolute;
  left: 0;
  top: 3px;
}
.simple__content .text__content p, .simple__content.text__content p {
  margin-bottom: 1em;
}
.simple__content .text__content ul, .simple__content.text__content ul {
  margin-bottom: 24px;
}
.simple__content .text__content ol, .simple__content.text__content ol {
  list-style: none;
  counter-reset: item;
  margin-bottom: 24px;
}
.simple__content .text__content ol li, .simple__content.text__content ol li {
  counter-increment: item;
  margin-bottom: 20px;
  color: var(--dark);
  font-size: 14px;
}
.simple__content .text__content ol li:before, .simple__content.text__content ol li:before {
  margin-right: 16px;
  content: counter(item);
  background: transparent;
  color: var(--blue);
  font-size: 16px;
  width: 1.2em;
  text-align: center;
  display: inline-block;
  height: 16px;
  top: -2px;
}

@media screen and (max-width: 1439px) {
  .simple__content h1 {
    font-size: 48px;
  }
  .simple__content .text__content h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 1199px) {
  .simple__content h1 {
    font-size: 42px;
  }
}
@media screen and (max-width: 991px) {
  .simple__content .text__content h2 {
    font-size: 32px;
  }
  .footer .footer__logo {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .social {
    margin-bottom: 30px;
  }
  .simple__content {
    padding-top: 20px;
  }
  .simple__content h1 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .simple__content h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .single__content .content__gallary .gallary__item a {
    height: 246px;
  }
  .footer .footer__logo {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .footer .social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 30px;
  }
  .footer .social__title {
    text-align: center;
  }
  .footer__title {
    text-align: center;
  }
  .footer .footer__menu li {
    text-align: center;
  }
  .footer .footer__contact {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    text-align: center;
    justify-content: center;
  }
  .simple__content .text__content p,
  .simple__content .text__content li {
    font-size: 16px;
  }
  .simple__content .text__content h3 {
    font-size: 20px;
    color: var(--dark);
  }
}
@media screen and (max-width: 576px) {
  .footer .footer__links {
    text-align: center;
  }
}
.sticky__btn {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.1em;
  width: 96px;
  height: 96px;
  -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1), 3px 7px 7px rgba(0, 0, 0, 0.1), 8px 15px 10px rgba(0, 0, 0, 0.01);
          box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1), 3px 7px 7px rgba(0, 0, 0, 0.1), 8px 15px 10px rgba(0, 0, 0, 0.01);
  background-color: #65af70;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999;
  border-radius: 50%;
  text-transform: uppercase;
}
.sticky__btn:before {
  content: "";
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  background: linear-gradient(138.54deg, #8cc795, #51a05d);
  pointer-events: none;
}
.sticky__btn span {
  display: block;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.popup {
  position: fixed;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(14, 15, 15, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.popup.open {
  z-index: 999999;
  opacity: 1;
  pointer-events: all;
}
.popup.open .popup__content {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.popup .popup__content {
  background-color: var(--white);
  width: 96%;
  max-width: 1000px;
  padding: 50px 0 20px;
  position: relative;
  border-radius: 20px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  height: 96%;
  background-color: #eaf7ee;
  overflow: hidden;
}
.popup .popup__content .popup_before {
  max-width: 624px;
  padding: 0 12px;
  margin: 0 auto 15px;
}
.popup .popup__content .popup_before a {
  color: #47b269;
}
.popup .popup__content .close_popup {
  border: none;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popup .popup__content .close_popup:before, .popup .popup__content .close_popup::after {
  content: "";
  display: block;
  background-color: var(--dark);
  pointer-events: none;
  position: absolute;
}
.popup .popup__content .close_popup:before {
  width: 100%;
  height: 1px;
  left: 0;
  top: 15px;
}
.popup .popup__content .close_popup::after {
  height: 100%;
  width: 1px;
  top: 0;
  left: 15px;
}
.popup .popup__content .close_popup > * {
  pointer-events: none;
}
.popup .popup__content iframe {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  padding-bottom: 20px;
}
.popup .popup__content .popup__wrap_scroll {
  height: 100%;
  overflow: hidden;
  padding-right: 7px;
}
.popup .popup__content .popup__wrap_scroll .service_name {
  line-height: 1.1em;
}
.popup .popup__content .popup__wrap_scroll p,
.popup .popup__content .popup__wrap_scroll li {
  line-height: 1.4em;
}

.open__form > * {
  pointer-events: none;
}

@media screen and (max-width: 576px) {
  .sticky__btn {
    right: 16px;
    bottom: 16px;
    width: 88px;
    height: 88px;
    font-size: 11px;
  }
}
.wpcf7 form {
  position: relative;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  position: absolute;
  top: 100%;
  margin-top: 0;
  left: 0;
  font-size: 14px;
  width: 100%;
  margin: 0;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

.form__wrap .wpcf7-not-valid-tip {
  font-size: 10px;
  position: absolute;
  top: 100%;
  margin-top: 0;
  left: 0;
  width: 100%;
}

.page_404 {
  height: calc(100vh - 43px);
  min-height: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.page_404 .page_404__title {
  font-size: 200px;
  font-style: normal;
  font-weight: 600;
  font-family: "Zona Pro";
  text-transform: uppercase;
  color: var(--lightgrey);
  margin-bottom: 30px;
  line-height: 0.75em;
}
.page_404 .page_404_subtitle {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
  line-height: 1em;
}
.page_404 .page_404__text {
  font-size: 18px;
  max-width: 284px;
  margin: 0 auto 30px;
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  .page_404 .page_404__title {
    font-size: 150px;
  }
}
.cky-prefrence-btn-wrapper .cky-btn {
  font-size: 18px !important;
  border-radius: 10px !important;
}
.cky-prefrence-btn-wrapper .cky-btn.cky-btn-accept:hover {
  background-color: #333333;
}
.cky-prefrence-btn-wrapper .cky-btn.cky-btn-reject, .cky-prefrence-btn-wrapper .cky-btn.cky-btn-preferences {
  border-width: 1px;
}
.cky-prefrence-btn-wrapper .cky-btn.cky-btn-reject:hover, .cky-prefrence-btn-wrapper .cky-btn.cky-btn-preferences:hover {
  background-color: #f7f7f7;
}

.cky-preference-body-wrapper p {
  font-size: 16px;
}

.cky-consent-container.cky-box-bottom-left {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 15, 15, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cky-consent-container.cky-box-bottom-left.cky-hide {
  display: none;
}
.cky-consent-container.cky-box-bottom-left .cky-consent-bar {
  width: 100%;
  border-radius: 20px;
  max-width: 420px;
  padding: 40px;
}
.cky-consent-container.cky-box-bottom-left .cky-notice .cky-title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 1.1em;
}
.cky-consent-container.cky-box-bottom-left .cky-notice-des {
  margin-bottom: 40px;
}
.cky-consent-container.cky-box-bottom-left .cky-notice-des p {
  font-size: 18px;
  line-height: 1.4em;
}
.cky-consent-container.cky-box-bottom-left .cky-btn {
  font-size: 18px;
  border-radius: 10px;
}
.cky-consent-container.cky-box-bottom-left .cky-btn.cky-btn-accept:hover {
  background-color: #333333;
}
.cky-consent-container.cky-box-bottom-left .cky-btn.cky-btn-reject, .cky-consent-container.cky-box-bottom-left .cky-btn.cky-btn-preferences {
  border-width: 1px;
}
.cky-consent-container.cky-box-bottom-left .cky-btn.cky-btn-reject:hover, .cky-consent-container.cky-box-bottom-left .cky-btn.cky-btn-preferences:hover {
  background-color: #f7f7f7;
}
.cky-consent-container.cky-box-bottom-left .cky-btn:last-child {
  margin-top: 10px;
}

@media screen and (max-width: 991px) {
  .cky-revisit-bottom-left {
    left: auto !important;
    right: 15px !important;
  }
}
@media screen and (max-width: 576px) {
  .page_404 .page_404__title {
    font-size: 120px;
  }
  .page_404 .page_404_subtitle {
    font-size: 32px;
  }
  .page_404 .page_404__text {
    font-size: 16px;
  }
  .cky-consent-container.cky-box-bottom-left .cky-consent-bar {
    width: 100%;
    max-width: 90%;
    padding: 30px;
  }
  .cky-consent-container.cky-box-bottom-left .cky-notice .cky-title {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
  }
  .cky-consent-container.cky-box-bottom-left .cky-notice-des p {
    font-size: 16px;
  }
  .popup .popup__content ifrane {
    padding-bottom: 45px;
  }
}
.ti-widget.ti-goog .ti-controls .ti-next:after,
.ti-widget.ti-goog .ti-controls .ti-prev:after,
.ti-widget.ti-goog .ti-controls .ti-next:before,
.ti-widget.ti-goog .ti-controls .ti-prev:before {
  background-color: var(--blue) !important;
}

.ti-widget.ti-goog .ti-footer-filter-text {
  text-align: center !important;
}/*# sourceMappingURL=main.css.map */