@charset "UTF-8";
body {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0em;
  text-align: left;
  color: var(--body-color);
  background-color: var(--body-bg);
}

body * {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: top;
}

ul,
li {
  display: block;
  margin: 0;
  padding: 0;
}

button {
  padding: 0;
  margin: 0;
  background-color: transparent;
}

button,
button:hover,
button:active,
button:focus {
  outline: none;
  border: none;
  cursor: pointer;
}

p,
div,
a,
ul,
li,
h1,
h2,
h3,
h4,
h5,
button {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a,
button,
input {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

input,
input:hover,
input:focus,
button,
button:hover,
button:active,
button:focus,
textarea:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-family: "Montserrat", sans-serif;
}

a,
a:hover,
a:active {
  text-decoration: none;
}

.pos_rel {
  position: relative;
}

.pos_abs {
  position: absolute;
}

.container {
  position: relative;
}

.swiper-container {
  overflow: hidden;
}

.custom-logo-link,
.custom_logo {
  width: auto;
  display: block;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: 100px;
}

.custom-logo-link img,
.custom_logo img {
  width: 100%;
  height: auto;
}

.breadcrumbs {
  font-size: 14px;
  line-height: 1.5em;
  color: var(--dark);
  width: 100%;
  padding-top: 160px;
}

.breadcrumbs > span:not(:last-child) {
  position: relative;
  margin-right: 0;
}

.breadcrumbs span {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.5em;
}

.breadcrumbs a {
  font-size: 14px;
  line-height: 1.5em;
  color: var(--dark);
  opacity: 0.6;
}

header,
section,
footer {
  position: relative;
  /* z-index: 5; */
  /* overflow-x: hidden; */
}

header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: transparent;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
}

.header {
  /* background: transparent; */
  padding: 10px 0 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: var(--header-bg);
}

.home .header_bg {
  opacity: 0;
}

.fixed_header {
  z-index: 999;
}

header.scroll__up.fixed_header {
  /* transform: translateY(0%); */
  margin-top: 0;
  /* animation: transformUp 0.5s ease forwards; */
}

header.scroll__down.fixed_header {
  /* transform: translateY(-100%); */
  margin-top: -150px;
}

.fixed_header.header {
  margin-top: -150px;
  position: fixed;
}

.my_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.my_row_menu {
  display: none;
}

.nav {
  width: 100%;
}

.custom-logo img,
.my_row_menu .custom-logo img {
  width: 100%;
}

.nav__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.menu__close {
  width: 20px;
  height: 20px;
  /* background: url(../img/close_search.png) no-repeat center; */
  outline: none;
  /* margin-left: auto; */
  position: relative;
}

.menu__close::before,
.menu__close::after {
  content: "";
  display: block;
  width: 27px;
  height: 1px;
  border-radius: 1px;
  position: absolute;
  background: var(--white);
  top: 0;
}

.menu__close::before {
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.menu__close::after {
  right: 2px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.nav__item {
  position: relative;
  width: auto;
  margin-right: 30px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.nav__item.disabled a {
  pointer-events: none;
}

.nav__item:last-child {
  margin-right: 0;
}

.nav__item a {
  display: block;
  color: var(--header-link-desktop);
  font-size: 16px;
  position: relative;
  text-align: center;
  font-weight: 500;
}

.nav__item > a {
  padding: 10px 0 10px;
}

.nav__item > a:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--link-hover-header-desktop);
  position: absolute;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  bottom: 5px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.nav__item > a:hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.nav__item a:hover {
  color: var(--link-hover-header-desktop);
}

.menu__burger {
  cursor: pointer;
  margin-left: 0;
  height: 30px;
}

.social__link {
  display: block;
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.social__link:last-child {
  margin-right: 0;
}

.social__link svg {
  width: 100%;
  height: 100%;
}

footer .social__link path {
  fill: var(--footer-link);
}

footer .social__link:hover path {
  fill: var(--footer-link-hover);
}

header .social__link path {
  fill: var(--header-link-desktop);
}

header .social__link:hover path {
  fill: var(--link-hover-header-desktop);
}

.menu__burger span {
  width: 30px;
  display: block;
  height: 2px;
  margin-bottom: 7px;
  background: var(--white);
}

.menu__burger .burger__line_second {
  width: 66%;
}

.menu__burger .burger__line_third {
  margin-bottom: 0;
}

nav .menu-item-has-children {
  position: relative;
}

nav .menu-item-has-children > a {
  padding-right: 16px;
}

nav .menu-item-has-children::before {
  content: "›";
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  font-size: 23px;
  display: block;
  position: absolute;
  right: 0;
  top: 6px;
  color: var(--header-link-desktop);
  /* background: url(../img/icons/arrow_doun_input.svg) no-repeat center; */
}

nav .menu-item-has-children:hover::before {
  color: var(--link-hover-header-desktop);
}

.nav .sub-menu {
  padding: 20px 20px 20px 20px;
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 355px;
  top: calc(100% - 1px);
  left: -36px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-align: left;
  background: var(--white);
  border-radius: 0;
}

.nav__item li a {
  display: inline;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  border-bottom: 1px solid transparent;
}

.nav__item li a:hover {
  color: var(--link-hover-header-desktop);
}

.nav__item li {
  text-align: left;
  margin-bottom: 18px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.nav__item li:last-child {
  margin-bottom: 0;
}

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

.custom__logo img {
  width: 100%;
  height: auto;
}

.phones__wrap a {
  font-size: 18px;
  color: var(--header-link-desktop);
  font-weight: 600;
}

.phones__wrap a:hover {
  color: var(--link-hover-header-desktop);
}

.phones__wrap a:last-child {
  margin-bottom: 0;
}

.header__address {
  color: var(--header-link-desktop);
}

.header__address:hover {
  color: var(--link-hover-header-desktop);
}

@media screen and (min-width: 992px) {
  /* .sub-menu {
    border-top: 1px solid var(--dark);
  }
  .sub-menu:after,
  .sub-menu:before {
    content: '';
    display: block;
    position: absolute;
    top: -6px;
    left: 36px;
    border: 3px solid transparent;
    border-bottom: 3px solid var(--dark);
  }
  .sub-menu:after {
    top: -5px;
    border-bottom: 3px solid var(--white);
  } */
  nav .menu-item-has-children:hover .sub-menu {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
    pointer-events: all;
  }
  .nav__item li a:hover {
    /* font-weight: 500; */
    color: var(--link-hover-header-desktop);
    border-bottom: 1px solid var(--dark);
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
@media screen and (max-width: 992px) {
  /* Menu style */
  .menu__burger {
    display: block;
  }
  .menu {
    width: 100%;
    padding: 0 25px;
    position: fixed;
    left: auto;
    top: 0;
    bottom: 0;
    right: -400px;
    overflow-y: auto;
    background: var(--menu-bg-mobile);
    width: 100%;
    max-width: 400px;
    z-index: 400;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    /* transform: translateX(100%); */
    height: 100vh;
    overflow-y: auto;
    scrollbar-color: #0c2215 #e0e0e0;
    scrollbar-width: thin;
    overflow-x: hidden;
    text-align: left;
    padding-bottom: 40px;
  }
  .menu.open_menu {
    right: 0;
    -webkit-box-shadow: -5px 0 10px rgba(95, 93, 91, 0.7);
            box-shadow: -5px 0 10px rgba(95, 93, 91, 0.7);
  }
  .my_row_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 35px;
  }
  .nav {
    margin-top: 30px;
  }
  .nav__list {
    display: block;
    margin-top: 0;
    margin-bottom: 20px;
  }
  .nav__item {
    padding: 10px 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    width: 100%;
  }
  .nav__item.hover-1 a::after {
    display: none;
  }
  .nav__item:not(:last-child) {
    margin-right: auto;
  }
  .nav__item a {
    color: var(--header-link-mobile);
    padding: 0;
    text-align: left;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    font-weight: 700;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    font-size: 22px;
    padding: 5px 0;
  }
  .nav__item a:hover {
    color: var(--link-hover-header-mobile);
  }
  .menu .phones__wrap a {
    color: var(--header-link-mobile);
  }
  .menu .phones__wrap a:hover {
    color: var(--link-hover-header-mobile);
  }
  .header__address {
    color: var(--header-link-mobile);
  }
  .header__address:hover {
    color: var(--link-hover-header-mobile);
  }
  .open_menu .menu-item-has-children.nav__item > a {
    padding-right: 30px;
    padding-left: 30px;
  }
  .open_menu .nav__item > a {
    -webkit-animation: fadeInTopCustom 0.8s cubic-bezier(0.55, 0.085, 0, 0.99) forwards;
    animation: fadeInTopCustom 0.8s cubic-bezier(0.55, 0.085, 0, 0.99) forwards;
    -webkit-animation-delay: 1.65s;
    animation-delay: 1.65s;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  @-webkit-keyframes fadeInTopCustom {
    0% {
      -webkit-transform: translateY(-50px);
      transform: translateY(-50px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      overflow: visible;
      opacity: 1;
    }
  }
  @keyframes fadeInTopCustom {
    0% {
      -webkit-transform: translateY(-50px);
      transform: translateY(-50px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      overflow: visible;
      opacity: 1;
    }
  }
  .open_menu .nav__item:first-child > a {
    -webkit-animation-delay: 0.51s;
    animation-delay: 0.51s;
  }
  .open_menu .nav__item:nth-of-type(2) > a {
    -webkit-animation-delay: 0.48s;
    animation-delay: 0.48s;
  }
  .open_menu .nav__item:nth-of-type(3) > a {
    -webkit-animation-delay: 0.45s;
    animation-delay: 0.45s;
  }
  .open_menu .nav__item:nth-of-type(4) > a {
    -webkit-animation-delay: 0.42s;
    animation-delay: 0.42s;
  }
  .open_menu .nav__item:nth-of-type(5) > a {
    -webkit-animation-delay: 0.39s;
    animation-delay: 0.39s;
  }
  .open_menu .nav__item:nth-of-type(6) > a {
    -webkit-animation-delay: 0.36s;
    animation-delay: 0.36s;
  }
  .open_menu .nav__item:nth-of-type(7) > a {
    -webkit-animation-delay: 0.33s;
    animation-delay: 0.33s;
  }
  .open_menu .nav__item:nth-of-type(8) > a {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
  }
  .has_child::before {
    display: none;
  }
  nav .menu-item-has-children::before {
    display: none;
  }
  .nav__item > a:after {
    display: none;
  }
  .open_child_menu {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 30px;
    height: 30px;
    right: -5px;
    top: 5px;
  }
  .open_child_menu:after {
    content: "›";
    display: block;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    font-size: 23px;
    color: var(--header-link-mobile);
    pointer-events: none;
    font-weight: 400;
  }
  .open_child_menu:hover:after {
    color: var(--link-hover-header-mobile);
  }
  .footer .open_child_menu {
    top: 0;
  }
  .nav .sub-menu {
    width: 100%;
    max-width: 100%;
    padding: 0;
    background: transparent;
    /* border-radius: 0 0 2px 2px; */
    border-bottom: none;
    opacity: 1;
    pointer-events: all;
    display: block;
    z-index: 15;
    position: relative;
    top: calc(100% - 1px);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: none;
    text-align: center;
  }
  .fixed_header .sub-menu {
    background: transparent !important;
  }
  .sub-menu.active {
    /* transform: translateX(0); */
  }
  .close_child_menu {
    /* position: absolute;
    width: 30px;
    height: 30px;
    display: block;
    right: 16px;
    top: 16px;
    transform: rotate(180deg);
    background: url(../img/icons/menu_back.svg) no-repeat center / cover;
    cursor: pointer; */
  }
  .nav__item li {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
    text-align: center;
  }
  .nav__item li:first-child {
    margin-top: 5px;
  }
  .nav__item li:hover {
    -webkit-transform: none;
            transform: none;
  }
  .nav__item li:last-child {
    margin-bottom: 15px;
  }
  header .nav__item li a {
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    padding: 0;
    letter-spacing: 0.07em;
    color: var(--header-link-mobile);
    opacity: 0.7;
  }
  header .nav__item li a:hover {
    color: var(--link-hover-header-mobile);
  }
}
.lang {
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* justify-content: right; */
  color: var(--header-link-desktop);
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  position: relative;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  /* margin-left: auto; */
  margin-right: 15px;
}

.lang__block a,
.current__lang {
  font-size: 16px;
  position: relative;
}

.current__lang {
  padding-right: 20px;
}

.current__lang:before {
  content: "›";
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  font-size: 23px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 23px;
  color: var(--header-link-desktop);
  pointer-events: none;
  /* background: url(../img/icons/arrow_doun_input.svg) no-repeat center; */
}

.menu .lang {
  margin-top: 80px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: 0 !important;
}

.lang__block {
  position: absolute;
  width: 100%;
  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;
}

.lang__block a {
  color: var(--header-link-desktop);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.lang__block .current-lang {
  display: none;
}

.lang__block.open {
  z-index: 5;
  opacity: 1;
  pointer-events: all;
  top: 100%;
}

.section__title {
  font-size: 30px;
  position: relative;
  line-height: 1.2em;
  font-weight: 700;
  color: var(--dark-title);
  margin-left: 10%;
}

.section_dark {
  background-color: var(--section-dark-bg);
}

.section_dark * {
  color: var(--section-dark-color);
}

.section_dark .text__content a {
  color: var(--section-dark-color);
  text-decoration: underline;
}

.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;
  border: 1px solid var(--btn-main);
  background: var(--btn-main);
  width: 240px;
  height: 56px;
  font-weight: 700;
  font-size: 16px;
  color: var(--btn-color);
}

.btn:active,
.btn:hover {
  border: 1px solid var(--btn-main);
  background-color: var(--btn-color);
  color: var(--btn-color-tr);
}

.btn.btn_tr {
  border: 1px solid var(--btn-main);
  background-color: var(--btn-color);
  color: var(--btn-color-tr);
}

.btn.btn_tr:active,
.btn.btn_tr:hover {
  border: 1px solid var(--btn-main);
  background-color: var(--btn-main);
  color: var(--btn-color);
}

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

.c_light_dark {
  color: var(--dark-title) !important;
}

.c_white {
  color: var(--white) !important;
}

.bg__style {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.my-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

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

.head__section {
  padding-top: 120px;
  min-height: 750px;
  height: 100vh;
  overflow: hidden;
}

.footer {
  background-color: var(--footer-bg);
}

.footer .nav {
  margin-top: 0;
}

.footer .nav__list {
  margin-bottom: 0;
}

.footer__logo {
  display: block;
  width: 100%;
  max-width: 100px;
}

.footer__logo img {
  width: 100%;
  height: auto;
}

.footer .nav__item:not(:last-child) {
  margin-right: 25px;
  /* padding: 0; */
}

.footer .nav__item > a {
  font-weight: 400;
  margin: 0;
  color: var(--footer-link);
  position: relative;
  font-size: 16px;
}

.footer .nav__item > a:hover {
  color: var(--footer-link-hover);
}

.footer .menu-item-has-children::before {
  color: var(--footer-link);
}

.footer .nav__item.menu-item-has-children:hover:before {
  color: var(--footer-link-hover);
}

.footer .sub-menu {
  top: auto;
  bottom: calc(100% - 1px);
}

.footer .header__contact {
  color: var(--footer-link);
}

.footer .header__contact:hover {
  color: var(--footer-link-hover);
}

.scroll_up {
  position: fixed;
  bottom: 133px;
  right: 116px;
  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: 48px;
  height: 45px;
  line-height: 1em;
  -webkit-transform: translateX(400px);
          transform: translateX(400px);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.62, -0.87, 0.88, 0.8);
          transition-timing-function: cubic-bezier(0.62, -0.87, 0.88, 0.8);
  z-index: 50;
}

.scroll_up.visible_arrow {
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.88, -0.36, 0.16, 1.72);
  transition: -webkit-transform 0.8s cubic-bezier(0.88, -0.36, 0.16, 1.72);
  transition: transform 0.8s cubic-bezier(0.88, -0.36, 0.16, 1.72);
  transition: transform 0.8s cubic-bezier(0.88, -0.36, 0.16, 1.72), -webkit-transform 0.8s cubic-bezier(0.88, -0.36, 0.16, 1.72);
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.scroll_up svg {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  pointer-events: none;
}

.scroll_up:hover svg {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.parallax-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 130%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.head__swiper:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 2;
}

.head__swiper {
  height: 100%;
}

.head__swiper .swiper-slide {
  height: auto;
}

.head__swiper .swiper-wrapper {
  position: relative;
  z-index: 3;
}

.head__swiper .col-12 .offer__title {
  font-size: 48px;
}

.head__swiper .offer__title.offer__title_secondary {
  font-size: 42px;
}

.head__img,
.offer__wrap,
.offer__text,
.offer__title {
  /* transform: translateX(-50px);
  opacity: 0;
  transition: all .6s ease; */
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

/* .offer__text{
  transition-delay: 0.5s;
}
.offer__wrap{
  transition-delay: 0.7s;
}
.head__img{
  transition-delay: 0.9s;
} */
/* .swiper-slide-active .head__img,
.swiper-slide-active .offer__wrap,
.swiper-slide-active .offer__text,
.swiper-slide-active .offer__title{
  transform: translateX(0);
  opacity: 1;
} */
.swiper__arrows {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 5;
}

.swiper__arrow {
  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: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--btn-main);
  cursor: pointer;
  margin: 0 10px;
  opacity: 0.8;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.swiper__arrow.swiper-button-lock {
  opacity: 0;
  pointer-events: none;
}

.swiper__arrow:hover {
  opacity: 1;
  background-color: var(--btn-main);
}

.swiper__arrow path {
  fill: var(--btn-color-tr);
}

.swiper__arrow:hover path {
  fill: var(--btn-color);
}

.head__img img {
  width: 100%;
  height: auto;
}

.head__video {
  display: block;
  position: relative;
}

.head__video:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0.4;
}

.head__video:before {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 50px);
  top: calc(50% - 50px);
  width: 100px;
  height: 100px;
  background: url(../img/icons8-youtube-play.svg) no-repeat center/80px;
  -webkit-filter: invert(10%) sepia(82%) saturate(5963%) hue-rotate(359deg) brightness(95%) contrast(114%);
          filter: invert(10%) sepia(82%) saturate(5963%) hue-rotate(359deg) brightness(95%) contrast(114%);
  z-index: 3;
}

.text__content h2:not(:first-child),
.text__content h3:not(:first-child),
.text__content h4:not(:first-child) {
  margin-top: 1.8em;
}
.text__content p {
  line-height: 1.5em;
  margin-bottom: 1em;
  font-size: 18px;
}
.text__content p:last-child {
  margin-bottom: 0;
}
.text__content ol {
  list-style-type: decimal;
}
.text__content ol li {
  counter-increment: step-counter;
  list-style-type: none;
  padding-left: 30px;
  margin-bottom: 0.8em;
}
.text__content ol li:before {
  content: counter(step-counter) ". ";
  color: var(--body-color);
  font-size: inherit;
  width: auto;
  height: auto;
  background-color: transparent;
  top: 0px;
  left: 0px;
}

.text__content p b,
.text__content p strong {
  font-weight: 600;
}

.text__content h3 {
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: 700;
  color: var(--dark-title);
}

.text__content.text__content_right {
  padding-left: 70px;
}

.text__content ul {
  margin-bottom: 15px;
}
.text__content ul:last-child {
  margin-bottom: 0;
}

.text__content h4 {
  font-size: 20px;
  margin-bottom: 1em;
}

.text__content li {
  font-size: 18px;
  margin-bottom: 0;
  padding-left: 15px;
  position: relative;
  margin-bottom: 0.8em;
}
.text__content li:last-child {
  margin-bottom: 0;
}

.text__content li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--dark);
}

.text__content table {
  border-collapse: collapse !important;
  width: 100% !important;
  margin-bottom: 1em;
}

.text__content table tr:first-child td {
  font-size: 18px;
  padding-top: 0;
}

.text__content table tr {
  border-bottom: 1px solid var(--dark);
}

.text__content table td {
  font-size: 18px;
  padding: 12px 5px 12px 0;
}
.text__content table td b,
.text__content table td strong {
  font-weight: 600;
}

.text__content a {
  color: var(--link-color);
  font-size: 18px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.text__content a.btn {
  color: var(--btn-color);
}

.text__content a:hover {
  color: var(--link-color-hover);
}

.text__content iframe {
  max-width: 100%;
  margin: 0 auto 25px;
  display: block;
}

.about__img img {
  width: 100%;
  height: auto;
  border: 35px solid var(--img_border);
}

.about__img {
  position: relative;
  overflow: hidden;
}

.overflow__translate::after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.801);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 3;
  -webkit-animation: rn_surfaceBack 1.5s cubic-bezier(0.8, 0, 0.18, 1) both;
          animation: rn_surfaceBack 1.5s cubic-bezier(0.8, 0, 0.18, 1) both;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  /* transform-origin: left; */
}

@-webkit-keyframes rn_surfaceBack {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(105%);
            transform: translateX(105%);
  }
}

@keyframes rn_surfaceBack {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(105%);
            transform: translateX(105%);
  }
}
.black_white.lesson .lesson_item:nth-child(4n+2) .lesson_card {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.black_white.lesson .lesson_item:nth-child(4n+3) .lesson_card {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.lesson_card {
  display: block;
  position: relative;
  height: 380px;
  background-color: var(--body-bg);
  overflow: hidden;
}

.lesson_card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.lesson_card:hover img {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.lesson_card:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgb(155, 155, 155);
  opacity: 0.2;
  z-index: 1;
}

.lesson__link {
  font-size: 20px;
  font-weight: 600;
}

.lesson__link:hover {
  color: var(--link-color-hover);
}

.section_dark .lesson__name {
  color: var(--link-color-dark-section-card);
}

.section_dark .text__content li::before {
  background-color: var(--btn-main);
}

.lesson__name {
  position: absolute;
  left: 40px;
  top: 40px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 3;
}

.lesson__name .lesson_card:hover .lesson__name {
  top: 25px;
}

.callback:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.7);
}

.mosaic__img {
  position: relative;
  overflow: hidden;
}

.mosaic__img img {
  width: 100%;
  height: auto;
}

.mosaic__img .swiper-slide {
  overflow: hidden;
}

.mosaic__title {
  width: 80%;
}

.mosaic__post {
  width: 100%;
}

.text__content .mosaic__date,
.mosaic__date {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

.mosaic__post .swiper-slide {
  opacity: 0 !important;
  /* transition: all .4s ease;   */
}

.mosaic__post .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}

.mosaic__post .text__content {
  padding-left: 20px;
}

.mosaic.mosaic_cat:nth-child(odd) .mosaic__img,
.mosaic.mosaic_group:nth-child(odd) .mosaic__img,
.mosaic.mosaic_main:nth-child(odd) .mosaic__img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.mosaic:before {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--white);
}

.mosaic:nth-child(odd):before {
  left: 50%;
}

.mosaic .mosaic__wrap {
  background-color: var(--white);
}
.mosaic .mosaic__content {
  padding: 25px;
}

.mosaic__permalink {
  color: var(--link-color);
  font-weight: 700;
  font-size: 18px;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 25px;
}

.mosaic__permalink:hover {
  color: var(--link-color-hover);
}

.contact__item a {
  color: var(--link-color);
  font-size: 18px;
  font-weight: 600;
}

.contact__item:hover a {
  color: var(--link-color-hover);
}

.contact__item a path {
  fill: var(--link-color);
}

.contact__item a:hover path {
  fill: var(--link-color-hover);
}

.contact__item .social__wrap .social__link {
  width: 30px;
  height: 30px;
}

.contact__icon {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
}

.contact__icon svg {
  width: 100%;
  height: 100%;
}

.contact__icon path {
  fill: var(--link-color-hover);
}

.form__wrap_callback {
  max-width: 550px;
  margin: 0 auto;
}

.map iframe {
  width: 100%;
  height: 500px;
}

.mosaic_about:before {
  display: none;
}

.mosaic_about .mosaic__img img {
  border: 35px solid var(--img_border);
}

.video__img a {
  display: block;
  position: relative;
}

.video__img img {
  width: 100%;
  height: auto;
  border: 35px solid var(--img_border);
}

.section_dark img {
  border-color: var(--dark-img-border) !important;
}

.video__img a.video__link:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0.4;
}

.video__img a.video__link:before {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 50px);
  top: calc(50% - 50px);
  width: 100px;
  height: 100px;
  background: url(../img/icons8-youtube-play.svg) no-repeat center/80px;
  -webkit-filter: invert(10%) sepia(82%) saturate(5963%) hue-rotate(359deg) brightness(95%) contrast(114%);
          filter: invert(10%) sepia(82%) saturate(5963%) hue-rotate(359deg) brightness(95%) contrast(114%);
  z-index: 3;
}

.row .team__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  width: 100%;
}

.team__slide {
  height: auto;
}

.team__img {
  height: 380px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.team__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.team__describe {
  height: calc(100% - 380px);
  text-align: center;
  padding: 20px 15px;
}

.slider_init .swiper__arrow {
  position: absolute;
  top: calc(50% - 25px);
  z-index: 5;
}

.slider_init .swiper__arrow.swiper__left {
  left: 5px;
  margin: 0;
}

.slider_init .swiper__arrow.swiper__right {
  right: 5px;
}

.review__slide {
  border: 30px solid var(--white);
  padding: 25px;
  height: auto;
  -ms-flex-line-pack: baseline;
      align-content: baseline;
}

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

.slider__arrows .swiper__arrow {
  position: static;
  top: auto;
  left: auto;
}
.slider__arrows .swiper__arrow.swiper__right {
  top: auto;
  left: auto;
  right: auto;
}

.team__slide:hover .team__name {
  color: var(--link-color-hover);
}

.team__slide .team__img {
  overflow: hidden;
}

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

.team__slide:hover .team__img img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.person__img img {
  width: 100%;
  height: auto;
  border: 30px solid var(--img_border);
}

.blog__thumnail {
  display: block;
  height: 300px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.blog__categpry {
  position: sticky;
  top: 130px;
  z-index: 555;
}

.blog__card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.blog__thumnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.blog__thumnail_min {
  height: 220px;
}

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

.blog__short iframe {
  max-width: 100%;
}

.blog__info {
  background-color: var(--white);
  padding: 20px 15px;
  height: 100%;
}

.blog__nav {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--dark);
}

.blog__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-title);
  margin-bottom: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.blog__short {
  text-decoration: none !important;
}

.blog__card .mosaic__date {
  color: var(--body-color);
  text-decoration: none;
}

.blog__short p {
  color: var(--body-color);
  text-decoration: none;
}

.blog__name:hover {
  color: var(--link-color-hover);
}

.blog__menu li:not(:last-child) {
  margin-bottom: 15px;
}

.blog__menu li a {
  font-size: 20px;
  font-weight: 600;
  color: var(--link-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 30px;
}

.blog__menu li.current-menu-item a,
.blog__menu li a:hover {
  color: var(--link-color-hover);
}

.close_catalog {
  width: 32px;
  height: 32px;
  background: url(../img/icons/close_price.svg) no-repeat center;
  outline: none;
  margin-left: auto;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 15px;
  display: none;
}

.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;
  margin-top: 50px;
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  font-weight: 300;
  font-size: 18px;
  color: var(--link-color);
  margin: 0 9px;
}

.page-numbers.prev,
.page-numbers.next,
span.page-numbers.prev,
span.page-numbers.next {
  width: 30px;
  height: 30px;
  border: 1px solid var(--btn-main);
  background-color: var(--btn-color);
  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: 14px;
  border-radius: 50px;
  cursor: pointer;
  margin: 0 15px;
}

.page-numbers.prev svg,
.page-numbers.next svg,
span.page-numbers.prev svg,
span.page-numbers.next svg {
  width: 100%;
  height: 100%;
}

.page-numbers.prev path,
.page-numbers.next path,
span.page-numbers.prev path,
span.page-numbers.next path {
  fill: var(--link-color);
}

.page-numbers.current,
.page-numbers:hover {
  font-weight: 500;
  color: var(--link-color-hover);
}

.single__thumbnail_block {
  width: auto;
  height: auto;
  max-height: 600px;
  overflow: hidden;
}

.single__thumbnail {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 25px;
  position: relative;
  display: block;
  height: 100%;
  max-width: 600px;
}

.single__thumbnail img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: cover;
  max-width: 100%;
  -o-object-position: center;
  object-position: center;
  max-height: 100%;
}

.single__gallary {
  height: 380px;
  text-align: center;
}
.single__gallary a {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
}
.single__gallary a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4) url(../img/zoom.svg) no-repeat center/24px;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  pointer-events: none;
}
.single__gallary a:hover::before {
  opacity: 1;
}

.single__gallary img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.single__gallary.single__gallary_big {
  width: auto;
  height: auto;
  overflow: hidden;
}
.single__gallary.single__gallary_big a {
  max-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}

.single__gallary.single__gallary_big img {
  width: auto;
  height: auto;
  max-height: 600px;
  max-width: 100%;
}

.open_sub_menu {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 3px;
  color: var(--white);
  background-color: var(--dark);
  z-index: 3;
  font-size: 27px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.open_sub_menu::after, .open_sub_menu::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--white);
  position: absolute;
  left: 5px;
  top: 14px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  pointer-events: none;
}
.open_sub_menu::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.blog__menu .menu-item-has-children {
  position: relative;
}

.blog__menu .menu-item-has-children.open .open_sub_menu {
  color: var(--link-color-hover);
}
.blog__menu .menu-item-has-children.open .open_sub_menu::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.blog__menu .menu-item-has-children.open .open_sub_menu::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.blog__menu .sub-menu {
  background-color: transparent;
  position: static;
  border: none;
  padding: 0 0 0 15px;
  -webkit-transform: none !important;
          transform: none !important;
  pointer-events: all;
}

.blog__menu .open_sub_menu {
  pointer-events: none;
}

.blog__menu .open_child_menu {
  display: none;
}

.blog__menu .sub-menu li {
  text-align: left;
}

.blog__menu .sub-menu li:first-child {
  padding-top: 10px;
}

.blog__menu .sub-menu:after,
.blog__menu .sub-menu:before {
  display: none;
}

.cat__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 160px;
  padding-bottom: 100px;
  min-height: 450px;
  overflow: hidden;
  position: relative;
}
.cat__head:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 2;
}
.cat__head .container {
  z-index: 2;
}

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

.read__more {
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--link-color);
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.read__more.active, .read__more:hover {
  color: var(--link-color-hover);
}

/* 
    \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
   Blog page end
    \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
    */
/* 
    \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
   work end
    \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
    */
/*
.ff_Kyiv 
.ff_Garamond 
    .mt_10 .mt_15 .mt_20 .mt_30 .mt_35 .mt_40 .mt_45 .mt_50 
    .mb_10 .mb_15 .mb_20 .mb_25 .mb_30 .mb_35 .mb_40 .mb_45 .mb_50
ff_futura

    */
/* 
    ////////////////////////////////////////
    callback start
    ////////////////////////////////////////
    */
.input__group {
  margin-bottom: 30px;
  position: relative;
}

.input__group input {
  width: 100%;
  display: block;
  border: none;
  border-radius: 0;
  color: var(--dark);
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  height: 60px;
  padding-left: 30px;
  border: 1px solid var(--dark);
}

.form__wrap_popup {
  max-width: 504px;
  width: 100%;
  margin: 0 auto;
}

.form__wrap_popup .input__group input {
  border: 1px solid var(--dark);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  font-size: 16px;
}

/* .order__input_name {
          background: url(../img/user_icon_orange.png) no-repeat left center;
        }

        .order__input_phone {
          background: url(../img/phone_icon_orange.png) no-repeat left center;
        } */
.select_span,
.place_span {
  position: absolute;
  left: 20px;
  padding: 0 10px;
  top: -20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  pointer-events: none;
  font-size: 16px;
  color: var(--body-color);
}

.place_span span {
  color: #dc1118;
}

.order__input_message {
  height: 100px;
  padding: 20px 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: var(--dark);
  opacity: 1;
  border: none;
  width: 100%;
  display: block;
  border: 1px solid var(--dark);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0px;
  background-color: transparent;
}

input.check_input {
  display: block;
  width: 16px;
  height: 16px;
  opacity: 0;
  margin-right: 10px;
}

.wpcf7-radio,
.wpcf7-acceptance {
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0px;
  background-color: var(--white);
  border: 1px solid var(--dark);
  border-radius: 2px;
  cursor: pointer;
}

.wpcf7-acceptance input {
  cursor: pointer;
}

.wpcf7-acceptance * {
  margin: 0 !important;
}

.wpcf7-radio.checked_radio,
.wpcf7-acceptance.checked_inp {
  background: var(--white) url(../img/icons/correct.svg) no-repeat center/9px;
}

input.wpcf7-not-valid {
  border-color: red !important;
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(141, 126, 118, 0.4);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  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;
  pointer-events: none;
  z-index: -9;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.popup.open {
  pointer-events: all;
  z-index: 999999;
  opacity: 1;
}

.popup__content {
  width: 98%;
  max-width: 902px;
  padding: 80px 70px 80px;
  position: relative;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  max-height: 98%;
  overflow-y: auto;
  background: var(--white);
  -webkit-box-shadow: 0px 4px 40px rgba(141, 126, 118, 0.5);
          box-shadow: 0px 4px 40px rgba(141, 126, 118, 0.5);
  overflow: auto;
}

.popup.open .popup__content {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  position: relative;
  /* top: 50%; */
}

.form__wrap_popup .input__group {
  width: 100%;
}

.consult_calc .form__wrap_popup .input__group {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.consult_calc .form__wrap_popup .input__group.input__group_check {
  height: 60px;
}

.form__wrap_popup .input__group.input__group_select {
  width: 47%;
}

.checkbox__text a {
  color: var(--white);
  border-bottom: 1px solid var(--white);
}

.close_popup {
  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: 25px;
  height: 25px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
}

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

.close_popup svg {
  width: 20px;
  height: 20px;
}

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

.btn.btn_popup {
  width: 100%;
  padding-right: 0;
}

.xyz_start {
  opacity: 0;
}

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

.popup_ellips {
  position: absolute;
  left: 0;
  top: 0;
  width: 600px;
  pointer-events: none;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  display: none;
}

.unical .text__content p a,
.mosaik .text__content p a {
  text-decoration: underline;
}

.single_section .single_section__img {
  position: relative;
}
.single_section .single_section__img img {
  width: 100%;
  height: auto;
  border: 35px solid var(--img_border);
}
.single_section .single_section__img.video__link:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0.4;
}
.single_section .single_section__img.video__link:before {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 50px);
  top: calc(50% - 50px);
  width: 100px;
  height: 100px;
  background: url(../img/icons8-youtube-play.svg) no-repeat center/80px;
  -webkit-filter: invert(10%) sepia(82%) saturate(5963%) hue-rotate(359deg) brightness(95%) contrast(114%);
  filter: invert(10%) sepia(82%) saturate(5963%) hue-rotate(359deg) brightness(95%) contrast(114%);
  z-index: 3;
}
.single_section.section_dark .section__title {
  color: var(--white);
}

@media screen and (max-width: 1400px) {
  .nav__item {
    margin-right: 17px;
  }
  .footer .nav__item:not(:last-child) {
    margin-right: 17px;
  }
  .menu-item-has-children > a {
    /* padding-right: 0; */
  }
  section.pt_50 {
    padding-top: 45px;
  }
  section.pb_50 {
    padding-bottom: 45px;
  }
  .scroll_up {
    right: 80px;
    bottom: 80px;
  }
  .head__swiper .col-12 .offer__title {
    font-size: 44px;
  }
  .head__swiper .offer__title.offer__title_secondary {
    font-size: 38px;
  }
  .offer__text {
    font-size: 20px;
  }
  .text__content li,
  .text__content p {
    font-size: 16px;
  }
  .text__content li a,
  .text__content p a {
    font-size: 16px;
  }
  .lesson_card {
    height: 360px;
  }
  .mosaic__img {
    height: auto;
  }
  .text__content h3 {
    font-size: 20px;
  }
  .team__img {
    height: 330px;
  }
  .team__describe {
    height: calc(100% - 330px);
  }
  .single__gallary {
    height: 300px;
  }
  .phones__wrap a {
    font-size: 16px;
  }
  .blog__thumnail {
    height: 260px;
  }
}
@media screen and (max-width: 1199px) {
  .pb_100,
  .pb_110,
  .pb_120 {
    padding-bottom: 90px;
  }
  .pt_100,
  .pt_110,
  .pt_120 {
    padding-top: 90px;
  }
  section.pt_50 {
    padding-top: 40px;
  }
  section.pb_50 {
    padding-bottom: 40px;
  }
  .footer .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer .nav__item {
    margin: 0;
    margin-right: 30px;
    padding: 0;
    width: auto;
  }
  .footer .nav__item li {
    text-align: left;
  }
  .footer .nav__item > a {
    -webkit-transform: none;
            transform: none;
    font-size: 15px;
    margin: 0;
  }
  .menu .phones {
    padding: 0;
  }
  .menu .nav__item {
    padding: 0;
  }
  .scroll_up {
    right: 50px;
    bottom: 50px;
  }
  /* .menu .nav__item a {
    font-size: 20px;
  } */
  .footer .menu-item-has-children.nav__item > a {
    padding-right: 22px;
  }
  .footer .menu-item-has-children.nav__item {
    position: relative;
    overflow: inherit;
  }
  .footer .sub-menu {
    top: auto;
    bottom: 110%;
    position: absolute;
    /* position: static; */
    width: 230px;
    text-align: left;
    padding: 5px;
    max-width: initial;
    background: #fff;
  }
  .custom-logo-link,
  .custom_logo {
    width: 75px;
    height: 75px;
    overflow: hidden;
  }
  .phones__wrap a {
    font-size: 14px;
  }
  .nav__item a {
    font-size: 14px;
  }
  .footer .phones__wrap,
  .menu .phones__wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 0;
  }
  .lesson_card {
    height: 330px;
  }
  .mosaic__title {
    width: 100%;
  }
  .mosaic__post .text__content {
    padding-left: 0;
  }
  .text__content h3 {
    margin-bottom: 15px;
  }
  .text__content p {
    line-height: 1.6em;
  }
  .single__gallary {
    height: 250px;
  }
  .blog__thumnail {
    height: 240px;
  }
  .blog__name {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .pb_100,
  .pb_110,
  .pb_120 {
    padding-bottom: 80px;
  }
  .pt_100,
  .pt_110,
  .pt_120 {
    padding-top: 80px;
  }
  .breadcrumbs {
    padding-top: 100px;
  }
  .pb_90 {
    padding-bottom: 70px;
  }
  .pt_90 {
    padding-top: 70px;
  }
  .pb_80 {
    padding-bottom: 65px;
  }
  .pt_80 {
    padding-top: 65px;
  }
  .footer .nav__list {
    display: block;
  }
  .footer .nav__item {
    margin-bottom: 10px;
  }
  .scroll_up {
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
  }
  .scroll_up svg {
    width: 100%;
    height: auto;
  }
  .nav__item a {
    font-size: 22px;
  }
  .lang {
    margin-left: auto;
    margin-right: 10px;
  }
  .menu-item-has-children.nav__item > a {
    padding-right: 27px;
  }
  footer .nav__item li {
    text-align: left;
  }
  footer .nav__item li a {
    color: var(--footer-link);
    font-size: 14px;
    text-align: left;
    opacity: 0.8;
  }
  .footer .sub-menu {
    position: static;
    -webkit-transform: none;
            transform: none;
    padding: 0;
    background-color: transparent;
  }
  footer .nav__item a:hover,
  footer .nav__item li a:hover {
    color: var(--footer-link-hover);
  }
  .footer .sub-menu.active {
    margin: 15px 0;
  }
  .phones__wrap {
    /* margin-left: auto; */
    margin-right: 25px;
  }
  .head__section {
    height: auto;
    min-height: 650px;
    padding-bottom: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .head__img {
    width: 400px;
    margin: 25px auto 0;
  }
  .offer {
    text-align: center;
  }
  .head__swiper .col-12 .offer__title {
    font-size: 36px;
  }
  .head__swiper .offer__title.offer__title_secondary {
    font-size: 36px;
  }
  .offer__text {
    font-size: 20px;
  }
  .section__title {
    font-size: 28px;
  }
  .lesson_card {
    height: 280px;
  }
  .mosaic__img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .mosaic__thumb {
    padding-top: 0;
    margin-top: 25px;
  }
  .mosaic__thumb .swiper-slide {
    overflow: hidden;
  }
  .mosaic__thumb .swiper-slide img {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .mosaic__img.mosaic__thumb img {
    border: 20px solid var(--img_border);
  }
  .mosaic:before {
    display: none;
  }
  .mosaic__permalink {
    margin-top: 15px;
  }
  .mosaic__post {
    margin-bottom: 5px;
  }
  .page-template-single .mosaic,
  .single .mosaic {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .section_dark img {
    border-width: 20px;
  }
  .mosaic {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .mosaic.mosaic_main {
    padding-top: 40px;
  }
  .mosaic.mosaic_main .mosaic__mob_block {
    padding: 30px 15px;
    background-color: #fff;
  }
  .mosaic.mosaic_cat:nth-child(even) .mosaic__img,
  .mosaic.mosaic_group:nth-child(even) .mosaic__img,
  .mosaic.mosaic_cat:nth-child(odd) .mosaic__img,
  .mosaic.mosaic_group:nth-child(odd) .mosaic__img {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-bottom: 20px;
  }
  .mosaic.mosaic_main:nth-child(even) .mosaic__img,
  .mosaic.mosaic_main:nth-child(odd) .mosaic__img {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-bottom: 0px;
    margin-top: 0;
  }
  .swiper__arrow.swiper-button-lock {
    display: none !important;
  }
  .mosaic__img .swiper-slide {
    height: 400px;
  }
  .mosaic__img .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section__title_callback {
    margin-left: 0;
    text-align: center;
  }
  .callback__offer {
    text-align: center;
  }
  .form__wrap_callback {
    margin: 0 auto;
  }
  .person__img img {
    max-width: 400px;
  }
  .mosaic .mosaic__prev {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .mosaic:nth-child(odd) .mosaic__img,
  .mosaic__img.mosaic__img_thumbnail {
    height: auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .mosaic .mosaic__content {
    padding-top: 0;
  }
  .mosaic_about .mosaic__img img {
    border-width: 20px;
  }
  .close_catalog {
    display: block;
  }
  .blog__popular,
  .blog__nav {
    width: 300px;
    height: 100vh;
    overflow-y: auto;
    padding: 40px 15px 30px;
    position: fixed;
    left: -300px;
    top: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-color: var(--body-bg);
    -webkit-box-shadow: 0px 0 0px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 0 0px 0px rgba(0, 0, 0, 0.2);
    z-index: 600;
  }
  .blog__popular._show,
  .blog__nav._show {
    left: 0;
    -webkit-box-shadow: 0px 0 10px 3px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 0 10px 3px rgba(0, 0, 0, 0.2);
  }
  .single__gallary {
    height: 200px;
  }
  .single__gallary a::before {
    opacity: 1;
    width: 40px;
    height: 40px;
    left: auto;
    top: auto;
    right: 0;
    bottom: 0;
  }
  .cat__head {
    padding-top: 100px;
  }
  .blog__thumnail {
    height: 260px;
  }
  .single_section .single_section__img img {
    border-width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .head__swiper .col-12 .offer__title,
  .head__swiper .offer__title.offer__title_secondary {
    font-size: 32px;
  }
  .about__img img {
    border-width: 25px;
  }
  .section__title {
    margin-left: 0;
  }
  .single__gallary {
    height: 180px;
  }
  .blog .section__title {
    text-align: center;
  }
  .lesson__name {
    top: 20px;
    left: 20px;
  }
}
@media screen and (max-width: 576px) {
  .head__swiper .col-12 .offer__title,
  .head__swiper .offer__title.offer__title_secondary {
    font-size: 26px;
  }
  .head__img {
    width: 360px;
    max-width: 100%;
  }
  .mosaic__post {
    margin-bottom: 15px;
  }
  .contact__item a {
    font-size: 16px;
  }
  .contact__icon {
    width: 45px;
    height: 45px;
  }
  .contact__item .social__wrap .social__link {
    width: 25px;
    height: 25px;
    margin-right: 6px;
  }
  .team__img,
  .team__describe {
    width: 100%;
    margin: 0 auto;
    max-width: 320px;
    margin: 0 auto;
  }
  .blog__thumnail {
    height: 270px;
  }
  .single__gallary {
    height: 150px;
  }
  .text__content td,
  .text__content td a {
    font-size: 16px;
  }
  .slider_init .swiper-container .swiper__arrow {
    top: auto;
    bottom: 0;
  }
  .slider_init .swiper-container .swiper__arrow.swiper__left {
    left: calc(50% - 55px);
  }
  .slider_init .swiper-container .swiper__arrow.swiper__right {
    right: calc(50% - 55px);
  }
  .mosaic__img .swiper-slide {
    height: auto;
  }
  .mosaic__img .swiper-slide img {
    width: 100%;
    height: auto;
    -o-object-fit: initial;
       object-fit: initial;
  }
  .black_white.lesson .lesson_item:nth-child(4n+2) .lesson_card {
    -webkit-filter: none;
            filter: none;
  }
  .black_white.lesson .lesson_item:nth-child(4n+3) .lesson_card {
    -webkit-filter: none;
            filter: none;
  }
  .black_white.lesson .lesson_item:nth-child(even) .lesson_card {
    -webkit-filter: grayscale(1) !important;
            filter: grayscale(1) !important;
  }
}
@media screen and (max-width: 350px) {
  .head__img {
    width: 290px;
  }
}
@media screen and (max-width: 374px) {
  .custom-logo-link,
  .custom_logo {
    width: 46px;
    height: 46px;
  }
  .lang__block a,
  .current__lang {
    font-size: 14px;
  }
  .phones__wrap {
    margin-right: 15px;
  }
}
fxwidget-cc {
  background-color: #dc1118;
}
fxwidget-cc .fx-widget.card {
  background-color: #dc1118 !important;
}

.card .card-body {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}
.card .card-body label.form-group {
  width: 100% !important;
}
.card .card-body .form-group {
  width: 48% !important;
}

.fancybox-container {
  z-index: 999999;
}

.compensate-for-scrollbar {
  margin-right: 0 !important;
}/*# sourceMappingURL=main.css.map */