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

:root {
  --app-height: 100%;
  --white: #ffffff;
  --dark: #0e0f0f;
  --darkgrey: #454c4d;
  --grey: #c4c4c4;
  --lightgrey: #c5cdcd;
  --light: #f4f7f7;
  --red: #e52322;
}

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

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

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

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

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

.c_lightgrey {
  color: var(--lightgrey);
}

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

.c_red {
  color: var(--red);
}

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

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

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

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

.bg_lightgrey {
  background-color: var(--lightgrey);
}

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

.bg_red {
  background-color: var(--red);
}

.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: "Calibri", sans-serif;
  color: var(--dark);
  background-color: var(--white);
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  line-height: 1.2em;
}

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: "Calibri", 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: "Calibri", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  font-weight: 700;
  height: 60px;
  width: 200px;
  position: relative;
  border-radius: 12px;
  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: 23px 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: transparent;
  -webkit-box-shadow: 0 0px 0px rgba(69, 76, 77, 0.349);
          box-shadow: 0 0px 0px rgba(69, 76, 77, 0.349);
}
.header.header_fixed {
  padding: 15px 0;
  background-color: var(--white);
  -webkit-box-shadow: 0 2px 5px rgba(69, 76, 77, 0.349);
          box-shadow: 0 2px 5px rgba(69, 76, 77, 0.349);
}

.header__contact {
  margin-left: 40px;
}

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

.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: 30px;
}
.nav__menu .nav__item:last-child {
  margin-right: 0;
}
.nav__menu .nav__item a {
  font-size: 16px;
  font-family: "Calibri", sans-serif;
  font-weight: 400;
  line-height: 1.2em;
  padding: 0;
  color: var(--dark);
  position: relative;
  border-bottom: 1px solid transparent;
}
.nav__menu .nav__item a:hover {
  border-bottom: 1px solid var(--dark);
}

.menu__burger {
  display: none;
  width: 20px;
}
.menu__burger span {
  display: block;
  height: 1px;
  width: 20px;
  border-radius: 50px;
  background-color: var(--dark);
  margin-bottom: 6px;
  pointer-events: none;
}
.menu__burger span:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1199px) {
  .nav__menu .nav__item {
    margin-right: 20px;
  }
  .header__contact {
    margin-left: 15px;
  }
}
@media screen and (max-width: 991px) {
  .header {
    padding: 12px 0;
    border-bottom: none;
  }
  .nav {
    position: fixed;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    z-index: 999999;
    right: -450px;
    top: 0;
    opacity: 0;
    pointer-events: none;
    background: var(--white);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    overflow-y: auto;
    padding-top: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nav.open_menu {
    right: 0;
    top: 0px;
    opacity: 1;
    pointer-events: all;
  }
  .nav .nav__row {
    width: 100%;
    margin-bottom: 0;
    padding: 20px 12px;
    position: relative;
    border-bottom: 1px solid #dbdbdb;
  }
  .nav .nav__row .custom-logo-link {
    width: 160px;
  }
  .nav .menu__close {
    width: 30px;
    height: 30px;
    background: url(../img/close_menu.svg) no-repeat center/18px;
    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: 30px;
  }
  .nav .header__contact {
    padding: 30px;
    text-align: left;
    margin-top: auto;
    border-top: 1px solid #dbdbdb;
  }
  .nav .header__contact .header__phone {
    font-size: 24px;
    text-align: left;
  }
  .menu__burger {
    display: block;
    cursor: pointer;
    background-color: transparent;
    border: none;
  }
  .nav .nav__item {
    margin-bottom: 0;
    width: 100%;
    text-align: left;
    margin-right: 0;
  }
  .nav .nav__item:last-child {
    margin-bottom: 0;
  }
  .nav .nav__item a {
    font-size: 24px;
    position: relative;
    color: var(--dark);
    display: block;
    padding: 30px;
    border: none;
  }
  .nav .nav__item a:hover {
    background-color: #F7F7F7;
    border: none;
  }
}
.section__title {
  font-family: "Calibri", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 55px */
  color: var(--dark);
}

.text__content h2 {
  font-family: "Calibri", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 55px */
  color: var(--dark);
  margin-bottom: 30px;
}
.text__content p,
.text__content li {
  font-family: "Calibri", sans-serif;
  font-size: 18px;
  font-style: normal;
  line-height: 120%;
  color: var(--darkgrey);
}
.text__content p {
  margin-bottom: 1.2em;
}
.text__content li {
  padding-left: 30px;
  position: relative;
}
.text__content li li {
  margin-bottom: 0.8em;
}
.text__content li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--darkgrey);
  position: absolute;
  left: 12px;
  top: 8px;
}

@media screen and (max-width: 1439px) {
  .text__content h2,
  .section__title {
    font-size: 36px;
  }
}
@media screen and (max-width: 991px) {
  .text__content h2,
  .section__title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .text__content p,
  .text__content li {
    font-size: 16px;
  }
}
.form__wrap {
  width: 100%;
}
.form__wrap .input__group {
  margin-bottom: 20px;
}
.form__wrap .input__group .label {
  color: var(--dark);
  font-family: "Calibri", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1em;
}
.form__wrap .input__group .order__input {
  display: block;
  width: 100%;
  height: 38px;
  font-family: "Calibri", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  border: none;
  border-bottom: 1px solid var(--lightgrey);
  border-radius: 0;
  background-color: var(--white);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: var(--grey);
}
.form__wrap .input__group .order__input.wpcf7-not-valid {
  border-color: #F3B8B7;
}
.form__wrap .input__group .order__input::-webkit-input-placeholder {
  font-family: "Calibri", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  color: var(--lightgrey);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-moz-placeholder {
  font-family: "Calibri", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  color: var(--lightgrey);
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input:-ms-input-placeholder {
  font-family: "Calibri", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  color: var(--lightgrey);
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-ms-input-placeholder {
  font-family: "Calibri", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  color: var(--lightgrey);
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::placeholder {
  font-family: "Calibri", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  color: var(--lightgrey);
  -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[type=checkbox] {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid var(--lightgrey);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-right: 10px;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.form__wrap input[type=checkbox]:checked {
  background: #c5cdcd url(../img/check_icon_wh.svg) no-repeat center;
}
.form__wrap .wpcf7-not-valid-tip {
  font-size: 18px;
  color: var(--orange);
}
.form__wrap span {
  display: block;
}
.form__wrap .wpcf7-list-item {
  display: block;
  margin: 0 !important;
}

.head__section {
  height: 100vh;
  max-height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 130px;
}
.head__section::before {
  content: "";
  display: block;
  width: 300%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(14, 15, 15, 0.027)), color-stop(45%, rgba(14, 15, 15, 0.027)), color-stop(50%, rgba(14, 15, 15, 0)), color-stop(55%, rgba(14, 15, 15, 0.027)), to(rgba(14, 15, 15, 0.027)));
  background: linear-gradient(90deg, rgba(14, 15, 15, 0.027) 0%, rgba(14, 15, 15, 0.027) 45%, rgba(14, 15, 15, 0) 50%, rgba(14, 15, 15, 0.027) 55%, rgba(14, 15, 15, 0.027) 100%);
  position: absolute;
  top: 0;
  -webkit-animation: flash 5s linear infinite;
          animation: flash 5s linear infinite;
}
@-webkit-keyframes flash {
  0% {
    left: -200%;
  }
  20% {
    left: 0%;
  }
  100% {
    left: 0%;
  }
}
@keyframes flash {
  0% {
    left: -200%;
  }
  20% {
    left: 0%;
  }
  100% {
    left: 0%;
  }
}
.head__section .offer h1 {
  font-size: 75px;
  margin-bottom: 20px;
  color: var(--dark);
  line-height: 1.2em;
  font-weight: 400;
}
.head__section .offer h1 b,
.head__section .offer h1 strong {
  font-weight: 700;
}
.head__section .offer p {
  line-height: 1.2em;
  color: var(--dark);
  font-size: 28px;
}

@media screen and (max-width: 991px) {
  .head__section .offer h1 {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .head__section .offer h1 {
    font-size: 48px;
  }
  .head__section .offer p {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .head__section .offer h1 {
    font-size: 11.4vw;
  }
  .head__section .offer p {
    font-size: 5.5vw;
  }
}
@media screen and (max-width: 350px) {
  .head__section .offer h1 {
    font-size: 11.2vw;
  }
}
.about .about__img {
  overflow: hidden;
  border-radius: 20px;
  height: 420px;
}
.about .about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 991px) {
  .about .about__img {
    height: 420px;
    max-width: 640px;
    margin: 0 auto;
  }
}
.expert .expert__number {
  font-weight: 300;
  font-size: 300px;
  line-height: 0.75em;
  font-family: "Zona Pro";
}
.expert .expert__describe {
  line-height: 1.2em;
}

@media screen and (max-width: 991px) {
  .expert .expert__number {
    font-size: 250px;
  }
  .expert .expert__describe {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
.advant .advant__card {
  overflow: hidden;
  border-radius: 20px;
  min-height: 150px;
  width: 100%;
  padding: 30px;
  background-position: 100% top;
}
.advant .advant__card .advant__content {
  max-width: 75%;
  width: 100%;
}
.advant .advant__card .advant__content h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--darkgrey);
  line-height: 1.1em;
}
.advant .advant__card .advant__content p {
  font-size: 16px;
  color: var(--darkgrey);
  line-height: 1.2em;
}

@media screen and (max-width: 1439px) {
  .advant .advant__card .advant__content {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .advant {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 576px) {
  .advant .advant__card {
    min-height: initial;
  }
}
.service .section__title {
  max-width: 364px;
}
.service .service__item {
  height: 200px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 40px 50px 40px 40px;
}
.service .service__item p {
  line-height: 1.1em;
}
.service .service__item.service__item_1 {
  height: 250px;
}
.service .service__item.service__item_4 {
  height: 100%;
}
.service .service__item .service__btn {
  color: var(--dark);
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.service .service__item .service__btn svg {
  margin-left: 5px;
  pointer-events: none;
}
.service .service__item .service__btn:hover {
  color: var(--red);
}
.service .service__item .service__btn:hover path {
  fill: var(--red);
}

@media screen and (max-width: 1439px) {
  .service .service__item {
    padding-left: 20px;
    height: 170px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .service .service__item p {
    font-size: 18px;
  }
  .service .service__item {
    padding-left: 20px;
    height: auto;
    min-height: 150px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 991px) {
  .service .service__item.service__item_1,
  .service .service__item {
    min-height: 145px;
    height: auto;
  }
  .service .service__item {
    padding: 25px 40px;
  }
}
@media screen and (max-width: 767px) {
  .service {
    padding-bottom: 10px;
  }
  .service .service__item p {
    font-size: 16px;
  }
  .service .service__item {
    padding: 40px;
  }
}
.callback .input__col {
  width: 37.5%;
}
.callback .input__col:first-child {
  width: 25%;
}
.callback .form__wrap .btn {
  width: 140px;
  background-color: var(--red);
  color: var(--white);
  margin-left: auto;
}
.callback .form__wrap .btn:hover {
  background-color: #ac1514;
}

.contact .contact__line {
  height: 1px;
}
.contact .contact__item {
  line-height: 1.4em;
  font-weight: 400;
  color: var(--dark);
}
.contact .contact__item a:hover {
  color: var(--red);
}

@media screen and (max-width: 767px) {
  .callback .input__col:first-child,
  .callback .input__col {
    width: 100%;
  }
  .callback .callback__subtitle {
    margin-bottom: 30px;
  }
  .callback .acceptance__col {
    padding-top: 10px;
  }
}
@media screen and (max-width: 576px) {
  .callback .form__wrap .btn {
    width: 100%;
  }
  .contact .contact__title {
    font-size: 14px;
  }
  .contact .contact__item {
    font-size: 16px;
  }
}
.footer .copyright br {
  display: none;
}
.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: 400;
  font-size: 20px;
  color: var(--white);
}
.footer .footer__menu li a:hover {
  color: var(--red);
}

.simple__content h1 {
  font-size: 60px;
  font-weight: 400;
}
.simple__content .text__content h2 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
}
.simple__content .text__content h3 {
  font-size: 20px;
  line-height: 1.3em;
  font-weight: 400;
}
.simple__content .text__content p,
.simple__content .text__content li {
  font-size: 18px;
  line-height: 1.4em;
}
.simple__content .text__content p a,
.simple__content .text__content li a {
  color: var(--dark);
}
.simple__content .text__content p a:hover,
.simple__content .text__content li a:hover {
  color: var(--red);
}

@media screen and (max-width: 1439px) {
  .simple__content h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 1199px) {
  .footer .footer__logo,
  .custom-logo-link {
    width: 158px;
  }
  .footer .footer__menu li {
    margin-right: 20px;
  }
  .simple__content h1 {
    font-size: 42px;
  }
}
@media screen and (max-width: 991px) {
  .footer .footer__logo {
    max-width: 100%;
  }
  .footer .copyright br {
    display: block;
  }
  .simple__content {
    padding-top: 20px;
  }
  .simple__content h1 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .simple__content h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer__menu li {
    margin-right: 20px;
  }
  .footer .footer__menu li a {
    font-size: 16px;
  }
  .simple__content .text__content p,
  .simple__content .text__content li {
    font-size: 16px;
  }
  .simple__content .text__content h3 {
    font-size: 16px;
    color: var(--dark);
  }
}
.popup {
  position: fixed;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(14, 15, 15, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.popup.open {
  z-index: 999999;
  opacity: 1;
  pointer-events: all;
}
.popup.open .popup__content {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.popup .popup__content {
  background-color: var(--white);
  width: 96%;
  max-width: 420px;
  padding: 40px;
  position: relative;
  border-radius: 20px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  height: 440px;
}
.popup .popup__content .close_popup {
  background: transparent url(../img/close_menu.svg) no-repeat center/20px;
  border: none;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
.popup .popup__content .close_popup * {
  pointer-events: none;
}
.popup .popup__content .popup__wrap_scroll {
  height: 100%;
  overflow: hidden;
  padding-right: 7px;
}
.popup .popup__content .popup__wrap_scroll .service_name {
  line-height: 1.1em;
}
.popup .popup__content .popup__wrap_scroll p,
.popup .popup__content .popup__wrap_scroll li {
  line-height: 1.4em;
}
.popup.popup_success .popup__content {
  height: 250px;
  padding: 40px;
  max-width: 420px;
}
.popup.popup_success .popup__content h2 {
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 20px;
  width: 100%;
  font-weight: 400;
  line-height: 1.1em;
  margin-bottom: 20px;
}
.popup.popup_success .popup__content p {
  font-size: 16px;
  font-style: normal;
  color: var(--dark);
  font-weight: 400;
  width: 100%;
}

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

@media screen and (max-width: 576px) {
  .popup .popup__content {
    padding: 30px;
  }
  .popup .popup__content .popup__wrap_scroll .service_name {
    font-size: 18px;
  }
  .popup .popup__content .popup__wrap_scroll li {
    line-height: 1.4em;
    padding-left: 25px;
  }
  .popup .popup__content .popup__wrap_scroll li:before {
    width: 5px;
    height: 5px;
    left: 10px;
  }
}
.wpcf7 form {
  position: relative;
}

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

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

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

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

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

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

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

@media screen and (max-width: 991px) {
  .cky-revisit-bottom-left {
    left: auto !important;
    right: 15px !important;
  }
}
@media screen and (max-width: 576px) {
  .page_404 .page_404__title {
    font-size: 120px;
  }
  .page_404 .page_404_subtitle {
    font-size: 32px;
  }
  .page_404 .page_404__text {
    font-size: 16px;
  }
  .cky-consent-container.cky-box-bottom-left .cky-consent-bar {
    width: 100%;
    max-width: 90%;
    padding: 30px;
  }
  .cky-consent-container.cky-box-bottom-left .cky-notice .cky-title {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
  }
  .cky-consent-container.cky-box-bottom-left .cky-notice-des p {
    font-size: 16px;
  }
}/*# sourceMappingURL=main.css.map */