@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;700&display=swap');

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="number"] {
	-moz-appearance: textfield;
}

input[type="number"]:hover,
input[type="number"]:focus {
	-moz-appearance: number-input;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

html,
body {
	margin: 0;
	padding: 0;
	height: 100%;
}

input,
textarea,
button {
	font-family: 'Exo 2';
}

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	outline-style: none;
}

li {
	list-style: none;
}

a {
	border: none;
	text-decoration: none;
}

a img {
	border: none;
}

* {
	margin: 0px;
	padding: 0px;
}

.agree {
	display: none !important;
}

img {
	vertical-align: middle;
}

:focus {
	outline: none;
}

button:hover {
	cursor: pointer;
	opacity: 0.8;
}

::-webkit-input-placeholder {
	color: #636161;
}

::-moz-placeholder {
	color: #636161;
}


/* Firefox 19+ */

:-moz-placeholder {
	color: #636161;
}


/* Firefox 18- */

:-ms-input-placeholder {
	color: #636161;
}

body {
	position: relative;
	margin: 0 auto;
	min-height: 100%;
	height: 100%;
	color: #333333;
	font-size: 14px;
	font-family: 'Exo 2';
}

.wrapper {
	height: auto;
	min-height: 100%;
}

.bg {
	height: 200px;
}

footer {
	width: 100%;
	height: 200px;
	margin: -200px 0px 0px 0px;
	background: #0e0e0e;
	z-index: 101;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.container {
	margin-right: auto;
	margin-left: auto;
	padding-left: 15px;
	padding-right: 15px;
	position: relative;
	width: 90%;
}

.row {
	margin-left: -15px;
	margin-right: -15px;
}

@media (min-width: 768px) {
	.container {
		width: 750px;
	}
}

@media (min-width: 992px) {
	.container {
		width: 970px;
		position: relative;
		/* z-index: 1; */
	}
}

@media (min-width: 1200px) {
	.container {
		width: 1170px;
		position: relative;
		/* z-index: 1; */
	}
}

@media screen and (min-width: 1201px) {
	#toggle {
		display: none;
	}
}

@media screen and (max-width: 1200px) {
	#popout {
		position: fixed;
		height: 100%;
		width: 250px;
		background: rgba(26, 26, 26, .9);
		color: white;
		top: 0;
		left: -250px;
		overflow: auto;
		z-index: 2000;
	}

	#toggle {
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 50%;
		right: 15px;
		margin-top: -15px;
		background: #77DDE7;
		border-radius: 50%;
	}

	#toggle img {
		width: 60%;
		height: auto;
	}

	header nav ul {
		flex-direction: column;
		padding: 20px;
	}

	header nav ul li {
		border-bottom: 1px solid #dfdfdf;
		padding: 20px;
		width: 100%;
		justify-content: center;
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
	}

	header nav ul li a {
		color: #ffffff;
		text-decoration: none;
		width: 100%;
		text-transform: uppercase;
		margin: 0;
	}

	header .contact {
		margin-right: 50px;
	}
}

header {
	position: fixed;
	display: flex;
	align-items: center;
	background: #2b2b2b;
	padding: 10px 0px;
	width: 100%;
	z-index: 10;
	transition: 0.2s linear;
}

header.header_fixed {
	padding: 5px 0px;
}

header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header #logo {
	width: 25%;
	display: flex;
	align-items: center;
}

header #logo img {
	width: 25px;
	transition: 0.2s linear;
}

header.header_fixed #logo img {
	width: 20px;
}

header #logo p {
	margin-left: 10px;
	font-size: 23px;
	line-height: 1;
	color: #77DDE7;
	display: flex;
	flex-direction: column;
	transition: 0.2s linear;
}

header.header_fixed #logo p {
	font-size: 20px;
}

header #logo p span {
	display: inline-flex;
	font-size: 15px;
	line-height: 1;
	transition: 0.2s linear;
}

header.header_fixed #logo p span {
	font-size: 13px;
}

header nav ul {
	display: flex;
}

header #popout>ul>li {
	position: relative;
	padding: 20px 10px;
}

header nav ul a {
	color: #efeeed;
	font-size: 15px;
	margin: 0px 10px;
}

header nav ul li.current-menu-item a {
	color: #77DDE7;
}

header #popout>ul>li>.submenu {
	transform: scaleY(0);
	transform-origin: 0 0;
	background: #383737;
	position: absolute;
	left: -20px;
	width: calc(100% + 40px);
	min-width: 270px;
	z-index: 10;
	transition: 0.5s ease-in-out;
	flex-direction: column;
	top: 100%;
	padding: 10px;
	box-shadow: 0px 0px 16px 0px rgb(29 35 39);
}

header #popout>ul>li>.submenu>li {
	padding: 0;
	position: relative;
}

header #popout>ul>li:hover>.submenu {
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}

header #popout>ul>li>.submenu>li.current-menu-item>a {
	border: none;
	background: #77dde7 !important;
	color: #292933;
	font-weight: 500;
}

header #popout>ul>li>.submenu>li:hover>a {
	border: none;
	background: #1d2327;
}

.submenu>li>a {
	line-height: 1;
	display: inline-flex;
	width: 100%;
	padding: 13px 30px;
	border: none;
	transition: 0.2s linear;
	font-size: 14px;
	margin: 0;
	position: relative;
}

.submenu>li>a:after {
	content: '>';
	display: block;
	width: 12px;
	height: 12px;
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -6px;
	font-family: arial;
}

header .submenu>li>.submenu_sub {
	transform: scaleX(0);
	transform-origin: 0 0;
	background: #4a4949;
	position: absolute;
	left: 100%;
	width: calc(100% + 40px);
	min-width: 270px;
	z-index: 10;
	transition: 0.5s ease-in-out;
	flex-direction: column;
	top: -10px;
	padding: 10px;
	box-shadow: 0px 0px 16px 0px rgb(29 35 39);
}

header .submenu>li>.submenu_sub li {
	padding: 0;
}

header .submenu>li:hover .submenu_sub {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}

header nav ul .submenu_sub li.current-menu-item>a {
	border: none;
	background: #77dde7 !important;
	color: #292933;
	font-weight: 500;
}

header nav ul .submenu_sub li:hover>a {
	border: none;
	background: #1d2327;
}

.submenu_sub li a {
	line-height: 1;
	display: inline-flex;
	width: 100%;
	padding: 14px 30px;
	border: none;
	transition: 0.2s linear;
	font-size: 13px;
	margin: 0;
}

header .contact {
	display: flex;
	align-items: center;
}

header .contact p {
	color: white;
	text-align: center;
	font-size: 16px
}

header .contact div {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-left: 20px;
}

header .contact .phone {
	font-size: 17px;
	color: #efeeed;
	font-weight: 500;
}

header .contact .btn {
	color: #000000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 40px;
	font-size: 15px;
	font-weight: 500;
	border-radius: 8px;
	background-color: #77DDE7;

	margin-top: 10px;
	transition: 0.2s linear;
}

header.header_fixed .contact .btn {
	height: 30px;
	margin-top: 8px
}

header .contact .btn:hover {
	box-shadow: 0px 12px 90px -10px rgb(255 255 255);
	background-color: rgb(255 255 255 / 0.7);
	border: 2px solid #ffffff;
	color: #2b2b2b;
}

.welcome {
	height: 700px;
	background-position: center center;
	background-attachment: scroll;
	background-image: url(images/banner.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	/* z-index: 9; */
}

.welcome .container {
	position: relative;
	/* z-index: 1; */
	padding-top: 80px;
	padding-bottom: 80px;
	display: flex;
	flex-wrap: wrap;

	justify-content: space-around;
}

.welcome .container .left {
	width: 40%;
	padding: 30px;
	box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
	background-color: rgba(251, 251, 251, 0.83);
}

.welcome .container .left>h4 {
	color: #2b2b2b;
	font-size: 30px;
	line-height: 1;
	font-weight: 600;
	margin: 0px 0px 10px 0px;
	text-align: center;
}

.welcome .wpcf7 {
	width: 100%;
}

.welcome .wpcf7 input.wpcf7-submit {
	color: #000000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 40px;
	font-size: 15px;
	font-weight: 500;
	border-radius: 8px;
	background-color: #77DDE7;
	transition: 0.2s linear;
	margin-top: 10px;
	border: none;
	cursor: pointer;
}

.welcome .wpcf7 input.wpcf7-submit:hover {
	box-shadow: 0px 12px 90px -10px rgb(255 255 255);
	background-color: rgb(255 255 255 / 0.7);
	border: 2px solid #ffffff;
	color: #2b2b2b;
}

.welcome .wpcf7 p {
	margin: 10px 0 0;
	color: #ffffff;
	text-align: center;
	font-weight: 700;
	font-size: 16px;
	line-height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.welcome .wpcf7-form-control-wrap {
	width: 80%;
}

.welcome .wpcf7-form-control-wrap:first-child {
	margin-top: 20px;
}

.welcome .wpcf7 .flex-container {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 29px;
}

.welcome .wpcf7 input.wpcf7-text {
	width: 100%;
	margin-bottom: 11px;
	padding: 16px 20px;
	background-color: #ffffff;
	border: none;
	color: #838486;
	font-weight: 400;
	font-size: 15px;
	line-height: 16px;
}

.welcome .wpcf7 br {
	display: none;
}

.welcome .wpcf7 .btn {
	margin: 27px auto 0;
	cursor: pointer;
}

.welcome .wpcf7 h4 {
	color: #2b2b2b;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 600;
	font-size: 22px;
}

.welcome .wpcf7 form>h5 {
	color: #2b2b2b;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 600;
	font-size: 22px;
}

.welcome .wpcf7 form>p {
	color: #2b2b2b;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 600;
	font-size: 22px;
	margin: 0;
}

.welcome .tn_atom {
	color: #2b2b2b;
	font-size: 28px;
	line-height: 1.55;
	font-weight: 600;
}

.welcome h3 {
	color: #2b2b2b;
	font-size: 30px;
	line-height: 1;
	font-weight: 600;
	margin: 20px 0px;
}

.welcome h3 span {
	color: #ffd04c
}

.welcome hr {
	width: 80px;
	height: 2px;
	border: none;
	background: #77DDE7;
	margin: 20px 0px;
}

.welcome .blocks {
	display: flex;
	align-items: flex-start;
	flex-direction: column;flex-wrap: wrap;
}

.welcome .blocks .blocks_atom {
	color: #2b2b2b;
	margin-right: 20px;
	height: 40px;
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 16px;
}

.welcome .btn {
	color: #000000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 40px;
	font-size: 15px;
	font-weight: 500;
	border-radius: 8px;
	background-color: #efeeed;
	transition: 0.2s linear;
	margin: 40px 0px 0px auto;
}

.welcome .btn:hover {
	box-shadow: 0px 12px 90px -10px rgb(255 255 255);
	background-color: rgb(255 255 255 / 0.7);
	border: 2px solid #ffffff;
	color: #2b2b2b;
}

.welcome .podl {
	background: rgba(251, 251, 251, 0.83);
	width: 55%;
	margin: 0px 0px 0px auto;
	padding: 50px;
	box-sizing: border-box;
}

.element {
	margin-top: 50px;
}

.element h1 {
	font-weight: 700;
	font-style: normal;
	color: #2b2b2b;
	font-size: 40px;
	line-height: 1.3;
	text-align: center;
}

section hr {
	margin: 20px auto;
	width: 80px;
	height: 2px;
	border: none;
	background: #77DDE7;
}

.element .container>p {
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	text-align: center;
}

.element .text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 50px 0px;
}

.element .text .left {
	width: 47%
}

.element .text .right {
	width: 47%
}

.element .text .full {
	width: 100%
}

.element .text .left p,
.element .text .right p {
	color: #000;
	font-size: 16px;
	font-weight: 300;
	line-height: 1em;
	margin-bottom: 10px;
}

.element .text .left h3,
.element .text .right h3 {
	color: #303030;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1.35em;
	margin-bottom: 30px;
}

.element .text .full p {
	color: #000;
	font-size: 16px;
	font-weight: 300;
	line-height: 1em;
	margin-bottom: 10px;
}

.element .text .full ul {
	margin-bottom: 30px;
}

.element .text .full li {
	color: #000;
	font-size: 16px;
	font-weight: 300;
	line-height: 1em;
	padding-left: 20px;
	position: relative;
}

.element .text .full li:before {
	position: absolute;
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background: #77DDE7;
	left: 0px;
	border-radius: 50%;
	top: 0%;
	margin-top: 4px;
}

.element .text .full h3 {
	color: #303030;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1.35em;
	margin-bottom: 30px;
	margin-top: 30px;
}

.element .text .left img {
	width: 100%;
	margin-top: 40px;
}

.element .text .right img {
	width: 100%;
	margin-bottom: 30px
}

h2.title {
	font-weight: 700;
	font-style: normal;
	color: #2b2b2b;
	font-size: 40px;
	line-height: 1.3;
	text-align: center;
}

.work .container>p {
	color: #000;
	font-size: 16px;
	font-weight: 300;
	line-height: 1em;
	text-align: center;
}

.work .blocks {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
	flex-wrap: wrap;
}

.work .block {
	display: flex;
	flex-direction: column;
	width: 31%;
	border: 1px solid #e0e6ed;
	border-radius: 9px;
	align-items: center;
	padding: 20px;
}

.work .block img {
	width: 10%;
}

.work .block h3 {
	color: #303030;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1;
	margin-bottom: 30px;
	text-align: center;
	margin: 20px 0px;
}

.work ul {
	padding: 0;
	margin: 0;
}

.work li {
	display: flex;
	padding: 0;
	margin: 0px 0px 5px 30px;
	position: relative;
}

.work li:before {
	position: absolute;
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background: #77DDE7;
	left: -20px;
	border-radius: 50%;
	top: 50%;
	margin-top: -5px
}

.work p {
	margin: 20px 0px;
	font-weight: 700;
	font-style: normal;
	color: #2b2b2b;
	font-size: 25px;
	line-height: 1.4;
}

.work a {
	font-weight: 500;
	font-style: normal;
	color: #2b2b2b;
	border: 2px solid #77DDE7;
	width: 100%;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	transition: 0.2s linear;
	border-radius: 8px;
}

.work a:hover {
	box-shadow: 0px 12px 90px -10px rgb(134 215 242);
	background-color: rgb(255 255 255 / 0.7);
	border: 2px solid #ffffff;
	color: #2b2b2b;
}

.form {
	margin-top: 50px;
	margin-bottom: 50px;
	padding: 50px 0px;
	background: url(https://mykaleidoscope.ru/uploads/posts/2020-02/1581110087_59-p-intereri-vannikh-komnat-sovmeshchennikh-s-93.jpg);
	background-size: cover;
	background-position: center;
}

.form .container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.form .container>.left {
	width: 58%;
	background-color: rgba(251, 251, 251, 0.83);
	padding: 20px 30px;
}

.form .container>.right {
	width: 40%;
	background-color: rgb(252 255 85);
	padding: 20px 30px;
}

.form .container>.left h2,
.form .container>.right h2 {
	color: #303030;
	font-size: 30px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1.2;
	margin-bottom: 30px;
}

.form .container>.left p {
	color: #000;
	font-size: 15px;
	font-weight: 300;
	line-height: 1em;
	margin-bottom: 10px
}

.form .container>.left li {
	color: #000;
	font-size: 15px;
	font-weight: 300;
	line-height: 1em;
	margin-bottom: 10px;
	padding-left: 20px;
	position: relative;
}

.form .container>.left li:before {
	position: absolute;
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background: #77DDE7;
	left: 0px;
	border-radius: 50%;
	top: 50%;
	margin-top: -5px
}

.form .container>.right h4 {
	color: #303030;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1;
	margin-bottom: 30px;
	margin: 20px 0px;
}

.form .container>.right .wpcf7-radio label span {
	color: #000;
	font-size: 16px;
	font-weight: 300;
	line-height: 1em;
	margin-bottom: 10px
}

.form .container>.right .wpcf7-radio {
	display: flex;
	flex-direction: column;
}

.form .container>.right .right {
	margin-bottom: 30px;
}

.form .container>.right input[type="tel"] {
	height: 50px;
	background: #ffffff;
	border-radius: 8px;
	border: 1px solid #77DDE7;
	padding-left: 15px;
	margin-bottom: 15px;
	outline: none;
	width: 100%;
	font-size: 16px;
	box-shadow: 0px 0px 20px -10px #0693e3;
}

.form .container>.right .wpcf7-response-output {
	width: 100%;
	margin: 10px auto 0 auto !important;
	box-shadow: 0px 0px 20px 0 rgb(41 46 51 / 60%) !important;
	background: rgb(43 43 43);
	border: 1px solid rgb(251 153 133 / 0.2) !important;
	text-align: center;
	font-size: 13px;
	line-height: 1;
	color: #f1f6f3;
	font-weight: 300;
	letter-spacing: -0.3px;
	padding: 10px !important;
}

.form .wpcf7-submit {
	font-weight: 500;
	font-style: normal;
	color: #2b2b2b;
	border: 1px solid #77DDE7;
	width: 100%;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	transition: 0.2s linear;
	border-radius: 8px;
	background: #29e3f5;
	cursor: pointer;
	margin: 0px 0px 0px auto;
	box-shadow: 0px 0px 20px -10px #0693e3;
	text-transform: uppercase;
}

.form .wpcf7-submit:hover {
	box-shadow: 0px 12px 90px -10px rgb(255 255 255);
	background-color: rgb(255 255 255 / 0.7);
	border: 2px solid #ffffff;
	color: #2b2b2b;
}

.tabs {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.tabs>div {
	display: flex;
	flex-direction: column;
	width: 31%;
	border: 1px solid #e0e6ed;
	border-radius: 9px;
	align-items: center;
	padding: 20px;
}

.tabs>div .img {
	height: 210px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 20px;
}

.tabs>div .img img {
	max-width: 120%;
}

.tabs p {
	color: #303030;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1;
	margin-bottom: 30px;
	margin: 20px 0px;
}

.tabs span {
	color: #000;
	font-size: 16px;
	font-weight: 300;
	line-height: 1em;
}

.price .container>p {
	color: #000;
	font-size: 16px;
	font-weight: 300;
	line-height: 1em;
	text-align: center;
	margin-bottom: 50px
}

.price table {
	width: 100%;
	margin-top: 30px;
}

.price .table-head th {
	height: 40px;
	color: #000000;
	text-align: center;
	border-radius: 8px;
	border: 1px solid #e0e6ed;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	width: 15%;
}

.price .table-head th:first-child {
	width: 54%;
}

.price .table-content tr:nth-child(even) {
	background: #f1f5f8;
	/* background: #f3fbfc; */
}

.price .table-content tr td {
	text-align: center;
	border-left: 1px solid #dfe4e7;
	border-right: 1px solid #dfe4e7;
}

.price .table-content tr td:last-child {
	border-right: 0px;
}

.price .table-content tr.table-last td,
.price .table-content tr.table-last th {
	font-size: 14px;
	font-weight: 600;
	color: #000000;
	border-radius: 8px;
	padding: 0px 25px;
	line-height: 1;
	height: 40px;
	border: 1px solid #e0e6ed;
	text-transform: uppercase;
	background: #f1f5f8;
}

.price .table-content tr td,
.price .table-content tr th {
	color: #000000;
	font-weight: 500;
	font-size: 14px;
	padding: 5px 25px;
}

.price .table-content tr th:first-child {
	text-align: left;
}

.price .icon-ok-1 {
	width: 7px;
	height: 7px;
	background: #77DDE7;
	display: flex;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: 0 auto;
}

.how {
	color: #000000;
	margin-top: 50px;
}

.how img {
	margin: 20px auto 15px;
	width: 50px;
}

.how p {
	color: #000;
	font-size: 16px;
	font-weight: 300;
	line-height: 1em;
	text-align: center;
}

.how h4 {
	font-size: 35px;
	margin: 0px;
	padding-bottom: 40px;
}

.facty {
	padding: 50px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.facty .block {
	width: 24%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 3%;
}

.big_title_type1 {
	color: #303030;
	font-size: 30px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1.35em;
	margin-bottom: 30px;
}

.our-works ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 50px 0px;
}

.our-works li {
	position: relative;
	width: 32%;
	margin: 0.5%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.our-works li .img {

	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	height: 260px;
	flex-direction: column;
	border: 1px solid #e0e6ed;
	border-radius: 9px;
	padding: 20px;
}

.our-works li .img a {
	opacity: 0.9;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: 0.3s linear;
}

.our-works .info {
	padding: 10px;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.our-works h3 {
	color: #303030;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1;
	margin-bottom: 30px;
	margin: 20px 0px;
}

.our-works .info .option {
	display: flex;
	width: 100%;
}

.our-works .info .option .text {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	color: #000;
	font-size: 16px;
	font-weight: 300;
	line-height: 1em;
	text-align: center;
}

.our-works .info .option .text span {
	display: inline-flex;
	margin-left: 5px;
	color: #2b2b2b;
}

.our-works li a:hover {
	opacity: 1;
}

.our-works li img {
	width: 100%;
}

.our-works #nextpage a {
	margin: 30px auto 0;
}

.t_container {
	height: 450px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(https://e-way.market/upload/iblock/85c/85c325551827112e9c12442b459958b0.png);
	background-size: cover;
	background-position: center;
	position: relative;
}

.t_container:after {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 450px;
	background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.90), rgba(20, 20, 20, 0.40));
	background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.90), rgba(20, 20, 20, 0.40));
}

.t_container .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.t_container h2 {
	color: #77DDE7;
	text-transform: uppercase;
	font-size: 36px;
	margin-bottom: 20px;
}

.t_container h4 {
	color: #ffffff;
	text-transform: uppercase;
	font-size: 26px;
	text-align: center;
	font-weight: 600;
	margin: 0px 0px 0px 0px
}

.t_container form>*:nth-child(3) {
	color: #ffffff;
	text-transform: uppercase;
	font-size: 26px;
	text-align: center;
	font-weight: 600;
	margin: 0px 0px 30px 0px;
	width: 100%;
}

.t_container p {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	width: 80%;
	margin: 0 auto;

}

.t_container .wpcf7 {
	width: 100%;
}

.t_container .wpcf7 input.wpcf7-submit {
	color: #000000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 50px;
	font-size: 15px;
	font-weight: 500;
	border-radius: 8px;
	background-color: #efeeed;
	transition: 0.2s linear;
}

.t_container .wpcf7 input.wpcf7-submit:hover {
	box-shadow: 0px 12px 90px -10px rgb(255 255 255);
	background-color: rgb(255 255 255 / 0.7);
	border: 2px solid #ffffff;
	color: #2b2b2b;
}

.t_container .wpcf7-form-control-wrap {
	width: 35%;
}

.t_container .wpcf7 input {
	width: 100%;
	padding: 0px 20px;
	height: 50px;
	background-color: #efeeed;
	border: none;
	color: #838486;
	font-weight: 400;
	font-size: 15px;
	line-height: 16px;
	border-radius: 8px;
}

article {
	margin-top: 20px;
	position: relative;
	z-index: 0;
}

body.page article {
	line-height: 1.6em;
	min-height: 450px;
}

body.page article p,
body.page article ul,
body.page article h3 {
	margin-bottom: 10px;
}

body.page article .textwidget li,
body.page article .textwidget p {
	background: none !important;
}

body.page article li {
	padding-left: 40px;
	position: relative;
}

body.page article li ul {
	margin: 20px 0px
}

body.page article li:before {
	content: "";
	display: block;
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #77DDE7;
	left: 10px;
	top: 7px;
}

body.page article li li:before {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #77DDE7;
	left: 20px;
	top: 7px;
}

.ar_text h2 {
	color: #303030;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1;
	margin-bottom: 30px;
	text-align: center;
	margin: 40px 0px 20px 0px;
}

article h2,
article h1 {
	font-weight: 700;
	font-style: normal;
	color: #2b2b2b;
	font-size: 40px;
	line-height: 1.3;
	text-align: center;
}

.singleText h2 {
	font-size: 23px;
	line-height: 1.2;
	text-align: left;
	margin: 30px 0px
}

.singleText h5 {
	display: flex;
	width: 100%;
	margin: 40px 0px 20px 0px;
	font-weight: 700;
	font-size: 25px;
	line-height: 1.2;
}

.singleText h3 {
	margin: 30px 0px 30px 0px;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
}

.tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 50px
}

.tags .tag {
	display: inline-flex;
	width: 30%
}

.tags .tag h3 {
	font-size: 12px;
	color: #333333;
	transition: 0.2s all linear;
	font-weight: 600;
	text-transform: uppercase;
}

.tags .tag h3 a {
	color: #333333;
}

.tags .tag h3 a:hover {
	color: #1dc0dc;
}

.tags ul.sub_categories {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	justify-content: space-between;
}

.tags ul.sub_categories_s {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.tags ul.sub_categories_s>li {
	margin-bottom: 20px;
	padding-left: 0;
}

.tags ul.sub_categories_s>li a {
	font-size: 12px;
	color: #333333;
	transition: 0.2s all linear;
	font-weight: 600;
}

.tags ul.sub_categories_s ul {
	display: flex;
	flex-wrap: wrap;
}

.tags ul.sub_categories_s ul li {
	width: 32%;
}

.tags ul.sub_categories_s li:before {
	content: none;
}

.tags ul.sub_categories ul li a {
	font-size: 12px;
	color: #333333;
	transition: 0.2s all linear;
	font-weight: 600;
}

.tags ul.sub_categories_s>li a {
	font-size: 12px;
	color: #333333;
	transition: 0.2s all linear;
	font-weight: 600;
}

.tags ul.sub_categories_s li a:hover {
	color: #1dc0dc;
}


.tags ul.sub_categories>li {
	margin-bottom: 10px;
	padding-left: 0;
	display: inline-flex;
	width: 30%;
}

.tags ul.sub_categories ul {
	display: flex;
	flex-wrap: wrap;
}

.tags ul.sub_categories ul li {
	width: 32%;
}

.tags ul.sub_categories li:before {
	content: none;
}

.tags ul.sub_categories ul li a {
	font-size: 12px;
	color: #333333;
	transition: 0.2s all linear;
	font-weight: 600;
}

.tags ul.sub_categories>li a {
	font-size: 12px;
	color: #333333;
	transition: 0.2s all linear;
	font-weight: 600;
}

.tags ul.sub_categories li a:hover {
	color: #1dc0dc;
}

.breadcrumb {
	font-size: 12px;
	color: #333333;
	padding-top: 140px;
	margin-bottom: 50px;
}

.breadcrumb a {
	color: #77DDE7;
	transition: 0.3s ease;
}

.breadcrumb a:hover {
	color: #2b2b2b;
}

footer #logo {
	display: flex;
	align-items: center;
}

footer #logo img {
	width: 25px;
}

footer #footer-logo #logo p {
	margin-left: 10px;
	font-size: 23px;
	line-height: 1;
	color: #77DDE7;
	margin-top: 0;
	text-align: left;
}

footer #logo p span {
	display: inline-flex;
	font-size: 15px;
	line-height: 1;
}

footer .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 15px;
}

footer .container>div {
	width: 23%;
	text-align: center;
}

footer .contacts {
	display: flex;
	flex-direction: column;
	align-items: center;
}

footer .contacts p {
	color: aliceblue;
	font-size: 14px;
	text-transform: uppercase;
	display: inline-flex;
	margin-top: 15px;
}

footer .contacts a,
footer .contacts .address p span {
	color: #77DDE7;
	display: inline-flex;
	margin-left: 5px
}

footer .contacts .address p {
	display: block;
}

footer .ssil {
	margin-top: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

footer .ssil a {
	color: aliceblue;
	font-size: 14px;
	text-transform: uppercase;
	display: inline-flex;
	margin-top: 5px;
	text-align: center;
}

footer #footer-logo>p {
	color: aliceblue;
	margin-top: 19px;
	text-align: center;
}

footer .container>div:nth-of-type(2) ul li a {
	color: aliceblue;
	font-size: 14px;
	text-transform: uppercase;
	display: inline-flex;
	margin-top: 15px;
}

footer a:hover {
	color: #77DDE7 !important;
	transition: 0.2s linear;
}

footer h2 {
	color: #77DDE7;
	font-size: 14px;
	font-weight: 500;
	display: inline-flex;
	margin-top: 5px;
	margin-bottom: 5px;
}

footer h2 a {
	color: #77DDE7;
	text-transform: uppercase;
	font-weight: 400;
}

footer h2 a:hover {
	color: aliceblue !important;
}

footer .container>div:nth-of-type(2) ul li {
	text-align: center;
}

.pan_h hr {
	margin: 20px auto;
	width: 80px;
	height: 2px;
	border: none;
	background: #77DDE7;
}

.pan_h p.tet {
	color: #000;
	font-size: 16px;
	font-weight: 300;
	line-height: 1em;
	text-align: center;
	margin-bottom: 40px
}

.pan_h section p {
	color: #000;
	font-size: 16px;
	font-weight: 300;
	line-height: 1em;
	margin-bottom: 10px;
}

.pan_h {
	margin-bottom: 50px;
}

.our_works2 {
	position: relative;
}

.our_works2 .container {
	position: relative;
	padding: 50px 0 80px;
}

.home .our_works2 .container {
	padding-bottom: 20px;
}

.our_works2 h2 {
	color: #3f454a;
}

.our_works2 ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 48px 0 0;
}

.our_works2 li {
	position: relative;
	width: 100%;
	margin: 0.5%;
	height: 269px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 !important;
}

.our_works2 .img {
	position: relative;
	width: 41%;
}

.our_works2 li:hover .img div {
	opacity: 1;
}

.our_works2 li .img div {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	opacity: 0;
	transition: all 0.4s;
	background-color: rgba(26, 39, 48, 0.6);
	z-index: 1;
}

.our_works2 li .img div a {
	display: block;
	width: 94px;
	height: 94px;
	margin: auto;
	border-radius: 50%;
	background: #77DDE7 url(images/eye.png) center center no-repeat;
	background-size: 32px;
	transition: all 0.3s;
}

.our_works2 li .img div a:hover {
	background-size: 40px;
}

.our_works2 li img {
	width: 100%;
	height: auto;
}

.our_works2 #nextpage a {
	margin: 30px auto 0;
}

.our_works2 li:before {
	content: none !important;
}

.our_works2 li .article {
	width: 55%
}

.our_works2 li .article h3 {
	text-transform: uppercase;
	font-weight: 600;
}

.our_works2 .option {
	margin: 10px 0px
}

.our_works2 .option .text {
	font-weight: 700;
}

.our_works2 .option .text span {
	font-weight: 400;
}

#contacts {
	position: relative;
}

#contacts .container {
	position: relative;
	padding: 0px 15px 5px 15px;
}

#contacts h2 {
	color: #2a2f38;
}

#contacts .flex-container {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
	margin-bottom: 60px;
}

#contacts .flex-container br {
	display: none;
}

#contacts .wpcf7 {
	background-color: #ffffff;
	padding: 30px 40px;
	width: 60%;
	border: 1px solid #e0e6ed;
	border-radius: 9px;
	align-items: center;
	padding: 20px;
}

#contacts form p {
	font-size: 20px;
	text-align: center;
	color: #1d2327;
}

#contacts form .flex-container {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 29px;
	margin-bottom: 10px;
}

#contacts .wpcf7-form-control-wrap {
	width: 49%;
}

#contacts .wpcf7-form-control-wrap input {
	width: 100%;
	margin-bottom: 11px;
	padding: 16px 20px;
	background-color: #ffffff;
	border: none;
	color: #1d2327;
	font-weight: 400;
	font-size: 15px;
	line-height: 16px;
	border: 1px solid #e0e6ed;
	border-radius: 8px;
}

#contacts input.wpcf7-submit {
	background: #ffed00;
	color: #000;
	font-size: 14px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 40px;
	margin: 0 auto;
	transition: .4s;
	cursor: pointer;
	border: none;
	color: #000000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 40px;
	font-size: 15px;
	font-weight: 500;
	border-radius: 8px;
	background-color: #77DDE7;
	transition: 0.2s linear;
	margin-top: 10px;
}

#contacts .btn,
.contacts .our-works #nextpage a,
.our-works #nextpage .contacts a,
.contacts .reviews #nextpagereviews a,
.reviews #nextpagereviews .contacts a {
	margin: 27px auto 0;
	cursor: pointer;
}

#contacts h3 {
	font-size: 30px;
	text-align: center;
	text-transform: uppercase;
	color: #1d2327;
}

#contacts .data {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	padding: 30px 40px 30px 40px;
	width: 38%;
	background-size: auto;
	background-position: right bottom;
	background-repeat: no-repeat;
	border: 1px solid #e0e6ed;
	border-radius: 9px;
	align-items: center;
}

#contacts .data p,
#contacts .data a {
	margin: 0px 0px 20px 0px;
	color: #1d2327;
	font-weight: 400;
	font-size: 17px;
}

#contacts .data p span,
#contacts .data a span {
	margin-right: 10px;
	color: #1d2327;
	font-weight: 500;
}

#contacts .data p+p,
#contacts .data a+p {
	margin-top: 10px;
}

.ajax-loader {
	display: none !important;
}

#contacts input.wpcf7-submit:hover {
	box-shadow: 0px 12px 90px -10px rgb(29 35 39 / 22%);
	background-color: rgb(255 255 255);
	border: 2px solid rgb(29 35 39 / 7%);
	color: #2b2b2b;
}

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

.full_error {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.full_error h3 {
	font-weight: 700;
	font-style: normal;
	color: #2b2b2b;
	font-size: 40px;
	line-height: 1.3;
	text-align: center;
}

.full_error h5 {
	font-weight: 700;
	font-style: normal;
	color: #77DDE7;
	font-size: 80px;
	line-height: 1.3;
	text-align: center;
	margin-bottom: 20px;
}

.full_error p {
	font-size: 16px;
	line-height: 1;
	letter-spacing: -0.5px;
}

.full_error a {
	font-weight: 500;
	font-style: normal;
	color: #2b2b2b;
	border: 2px solid #77DDE7;
	width: 250px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	transition: 0.2s linear;
	border-radius: 8px;
	margin-top: 40px;
}

.full_error a:hover {
	box-shadow: 0px 12px 90px -10px rgb(134 215 242);
	background-color: rgb(255 255 255 / 0.7);
	border: 2px solid #ffffff;
	color: #2b2b2b;
}

#fancybox-wrap .wpcf7 h4 {
	font-size: 30px;
	text-align: center;
	text-transform: uppercase;
	color: #3b3b3b;
	letter-spacing: -1.5px;
	font-weight: 900;
}

#fancybox-wrap .wpcf7 h5 {
	margin: 0px 0px 10px 0px;
	color: #000000;
	text-align: center;
	font-weight: 400;
	font-size: 23px;
	line-height: 18px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#fancybox-wrap .wpcf7 form>p {
	margin: 0px 0px 10px 0px;
	color: #000000;
	text-align: center;
	font-weight: 400;
	font-size: 23px;
	line-height: 18px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#fancybox-wrap .wpcf7 p br {
	display: none;
}

#fancybox-content {
	background: transparent !important;
	border-color: transparent !important;
}

#fancybox-wrap .wpcf7 form {
	width: 100%;
	padding: 20px;
}

#fancybox-wrap .wpcf7 .wpcf7-form-control-wrap input {
	margin-top: 15px;
	width: 100%;
	padding: 16px 20px;
	color: #040505;
	font-size: 16px;
	border: 1px solid #a0a0a0;
}

#fancybox-wrap .wpcf7 .wpcf7-submit {
	color: #000000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 40px;
	font-size: 15px;
	font-weight: 500;
	border-radius: 8px;
	background-color: #77DDE7;
	transition: 0.2s linear;
	margin-top: 20px;
	border: none;

}

.wpcf7-response-output {
	margin: 20px 0px 0px 0px !important;
	width: 100%;
	background: #ffffff;
}

.wpcf7 .wpcf7-not-valid-tip {
	display: none !important;
}

.wpcf7-form .wpcf7-not-valid {
	box-shadow: inset 0px 0px 50px 0 #ff0000 !important;
	border: 1px solid #ff0000 !important;
}

.block_post {
	margin-top: 50px;
}

.block_post .content_price {
	margin-bottom: 50px
}

.block_post .pricecalc_tabs {
	display: flex;
	margin: 30px 0px;
	flex-wrap: wrap;
	justify-content: center;
}

.pricecalc_tabs .pricecalc_tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 50px;
	border-radius: 8px;
	border: 1px solid #e0e6ed;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	width: 23%;
	line-height: 1;
	padding: 5px;
	margin: 5px;
	color: #000000;
	cursor: pointer;
	transition: 0.2s linear;
}

.pricecalc_tabs .pricecalc_tab.on {
	background: #77DDE7;
	border: 1px solid #77DDE7;
	color: #000000;
}

.pricecalc_tabs .pricecalc_tab:hover {
	box-shadow: 0px 0px 20px -10px #77DDE7;
	border: 2px solid #ffffff;
}

.pricecalc_tabs .pricecalc_tab.on:hover {
	box-shadow: none;
	border: 1px solid #77DDE7;
}

.pricecalc_content .price_content_item {
	display: none;
}

.pricecalc_content .price_content_item.on {
	display: block;
}

.pricecalc_content table {
	width: 100%;
}

.pricecalc_content table tr:first-child th {
	height: 40px;
	color: #000000;
	text-align: center;
	border-radius: 8px;
	border: 1px solid #e0e6ed;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	width: 10%;
}

.pricecalc_content table tr:first-child th:first-child {
	width: 60%
}

.pricecalc_content table tr .colspan {
	height: 40px;
	color: #000000;
	text-align: center;
	border-radius: 8px;
	border: 1px solid #e0e6ed;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	background: #f1f5f8;
}

.pricecalc_content table td:first-child {
	text-align: left;
	font-weight: 500;
}

.pricecalc_content table td {
	color: #000000;
	font-size: 14px;
	padding: 5px 25px;
	text-align: center;
	border-left: 1px solid #dfe4e7;
	border-right: 1px solid #dfe4e7;
}

.pricecalc_content table td:first-child {
	border-left: none;
}

.pricecalc_content table td:last-child {
	border-right: none;
}

.pricecalc_content table td input {
	width: 100%;
	border-radius: 8px;
	border: 1px solid #e0e6ed;
	height: 25px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.pricecalc_content table tr:nth-child(even) {
	background: #f1f5f8;
}

.pricecalc_content .showtable {
	font-weight: 500;
	font-style: normal;
	color: #2b2b2b;
	border: 1px solid #77DDE7;
	width: 160px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	transition: 0.2s linear;
	border-radius: 8px;
	background: #ffffff;
	cursor: pointer;
	margin: 20px 0px 0px auto;
}

.pricecalc_content .showtable:hover {
	box-shadow: 0px 0px 20px -10px #77DDE7;
	border: 2px solid #ffffff;
}

.pricecalc_content .price_result {
	display: flex;
	align-items: center;
	justify-content: end;
	padding: 0px 25px;
	margin-top: 20px;
	height: 40px;
	color: #000000;
	border-radius: 8px;
	border: 1px solid #e0e6ed;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	background: #f1f5f8;
}

.pricecalc_content .price_result b {
	margin-left: 10px
}

.content_price .all_result {
	display: flex;
	align-items: center;
	justify-content: end;
	padding: 0px 25px;
	margin-top: 5px;
	height: 40px;
	color: #000000;
	border-radius: 8px;
	border: 1px solid #e0e6ed;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	background: #e0e6ed;
}

.content_price .all_result b {
	margin-left: 10px
}

.form_calc_all {
	border: 4px solid #77dde7;
	border-radius: 9px;
	padding: 0px 0px 20px 0px;
	background: #ffffff;
	margin-bottom: 40px;
	overflow: hidden;
}

.form_calc_all h2 {
	line-height: 1;
	font-size: 22px;
	margin-bottom: 30px;
	padding: 20px;
	/* background: #f1f5f8; */
	background: #77dde7;
	/* color: #ffffff; */
	text-transform: uppercase;
	/* border-radius: 8px; */
}

.form_calc_all .calc_all {
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 0px 40px;
	flex-wrap: wrap;
}

.form_calc_all .calc_all .left {
	width: 30%
}

.form_calc_all .calc_all .left h4 {
	margin-bottom: 50px;
	text-transform: uppercase;
}

.form_calc_all .calc_all .left .checkbox-805 {
	margin-top: 30px;
	display: flex;
}

.form_calc_all .calc_all .left .wpcf7-list-item {
	margin: 0;
	font-size: 16px;
}

.form_calc_all .calc_all .center {
	width: 30%
}

.form_calc_all .calc_all .center h4 {
	text-transform: uppercase;
	margin-bottom: 5px;
}

.form_calc_all .calc_all .right {
	width: 30%
}

.form_calc_all .costcf7caloc_slider_div .ui-state-default {
	width: 20px;
	height: 20px;
	cursor: pointer;
	background: #000000 !important;
	border: 3px solid #f1f5f8;
	top: -6px;
}

.form_calc_all .wpcf7-form-control-wrap {
	width: 100%;
}

.form_calc_all .right span input {
	width: 100%;
	padding: 0px 20px;
	height: 50px;
	background-color: #ffffff;
	border: none;
	color: #000000;
	font-weight: 400;
	font-size: 15px;
	line-height: 16px;
	border-radius: 8px;
	box-shadow: 0px 0px 20px -10px #77DDE7;
	margin-bottom: 20px
}

.form_calc_all .wpcf7 input.wpcf7-submit {
	color: #000000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 50px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 8px;
	background-color: #77DDE7;
	transition: 0.2s linear;
	cursor: pointer;
	border: none;
	/* -webkit-animation: pulse 1.5s infinite; */
	text-transform: uppercase;
}

.form_calc_all .wpcf7 input.wpcf7-submit:hover {
	box-shadow: 0px 12px 90px -10px #77DDE7;
	background-color: rgb(255 255 255 / 0.7);
	color: #2b2b2b;
}

@-webkit-keyframes pulse {
	0% {
		transform: scale(1.1);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 10px 10px rgb(134 215 242 / 0.2);
	}

	100% {
		transform: scale(1.1);
		box-shadow: 0 0 0px 0px rgb(134 215 242 / 0.2);
	}
}

.form_calc_all .center .wpcf7-radio label {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}

.form_calc_all .center .wpcf7-radio label span {
	color: #000;
	font-weight: 300;
	line-height: 1;
	margin-left: 5px;
}

.form_calc_all .center .wpcf7-radio {
	display: flex;
	flex-direction: column;
}

.form_calc_all .wpcf7-response-output {
	width: calc(100% - 80px);
	margin: 20px auto 0px auto !important;
	padding: 10px 20px !important;
	box-shadow: 0px 0px 20px -10px #5e6062;
}

.providers {
	margin-top: 60px;
	padding-bottom: 20px
}

.providers small {
	font-weight: 600;
	font-size: 25px;
	/* text-transform: uppercase; */
	line-height: 1.5;


	/* margin-top: 10px; */
	display: flex;
	justify-content: center;
	text-align: center;
}

.providers .swiper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
	flex-wrap: wrap;
	margin-bottom: 60px;
}

.providers .swiper .block {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 13%;
	margin-top: 40px;
}

.providers .swiper .block img {
	max-width: 90%;
	max-height: 80px;
}

@media all and (max-width: 1200px) {

	header #popout>ul>li>.submenu,
	header .submenu>li>.submenu_sub {
		transform: none;
		position: relative;
		top: unset;
		left: unset;
		margin-top: 0px;
		background: none;
		padding-left: 20px;
	}

	header #popout>ul>li>.submenu>li,
	header .submenu>li>.submenu_sub li {
		border: none;
	}

	.submenu_sub li a {
		padding: 5px 10px 5px 10px;
		text-transform: unset;
	}

	.submenu>li>a:after {
		content: none;
	}

	.submenu>li>a {
		padding: 10px 10px 10px 10px;
	}
}

.new_cen_abs {
	position: fixed;
	right: 5px;
	bottom: 5%;
	z-index: 888;
}

.new_cen_abs a {
	position: relative;
	border-radius: 2.5em 0 0 2.5em;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	margin-bottom: 20px;
	transition: 0.3s linear;
	width: 100px;
	border-left: none;
	line-height: normal;
	padding: 0;
	border: none;
}

.new_cen_abs a span {
	position: relative;
	padding: 0px 10px;
	width: 100%;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	overflow: hidden;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	background: #fcff55;
	transition: 0.3s linear;
	/* border-radius: 20px; */
	color: #1d2327;
	margin-top: -16px;
	letter-spacing: -0.5px;
	text-transform: uppercase;
z-index: 2;}

.new_cen_abs a:hover span {
	background: #77dde7;
}

.new_cen_abs a i.foto {
	display: inline-flex;
	/* border-radius: 50%; */
	width: 80px;
	height: 80px;
	background: url(images/var.jpg) no-repeat;
	background-size: cover;
	position: relative;
	overflow: hidden;
	z-index: 2;
	transition: 0.2s linear
}

.new_cen_abs a i.cirl {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 90px;
	background: #77dde7;
	z-index: 2;
	/* border-radius: 50%; */
	position: relative;
	overflow: hidden;
	transition: 0.2s linear;
	box-shadow: 0px 0px 20px 0px rgb(72 92 112 / 50%);
}

#fancybox-wrap.forma_left {
	background: #ffffff url(images/main.jpg) no-repeat !important;
	background-size: auto 100% !important;
	background-position: left 0% top 0px !important;
	width: 80% !important;
	max-width: 800px;
	min-width: 300px;
	border: none;
	box-sizing: border-box !important;
	padding: 0;
	left: 50% !important;
	margin: 0px 0px 0px -400px;
	min-height: 360px !important;
}

#fancybox-wrap.forma_left #fancybox-content {
	width: 100% !important;
	border: none;
	background: none;
	box-sizing: border-box !important;
	overflow: hidden;
}

#fancybox-wrap.forma_left #fancybox-content>div {
	overflow: visible !important;
	box-sizing: border-box !important;
	padding: 40px 60px;
}

#fancybox-wrap.forma_left #fancybox-outer {
	box-shadow: none;
	background: none;
	box-sizing: border-box !important;
}

.forma_left #left_form {
	width: 53%;
	position: relative;
	margin: 0 0 0 auto;
}

.forma_left #left_form h3 {
	font-size: 20px;
	text-align: center;
	margin-bottom: 10px;
	line-height: 1;
	font-weight: 500;
	text-transform: uppercase;
color: #3b3b3b;
    letter-spacing: -1.5px;
    font-weight: 900;}

.forma_left #left_form h4 {
	text-align: center;
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 1;
	font-weight: 400;
	letter-spacing: -0.3px;
}

.forma_left #left_form .wpcf7-form p {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0px 0px 0px 0px;
}

.forma_left #left_form .wpcf7-form p span.wpcf7-form-control-wrap {
	display: inline-flex;
	margin-bottom: 10px;
	z-index: 1;
	width: 100%;
}

.forma_left #left_form .wpcf7-form p span input {
	
	
	
	
	height: 45px;
	
	
	color: #182c25;
	font-size: 14px;
	border: 1px solid #a0a0a0;
	background: #ffffff;
	
}

.forma_left #left_form .wpcf7-form p input[type="submit"] {
	display: flex;
	align-items: center;
	justify-content: center;
	
	
	cursor: pointer;
	width: 100%;
	height: 45px;
	
	position: relative;
	overflow: hidden;
	transition: 0.4s;
	
	
	
	box-shadow: 0px 0px 40px 0 rgb(37 54 70 / 10%);
margin-top: 10px;} 

.forma_left #left_form .wpcf7-form p input[type="submit"]:hover {
	box-shadow: 0px 12px 90px -10px rgb(255 255 255);
	background-color: rgb(255 255 255 / 0.7);
	border: 2px solid #ffffff;
	color: #2b2b2b;
}

@-webkit-keyframes slideme1 {
	0% {
		left: -75%;
	}

	100% {
		left: 125%;
	}
}

@media all and (max-width: 1100px) {
	.welcome .blocks .blocks_atom {
		width: 100%;
		height: auto;
		margin: 5px 0px 0px 0px;
		font-size: 20px;
		line-height: 1
	}

	.welcome .tn_atom {
		font-size: 22px;
	}

	footer .contacts p {
		display: flex !important;
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
		width: 100%;
	}

	footer .contacts div {
		width: 100%;
	}

	footer .contacts a,
	footer .contacts .address p span {
		margin: 0;
	}

	.t_container h2 {
		font-size: 30px;
	}

	.t_container p {
		width: 100%;
	}

	.our_works2 li {
		height: auto;
	}

	.our_works2 .img {
		height: 250px;
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
	}

	.our_works2 li img {
		width: auto;
		height: 100%;
	}
}

@media (max-width: 800px) {
	header #logo {
		width: auto
	}

	header #logo p {
		display: flex;
		flex-direction: column;
	}

	.welcome {
		height: auto;
		padding: 50px 0px;
		position: relative;
		overflow: hidden;
	}

	.welcome:before {
		content: '';
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background: rgba(0, 0, 0, 0.6);
	}

	.welcome .container .left {
		width: 100%;
		margin-top: 20px;
		margin-bottom: 20px;
		order: 2
	}

	.welcome .podl {
		width: 100%;
		background: none;
		padding: 0;
		text-align: center;
		order: 1;
		margin-top: 20px;
	}

	.welcome .wpcf7-form-control-wrap {
		width: 100%;
	}

	.welcome .tn_atom {
		font-size: 28px;
		color: #ffffff;
	}

	.welcome h3 {
		font-size: 40px;
		color: #ffffff;
	}

	.welcome hr {
		margin: 20px auto;
	}

	.welcome .blocks .blocks_atom {
		justify-content: center;
		text-align: center;
		color: #ffffff;
	}

	.welcome .btn {
		margin: 40px auto 0px auto;
	}

	.work .block {
		width: 32%;
		padding: 20px 10px;
	}

	.work p {
		font-size: 20px;
	}

	.work a {
		font-size: 13px;
	}

	.work li {
		font-size: 13px;
		line-height: 1.2;
	}

	.work .block h3 {
		font-size: 14px;
	}

	.form .container>.left h2,
	.form .container>.right h2 {
		font-size: 20px;
		line-height: 1;
	}

	.form .container>.right input[type="tel"] {
		padding: 0px 15px;
		height: 40px;
	}

	.form .wpcf7-submit {
		width: 100%;
	}

	h2.title {
		font-size: 32px;
	}

	.tabs>div .img img {
		width: auto;
		max-width: unset;
		height: 100%;
	}

	.tabs p {
		margin: 10px;
	}

	.tabs span {
		font-size: 14px;
	}

	.facty .block {
		width: 48%;
	}

	.big_title_type1 {
		font-size: 22px;
	}

	.our-works li img {
		width: auto;
		height: 100%;
	}

	.our-works .info .option .text {
		flex-direction: column;
		margin-bottom: 10px;
		align-items: flex-start;
		font-weight: 500;
	}

	.our-works .info .option .text span {
		font-weight: 300;
		margin: 0;
		font-size: 14px;
	}

	footer {
		height: auto;
	}

	footer .container {
		flex-wrap: wrap;
	}

	footer .container>div {
		width: 49%;
	}

	footer .container>div:nth-child(1) {
		order: 3;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	footer .container>div:nth-child(2) {
		order: 1
	}

	footer .container>div:nth-child(3) {
		order: 2
	}

	footer .container>div:nth-child(4) {
		order: 4
	}

	footer #logo {
		display: inline-flex;
	}

	footer #footer-logo #logo p {
		display: inline-flex;
		flex-direction: column;
	}

	footer #footer-logo>p {
		font-size: 12px;
	}

	footer .contacts p {
		align-items: flex-end;
	}

	footer .container>div:nth-of-type(2) ul li a {
		margin: 0;
		line-height: 1.2;
	}

	article h2,
	article h1 {
		font-size: 32px;
		line-height: 1;
	}

	#fancybox-wrap.forma_left {
		margin: 0px 0px 0px -40%;
	}
}

@media all and (max-width: 600px) {
	header .container {
		flex-wrap: wrap;
	}

	header #logo {
		width: 100%;
		justify-content: center;
	}

	header .contact {
		width: 100%;
		justify-content: center;
		margin: 0;
	}

	.welcome h3 {
		font-size: 30px;
		text-transform: uppercase;
	}

	.welcome .tn_atom {
		font-size: 22px;
	}

	.welcome:before {
		background: rgba(0, 0, 0, 0.7);
	}

	.element h1 {
		font-size: 26px;
		line-height: 1;
		text-transform: uppercase;
	}

	.element .text .left {
		width: 100%;
		margin-bottom: 10px;
	}

	.element .text .right {
		width: 100%;
	}

	.work .block {
		width: 100%;
		margin-bottom: 10px;
	}

	.work ul {
		width: 100%;
	}

	.form .container>.left {
		width: 100%;
		margin-bottom: 10px;
	}

	.form .container>.right {
		width: 100%;
	}

	.tabs>div {
		width: 100%;
		margin-bottom: 10px;
	}

	.price .table-head th:first-child {
		width: 25%;
		font-size: 12px;
	}

	.price .table-content tr.table-last td,
	.price .table-content tr.table-last th {
		padding: 0px 10px;
		font-size: 12px;
		font-weight: 500;
		text-transform: inherit;
	}

	.price .table-content tr td,
	.price .table-content tr th {
		padding: 5px 0px;
	}

	.price .table-head th {
		font-size: 0;
		width: 0%;
		font-weight: 500;
		text-transform: inherit;
	}

	.price .table-content tr th:first-child {
		font-size: 12px;
	}

	.price .table-head th:nth-child(2) {
		background: url(images/zv1.png) no-repeat;
		background-size: 30%;
		background-position: center;
	}

	.price .table-head th:nth-child(3) {
		background: url(images/zv2.png) no-repeat;
		background-size: 30%;
		background-position: center;
	}

	.price .table-head th:nth-child(4) {
		background: url(images/zv3.png) no-repeat;
		background-size: 30%;
		background-position: center;
	}

	.element .text .full li,
	.element .text .full p {
		font-size: 14px;
		line-height: 1.2;
	}

	h2.title {
		font-size: 26px;
		text-transform: uppercase;
		line-height: 1;
	}

	.form .container>.left p,
	.form .container>.left li,
	.form .container>.right .wpcf7-radio label span,
	.price .container>p,
	.how p,
	.element .container>p,
	.element .text .left p,
	.element .text .right p,
	.work .container>p {
		font-size: 14px;
		line-height: 1.2;
	}


	.how h2.title {
		display: none;
	}

	.how hr {
		display: none;
	}

	.facty {
		padding-top: 0;
	}

	.facty .block {
		width: 100%;
	}

	.our-works li {
		width: 100%;
	}

	.our-works li img {
		height: 100%;
		width: 100%;
	}

	.our-works h3 {
		margin-top: 0;
	}

	.our-works .info {
		width: 100%;
	}

	.t_container h4,
	.t_container form>*:nth-child(3) {
		font-size: 20px;
		line-height: 1.2;
	}

	.t_container p {
		flex-wrap: wrap;
	}

	.t_container .wpcf7-form-control-wrap {
		width: 100%;
		margin-bottom: 10px;
	}

	.t_container .wpcf7 input.wpcf7-submit {
		width: 100%;
	}

	footer .container>div:nth-child(1) {
		order: 4;
		width: 100%;
	}

	footer .container>div:nth-child(2) {
		order: 1;
		width: 40%;
	}

	footer .container>div:nth-child(3) {
		order: 3;
		width: 100%;
		margin: 20px 0px;
	}

	footer .container>div:nth-child(4) {
		order: 2;
	}

	footer .contacts p {
		text-align: right;
		font-size: 12px;
	}

	footer .container>div:nth-of-type(2) ul li a {
		margin-top: 10px;
		font-size: 12px;
	}

	.t_container {
		height: auto;
		padding: 40px 0px;
	}

	.t_container:after {
		height: 100%;
	}

	article h2,
	article h1 {
		font-size: 26px;
		text-transform: uppercase;
	}

	.pan_h p.tet {
		font-size: 14px;
		line-height: 1.2;
	}

	.pan_h section p {
		font-size: 14px;
		line-height: 1.2;
	}

	.our_works2 li {
		flex-direction: column;
	}

	.our_works2 .img {
		height: 200px;
		width: 100%;
	}

	.our_works2 li img {
		width: 100%;
		height: auto;
		;
	}

	.our_works2 li .article {
		width: 100%;
	}

	.our_works2 li .article h3 {
		text-align: center;
		margin-top: 10px;
	}

	.our_works2 .option .text {
		line-height: 1.2;
	}

	#contacts .flex-container {
		flex-direction: column;
		margin-bottom: 20px;
	}

	#contacts .wpcf7 {
		width: 100%;
		margin-bottom: 10px;
	}

	#contacts .data {
		width: 100%;
		padding: 20px;
	}

	#contacts h3 {
		font-size: 20px;
		line-height: 1.2;
	}

	#contacts form p {
		font-size: 14px;
		line-height: 1.2;
	}

	#contacts .wpcf7-form-control-wrap {
		width: 100%;
	}

	#contacts .data p,
	#contacts .data a {
		font-size: 14px;
		line-height: 1.2;
		margin: 0;
	}

	#contacts .data div {
		margin: 10px 0px
	}

	#contacts input.wpcf7-submit {
		width: 100%;
	}

	.pricecalc_content table tr:first-child {
		display: none !important;
	}

	.pricecalc_content table tr {
		display: flex;
		margin-bottom: 10px;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 100%;
		border-radius: 8px;
	}

	.pricecalc_content table tr td {
		display: flex;
		text-align: center;
		align-items: center;
		justify-content: center;
		padding: 5px;
		width: 24%;
	}

	.pricecalc_content table tr td:first-child {
		width: 100%;
		border-left: 1px solid #dfe4e7;
		text-align: center;
		line-height: 1;
		background: #edfafc;
	}

	.pricecalc_content table tr td:last-child {
		border-right: 1px solid #dfe4e7;
	}

	.pricecalc_content table tr .colspan {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	.pricecalc_content table tr:nth-child(even) {
		background: none;
	}

	.pricecalc_tabs .pricecalc_tab {
		width: 47%;
		height: auto;
		padding: 10px 10px;
		line-height: 1;
		font-size: 11px;
		font-weight: 500;
		margin: 5px 1%;
	}

	.form_calc_all h2 {
		font-size: 16px;
	}

	.form_calc_all .calc_all .left {
		width: 100%;
	}

	.form_calc_all .calc_all .center {
		width: 100%;
	}

	.form_calc_all .calc_all .right {
		width: 100%;
	}

	.tags .tag {
		width: 48%;
	}

	.tags ul.sub_categories_s ul li {
		width: 48%;
	}

	.providers .swiper .block {
		width: 28%;
		margin: 3% 1% 0% 1%;
	}

	.providers .swiper .block img {
		width: 100%;
	}

	.providers .swiper {
		justify-content: center;
	}

	new_cen_abs {
		right: 3%;
		bottom: 3%;
	}

	.new_cen_abs a {
		width: auto;
		margin-bottom: 0;
	}

	.new_cen_abs a i.cirl {
		width: 80px;
		height: 80px;
	}

	.new_cen_abs a i.foto {
		width: 70px;
		height: 70px;
	}

	#fancybox-wrap.forma_left {
		background: #ffffff !important;
		min-height: unset !important;
		height: auto !important;
	}

	#fancybox-wrap.forma_left #fancybox-content>div {
		padding: 30px;
	}

	.forma_left #left_form {
		width: 100%;
		position: relative;
		margin: 0 0 0 auto;
	}

	.forma_left #left_form h3 {
		font-size: 17px;
	}

	.forma_left #left_form h4 {
		font-size: 14px;
	}
	
	#fancybox-wrap,
	#fancybox-outer,
	#fancybox-content,
	#fancybox-content>div {
		height: auto !important;
	}

	#fancybox-wrap {
		top: 15px !important;
		margin-top: 0 !important;
		position: fixed !important;
	}
}