/*========= VARIABLES ==========*/
:root {
  --card: #fff;
  --primary: #46913c;
  --hover: #229f1b;
  --fontFamily: "Inter Tight";
  --mainTextPrimary: #4f4f4f;
  --mainTextSecondary: #8f8f8f;
  --headPrimary: #232222;
  --headSecondary: #fff;
  --danger: #ff5555;
  --bg: #ffffff;
  --bgSecondary: #e7f3e5;
  --strokeSecondary: #d6f0d8;
  --stroke: #cdcdcd;
  --transition: 0.3s all ease-in-out;
}

/*============= ALIGNES ===============*/
.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
  }
}
/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--fontFamily), sans-serif;
  font-weight: 400;
  box-sizing: inherit;
  color: var(--headPrimary);
}

body {
  background-color: var(--bgPrimary);
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: var(--bgPrimary);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
}

a {
  text-decoration: none;
  color: var(--headPrimary);
  transition: var(--transition);
}

ul li {
  list-style-position: inside;
  color: var(--headPrimary);
  font-size: 18px;
  line-height: 26px;
}
ul li::marker {
  color: #1f2f47;
}

ol li {
  list-style-position: inside;
  color: var(--headPrimary);
  font-size: 18px;
  line-height: 26px;
}

p {
  color: var(--headPrimary);
  font-size: 18px;
  line-height: 26px;
}

h1.page-title {
  margin-bottom: 40px;
}

h1,
.h1 {
  font-family: var(--fontFamily);
  font-weight: 600;
  font-size: 64px;
  line-height: 110%;
  letter-spacing: 0%;
}

h2,
.h2 {
  font-family: var(--fontFamily);
  font-weight: 600;
  font-size: 48px;
  line-height: 125%;
  letter-spacing: 0%;
}

h3,
.h3 {
  font-family: var(--fontFamily);
  font-weight: 600;
  font-size: 36px;
  line-height: 125%;
  letter-spacing: 0%;
}

h4,
.h4,
.price {
  font-family: var(--fontFamily);
  font-weight: 600;
  font-size: 24px;
  line-height: 125%;
  letter-spacing: 0%;
}

h5,
.h5 {
  font-family: var(--fontFamily);
  font-weight: 600;
  font-size: 20px;
  line-height: 125%;
  letter-spacing: 0%;
}

h6,
.h6,
#footer .footer__menu a,
.wp-editor strong {
  font-family: var(--fontFamily);
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
}

.p1,
.theme-modal .file span {
  font-family: var(--fontFamily);
  font-weight: 400;
  font-size: 20px;
  line-height: 125%;
  letter-spacing: 0%;
}

input::-moz-placeholder,
.input::-moz-placeholder {
  font-family: var(--fontFamily);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
}

.p2,
#footer .address *,
#footer .footer__requisites *,
#footer .footer__menu .sub-menu a,
#header .header__nav .nav-menu-element a,
.wp-editor p,
.wp-editor li,
.input__placeholder,
input::placeholder,
.input::placeholder,
input,
.input {
  font-family: var(--fontFamily);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
}

.p3,
#header .header__nav .nav-menu-element.has-childs .sub-menu a,
.form__privacy a,
.form__privacy,
.input__wrapper.focus .input__placeholder,
.breadcrumbs span,
.breadcrumbs {
  font-family: var(--fontFamily);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
}

span {
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.breadcrumbs {
  padding-top: 50px;
  padding-bottom: 20px;
  color: var(--mainTextSecondary);
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 5px;
  column-gap: 5px;
  align-items: center;
}
.breadcrumbs span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.breadcrumbs span.current-item {
  color: var(--primary);
}
.breadcrumbs .separator {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--primary);
}
.breadcrumbs a {
  color: inherit;
}
.breadcrumbs a:hover {
  color: #000;
}

.container {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--primary);
  border: 2px solid var(--primary);
  outline: none;
  color: var(--card);
  font-family: var(--fontFamily);
  font-weight: 600;
  font-size: 18px;
  line-height: 113%;
  letter-spacing: 0%;
  text-transform: uppercase;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in;
  padding: 18.5px 38px;
  text-transform: uppercase;
  box-sizing: border-box;
}
.btn:hover {
  background-color: var(--hover);
  border-color: var(--hover);
}
.btn.invert {
  background-color: var(--bg);
  color: var(--primary);
}
.btn.invert:hover {
  background: var(--hover);
  color: var(--card);
  border-color: var(--hover);
}

.inputs__holder {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input,
.input {
  width: 100%;
  outline: none;
  color: var(--mainTextSecondary);
  border: 1px solid var(--stroke);
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  box-sizing: border-box;
  transition: var(--transition);
}

input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: white;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
}
input[type="checkbox"]:checked {
  background-color: var(--primary);
}
input[type="checkbox"]:checked::after {
  opacity: 1;
}
input[type="checkbox"]::after {
  content: "✔";
  position: absolute;
  color: var(--card);
  font-size: 12px;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: var(--transition);
}

input::-moz-placeholder,
.input::-moz-placeholder {
  color: var(--mainTextSecondary);
}
input::placeholder,
.input::placeholder {
  color: var(--mainTextSecondary);
}
input:focus,
.input:focus {
  border-color: var(--hover);
}
input.error,
.input.error {
  border-color: red !important;
}
input.error + label,
.input.error + label {
  color: red;
}

.input__wrapper {
  position: relative;
}

.input__placeholder {
  position: absolute;
  left: 20px;
  top: 16px;
  color: var(--mainTextPrimary);
  background: #b5d3b1;
  transition: all 0.3s;
  font-family: var(--fontFamily);
  padding: 4px;
}

.input__wrapper.focus .input__placeholder {
  top: 4px;
  font-family: var(--fontFamily);
  background-color: transparent;
}

.input__wrapper input,
.input__wrapper textarea {
  color: transparent;
}

.input__wrapper.focus input,
.input__wrapper.focus textarea {
  padding-top: 28px;
  padding-bottom: 12px;
  color: var(--headPrimary);
}

.input__wrapper.write input,
.input__wrapper.write textarea {
  border-color: var(--hover) !important;
  color: var(--hover);
}
.input__wrapper.write .input__placeholder {
  color: var(--hover);
}

textarea {
  height: 200px;
  max-height: 300px;
  max-width: 100%;
  min-width: 100%;
  min-height: 100px;
}

.soc-holder {
  display: flex;
  gap: 10px;
  align-items: center;
}

.soc {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: var(--card);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  border: 1px solid var(--stroke);
}
.soc img,
.soc svg {
  width: 30px;
  height: 30px;
}
.soc:hover {
  background: var(--primary);
}
.soc:hover svg path {
  fill: var(--card);
}
.soc svg path {
  transition: var(--transition);
}

.soc-text {
  max-width: 120px;
  color: var(--mainTextPrimary);
}

.img-holder {
  overflow: hidden;
}
.img-holder img,
.img-holder svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#main,
#primary {
  min-height: 83vh;
}

section,
.error-page .error__content,
.reviews__holder,
.workers__holder,
.documents__holder,
.services__holder,
.archive__wrapper {
  margin-bottom: 120px;
}

.section__title {
  margin-bottom: 40px;
}

.section__descr {
  margin-bottom: 20px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.pagination span.page-numbers.next,
.pagination span.page-numbers.prev {
  background: var(--stroke);
}
.pagination span.page-numbers.next svg path,
.pagination span.page-numbers.prev svg path {
  fill: var(--mainTextSecondary);
}
.pagination span.page-numbers {
  background: var(--primary);
  color: var(--bg);
}
.pagination a.page-numbers:hover {
  border-color: var(--stroke);
  background: var(--bg);
  color: var(--hover);
}
.pagination a.page-numbers.next:hover:hover,
.pagination a.page-numbers.prev:hover:hover {
  background: var(--hover);
  border-color: var(--hover);
}
.pagination a.page-numbers.next:hover:hover svg path,
.pagination a.page-numbers.prev:hover:hover svg path {
  fill: var(--bg);
}
.pagination .page-numbers {
  width: 32px;
  height: 35px;
  min-width: 32px;
  background: var(--card);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  border: 1px solid transparent;
}
.pagination .page-numbers.next,
.pagination .page-numbers.prev {
  border: 1px solid var(--stroke);
  border-radius: 10px;
  min-width: 60px;
  width: 60px;
  height: 60px;
}
.pagination .page-numbers.next {
  margin-left: 10px;
}
.pagination .page-numbers.prev {
  margin-right: 10px;
}

.page__descr {
  margin-bottom: 40px;
  color: var(--mainTextSecond);
}

.price {
  color: var(--primary);
}
.price span {
  font-family: var(--secondFamily);
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
}

.form__privacy {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form__privacy-text {
  color: var(--card);
}
.form__privacy-text a {
  color: var(--card);
  text-decoration: underline;
}

.wp-editor p:first-child {
  margin-top: 0 !important;
}
.wp-editor p,
.wp-editor li {
  color: var(--mainTextPrimary);
}
.wp-editor p {
  margin-bottom: 15px;
}
.wp-editor ul {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wp-editor ul li {
  list-style: none;
  padding-left: 20px;
  position: relative;
}
.wp-editor ul li::before {
  display: block;
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 10px;
  height: 8px;
  border-radius: 100px;
  background: var(--primary);
}
.wp-editor strong {
  display: block;
  padding-left: 30px;
  position: relative;
}
.wp-editor strong::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background: url("../images/danger.svg");
}
.wp-editor h2,
.wp-editor h3,
.wp-editor h4,
.wp-editor h5,
.wp-editor h6 {
  margin-bottom: 30px;
}

/*====== NAVIGATION ===========*/
.navigation.pagination {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  text-align: center;
}
.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  text-align: center;
}
.navigation.pagination .page-numbers {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #1c0130;
}
.navigation.pagination .page-numbers.current {
  font-weight: 750;
}
.navigation.pagination .page-numbers.active {
  background: var(--primary);
  color: var(--bg);
  cursor: none;
  pointer-events: none;
}
.navigation.pagination .page-numbers.disable {
  background: var(--stroke);
  cursor: none;
  pointer-events: none;
}
.navigation.pagination .page-numbers.disable svg path {
  fill: var(--mainTextSecondary);
}
.nav-holder {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  margin-top: 30px;
}
.nav-holder .nav-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-holder .slider-button {
  position: static;
  inset: 0 !important;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  transition: var(--transition);
  border: 1px solid var(--stroke);
  border-radius: 10px;
}
.nav-holder .slider-button::after {
  content: none;
}
.nav-holder .slider-button:hover {
  background: var(--hover);
}
.nav-holder .slider-button:hover svg path {
  fill: var(--bg);
}
.nav-holder .slider-button svg {
  width: 20px;
  height: 20px;
  transition: var(--transition);
}
.nav-holder .swiper-button-disabled {
  background: var(--stroke);
  opacity: 1 !important;
}
.nav-holder .swiper-button-disabled svg path {
  fill: var(--mainTextSecondary);
}
.nav-holder .swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  inset: 0 !important;
  position: static;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.nav-holder .swiper-pagination-bullet {
  opacity: 1 !important;
  margin: 0 !important;
  width: 22px;
  height: 10px;
  background: var(--card);
  border-radius: unset !important;
  transition: var(--transition);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}
.nav-holder .swiper-pagination-bullet-active {
  background: var(--headPrimary);
  width: 36px;
  -webkit-clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
}
.nav-holder .swiper-pagination-progressbar {
  background: var(--stroke);
  border-radius: 2px;
}
.nav-holder .swiper-pagination-progressbar-fill {
  background: var(--primary) !important;
  border-radius: 2px;
}
.nav-holder .swiper-pagination {
  max-width: 1370px;
  width: 100% !important;
}

.glogo {
  width: 111px;
  height: 17px;
  -webkit-mask-image: url("../images/gmask.png");
  mask-image: url("../images/gmask.png");
  -webkit-mask-origin: border-box;
  mask-origin: border-box;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: var(--stroke);
  position: relative;
  cursor: pointer;
}

.glogo:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: red;
  transform: translateX(100%);
  transition: transform 0.7s ease-in;
  background: linear-gradient(
      90deg,
      #fe6604 10%,
      #ee0a76 30%,
      #ee0a76 60%,
      #fe6604 101%
    )
    repeat-x 0 0;
  background-size: 100px;
  animation-duration: 5s;
  animation-name: slideUp;
  animation-iteration-count: infinite;
  animation-delay: 3s;
}

.glogo:hover:before {
  /*transform: translateY(-100%);*/
  animation-name: unset;
  transform: translateX(0);
}

.page.privacy-policy .wp-block-heading {
  margin-top: 30px;
  margin-bottom: 20px;
}
.page.privacy-policy p {
  margin-bottom: 10px;
}
.page.privacy-policy main {
  margin-bottom: 40px;
}

@media screen and (max-width: 1560px) {
  .nav-holder .swiper-pagination {
    max-width: 85% !important;
  }
}
@media screen and (max-width: 1200px) {
  section,
  .error-page .error__content,
  .reviews__holder,
  .workers__holder,
  .documents__holder,
  .services__holder,
  .archive__wrapper {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 992px) {
  .pagination .page-numbers.prev {
    margin-right: 0;
  }
  .nav-holder .swiper-pagination {
    max-width: 60% !important;
  }
  .pagination .page-numbers.next {
    margin-left: 0;
  }
  h2,
  .h2 {
    font-size: 32px;
    line-height: 110%;
  }
  h1,
  .h1 {
    font-size: 32px;
    line-height: 110%;
  }
  .section__title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .pagination .page-numbers {
    min-width: 40px;
    height: 40px;
    width: 40px;
  }
}
@media screen and (max-width: 550px) {
  h1,
  .h1 {
    font-size: 28px;
  }
}
@media screen and (max-width: 450px) {
  .nav-holder .swiper-pagination {
    max-width: 50% !important;
  }
}
@keyframes slideUp {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/*============ HEADER =================*/
#header {
  padding: 15px 0;
  border-bottom: 1px solid var(--stroke);
  position: sticky;
  z-index: 12;
  top: 0;
  width: 100%;
  background: var(--bg);
}
#header .header__logo {
  max-height: 52px;
  max-width: 214px;
  min-width: 214px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
#header .header__phone-btn {
  padding: 10px 35px;
  border-radius: 10px;
  border: 1px solid var(--primary);
  transition: var(--transition);
}
#header .header__phone-btn * {
  transition: var(--transition);
}
#header .header__phone-btn:hover {
  background: var(--primary);
  color: var(--card);
}
#header .header__phone-btn:hover * {
  color: var(--bg);
}
#header .header__wrapper {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  gap: 20px;
}
#header .header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
#header .header__logo-text {
  color: var(--mainTextSecond);
  max-width: 205px;
}
#header .header__contacts {
  display: flex;
  gap: 50px;
  align-items: center;
}
#header .header__contacts-right {
  display: flex;
  gap: 20px;
  align-items: center;
}
#header .header__contacts-info {
  flex-direction: column;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
}
#header .header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  padding-bottom: 8px;
}
#header .header__nav .nav-menu-element a:hover {
  color: var(--hover);
}
#header .header__nav .nav-menu-element {
  list-style: none;
}
#header .header__nav .nav-menu-element.has-childs > a {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
#header .header__nav .nav-menu-element.has-childs > a::after {
  content: "";
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/arrow-menu-down.svg);
  background-position: center;
  transition: all 0.3s ease-in-out;
}
#header .header__nav .nav-menu-element.has-childs {
  position: relative;
}
#header .header__nav .nav-menu-element.has-childs.active::before {
  bottom: -20px;
}
#header .header__nav .nav-menu-element.has-childs:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
#header .header__nav .nav-menu-element.has-childs .sub-menu {
  display: grid;
  grid-template-columns: 1fr;
  position: absolute;
  align-items: start;
  top: 31px;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  min-width: 256px;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translate(0%, 10px);
  visibility: hidden;
  gap: 10px;
  padding: 30px 40px;
  border-radius: 10px;
  background: var(--card);
  z-index: 100;
  transition: all 0.3s;
  transition-delay: 0.15s;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.0784313725);
}
#header
  .header__nav
  .nav-menu-element.has-childs
  .sub-menu
  .nav-menu-element::before {
  content: unset;
}
#header .header__nav .nav-menu-element.has-childs .sub-menu a {
  color: var(--headPrimary);
}
#header .header__nav .nav-menu-element.has-childs .sub-menu a:hover {
  color: var(--hover);
}
#header .header__nav .nav-menu-element.has-childs:hover > a {
  color: var(--hover);
}
#header .header__nav .nav-menu-element.has-childs:hover > a:after {
  filter: brightness(0) saturate(100%) invert(38%) sepia(76%) saturate(895%)
    hue-rotate(78deg) brightness(102%) contrast(89%);
  transform: rotate(180deg);
}
#header .header__workTime {
  color: var(--mainTextSecond);
}
#header .header__btn {
  color: var(--card);
  background: transparent;
}
#header .header__btn:hover {
  background: var(--primary);
}
#header .header__line {
  width: 100%;
  height: 1px;
  background: var(--mainTextPrimary);
}
#header .header__btn-modal {
  width: 100%;
}
#header .header__phones-fixed {
  position: fixed;
  z-index: 12;
  bottom: 50px;
  right: 50px;
}
#header .header__phones-fixed a {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--card);
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .header__phones-fixed a svg {
  max-width: 35px;
  max-height: 35px;
}
#header .phones-holder {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#header .phones-holder h6 {
  white-space: nowrap;
}
#header .address-holder {
  margin-bottom: 20px;
}
#header .address-holder p {
  color: var(--headPrimary);
}
#header .logo-holder {
  margin-bottom: 20px;
}
#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(--primary);
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
  pointer-events: none;
}
#header .burger.open_menu.clicked {
  background-color: var(--primary);
}
#header .burger.open_menu.clicked span {
  background-color: #fff;
}

#header {
  /*================ MOBILE MNU =============*/
}
#header .mobile__nav {
  list-style: none;
  margin-bottom: 20px;
}
#header .mobile__nav a {
  color: var(--card);
}
#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: var(--bg);
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
  overflow-y: auto;
  overflow-x: hidden;
}
#header #mobile-mnu #close-mnu {
  font-size: 45px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transform: rotate(45deg);
  display: block;
  color: var(--primary);
}
#header #mobile-mnu .header__logo {
  margin-bottom: 30px;
}
#header #mobile-mnu .phones-holder {
  margin-bottom: 20px;
}
#header #mobile-mnu .mobile__menu {
  margin-bottom: 30px;
  list-style: none;
}
#header #mobile-mnu .mobile__menu .sub-menu {
  list-style: none;
}
#header #mobile-mnu.opened {
  transform: translateX(0);
}

@media screen and (max-width: 1300px) {
  #header .header__socials {
    display: none;
  }
}
@media screen and (max-width: 1060px) {
  #header .header__btn {
    display: none;
  }
  #header .header__nav {
    display: none;
  }
  #header .burger.open_menu {
    display: flex;
  }
}
@media screen and (max-width: 895px) {
  #header .header__logo-text {
    display: none;
  }
  #header .header__contacts {
    gap: 20px;
  }
  #header .container {
    gap: 10px;
  }
}
@media screen and (max-width: 632px) {
  #header .header__contacts .soc-holder {
    display: none;
  }
  #header .header__logo {
    min-width: unset;
  }
  #header .header__phones-fixed {
    bottom: 100px;
    right: 20px;
  }
}
@media screen and (max-width: 500px) {
  #header .header__phone-btn {
    padding: 5px;
  }
}
@media screen and (max-width: 410px) {
  #header .phone {
    font-size: 16px;
    line-height: 110%;
  }
  #header .header__workTime {
    font-size: 14px;
    line-height: 110%;
  }
  #header .header__contacts-info {
    align-items: flex-start;
  }
  #header .phones-holder h6 {
    font-size: 14px;
    line-height: 110%;
  }
}
@media screen and (max-width: 360px) {
  #header .header__top .phone {
    font-size: 12px;
  }
}
/*============ FOOTER ===============*/
#footer {
  background: var(--headPrimary);
  padding-top: 34.5px;
}
#footer .footer__bottom {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
#footer .footer__contacts-title {
  color: var(--bg);
  margin-bottom: 15px;
}
#footer .footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
#footer .footer__dev {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--stroke);
}
#footer .footer__dev .glogo {
  transition: var(--transition);
}
#footer .footer__dev:hover {
  color: var(--hover);
}
#footer .footer__dev:hover .glogo {
  background-color: var(--hover);
}
#footer .footer__copyright {
  color: var(--stroke);
}
#footer .footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 50px;
}
#footer .footer__column:nth-child(2) {
  display: flex;
  gap: 20px;
}
#footer .footer__logo {
  display: block;
  max-width: 320px;
  max-height: 90px;
  margin-bottom: 60px;
}
#footer .footer__nav {
  min-width: 254px;
}
#footer .footer__menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#footer .footer__menu a {
  color: var(--card);
}
#footer .footer__menu a:hover {
  color: var(--primary);
}
#footer .footer__menu .sub-menu {
  margin-top: 5px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#footer .footer__menu .sub-menu a {
  color: var(--stroke);
}
#footer .footer__menu .sub-menu a:hover {
  color: var(--card);
}
#footer .footer__nav-title {
  display: block;
  color: var(--card);
  margin-bottom: 20px;
}
#footer .footer__requisites * {
  color: var(--stroke);
}
#footer .footer__requisites p {
  margin-bottom: 5px;
}
#footer .footer__btn {
  margin-bottom: 20px;
}
#footer .phones-holder {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}
#footer .phone {
  color: var(--card);
}
#footer .address * {
  color: var(--stroke);
}
#footer .emails-holder {
  margin-bottom: 50px;
}
#footer .email {
  color: var(--mainTextSecondary);
  text-decoration: underline;
}
#footer .privacy-policy {
  color: var(--stroke);
  text-decoration: underline;
}
#footer .privacy-policy:hover {
  color: var(--hover);
}

@media screen and (max-width: 1360px) {
  #footer .footer__nav {
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}
@media screen and (max-width: 1121px) {
  #footer .footer__column {
    flex-wrap: wrap;
  }
  #footer .footer__column:nth-child(1) {
    order: 1;
  }
  #footer .footer__column:nth-child(2) {
    order: 3;
  }
  #footer .footer__column:nth-child(3) {
    order: 2;
  }
  #footer .footer__logo,
  #footer .footer__btn,
  #footer .emails-holder {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 744px) {
  #footer .footer__bottom {
    flex-direction: column;
  }
}
@media screen and (max-width: 420px) {
  #footer .footer__top {
    flex-direction: column;
    margin-bottom: 0;
    padding-bottom: 20px;
  }
}
/* ============== MODAL ============= */
.wpcf7 .wpcf7-response-output,
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .ajax-loader {
  display: none;
}
.wpcf7 .wpcf7-spinner {
  display: none;
}

.form.form-v2 button {
  width: 100%;
}
.form.form-v2 .form-subtitle {
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--mainTextPrimary);
}
.form.form-v2 .checkbox-holder {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
  /* Checked */
  /* Hover */
}
.form.form-v2 .checkbox-holder .form-line {
  height: 20px;
  width: 3px;
  display: block;
  background: var(--mainTextSecond);
}
.form.form-v2 .checkbox-holder .form_radio input[type="radio"] {
  display: none;
}
.form.form-v2 .checkbox-holder .form_radio label {
  display: inline-block;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-right: 0;
  line-height: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: var(--mainTextSecond);
  transition: var(--transition);
}
.form.form-v2 .checkbox-holder .form_radio label:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--mainTextSecond);
  background: #fff;
  transition: var(--transition);
}
.form.form-v2
  .checkbox-holder
  .form_radio
  input[type="radio"]:checked
  + label:before {
  background: var(--hover);
  border-color: var(--card);
  box-shadow: 0 0 0 1px var(--hover);
}
.form.form-v2 .checkbox-holder .form_radio input[type="radio"]:checked:before {
  background: var(--hover);
  border-color: var(--card);
  box-shadow: 0 0 0 1px var(--hover);
}
.form.form-v2 .checkbox-holder .form_radio input[type="radio"]:checked + label {
  color: var(--hover);
}
.form.form-v2 .checkbox-holder .form_radio label:hover:before {
  background: var(--hover);
  border-color: var(--card);
  box-shadow: 0 0 0 1px var(--hover);
}
.form.form-v2 .checkbox-holder .form_radio label:hover {
  color: var(--hover);
}

#modal-success,
#modal-error {
  max-width: 100%;
}
#modal-success .btn,
#modal-error .btn {
  width: 100%;
}

.theme-modal {
  display: none;
}
.theme-modal.fancybox__content {
  border-radius: 10px;
  width: 870px;
  padding: 60px;
  background: var(--primary);
  box-sizing: border-box;
  position: relative;
}
.theme-modal.fancybox__content > .f-button.is-close-btn svg path {
  transition: stroke 0.3s ease-in;
}
.theme-modal.fancybox__content > .f-button.is-close-btn:hover svg path {
  stroke: var(--primary);
}
.theme-modal input[type="file"] {
  display: none;
}
.theme-modal button {
  margin-bottom: 10px;
}
.theme-modal .file span {
  display: block;
  position: relative;
  display: block;
  transition: 0.3s;
  width: 100%;
  text-align: center;
  background: var(--strokeSecondary);
  cursor: pointer;
  color: var(--primary);
  margin-bottom: 5px;
}
.theme-modal .file span:hover {
  color: var(--hover);
}
.theme-modal .file__holder {
  margin-bottom: 40px;
}
.theme-modal .file__descr {
  color: var(--bg);
}
.theme-modal .form__item {
  text-transform: uppercase;
  color: var(--mainTextSecond);
}
.theme-modal .close-modal {
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
}
.theme-modal .form__title {
  color: var(--bg);
  margin-bottom: 10px;
}
.theme-modal .form__descr {
  margin-bottom: 40px;
  color: var(--bg);
}
.theme-modal .f-button.is-close-btn {
  display: none;
}
.theme-modal .review__item-text {
  display: block;
}
.theme-modal .review__link {
  display: none;
}

#modal-callback .inputs__holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

@media screen and (max-width: 700px) {
  #modal-callback .inputs__holder {
    margin-bottom: 10px;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
#modal-review-single {
  background: var(--bgSecondary);
}

#modal-review-single .close-modal {
  top: 20px;
  right: 20px;
}
#modal-review-single .close-modal svg path {
  fill: var(--primary);
}

[form-send][disabled] {
  opacity: 0.5;
}

@media screen and (max-width: 750px) {
  #modal-review-single .review__item-img {
    max-height: 100px;
  }
}
@media screen and (max-width: 510px) {
  .theme-modal.fancybox__content {
    padding: 40px 20px;
  }
  .theme-modal .close-modal {
    top: 20px;
    right: 20px;
  }
  #modal-review-single {
    padding-top: 50px;
  }
}
.services__holder {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
.services__holder .service__item {
  grid-column: 2 span;
}
.services__holder .service__item:first-child,
.services__holder .service__item:nth-child(2) {
  grid-column: 3 span;
  max-height: 420px;
  height: 22vw;
}

@media screen and (max-width: 1340px) {
  .services__holder .service__item {
    grid-column: 3 span;
  }
}
@media screen and (max-width: 950px) {
  .services__holder {
    grid-template-columns: 1fr;
  }
  .services__holder .service__item {
    max-height: 450px !important;
    height: 60vw !important;
  }
}
.documents__holder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media screen and (max-width: 1300px) {
  .documents__holder {
    grid-template-columns: 1fr;
  }
}
.workers__holder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media screen and (max-width: 1300px) {
  .workers__holder {
    grid-template-columns: 1fr;
  }
}
.reviews__holder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.reviews__holder .reviews__site {
  padding: 15px 20px;
  background: var(--bgSecondary);
  border-radius: 10px;
}
.reviews__holder .reviews__site-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 45px;
}
.reviews__holder .reviews__site-icon {
  max-width: 200px;
  max-height: 40px;
  overflow: hidden;
}
.reviews__holder .reviews__site-icon img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.reviews__holder .reviews__count {
  color: var(--mainTextSecondary);
}
.reviews__holder .reviews__btn {
  width: 100%;
}

@media screen and (max-width: 1180px) {
  .reviews__holder {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 640px) {
  .reviews__holder {
    grid-template-columns: 1fr;
  }
}
.service__item {
  position: relative;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  max-height: 280px;
  height: 19vw;
  z-index: 0;
  border-radius: 10px;
  overflow: hidden;
}
.service__item::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: -1;
}
.service__item:hover .service__item-img {
  transform: translate(-50%, -50%) scale(1.1);
}
.service__item-price {
  color: var(--headSecondary);
}
.service__item-title {
  color: var(--headSecondary);
  text-align: center;
}
.service__item-img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  transition: var(--transition);
  z-index: -2;
}

@media screen and (max-width: 1500px) {
  .service__item {
    height: 30vw !important;
    padding: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .service__item {
    padding: 15px;
  }
}
@media screen and (max-width: 450px) {
  .service__item-title {
    font-size: 24px;
    line-height: 110%;
  }
}
.document__item {
  padding: 40px;
  background: var(--bgSecondary);
  border: 1px solid var(--strokeSecondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: 100%;
  box-sizing: border-box;
  border-radius: 10px;
  min-height: 510px;
  position: relative;
}
.document__item-title {
  margin-bottom: 40px;
  text-align: center;
}
.document__item-img {
  max-width: 260px;
  max-height: 170px;
  margin-bottom: 50px;
}
.document__item-btn {
  margin-left: auto;
  margin-right: auto;
}
.document__bottom {
  margin-top: auto;
}
.document__text {
  position: absolute;
  inset: 20px;
  border-radius: 10px;
  background: var(--bg);
  padding: 30px 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.document__text:hover {
  opacity: 1;
  visibility: visible;
}
.document__text-inner {
  padding-right: 10px;
  max-height: 410px;
  overflow: auto;
}
.document__text-inner::-webkit-scrollbar {
  width: 2px;
}
.document__text-inner::-webkit-scrollbar-track {
  background: var(--stroke);
}
.document__text-inner::-webkit-scrollbar-thumb {
  background-color: var(--primary);
}
.document__item-btn:hover + .document__text {
  inset: 20px;
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1100px) {
  .document__item {
    padding: 20px;
  }
}
.worker__item-img {
  max-height: 480px;
  height: 30vw;
  margin-bottom: 15px;
  border-radius: 20px;
  overflow: hidden;
}
.worker__item-title {
  margin-bottom: 5px;
  color: var(--headPrimary);
}
.worker__item-job-title {
  color: var(--mainTextSecondary);
}

@media screen and (max-width: 992px) {
  .worker__item-img {
    height: 40vw;
  }
}
@media screen and (max-width: 700px) {
  .worker__item-img {
    height: 60vw;
  }
}
@media screen and (max-width: 470px) {
  .worker__item-img {
    height: 120vw;
  }
}
.review__item {
  padding: 30px;
  background: var(--bgSecondary);
  border-radius: 10px;
}
.review__item-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.review__item-title {
  flex-basis: 100%;
  max-width: 330px;
}
.review__item-date {
  color: var(--mainTextSecondary);
}
.review__item-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
  color: var(--mainTextPrimary);
  margin-bottom: 10px;
}
.review__link {
  cursor: pointer;
  color: var(--primary);
  margin-bottom: 30px;
}
.review__item-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 30px;
}
.review__item-img {
  max-height: 60px;
  cursor: pointer;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.review__item-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.review__item-img::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  height: 30px;
  width: 30px;
  transform: translate(-50%, -50%);
  background: url("../images/review-img-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.review__item-img:hover::before,
.review__item-img:hover::after {
  opacity: 1;
}

@media screen and (max-width: 750px) {
  .review__item-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .review__item-img {
    max-height: 100px;
  }
}
@media screen and (max-width: 400px) {
  .review__item {
    padding: 20px;
  }
}
.error-page .error__content {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.error-page .error__img {
  max-width: 750px;
  max-height: 330px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}
.error-page .error__title {
  margin-bottom: 20px;
  text-align: center;
}
.error-page .error__descr {
  text-align: center;
  color: var(--mainTextPrimary);
  margin-bottom: 40px;
}
.error-page .error__btn {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1440px) {
  .error-page .error__content {
    gap: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1320px) {
  .error-page .error__content {
    justify-content: center;
    gap: 20px;
  }
  .error-page .error__title,
  .error-page .error__descr {
    text-align: center;
  }
  .error-page .btn {
    margin: 0px auto;
  }
} /*# sourceMappingURL=main.css.map */
