/*============= ALIGNES ===============*/
.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 1920px !important;
    margin-left: calc(-1 * (1920px - 1170px) / 2) !important;
    margin-right: calc(-1 * (1920px - 1170px) / 2) !important;
  }
}

/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  box-sizing: inherit;
}

body {
  background: var(--grey-color);
  max-width: 1920px;
  overflow-x: hidden;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 20px 5px #747474;
  box-shadow: 0 0 20px 5px #747474;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease-in;
}

a:hover {
  color: var(--main-color) !important;
}

/* ul {
  counter-reset: num;
} */

ul li {
  list-style-position: inside;
  color: var(--text-color);
  font-size: 18px;
  line-height: 26px;
  list-style-type: none;
}

ul li::marker {
  color: var(--main-color);
}

ol li {
  list-style-position: inside;
  color: var(--text-color);
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
  position: relative;
  /* list-style: none; */
  /* padding-left: 40px; */
}

/* ol li:before {
  content: counter(item);
  counter-increment: item;
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--main-color2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: -3px;
  color: var(--white-color);
  text-align: right;
  position: absolute;
} */

p {
  margin-bottom: 15px;
  color: var(--text-color);
  font-size: 18px;
  line-height: 26px;
}

h1.page-title {
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  color: var(--text-color2);
  margin-bottom: 50px;
}

main.foned {
  position: relative;
  overflow: hidden;
  z-index: 999;
}

main.foned:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.breadcrumbs {
  padding: 20px 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: var(--grey-color);
}

.breadcrumbs span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.breadcrumbs span.current-item {
  color: var(--text-color);
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.scrollT {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
}

.scrollT circle {
  color: var(--main-color2);
}

.scrollT path {
  color: var(--white-color);
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  height: auto;
  padding: 15px 35px;
  background: var(--main-color);
  border-radius: 30px;
  border: 2px solid var(--main-color);
  outline: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: var(--white-color);
  cursor: pointer;
  transition: all 0.3s ease-in;
  appearance: none;
  -webkit-appearance: none;
}

.btn svg {
  transition: all 0.3s ease-in;
  margin-right: 10px;
}

.btn svg path {
  transition: all 0.3s ease-in;
}

.btn:hover {
  color: var(--main-color);
  background-color: var(--white-color);
  border: 2px solid var(--main-color);
}

#main,
#primary {
  min-height: 83vh;
}

.block-title {
  font-weight: 800;
  font-size: 40px;
  line-height: 130%;
  color: var(--text-color2);
  margin-bottom: 40px;
  width: 70%;
}

.block-title span {
  color: var(--main-color2);
  font-weight: 700;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  opacity: 1 !important;
  background: var(--grey-color2) !important;
}

.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover {
  background: var(--main-color) !important;
}

.swiper-button-prev:hover path,
.swiper-button-next:hover path {
  stroke: var(--main-color2);
}

/*============ HEADER =================*/
#header {
  background: var(--white-color);
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

#header .header-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 15px 0px;
  align-items: center;
}

#header .header-wrapper .logo__holder {
  max-width: 200px;
  max-height: 55px;
}

#header .header-wrapper .logo__holder img {
  height: 100%;
  width: 100%;
  display: block;
}

#header .header-wrapper .logo__holder .logo__text {
  width: 100%;
  margin-bottom: 0;
  font-weight: 800;
  font-size: 22px;
  line-height: 130%;
  color: var(--text-color2);
}

#header .header-wrapper .header_nav_menu {
  display: flex;
}

#header .header-wrapper .header-menu {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

#header .header-wrapper .header-menu .nav-menu-element {
  margin-right: 35px;
}

#header .header-wrapper .header-menu .nav-menu-element:last-child {
  margin-right: 0px;
}

#header .header-wrapper .header-menu .nav-menu-element a {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--text-color2);
}

#header .header-wrapper .header-menu .nav-menu-element:hover a {
  color: var(--main-color2);
}

#header .header-wrapper .phone-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#header .header-wrapper .phone-wrapper a {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  text-align: right;
  color: var(--text-color2);
  margin-bottom: 5px;
}

#header .header-wrapper .phone-wrapper a:hover {
  color: var(--main-color);
}

#header .header-wrapper .phone-wrapper .header-btn {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--main-color2);
  cursor: pointer;
  transition: 0.3s;
}

#header .header-wrapper .phone-wrapper .header-btn:hover {
  color: var(--main-color);
}

/*================ MOBILE MNU =============*/
#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 40px;
  width: 40px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
}

#header .burger.open_menu span {
  background-color: var(--main-color2);
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
}

#header .burger.open_menu.clicked {
  background-color: var(--main-color2);
}

#header .burger.open_menu.clicked span {
  background-color: var(--white-color)
}

#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: var(--white-color);
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
}

#header #mobile-mnu #close-mnu {
  font-size: 45px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transform: rotate(45deg);
  display: block;
  color: var(--text-color2);
}

#header #mobile-mnu a {
  font-size: 16px;
  line-height: 1;
  color: var(--text-color2);
  font-weight: 450;
}

#header #mobile-mnu .logo__holder {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#header #mobile-mnu .logo__holder img {
  max-height: 60px;
}

#header #mobile-mnu .logo__holder .logo__text {
  width: 100%;
  margin-bottom: 0;
  font-weight: 800;
  font-size: 22px;
  line-height: 130%;
  color: var(--text-color2);
}

#header #mobile-mnu .menuTop {
  list-style-type: none;
  margin-bottom: 10px;
}

#header #mobile-mnu .menuTop li {
  margin-bottom: 10px;
}

#header #mobile-mnu .menuTop li a {
  font-size: 16px;
  line-height: 1;
  color: var(--text-color2);
  font-weight: 450;
}

#header #mobile-mnu .adresses__holder {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  width: 100%;
}

#header #mobile-mnu .adresses__holder:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-image: url("../images/map.svg");
  background-position: center center;
  background-repeat: no-repeat;
}

#header #mobile-mnu .adresses__holder p {
  font-size: 16px;
  line-height: 1;
  color: var(--text-color);
  font-weight: 450;
}

#header #mobile-mnu .email__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}

#header #mobile-mnu .email__holder .email__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: var(--text-color2);
  font-weight: 450;
}

#header #mobile-mnu .email__holder .email__item svg {
  margin-right: 10px;
}

#header #mobile-mnu .phones__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}

#header #mobile-mnu .phones__holder .phone__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: var(--text-color2);
  font-weight: 450;
}

#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}

#header #mobile-mnu .soc__holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
}

#header #mobile-mnu .soc__holder .soc__item {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--white-color);
  transition: background-color 0.3s ease-in;
}

#header #mobile-mnu .soc__holder .soc__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#header #mobile-mnu.opened {
  transform: translateX(0);
}

#header #mobile-mnu .email__holder .email__item path,
#header #mobile-mnu .phones__holder .phone__item path {
  stroke: var(--main-color2);
}

/*============ FOOTER ===============*/
#footer {
  background: var(--text-color2);
}

#footer .container {
  display: flex;
}

#footer .container .bot__line {
  display: flex;
  align-items: center;
  height: 80px;
  width: 100%;
  justify-content: space-between;
}

#footer .container .bot__line .privacy {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-decoration-line: underline;
  color: var(--grey-color2);
  background: none;
  border: none;
  cursor: pointer;
}

#footer .container .bot__line .privacy:hover {
  color: var(--white-color);
}

#footer .container .bot__line .dev {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: var(--grey-color2);
}

#footer .container .bot__line .dev svg path {
  transition: all 0.3s ease-in;
}

#footer .container .bot__line .dev:hover {
  color: var(--main-color);
}

#footer .container .bot__line .dev:hover svg path {
  fill: var(--main-color) !important;
}

/* ============== FORM ============= */
.form-v2 .form__input {
  outline: none;
  display: flex;
}

.form-v2 .form__input input {
  padding: 15px 35px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--text-color);
  background: transparent;
  outline: none;
  border: 1px solid var(--text-color);
  border-radius: 5px;
  width: 100%;
}

.form-v2 textarea {
  padding: 15px 35px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--text-color);
  background: transparent;
  margin-bottom: 20px;
  outline: none;
  border: 1px solid var(--text-color);
  border-radius: 5px;
  resize: none;
  width: 100%;
  height: 140px;
}

.form-v2 .form__input input.error {
  border: 1px solid red !important;
}

.form-v2 .form__input input::placeholder {
  outline: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--text-color);
}

.form-v2 textarea::placeholder {
  outline: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--text-color);
}

.form-v2 .form__input input.error::placeholder {
  color: red !important;
}

/* ============== MODAL ============= */
.theme-modal.fancybox__content {
  height: auto;
  max-height: 90vh;
  background: var(--white-color);
  border-radius: 2px;
  z-index: 9999;
  padding: 60px 80px;
  max-width: 900px !important;
  width: 100%;
  overflow: auto;
}

.fancybox__slide.video-iframe .fancybox__content {
  max-width: 700px !important;
  height: 400px !important;
  padding: 0 !important;
}

@media (max-width: 575px) {
  .fancybox__slide.video-iframe .fancybox__content {
    height: 250px !important;
  }
}

.theme-modal.fancybox__content .form-v2 .form__input input {
  margin-bottom: 20px;
}

.theme-modal.fancybox__content .is-close-btn {
  position: absolute;
  right: 20px !important;
  top: 20px !important;
  --fancybox-color: var(--grey-color2);
  --f-button-svg-stroke-width: 5px;
  --f-button-width: 16px !important;
  --f-button-height: 16px !important;
  background: transparent !important;
  opacity: 1 !important;
  transition: all 0.3s ease-in;
  cursor: pointer;
}

.theme-modal.fancybox__content .is-close-btn svg {
  stroke-linecap: inherit;
  color: var(--grey-color2);
  transition: all .3s ease-in;
}

.theme-modal.fancybox__content .is-close-btn:hover,
.theme-modal.fancybox__content .is-close-btn:hover svg {
  color: var(--main-color2);
}

.modal-title {
  font-weight: 800;
  font-size: 40px;
  line-height: 130%;
  color: var(--text-color2);
  margin-bottom: 40px;
}

.theme-modal.fancybox__content .modal-bot {
  display: flex;
  justify-content: space-between;
}

.theme-modal.fancybox__content .modal-bot {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--text-color);
}

.theme-modal.fancybox__content .modal-bot .privacy {
  text-decoration: underline;
  cursor: pointer;
}

.theme-modal.fancybox__content .modal-bot .privacy:hover {
  color: var(--main-color2);
}

.theme-modal.fancybox__content .btn {
  background: var(--main-color2);
  border-radius: 30px;
  width: max-content;
  color: var(--white-color);
  border: 1px solid var(--main-color2);
}

.theme-modal.fancybox__content .btn:hover {
  background: var(--white-color);
  color: var(--main-color2);
  border: 1px solid var(--main-color2);
}


.theme-modal.fancybox__content .privacy-holder {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--text-color);
  margin-bottom: 0;
}

.theme-modal.fancybox__content .privacy-holder .privacy {
  text-decoration: underline;
  transition: 0.3s;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--text-color);
}

.theme-modal.fancybox__content .privacy-holder .privacy:hover {
  color: var(--main-color);
}

.modal-fault.theme-modal.fancybox__content {
  max-width: 1170px !important;
  width: 100%;
  /* max-height: unset; */
  height: auto;
  background: var(--white-color);
  border-radius: 5px;
  padding: 0px;
}

.modal-fault.theme-modal.fancybox__content .popup-content {
  padding: 60px 80px;
}

.modal-fault.theme-modal.fancybox__content .fault-top {
  display: flex;
}

.modal-fault.theme-modal.fancybox__content .fault-modal-desc p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--text-color);
}

.modal-fault.theme-modal.fancybox__content .fault-modal-desc ol li,
.modal-fault.theme-modal.fancybox__content .fault-modal-desc ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--text-color);
}

.modal-fault.theme-modal.fancybox__content .left-side {
  width: 400px;
  max-height: 400px;
}

.modal-fault.theme-modal.fancybox__content .left-side img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.modal-fault.theme-modal.fancybox__content .right-side {
  width: 60%;
  margin-left: 60px;
}

.modal-fault.theme-modal.fancybox__content .fault-modal-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: var(--text-color2);
  margin-bottom: 30px;
}

.modal-fault.theme-modal.fancybox__content .form {
  padding: 45px 60px;
  background: var(--main-color2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0px 0px 5px 5px;
}

.modal-fault.theme-modal.fancybox__content .form-left {
  width: 35%;
  display: flex;
  flex-direction: column;
}

.modal-fault.theme-modal.fancybox__content .form-right {
  width: 55%;
}

.modal-fault.theme-modal.fancybox__content .form-left .form-title {
  font-weight: 800;
  font-size: 40px;
  line-height: 130%;
  color: var(--white-color);
  margin-bottom: 10px;
}

.modal-fault.theme-modal.fancybox__content .form-left p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--grey-color2);
}

.modal-fault.theme-modal.fancybox__content .form-top {
  display: flex;
  gap: 20px;
}

.modal-fault.theme-modal.fancybox__content .form-top input {
  border: 1px solid var(--grey-color2);
  border-radius: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--grey-color2);
  margin-bottom: 0px;
}

.modal-fault.theme-modal.fancybox__content .form-top input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--grey-color2);
}

.modal-fault.theme-modal.fancybox__content .modal-bot {
  margin-top: 20px;
}

.modal-fault.theme-modal.fancybox__content .privacy-holder {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--white-color);
  margin-bottom: 0;
}

.modal-fault.theme-modal.fancybox__content .privacy-holder .privacy {
  text-decoration: underline;
  transition: 0.3s;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--white-color);
}

.modal-fault.theme-modal.fancybox__content .privacy-holder .privacy:hover {
  color: var(--grey-color2);
}

.modal-fault.theme-modal.fancybox__content .submit_btn {
  width: max-content;
  margin-left: 30px;
  transition: 0.3s;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-color2);
  background: var(--white-color);
  border: 1px solid var(--white-color);
}

.modal-fault.theme-modal.fancybox__content .submit_btn:hover {
  color: var(--white-color);
  background: var(--main-color2);
  border: 1px solid var(--white-color);
}

.modal-fault.theme-modal.fancybox__content .name-fault {
  display: none;
}

.modal-fault.theme-modal.fancybox__content .form-holder {
  display: block;
}

#modal-success .title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}

.map-holder {
  min-height: unset !important;
  height: 600px;
}

/* ============= Хлебные крошки =========== */
.breadcrumbs {
  padding: 40px 0 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--text-color);
}

.breadcrumbs span {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--text-color);
}

.breadcrumbs span.current-item {
  color: var(--main-color);
}

/* ============= CONTENTS =========== */
.content>p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--text-color);
}

.content>p:not(:last-child) {
  margin-bottom: 15px;
}

.content th {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: var(--text-color);
}

.content td {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--text-color);
}

.content table {
  margin-bottom: 10px;
}

.content>h1,
.content>h1 * {
  font-weight: 800;
  font-size: 42px;
  line-height: 120%;
  color: var(--text-color);
}

.content>h1:not(:last-child) {
  margin-bottom: 25px;
}

.content>h2,
.content>h2 * {
  font-weight: 800;
  font-size: 40px;
  line-height: 130%;
  color: var(--text-color);
}

.content>h2:not(:last-child) {
  margin-bottom: 25px;
}

.content>h2:not(:first-child) {
  padding-top: 10px;
}

.content>h3,
.content>h3 * {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: var(--text-color);
}

.content>h3:not(:last-child) {
  margin-bottom: 20px;
}

.content>h4,
.content>h4 * {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: var(--text-color);
}

.content>h3:not(:first-child) {
  padding-top: 20px;
}

.content>h4:not(:last-child) {
  margin-bottom: 15px;
}

.content>h4:not(:first-child) {
  padding-top: 15px;
}

.content>h5,
.content>h5 * {
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  color: var(--text-color);
}

.content>h5 {
  margin-bottom: 10px;
}

.content>h5:not(:first-child) {
  padding-top: 10px;
}

.content>h6,
.content>h6 * {
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-color);
}

.content>h6:not(:last-child) {
  margin-bottom: 10px;
}

.content>h6:not(:first-child) {
  padding-top: 10px;
}

.privacy-policy .content {
  padding-bottom: 80px;
}

/* ============= MEDIA QUERIES =========== */
@media (max-width: 1200px) {
  #modal-service.theme-modal.fancybox__content .form {
    flex-direction: column;
  }

  #header .header-wrapper .header-menu .nav-menu-element {
    margin-right: 15px;
  }

  #header .header-wrapper .header-menu .nav-menu-element a {
    font-size: 14px;
  }

  .theme-modal.fancybox__content {
    padding: 30px;
  }

  .modal-fault.theme-modal.fancybox__content {
    padding: 0px;
    width: 95%;
  }

  .modal-fault.theme-modal.fancybox__content .popup-content {
    padding: 20px 20px;
  }

  .theme-modal.fancybox__content .is-close-btn {
    right: 0px;
    top: -10px;
  }

  .modal-fault.theme-modal.fancybox__content .fault-top {
    flex-direction: column;
    align-items: center;
  }

  .modal-fault.theme-modal.fancybox__content .right-side {
    margin-left: 0px;
    width: 100%;
  }

  .modal-fault.theme-modal.fancybox__content .form {
    padding: 15px;
  }

  .modal-fault.theme-modal.fancybox__content .fault-modal-desc p {
    font-size: 12px;
    line-height: 120%;
  }

  .modal-fault.theme-modal.fancybox__content .fault-modal-desc ul li,
  .modal-fault.theme-modal.fancybox__content .fault-modal-desc ol li {
    font-size: 12px;
    line-height: 120%;
  }

  .modal-fault.theme-modal.fancybox__content .left-side {
    display: none;
  }
}

@media (max-width: 996px) {
  #header .burger.open_menu {
    display: flex;
    margin-left: 20px;
  }

  #header .header-wrapper .header_nav_menu {
    display: none;
  }

  #header .header-wrapper .logo__holder {
    margin-right: auto;
  }

  #header .header-wrapper .phone-wrapper {
    margin-left: 20px;
  }

  .block-title:before {
    top: 100%;
  }

  .theme-modal.fancybox__content {
    padding: 20px;
  }

  #modal-service.theme-modal.fancybox__content .service-top {
    flex-direction: column;
    align-items: center;
  }

  #modal-service.theme-modal.fancybox__content .service-top .right-side {
    width: 100%;
    margin-top: 20px;
  }

  #modal-service.theme-modal.fancybox__content .right-side .service-modal-title {
    font-size: 26px;
    text-align: center;
    line-height: 32px;
    margin-bottom: 5px;
  }

  /* #modal-service.theme-modal.fancybox__content .popup-content {
    padding: 20px;
  } */

  .block-title {
    width: 100%;
  }

  .theme-modal.fancybox__content .modal-bot {
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
  }

  .theme-modal.fancybox__content .modal-bot .privacy-holder {
    text-align: center;
  }

  .theme-modal.fancybox__content {
    padding: 50px 20px;
  }

  .theme-modal.fancybox__content .modal-bot {
    font-size: 12px;
  }

  .modal-fault.theme-modal.fancybox__content {
    padding: 0px;
  }

  .modal-fault.theme-modal.fancybox__content .form {
    flex-direction: column;
  }

  .modal-fault.theme-modal.fancybox__content .form-left {
    width: 100%;
    margin-bottom: 20px;
  }

  .modal-fault.theme-modal.fancybox__content .form-right {
    width: 100%;
  }
}

@media (max-width: 776px) {
  h1.page-title {
    font-size: 20px;
  }

  .theme-modal.fancybox__content {
    padding: 40px 20px;
  }

  .modal-title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 16px;
  }

  .theme-modal.fancybox__content .form__input {
    max-width: unset;
  }

  #modal-service.theme-modal.fancybox__content .form .modal-bot .btn {
    margin-left: 0px;
  }

  #modal-service.theme-modal.fancybox__content .form .modal-bot p {
    text-align: center;
  }

  #modal-service.theme-modal.fancybox__content .form {
    padding: 20px;
  }

  #modal-service.theme-modal.fancybox__content .form .modal-bot .btn {
    margin-bottom: 0px;
  }

  #modal-service.theme-modal.fancybox__content .form h2 {
    text-align: center;
  }

  .theme-modal.fancybox__content .is-close-btn {
    top: 10px;
    right: 20px;
  }

  .modal-fault.theme-modal.fancybox__content {
    padding: 0px;
  }

  .modal-fault.theme-modal.fancybox__content .fault-modal-title {
    width: 90%;
  }

  .theme-modal.fancybox__content .form-v2 .form__input input {
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .theme-modal.fancybox__content {
    width: 90%;
  }

  #modal-service.theme-modal.fancybox__content .form .modal-bot p {
    width: 100%;
  }

  #modal-service.theme-modal.fancybox__content .form .form-right p {
    flex-direction: column;
    align-items: center;
    display: flex;
    gap: 0px;
  }

  #modal-service.theme-modal.fancybox__content .form .form-right p br {
    display: none;
  }

  #modal-service.theme-modal.fancybox__content .form .modal-bot .btn {
    width: 100%;
  }

  #modal-service.theme-modal.fancybox__content {
    width: 95%;
  }

  #modal-service.theme-modal.fancybox__content .right-side .service-modal-title {
    font-size: 24px;
  }

  .block-title {
    font-size: 28px;
  }

  .theme-modal.fancybox__content .btn {
    width: 100%;
  }

  .modal-fault.theme-modal.fancybox__content {
    padding: 0px;
    max-height: unset;
    height: 90vh;
    overflow: auto;
    width: 95% !important;
  }

  .modal-fault.theme-modal.fancybox__content .submit_btn {
    margin-left: 0px;
  }

  .modal-fault.theme-modal.fancybox__content .form-left .form-title {
    font-size: 26px;
  }

  .modal-fault.theme-modal.fancybox__content .modal-bot .privacy-holder {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  #header .header-wrapper .header_socials {
    display: none;
  }

  #header .header-wrapper .phone-wrapper a {
    font-size: 16px;
  }

  #header .burger.open_menu {
    margin-left: 10px;
  }

  #header .header-wrapper .phone-wrapper {
    margin-left: 10px;
  }

  #header .header-wrapper .logo__holder {
    max-width: 115px;
  }

  #header .header-wrapper .logo__holder .logo__text {
    font-size: 16px;
  }

  #footer .container .bot__line {
    flex-direction: column;
    padding: 10px 0px;
  }

  .theme-modal.fancybox__content .is-close-btn {
    top: 0;
  }

  #modal-service.theme-modal.fancybox__content .form h2 {
    font-size: 24px;
    line-height: 30px;
  }

  #modal-service.theme-modal.fancybox__content .form .form-left p {
    font-size: 14px;
    text-align: center;
  }

  .block-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .theme-modal.fancybox__content .form__input input,
  .theme-modal.fancybox__content .form-v2 textarea {
    padding: 15px;
  }

  .modal-fault.theme-modal.fancybox__content {
    padding: 0px;
  }

  .modal-fault.theme-modal.fancybox__content .form-top {
    flex-direction: column;
  }
}

@media (max-width: 450px) {
  .block-title {
    font-size: 26px;
    text-align: center;
  }

  .block-title:before {
    right: 0%;
  }

  #header .container {
    padding: 0px 5px;
  }

  #header .header-wrapper .phone-wrapper a {
    font-size: 14px;
  }

  .modal-fault.theme-modal.fancybox__content {
    padding: 0px;
  }
}

.error404 #primary {
  background: var(--text-color2);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.error-404 .container {
  padding-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-404 .container .error-left {
  margin-right: 100px;
}

.error-404 .container .error-title {
  font-weight: 700;
  font-size: 200px;
  line-height: 160px;
  color: var(--white-color);
}

.error-404 .container .error-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--grey-color2);
  margin-bottom: 30px;
}

@media (max-width: 776px) {
  .error-404 .container {
    flex-direction: column;
  }

  .error-404 .container .error-left {
    margin-right: 0;
  }

  .error-404 .container .error-right {
    text-align: center;
  }

  .error-404 .container .error-btn {
    margin: 0 auto;
  }

  .error-404 .container .error-title {
    font-size: 120px;
  }
}

/*# sourceMappingURL=main.css.map */

#price-block .price-item .price{
  min-width: 120px;
  text-align: right;
}
#header .woo-mobile-menu{
  display: none;
}

@media (max-width: 998px) {
  #header .woo-mobile-menu{
    width: 100%;
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--background);  
    z-index: 98;
    justify-content: space-between;
  }
  #header .woo-mobile-menu .soc__holder .soc__item img{
    width: 40px;
    height: 40px;
  }
  #header .woo-mobile-menu .soc__holder{
    width: 100%;
    display: flex;
  }
  #header .woo-mobile-menu .soc__holder .soc__item{
    display: flex;
    width: 50%;
    justify-content: center;
    align-items: center;
  }
  #header .woo-mobile-menu .soc__holder .soc__item .text-social{
    margin-right: 20px;
    color: #fff;
  }
}