/*!
Theme Name: Plumber
 */

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;700;800&display=swap");

* {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	line-height: 1.5em;
}

ol,
ul {
	list-style: none;
}

button {
	border: none;
	cursor: pointer;
}

a {
	text-decoration: none;
	color: inherit;
}

a:hover {
	text-decoration: none;
	color: inherit;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

html {
	overflow-x: hidden;
}

body {
	font-family: 'Open Sans',
		sans-serif;
	font-size: 15px;
	font-weight: 400;
	background: #fff;
	overflow-x: hidden;
	color: #313131;
}

.no-scroll {
	overflow: hidden;
}

.container {
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 15px;
}

h1 {
	font-size: 42px;
	font-weight: 800;
}

h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 70px;
	position: relative;
	text-align: center;
	line-height: 40px;
	max-width: 700px;
	margin: 0 auto 70px auto;
}

h2::before {
	content: '';
	position: absolute;
	bottom: -10px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	left: 50%;
	width: 10%;
	height: 2px;
	background: #FECE2D;
}

h3 {
	font-size: 20px;
	font-weight: 700;
	margin-top: 20px;
	margin-bottom: 25px;
	position: relative;
}

p {
	margin-top: 15px;
	font-size: 15px;
	font-weight: 400;
	margin-bottom: 7px;
	line-height: 30px;
}

li {
	position: relative;
	font-size: 15px;
	line-height: 25px;
	list-style: none;
	padding-left: 25px;
	margin: 12px 0;
	font-weight: 400;
}

li::before {
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background: #FECE2D;
}

strong {
	font-weight: 700;
}

blockquote {
	font-size: 15px;
	line-height: 17px;
	margin: 20px 0;
	border-left: 4px solid #59981A;
	padding: 15px 20px;
	font-weight: 600;
	font-style: italic;
	background-color: rgb(248, 248, 248);
}

blockquote>p {
	margin-top: 0;
	margin-bottom: 0;
}

b {
	font-weight: 700;
}

em {
	font-style: italic;
}

input,
button,
textarea,
a {
	outline-color: #fff;
}

.no-scroll_pop {
	overflow: hidden !important;
}

.btn {
	display: inline-flex;
	align-items: center;
	position: relative;
	background: #59981A;
	border-radius: 25px;
	font-weight: 600;
	font-size: 20px;
	color: #fff;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	position: relative;
	padding: 12px 30px 12px 65px;
}

.btn:hover {
	-webkit-transform: translateX(5px);
	-ms-transform: translateX(5px);
	transform: translateX(5px);
	background: #FECE2D;
	color: #fff;
}

.btn:hover .btn__arrow-hover div {
	background: #fff;
}

.btn:hover .btn__arrow-hover div::after {
	background: #fff;
}

.btn:hover .btn__arrow-hover div::before {
	background: #fff;
}

.btn:hover .btn__arrow-hover {
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}

.btn:active {
	-webkit-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transform: scale(0.9);
}

.btn__arrow-hover {
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 20px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-animation: arrow-hover 1.5s linear infinite;
	animation: arrow-hover 1.5s linear infinite;
}

.btn__arrow-hover div {
	position: relative;
	top: 0;
	width: 25px;
	height: 3px;
	background-color: #fff;
	-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
	left: 0;
	display: block;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.btn__arrow-hover div::after {
	content: '';
	position: absolute;
	width: 10px;
	height: 3px;
	top: -3px;
	right: -1px;
	background-color: #fff;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.btn__arrow-hover div::before {
	content: '';
	position: absolute;
	width: 10px;
	height: 3px;
	top: 3px;
	right: -1px;
	background-color: #fff;
	-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

@-webkit-keyframes arrow-hover {
	0% {
		left: 20px;
	}

	50% {
		left: 25px;
	}

	100% {
		left: 20px;
	}
}

@keyframes arrow-hover {
	0% {
		left: 20px;
	}

	50% {
		left: 25px;
	}

	100% {
		left: 20px;
	}
}

.header {
	padding: 10px 0;
}

.header__wrapper {
	min-height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header__left {
	margin-right: 100px;
}

.header__logo {
	width: 200px;
	height: auto;
	display: block;
}

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

.header__right {
	width: 100%;
	min-height: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	overflow: hidden;
}

.header__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 10px;
}

.header__block {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.header__block:nth-child(1) {
	width: 300px;
}

.header__text {
	font-weight: 500;
	line-height: 21px;
	margin: 0;
	font-size: 14px;
}

.header__time {
	font-size: 14px;
	line-height: 21px;
}

.header__addr {
	margin-bottom: 10px;
}

.header__mail {
	display: block;
	font-weight: 500;
	font-size: 14px;
	line-height: 21px;
}

.header__phone {
	display: flex;
	align-items: center;
}

.header__phone:hover .header__icon {
	animation-play-state: paused;
}

.header__phone.active .header__tel {
	max-height: 15px;
	opacity: 1;
	visibility: visible;
}

.header__phone.active .header__tel a {
	max-width: 105px;
}

.header__phone.active .header__icon {
	animation-play-state: paused;
}

.header__phone.active svg path {
	fill: #FECE2D;
}

.header__icon {
	animation: 3000ms ease 0s infinite shake;
	display: block;
	width: 20px;
	height: 23px;
	cursor: pointer;
}

.header__icon:hover {
	animation-play-state: paused;
}

.header__icon:hover svg path {
	fill: #FECE2D;
}

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

.header__icon svg path {
	transition: fill 0.2s ease 0s;
}

.header__tel {
	/* max-height: 0;
	overflow: hidden;
	opacity: 0;
	visibility: hidden; */
	margin-left: 15px;
	transition: opacity 0.3s ease 0.1s;
}

.header__tel a {
	text-decoration: none;
	font-weight: 600;
	display: block;
	/* line-height: 15px; */
	transition: all 0.3s ease 0.1s;
	/* max-width: 0; */
	font-size: 22px;
}

.header__tel a:hover {
	color: #FECE2D;
}

@keyframes shake {
	0% {
		transform: rotateZ(0deg);
	}

	10% {
		transform: rotateZ(-30deg);
	}

	20% {
		transform: rotateZ(15deg);
	}

	30% {
		transform: rotateZ(-10deg);
	}

	40% {
		transform: rotateZ(7.5deg);
	}

	50% {
		transform: rotateZ(-6deg);
	}

	60% {
		transform: rotateZ(5deg);
	}

	70% {
		transform: rotateZ(-4.28571deg);
	}

	80% {
		transform: rotateZ(3.75deg);
	}

	90% {
		transform: rotateZ(-3.33333deg);
	}

	100% {
		transform: rotateZ(0deg);
	}
}

.header__btn {
	min-width: 190px;
	padding: 7px 15px;
	background: none;
	border: 2px solid #FECE2D;
	color: #FECE2D;
	font-size: 18px;
	letter-spacing: 1px;
	display: flex;
	justify-content: center;
	font-weight: 500;
	border-radius: 25px;
	line-height: 20px;
}

.header__btn:hover {
	transform: none;
}

.header__menu nav {
	overflow-x: scroll;
	overflow-y: hidden;
	padding-bottom: 5px;
}

.header__menu nav::-webkit-scrollbar {
	height: 6px;
}

.header__menu nav::-webkit-scrollbar-thumb {
	background-color: #c9c9c9;
	border-radius: 14px;
}

.header__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: max-content;
}

.header__list li {
	position: relative;
	cursor: pointer;
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0;
}

.header__list li:before {
	content: none;
}

.header__list li:not(:last-child) {
	margin-right: 40px;
}

.header__list li:hover .header__sub-list {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.header__list li:hover .header__link {
	color: #59981A;
}

.header__item {
	position: relative;
	cursor: pointer;
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0;
}

.header__item:before {
	content: none;
}

.header__item:not(:last-child) {
	margin-right: 40px;
}

.header__item:hover .header__sub-list {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.header__item:hover .header__link {
	color: #59981A;
}

.header__link {
	font-size: 14px;
	font-weight: 700;
	color: #1f1f1f;
	-webkit-transition: color 0.3s ease 0s;
	-o-transition: color 0.3s ease 0s;
	transition: color 0.3s ease 0s;
	padding: 20px 0;
	text-transform: uppercase;
}

.header__link:hover {
	color: #59981A;
}

.header__link.active {
	color: #59981A;
}

.header__sub-list {
	position: absolute;
	top: 33px;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	border-radius: 5px;
	opacity: 0;
	visibility: hidden;
	z-index: 5;
	background: #fff;
	-webkit-box-shadow: 0 0 5px rgba(44, 44, 44, 0.9);
	box-shadow: 0 0 5px rgba(44, 44, 44, 0.9);
	pointer-events: none;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.header__sub-list:hover .header__link {
	color: #59981A;
}

.header__sub-item {
	-webkit-transition: background 0.3s ease 0s;
	-o-transition: background 0.3s ease 0s;
	transition: background 0.3s ease 0s;
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0;
}

.header__sub-item:before {
	content: none;
}

.header__sub-item:hover {
	background: #59981A;
}

.header__sub-item:hover .header__sub-link {
	color: #fff;
}

.header__sub-item:nth-child(1) {
	border-radius: 5px 5px 0 0;
}

.header__sub-item:last-child {
	border-radius: 0 0 5px 5px;
}

.header__sub-link {
	text-transform: uppercase;
	display: block;
	width: 100%;
	font-size: 13px;
	font-weight: 700;
	color: #1f1f1f;
	-webkit-transition: color 0.3s ease 0s;
	-o-transition: color 0.3s ease 0s;
	transition: color 0.3s ease 0s;
	padding: 10px;
}

.hamburger {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
	height: 18px;
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	cursor: pointer;
	z-index: 500;
}

.hamburger span {
	display: block;
	width: 25px;
	height: 2px;
	background: black;
	border-radius: 30px;
	-webkit-transition: all 0.1s ease 0s;
	-o-transition: all 0.1s ease 0s;
	transition: all 0.1s ease 0s;
}

.close span:nth-child(1) {
	-webkit-transform: translateY(8px) rotate(-45deg);
	-ms-transform: translateY(8px) rotate(-45deg);
	transform: translateY(8px) rotate(-45deg);
}

.close span:nth-child(2) {
	display: none;
}

.close span:nth-child(3) {
	-webkit-transform: translateY(-8px) rotate(45deg);
	-ms-transform: translateY(-8px) rotate(45deg);
	transform: translateY(-8px) rotate(45deg);
}

.main {
	min-height: 600px;
	background: #F8F8F8;
	position: relative;
	padding: 120px 0 80px 0;
}

.main__wrapper {
	position: relative;
}

.main__content {
	max-width: 600px;
}

.main__wrapper:before {
	content: '';
	position: absolute;
	right: -100px;
	top: -70px;
	width: 540px;
	height: 550px;
	background: url("assets/img/bg-main_1.png") center center / cover no-repeat;
}

.main__title {
	font-weight: 700;
	font-size: 52px;
	margin-bottom: 20px;
	color: #000;
	line-height: 60px;
}

.main__subtitle {
	font-weight: 500;
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 32px;
	color: #000;
}

.main__btn {
	background: #59981A;
	color: #fff;
}

.main__btn:hover {
	background: #FECE2D;
}

.main__btn .btn__arrow-hover div {
	background: #fff;
}

.main__btn .btn__arrow-hover div::after {
	background: #fff;
}

.main__btn .btn__arrow-hover div::before {
	background: #fff;
}

.empl {
	padding: 80px 0;
}

.empl__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-right: -10px;
	margin-left: -10px;
}

.empl__item {
	display: block;
	width: calc(-20px + 25%);
	margin-right: 10px;
	margin-left: 10px;
	border: 2px solid #e5e5e5;
	border-radius: 4px;
	padding-bottom: 10px;
	padding: 8px;
}

.empl__item:hover .services__descr {
	color: #fff;
}

.empl__img {
	height: 250px;
	border-radius: 5px;
}

.empl__img img {
	border-radius: 5px;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.empl__name {
	margin-top: 10px;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
}

.empl__position {
	margin-top: 5px;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	color: #414141;
}

.price {
	padding: 80px 0 100px 0;
}

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

.price__table {
	width: 55%;
	border-radius: 2px;
	border: 1px solid #E3E3E3;
}

.price__table th:nth-child(1) {
	border-radius: 1px 0 0 0;
}

.price__table th:nth-child(2) {
	border-radius: 0 1px 0 0;
}

.price__block {
	width: 40%;
	border: 1px solid #E3E3E3;
	border-radius: 2px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.price__subtitle {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
}

.price__descr {
	font-weight: 500;
	font-size: 17px;
	margin-bottom: 30px;
}

table {
	width: 100%;
}

td,
th {
	padding: 13px;
	border-top: 1px solid #E3E3E3;
}

td {
	font-weight: 700;
	font-size: 17px;
	color: #373738;
}

td:last-child {
	text-align: right;
}

th {
	background: #E3E3E3;
	border-top: none;
	font-weight: 700;
	font-size: 15px;
	text-align: left;
	text-transform: uppercase;
}

th:last-child {
	text-align: right;
}

td:first-child,
th:first-child {
	border-left: none;
}

.benefits {
	padding: 80px 0;
	background-color: rgb(248, 248, 248);
}

.benefits__wrapper {
	margin-top: 70px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 30px;
}

.benefits__item {
	width: 350px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.benefits__item:not(:last-child) {
	margin-right: 30px;
}

.benefits__content {
	display: flex;
	align-items: center;
	height: 70px;
}

.benefits__img {
	height: 50px;
}

.benefits__descr {
	font-size: 16px;
	margin-left: 20px;
	font-weight: 700;
	line-height: 23px;
}

.benefits__sub-descr {
	margin-top: 10px;
	padding-bottom: 10px;
	line-height: 24px;
	font-size: 14px;
}

.benefits__text {
	margin-top: 8px;
	font-weight: 500;
}

.services {
	padding: 80px 0;
	background-color: rgb(248, 248, 248);
}

.services__wrapper {
	margin-top: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: center;
	margin-left: -20px;
	margin-right: -20px;
}

.services__item {
	display: block;
	width: calc(33.3333% - 40px);
	margin-left: 20px;
	margin-right: 20px;
	border: 3px solid rgb(248, 248, 248);
	background: rgb(248, 248, 248);
	border-radius: 4px;
	padding: 4px;
}

.services__img {
	height: 300px;
}

.services__img img {
	width: 100%;
	height: 100%;
	border-radius: 14px;
}

.services__descr {
	text-align: center;
	margin-top: 25px;
	font-weight: 700;
	font-size: 19px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	margin-bottom: 8px;
}

.reviews {
	padding: 80px 0 0 0;
}

.reviews__wrapper {
	margin-top: 30px;
}

/* .gallery {
	padding: 80px 0 0 0;
}

.gallery__wrapper {
	margin-top: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
}

.gallery__item {
	margin-left: 10px;
	margin-right: 10px;
	width: calc(-20px + 33.3333%);
	height: 220px;
	padding: 10px;
	border: 2px solid #e5e5e5;
	border-radius: 4px;
	margin-bottom: 20px;
}

.gallery__item img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 3px;
} */

.faq {
	padding: 80px 0;
	background-color: rgb(248, 248, 248);
}

.faq__content {
	margin-top: 20px;
}

.accordion {
	position: relative;
	border-radius: 5px;
	background: #ffffff;
}

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

.accordion.active {
	-webkit-transition: all 0.2s ease 0s;
	-o-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
}

.question {
	text-align: left;
	width: 100%;
	display: block;
	position: relative;
	font-weight: 700;
	background: none;
	padding: 20px 50px 20px 20px;
	cursor: pointer;
	border: none;
	font-size: 16px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	color: #474747;
}

.question::before {
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-60%) rotate(45deg);
	border: solid rgb(58, 58, 58);
	border-width: 0 1px 1px 0;
	display: inline-block;
	padding: 4px;
	transition: transform 0.2s ease 0s;
}

.question.active::before {
	transform: translateY(-40%) rotate(-135deg);
}

.answer {
	line-height: 18px;
	font-size: 15px;
	max-height: 0;
	overflow: hidden;
	-webkit-transition: max-height 0.3s ease-out;
	-o-transition: max-height 0.3s ease-out;
	transition: max-height 0.3s ease-out;
	padding: 0 20px 0 20px;
}

.answer p {
	margin-top: 0;
	margin-bottom: 20px;
}

.geography {
	padding: 80px 0;
	background-color: rgb(248, 248, 248);
}

.geography__nav {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.geography__link {
	width: calc(25% - 30px);
	text-align: center;
	margin-bottom: 20px;
	font-weight: 500;
	line-height: 17px;
	transition: color 0.3s ease 0s;
	margin-right: 15px;
	margin-left: 15px;
}

.geography__link:hover {
	color: #59981A;
}

.feedback {
	padding: 80px 0;
}

.feedback__wrapper {
	margin-top: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.feedback__item {
	width: 50%;
	padding: 100px;
	border: 2px solid #59981A;
	border-radius: 2px 0 0 2px;
	position: relative;
}

.feedback__item:nth-child(1)::before {
	content: '';
	position: absolute;
	width: 35px;
	height: 35px;
	border-top: 2px solid #59981A;
	border-right: 2px solid #59981A;
	right: -19px;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
	background: #fff;
}

.feedback__item:last-child {
	border-radius: 0 2px 2px 0;
	border: 2px solid #E3E3E3;
	border-left: none;
}

.feedback__subtitle {
	margin-top: 30px;
}

.feedback__text {
	margin-bottom: 50px;
	font-weight: 500;
	font-size: 18px;
}

.feedback__form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.feedback__input {
	border-bottom: 1px solid #E3E3E3;
	width: 100%;
	height: 40px;
	padding: 10px 5px;
	margin-bottom: 20px;
	font-size: 13px;
}

.feedback__input::-webkit-input-placeholder {
	color: #808080;
}

.feedback__input:-ms-input-placeholder {
	color: #808080;
}

.feedback__input::-ms-input-placeholder {
	color: #808080;
}

.feedback__input::placeholder {
	color: #808080;
}

.feedback__input:focus {
	border-bottom: 2px solid #59981A;
}

.feedback__textarea {
	border-bottom: 1px solid #E3E3E3;
	width: 100%;
	height: 105px;
	padding: 10px 5px;
	resize: none;
	font-size: 13px;
}

.feedback__textarea::-webkit-input-placeholder {
	color: #808080;
}

.feedback__textarea:-ms-input-placeholder {
	color: #808080;
}

.feedback__textarea::-ms-input-placeholder {
	color: #808080;
}

.feedback__textarea::placeholder {
	color: #808080;
}

.feedback__textarea:focus {
	border-bottom: 2px solid #59981A;
}

.feedback__btn {
	margin-top: 20px;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	padding: 10px 30px;
}

.feedback__subtitle {
	font-weight: 700;
	font-size: 26px;
}

.feedback__descr {
	margin-bottom: 10px;
}

.feedback__mail {
	color: #59981A;
	-webkit-transition: color 0.3s ease 0s;
	-o-transition: color 0.3s ease 0s;
	transition: color 0.3s ease 0s;
	font-weight: 500;
}

.feedback__mail:hover {
	color: #FECE2D;
}

.feedback__time {
	margin-top: 20px;
	margin-bottom: 20px;
}

.feedback__time span {
	font-weight: 700;
}

.feedback__addr span {
	font-weight: 700;
}

.feedback__technical {
	margin-top: 50px;
	padding-left: 17px;
	border-left: 2px solid #59981A;
}

.feedback__technical-title {
	font-weight: 700;
	margin-bottom: 5px;
}

.feedback__technical-mail {
	color: #59981A;
	-webkit-transition: color 0.3s ease 0s;
	-o-transition: color 0.3s ease 0s;
	transition: color 0.3s ease 0s;
	display: block;
	font-weight: 500;
	font-size: 16px;
}

.feedback__technical-mail:hover {
	color: #59981A;
}

.footer {
	background: rgb(68, 68, 68);
	min-height: 250px;
	padding-bottom: 40px;
}

.footer__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.footer__row:nth-child(1) {
	padding: 30px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__row:last-child {
	padding-top: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.footer__block:first-child {
	padding-right: 30px;
}

.footer__title {
	font-size: 19px;
	line-height: 24px;
	font-weight: 600;
	color: #fff;
}

.footer__menu {
	margin-top: 15px;
}

.footer__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -20px;
	margin-right: -20px;
}

.footer__item {
	padding-left: 0;
	margin: 10px 0;
	line-height: 17px;
}

.footer__list li {
	padding-left: 0;
	margin: 10px 20px;
	line-height: 17px;
}

.footer__item::before {
	content: none;
}

.footer__list li::before {
	content: none;
}

.footer__link {
	color: #fff;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	font-size: 13px;
}

.footer__link:hover {
	color: #59981A;
}

.footer__text {
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.7);
}

.footer__descr {
	font-size: 15px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 7px;
}

.footer__addr {
	font-size: 15px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 7px;
}

.footer__time {
	font-size: 15px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
}

.footer__mail {
	text-align: right;
	display: block;
	font-weight: 500;
	font-size: 17px;
	color: #fff;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.footer__mail:hover {
	color: #59981A;
}

.footer__info-list {
	margin-top: 15px;
	text-align: right;
}

.footer__info-item {
	margin: 5px 0;
}

.footer__info-item::before {
	content: none;
}

.footer__info-link {
	color: #dbdbdb;
	transition: color 0.3s ease 0s;
}

.footer__info-link:hover {
	color: #59981A;
}

.eXzlnr {
	flex-direction: column !important;
}

#breadcrumbs {
	display: flex;
	margin-top: 20px;
	font-weight: 700;
	color: #59981A;
	font-size: 16px;
}

#breadcrumbs>span>span>a {
	color: rgb(95, 95, 95);
	padding-right: 10px;
	font-size: 14px;
}

#breadcrumbs>span>span>span {
	color: rgb(22, 22, 22);
	padding-left: 10px;
	font-size: 15px;
}

.x404 {
	padding: 0 0 50px 0;
}

.x404__title {
	margin-top: 100px;
	text-align: center;
	font-size: 200px;
	line-height: 200px;
	font-weight: 900;
	letter-spacing: 5px;
}

.x404__subtitle {
	margin-top: 30px;
	text-align: center;
	font-size: 30px;
	line-height: 30px;
}

.x404__block {
	margin-top: 30px;
	text-align: center;
	font-size: 20px;
}

.agree {
	display: none !important;
}


.popup-overlay {
	overflow: hidden;
	opacity: 0;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: -1;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}

.popup-overlay.active {
	overflow: visible;
	opacity: 1;
	z-index: 150;
}

.popup {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 600px;
	background-color: #fff;
	padding: 30px 80px 5px 40px;
	border-radius: 4px;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: all 0.2s ease 0s;
	-o-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
}

.popup.active {
	overflow: visible;
	opacity: 1;
}

.popup__form {
	margin-top: 10px;
	width: 100%;
}

.popup__btn {
	padding: 10px 30px;
}

.popup__input {
	width: 100%;
	border-bottom: 1px solid #E3E3E3;
	height: 40px;
	padding: 10px 5px;
	margin-bottom: 30px;
	font-size: 13px;
}

.popup__input:focus {
	border-bottom: 2px solid #59981A;
}

.popup__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	border: 2px solid #212121;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	cursor: pointer;
}

.popup__close span {
	display: block;
	width: 20px;
	height: 3px;
	background: #212121;
	border-radius: 4px;
}

.popup__close span:nth-child(1) {
	-webkit-transform: rotate(45deg) translate(1px, 1px);
	-ms-transform: rotate(45deg) translate(1px, 1px);
	transform: rotate(45deg) translate(1px, 1px);
}

.popup__close span:nth-child(2) {
	-webkit-transform: rotate(-45deg) translate(1px, -1px);
	-ms-transform: rotate(-45deg) translate(1px, -1px);
	transform: rotate(-45deg) translate(1px, -1px);
}

.popup__title {
	width: 80%;
	font-size: 32px;
	line-height: 32px;
	font-weight: 600;
	color: #000;
}

.popup__descr {
	margin-top: 10px;
	font-size: 16px;
	font-weight: 400;
}

#comments {
	margin: 0;
	max-width: 100%;
}

#wpdcom {
	max-width: 100%;
	display: flex;
	flex-direction: column-reverse;
}

#wpdcom .wpd-thread-list {
	padding-bottom: 0;
}

#wpdcom .wpd-top-custom-fields .wpd-custom-field.wpd-cf-rating .wpd-cf-label {
	display: none;
}

#wpdcom .wpd-top-custom-fields .wpd-custom-field.wpd-cf-rating .wpd-cf-value {
	padding: 1px 0;
}

#wpdcom .wpd-comment-text p {
	margin-top: 0;
}

#wpdcom .wpd-form-col-left .wpd-field-group .wpd-field-group-title,
#wpdcom .wpd-form-col-right .wpd-field-group .wpd-field-group-title,
#wpdcom .wpd-form-col-full .wpd-field-group .wpd-field-group-title {
	display: none;
}

#wpdcom .wpdiscuz-item.wpd-field-group.wpd-field-rating {
	border-bottom: 0;
	height: auto;
}

#wpdcom .wc-field-submit {
	justify-content: flex-start;
}

#wpdcom .wc-field-submit input[type="submit"] {
	margin-left: 0;
}

#wpdcom .wpd-form-head {
	display: none;
}

#wpdcom .wpd-blog-guest .wpd-comment-author,
#wpdcom .wpd-blog-guest .wpd-comment-author a {
	color: #59981A;
}

#wpdcom .ql-container {
	border-radius: 4px;
}

.wpd-rating {
	margin-bottom: 0;
}

.wpcf7 form .wpcf7-response-output {
	margin: 0;
	margin-bottom: 30px;
	border-radius: 4px;
	line-height: 1.2em;
	padding: 0.5em 1em;
}

.wpcf7-not-valid-tip {
	margin-top: -20px;
}

#wpdcom .wpd-prim-button {
	background: #fff;
	box-shadow: none;
	padding: 5px 10px;
	border-bottom: 2px solid #59981A;
	color: #59981A;
	font-weight: 600;
	border-radius: 0;
}

.content {
	padding: 80px 0;
}

.text {
	padding: 80px 0;
}

.text__wrapper {
	overflow: hidden;
	position: relative;
	max-height: 500px;
	transition: max-height 0.4s ease 0s;
}

.text__wrapper.active::before {
	background: none;
}

.text__wrapper::before {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	height: 120px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white 100%);
	pointer-events: none;
	z-index: 100;
}

.text__more {
	margin: 30px auto 0 auto;
	padding: 5px 10px 5px 10px;
	border-bottom: 2px solid #59981A;
	background-color: #fff;
	color: #59981A;
	font-weight: 600;
	display: block;
}

.text__more.none {
	display: none;
}


@media screen and (max-width: 600px) {
	#wpdcom.wpd-layout-2 .wpd-comment .wpd-comment-header .wpd-user-info {
		margin: 0;
	}
}

@media (max-width: 1550px) {
	.main__wrapper:before {
		right: -80px;
		width: 530px;
		height: 541px;
		top: -62px;
	}
}

@media (max-width: 1350px) {
	.main__wrapper:before {
		right: 0;
	}
}

@media (max-width: 1170px) {
	.main {
		padding: 80px 0 80px 0;
		min-height: 500px;
	}

	.main__wrapper:before {
		width: 440px;
		height: 450px;
		top: -31px;
	}
}

@media (max-width: 1070px) {

	.main__wrapper:before {
		right: -50px;
	}

	.header__left {
		margin-right: 50px;
	}
}


@media (max-width: 992px) {

	.main__wrapper:before {
		right: -70px;
	}

	.header__block:nth-child(1) {
		display: none;
	}

	.header__block:not(:last-child) {
		margin-right: 50px;
	}

	.header__right {
		position: relative;
	}

	.header__info {
		justify-content: flex-end;
		margin-bottom: 0;
		margin-right: 55px;
	}

	.header__menu {
		z-index: 100;
		position: fixed;
		top: 0;
		right: -100%;
		width: 350px;
		height: 100%;
		z-index: 10;
		opacity: 0;
		visibility: hidden;
		overflow-y: scroll;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
		background: #fff;
		box-shadow: 0 0 10px #858585;
		padding: 150px 20px 30px 20px;
	}

	.header__menu.active {
		visibility: visible;
		opacity: 1;
		right: 0;
	}

	.header__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.header__list.active {
		left: 25px;
	}

	.header__item {
		margin-bottom: 30px;
	}

	.header__list li {
		margin-bottom: 30px;
	}

	.header__item:not(:last-child) {
		margin-right: 0;
	}

	.header__list li:not(:last-child) {
		margin-right: 0;
	}

	.header__item:hover .header__sub-list {
		position: relative;
	}

	.header__list li:hover .header__sub-list {
		position: relative;
	}

	.header__sub-list {
		top: 0;
		margin-top: 10px;
		width: auto;
		-webkit-transition: 0s;
		-o-transition: 0s;
		transition: 0s;
	}

	.header__sub-link {
		font-size: 17px;
		font-weight: 700;
	}

	.header__link {
		padding: 0;
		font-size: 16px;
		font-weight: 700;
		color: #363636;
		display: block;
	}

	.hamburger {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.main__content {
		max-width: 450px;
	}

	.main__title {
		font-size: 44px;
	}

	.main__subtitle {
		font-size: 25px;
	}

	h2 {
		font-size: 28px;
	}

	.price__btn {
		font-size: 17px;
	}

	.price__subtitle {
		font-size: 19px;
	}

	.price__block {
		padding: 20px;
	}

	.empl__img {
		height: 150px;
	}

	.feedback__item {
		padding: 40px;
	}

	.services__item {
		padding: 0;
	}

	.benefits__wrapper {
		flex-wrap: wrap;
	}

	.benefits__item {
		align-items: flex-start;
		width: 100%;
	}

	.benefits__item:not(:last-child) {
		margin-right: 0;
		margin-bottom: 40px;
	}

	.services__img {
		height: 230px;
	}
}

@media (max-width: 768px) {

	.stages__item {
		width: calc(-20px + 50%);
	}

	.header__block:nth-child(2) {
		display: none;
	}

	.main {
		min-height: 408px;
	}

	.main__wrapper::before {
		width: 270px;
		height: 275px;
		right: -60px;
		top: 52px;
	}

	.main__content {
		max-width: 400px;
	}

	.main__title {
		font-size: 38px;
	}

	.main__subtitle {
		font-size: 20px;
	}

	.price__wrapper {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.price__table {
		width: 100%;
	}

	.price__block {
		margin-top: 40px;
		width: 100%;
		border: none;
		padding: 0;
		align-items: center;
	}

	.services__descr {
		font-size: 16px;
	}

	.gallery__item {
		width: calc(-20px + 50%);
	}

	.empl__wrapper {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.empl__item {
		margin-top: 20px;
		width: calc(-20px + 50%);
	}

	.empl__img {
		height: 225px;
	}

	.feedback__wrapper {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.feedback__item {
		width: 100%;
	}

	.feedback__item:nth-child(1) {
		border-radius: 4px 4px 0 0;
	}

	.feedback__item:nth-child(1)::before {
		right: 50%;
		-webkit-transform: translateX(50%) rotate(135deg);
		-ms-transform: translateX(50%) rotate(135deg);
		transform: translateX(50%) rotate(135deg);
		top: auto;
		bottom: -19px;
	}

	.feedback__item:last-child {
		border-top: none;
		border-left: 2px solid #E3E3E3;
		border-radius: 0 0 4px 4px;
	}

	.footer__block {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.popup {
		width: 500px;
	}

	.geography__link {
		width: calc(33.3333% - 30px);
	}

	.services__img {
		height: 150px;
	}
}

@media (max-width: 576px) {

	.header__left {
		margin-right: 30px;
	}

	.header__logo {
		width: 140px;
	}

	.main__wrapper::before {
		content: none;
	}

	.benefits__wrapper {
		margin-top: 20px;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.services__wrapper {
		flex-wrap: wrap;
		justify-content: center;
	}

	.services__item {
		width: calc(50% - 20px);
	}

	.services__item:last-child {
		margin-top: 20px;
	}

	.services__descr {
		margin-top: 10px;
	}

	.popup {
		width: 450px;
	}
}

@media (max-width: 480px) {

	.header__block:nth-child(3) {
		display: none;
	}

	.stages__item {
		width: 100%;
	}

	.main {
		min-height: 250px;
		padding: 70px 0;
	}

	.main__wrapper {
		width: 100%;
	}

	.main__title {
		font-size: 36px;
		line-height: 50px;
	}

	.header__menu {
		width: 100%;
	}

	.header__left {
		z-index: 1000;
	}

	.header__block {
		z-index: 1000;
	}

	.price__descr {
		text-align: center;
	}

	h2 {
		margin-bottom: 40px;
		font-size: 24px;
	}

	h2::before {
		content: none;
	}

	h3 {
		padding-left: 0;
	}

	h3::before {
		content: none;
	}

	.text {
		padding: 70px 0;
	}

	.price {
		padding: 70px 0;
	}

	.price__wrapper {
		margin-top: 15px;
	}

	.services {
		padding: 70px 0;
	}

	.services__wrapper {
		margin-top: 0;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.services__item {
		margin-top: 15px;
		width: calc(-20px + 50%);
	}

	.reviews {
		padding: 70px 0;
	}

	.benefits__item {
		width: 100%;
	}

	.empl__img {
		height: 150px;
	}

	.feedback__wrapper {
		margin-top: 10px;
	}

	.feedback__item {
		padding: 30px;
	}

	.footer__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.footer__block {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	.footer__block:last-child {
		margin-top: 20px;
	}

	.footer__mail {
		text-align: left;
	}

	.footer__info-list {
		text-align: left;
	}

	.footer__info-item {
		padding: 0;
	}

	.faq {
		padding: 70px 0;
	}

	.faq__question {
		font-size: 15px;
	}

	h3 {
		font-size: 18px;
	}

	.feedback {
		padding: 70px 0;
	}

	.popup {
		width: 360px;
	}

	.x404__title {
		font-size: 140px;
		line-height: 140px;
	}

	.x404__subtitle {
		font-size: 20px;
		line-height: 20px;
	}

	.geography {
		padding: 70px 0;
	}

	.geography__link {
		width: calc(50% - 30px);
	}

	.header__icon {
		display: none;
	}

	.header__tel {
		margin-left: 0;
	}

	.header__tel a {
		font-size: 19px;
	}

	.header__logo {
        width: 120px;
    }
}

@media (max-width: 383px) {

	h2 {
		font-size: 21px;
	}

	.header__block {
		display: none;
	}

	.main {
		min-height: 220px;
	}

	.main__title {
		font-size: 30px;
		line-height: 36px;
	}

	/* .gallery__item {
		width: 100%;
		height: 200px;
	} */

	.empl__img {
		height: 110px;
	}

	.price__block {
		padding: 10px;
	}

	.services__wrapper {
		flex-direction: column;
		margin-left: 0;
		margin-right: 0;
	}

	.services__item {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		min-width: auto;
	}

	.popup {
		width: 290px;
		padding: 30px 40px 5px 40px;
	}

	.popup__btn {
		font-size: 17px;
	}

	.services__img {
		height: 180px;
	}
}