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

:root {
  --app-height: 100%;
  --white: #ffffff;
  --dark: #261c37;
  --light: #faf9fd;
  --grey: #5b5663;
  --lightgrey: #e4e2eb;
  --qadark: #5d5088;
  --qamid: #a58ab5;
  --qamain: #c1b4e0;
}

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

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

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

.c_light {
  color: var(--light);
}

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

.c_qamain {
  color: var(--qamain);
}

.c_qamid {
  color: var(--qamid);
}

.c_qadark {
  color: var(--qadark);
}

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

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

.bg_qamain {
  background-color: var(--qamain);
}

.bg_qamid {
  background-color: var(--qamid);
}

.bg_qadark {
  background-color: var(--qadark);
}

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

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

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

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

.swiper-container {
  overflow: hidden;
}

.xyz_start {
  opacity: 0;
}

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

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

section {
  position: relative;
}

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

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

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

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

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

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

li {
  display: block;
}

p {
  margin-bottom: 0;
}

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

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

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

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

.container {
  position: relative;
}

a.btn,
button.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Geologica", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: 700;
  height: 60px;
  width: 200px;
  position: relative;
  border-radius: 10px;
  background-color: var(--qamain);
  color: var(--white);
  border: 1px solid var(--qamain);
}
a.btn:hover,
button.btn:hover {
  background-color: var(--dark);
  border-color: var(--dark);
}
a.btn.btn_dark,
button.btn.btn_dark {
  background-color: var(--qamid);
  border: 1px solid var(--qamid);
}
a.btn.btn_dark:hover,
button.btn.btn_dark:hover {
  background-color: var(--dark);
  border-color: var(--dark);
}
a.btn.btn_tr,
button.btn.btn_tr {
  background-color: transparent;
  color: var(--qamid);
  border: 1px solid var(--qamid);
}
a.btn.btn_tr:hover,
button.btn.btn_tr:hover {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 30px 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: var(--white);
}
.header.header_fixed {
  padding: 15px 0;
}

.header__contact {
  margin-left: 90px;
}

.header__btn:hover {
  color: var(--qadark);
}

.header__phone:hover {
  color: var(--qamid);
}

.lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 35px;
}
.lang li {
  margin: 0 5px;
}
.lang li a {
  font-family: "Geologica";
  font-size: 14px;
  font-weight: 700;
  color: var(--lightgrey);
}
.lang li a:hover {
  color: var(--qamid);
}
.lang li.current-lang {
  display: none;
}
.lang li.current-lang a {
  color: var(--qamid);
}

.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;
  overflow: hidden;
  border-radius: 4px;
  margin-left: 10px;
}
.header_social a:first-child {
  margin-left: 0;
}
.header_social a:hover path {
  fill: var(--qadark);
}

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

.nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
.nav__menu .nav__item {
  position: relative;
  margin-right: 40px;
}
.nav__menu .nav__item:last-child {
  margin-right: 0;
}
.nav__menu .nav__item a {
  font-size: 14px;
  font-family: "Geologica", sans-serif;
  font-weight: 700;
  line-height: 1.2em;
  padding: 0;
  color: var(--dark);
  position: relative;
}
.nav__menu .nav__item a:hover {
  color: var(--qamid);
}

.menu__burger {
  display: none;
  width: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.menu__burger span {
  display: block;
  height: 2px;
  width: 24px;
  border-radius: 5px;
  background-color: var(--qadark);
  margin-bottom: 6px;
  pointer-events: none;
}
.menu__burger span:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1199px) {
  .header {
    padding: 12px 0;
    border-bottom: none;
  }
  .nav {
    position: fixed;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    padding: 12px;
    z-index: 999999;
    right: -450px;
    top: 0;
    opacity: 0;
    pointer-events: none;
    background: var(--white);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding-bottom: 100px;
    overflow-y: auto;
    padding-top: 0;
    margin: 0;
  }
  .nav.open_menu {
    right: 0;
    top: 0px;
    opacity: 1;
    pointer-events: all;
  }
  .nav .nav__row {
    width: 100%;
    margin-bottom: 40px;
    padding: 30px 0;
    position: relative;
  }
  .nav .nav__row .custom-logo-link {
    width: 160px;
  }
  .nav .menu__close {
    width: 36px;
    height: 36px;
    background: url(../img/close.svg) no-repeat center;
    outline: none;
    /* margin-left: auto; */
    position: relative;
    background-color: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .nav .menu__close > * {
    pointer-events: none;
  }
  .nav .nav__menu {
    width: 100%;
    display: block;
    margin-bottom: 45px;
  }
  .nav .lang {
    margin-bottom: 30px;
  }
  .nav .lang li {
    margin: 0 10px;
  }
  .menu__burger {
    display: block;
    cursor: pointer;
    background-color: transparent;
    border: none;
  }
  .nav .nav__item {
    margin-bottom: 40px;
    width: 100%;
    text-align: center;
    margin-right: 0;
  }
  .nav .nav__item a {
    font-size: 14px;
    position: relative;
    color: var();
  }
}
.section__title {
  font-family: "Geologica", sans-serif;
  font-size: 55px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 55px */
  text-transform: uppercase;
  color: var(--dark);
}

.section__subtitle {
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--qamid);
  margin-bottom: 20px;
}

.text_1 {
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.text__content.text_1 p,
.text__content.text_1 li {
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  color: var(--grey);
}
.text__content.text_1 li {
  padding-left: 21px;
  position: relative;
}
.text__content.text_1 li:before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 3px;
  background-color: var(--grey);
  position: absolute;
  left: 9px;
  top: 9px;
}

@media screen and (max-width: 1439px) {
  .section__title {
    font-size: 48px;
  }
}
@media screen and (max-width: 1199px) {
  .section__title {
    font-size: 42px;
  }
}
@media screen and (max-width: 991px) {
  .section__title {
    font-size: 36px;
  }
}
@media screen and (max-width: 576px) {
  .section__title {
    font-size: 29px;
  }
}
.form__wrap {
  width: 100%;
}
.form__wrap .input__group {
  margin-bottom: 20px;
}
.form__wrap .input__group .label {
  color: var(--dark);
  font-family: "Geologica";
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 10px;
}
.form__wrap .input__group .order__input {
  display: block;
  width: 100%;
  height: 50px;
  padding-left: 20px;
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  background-color: transparent;
  border: 1px solid var(--lightgrey);
  border-radius: 10px;
  background-color: var(--white);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input.wpcf7-not-valid {
  border-color: red;
}
.form__wrap .input__group .order__input::-webkit-input-placeholder {
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  color: #a09ea4;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-moz-placeholder {
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  color: #a09ea4;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input:-ms-input-placeholder {
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  color: #a09ea4;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-ms-input-placeholder {
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  color: #a09ea4;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::placeholder {
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  color: #a09ea4;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input:focus {
  border-color: var(--qamid);
}
.form__wrap .input__group .order__input.order__input_message {
  height: 100px;
  padding-top: 16px;
  padding-left: 20px;
}
.form__wrap .wpcf7-not-valid-tip {
  font-size: 18px;
  color: var(--orange);
}

.head__section {
  min-height: 600px;
  padding-top: 111px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.head__section .container {
  padding-top: 195px;
  padding-bottom: 115px;
}
.head__section .head__video {
  position: absolute;
  left: 12px;
  top: 0;
  width: calc(100% - 24px);
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.head__section .head__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.head__section .head__video:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(38, 28, 55, 0.3);
  pointer-events: none;
}
.head__section .offer h1 {
  font-family: "Geologica", sans-serif;
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 70px */
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.head__section .offer p {
  margin-bottom: 30px;
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--white);
}

@media screen and (max-width: 1439px) {
  .lang {
    margin: 0 18px;
  }
  .header__contact {
    margin-left: 40px;
  }
  .head__section .offer h1 {
    font-size: 60px;
  }
  .header {
    padding: 15px 0;
  }
  .head__section {
    padding-top: 81px;
  }
  .head__section .container {
    padding-top: 170px;
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 991px) {
  .head__section .offer h1 {
    font-size: 50px;
  }
  .head__section .offer {
    padding: 0 40px;
  }
}
@media screen and (max-width: 576px) {
  .head__section .offer h1 {
    font-size: 12.5vw;
  }
}
.about .about__img {
  width: 200px;
  height: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.about .about__img img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.about .about__img a {
  border-radius: 50%;
  background-color: var(--dark);
  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;
  position: absolute;
  right: 0;
  bottom: 0;
}
.about .about__img a:hover {
  background-color: var(--qamid);
}
.about .about__img a svg {
  border-radius: 4px;
}
.about .about__more svg {
  margin-left: 10px;
}
.about .about__more:hover {
  color: var(--qamid);
}

@media screen and (max-width: 1439px) {
  .about {
    padding-top: 90px;
  }
}
@media screen and (max-width: 1199px) {
  .about {
    padding-top: 80px;
  }
}
@media screen and (max-width: 991px) {
  .about__author {
    margin-bottom: 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .about .about__img {
    width: 158px;
    height: 158px;
    margin-bottom: 40px;
  }
  .about__head {
    width: 100%;
  }
  section.pt_60 {
    padding-top: 50px;
  }
  section.pb_60 {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 576px) {
  .icon_qwot {
    display: none;
  }
}
.advant .swiper-wrapper {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.advant .advant__item {
  border-radius: 20px;
  padding: 20px;
  height: auto;
}
.advant .advant__item.col-xxl-3 {
  width: calc(25% - 12px);
}
.advant .advant__item.col-xxl-2 {
  width: calc(16.6666666667% - 12px);
}
.advant .advant__item.col-xxl-4 {
  width: calc(33.3333333333% - 12px);
}
.advant .advant__item .advant__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.advant .advant__item p {
  line-height: 1.5em;
}

@media screen and (max-width: 1439px) {
  .advant .advant__item.col-xxl-4 {
    width: calc(30% - 12px);
  }
}
@media screen and (max-width: 1199px) {
  .advant .advant__item.col-xxl-3,
  .advant .advant__item.col-xxl-2,
  .advant .advant__item.col-xxl-4 {
    width: calc(25% - 10px);
  }
}
.swiper__arrows .swiper__arrow {
  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%;
  border: 1px solid var(--qamid);
}
.swiper__arrows .swiper__arrow.swiper__arrow_left {
  margin-right: 10px;
}
.swiper__arrows .swiper__arrow:hover {
  background-color: var(--qamid);
}
.swiper__arrows .swiper__arrow:hover path {
  fill: var(--white);
}

.course {
  padding-bottom: 140px;
}
.course .course__select {
  position: relative;
  width: 200px;
  z-index: 5;
}
.course .course__select .btn {
  padding: 0 10px 0 20px;
  height: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: var(--dark);
  font-weight: 500;
}
.course .course__select .btn * {
  pointer-events: none;
}
.course .course__select .btn:hover {
  background-color: transparent;
  border-color: var(--qadark);
  color: var(--qadark);
}
.course .course__select .select__popup {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 0;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--white);
}
.course .course__select .select__popup .select__wrap {
  padding: 20px;
  height: 100%;
}
.course .course__select .select__popup .select__wrap .select__value {
  line-height: 1.5em;
}
.course .course__select .select__popup .select__wrap .select__value:hover {
  color: var(--qadark);
}
.course .course__select.open .select__popup {
  -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  height: 102px;
}
.course .course__select.open .btn {
  background-color: transparent;
  border-color: var(--qadark);
  color: var(--qadark);
}
.course .course__block {
  opacity: 0;
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
  pointer-events: none;
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
}
.course .course__block.active {
  position: static;
  pointer-events: all;
  opacity: 1;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.course .course__item:first-child .course__qwestion {
  padding-top: 0;
  border-top: none;
}
.course .course__item .course__qwestion {
  padding: 20px 0;
  border-top: 1px solid var(--qamid);
  border-bottom: 1px solid var(--qamid);
  cursor: pointer;
}
.course .course__item .course__qwestion .arrow {
  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%;
  border: 1px solid var(--qamid);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.course .course__item:hover .course__qwestion, .course .course__item.open .course__qwestion {
  cursor: pointer;
}
.course .course__item:hover .course__qwestion .arrow, .course .course__item.open .course__qwestion .arrow {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: var(--qamid);
}
.course .course__item:hover .course__qwestion .arrow path, .course .course__item.open .course__qwestion .arrow path {
  fill: var(--white);
}
.course .course__item:hover .course__name, .course .course__item.open .course__name {
  color: var(--qamid);
}
.course .course__item .course__info p:last-child {
  line-height: 1.5em;
}
.course .course__item .course__answer {
  width: 87%;
}
.course .course__item .course__answer .course__description {
  padding: 0px 0 20px;
}
.course .course__item .course__answer .course__description .text__content {
  padding-top: 15px;
}
.course .course__item .course__answer .course__description .text__content h3 {
  margin-top: 20px;
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 20px;
}
.course .course__item .course__answer .info {
  margin-top: -20px;
}
.course .course__item .course__answer .info .btn__plan {
  width: 120px;
  margin: 0 10px 0 auto;
}

@media screen and (max-width: 991px) {
  .course .course__select {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .course .course__name {
    margin-bottom: 20px;
  }
  .course .course__item .course__answer {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .course .course__item .course__answer .info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .course .course__item .course__answer .info .btn__plan {
    margin-left: 0;
  }
}
html.with-fancybox body.hide-scrollbar {
  width: 100%;
}

.tlg .tlg__wrap {
  border-radius: 20px;
  padding: 80px 100px;
  position: relative;
  overflow: hidden;
}
.tlg .tlg__wrap:before {
  content: "";
  display: block;
  background-color: var(--qamid);
  border-radius: 50%;
  width: 170px;
  height: 170px;
  position: absolute;
  bottom: -90px;
  right: calc(50% - 30px);
}
.tlg .tlg__wrap .tlg__content {
  max-width: 600px;
  position: relative;
  z-index: 5;
}
.tlg .tlg__wrap .tlg__content h2 {
  font-size: 55px;
  line-height: 1em;
}
.tlg .tlg__wrap .tlg__content p {
  max-width: 345px;
}
.tlg .tlg__wrap .tlg__img {
  width: 470px;
  height: 470px;
  overflow: hidden;
  position: absolute;
  bottom: -33px;
  right: 74px;
  text-align: center;
}
.tlg .tlg__wrap .tlg__img:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  background-color: var(--qamain);
}
.tlg .tlg__wrap .tlg__img img {
  width: 310px;
  height: auto;
  position: relative;
}

@media screen and (max-width: 1439px) {
  .tlg .tlg__wrap {
    padding: 70px 80px;
  }
  .tlg .tlg__wrap .tlg__img {
    right: 60px;
    width: 440px;
    height: 440px;
    bottom: -70px;
  }
  .tlg .tlg__wrap .tlg__content h2 {
    font-size: 54px;
  }
}
@media screen and (max-width: 1199px) {
  .tlg .tlg__wrap {
    padding: 50px 60px;
  }
  .tlg .tlg__wrap .tlg__img {
    right: 60px;
    width: 400px;
    height: 400px;
  }
  .tlg .tlg__wrap .tlg__content h2 {
    font-size: 42px;
  }
  .tlg .tlg__wrap .tlg__img img {
    width: 250px;
  }
  .tlg .tlg__wrap .tlg__content {
    max-width: 480px;
  }
}
@media screen and (max-width: 991px) {
  .tlg .tlg__wrap {
    padding: 50px 35px 0 40px;
  }
  .tlg .tlg__wrap:after {
    content: "";
    display: block;
    border-radius: 50%;
    position: absolute;
    left: -230px;
    bottom: 37px;
    width: 280px;
    height: 280px;
    background-color: var(--qamain);
  }
  .tlg .tlg__wrap:before {
    width: 170px;
    height: 170px;
    right: -113px;
    bottom: auto;
    top: 210px;
  }
  .tlg .tlg__wrap .tlg__img {
    width: 300px;
    height: 300px;
    position: relative;
    right: auto;
    left: calc(50% - 150px);
    bottom: 0;
    margin-top: 50px;
  }
  .tlg .tlg__wrap .tlg__img img {
    width: 200px;
  }
  .tlg .tlg__wrap .tlg__img:before {
    display: none;
  }
  .tlg .tlg__wrap .tlg__content h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .tlg .tlg__wrap .tlg__content h2 {
    font-size: 29px;
  }
}
.gallary {
  padding-top: 140px;
}
.gallary .gallary__swiper {
  height: 310px;
}
.gallary .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
  display: block;
}
.gallary .swiper-slide:hover, .gallary .swiper-slide:focus, .gallary .swiper-slide:active {
  outline: none;
}
.gallary .swiper-slide:nth-child(3n+1) {
  width: calc(25% - 15px);
}
.gallary .swiper-slide:nth-child(3n+2) {
  width: calc(41.6666666667% - 15px);
}
.gallary .swiper-slide:nth-child(3n+3) {
  width: calc(33.3333333333% - 15px);
}
.gallary .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1439px) {
  .gallary {
    padding-top: 120px;
  }
  .gallary .gallary__swiper {
    height: 280px;
  }
}
@media screen and (max-width: 1199px) {
  .gallary {
    padding-top: 100px;
  }
}
@media screen and (max-width: 991px) {
  .gallary .gallary__swiper {
    height: 250px;
  }
  .gallary .swiper__arrows {
    position: absolute;
    left: 12px;
    bottom: -60px;
  }
}
@media screen and (max-width: 767px) {
  .gallary.pb_60 {
    padding-bottom: 80px;
  }
  .gallary.pb_60 .gallary__swiper {
    height: 420px;
  }
  .gallary.pb_60 .gallary__swiper .swiper-slide:nth-child(odd) {
    height: 150px !important;
  }
  .gallary.pb_60 .gallary__swiper .swiper-slide:nth-child(even) {
    height: 250px !important;
  }
}
.review .review_btn {
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.review .review_btn .icon {
  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%;
  border: 1px solid var(--qamid);
  margin-right: 10px;
  pointer-events: none;
}
.review .review_btn:hover .icon {
  background-color: var(--qamid);
}
.review .review_btn:hover .icon path {
  fill: var(--white);
}
.review .swiper-slide {
  border-radius: 20px;
  padding: 30px 30px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}
.review .swiper-slide .review_author {
  display: block;
  width: 43px;
  height: 43px;
  overflow: hidden;
  margin-right: 7px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.review .swiper-slide .review_author img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.review .swiper-slide .review__content {
  border-radius: 0px 14.357px 14.357px 14.357px;
  -webkit-box-shadow: 0px 1.79462px 20px 0px rgba(93, 80, 136, 0.1);
          box-shadow: 0px 1.79462px 20px 0px rgba(93, 80, 136, 0.1);
  background-color: var(--white);
  padding: 4px 14px;
}
.review .swiper-slide .review__content .review__name {
  font-family: "SF Pro Text";
  letter-spacing: -0.388px;
  line-height: 1.5em;
  margin-bottom: 4px;
  font-size: 13px;
}
.review .swiper-slide .review__content .text__content p {
  font-family: "SF Pro Text";
  line-height: 135%; /* 15.99px */
  letter-spacing: -0.355px;
  font-weight: 500;
  font-size: 12px;
}
.review .swiper-slide .review__content .review__date {
  line-height: 135%; /* 15.99px */
  letter-spacing: -0.355px;
  opacity: 0.5;
  margin-top: 4px;
}

@media screen and (max-width: 767px) {
  .review.pt_60 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .review.pt_60 .review__nav {
    position: absolute;
    left: 12px;
    bottom: -60px;
    width: calc(100% - 24px);
  }
}
.contact {
  padding-bottom: 120px;
}
.contact .contact__item .icon {
  margin-right: 10px;
}
.contact .contact__item a {
  display: block;
}
.contact .contact__item a:hover {
  color: var(--qamid);
}
.contact .contact__social {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact .contact__social a {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px;
  margin-right: 10px;
  overflow: hidden;
}
.contact .contact__social a svg {
  width: 100%;
  height: auto;
}
.contact .contact__social a:hover path {
  fill: var(--qadark);
}
.contact .form__wrap .input__group .order__input {
  height: 50px;
}
.contact .form__wrap .btn {
  margin-top: 30px;
}

@media screen and (max-width: 991px) {
  .contact .contact__social {
    padding-top: 0;
  }
  .contact {
    padding-bottom: 100px;
  }
}
.footer .footer__logo {
  width: 200px;
  display: block;
}
.footer .footer__logo img {
  width: 100%;
  height: auto;
}
.footer .footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .footer__menu li {
  margin-right: 40px;
}
.footer .footer__menu li:last-child {
  margin-right: 0;
}
.footer .footer__menu li a {
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}
.footer .footer__menu li a:hover {
  color: var(--qamain);
}

@media screen and (max-width: 1199px) {
  .footer .footer__logo,
  .custom-logo-link {
    width: 158px;
  }
  .footer .footer__menu li {
    margin-right: 20px;
  }
}
@media screen and (max-width: 991px) {
  .footer .footer__logo {
    margin-bottom: 40px;
  }
  .footer .footer__menu {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer__menu {
    display: block;
  }
  .footer .footer__menu li {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .footer .footer__menu li:last-child {
    margin-bottom: 0;
  }
}
.popup {
  position: fixed;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 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;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.popup.open {
  z-index: 999999;
  opacity: 1;
  pointer-events: all;
}
.popup.open .popup__content {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.popup .popup__content {
  background-color: var(--white);
  width: 96%;
  max-width: 560px;
  padding: 82px 70px;
  position: relative;
  border-radius: 20px;
  -webkit-box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.popup .popup__content .close_popup {
  background-color: transparent;
  border: none;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.popup .popup__content .close_popup * {
  pointer-events: none;
}
.popup.popup_success_review .popup__content, .popup.popup_success .popup__content {
  min-height: 250px;
  background-color: var(--qadark);
  padding: 60px 40px 20px;
  max-width: 530px;
}
.popup.popup_success_review .popup__content h2, .popup.popup_success .popup__content h2 {
  font-size: 34px;
  color: var(--white);
  margin-bottom: 20px;
  width: 100%;
  font-weight: 700;
  text-transform: uppercase;
}
.popup.popup_success_review .popup__content p, .popup.popup_success .popup__content p {
  font-size: 14px;
  font-style: normal;
  color: var(--white);
  font-weight: 400;
  width: 100%;
}
.popup.popup_about .popup__content {
  width: 96%;
  max-width: 617px;
  border-radius: 20px;
  padding: 60px 40px 40px;
}
.popup.popup_about .popup__content .about__img {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 0%;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.popup.popup_about .popup__content .about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.popup.popup_about .popup__content .close_popup {
  right: 40px;
  top: 40px;
}
.popup.popup_review .popup__content, .popup.popup_register .popup__content, .popup.popup_consult .popup__content {
  width: 96%;
  max-width: 530px;
  border-radius: 20px;
  max-height: 96%;
  overflow-y: auto;
  padding: 60px;
  background: var(--white) url(../img/popup_bg2.png) no-repeat center/cover;
}
.popup.popup_review .popup__content .close_popup, .popup.popup_register .popup__content .close_popup, .popup.popup_consult .popup__content .close_popup {
  right: 20px;
  top: 20px;
}
.popup.popup_review .popup__content .popup_title, .popup.popup_register .popup__content .popup_title, .popup.popup_consult .popup__content .popup_title {
  font-family: "Geologica", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 100%; /* 24px */
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--qamid);
  margin-bottom: 20px;
}
.popup.popup_review .popup__content .popup_subtitle, .popup.popup_register .popup__content .popup_subtitle, .popup.popup_consult .popup__content .popup_subtitle {
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  color: var(--dark);
  margin-bottom: 30px;
}
.popup.popup_review .popup__content, .popup.popup_register .popup__content {
  background: var(--white) url(../img/popup_bg.png) no-repeat center/cover;
}
.popup.popup_plans .popup__content {
  width: 96%;
  max-width: 610px;
  padding: 60px 40px 40px;
  max-height: 96%;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.popup.popup_plans .plans__tabs .btn {
  width: 103px;
  height: 50px;
  color: var(--grey);
  border-color: var(--lightgrey);
  background-color: var(--white);
  margin-right: 10px;
}
.popup.popup_plans .plans__tabs .btn:hover, .popup.popup_plans .plans__tabs .btn.active {
  background-color: var(--white);
  color: var(--qamid);
  border-color: var(--qamid);
}
.popup.popup_plans .text__content h3 {
  font-size: 16px;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 20px;
}
.popup.popup_plans .plans__content {
  overflow-y: auto;
  height: calc(100% - 305px);
  margin-bottom: 40px;
  position: relative;
}
.popup.popup_plans .plans__content .plans__item {
  top: 0;
  position: absolute;
  width: 100%;
  pointer-events: none;
  opacity: 0;
}
.popup.popup_plans .plans__content .plans__item.active {
  position: static;
  opacity: 1;
  pointer-events: all;
}
.popup.popup_plans .plans__bottom .btn {
  width: 180px;
}
.popup.popup_plans .plans__bottom .btn.btn_tr {
  margin-left: auto;
  margin-right: 10px;
  width: 140px;
}

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

@media screen and (max-width: 576px) {
  .popup.popup_about .popup__content {
    padding: 40px 30px 40px;
  }
  .popup.popup_plans .plans__name {
    font-size: 20px;
  }
  .popup.popup_review .popup__content,
  .popup.popup_register .popup__content,
  .popup.popup_consult .popup__content {
    padding: 60px 25px;
  }
  .popup.popup_review .popup__content .popup_title,
  .popup.popup_register .popup__content .popup_title,
  .popup.popup_consult .popup__content .popup_title {
    font-size: 24px;
  }
  .popup.popup_about .popup__content .close_popup {
    right: 20px;
    top: 20px;
  }
  .popup.popup_about .popup__content .about__img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }
  .popup.popup_plans .plans__bottom .btn,
  .popup.popup_plans .plans__bottom .btn.btn_tr {
    width: 100%;
    margin-bottom: 10px;
  }
  .popup.popup_plans .plans__content,
  .popup.popup_plans .plans__tabs {
    margin-bottom: 25px;
  }
  .popup.popup_plans .plans__content {
    height: calc(100% - 350px);
  }
  .popup.popup_plans .plans__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .popup.popup_plans .plans__bottom .btn.btn_tr {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 0;
  }
  .popup.popup_plans .plans__tabs .btn {
    width: 83px;
  }
  .popup.popup_success_review .popup__content,
  .popup.popup_success .popup__content {
    padding: 60px 20px;
  }
  .popup.popup_success_review .popup__content h2,
  .popup.popup_success .popup__content h2 {
    font-size: 24px;
  }
}
.wpcf7 form {
  position: relative;
}

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

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

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

.page_404 {
  height: 100vh;
  min-height: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page_404 .page_404__title {
  font-size: 345.981px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%; /* 345.981px */
  letter-spacing: 17.299px;
  text-transform: uppercase;
  color: var(--qamain);
  margin-bottom: 20px;
}
.page_404 .page_404__text {
  max-width: 310px;
  margin: 0 auto 30px;
}

@media screen and (max-width: 1439px) {
  .page_404 .page_404__title {
    font-size: 245px;
  }
}
@media screen and (max-width: 991px) {
  .page_404 .page_404__title {
    font-size: 200px;
  }
}
@media screen and (max-width: 576px) {
  .page_404 .page_404__title {
    font-size: 47vw;
    letter-spacing: 9.055px;
  }
}/*# sourceMappingURL=main.css.map */