@import "../fonts/stylesheet.css";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --app-height: 100%;
  --white: #ffffff;
  --dark: #212121;
  --text: #364e59;
  --dark_blue_text: #173f4f;
  --light_text: #787f87;
  --dark: #1b4367;
  --blue: #3e9ec6;
  --green: #349552;
  --light_green: #c8e6d2;
  --light: #f0f4f6;
  --blue_hover: #0652aa;
  --blue_focused: #0652aa;
  --blue_active: #032784;
  --blue_light: #ebf2f5;
  --orange_hover: #e37114;
  --orange_focused: #e37114;
  --orange_active: #da4809;
  --stroke: #c0deea;
  --shadow: 0 4px 20px rgba(50, 71, 153, 0.1);
  --linear: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

input[type=radio],
input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #bdbcdb;
}
input[type=radio]:hover,
input[type=checkbox]:hover {
  border-color: var(--light_green);
}
input[type=radio]:focus,
input[type=checkbox]:focus {
  border-color: var(--green);
}
input[type=radio]:checked,
input[type=checkbox]:checked {
  background: var(--green) url(../img/icon_check.svg) no-repeat center;
}
input[type=radio]:checked:hover,
input[type=checkbox]:checked:hover {
  background-color: #0652aa;
}
input[type=radio]:checked:focus,
input[type=checkbox]:checked:focus {
  -webkit-box-shadow: 0 0 0 2px #f845fc;
          box-shadow: 0 0 0 2px #f845fc;
}

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

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

.c_text {
  color: var(--text);
}

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

.c_light_text {
  color: var(--light_text);
}

.c_green {
  color: var(--green);
}

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

.brd_4 {
  border-radius: 4px;
}

.brd_8 {
  border-radius: 8px;
}

.brd_10 {
  border-radius: 10px;
}

.brd_12 {
  border-radius: 12px;
}

.brd_20 {
  border-radius: 20px;
}

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

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

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

.bg_text {
  background-color: var(--text);
}

.bg_dark_blue_text {
  background-color: var(--dark_blue_text);
}

.bg_light_text {
  background-color: var(--light_text);
}

.bg_green {
  background-color: var(--green);
}

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

.bg_light_green {
  background-color: var(--light_green);
}

.bg_light {
  background-color: var(--light);
}

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

.count-particles {
  position: absolute;
  opacity: 0;
  z-index: -5;
}

.particles-js,
.block__bg {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.particles-js-canvas-el {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-container {
  overflow: hidden;
}

.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;
}

.xyz_start {
  opacity: 0;
}

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

body {
  font-family: "Nunito Sans", sans-serif;
  color: var(--dark);
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: var(--light);
}

.text_opacity {
  opacity: 0.7;
}

section {
  position: relative;
}

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

.swiper-slide,
.swiper-slide:active,
.swiper-slide:hover {
  outline: none;
}

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

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

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;
  line-height: 1.35em;
}

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: "Nunito Sans", sans-serif;
}

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

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

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

.container {
  position: relative;
}

p.btn,
span.btn,
a.btn,
button.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Nunito Sans", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.28em;
  cursor: pointer;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  height: 56px;
  padding: 0 28px;
  background-color: var(--green);
  color: var(--white);
  border-radius: 50px;
}
p.btn.btn_send.disabled_btn,
span.btn.btn_send.disabled_btn,
a.btn.btn_send.disabled_btn,
button.btn.btn_send.disabled_btn {
  background-color: #969796;
}

.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;
}
.header.scroll__down {
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
}
.header.scroll__up {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.header .header__top {
  background-color: var(--light);
}
.header .header__top .head__btn {
  width: 48px;
  height: 48px;
  margin-right: 12px;
  border-radius: 50%;
  cursor: pointer;
}
.header .header__top .head__btn:hover img {
  opacity: 0.8;
}
.header .header__top .head__btn img {
  width: 20px;
  height: auto;
  pointer-events: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .header__top .header__phone:hover {
  color: var(--green);
}
.header .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 8px;
}
.header .social a img {
  max-width: 100%;
  max-height: 100%;
}
.header .header__sidebar {
  position: fixed;
  z-index: 9999;
  height: 100dvh !important;
  padding: 34px 5px;
  width: 60px;
  top: 0;
  left: 0;
}
.header .header__sidebar .menu__burger {
  width: 40px;
  height: auto;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  background-color: transparent;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  padding-top: 0;
  line-height: 1em;
}
.header .header__sidebar .menu__burger .line {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--white);
  margin-bottom: 8px;
  pointer-events: none;
  border-radius: 3px;
  font-family: "Nunito Sans", sans-serif;
}
.header .header__sidebar .social {
  display: block;
}
.header .header__sidebar .social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  margin: 8px auto;
  border-radius: 50%;
}
.header .header__sidebar .social a img {
  max-width: 100%;
  max-height: 100%;
}
.header .arrow__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
}
.header .arrow__top:hover path {
  fill: var(--light_green);
}
.header .arrow__top * {
  pointer-events: none;
}

.lang_select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--white);
}
.lang_select .lang__block {
  position: absolute;
  width: 44px;
  top: 50%;
  z-index: -2;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  left: 0;
  background-color: var(--white);
  border-radius: 50px;
  overflow: hidden;
}
.lang_select .lang__block .current-lang {
  display: none;
}
.lang_select .lang__block a {
  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;
  padding-top: 2px;
  width: 44px;
  height: 44px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 50px;
  color: var(--dark_blue_text);
}
.lang_select .lang__block a:hover {
  color: var(--green);
}
.lang_select .lang__block.open {
  z-index: 5;
  opacity: 1;
  pointer-events: all;
  top: calc(100% + 1px);
}
.lang_select .current__lang {
  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(--dark_blue_text);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding-top: 2px;
}

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

.head__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.head__menu > .menu-item {
  position: relative;
  padding: 0 14px;
}
.head__menu > .menu-item a {
  font-size: 16px;
  line-height: 1.4em;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  color: var(--dark_blue_text);
  position: relative;
  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;
}
.head__menu > .menu-item a:hover {
  color: var(--green);
}
.head__menu > .menu-item.menu-item-has-children > a {
  padding-right: 24px;
}
.head__menu > .menu-item.menu-item-has-children > a::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  top: calc(50% - 12px);
  background: url(../img/icon_catalog_dark.svg) no-repeat center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.head__menu > .menu-item.menu-item-has-children:hover > a::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.head__menu > .menu-item.menu-item-has-children .sub-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  opacity: 0;
  -webkit-transform: translate(-50%, -10px);
          transform: translate(-50%, -10px);
  pointer-events: none;
  width: 250px;
  padding: 10px 24px;
  background-color: var(--white);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.head__menu > .menu-item.menu-item-has-children .sub-menu li {
  padding: 5px 0;
}
.head__menu > .menu-item.menu-item-has-children .sub-menu li a {
  color: var(--dark);
  font-size: 14px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
}
.head__menu > .menu-item.menu-item-has-children .sub-menu li a:hover {
  color: var(--green);
}
.head__menu > .menu-item.menu-item-has-children .sub-menu li.current-menu-item a {
  color: var(--green);
}
.head__menu > .menu-item.current-menu-ancestor > a, .head__menu > .menu-item.current-menu-item > a {
  color: var(--orange);
}

.nav__menu {
  width: 100%;
}
.nav__menu .nav__item {
  position: relative;
  width: 16.6666666667%;
  border: 1px solid #67a5c6;
  border-bottom: none;
  border-top: none;
}
.nav__menu .nav__item a {
  font-size: 16px;
  line-height: 1.4em;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  color: var(--white);
  position: relative;
  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;
  padding: 11px 0;
}
.nav__menu .nav__item a:hover {
  color: var(--blue_light);
}
.nav__menu .nav__item a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.nav__menu .nav__item.menu-item-has-children > a {
  padding-left: 24px;
}
.nav__menu .nav__item.menu-item-has-children > a::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: calc(50% - 12px);
  background: url(../img/icon_catalog.svg) no-repeat center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.nav__menu .nav__item.menu-item-has-children:hover > a::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.nav__menu .nav__item.menu-item-has-children .sub-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  opacity: 0;
  -webkit-transform: translate(-50%, -10px);
          transform: translate(-50%, -10px);
  pointer-events: none;
  width: 250px;
  padding: 10px 24px;
  background-color: var(--light_grey);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.nav__menu .nav__item.menu-item-has-children .sub-menu li {
  padding: 5px 0;
}
.nav__menu .nav__item.menu-item-has-children .sub-menu li a {
  color: var(--dark);
  font-size: 14px;
}
.nav__menu .nav__item.menu-item-has-children .sub-menu li a:hover {
  color: var(--green);
}
.nav__menu .nav__item.menu-item-has-children .sub-menu li.current-menu-item a {
  color: var(--green);
}
.nav__menu .nav__item.current-menu-ancestor > a, .nav__menu .nav__item.current-menu-item > a {
  color: var(--orange);
}

.menu__burger {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  background-color: var(--light_green);
  font-size: 9px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  padding-top: 11px;
  line-height: 1em;
  color: var(--green);
}
.menu__burger .line {
  display: block;
  height: 2px;
  width: 30px;
  background-color: var(--green);
  margin-bottom: 8px;
  pointer-events: none;
  font-family: "Nunito Sans", sans-serif;
}

@media screen and (min-width: 1199px) {
  .head__menu .menu-item.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    -webkit-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px);
    pointer-events: all;
  }
}
.open__form * {
  pointer-events: none;
}

.menu {
  position: fixed !important;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  z-index: 999999;
  left: -490px;
  top: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  overflow-y: auto;
  overflow-x: hidden;
  margin: 0;
  background-color: var(--white);
  padding: 28px 28px 35px;
}
.menu.open_menu {
  left: 0;
  top: 0px;
  opacity: 1;
  pointer-events: all;
}
.menu .menu__top {
  margin-bottom: 28px;
}
.menu .menu__close {
  width: 48px;
  height: 48px;
  background: var(--light) url(../img/close_menu.svg) no-repeat center;
  outline: none;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-radius: 50px;
  margin-left: auto;
}
.menu .menu__btn {
  max-width: 284px;
  margin-bottom: 24px;
  height: 48px;
  font-size: 18px;
}
.menu .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu .social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 8px;
}
.menu .social a img {
  max-width: 100%;
  max-height: 100%;
}
.menu .lang_select .current__lang {
  background-color: var(--light);
}
.menu .lang_select .lang__block {
  background-color: var(--light);
}
.menu .lang_select .lang__block a {
  background-color: var(--light);
}

.menu__list {
  margin-bottom: 40px;
}
.menu__list li.current-menu-item a {
  color: var(--green);
}
.menu__list > .menu__item {
  width: 100%;
  margin-right: 0;
  border-bottom: 2px solid rgba(52, 149, 83, 0.2);
}
.menu__list > .menu__item:first-child {
  border-top: 2px solid rgba(52, 149, 83, 0.2);
}

.menu__list .menu__item a {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.28em;
  padding: 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--dark_blue_text);
}
.menu__list .menu__item a:hover {
  color: var(--green);
}

.menu__list .menu__item.menu-item-has-children > a .open_child_menu {
  pointer-events: none;
}
.menu__list .menu__item.menu-item-has-children > a.open {
  color: var(--green);
}
.menu__list .menu__item.menu-item-has-children > a.open .open_child_menu {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.open_child_menu {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: var(--light_green) url(../img/icon_catalog_green.svg) no-repeat center;
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
}

.menu__list > .menu__item.menu-item-has-children > .sub-menu {
  position: static;
  left: auto;
  top: auto;
  height: 0;
  padding: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  pointer-events: all;
  -webkit-transform: none;
          transform: none;
  width: 100%;
  border-radius: 0;
  border-top: 2px solid rgba(52, 149, 83, 0.2);
}
.menu__list > .menu__item.menu-item-has-children > .sub-menu li {
  margin-bottom: 8px;
  text-align: left;
}
.menu__list > .menu__item.menu-item-has-children > .sub-menu li:first-child {
  margin-top: 12px;
}
.menu__list > .menu__item.menu-item-has-children > .sub-menu li:last-child {
  margin-bottom: 12px;
}
.menu__list > .menu__item.menu-item-has-children > .sub-menu li a {
  padding: 3px 40px 3px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark_blue_text);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu__list > .menu__item.menu-item-has-children > .sub-menu li a:before {
  content: "";
  display: block;
  width: 16px;
  height: 22px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: url(../img/arrow_left_green.svg) no-repeat center;
  margin-right: 8px;
}
.menu__list > .menu__item.menu-item-has-children > .sub-menu li a .open_child_menu {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.menu__list > .menu__item.menu-item-has-children > .sub-menu .menu-item-has-children .sub-menu {
  padding: 20px 24px;
  background-color: var(--white);
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.menu__list > .menu__item.menu-item-has-children > .sub-menu .menu-item-has-children .sub-menu.active {
  left: 0;
}
.menu__list > .menu__item.menu-item-has-children > .sub-menu .menu-item-has-children .sub-menu li:first-child {
  margin-bottom: 40px;
}
.menu__list > .menu__item.menu-item-has-children > .sub-menu .menu-item-has-children .sub-menu li:first-child a {
  height: 60px;
  -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;
  background-color: var(--stroke);
}
.menu__list > .menu__item.menu-item-has-children > .sub-menu .menu-item-has-children .sub-menu li:first-child a:before {
  content: url(../img/menu_arrow_dark.svg);
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 6px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.gerb__text .icon__gerb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.section__title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.12em;
}

h1,
.title_1 {
  font-size: 54px;
  font-weight: 400;
  line-height: 1.08em;
}

h2,
.title_2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2em;
}

h3,
.title_3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2em;
}

h4,
.title_4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3em;
}

.text__content h2,
.text__content h3,
.text__content h4 {
  margin-bottom: 1.1em;
}
.text__content p,
.text__content li {
  font-size: 18px;
  line-height: 1.4em;
  margin-bottom: 1.2em;
  font-weight: 400;
}
.text__content p b,
.text__content p strong,
.text__content li b,
.text__content li strong {
  font-weight: 500;
}
.text__content li {
  position: relative;
  padding-left: 28px;
}
.text__content li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--dark);
  position: absolute;
  left: 11px;
  top: 0.5em;
  border-radius: 50%;
}

.form__wrap .input__label span {
  color: #d20000;
}
.form__wrap .input__group {
  margin-bottom: 24px;
}
.form__wrap .input__group .order__input {
  display: block;
  width: 100%;
  height: 56px;
  padding-left: 28px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: var(--dark_blue_text);
  border: 1px solid transparent;
  background-color: var(--light);
  border-radius: 50px;
}
.form__wrap .input__group .order__input.wpcf7-not-valid {
  background-color: #ffeaea;
  color: #9f0000;
}
.form__wrap .input__group .order__input::-webkit-input-placeholder {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: var(--light_text);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-moz-placeholder {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: var(--light_text);
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input:-ms-input-placeholder {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: var(--light_text);
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-ms-input-placeholder {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: var(--light_text);
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::placeholder {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: var(--light_text);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input:hover {
  border: 1px solid var(--blue);
}
.form__wrap .input__group .order__input:focus {
  border: 1px solid var(--blue);
}
.form__wrap .input__group .order__input.order__input_message {
  height: 200px;
  padding-top: 18px;
  border-radius: 20px;
}
.form__wrap .theme__item span {
  display: block;
  margin: 0 !important;
}
.form__wrap .acceptance span {
  display: block;
  margin: 0 !important;
}
.form__wrap input[type=radio],
.form__wrap input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--stroke);
  border-radius: 4px;
  margin-right: 8px;
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: transparent;
}
.form__wrap input[type=radio]:hover,
.form__wrap input[type=checkbox]:hover {
  border-color: #605dec;
}
.form__wrap input[type=radio]:checked,
.form__wrap input[type=checkbox]:checked {
  border-color: var(--blue);
  background: var(--blue) url(../img/input_check.svg) no-repeat center;
}
.form__wrap input[type=radio]:checked:hover,
.form__wrap input[type=checkbox]:checked:hover {
  border-color: #605dec;
  background: var(--blue) url(../img/input_check.svg) no-repeat center;
}
.form__wrap .wpcf7-not-valid-tip {
  font-size: 13px;
  color: #9f0000;
  position: absolute;
  top: 95%;
  left: 0;
}
.form__wrap .body_title_3 a {
  text-decoration: underline;
}
.form__wrap .body_title_3 a:hover {
  color: var(--blue_hover);
}

.breadcrumbs {
  padding: 0;
  position: relative;
  z-index: 5;
}
.breadcrumbs a {
  font-weight: 500;
  font-size: 12px;
  color: var(--dark);
  position: relative;
}
.breadcrumbs .breadcrumb_last {
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: rgba(27, 68, 103, 0.6);
}

.pagination {
  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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: transparent;
  color: var(--dark);
  font-size: 16px;
  font-weight: 600;
  margin: 0 4px;
}
.pagination .page-numbers.current, .pagination .page-numbers:hover {
  background-color: var(--stroke);
  color: var(--dark);
}
.pagination .page-numbers.prev {
  width: 40px;
  height: 40px;
  background-color: var(--blue_light);
  margin: 0;
  margin-right: 24px;
}
.pagination .page-numbers.next {
  width: 40px;
  height: 40px;
  background-color: var(--blue_light);
  margin-left: 24px;
}
.pagination span.page-numbers {
  pointer-events: none;
}

.true_loadmore * {
  pointer-events: none;
}

@media screen and (max-width: 1480px) {
  h1,
  .title_1 {
    font-size: 44px;
  }
  .section__title,
  h2,
  .title_2 {
    font-size: 36px;
  }
  .header .header__sidebar {
    width: 45px;
    padding-left: 0;
    padding-right: 0;
  }
  .custom-logo-link {
    width: 200px;
  }
  .head__menu > .menu-item {
    padding: 0 10px;
  }
  .head__menu > .menu-item.menu-item-has-children > a {
    padding-right: 20px;
  }
}
@media screen and (max-width: 1199px) {
  h1,
  .title_1 {
    font-size: 36px;
  }
  .custom-logo-link {
    width: 200px;
  }
  .header .city__block {
    padding-left: 0;
  }
  .header .header__top .head__btn {
    width: 44px;
    height: 44px;
  }
  .menu__burger {
    margin-left: 12px;
    width: 44px;
    height: 44px;
    font-size: 8px;
    padding-top: 11px;
  }
  .section__title.mb_40 {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 991px) {
  h1,
  .title_1 {
    font-size: 34px;
  }
  .section__title,
  h2,
  .title_2 {
    font-size: 30px;
  }
  h3,
  .title_3 {
    font-size: 24px;
  }
  h4,
  .title_4 {
    font-size: 20px;
  }
  .text__content p,
  .text__content li {
    font-size: 16px;
  }
  .custom-logo-link {
    width: 190px;
  }
  .menu__burger .line {
    width: 26px;
    margin-bottom: 6px;
  }
  .lang_select {
    width: 44px;
    height: 44px;
  }
  .lang_select .lang__block {
    width: 44px;
  }
  .lang_select .lang__block a {
    padding: 11px 11px;
  }
  .lang_select .current__lang:after {
    margin-left: 4px;
  }
  .lang_select .current__lang {
    font-size: 14px;
  }
  .header {
    -webkit-box-shadow: var(--shadow);
            box-shadow: var(--shadow);
  }
  .header .city__block .city__btn {
    height: 44px;
  }
  .header .city__block .city__btn .icon_place {
    width: 24px;
    height: 24px;
    background-size: contain;
  }
  .menu .menu__close {
    font-size: 7px;
    width: 44px;
    height: 44px;
    background-position: center;
    background-size: 20px;
  }
  .menu {
    padding: 16px;
  }
  .header .header__top {
    padding-top: 11px;
    padding-bottom: 11px;
  }
  .menu__list .menu__item a {
    font-size: 20px;
  }
  .menu__list > .menu__item.menu-item-has-children > .sub-menu li a {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  p.btn,
  span.btn,
  a.btn,
  button.btn {
    font-size: 16px;
    height: 48px;
  }
  .form__wrap .input__group .order__input {
    height: 48px;
    font-size: 14px;
  }
  .form__wrap .input__group .order__input::-webkit-input-placeholder {
    font-size: 14px;
  }
  .form__wrap .input__group .order__input::-moz-placeholder {
    font-size: 14px;
  }
  .form__wrap .input__group .order__input:-ms-input-placeholder {
    font-size: 14px;
  }
  .form__wrap .input__group .order__input::-ms-input-placeholder {
    font-size: 14px;
  }
  .form__wrap .input__group .order__input::placeholder {
    font-size: 14px;
  }
}
@media screen and (max-width: 375px) {
  .custom-logo-link {
    width: 150px;
  }
  .header .header__top .head__btn {
    width: 36px;
    height: 36px;
  }
  .header .header__top .menu__burger {
    margin-left: 0;
    width: 44px;
    height: 44px;
    font-size: 8px;
    padding-top: 10px;
  }
}
.head__section {
  padding-top: 100px;
}
.head__section .head__wrap {
  background-image: -webkit-gradient(linear, left top, right top, from(#cfe6e9), to(#a1c9d6));
  background-image: linear-gradient(90deg, #cfe6e9, #a1c9d6);
  padding: 0 40px;
  overflow: hidden;
}
.head__section .head__col_offer {
  padding-top: 58px;
  padding-bottom: 58px;
}
.head__section .head__col_offer .offer {
  padding: 48px 40px;
  background-color: var(--white);
}
.head__section .head__col_offer .offer .form__wrap .fz_12 {
  padding-left: 12px;
  color: var(--dark_blue_text);
}
.head__section .head__col_offer .offer .form__wrap .fz_12 a {
  color: var(--dark_blue_text);
  font-weight: 600;
  text-decoration: underline;
}
.head__section .head__col_offer .offer .form__wrap .fz_12 a:hover {
  color: var(--green);
}
.head__section .head__img {
  position: absolute;
  right: -40px;
  bottom: 0;
  width: calc(100% + 40px);
}
.head__section .head__advant {
  padding-bottom: 40px;
  padding-left: 20px;
  position: relative;
  z-index: 2;
}
.head__section .head__advant .head__item {
  padding: 12px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.head__section .head__advant .head__item:first-child {
  background-color: var(--light);
  margin-bottom: -16px;
}
.head__section .head__advant .head__item:first-child .fz_48 {
  color: var(--blue);
}
.head__section .head__advant .head__item:first-child .fz_14 {
  color: var(--dark_blue_text);
}
.head__section .head__advant .head__item:last-child {
  background-color: var(--blue);
  margin-left: auto;
}
.head__section .head__advant .head__item:last-child .fz_48 {
  color: var(--white);
}
.head__section .head__advant .head__item:last-child .fz_14 {
  color: var(--white);
}

.offer__head {
  border-radius: 20px;
}
.offer__head .offer__wrap {
  min-height: 540px;
  overflow: hidden;
}

.offer__wrap.new_section{
    color: var(--white);
    min-height: 531px;
    position: relative;
    /*overflow: hidden;*/
}
.offer__wrap.new_section::after{
    content: "";
    position: absolute;
    top: 50%;
    right: -220px;
    transform: translateY(-50%);
    width: 440px;
    height: 440px;
    background: url('/wp-content/uploads/2025/12/logo_from_new_banner.svg') no-repeat center/contain;
}
.offer__wrap.new_section .form__wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}
.offer__wrap.new_section .wpcf7-response-output{
    color: #9f0000;
}
.offer__wrap.new_section .form__wrap .btn {
    background-color: var(--white);
    color: var(--green);
    width: 292px;
    margin-right: 16px;
}

.offer__wrap.new_section .form__wrap .btn:hover {
    background-color: var(--light_green);
    color: var(--green);
}
.offer__wrap.new_section .iti--allow-dropdown .iti__flag-container:hover  .iti__selected-flag {
    background-color: unset;
}
.offer__wrap.new_section .form__wrap .fz_12 a{
    text-decoration: underline;
    font-weight: 600;
}
.offer__wrap.new_section .form__wrap .input__group {
    flex: 1 1 auto;
    margin-bottom: 0 !important;
    width: 292px;
}
.offer__wrap.new_section .form__wrap .input__group .order__input{
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color:  var(--white);
}

.offer__wrap.new_section .offer__content{
    padding: 60px 0 72px 40px;
    max-width: 640px;
    position: relative;
    z-index: 1;
}

.offer__wrap.new_section .offer__content .iti__country-name{
    color: var(--dark);
}

.offer__wrap.new_section .form__wrap .input__group .order__input::-webkit-input-placeholder {
    color: var(--white);
}
.offer__wrap.new_section .form__wrap .input__group .order__input::-moz-placeholder {
    color: var(--white);
}
.offer__wrap.new_section .form__wrap .input__group .order__input:-ms-input-placeholder {
    color: var(--white);
}
.offer__wrap.new_section .form__wrap .input__group .order__input::-ms-input-placeholder {
    color: var(--white);
}
.offer__wrap.new_section .form__wrap .input__group .order__input::placeholder {
    color: var(--white);
}

.offer__wrap.new_section  .form__wrap .iti--show-selected-dial-code.iti--show-flags .iti__selected-dial-code{
    color: var(--white);
}

.offer__wrap.new_section .form__wrap .iti__selected-flag {
    padding-left: 20px !important;
}

.offer__wrap.new_section .form__wrap .iti__arrow {
    background: url(../img/iti_arrow_wh.svg) no-repeat center;
}

.offer__wrap.new_section .form__wrap .form__wrap .btn {
    background-color: var(--white);
    color: var(--green);
}
.offer__wrap.new_section  .form__wrap .fz_12 {
    line-height: 1.4em;
    color: var(--white);
    opacity: 0.8;
}
.offer__head .offer__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.offer__head .offer__content {
  padding: 40px;
}
.offer__head .offer__redactor a:hover {
  color: var(--green);
}
.offer__head .offer__image {
  height: 100%;
}
.offer__head .btn {
  max-width: 290px;
}
.offer__head .section__label_video {
  left: 20px;
  top: 20px;
  position: absolute;
  z-index: 1;
}
.offer__head .offer__video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.offer__head .offer__video .play_btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.section__label {
  height: 32px;
  border-radius: 50px;
  padding: 0 12px;
  top: 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 50px;
  height: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section__label img,
.section__label svg {
  margin-right: 8px;
}

@media screen and (max-width: 1480px) {
  .container {
    max-width: 100%;
    padding: 0 62px;
  }
  .offer__head .offer__content .head__section .head__wrap {
    padding: 0 25px;
  }
  .head__section .head__col_offer .offer {
    padding: 30px 25px;
  }
}
@media screen and (max-width: 1199px) {
    .offer__wrap.new_section .form__wrap .input__group{
        flex: none;
        width: 100%;
    }
    .offer__wrap.new_section .offer__content {
        padding: 60px 40px;
    }
  .container {
    max-width: 960px;
    padding: 0 12px;
  }
  .head__section .head__img {
    right: -135px;
    width: 591px;
  }
  .head__section .head__col_offer .offer .form__wrap .form__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .head__section .head__col_offer .offer .form__wrap .form__bottom .btn {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 991px) {
    /*body, html{*/
    /*    overflow-x: hidden;*/
    /*}*/
    .offer__wrap.new_section .offer__content{
        max-width: unset;
    }
  .container {
    max-width: 720px;
  }
  .head__section .form__wrap {
    width: 100%;
  }
  .head__section .head__img {
    height: 100%;
    width: auto;
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
  .head__section .head__col_offer {
    padding: 12px 0 0;
  }
  .head__section .head__wrap {
    padding: 0 12px;
  }
  .head__section .head__wrap .head__col {
    width: 100%;
  }
  .head__section .head__wrap .head__col.head__col_img {
    height: 335px;
  }
  .head__section .head__advant {
    padding-bottom: 12px;
  }
  .head__section .head__advant .head__item:first-child {
    margin-bottom: -56px;
  }
  .offer__head {
    border-radius: 16px;
  }
  .offer__head .offer__wrap {
    min-height: initial;
  }
  .offer__head .offer__content {
    padding: 36px 16px 40px;
  }
  .offer__head .offer__image {
    height: 480px;
  }
}
@media screen and (max-width: 767px) {
    .offer__wrap.new_section .form__wrap{
        gap: 12px;
    }
    .offer__wrap.new_section .offer__content {
        padding: 36px 16px;
    }
    .offer__wrap.new_section .form__wrap .btn{
        margin-right: 0;
        width: 100%;
    }
    .offer__wrap.new_section .form__bottom{
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .offer__wrap.new_section::after{
        top: 36px;
        right: -128px;
        transform: none;
        width: 255px;
        height: 255px;
    }
  .container {
    max-width: 540px;
  }
  .head__section .head__advant {
    padding-left: 0;
  }
  .head__section .head__advant .head__item {
    max-width: 107px;
  }
  .head__section .head__advant .head__item .fz_48 {
    font-size: 28px;
  }
  .head__section .head__advant .head__item .fz_14 {
    font-size: 12px;
  }
  .section__label {
    height: 30px;
    font-size: 14px;
  }
  .offer__head .offer__image {
    height: 380px;
  }
}
@media screen and (max-width: 576px) {
  .container {
    max-width: 100%;
  }
  .head__section .head__col_offer .offer {
    padding: 32px 16px;
  }
  .head__section .head__col_offer .offer .head__form {
    padding-top: 0;
  }
  .offer__head .offer__image {
    height: 260px;
  }
  .offer__head .section__label_video {
    top: 8px;
    left: 8px;
  }
}
@media screen and (max-width: 400px) {
  .offer__head .offer__image {
    min-height: 260px;
  }
}
.service .service__card {
  background-color: var(--white);
  padding: 12px;
}
.service .service__card:hover .service__permalink {
  color: var(--green);
}
.service .service__card .service__img {
  height: 296px;
  overflow: hidden;
  display: block;
}
.service .service__card .service__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service .service__card .service__icon {
  width: 52px;
  height: 52px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 6px;
}
.service .service__card .service__permalink {
  padding: 0 8px;
  height: 52px;
  width: 100%;
  text-align: left;
}
.service .service__card .service__permalink span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-left: 12px;
}

@media screen and (max-width: 1480px) {
  .service {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .service .service__card .service__img {
    height: 230px;
  }
}
@media screen and (max-width: 1199px) {
  .service .service__card .service__img {
    height: 215px;
  }
  .service .service__card .service__permalink {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .service .service__card .service__permalink span {
    width: 40px;
    height: 40px;
  }
  .service .service__card .service__permalink span img {
    width: 20px;
    height: auto;
  }
  .service .service__card .service__permalink {
    padding-left: 16px;
    padding-right: 16px;
  }
}
[data-tabbtn] {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--green);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  padding: 0 16px;
  cursor: pointer;
  border-radius: 50px;
  margin-right: 12px;
}
[data-tabbtn]:hover {
  background-color: var(--light_green);
  border-color: var(--light_green);
}
[data-tabbtn].active {
  background-color: var(--green);
  border-color: var(--green);
  color: var(--white);
}

[data-tabcontent] {
  position: absolute;
  z-index: -2;
  opacity: 0;
  pointer-events: none;
  width: initial;
  max-width: 100%;
  top: 0;
}
[data-tabcontent].active {
  position: relative;
  z-index: 2;
  opacity: 1;
  pointer-events: all;
}

.foto .foto__swiper {
  height: 476px;
}
.foto .foto__swiper .swiper-slide {
  border-radius: 20px;
  overflow: hidden;
}
.foto .foto__swiper .swiper-slide a {
  height: 100%;
}
.foto .foto__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media screen and (max-width: 1480px) {
  .foto .foto__swiper {
    height: 450px;
  }
}
@media screen and (max-width: 1199px) {
  .foto .foto__swiper {
    height: 400px;
  }
}
@media screen and (max-width: 991px) {
  .foto .foto__swiper {
    height: 350px;
  }
}
@media screen and (max-width: 767px) {
  .foto .foto__swiper {
    height: 300px;
  }
}
@media screen and (max-width: 576px) {
  .foto .foto__swiper {
    height: 220px;
  }
  .foto .foto__swiper .swiper-slide {
    width: 300px;
    border-radius: 16px;
  }
}
.advant.advant_center .advant__card {
  min-height: 250px;
}
.advant .advant__card {
  min-height: 300px;
  padding: 20px;
}
.advant .advant__card .advant__icon {
  border-radius: 50%;
  width: 128px;
  height: 128px;
}
.advant .advant__card .advant__icon img {
  max-width: 100%;
  max-height: 100%;
}
.advant .advant__card .advant__icon.advant_icon_number {
  width: 80px;
  height: 80px;
}
.advant .advant__card .advant__icon.advant_icon_number p {
  font-size: 44px;
}

@media screen and (max-width: 991px) {
  .advant {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .advant .advant__card {
    padding: 16px 16px 28px;
  }
  .advant .advant__card .advant__icon {
    width: 100px;
    height: 100px;
  }
  .advant .advant__card .advant__icon img {
    width: 56px;
    height: auto;
  }
  .advant .advant__card .advant__icon.advant_icon_number {
    width: 68px;
    height: 68px;
  }
  .advant .advant__card .advant__icon.advant_icon_number p {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .advant .advant__card .fz_20 {
    font-size: 18px;
  }
  .advant .advant__card .fz_18 {
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .advant.advant_center .advant__card {
    min-height: initial;
    height: auto;
  }
  .advant .advant__card {
    min-height: initial;
    height: auto;
  }
}
.about .about__more {
  cursor: pointer;
}
.about [data-tabbtn] {
  height: 48px;
}
.about .about__video {
  position: relative;
}
.about .about__video .section__label {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
}
.about .about__video .play_btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.about .about__video .about__img {
  width: 100%;
  height: auto;
}
.about .about__btn {
  position: relative;
  top: -28px;
  margin: 0 auto;
}
.about .about__btn svg {
  margin-left: 12px;
}
.about .about__block {
  min-height: 480px;
  overflow: hidden;
}
.about .about__slider {
  height: 100%;
}
.about .about__slider .swiper__arrows {
  padding: 0 12px;
  top: calc(50% - 24px);
  left: 0;
  pointer-events: none;
}
.about .about__slider .swiper__arrows .swiper__arrow {
  pointer-events: all;
  background-color: var(--white);
}
.about .about__slider .swiper__arrows .swiper__arrow.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.about .about__slider .swiper-slide {
  position: relative;
}
.about .about__slider .swiper-slide .play_btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.about .about__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.about .about__item_content {
  padding: 40px 34px 40px 40px;
}
.about.about_center .about__text {
  background-color: var(--white);
  padding: 32px 24px;
  height: 474px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.about.about_center .about__text:after {
  content: "";
  display: block;
  width: 100%;
  height: 160px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, rgba(255, 255, 255, 0)), color-stop(90%, #fff));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 5%, #fff 90%);
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

@media screen and (max-width: 1480px) {
  .about .about__text {
    padding-top: 20px;
  }
  .about .about__item_content {
    padding: 30px 25px;
  }
}
@media screen and (max-width: 1199px) {
  .about .about__text {
    padding-top: 20px;
  }
  .about .about__item_content {
    padding: 36px 16px;
  }
  .about .about__slider {
    height: 100%;
  }
}
@media screen and (max-width: 991px) {
  .about {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .about.about_center .about__text {
    background-color: var(--white);
    padding: 32px 16px;
  }
  .about .about__text {
    padding-top: 0;
    padding-bottom: 36px;
  }
  .about .about__video .about__btn {
    top: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
    margin: 40px auto 0;
  }
  .about .about__item_content {
    padding: 36px 16px;
  }
  .about .about__block {
    height: auto;
    min-height: initial;
  }
  .about .about__slider {
    height: 350px;
  }
}
@media screen and (max-width: 767px) {
  .about .about__slider {
    height: 300px;
  }
}
@media screen and (max-width: 576px) {
  .about .about__slider {
    height: 232px;
  }
}
.team .team__swiper .swiper-slide {
  height: auto;
}
.team .team__list .team__card {
  width: 100%;
}
.team .team__card {
  padding: 12px 12px 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}
.team .team__card .team__thumbnail img {
  width: 100%;
  height: auto;
}
.team .team__card .team__info {
  padding: 0 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 107px;
}
.team .team__card .team__position {
  color: var(--dark);
  height: 40px;
  overflow: hidden;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
}
.team .team__card .team__permalink {
  margin-top: auto;
}
.team .team__more svg {
  margin-left: 12px;
}

.single_team .team__wrap {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 140px;
}
.single_team .team__offer {
  padding: 36px 40px;
}
.single_team .section__label.section__label_specialist {
  height: 32px;
  border-radius: 50px;
  padding: 0 12px;
  position: absolute;
  top: 20px;
  right: 0;
}
.single_team .section__label.section__label_specialist svg {
  margin-right: 8px;
}
.single_team .single_team__thumbnail img {
  width: 100%;
  height: auto;
}
.single_team .single_team__service {
  border-radius: 20px;
  background-color: var(--white);
  padding: 20px;
}
.single_team .single_team__service_list li {
  margin-bottom: 8px;
}
.single_team .single_team__service_list li :last-child {
  margin-bottom: 0;
}
.single_team .single_team__service_list a {
  font-size: 18px;
  color: var(--dark_blue_text);
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.75em;
}
.single_team .single_team__service_list a:hover {
  color: var(--green);
}
.single_team .single_team__service_list a svg {
  margin-right: 8px;
}
.single_team .single_team__education .text__content {
  opacity: 0.9;
}
.single_team .single_team__block .title_3 {
  margin-bottom: 16px;
}
.single_team .single_team__social {
  height: 56px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  border-radius: 50px;
  padding: 0 20px;
}
.single_team .single_team__social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
}
.single_team .single_team__social a img {
  max-width: 100%;
  max-height: 100%;
}
.single_team .team_sertificate {
  margin-bottom: 24px;
}
.single_team .team_sertificate .swiper-slide {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 440px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 20px;
  position: relative;
  background-color: var(--white);
}
.single_team .team_sertificate .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
}

.sertificate__zoom {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  position: absolute;
  right: 14px;
  bottom: 15px;
}

.permalink {
  font-size: 16px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  height: 32px;
  font-weight: 700;
}
.permalink svg {
  width: 20px;
  height: 20px;
  margin-left: 8px;
}
.permalink path {
  fill: var(--green);
}
.permalink:hover {
  color: var(--green);
}
.permalink:hover svg {
  -webkit-transform: translate(5px);
          transform: translate(5px);
}

.swiper__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}
.swiper__arrows .swiper__arrow {
  cursor: pointer;
  pointer-events: all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--light_green);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.swiper__arrows .swiper__arrow path {
  fill: var(--green);
}
.swiper__arrows .swiper__arrow:hover {
  background-color: var(--green);
}
.swiper__arrows .swiper__arrow:hover path {
  fill: var(--white);
}
.swiper__arrows .swiper__arrow.swiper__arrow_left {
  margin-right: 6px;
}
.swiper__arrows .swiper__arrow.swiper__arrow_right {
  margin-left: 6px;
}
.swiper__arrows .swiper_pag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.swiper__arrows .swiper_pag .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--light_green);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 1;
  margin: 0 4px;
}
.swiper__arrows .swiper_pag .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--green);
}
.swiper__arrows .swiper_pag .swiper-pagination-bullet:hover {
  background-color: var(--green);
}

.card__news {
  padding: 12px;
  background-color: var(--white);
  border-radius: 20px;
  width: 100%;
}
.card__news.card__news_archive .card_news__thumnail {
  height: 295px;
}
.card__news.card__news_archive .card_news__name {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
}
.card__news .card_news__thumnail {
  height: 215px;
  overflow: hidden;
  margin-bottom: 20px;
  display: block;
  border-radius: 12px;
}
.card__news .card_news__thumnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__news .card_news__info {
  height: 150px;
  padding: 8px 8px;
}
.card__news .card_news__name {
  line-height: 1.4em;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
}
.card__news .card_news__name.fz_20 {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
}
.card__news.card__news_clinic .card_news__thumnail {
  height: 197px;
}
.card__news.card__news_clinic .card_news__thumnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__news.card__news_clinic .type__filials {
  opacity: 0.7;
}

@media screen and (max-width: 1480px) {
  .single_team .team__wrap {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 991px) {
  .team {
    padding: 50px 0;
  }
  .single_team .section__label.section__label_specialist {
    position: static;
    margin-bottom: 12px;
  }
  .single_team .single_team__sertificate {
    padding-top: 100px;
  }
  .single_team .team__wrap {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .single_team .team_sertificate .swiper-slide {
    padding: 30px;
  }
}
@media screen and (max-width: 576px) {
  .single_team .team__offer {
    padding: 36px 16px 40px;
  }
  .single_team .team_sertificate .swiper-slide {
    padding: 28px;
  }
}
.callback .callback__wrap {
  padding-left: 76px;
}
.callback .callback__wrap .callback__content {
  max-width: 650px;
}
.callback .callback__wrap .callback__subtitle {
  line-height: 1.2em;
}
.callback .callback__wrap .form__wrap .input__group .order__input {
  background-color: var(--white);
}
.callback .callback__wrap .form__wrap .btn {
  width: 270px;
}
.callback .callback__wrap .form__wrap .iti--show-selected-dial-code .iti__selected-flag {
  background-color: transparent;
  border-radius: 8px 0 0 8px;
  padding-right: 0;
}
.callback .callback__wrap .form__wrap .iti--show-selected-dial-code.iti--show-flags .iti__selected-dial-code {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
}
.callback .callback__wrap .form__wrap .iti__arrow {
  border: 0;
  width: 10px;
  height: 5px;
  background: url(../img/iti_arrow.svg) no-repeat center;
}
.callback .callback__wrap .form__wrap .fz_12 {
  line-height: 1.4em;
  color: var(--light_text);
  padding-left: 12px;
}
.callback .callback__wrap .form__wrap .fz_12 a {
  text-decoration: underline;
  font-weight: 600;
}
.callback .callback__wrap .callback__img {
  position: absolute;
  bottom: 0;
  left: calc(50% + 60px);
  width: 595px;
  height: auto;
}
.callback.callback__footer {
  margin-bottom: 120px;
}
.callback.callback__footer .callback__subtitle {
  opacity: 0.9;
}
.callback.callback__footer .callback__wrap {
  overflow: hidden;
  padding: 0;
}
.callback.callback__footer .callback__wrap .callback__content {
  width: 50%;
  padding: 60px 40px 70px;
  width: 50%;
  max-width: 100%;
}
.callback.callback__footer .callback__wrap .form__wrap .input__group .order__input {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
}
.callback.callback__footer .callback__wrap .form__wrap .input__group .order__input::-webkit-input-placeholder {
  color: var(--white);
}
.callback.callback__footer .callback__wrap .form__wrap .input__group .order__input::-moz-placeholder {
  color: var(--white);
}
.callback.callback__footer .callback__wrap .form__wrap .input__group .order__input:-ms-input-placeholder {
  color: var(--white);
}
.callback.callback__footer .callback__wrap .form__wrap .input__group .order__input::-ms-input-placeholder {
  color: var(--white);
}
.callback.callback__footer .callback__wrap .form__wrap .input__group .order__input::placeholder {
  color: var(--white);
}
.callback.callback__footer .callback__wrap .form__wrap .btn {
  background-color: var(--white);
  color: var(--green);
}
.callback.callback__footer .callback__wrap .form__wrap .fz_12 {
  line-height: 1.4em;
  color: var(--white);
  opacity: 0.8;
}
.callback.callback__footer .callback__wrap .form__wrap .iti--show-selected-dial-code .iti__selected-flag {
  background-color: transparent;
}
.callback.callback__footer .callback__wrap .form__wrap .iti--show-selected-dial-code.iti--show-flags .iti__selected-dial-code {
  color: var(--white);
}
.callback.callback__footer .callback__wrap .form__wrap .iti__arrow {
  background: url(../img/iti_arrow_wh.svg) no-repeat center;
}
.callback.callback__footer .callback__wrap .callback__imges {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.callback.callback__footer .callback__wrap .callback__imges .callback__item {
  padding: 12px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  border-radius: 12px;
  background-color: var(--blue);
}
.callback.callback__footer .callback__wrap .callback__imges .callback__item p {
  color: var(--white);
}
.callback.callback__footer .callback__wrap .callback__imges .callback__item:last-child {
  margin-left: auto;
  margin-top: auto;
  background-color: var(--light);
}
.callback.callback__footer .callback__wrap .callback__imges .callback__item:last-child p {
  color: var(--dark_blue_text);
}
.callback.callback__footer .callback__wrap .callback__imges .callback__item .callback__icon {
  margin-bottom: 8px;
  width: 64px;
  height: 64px;
}
.callback.callback__footer .callback__wrap .callback__imges .callback__item .callback__icon img {
  max-width: 100%;
  height: auto;
}
.callback.callback_main .callback__wrap {
  background-image: -webkit-gradient(linear, left top, right top, from(#cfe6e9), to(#a1c9d6));
  background-image: linear-gradient(90deg, #cfe6e9, #a1c9d6);
  padding: 40px;
  position: relative;
}
.callback.callback_main .callback__wrap .callback__content {
  width: 50%;
  max-width: 640px;
  padding: 48px 40px 60px;
  position: relative;
  z-index: 5;
}
.callback.callback_main .callback__wrap .callback__subtitle {
  line-height: 1.2em;
}
.callback.callback_main .callback__wrap .callback__img {
  position: absolute;
  bottom: 0;
  left: calc(50% + 10px);
  width: 640px;
  max-width: 50%;
  height: auto;
}
.callback.callback_main .callback__wrap .form__wrap .input__group .order__input {
  background-color: var(--light);
  border-radius: 50px;
}
.callback.callback_main .callback__wrap .form__wrap .input__group .order__input::-webkit-input-placeholder {
  color: var(--light_text);
}
.callback.callback_main .callback__wrap .form__wrap .input__group .order__input::-moz-placeholder {
  color: var(--light_text);
}
.callback.callback_main .callback__wrap .form__wrap .input__group .order__input:-ms-input-placeholder {
  color: var(--light_text);
}
.callback.callback_main .callback__wrap .form__wrap .input__group .order__input::-ms-input-placeholder {
  color: var(--light_text);
}
.callback.callback_main .callback__wrap .form__wrap .input__group .order__input::placeholder {
  color: var(--light_text);
}
.callback.callback_main .callback__wrap .form__wrap .fz_12 {
  line-height: 1.4em;
  color: var(--dark_blue_text);
}
.callback.callback_main .callback__wrap .form__wrap .fz_12 a {
  color: var(--dark_blue_text);
  text-decoration: underline;
}
.callback.callback_main .callback__wrap .form__wrap .fz_12 a:hover {
  color: var(--green);
}
.callback.callback_main .callback__wrap .form__wrap .iti--show-selected-dial-code .iti__selected-flag {
  background-color: transparent;
}
.callback.callback_main .callback__wrap .form__wrap .iti--show-selected-dial-code.iti--show-flags .iti__selected-dial-code {
  color: var(--dark_blue_text);
}
.callback.callback_main .callback__wrap .form__wrap .iti__arrow {
  background: url(../img/iti_arrow_wh.svg) no-repeat center;
}

@media screen and (max-width: 1480px) {
  .callback.callback_main .callback__wrap {
    padding: 30px 25px;
  }
  .callback.callback_main .callback__wrap .callback__content {
    padding: 30px 25px;
  }
  .callback.callback__footer .callback__wrap .callback__content {
    padding: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .callback .callback__wrap .callback__content .form__wrap .form__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .callback .callback__wrap .callback__content .form__wrap .form__bottom .btn {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 991px) {
  .callback {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .callback.callback_main .callback__wrap {
    padding: 12px 12px 345px;
    overflow: hidden;
  }
  .callback.callback__footer .callback__wrap .callback__content,
  .callback.callback_main .callback__wrap .callback__content {
    width: 100%;
    max-width: 100%;
    padding: 36px 16px 40px;
    z-index: 1;
    border-radius: 16px;
  }
  .callback.callback_main .callback__wrap .callback__img {
    height: 360px;
    width: auto;
    max-width: initial;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    z-index: 2;
  }
  .callback.callback__footer .callback__wrap .callback__content {
    width: 100%;
  }
  .callback.callback__footer .callback__wrap .callback__imges {
    width: 100%;
    height: 400px;
  }
  .callback.callback__footer {
    margin-bottom: 100px;
  }
  .callback.callback__footer {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .callback.callback__footer .callback__wrap .callback__imges {
    padding: 16px;
  }
  .callback.callback__footer .callback__wrap .callback__imges .callback__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 195px;
  }
}
@media screen and (max-width: 576px) {
  .callback .callback__wrap .callback__content .form__wrap .form__bottom .btn {
    width: 100%;
  }
  .callback.callback__footer .callback__wrap .callback__imges .callback__item .callback__icon {
    width: 48px;
    height: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .callback.callback__footer .callback__wrap .callback__imges .callback__item .callback__icon img {
    width: 100%;
    height: auto;
  }
  .callback.callback__footer .callback__wrap .callback__imges {
    height: 280px;
  }
  .callback.callback__footer .callback__wrap .callback__imges .callback__item .fz_16 {
    max-width: 105px;
  }
}
.sertificate .sertificate__swiper {
  padding: 20px 0;
}
.sertificate .swiper-slide .sertificate__thumbnail {
  width: 100%;
  height: 440px;
  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;
  padding: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.sertificate .swiper-slide .sertificate__thumbnail img {
  max-width: 100%;
  max-height: 100%;
}
.sertificate .sertificate_list_more {
  display: none;
}
.sertificate .sertificate_list_more.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 991px) {
  .sertificate .swiper-slide .sertificate__thumbnail {
    width: 100%;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 576px) {
  .sertificate .sertificate__swiper .swiper-slide {
    max-width: 330px;
    margin: 0 auto;
  }
  .sertificate .sertificate__swiper .swiper-slide .sertificate__thumbnail {
    height: 330px;
  }
}
.review .review__nav {
  position: absolute;
  right: 0;
  top: -72px;
}
.review .review__item {
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  padding: 12px;
}
.review .review__item .review__head {
  padding: 12px;
}
.review .review__item .review__video {
  height: 550px;
}
.review .review__item .review__video:hover span {
  background-color: var(--green);
}
.review .review__item .review__video:hover span path {
  fill: var(--white);
}
.review .review__item .review__video:focus span {
  background-color: var(--green);
}
.review .review__item .review__video:focus span path {
  fill: var(--white);
}
.review .review__item .review__video:active span {
  background-color: var(--green);
}
.review .review__item .review__video:active span path {
  fill: var(--white);
}
.review .review__item .review__content {
  height: 312px;
  padding: 24px 24px 30px 20px;
  overflow: hidden;
  background-color: var(--light);
}
.review .review__item .review__content:after {
  content: "";
  display: block;
  width: 100%;
  height: 54px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(240, 244, 246, 0)), to(#f0f4f6));
  background-image: linear-gradient(180deg, rgba(240, 244, 246, 0) 10%, #f0f4f6 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}
.review button.review__more * {
  pointer-events: none;
}

.play_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: var(--white);
  cursor: pointer;
}
.play_btn svg {
  margin-left: 5px;
}
.play_btn path {
  fill: var(--green);
}
.play_btn:hover {
  background-color: var(--green);
}
.play_btn:hover path {
  fill: var(--white);
}

section .scrollbar-track {
  background-color: var(--light_green);
  width: 12px;
  border-radius: 10px;
  opacity: 1;
}
section .scrollbar-thumb {
  background-color: var(--green);
  width: 12px;
  border-radius: 10px;
}

@media screen and (max-width: 1480px) {
  .review .review__item .review__video {
    height: 430px;
  }
}
@media screen and (max-width: 1199px) {
  .review .review__item .review__video {
    height: 470px;
  }
}
@media screen and (max-width: 991px) {
  .review {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  section .scrollbar-track {
    width: 6px;
  }
  section .scrollbar-thumb {
    width: 6px;
  }
  .review .review__nav {
    position: static;
    padding-top: 20px;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .review .review__item .review__content {
    padding: 16px 24px 16px 16px;
  }
}
@media screen and (max-width: 576px) {
  .review .review__swiper .review__item {
    width: 300px;
  }
  .review .review__item .review__head {
    padding: 8px 4px;
  }
  .review .review__item .review__head .review__name {
    font-size: 18px;
  }
}
.faq .faq__item {
  padding: 0 20px;
  margin-bottom: 20px;
}
.faq .faq__item:last-child {
  margin-bottom: 0;
}
.faq .faq__item .faq__qwestion {
  padding: 20px 45px 20px 0;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.faq .faq__item .faq__qwestion .faq__icon {
  position: absolute;
  right: 0;
  top: 13px;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light) url(../img/icon_catalog_green.svg) no-repeat center;
  pointer-events: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.faq .faq__item .faq__answer .text__content {
  padding: 0 0 20px 0;
  width: 100%;
  max-width: 840px;
}
.faq .faq__item.open .faq__qwestion .faq__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-color: var(--light_green);
}

@media screen and (max-width: 1480px) {
  .faq {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 991px) {
  .faq {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 576px) {
  .faq .faq__item {
    padding: 0 16px;
  }
  .faq .faq__item .faq__qwestion {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 18px;
  }
  .faq .faq__item .faq__answer .text__content {
    padding: 16px 0;
  }
  .faq .faq__item .faq__answer .text__content p {
    font-size: 16px;
  }
}
.news__cat_list {
  position: absolute;
  left: 20px;
  top: 20px;
}
.news__cat_list .news__label {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 12px;
}

.news .news__main {
  height: 460px;
  padding: 12px;
}
.news .news__main .news__content {
  padding: 20px;
  background-color: rgba(252, 252, 252, 0.8);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.news .news__swiper {
  overflow: visible;
  width: 100%;
  margin-bottom: 44px;
}
.news .news__swiper .swiper-slide .card__news.card__news_archive .card_news__thumnail {
  height: 215px;
}
.news .news__swiper .swiper-slide .news__content {
  padding: 12px;
}
.news .news__swiper .swiper-slide .news__content .news__permalink {
  color: var(--blue);
}

.tag__list {
  overflow-x: auto;
}
.tag__list .scroll-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tag__list .scrollbar-track {
  display: none !important;
}
.tag__list .news__cat.btn_tr {
  margin-right: 12px;
  height: 48px;
  padding: 0 20px;
  border-radius: 50px;
  background-color: var(--white);
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
}
.tag__list .news__cat.btn_tr.current-item, .tag__list .news__cat.btn_tr.active {
  background-color: var(--green);
  color: var(--white);
}
.tag__list .news__cat.btn_tr.current-item:hover, .tag__list .news__cat.btn_tr.active:hover {
  background-color: var(--light_green);
  color: var(--green);
}
.tag__list .news__cat.btn_tr:hover {
  background-color: var(--light_green);
  color: var(--green);
}
.tag__list li {
  margin-right: 12px;
}
.tag__list li.current-menu-item a {
  background-color: var(--green);
  color: var(--white);
}
.tag__list li a {
  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;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.28em;
  cursor: pointer;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  background-color: var(--white);
  color: var(--green);
}
.tag__list li a:hover {
  color: var(--green);
  background-color: var(--light_green);
}

.single_blog .single_blog__date {
  opacity: 0.6;
}
.single_blog .contents__block.contents__block_list {
  height: 0;
  overflow: hidden;
}
.single_blog .single_blog__thumnail {
  overflow: hidden;
  height: 600px;
}
.single_blog .single_blog__thumnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single_blog .single_blog__img {
  overflow: hidden;
  height: auto;
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}
.single_blog .single_blog__img img {
  width: 100%;
  height: auto;
}
.single_blog .single_blog__img.video {
  height: auto;
}
.single_blog .single_blog__img.video .video__block img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.single_blog .single_blog__comment {
  padding: 12px;
  margin-bottom: 60px;
}
.single_blog .single_blog__comment .single_blog__comment_img {
  width: 184px;
  height: 184px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 8px;
  margin-right: 24px;
  overflow: hidden;
}
.single_blog .single_blog__comment .single_blog__comment_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single_blog .single_blog__comment .comment__head {
  padding: 12px 0;
  border-bottom: 1px solid rgba(192, 222, 234, 0.9);
  margin-bottom: 12px;
}
.single_blog .single_blog__comment .comment__title svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 12px;
}
.single_blog .single_blog__comment .comment__name {
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(52, 149, 83, 0.2);
  margin-bottom: 12px;
}
.single_blog .single_blog__comment.single_blog__author {
  padding: 12px;
}
.single_blog .single_blog__comment.single_blog__author .comment__info {
  padding: 8px;
}
.single_blog .single_blog__comment.single_blog__author .single_blog__comment_img {
  width: 160px;
  height: 160px;
  margin-right: 24px;
}
.single_blog .single_blog__comment.single_blog__author .comment__title {
  margin-bottom: 4px;
  margin-bottom: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(52, 149, 83, 0.2);
}
.single_blog .single_blog__comment.single_blog__author .comment__name {
  border-bottom: none;
  margin-bottom: 4px;
  padding: 0;
}
.single_blog .alert__content .alert__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 60px;
  background-color: #f26647;
  border-radius: 50px;
}
.single_blog .alert__content .text__content {
  padding: 20px;
}
.single_blog .single_blog__interesting {
  margin-bottom: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px;
}
.single_blog .single_blog__interesting .interesting__thumbhail {
  display: block;
  width: 255px;
  height: 170px;
  border-radius: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 12px;
  overflow: hidden;
}
.single_blog .single_blog__interesting .interesting__thumbhail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single_blog .single_blog__interesting .interesting__info {
  width: 100%;
  padding: 8px;
}
.single_blog .single_blog__interesting .title_4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 2px solid rgba(52, 149, 83, 0.2);
  margin-right: 12px;
  padding: 12px 0;
  margin-bottom: 12px;
}
.single_blog .single_blog__interesting .interesting__permalink a {
  color: var(--blue);
  font-size: 18px;
  font-weight: 600;
}
.single_blog .single_blog_content.table_content_price table {
  border-collapse: separate !important;
  border-spacing: 8px;
  margin-bottom: 25px;
}
.single_blog .single_blog_content.table_content_price table tr td:first-child {
  width: calc(100% - 240px) !important;
}
.single_blog .single_blog_content.table_content_price table tr td:last-child {
  font-size: 20px;
  color: var(--blue);
  font-weight: 700;
  width: 240px !important;
  text-align: center;
}
.single_blog .single_blog_content .table__item,
.single_blog .single_blog_content.table_content_price .table__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.single_blog .single_blog_content .table__item:last-child .table__col,
.single_blog .single_blog_content.table_content_price .table__item:last-child .table__col {
  margin-bottom: 0;
}
.single_blog .single_blog_content .table__item .table__col,
.single_blog .single_blog_content.table_content_price .table__item .table__col {
  width: calc(50% - 4px);
  background-color: var(--white);
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4em;
  border-radius: 12px;
  margin-bottom: 8px;
}
.single_blog .single_blog_content .table__item .table__col:nth-child(2),
.single_blog .single_blog_content.table_content_price .table__item .table__col:nth-child(2) {
  background-color: var(--light_green);
}

.single_blog .single_blog_content  .table__item:first-child .table__col {
    background: var(--green);
    color: var(--white);
    font-weight: bold;
}

.single_blog .single_blog_content .table__item .table__col{
    margin-bottom: 8px !important;
}
.single_blog .single_blog_content table {
  border-collapse: separate !important;
  border-spacing: 8px;
}
.single_blog .single_blog_content table tr td {
  border: none;
  background-color: var(--white);
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4em;
  border-radius: 12px;
}
.single_blog .single__constructor .text__content h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 28px;
}
.single_blog .single__constructor .text__content h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.32em;
  margin-bottom: 20px;
}
.single_blog .single__constructor .text__content h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.32em;
  margin-bottom: 20px;
}
.single_blog .single__constructor .text__content p:last-child {
  margin-bottom: 0;
}
.single_blog .single__constructor .text__content li {
  margin-bottom: 0.2em;
}
.single_blog .single__constructor .text__content li:last-child {
  margin-bottom: 0;
}
.single_blog .single__constructor .text__content ul {
  margin-bottom: 1.2em;
}
.single_blog .single__constructor .text__content ol {
  margin-bottom: 1.2em;
  list-style-type: decimal;
}
.single_blog .single__constructor .text__content ol li {
  counter-increment: step-counter;
  list-style-type: none;
}
.single_blog .single__constructor .text__content ol li:before {
  content: counter(step-counter);
  color: var(--green);
  font-size: inherit;
  width: auto;
  height: auto;
  background-color: transparent;
  top: auto;
  left: 8px;
}
.single_blog .single__constructor .faq__item {
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}
.single_blog .single__constructor .faq__answer .text__content p:last-child {
  margin-bottom: 0;
}
.single_blog .single__constructor .faq__answer .text__content a {
  text-decoration: underline;
  color: var(--blue);
  font-weight: 600;
}
.single_blog .single__constructor .faq__answer .text__content a:hover {
  color: var(--blue_hover);
}
.single_blog .single_blog__alert {
  padding: 36px 40px;
  margin-bottom: 60px;
}
.single_blog .single_blog__alert p {
  line-height: 1.4em;
}
.single_blog .single_blog__alert .social {
  margin-right: 12px;
}
.single_blog .single_blog__alert .social a {
  width: 40px;
  height: 40px;
}
.single_blog .single_blog__alert .social a img {
  width: 100%;
  height: 100%;
  margin-right: 8px;
}
.single_blog .service__callback {
  padding: 40px;
}
.single_blog .service__callback .form__wrap .input__group .order__input {
  background-color: var(--light);
}
.single_blog .service__callback .form__wrap .btn {
  width: 100%;
}
.single_blog .sercie__alert {
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  padding: 24px 20px;
}
.single_blog .sercie__alert .title_4 {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(192, 222, 234, 0.9);
}
.single_blog .sercie__alert .text__content {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(192, 222, 234, 0.9);
}
.single_blog .sercie__alert .text__content p:last-child {
  margin-bottom: 0;
}
.single_blog .sercie__alert .contents__list li:not(:last-child) {
  margin-bottom: 10px;
}
.single_blog .sercie__alert .contents__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--blue);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3em;
}
.single_blog .sercie__alert .contents__list li a svg {
  width: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.single_blog .sercie__alert .contents__list li a:hover {
  color: var(--blue_hover);
}
.single_blog .service_price .price .price__row .price__item:last-child {
  width: 280px;
}
.single_blog .advant.service_advant .advant__card {
  width: 100%;
  min-height: 310px;
  padding: 20px 20px 32px;
}
.single_blog .advant.service_advant .advant__card .advant__icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.single_blog .advant.service_advant .advant__card .advant__icon img {
  width: 60px;
  height: auto;
}
.single_blog .generators .generators__content {
  width: 480px;
  padding: 80px 18px;
  max-width: 480px;
}
.single_blog .generators .generators__imgs {
  width: 480px;
}
.single_blog .generators .generators__imgs .generators__img {
  width: 300px;
  top: 50%;
}
.single_blog .generators .generators__imgs .generators_bg img {
  width: auto;
  height: 120%;
  height: auto;
  bottom: 0;
  left: 0;
}
.single_blog .service__consult {
  padding: 20px;
  overflow: hidden;
  background-image: -webkit-gradient(linear, left top, right top, from(#cfe6e9), to(#a1c9d6));
  background-image: linear-gradient(90deg, #cfe6e9, #a1c9d6);
}
.single_blog .service__consult.consult__type1:before {
  content: "";
  display: block;
  width: 590px;
  height: 590px;
  border-radius: 50%;
  background-color: var(--green);
  position: absolute;
  right: -194px;
  bottom: -366px;
}
.single_blog .service__consult.consult__type2:before {
  content: "";
  display: block;
  width: 590px;
  height: 590px;
  border-radius: 50%;
  background-color: var(--blue);
  position: absolute;
  right: -293px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.single_blog .service__consult.consult__type3:before {
  content: "";
  display: block;
  width: 470px;
  height: 530px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../img/consult_bg_3.svg) no-repeat 100% 100%/contain;
}
.single_blog .service__consult .service__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 48px 28px;
  width: 440px;
  position: relative;
  z-index: 2;
}
.single_blog .service__consult .service__consult_img {
  max-width: 428px;
  max-height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.single_blog__share .addtoany_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single_blog__share .addtoany_list .addtoany_share {
  display: none;
}
.single_blog__share .addtoany_list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 8px;
  width: 40px;
  height: 40px;
  padding: 0;
}
.single_blog__share .addtoany_list a img {
  max-width: 100%;
}
.single_blog__share .addtoany_list a.addtoany_share_save {
  display: none;
}

.single_blog__rating .kksr-legend {
  font-size: 14px !important;
  font-weight: 500;
  line-height: 1.28em;
}

.sidebar {
  position: relative;
  top: 0;
  left: initial;
  width: 100%;
  max-width: 450px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.sidebar.custom_sticky {
    position: sticky;
    top: 12%;
}
.sidebar.sticky {
  position: fixed;
  top: 150px;
  left: initial;
  margin-top: 0;
}
.sidebar.sticky.sticky_bottom {
  position: relative;
  top: auto;
  margin-top: auto;
}
.sidebar .sidebar__item.open .sidebar__title {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(192, 222, 234, 0.9);
}
.sidebar .sidebar__item.open .sidebar__title:after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.sidebar .sidebar__item .sidebar__title {
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
  position: relative;
}
.sidebar .sidebar__item .sidebar__title * {
  pointer-events: none;
}
.sidebar .sidebar__item .sidebar__title::after {
  width: 18px;
  height: 18px;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 6px;
  background: url(../img/contents_arrow.svg) no-repeat center;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.sidebar .sidebar__item .tag__list {
  padding-top: 16px;
}
.sidebar .sidebar__item .tag__list li {
  margin-bottom: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.sidebar .sidebar__item .tag__list li a {
  height: 24px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  background-color: var(--blue_light);
  border: none;
}
.sidebar .sidebar__item .tag__list li a:hover {
  background-color: var(--stroke);
}
.sidebar .sidear__consult {
  padding: 36px 20px;
}
.sidebar .sidear__consult .sidear__phone {
  margin-right: 4px;
}
.sidebar .sidear__consult .sidear__phone:hover {
  color: var(--blue_hover);
}
.sidebar .sidear__consult .social {
  margin-right: 12px;
}
.sidebar .sidear__consult .social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  margin-left: 8px;
}
.sidebar .sidear__consult .social a svg {
  width: 100%;
  height: 100%;
}
.sidebar .sidear__consult .social a img {
  max-width: 100%;
  max-height: 100%;
}
.sidebar .sidear__consult .form__wrap .input__group .iti--show-selected-dial-code.iti--show-flags .iti__selected-dial-code {
  color: var(--white);
}
.sidebar .sidear__consult .form__wrap .input__group .iti__arrow {
  background-image: url(../img/iti_arrow_wh.svg);
}
.sidebar .sidear__consult .form__wrap .input__group .order__input {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.sidebar .sidear__consult .form__wrap .input__group .order__input::-webkit-input-placeholder {
  color: var(--white);
}
.sidebar .sidear__consult .form__wrap .input__group .order__input::-moz-placeholder {
  color: var(--white);
}
.sidebar .sidear__consult .form__wrap .input__group .order__input:-ms-input-placeholder {
  color: var(--white);
}
.sidebar .sidear__consult .form__wrap .input__group .order__input::-ms-input-placeholder {
  color: var(--white);
}
.sidebar .sidear__consult .form__wrap .input__group .order__input::placeholder {
  color: var(--white);
}
.sidebar .sidear__consult .form__wrap .form__bottom {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sidebar .sidear__consult .form__wrap .form__bottom p {
  width: 100%;
}
.sidebar .sidear__consult .form__wrap .btn {
  max-width: 100%;
  width: 100%;
  background-color: var(--white);
  color: var(--green);
  margin-bottom: 12px;
}
.sidebar .sidear__consult .form__wrap .btn:hover {
  background-color: var(--light_green);
  color: var(--green);
}
.sidebar .sidear__consult .form__wrap .fz_12 {
  text-align: center;
}
.sidebar .sidear__consult .form__wrap .fz_12 a {
  text-decoration: underline;
}
.sidebar .sidebar__news .sidebar__new {
  min-height: 98px;
  background-color: var(--blue_light);
  margin-bottom: 12px;
  border-radius: 12px;
  padding: 8px;
}
.sidebar .sidebar__news .sidebar__new .sidebar__thumbhail {
  border-radius: 8px;
  width: 128px;
  height: 82px;
  overflow: hidden;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.sidebar .sidebar__news .sidebar__new .sidebar__thumbhail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sidebar .sidebar__news .sidebar__new p {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0;
}
.sidebar .sidebar__news .sidebar__new:last-child {
  margin-bottom: 0;
}

.single_blog__consult {
  padding: 40px;
  position: relative;
}
.single_blog__consult .social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 8px;
}
.single_blog__consult .social a img {
  width: 40px;
  height: 40px;
}
.single_blog__consult .form__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.single_blog__consult .form__wrap .input__group {
  margin-right: 12px;
  width: 320px;
}
.single_blog__consult .form__wrap .input__group .iti--show-selected-dial-code.iti--show-flags .iti__selected-dial-code {
  color: var(--white);
}
.single_blog__consult .form__wrap .input__group .iti__arrow {
  background-image: url(../img/iti_arrow_wh.svg);
}
.single_blog__consult .form__wrap .input__group .order__input {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.single_blog__consult .form__wrap .input__group .order__input::-webkit-input-placeholder {
  color: var(--white);
}
.single_blog__consult .form__wrap .input__group .order__input::-moz-placeholder {
  color: var(--white);
}
.single_blog__consult .form__wrap .input__group .order__input:-ms-input-placeholder {
  color: var(--white);
}
.single_blog__consult .form__wrap .input__group .order__input::-ms-input-placeholder {
  color: var(--white);
}
.single_blog__consult .form__wrap .input__group .order__input::placeholder {
  color: var(--white);
}
.single_blog__consult .form__wrap .btn {
  width: 200px;
  background-color: var(--white);
  color: var(--green);
  margin-bottom: 1rem;
}
.single_blog__consult .form__wrap .btn:hover {
  background-color: var(--light_green);
  color: var(--green);
}
.single_blog__consult .form__wrap .fz_12 {
  width: 270px;
  color: var(--white);
  text-align: left;
  margin-left: 12px;
  margin-bottom: 1rem;
}
.single_blog__consult .form__wrap .fz_12 a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 500;
}

.single_blog__more .blog__swiper .swiper-slide .card__news.card__news_archive .card_news__thumnail {
  height: 215px;
}
.single_blog__more .blog__swiper .swiper-slide .news__content {
  padding: 12px;
}
.single_blog__more .blog__swiper .swiper-slide .news__content .news__permalink {
  color: var(--blue);
}

.single_consult .service__consult {
  padding: 40px;
  overflow: hidden;
  background-image: -webkit-gradient(linear, left top, right top, from(#cfe6e9), to(#a1c9d6));
  background-image: linear-gradient(90deg, #cfe6e9, #a1c9d6);
}
.single_consult .service__consult .service__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px;
  width: calc(100% - 460px);
  position: relative;
}
.single_consult .service__consult .service__content .text__content h2, .single_consult .service__consult .service__content .text__content h3, .single_consult .service__consult .service__content .text__content h4 {
  margin-bottom: 20px;
}
.single_consult .service__consult .service__content .single_consult__item {
  padding: 20px;
  margin-bottom: 16px;
}
.single_consult .service__consult .service__content .single_consult__item .single__number {
  margin-right: 20px;
}
.single_consult .service__consult .service__content .single_consult__item .single__number p {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
.single_consult .service__consult .service__consult_img {
  max-width: 580px;
  max-height: 100%;
  position: absolute;
  bottom: 0;
  right: -50px;
}

@media screen and (max-width: 1480px) {
  .sidebar .sidear__consult .sidear__contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .single_blog .single_blog__img,
  .single_blog .single_blog__thumnail {
    height: 480px;
  }
  .single_blog .single_blog__share .addtoany_list a {
    margin-right: 8px;
  }
  .news.pt_128 {
    padding-top: 100px;
  }
  .news.pb_128 {
    padding-bottom: 100px;
  }
  .single_blog__consult {
    padding: 36px 20px;
  }
  .single_blog__consult .form__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .single_blog__consult .form__wrap .input__group {
    width: 100%;
    margin-right: 0;
  }
  .single_blog .generators .generators__imgs .generators__img {
    width: 250px;
    left: 70%;
  }
  .single_blog .service__consult {
    padding: 16px;
  }
  .single_blog .service__consult .service__content {
    padding: 36px 16px;
    width: 380px;
  }
  .single_blog .service__consult .service__consult_img {
    max-width: 350px;
  }
  .single_consult .service__consult .service__content,
  .single_consult .service__consult {
    padding: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .sidebar .sidebar__news .sidebar__new .sidebar__thumbhail {
    width: 99px;
    height: 64px;
  }
  .sidebar .sidebar__news .sidebar__new p {
    font-size: 14px;
  }
  .sidebar .sidebar__item.open .sidebar__title {
    font-size: 20px;
  }
  .sidebar .sidebar__news .sidebar__new {
    min-height: 86px;
  }
  .single_blog .single_blog__img,
  .single_blog .single_blog__thumnail {
    height: 400px;
  }
  .single_blog .generators .generators__imgs .generators__img {
    width: 200px;
    left: 80%;
  }
  .single_blog .service__consult {
    padding: 16px 16px 0;
  }
  .single_blog .service__consult .service__content {
    width: 100%;
    margin-bottom: 30px;
  }
  .single_blog .service__consult .service__consult_img {
    position: relative;
    max-width: 400px;
    right: -12px;
    margin-left: auto;
    display: block;
  }
  .single_consult .service__consult .service__content {
    padding: 36px 16px;
    width: 100%;
    margin-bottom: -20px;
  }
  .single_consult .service__consult {
    padding: 20px;
  }
  .single_consult .service__consult .service__consult_img {
    max-height: 500px;
    max-width: 100%;
    position: relative;
    right: auto;
    margin: 0 auto;
    display: block;
  }
}
@media screen and (max-width: 991px) {
  .service__share {
    padding-top: 50px;
    padding-bottom: 70px;
  }
  .sidebar .sidebar__news .sidebar__new p {
    font-size: 16px;
  }
  .sidebar {
    max-width: 560px;
  }
  .tag__list .news__cat {
    margin-bottom: 8px;
  }
  .single_blog .single_blog__thumnail {
    margin-bottom: 32px;
  }
  .single_blog .single_blog__img,
  .single_blog .single_blog__thumnail {
    height: auto;
  }
  .single_blog .single_blog__img img,
  .single_blog .single_blog__thumnail img {
    height: auto;
    -o-object-fit: initial;
       object-fit: initial;
  }
  .single_blog .single__constructor .text__content h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2em;
    margin-bottom: 28px;
  }
  .single_blog .single__constructor .text__content h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.32em;
    margin-bottom: 20px;
  }
  .single_blog .single__constructor .text__content h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.32em;
    margin-bottom: 20px;
  }
  .single_blog .single__constructor .text__content p:last-child {
    margin-bottom: 0;
  }
  .single_blog .single__constructor .text__content li {
    margin-bottom: 0.2em;
  }
  .single_blog .single__constructor .text__content li:last-child {
    margin-bottom: 0;
  }
  .single_blog .single__constructor .faq__item {
    -webkit-box-shadow: var(--shadow);
            box-shadow: var(--shadow);
  }
  .single_blog .single__constructor .faq__answer .text__content p:last-child {
    margin-bottom: 0;
  }
  .single_blog .single__constructor .faq__answer .text__content a {
    text-decoration: underline;
    color: var(--blue);
    font-weight: 600;
  }
  .single_blog .single__constructor .faq__answer .text__content a:hover {
    color: var(--blue_hover);
  }
  .news.pt_128 {
    padding-top: 80px;
  }
  .news.pb_128 {
    padding-bottom: 80px;
  }
  .news .news__swiper {
    height: auto;
    margin-bottom: 20px;
  }
  .single_blog .generators .generators__content {
    width: 100%;
    max-width: 100%;
    padding: 36px 16px 40px;
  }
  .single_blog .generators .generators__imgs {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 250px;
  }
  .single_blog .generators .generators__imgs .generators_bg img {
    width: 600px;
    top: 0;
    right: -100px;
    -webkit-transform: none;
    transform: none;
    left: auto;
  }
  .single_blog .generators .generators__imgs .generators__img {
    position: absolute;
    left: 50%;
    top: 30%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 300px;
    height: auto;
    z-index: 2;
  }
  .single_blog .service__consult {
    padding: 12px 12px 0;
    border-radius: 16px;
  }
  .single_blog .service__consult .service__content .single_blog .service__consult .service__content {
    border-radius: 16px;
    padding-bottom: 50px;
    margin-bottom: -25px;
  }
  .single_blog .service__consult .service__consult_img {
    z-index: 5;
  }
  .single_blog .service__consult.consult__type1:before,
  .single_blog .service__consult.consult__type2:before {
    top: auto;
    -webkit-transform: none;
            transform: none;
    width: 500px;
    height: 500px;
    right: auto;
    right: -160px;
    bottom: -310px;
  }
  .single_blog .service__consult.consult__type3:before {
    width: 100%;
  }
  .single_consult .service__consult {
    padding: 12px;
  }
}
@media screen and (max-width: 767px) {
  .single_blog {
    padding-bottom: 20px;
  }
  .single_blog .section__title {
    font-size: 22px;
  }
  .single_blog .single__constructor .text__content h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .single_blog .single__constructor .text__content h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .single_blog .service__callback {
    padding: 48px 16px;
    margin-bottom: 48px;
  }
  .single_blog .single_blog_content table tr td {
    font-size: 16px;
    padding: 12px 8px;
  }
  .single_blog .service_advant {
    margin-bottom: 40px;
  }
  .single_blog .single_blog__comment .single_blog__comment_img {
    width: 100px;
    height: 100px;
    margin-right: 12px;
  }
  .single_blog .single_blog__comment.single_blog__author {
    padding: 20px 16px;
  }
  .single_blog .single_blog__comment.single_blog__author .single_blog__comment_img {
    width: 100%;
    height: 312px;
    max-width: 312px;
    margin-right: 0;
    margin-bottom: 0;
  }
  .single_blog .single_blog__comment .comment__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 0;
    padding-bottom: 20px;
    margin-bottom: 12px;
  }
  .single_blog .single_blog__comment .comment__name {
    font-size: 18px;
  }
  .single_blog .single_blog__interesting {
    max-width: 516px;
    margin: 0 auto 48px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .single_blog .single_blog__interesting .interesting__info {
    margin-bottom: 16px;
    padding: 0 8px;
  }
  .single_blog .single_blog__interesting .interesting__thumbhail {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .single_blog .single_blog__interesting .interesting__info {
    padding: 0;
  }
  .single_blog .single_blog__interesting .title_4 {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 8px 0;
    font-size: 20px;
    font-weight: 700;
  }
  .single_blog .single_blog__interesting .fz_20 {
    font-size: 18px;
    font-weight: 700;
  }
  .single_blog .single_blog__alert p {
    font-size: 16px;
  }
  .news .news__swiper .swiper-slide .news__thumnail {
    height: 170px;
  }
  .single_blog__consult {
    padding: 36px 16px;
    text-align: center;
  }
  .single_blog__consult .single_blog__contact .social {
    margin-right: 0;
    margin-bottom: 12px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .single_blog__consult .single_blog__contact .social a:last-child {
    margin-right: 0;
  }
  .single_blog__consult .form__wrap .form__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .single_blog__consult .form__wrap .form__bottom p {
    width: 100%;
    margin: 0;
    text-align: center;
  }
  .single_blog__consult .form__wrap .form__bottom .btn {
    width: 100%;
    margin-bottom: 12px;
  }
  .single_blog .single_blog__comment.single_blog__author .single_blog__comment_img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
  .single_blog .single_blog_content .table__list .table__item .table__col {
    font-size: 14px;
    padding: 12px 8px;
  }
  .single_blog .single_blog__alert {
    padding: 36px 16px;
  }
  .single_blog .single_blog_content.table_content_price table tr td:last-child {
    width: 122px !important;
    font-size: 14px;
    font-weight: 700;
  }
}
@media screen and (max-width: 576px) {
  .single_blog .single__filter .single__filter_btns .single__filter_btn {
    width: 36px;
    height: 36px;
  }
  .single_blog .single__filter .single__filter_content a img {
    width: 16px;
    height: 16px;
  }
  .sidebar .sidebar__news .sidebar__new p {
    font-size: 14px;
  }
  .single_consult .service__consult {
    padding-bottom: 0;
  }
  .single_consult .single_consult__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 16px;
  }
  .single_consult .single_consult__item .single__number p {
    width: 48px;
    height: 48px;
    font-size: 32px;
    margin-bottom: 16px;
  }
  .single_consult .single_consult__item .single_consult_info .fz_20 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.video .video__block {
  position: relative;
  display: block;
}
.video .video__block img {
  width: 100%;
  height: auto;
}
.video .video__block .play_btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 991px) {
  .video.pt_70 {
    padding-top: 50px;
  }
  .video.pb_70 {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .play_btn {
    width: 60px;
    height: 60px;
  }
  .play_btn img,
  .play_btn svg {
    width: 17px;
    height: 17px;
  }
}
.numbers .numbers__item .numbers__wrap {
  padding: 20px;
  min-height: 172px;
}
.numbers .numbers__item .numbers_number {
  font-size: 60px;
  line-height: 1.16em;
}
.numbers .numbers__item:nth-child(odd) .numbers__wrap {
  background-color: var(--white);
}
.numbers .numbers__item:nth-child(odd) .numbers__wrap p {
  color: var(--dark_blue_text);
}
.numbers .numbers__item:nth-child(odd) .numbers__wrap p.numbers_number {
  color: var(--blue);
}
.numbers .numbers__item:nth-child(even) .numbers__wrap {
  background-color: var(--blue);
}
.numbers .numbers__item:nth-child(even) .numbers__wrap p {
  color: var(--white);
}

@media screen and (max-width: 1199px) {
  .numbers .numbers__item .numbers_number {
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  .numbers {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 576px) {
  .numbers .numbers__item .numbers__wrap {
    padding: 20px 16px;
    min-height: 80px;
  }
  .numbers .numbers__item .btn_text_md {
    font-size: 16px;
  }
  .numbers .numbers__item .numbers_number {
    font-size: 54px;
    margin-bottom: 12px;
  }
}
.centers .centers__swiper .swiper-slide {
  height: auto;
  padding: 12px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  background-color: var(--white);
}
.centers .centers__swiper .swiper-slide .centers__thumnail {
  margin-bottom: 20px;
  height: 272px;
  overflow: hidden;
}
.centers .centers__swiper .swiper-slide .centers__thumnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.centers .centers__swiper .swiper-slide .centers__info {
  padding: 0 8px 8px;
}
.centers .centers__swiper .swiper-slide .centers__place {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 40px;
  margin-bottom: 16px;
}
.centers .centers__swiper .swiper-slide .centers__place .centers__icon {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.centers .centers__swiper .swiper-slide .centers__place .centers__icon svg {
  width: 100%;
  height: 100%;
}
.centers .centers__swiper.centers__swiper_small .swiper-slide .centers__thumnail {
  height: 197px;
}
.centers .centers__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.centers .centers__links .btn {
  width: 100%;
  max-width: 308px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.filials .filials__swiper .swiper-slide .card__news.card__news_archive .card_news__thumnail {
  height: 300px;
}
.filials .filials__swiper .swiper-slide .card__news .card_news__info {
  height: auto;
  padding: 8px;
}
.filials .filials__swiper .swiper-slide .news__content {
  padding: 12px;
}
.filials .filials__swiper .swiper-slide .news__content .news__permalink {
  color: var(--blue);
}

.generators .generators__content {
  padding: 80px 40px;
  width: 680px;
  max-width: 50%;
  position: relative;
  z-index: 2;
}
.generators .generators__icon {
  width: 40px;
}
.generators .generators__icon img {
  width: 100%;
  height: auto;
}
.generators .generators__imgs {
  position: absolute;
  right: 0;
  top: 0;
  width: 680px;
  height: 100%;
}
.generators .generators__imgs .generators__img {
  position: absolute;
  left: 50%;
  top: 30%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 300px;
  height: auto;
  z-index: 2;
}
.generators .generators__imgs .generators_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
}
.generators .generators__imgs .generators_bg img {
  position: absolute;
  left: 0px;
  width: 740px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 1480px) {
  .generators .generators__content {
    padding: 70px 35px;
  }
  .filials .filials__swiper .swiper-slide .card__news.card__news_archive .card_news__thumnail {
    height: 250px;
  }
}
@media screen and (max-width: 1199px) {
  .centers .centers__swiper .swiper-slide .centers__thumnail {
    height: 220px;
  }
  .generators .generators__imgs .generators__img {
    left: 60%;
  }
}
@media screen and (max-width: 991px) {
  .filials {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .filials .filials__swiper .swiper-slide .card__news.card__news_archive .card_news__thumnail {
    height: 250px;
  }
  .filials .filials__swiper .swiper-slide .card__news .card_news__info {
    padding: 0;
  }
  .generators .generators__wrap {
    overflow: hidden;
  }
  .generators .generators__content {
    width: 100%;
    max-width: 100%;
    padding: 36px 16px 40px;
  }
  .generators .generators__imgs {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 250px;
  }
  .generators .generators__imgs .generators__img {
    left: 50%;
    top: 50%;
  }
  .generators .generators__imgs .generators_bg {
    border-radius: 0;
  }
  .generators .generators__imgs .generators_bg img {
    width: 600px;
    top: 0;
    right: -100px;
    -webkit-transform: none;
            transform: none;
    left: auto;
  }
}
@media screen and (max-width: 767px) {
  .centers.centers_small {
    padding-bottom: 50px;
  }
  .centers .centers__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .centers .centers__links .btn {
    margin: 0 auto 12px;
  }
  .generators .title_3 {
    font-size: 20px;
  }
  .generators .generators__icon {
    width: 36px;
  }
}
@media screen and (max-width: 576px) {
  .centers .centers__swiper .swiper-slide {
    max-width: 285px;
  }
  .centers .centers__swiper .swiper-slide .centers__thumnail,
  .centers .centers__swiper.centers__swiper_small .swiper-slide .centers__thumnail {
    height: 170px;
    margin-bottom: 16px;
  }
  .centers .centers__swiper .swiper-slide .centers__info .title_4 {
    font-size: 18px;
  }
  .filials .filials__swiper .swiper-slide {
    width: 300px;
  }
  .filials .filials__swiper .swiper-slide .card__news.card__news_archive .card_news__thumnail {
    height: 200px;
  }
}
.partners .partners__card {
  width: 20%;
}
.partners .partners__item {
  padding: 34px 40px;
  height: 328px;
}
.partners .partners__item img {
  max-width: 100%;
  max-height: 100%;
}

@media screen and (max-width: 1199px) {
  .partners .partners__card {
    width: 25%;
  }
}
@media screen and (max-width: 991px) {
  .partners .partners__card {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 767px) {
  .partners .partners__card {
    width: 50%;
  }
}
.contact .contact__social {
  margin-right: 4px;
}
.contact .contact__social a {
  margin-right: 8px;
}
.contact .work__time p {
  font-size: 18px;
  font-weight: 700;
  margin-right: 8px;
  margin-bottom: 8px;
}
.contact .work__time p span {
  color: var(--blue);
}
.contact .contact__map {
  height: 100%;
  width: 100%;
}
.contact .contact__map iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .contact .contact__map {
    height: 480px;
  }
}
@media screen and (max-width: 767px) {
  .contact .contact__map {
    height: 380px;
  }
}
@media screen and (max-width: 576px) {
  .contact .contact__map {
    height: 280px;
  }
}
.callback__review .callback__review_block {
  padding: 40px;
  background-image: -webkit-gradient(linear, left top, right top, from(#cfe6e9), to(#a1c9d6));
  background-image: linear-gradient(90deg, #cfe6e9, #a1c9d6);
  border-radius: 40px;
}
.callback__review .callback__review_subtitle {
  line-height: 1.4em;
}
.callback__review .callback__review__offer {
  padding: 48px 40px 60px;
}
.callback__review .callback__review_img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 991px) {
  .callback__review .callback__review_block {
    padding: 12px;
  }
  .callback__review .callback__review__offer {
    padding: 36px 12px 40px;
  }
  .callback__review .callback__review_img {
    max-width: 236px;
    display: block;
    margin: 28px auto;
  }
}
.price__head .price__head__wrap {
  padding: 90px 40px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.price__head .price__head__wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, right top, from(#1b4367), to(rgba(64, 74, 181, 0)));
  background: linear-gradient(90deg, #1b4367 0%, rgba(64, 74, 181, 0) 100%);
  opacity: 0.6;
}
.price__head .btn img {
  margin-right: 8px;
}

@media screen and (max-width: 576px) {
  .price__head .price__head__wrap {
    padding: 60px 16px;
  }
}
.price .price__content {
  margin-bottom: 60px;
}
.price .price__table {
  margin-bottom: 28px;
}
.price .price__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--stroke);
}
.price .price__row:nth-child(odd) {
  background-color: var(--blue_light);
}
.price .price__row:not(:last-child) {
  border-bottom: none;
}
.price .price__row.price__row_title {
  background-color: var(--blue);
  border-radius: 8px 8px 0 0;
  border: none;
}
.price .price__row .price__name {
  height: 60px;
  padding-left: 20px;
}
.price .price__row .price__item {
  min-height: 60px;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
}
.price .price__row .price__item:last-child {
  width: 400px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
  text-align: center;
  padding-left: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-left: 1px solid var(--stroke);
  font-weight: 600;
}
.price .price__row .price__item:last-child button {
  color: var(--blue);
  text-decoration: underline;
  cursor: pointer;
}
.price .price__row .price__item:last-child button:hover {
  color: var(--blue_hover);
}
.price .price__content .text__content {
  width: calc(100% - 400px);
}

@media screen and (max-width: 1199px) {
  .price .price__row .price__item {
    width: 66%;
  }
  .price .price__row .price__item:last-child {
    width: 33%;
  }
  .price .price__content .text__content {
    width: 66%;
  }
}
@media screen and (max-width: 991px) {
  .price .price__row .price__name img,
  .price .price__row .price__name svg {
    width: 24px;
    height: 24px;
  }
  .price .price__row .price__item {
    padding: 12px;
    font-size: 16px;
  }
  .price .price__content .text__content {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .price .price__row .price__name {
    height: 48px;
  }
}
.contents .contents__wrap {
  padding: 16px;
}
.contents .contents__wrap.open .contents__title {
  padding-bottom: 20px;
}
.contents .contents__wrap.open .contents__title::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.contents .contents__title {
  padding-bottom: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contents .contents__title * {
  pointer-events: none;
}
.contents .contents__title img {
  margin-right: 12px;
}
.contents .contents__title::after {
  width: 40px;
  height: 40px;
  content: "";
  display: block;
  border-radius: 50%;
  background: var(--light_green) url(../img/icon_catalog_green.svg) no-repeat center/16px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contents .contents__list li {
  padding: 0 2px;
}
.contents .contents__list li a.btn {
  width: 100%;
  height: 40px;
  border-radius: 8px;
}
.contents.contents_vertical .contents__list li {
  min-height: 28px;
}
.contents.contents_vertical .contents__list li:not(:last-child) {
  margin-bottom: 10px;
}
.contents.contents_vertical .contents__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3em;
  color: var(--dark_blue_text);
}
.contents.contents_vertical .contents__list a svg {
  width: 14px;
  height: 13px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 8px;
}
.contents.contents_vertical .contents__list a line,
.contents.contents_vertical .contents__list a path {
  stroke: var(--green);
}
.contents.contents_vertical .contents__list a:hover {
  color: var(--green);
}
.contents.contents_vertical .contents__list a:hover path,
.contents.contents_vertical .contents__list a:hover line {
  stroke: var(--green);
}
.contents.contents_vertical .contents__list a:active {
  color: var(--green);
}
.contents.contents_vertical .contents__list a:active path,
.contents.contents_vertical .contents__list a:active line {
  stroke: var(--green);
}

@media screen and (max-width: 767px) {
  .contents.contents_vertical .contents__list a {
    font-size: 16px;
  }
}
.service_clinic .service_clinic__card {
  padding: 16px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}
.service_clinic .service_clinic__card .service_clinic__name {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--stroke);
  margin-bottom: 16px;
}
.service_clinic .service_clinic__card .service_clinic__name img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 12px;
  width: 24px;
  height: auto;
}
.service_clinic .service_clinic__card .service_clinic__list li:not(:last-child) {
  margin-bottom: 10px;
}
.service_clinic .service_clinic__card .service_clinic__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--blue);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3em;
}
.service_clinic .service_clinic__card .service_clinic__list a svg {
  width: 12px;
  height: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 8px;
}
.service_clinic .service_clinic__card .service_clinic__list a line,
.service_clinic .service_clinic__card .service_clinic__list a path {
  stroke: var(--blue);
}
.service_clinic .service_clinic__card .service_clinic__list a:hover {
  color: var(--blue_hover);
}
.service_clinic .service_clinic__card .service_clinic__list a:hover path,
.service_clinic .service_clinic__card .service_clinic__list a:hover line {
  stroke: var(--blue_hover);
}
.service_clinic .service_clinic__card .service_clinic__list a:active {
  color: var(--blue_active);
}
.service_clinic .service_clinic__card .service_clinic__list a:active path,
.service_clinic .service_clinic__card .service_clinic__list a:active line {
  stroke: var(--blue_active);
}
.service_clinic.service_clinic_center .service_clinic__card {
  padding: 16px 12px;
}
.service_clinic.service_clinic_center .service_clinic__card .service_clinic__name {
  padding-bottom: 0;
  border: none;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.service_clinic.service_clinic_center .service_clinic__card .service_clinic__img {
  height: 272px;
  overflow: hidden;
  border-radius: 8px;
}
.service_clinic.service_clinic_center .service_clinic__card .service_clinic__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1199px) {
  .service_clinic.service_clinic_center .service_clinic__card .service_clinic__img {
    height: 200px;
  }
}
@media screen and (max-width: 991px) {
  .service_clinic.service_clinic_center {
    padding-bottom: 20px;
  }
  .service_clinic.service_clinic_center .service_clinic__card {
    padding: 8px;
  }
}
.photo .photo__btn {
  width: 124px;
  background-color: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid var(--blue_light);
  padding: 0;
  padding-bottom: 16px;
  color: var(--dark);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2em;
}
.photo .photo__btn.active, .photo .photo__btn:hover {
  border-color: var(--dark);
}
.photo .photo__address {
  position: absolute;
  opacity: 0;
  top: 0;
  left: initial;
  pointer-events: none;
}
.photo .photo__address.active {
  position: static;
  opacity: 1;
  pointer-events: all;
}
.photo .photo__address img {
  width: 20px;
  height: auto;
  margin-right: 8px;
}
.photo .photo__swiper {
  width: 100%;
  margin-bottom: 28px;
  height: 287px;
}
.photo .photo__swiper .swiper-slide {
  border-radius: 12px;
  overflow: hidden;
}
.photo .photo__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 991px) {
  .photo {
    padding-bottom: 20px;
  }
  .photo .photo__swiper {
    height: 250px;
  }
}
@media screen and (max-width: 576px) {
  .photo .photo__swiper {
    height: 210px;
  }
}
.gallary .gallary__card {
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  padding-bottom: 16px;
}
.gallary .gallary__img {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  position: relative;
  height: 470px;
}
.gallary .gallary__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallary .gallary__img:hover:before {
  opacity: 0.4;
}
.gallary .gallary__img:hover::after {
  opacity: 1;
}
.gallary .gallary__img:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--green);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
}
.gallary .gallary__img:after {
  content: "";
  display: block;
  width: 68px;
  height: 68px;
  position: absolute;
  left: calc(50% - 34px);
  top: calc(50% - 34px);
  border-radius: 50%;
  background: var(--green) url(../img/icon_zoom.svg) no-repeat center/25px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
}
.gallary .gallary__name {
  padding: 0 20px;
  line-height: 1.4em;
}
.gallary .gallary_list_more {
  display: none;
}
.gallary .gallary_list_more.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1480px) {
  .gallary .gallary__img {
    height: 330px;
  }
}
@media screen and (max-width: 1199px) {
  .gallary .gallary__img {
    height: 280px;
  }
  .gallary {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 991px) {
  .gallary .gallary__card {
    border-radius: 16px;
  }
}
@media screen and (max-width: 767px) {
  .gallary .gallary__name {
    font-size: 16px;
    padding: 0 16px;
  }
}
@media screen and (max-width: 576px) {
  .gallary .gallary__img {
    height: auto;
  }
  .gallary .gallary__img img {
    height: auto;
    -o-object-fit: initial;
       object-fit: initial;
  }
  .gallary .gallary__img .gallary .gallary__name {
    font-size: 14px;
  }
}
.footer .footer__text {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4em;
  color: var(--dark_blue_text);
  text-transform: uppercase;
}
.footer .footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .footer__social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 12px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.footer .footer__social a img {
  max-width: 100%;
  max-height: 100%;
}
.footer .footer__info_ukraine .icon__ukraine {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.footer .footer__info_license .icon__gerb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.footer .footer__menu li {
  margin-bottom: 16px;
  line-height: 1em;
}
.footer .footer__menu li a {
  font-size: 14px;
  line-height: 1.4em;
  font-weight: 600;
  color: var(--dark);
}
.footer .footer__contact {
  position: relative;
  padding: 28px;
}
.footer .footer__contact .social a {
  margin-right: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
}
.footer .footer__contact .social a svg {
  width: 100%;
  height: 100%;
}
.footer .footer__contact .social a img {
  max-width: 100%;
  max-height: 100%;
}
.footer .copyright {
  opacity: 0.7;
}
.footer .footer__bottom {
  border-top: 1px solid rgba(52, 149, 83, 0.2);
}

.top__offset {
  margin-bottom: 15px;
}

@media screen and (max-width: 1480px) {
  .footer .footer__contact {
    padding: 24px 16px;
  }
}
@media screen and (max-width: 991px) {
  .top__offset {
    padding-top: 100px;
  }
  .footer .footer__item {
    width: 33%;
    padding-right: 15px;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .top__offset {
    padding-top: 80px;
  }
  .footer .footer__item {
    width: 50%;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 576px) {
  .top__offset {
    padding-top: 74px;
  }
  .footer__bottom p {
    width: 100%;
    text-align: center;
  }
}
.form__filter .filter__btn {
  height: 40px;
  border-radius: 8px;
  background-color: var(--blue_light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 12px;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  cursor: pointer;
}
.form__filter .filter__btn::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 12px;
  top: 10px;
  background: url(../img/arrow_down.svg) no-repeat center;
  pointer-events: none;
}

.default__filter {
  text-decoration: underline;
}

.result__list {
  display: none;
}
.result__list.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.result__list .remove__btn {
  display: none;
  height: 32px;
  text-align: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--stroke);
  color: var(--dark);
  padding-left: 12px;
  padding-right: 30px;
  border-radius: 8px;
  margin-right: 12px;
  position: relative;
  cursor: pointer;
}
.result__list .remove__btn::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 12px;
  top: 11px;
  background: url(../img/close_menu.svg) no-repeat center;
}
.result__list .remove__btn.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.result__wrap {
  display: none;
}
.result__wrap.active {
  display: block;
}

.cities__alert.hide,
.default__wrap.hide {
  display: none;
}

.cities__block {
  display: none;
}
.cities__block.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.popup .countries label {
  cursor: pointer;
}
.popup .countries input {
  border-color: var(--stroke);
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  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;
}
.popup.open {
  z-index: 9999999;
  pointer-events: all;
  opacity: 1;
}
.popup .popup__content {
  width: 95%;
  max-width: 580px;
  max-height: 95%;
  overflow-y: auto;
  background-color: var(--white);
  padding: 40px 40px 40px;
  border-radius: 12px;
  position: relative;
}
.popup .popup__content .popup__close {
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: var(--light) url(../img/close_menu.svg) no-repeat center/20px;
  outline: none;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-radius: 8px;
  margin-left: auto;
  text-transform: uppercase;
  line-height: 1em;
  padding-bottom: 10px;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  right: 8px;
}
.popup .popup__content .popup__close > * {
  pointer-events: none;
}
.popup .popup__content form {
  position: relative;
}
.popup .popup__title {
  padding-right: 0;
  line-height: 1.28em;
  width: 100%;
}
.popup.popup_comment .popup__subtitle {
  opacity: 0.7;
}
.popup .form__wrap .form__label {
  margin-bottom: 12px;
  color: var(--dark_blue_text);
}
.popup .form__wrap .input__group .order__input.order__input_message {
  height: 140px;
}
.popup .form__wrap .wpcf7-list-item {
  margin: 0;
}
.popup .form__wrap .checkbox__input label {
  cursor: pointer;
}
.popup .form__wrap .checkbox__input .wpcf7-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.popup .form__wrap .checkbox__input .wpcf7-list-item-label {
  font-size: 16px;
  font-weight: 500;
}
.popup .form__wrap .btn {
  width: 100%;
}
.popup.popup_consult .popup__content {
  padding-bottom: 20px;
}
.popup.popup_consult .form__wrap .form__bottom {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.popup.popup_consult .form__wrap .form__bottom .btn {
  margin: 0 auto 12px;
}
.popup.popup_consult .form__wrap .form__bottom p {
  text-align: center;
  color: var(--light_text);
}
.popup.popup_consult .form__wrap .form__bottom p a {
  color: var(--light_text);
}
.popup .wpcf7-form-control-wrap {
  display: block;
}
.popup .wpcf7-form-control-wrap .iti {
  width: 100%;
}
.popup .popup__contact {
  margin-top: 24px;
  border-top: 1px solid rgba(0, 104, 178, 0.2);
}
.popup .popup__contact .social a {
  width: 40px;
  height: 40px;
  margin-right: 8px;
}
.popup .popup__contact .social a svg {
  width: 100%;
  height: 100%;
}
.popup .popup__contact .social a img {
  max-width: 100%;
  max-height: 100%;
}

.wpcf7-response-output {
  font-size: 14px;
  margin: 0 !important;
  position: absolute;
  top: 100%;
}

@media screen and (max-width: 991px) {
  .popup .popup__content {
    padding: 48px 16px 40px;
  }
  .popup .popup__title {
    font-size: 20px;
  }
  .menu .menu__wrap,
  .menu .menu__top {
    padding-right: 0;
  }
  .popup .popup__content .popup__close {
    width: 44px;
    height: 44px;
    background-size: 20px;
  }
}
html.with-fancybox {
  overflow: auto;
}

.iti {
  display: block;
}

.iti__flag-container {
  padding: 0;
  height: calc(100% - 2px);
  top: 1px;
  left: 1px;
}

.iti--allow-dropdown .iti__flag-container,
.iti--show-selected-dial-code .iti__flag-container {
  height: calc(100% - 2px);
  top: 1px;
  left: 1px;
}

.iti--show-selected-dial-code .iti__selected-flag {
  background-color: transparent;
  border-radius: 8px 0 0 8px;
  padding-right: 0;
}

.iti--show-selected-dial-code.iti--show-flags .iti__selected-dial-code {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark_blue_text);
}

.iti__arrow {
  border: 0;
  width: 10px;
  height: 5px;
  background: url(../img/iti_arrow.svg) no-repeat center;
}

@media screen and (max-width: 767px) {
  .iti--show-selected-dial-code.iti--show-flags .iti__selected-dial-code {
    font-size: 16px;
  }
}
.cky-revisit-bottom-left {
  left: 65px !important;
}

.iti__selected-flag {
  padding-left: 20px !important;
}

.wpcf7 .wpcf7-recaptcha > div {
  max-width: 100%;
  margin: 0 auto 15px;
}
.wpcf7 .wpcf7-recaptcha > div iframe {
  max-width: 100%;
}/*# sourceMappingURL=main.css.map */