
/**************************** FONTS *****************************/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300i,400,400i,700,700i&subset=cyrillic');
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=cyrillic');

/**************************** /FONTS ****************************/
/**************************** CSS VARIABLES *********************/

:root {
	--color-primary: #e2001a;
	--color-secondary: #f6dd0a;
	--color-white: #fff;
	--color-black: #000;
	--color-text: #1F1F1E;
	--color-text-light: #494946;
	--color-bg: #fff;
	--color-bg-light: #f5f5f5;
	--color-bg-popup: #f8f8f8;
	--color-error: #c00015;
	--color-disabled: #494946;
	--color-nav-disabled: #2C2C54;
	--color-price-start: #4C86A8;
	--color-price-end: #96ADC8;
	--color-overlay: rgba(0,0,0,.75);
	--color-overlay-solid: rgba(0,0,0,1);
	--color-dark-shading: rgba(31,31,30,0.6);
	--color-light-shading: rgba(245,245,245,0.75);
	--bg-gradient: linear-gradient(to right, var(--color-price-end), var(--color-price-start));
}

/**************************** /CSS VARIABLES ********************/
/**************************** DEFAULT STYLES ********************/

html, body {
	height: 100%;
}

body {
	position: relative;
	min-width: 320px;
	font: 20px/27px 'Open Sans', sans-serif;
	color: var(--color-text);
	background: var(--color-white);
}

div, section, nav, ul, ol, li {
	position: relative;
}

input, textarea {
	outline: 0 none;
}

ul, ol {
	margin: 0;
	padding: 0;
}

li {
	position: relative;
	list-style: none;
}

a,
a:focus {
    outline: none;
    text-decoration: none;
	-webkit-transition: all .15s linear 0s;
		 -o-transition: all .15s linear 0s;
			transition: all .15s linear 0s;
}

a:hover {
    color: var(--color-text);
    text-decoration: none;
}

b, strong {
    font-weight: bold;
}

i, em {
    font-style: italic;
}

table {
	width: 100%;
}

.nowrap {
	white-space: nowrap;
}



@media (min-width: 1440px) {
	.container {
		width: 1380px;
	}
}

@media (min-width: 1920px) {
	.container {
		width: 1700px;
	}
}

/**************************** /DEFAULT STYLES *******************/
/**************************** LOADER ****************************/



/**************************** /LOADER ***************************/
/**************************** BURGER MENU ***********************/

.burger {
	display: none;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 20px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 10;
}

.burger span {
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--color-white);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 18px; }

.burger.active span:nth-child(1) {
	top: 9px;
	transform: rotate(45deg);
}

.burger.active span:nth-child(2) {
	opacity: 0;
}

.burger.active span:nth-child(3) {
	top: 9px;
	transform: rotate(-45deg);
}

.nav_overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1490;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav_overlay.active {
	opacity: 1;
	visibility: visible;
}

body.nav-open {
	overflow: hidden;
}

/**************************** /BURGER MENU **********************/
/**************************** POPUP FORM ************************/

.fancybox-slide--current .popup,
.fancybox-slide--current .response_message {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}

.popup,
.response_message {
	width: 360px;
	padding: 25px 40px 40px;
	background: var(--color-bg-popup);
	-webkit-transform: translateY(-50px);
	    -ms-transform: translateY(-50px);
		 -o-transform: translateY(-50px);
			transform: translateY(-50px);
	-webkit-transition: all .15s linear 0s;
	   -moz-transition: all .15s linear 0s;
			transition: all .15s linear 0s;
}

.popup h2,
.response_message h2 {
	margin: 10px 0 30px;
	font: bold 26px/40px 'Montserrat', sans-serif;
	text-align: center;
}

.popup .field {
	margin-bottom: 15px;
}

.popup input[type='number'],
.popup input[type='email'],
.popup input[type='text'],
.popup input[type='tel'],
.popup textarea {
	display: block;
	width: 100%;
	height: 50px;
	padding: 15px 20px;
	font: 16px 'Montserrat', sans-serif;
	box-sizing: border-box;
	-webkit-transition: all .15s linear 0s;
	   -moz-transition: all .15s linear 0s;
			transition: all .15s linear 0s;
}

.popup textarea {
	height: 120px;
	resize: none;
}

.popup input[type='number'].good,
.popup input[type='email'].good,
.popup input[type='text'].good,
.popup input[type='tel'].good,
.popup textarea.good {
	border: 1px solid rgba(0, 0, 0, .15);
}

.popup input[type='number'].good:hover,
.popup input[type='email'].good:hover,
.popup input[type='text'].good:hover,
.popup input[type='tel'].good:hover,
.popup textarea.good:hover {
	border: 1px solid rgba(0, 0, 0, .3);
}

.popup input[type='number'].good:focus,
.popup input[type='email'].good:focus,
.popup input[type='text'].good:focus,
.popup input[type='tel'].good:focus,
.popup textarea.good:focus {
	border: 1px solid rgba(0, 0, 0, .5);
}

.popup input[type='number']:focus,
.popup input[type='email']:focus,
.popup input[type='text']:focus,
.popup input[type='tel']:focus,
.popup textarea:focus {
	-webkit-box-shadow: inset 1px 1px 2px 0 rgba(0, 0, 0, .15);
			box-shadow: inset 1px 1px 2px 0 rgba(0, 0, 0, .15);
}

.popup input[type='number'].error,
.popup input[type='email'].error,
.popup input[type='text'].error,
.popup input[type='tel'].error {
	border: 1px solid var(--color-error);
}

.popup input[type='submit'],
.popup input[type='submit']:focus {
	display: block;
	width: 100%;
	height: 50px;
	font: bold 16px/50px 'Montserrat', sans-serif;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: .1em;
	color: var(--color-white);
	background: transparent;
	border: 0;
	outline: 0;
	-webkit-transition: all .15s linear 0s;
	   -moz-transition: all .15s linear 0s;
			transition: all .15s linear 0s;
	-webkit-box-shadow: inset 0 0 0 25px var(--color-primary);
			box-shadow: inset 0 0 0 25px var(--color-primary);
}

.popup input[type='submit']:hover {
	color: var(--color-primary);
	-webkit-box-shadow: inset 0 0 0 2px var(--color-primary);
			box-shadow: inset 0 0 0 2px var(--color-primary);
}

.popup label {
    display: inline-block;
    margin-right: 15px;
    font: 16px/24px 'Montserrat', sans-serif;
}

.popup .note {
	padding-top: 10px;
}

.popup .note label {
	font-size: 14px;
	line-height: 18px;
}

.popup .note input[type="checkbox"] + span::before {
    border: 1px solid rgba(0,0,0,.1);
}

.popup .note a {
	color: var(--color-primary);
}

.popup .note a:hover {
	color: var(--color-text);
}

.popup .form_subtitle {
	margin: 15px 0 10px;
	font: bold 16px/24px 'Montserrat', sans-serif;
}

.popup input[type="radio"] {
    display: none;
}

.popup input[type="radio"] + span {
    position: relative;
    display: block;
    padding-left: 25px;
    line-height: 20px;
}

.popup input[type="radio"] + span::before {
    content: '\f10c';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    font: 21px/20px 'FontAwesome';
    text-align: center;
    color: rgba(46, 46, 46, .4);
}

.popup input[type="radio"]:checked + span::before {
    content: '\f192';
    color: rgba(46, 46, 46, 1);
}

.popup input[type="radio"] + span *:not(b) {
    color: rgba(46, 46, 46, .8);
}

.popup input[type="radio"] + span b {
    display: block;
}

.ok_btn,
.ok_btn:focus {
	display: block;
	width: 60px;
	height: 50px;
	margin: 20px auto 0;
	font: bold 14px/50px 'Montserrat', sans-serif;
	text-decoration: none;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	letter-spacing: .1em;
	color: var(--color-white);
	background: transparent;
	border: 0;
	outline: 0;	
	-webkit-box-shadow: inset 0 0 0 25px var(--color-primary);
			box-shadow: inset 0 0 0 25px var(--color-primary);
}

.ok_btn:hover {
	color: var(--color-primary);
	text-decoration: none;
	-webkit-box-shadow: inset 0 0 0 2px var(--color-primary);
			box-shadow: inset 0 0 0 2px var(--color-primary);
}

.close_btn {
	position: absolute;
	top: -50px;
	right: -50px;
	width: 30px;
	height: 30px;
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 0;
	outline: none;
	background: transparent;
	z-index: 10;
	cursor: pointer;
	opacity: .5;
	-webkit-transition: all .15s linear 0s;
	   -moz-transition: all .15s linear 0s;
			transition: all .15s linear 0s;
}

.close_btn:hover {
	opacity: 1;
	-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		 -o-transform: rotate(90deg);
			transform: rotate(90deg);
}

.close_btn:after {
	content: '\f136';
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 30px;
	font: 24px/30px 'MaterialDesignIconicFont';
	color: var(--color-white);
	text-align: center;
	border-width: 0;
	background: transparent;
	box-sizing: border-box;
	z-index: 2;
}

.response_message .modal-content {
	font-size: 18px;
	text-align: center;
}

/**************************** /POPUP FORM ***********************/
/**************************** BUTTONS ***************************/

.btn_empty {
	display: block;
	height: 40px;
	padding-left: 30px;
	padding-right: 30px;
	font: 400 14px/40px 'Roboto Condensed', sans-serif;
	letter-spacing: 0.1em;
	text-align: center;
	text-transform: uppercase;
	-webkit-box-shadow: inset 0 0 0 2px var(--color-primary);
			box-shadow: inset 0 0 0 2px var(--color-primary);
}

.btn_empty:hover {
	-webkit-box-shadow: inset 0 0 0 20px var(--color-primary);
			box-shadow: inset 0 0 0 20px var(--color-primary);
}

.btn_fill {
	display: block;
	height: 70px;
	padding-left: 30px;
	padding-right: 30px;
	font: 600 20px/70px 'Montserrat', sans-serif;
	text-align: center;
	text-transform: uppercase;
	color: var(--color-white);
	-webkit-box-shadow: inset 0 0 0 35px var(--color-primary);
			box-shadow: inset 0 0 0 35px var(--color-primary);
}

.btn_fill:hover,
.btn_fill:focus {
	color: var(--color-white);
	-webkit-box-shadow: inset 0 0 0 3px var(--color-primary);
			box-shadow: inset 0 0 0 3px var(--color-primary);
}
.consult.btn_fill:focus,
#contacts .btn_fill:focus {
	color: var(--color-primary);
}
	/**************************** /BUTTONS **************************/
/**************************** MAIN SLIDER ***********************/



/**************************** /MAIN SLIDER **********************/
/**************************** HEADER ****************************/

.site_header {
	min-height: 100vh;
	color: var(--color-white);
	background-color: var(--color-black);
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	-webkit-background-size: cover;
			background-size: cover;
}

.site_header::before, .section_testimonials::before, .section_services::before, .section_form::before {
	position: absolute;
	content: "";
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.site_header::before {
	height: 200%;
}

.site_header::before, .section_testimonials::before{
	background-color: var(--color-dark-shading);
}

.section_services::before {
	background-color: var(--color-light-shading);
}

.section_form::before {
	background: var(--bg-gradient);
	opacity: 0.5;
}

.site_header .nav_menu {
	width: 100%;
	background-color: var(--color-overlay);
	z-index: 1500;
}

.site_header .is-sticky .nav_menu {
	background-color: var(--color-overlay-solid);
}

.site_header .nav_menu .menu {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: space-around;
       -moz-justify-content: space-around;
        -ms-justify-content: space-around;
         -o-justify-content: space-around;
            justify-content: space-around;
	-ms-align-items: center;
		align-items: center;
	height: 60px;
}

.site_header .nav_menu .menu a {
	position: relative;
	display: inline-block;
	height: 60px;
	font: 400 14px/60px 'Roboto Condensed', sans-serif;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 0.05em;
	color: rgba(255,255,255,.85);
}

.site_header .nav_menu .menu a:hover,
.site_header .nav_menu .menu a.current {
	color: var(--color-white);
}

.site_header .nav_menu .menu a::after {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: var(--color-primary);
	-webkit-transition: all .15s linear 0s;
		 -o-transition: all .15s linear 0s;
			transition: all .15s linear 0s;
}

.site_header .nav_menu .menu a:hover::after,
.site_header .nav_menu .menu a.current::after {
	left: 0;
	width: 100%;
}

.site_header .content_block .top {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: space-between;
       -moz-justify-content: space-between;
        -ms-justify-content: space-between;
         -o-justify-content: space-between;
            justify-content: space-between;
	-ms-align-items: center;
		align-items: center;
	height: 150px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.site_header .content_block .top .logo img {
	display: block;
	max-width: 370px;
	max-height: 100px;
}

.site_header .content_block .top .phones {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: flex-end;
       -moz-justify-content: flex-end;
        -ms-justify-content: flex-end;
         -o-justify-content: flex-end;
            justify-content: flex-end;
	-ms-align-items: center;
		align-items: center;
}

.site_header .content_block .top .phone {
	height: 29px;
	padding-left: 40px;
	font: bold 21px/29px 'Montserrat', sans-serif;
	background: url('../img/phone.png') no-repeat left center;
}

.phone a, .phone:hover a, .phone:focus a {
	color: var(--color-white);
}

footer .phone a, footer .phone:hover a, footer .phone:focus a {
	color: var(--color-text-light);
}

.site_header .content_block .top .btn_empty {
	min-width: 170px;
	margin-left: 30px;
	color: var(--color-white);
}

.site_header .content_block .top .btn_empty:hover {
	color: var(--color-white);
}

.site_header .content_block .bottom {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	-webkit-flex-direction: column;
	   -moz-flex-direction: column;
		-ms-flex-direction: column;
		 -o-flex-direction: column;
			flex-direction: column;
    -webkit-justify-content: center;
       -moz-justify-content: center;
        -ms-justify-content: center;
         -o-justify-content: center;
            justify-content: center;
	height: calc(100vh - 210px);
	padding: 70px 0 100px;
	text-align: center;
}

.site_header .content_block .bottom .main_title {
	margin: 0 0 40px;
	font: 800 60px/80px 'Montserrat', sans-serif;
	text-transform: uppercase;
}

.site_header .content_block .bottom .main_descr {
	margin-bottom: 60px;
	padding-left: 70px;
	padding-right: 70px;
	font: 300 20px/36px 'Open Sans', sans-serif;
}

.site_header .content_block .bottom .btn_fill {
	width: 470px;
	margin: 0 auto 40px;
}

.site_header .scroll_downs {
	margin: 0 auto;
	width: 37px;
	height: 60px;
}

.site_header .scroll_downs .mouse {
	width: 3px;
	padding: 10px 15px;
	height: 35px;
	border: 2px solid var(--color-white);
	border-radius: 25px;
	opacity: 1;
	box-sizing: content-box;
}

.site_header .scroll_downs .scroller {
	width: 3px;
	height: 10px;
	border-radius: 25%;
	background-color: var(--color-white);
	animation-name: scroll;
	animation-duration: 1s;
	animation-timing-function: cubic-bezier(.15,.41,.69,.94);
	animation-iteration-count: infinite;
}

@keyframes scroll {
	0% { opacity: 0; }
	10% { transform: translateY(0); opacity: 1; }
	100% { transform: translateY(15px); opacity: 0;}
}

/**************************** /HEADER ***************************/
/**************************** BODY ******************************/

.section {
	padding-top: 60px;
	padding-bottom: 80px;
}

.section_services {
	padding-bottom: 40px;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
			background-size: cover;
}

.section_head {
	text-align: center;
	margin-bottom: 70px;
}

.section_suptitle {
	margin: 0 0 10px;
	font: normal 15px/27px 'Montserrat';
	text-transform: uppercase;
	color: var(--color-text-light);
}

.section_title {
	margin: 0;
	font: bold 50px/54px 'Montserrat';
	color: var(--color-text);
}

.services_list,
.adv_list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
       -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
         -o-flex-wrap: wrap;
            flex-wrap: wrap;
}

.services_list .one_service {
	width: calc(100% - 60px);
	margin-bottom: 50px;
	text-align: center;
}

.services_list .one_service:not(:nth-child(3n)) {
	margin-right: 30px;
}

.services_list .one_service img {
	display: block;
	margin: 0 auto 30px;
}

.services_list .one_service .service_title {
	margin: 0 0 15px;
	font: 600 20px/30px 'Montserrat';
	text-transform: uppercase;
	color: var(--color-text-light);
}

.section_advantages {
	background-color: var(--color-bg-light);
	background-position: top left;
	background-repeat: repeat;
	background-image: url('../img/pattern1.jpg');
}

.adv_list .one_adv {
	width: calc((100% - 90px) / 2);
	margin-bottom: 80px;
	text-align: center;
	border: 1px dashed var(--color-primary);
	padding-top: 20px;
}

.adv_list .one_adv:not(:nth-child(2n)) {
	margin-right: 30px;
}

.adv_list .one_adv .number_wrp {
	width: 200px;
	height: 200px;
	margin: 0 auto 30px;
	font: bold 70px/200px 'Montserrat';
	background: url('../img/poligon.png') no-repeat center;
}

.adv_list .one_adv .adv_title {
	padding: 0 5%;
	font-size: 18px;
	font-weight: 300;
	line-height: 28px;
	color: var(--color-text-light);
}

.adv_list .one_adv article {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.adv_list .one_adv article img {
	width: auto;
	height: 20rem;
	max-width: calc(100% - 40px);
}

.product__body h3 {
	margin: 4rem 0 0.75rem;
	font-weight: 700;
	color: var(--color-text);
}

.price { font-weight: 700; margin-top: 0.75rem; }
.price span { color: var(--color-primary); }
.availability { font-weight: 600; margin-top: 0.25rem; }
.out-of-stock { color: var(--color-text-light); text-decoration: line-through; }

.co2-price-table, .co2-price-table th, .co2-price-table td {
	padding: 0.5rem;
	border: 1px solid var(--color-text-light);
}
.co2-price-table {
	border-collapse: collapse;
}

.co2-price-table td:first-child, .co2-price-table .price, .co2-price-table .availability {
	text-align: center;
}

.co2-price-table .co2-photo {
	width: 80px;
	height: 80px;
	background-size: contain;
	background-position: center;
	border-radius: 4px;
}

.section_price_table blockquote {
	max-width: calc(100vw - 30px);
	margin: 20px 0;
	color: var(--color-text-light);
}

#notes {
	margin: -4rem 0 5rem;
}

.section_advantages .btn_fill {
	width: 470px;
	margin-left: auto;
	margin-right: auto;
}

.section_advantages .btn_fill:hover {
	color: var(--color-primary);
}

.section_form {
	padding: 70px 0;
	color: var(--color-white);
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	-webkit-background-size: cover;
			background-size: cover;
}
.section_form .form_frame > .row {
	display: flex;
	justify-content: center;
}
.section_form .img_wrp {
	display: none;
}
.section_form .form_frame {
	padding: 50px;
	border: 10px solid var(--color-white);
}

.section_form .section_suptitle,
.section_form .section_title {
	color: var(--color-white);
}

.section_form .section_head {
	margin-bottom: 40px;
}

.section_form .section_head {
	text-align: left;
}

.section_form .img_wrp {
	position: absolute;
	bottom: -70px;
	right: 70px;
}

.section_form .form_wrp {
	padding: 0 30px 0 0;
}

.section_form .form_wrp .field {
	margin-bottom: 20px;
}

.section_form .form_wrp .field input[type="text"],
.section_form .form_wrp .field input[type="tel"] {
	display: block;
	width: 100%;
	height: 60px;
	padding: 0 20px;
	font: 300 15px/40px 'Montserrat';
	color: var(--color-text);
	background-color: var(--color-white);
	border: 1px solid var(--color-bg-light);
}

.section_form .form_wrp .field input[type='text'].error {
	border-color: var(--color-error);
}

.section_form .form_wrp .field button[type='submit'] {
	display: block;
	width: 100%;
	height: 70px;
	font: bold 24px/70px 'Montserrat';
	text-transform: uppercase;
	color: var(--color-text);
	border: 0;
	background: transparent;
	-webkit-transition: all .15s linear 0s;
		 -o-transition: all .15s linear 0s;
			transition: all .15s linear 0s;
	-webkit-box-shadow: inset 0 0 0 35px var(--color-secondary);
			box-shadow: inset 0 0 0 35px var(--color-secondary);
}

.section_form .form_wrp .field button[type='submit']:hover {
	color: var(--color-white);
	-webkit-box-shadow: inset 0 0 0 3px var(--color-secondary);
			box-shadow: inset 0 0 0 3px var(--color-secondary);	
}

.section_form .note {
	font-size: 14px;
	color: rgba(255,255,255,.85);
}

.section_form .note a {
	color: var(--color-secondary);
}

.section_form .note a:hover {
	color: var(--color-white);
}

.note input[type="checkbox"] {
    display: none;
}

.note input[type="checkbox"] + span {
    position: relative;
    display: block;
    padding-left: 30px;
    line-height: 20px;
}

.note input[type="checkbox"] + span::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 20px;
    height: 20px;
    padding-left: 2px;
    font: 15px/20px 'FontAwesome';
	color: rgba(46, 46, 46, .8);
    text-align: center;
    background: var(--color-white);
    border: 0;
}

.note input[type="checkbox"]:checked + span::before {
    content: "\f00c";
}

.section_window_automation {
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
			background-size: cover;
}

.section_window_automation-el-wr {
	display: flex;
	flex-direction: column;
	gap: 6rem;
}

.section_window_automation-el {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.section_window_automation-el .section_head {
	margin-bottom: 2rem;
}

.section_window_automation-el video {
	height: 60rem;
	max-width: 100%;
}

.portfolio_grid .grid_item {
	margin-bottom: 30px;
	overflow: hidden;
}

.portfolio_grid .grid_sizer,
.portfolio_grid .grid_item {
	width: 262px;
}

.portfolio_grid .gutter_sizer {
	width: 30px;
}

.portfolio_grid .grid_item_width2 {
	width: 554px;
}

.portfolio_grid .grid_item a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	background-color: var(--color-primary);
}

.portfolio_grid .grid_item a::after {
	position: absolute;
	top: calc(50% - 22px);
	left: calc(50% - 22px);
	width: 44px;
	height: 44px;
	content: '\f002';
	font: 36px/44px 'FontAwesome';
	text-align: center;
	color: var(--color-white);
	-webkit-transition: opacity .25s ease 0s, -webkit-transform .25s ease 0s;
	     -o-transition: opacity .25s ease 0s, -o-transform .25s ease 0s;
			transition: opacity .25s ease 0s, transform .25s ease 0s;
	-webkit-transform: scale(0);
		-ms-transform: scale(0);
		 -o-transform: scale(0);
			transform: scale(0);
	opacity: 0;
}

.portfolio_grid .grid_item a:hover::after {
	-webkit-transform: scale(1);
		-ms-transform: scale(1);
		 -o-transform: scale(1);
			transform: scale(1);
	opacity: 1;
}

.portfolio_grid .grid_item img {
	display: block;
	width: 100%;
	height: auto;
	-webkit-transition: opacity .25s ease 0s, -webkit-transform .25s ease 0s;
	     -o-transition: opacity .25s ease 0s, -o-transform .25s ease 0s;
			transition: opacity .25s ease 0s, transform .25s ease 0s;
	opacity: 1;
}

.portfolio_grid .grid_item a:hover img {
	-webkit-transform: scale(1.15);
		-ms-transform: scale(1.15);
		 -o-transform: scale(1.15);
			transform: scale(1.15);
	opacity: .25;
}

.section_window_automation .btn_fill {
	width: 470px;
	margin: 30px auto 0;
}

.section_window_automation .btn_fill:hover {
	color: var(--color-primary);
}

.section_clients {

}

.clients_list_wrp {
	padding-left: 70px;
	padding-right: 70px;
}

.clients_list .one_client {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: center;
       -moz-justify-content: center;
        -ms-justify-content: center;
         -o-justify-content: center;
            justify-content: center;
	-ms-align-items: center;
		align-items: center;
	height: 500px;
}

.clients_list .one_client img {
	display: inline-block !important;
	width: auto !important;
	height: auto !important;
	max-width: 100%;
	max-height: 500px;
	-webkit-transition: opacity .25s linear 0s;
		 -o-transition: opacity .25s linear 0s;
			transition: opacity .25s linear 0s;
	opacity: .5;
}

.clients_list .one_client:hover img {
	opacity: 1;
}

.section_clients .owl-stage-outer {
	z-index: 200;
}

.section_clients .owl-nav,
.features_box_gallery .owl-nav {
	position: absolute;
	top: calc(50% - 50px);
	left: 0;
	width: 100%;
	height: 50px;
}

.section_clients .owl-nav > div,
.features_box_gallery .owl-nav > div {
	position: absolute;
	top: 0;
    width: 50px;
    height: 50px;
}

.section_clients .owl-nav .owl-prev {
    left: -70px;
}

.section_clients .owl-nav .owl-next {
	right: -70px;
}

.features_box_gallery .owl-nav .owl-prev {
    left: -50px;
}

.features_box_gallery .owl-nav .owl-next {
	right: -50px;
}

.section_clients .owl-nav > div::after,
.features_box_gallery .owl-nav > div::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    font: 50px/50px 'FontAwesome';
    text-align: center;
    color: var(--color-primary);
    -webkit-transition: color .15s linear 0s;
       -moz-transition: color .15s linear 0s;
            transition: color .15s linear 0s;
}

.section_clients .owl-nav .owl-next::after,
.features_box_gallery .owl-nav .owl-next::after {
 	content: '\f105';
}

.section_clients .owl-nav .owl-prev::after,
.features_box_gallery .owl-nav .owl-prev::after {
    content: '\f104';
}

.section_clients .owl-nav > div:hover::after {
	color: var(--color-text);
}

.section_clients .owl-nav > div:active::after {
	top: 1px;
}

.section_clients .owl-nav > div.disabled::after,
.section_clients .owl-nav > div.disabled:hover::after,
.section_clients .owl-nav > div.disabled:active::after {
	top: 0;
	color: var(--color-nav-disabled);
	opacity: .25;
	-webkit-cursor: default;
	   -moz-cursor: default;
		-ms-cursor: default;
		 -o-cursor: default;
			cursor: default;
}

.section_testimonials {
	color: var(--color-white);
	background-color: var(--color-overlay-solid);
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	-webkit-background-size: cover;
			background-size: cover;
}

.section_testimonials .section_suptitle,
.section_testimonials .section_title  {
	color: var(--color-white);
}

.section_testimonials .testimonials_frame {
	padding: 70px;
	border: 5px solid var(--color-white);
}

.section_testimonials .testimonials_frame::before {
	position: absolute;
	top: 10px;
	left: 15px;
	width: 50px;
	height: 50px;
	content: '\f10d';
	font: 50px/55px 'FontAwesome';
	text-align: center;
	color: rgba(255,255,255,.1);
}

.section_testimonials .testimonials_frame::after {
	position: absolute;
	bottom: 10px;
	right: 15px;
	width: 50px;
	height: 50px;
	content: '\f10e';
	font: 50px/55px 'FontAwesome';
	text-align: center;
	color: rgba(255,255,255,.1);
}

.section_testimonials .one_testimonial {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.section_testimonials .one_testimonial .img img {
	display: block;
	width: 180px;
	height: auto;
}

.section_testimonials .one_testimonial .content {
	padding-left: 40px;
	font-size: 18px;
	line-height: 28px;
}

.section_testimonials .one_testimonial .content .text {
	margin-bottom: 20px;
	font-weight: 300;
	font-style: italic;
}

.section_testimonials .one_testimonial .content .person {
	font-weight: 700;
}

.section_testimonials .owl-stage-outer {
	
}

.section_testimonials .owl-nav {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 110px;
	height: 50px;
}

.section_testimonials .owl-nav > div {
	position: absolute;
	top: 0;
    width: 50px;
    height: 50px;
}

.section_testimonials .owl-nav .owl-prev {
    left: 0;
}

.section_testimonials .owl-nav .owl-next {
	right: 0;
}

.section_testimonials .owl-nav > div::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    font: 32px/46px 'FontAwesome';
    text-align: center;
    color: var(--color-primary);
    -webkit-transition: color .15s linear 0s;
       -moz-transition: color .15s linear 0s;
            transition: color .15s linear 0s;
	border: 2px solid var(--color-primary);
	background-color: transparent;
}

.section_testimonials .owl-nav .owl-next::after {
 	content: '\f105';
}

.section_testimonials .owl-nav .owl-prev::after {
    content: '\f104';
}

.section_testimonials .owl-nav > div:hover::after {
	color: var(--color-white);
	background-color: var(--color-primary);
}

.section_testimonials .owl-nav > div:active::after {
	
}

.section_testimonials .owl-nav > div.disabled::after,
.section_testimonials .owl-nav > div.disabled:hover::after,
.section_testimonials .owl-nav > div.disabled:active::after {
	top: 0;
	color: rgba(0,0,0,.25);
	border-color: rgba(0,0,0,.25);
	background-color: transparent;
	-webkit-cursor: default;
	   -moz-cursor: default;
		-ms-cursor: default;
		 -o-cursor: default;
			cursor: default;
}

.section_price {
	padding-bottom: 100px;
}

.section_price .section_head {
	margin-bottom: 80px;
}

.section_price_table {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	flex-direction: column;
	overflow-y: auto;
}

.section_price_table .one_table {
	width: 33.3333%;
	padding: 50px 50px 150px;
	-webkit-box-shadow: inset 0 0 0 10px rgba(0,0,0,.05);
			box-shadow: inset 0 0 0 10px rgba(0,0,0,.05);
	background-color: var(--color-bg-light);
}

.section_price_table .one_table.marked {
	color: var(--color-white);
	background: var(--color-price-start);
	background: -moz-linear-gradient(top, var(--color-price-start) 0%, var(--color-price-end) 100%);
	background: -webkit-linear-gradient(top, var(--color-price-start) 0%,var(--color-price-end) 100%);
	background: linear-gradient(to bottom, var(--color-price-start) 0%,var(--color-price-end) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--color-price-start)', endColorstr='var(--color-price-end)',GradientType=0 );
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
		 -o-transform: scale(1.05);
			transform: scale(1.05);
	z-index: 600;
}

.section_price_table .one_table .title {
	margin: 0 0 30px;
	padding-bottom: 30px;
	font: bold 30px/30px 'Montserrat';
	text-transform: uppercase;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}

.section_price_table .one_table .title {
	border-bottom-color: rgba(0,0,0,.15);
}

.section_price_table .one_table.marked .title {
	border-bottom-color: rgba(255,255,255,.30);
}

.section_price_table .one_table .price {
	margin: 0 0 25px;
	font: bold 26px/24px 'Montserrat';
}

.section_price_table .one_table .features li {
	position: relative;
	margin-bottom: 15px;
	padding-left: 30px;
	font: 15px/22px 'Montserrat';
}

.section_price_table .one_table .features li::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: '\f00c';
	font: 15px/20px 'FontAwesome';
	text-align: center;
	color: var(--color-primary);
}

.section_price_table .one_table.marked .features li::before {
	color: var(--color-white);
}

.section_price_table .one_table .btn {
	position: absolute;
	bottom: 50px;
	left: 15%;
	width: 70%;
	height: 60px;
	font: bold 18px/60px 'Montserrat', sans-serif;
	letter-spacing: 0.1em;
	text-align: center;
	text-transform: uppercase;
}

.section_price_table .one_table:not(.marked) .btn {
	color: var(--color-white);
	-webkit-box-shadow: inset 0 0 0 30px var(--color-primary);
			box-shadow: inset 0 0 0 30px var(--color-primary);
}

.section_price_table .one_table:not(.marked) .btn:hover {
	color: var(--color-primary);
	-webkit-box-shadow: inset 0 0 0 3px var(--color-primary);
			box-shadow: inset 0 0 0 3px var(--color-primary);
}

.section_price_table .one_table.marked .btn {
	color: var(--color-primary);
	-webkit-box-shadow: inset 0 0 0 30px var(--color-white);
			box-shadow: inset 0 0 0 30px var(--color-white);
}

.section_price_table .one_table.marked .btn:hover {
	color: var(--color-white);
	-webkit-box-shadow: inset 0 0 0 3px var(--color-white);
			box-shadow: inset 0 0 0 3px var(--color-white);
}

.section_features {
	background-color: var(--color-bg-light);
	background-position: top left;
	background-repeat: repeat;
	background-image: url('../img/pattern1.jpg');
}

.features_list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
       -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
         -o-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-between;
       -moz-justify-content: space-between;
        -ms-justify-content: space-between;
         -o-justify-content: space-between;
            justify-content: space-between;
}

.features_list .features_box {
	width: calc(50% - 15px);
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.features_list .features_box_head {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	-ms-align-items: center;
		align-items: center;
	margin-bottom: 10px;
}

.features_list .features_box_body {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
}

.features_list .features_box_gallery {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.features_list .features_box_head .img {
	width: 120px;
}

.features_list .features_box_head .title {
	margin: 0;
	padding-left: 15px;
	font: bold 24px/30px 'Montserrat', sans-serif;
	min-height: 60px;
}

.features_list .features_box .features_box_gallery img,.features_list .features_box .features_box_gallery video  {
	max-width: 100%;
}

.features_list .features_box .features_box_gallery video  {
	max-height: 480px;
}

.features_list .features_box .features_box_gallery .features_box_gallery-slide-container {
	display: flex;
	justify-content: center;
}

.features_box_gallery.owl-carousel.owl-loaded {
	width: calc(100% - 100px);
	align-self: center;
}

.features_list .features_box video {
	max-width: 100%;
}

.features_list .features_box .list {
	padding-top: 20px;
	padding-left: 15px;
}

.features_list .features_box .list li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 26px;
	font: 16px/24px 'Montserrat', sans-serif;
}

.features_list .features_box .list li::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 10px;
	width: 6px;
	height: 6px;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
		-ms-border-radius: 50%;
		 -o-border-radius: 50%;
			border-radius: 50%;
	background-color: var(--color-primary);
}

.features_ps {
 	text-align: center;
}

.features_ps img {
	display: inline-block;
	max-width: 100%;
}

.section_features .btn_fill {
	width: 470px;
	margin: 30px auto 0;
}

.section_features .btn_fill:hover {
	color: var(--color-primary);	
}

.section_steps {
	padding-bottom: 50px;
}

.steps_list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
       -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
         -o-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-between;
       -moz-justify-content: space-between;
        -ms-justify-content: space-between;
         -o-justify-content: space-between;
            justify-content: space-between;
}

.steps_list li {
	position: relative;
	margin-bottom: 40px;
	width: calc((100% - 100px)/3);
	text-align: center;
}

.steps_list li img {
	margin-bottom: 20px;
}

.steps_list li .title {
	margin: 0 0 10px;
	font: bold 22px/28px 'Montserrat', sans-serif;
}

.steps_list li .text {
	margin: 0;
}

.steps_list li:not(:nth-child(3n))::after {
	position: absolute;
	top: 53px;
	right: -50px;
	width: 50px;
	height: 50px;
	content: '\f105';
	font: 50px/50px 'FontAwesome';
	text-align: center;
	color: var(--color-primary);
}

.section_form2 .img_wrp {
	right: 40px;
}

.section_map,
#yandex_map {
	height: 600px;
}

.section_map_content {
	position: absolute;
	width: 470px;
	top: 100px;
	left: calc(50% - 560px);
}

.section_map_content .content {
	padding: 40px 30px 30px;
	background-color: var(--color-white);
	-webkit-box-shadow: 0 0 0 10px rgba(0,0,0,.2);
			box-shadow: 0 0 0 10px rgba(0,0,0,.2);
}

.section_map_content .content .title {
	margin: 0 0 35px;
	font: bold 36px/36px 'Montserrat';
}

.section_map_content .content .contacts_list {
	margin-bottom: 20px;
}

.section_map_content .content .contacts_list li {
	position: relative;
	padding-left: 50px;
	padding-bottom: 20px;
	font: 18px/28px 'Montserrat';
}

.section_map_content .content .contacts_list li::before {
	position: absolute;
	top: 2px;
	left: 10px;
	width: 24px;
	height: 24px;
	font: 24px/24px 'FontAwesome';
	text-align: center;
}

.section_map_content .content .contacts_list li.address::before {
	content: '\f041';
}

.section_map_content .content .contacts_list li.phone::before {
	content: '\f095';
}

.section_map_content .content .contacts_list li.worktime::before {
	content: '\f017';
}

.section_map_content .content .btn_fill:hover {
	color: var(--color-primary);
}
.section_map_content .phone a,
.section_map_content .phone a:focus,
.section_map_content .phone a:hover,
.section_map_content .phone a:active {
	color: var(--color-text);
}
/**************************** /BODY *****************************/
/**************************** FOOTER ****************************/

.site_footer {
	background-color: var(--color-white);
	z-index: 500;
}

.site_footer .content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: space-between;
       -moz-justify-content: space-between;
        -ms-justify-content: space-between;
         -o-justify-content: space-between;
            justify-content: space-between;
	-ms-align-items: center;
		align-items: center;
	height: 100px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.site_footer .content .logo img {
	display: block;
	max-width: 270px;
	max-height: 70px;
}

.site_footer .content .phones {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: flex-end;
       -moz-justify-content: flex-end;
        -ms-justify-content: flex-end;
         -o-justify-content: flex-end;
            justify-content: flex-end;
	-ms-align-items: center;
		align-items: center;
}

.site_footer .content .phone {
	height: 29px;
	padding-left: 40px;
	font: bold 21px/29px 'Montserrat', sans-serif;
	background: url('../img/phone.png') no-repeat left center;
}

.site_footer .content .btn_empty {
	min-width: 170px;
	margin-left: 30px;
	color: var(--color-text);
}

.site_footer .content .btn_empty:hover {
	color: var(--color-white);
}

.site_footer .copy {
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
	background-color: var(--color-bg-light);
}

.site_footer .copy a {
	color: var(--color-primary);
}

.site_footer .copy a:hover {
	color: var(--color-text);
}

#scrollUp {
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    -webkit-transition: all 0s linear 0s;
       -moz-transition: all 0s linear 0s;
            transition: all 0s linear 0s;
}

#scrollUp:after {
    content: '\f106';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    font: 35px/50px 'FontAwesome';
    color: var(--color-white);
    text-align: center;
    background: var(--color-text);
    opacity: .25;
    -webkit-transition: opacity .1s linear 0s;
       -moz-transition: opacity .1s linear 0s;
            transition: opacity .1s linear 0s;
}

#scrollUp:hover:after {
    opacity: 1;
}

.fancybox-close-small {
	width: 40px;
	height: 40px;
}

.fancybox-close-small::after {
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	content: '\f00d';
	font: 20px/40px 'FontAwesome';
	text-align: center;
	color: rgba(0,0,0,.25);
	background: none;
}

.fancybox-close-small:hover::after {
	color: rgba(0,0,0,.5);
	background: none;
}

form input[type="submit"]:disabled,
form input[type="submit"]:disabled:hover,
form button[type="submit"]:disabled,
form button[type="submit"]:disabled:hover {
	color: var(--color-white) !important;
	-webkit-box-shadow: inset 0 0 0 35px var(--color-disabled) !important;
			box-shadow: inset 0 0 0 35px var(--color-disabled) !important;
}

/**************************** /FOOTER ***************************/
/**************************** RESPONSIVE ************************/

@media (max-width: 1599px) {



}

@media (max-width: 1439px) {



}

@media (max-width: 1279px) {



}

@media (max-width: 1199px) {
	header {
		padding-top: 40px;
	}
	.site_header {
		min-height: 0;
	}

	.site_header .content_block .bottom {
		height: auto;
		padding-top: 30px;
		padding-bottom: 70px;
	}

	.section_form .section_title {
		font-size: 44px;
		line-height: 50px;
	}

	.section_form .img_wrp {
		right: 50px;
	}

	.section_form .img_wrp img {
		width: 360px;
	}

	.section_price_table .one_table {
		padding-top: 40px;
		padding-left: 40px;
		padding-right: 40px;
	}

	.section_price_table .one_table .title {
		font-size: 26px;
	}

	.section_form2 .img_wrp {
		right: 30px;
	}

	.section_map_content {
		left: calc(50% - 460px);
	}

	/* Burger menu — overlay panel */
	.burger {
		display: block;
	}

	.site_header .nav_menu .menu {
		position: fixed;
		top: 0;
		right: 0;
		width: 320px;
		max-width: 85vw;
		height: 100%;
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		padding: 80px 0 40px;
		background: var(--color-overlay-solid);
		transform: translateX(100%);
		transition: transform 0.3s ease;
		z-index: 1500;
		overflow-y: auto;
	}

	.site_header .nav_menu .menu.open {
		transform: translateX(0);
	}

	.site_header .nav_menu .menu li {
		list-style: none;
	}

	.site_header .nav_menu .menu a {
		height: auto;
		padding: 16px 30px;
		font-size: 16px;
		line-height: 1.4;
		text-align: left;
		color: rgba(255, 255, 255, 0.85);
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.site_header .nav_menu .menu a:hover,
	.site_header .nav_menu .menu a.current {
		color: var(--color-white);
		background: rgba(255, 255, 255, 0.05);
	}

	.site_header .nav_menu .menu a::after {
		display: none;
	}

}

@media (max-width: 991px) {

	.site_header .content_block .top .logo img {
		max-width: 270px;
	}

	.site_header .content_block .top .btn_empty,
	.site_footer .content .btn_empty {
		margin-left: 20px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.site_header .content_block .bottom .main_title {
		margin-bottom: 30px;
		font-size: 50px;
		line-height: 60px;
	}

	.site_header .content_block .bottom .main_descr {
		margin-bottom: 40px;
		padding: 0;
		font-size: 18px;
		line-height: 32px;
	}

	.site_header .content_block .bottom {
		padding-bottom: 40px;
	}

	.section_title {
		font-size: 40px;
		line-height: 44px;
	}

	.section_window_automation-el video {
		height: auto;
	}

	.services_list .one_service img {
		width: 90px;
		height: auto;
	}

	.services_list .one_service .service_title {
		margin-bottom: 10px;
		font-size: 18px;
		line-height: 26px;
	}

	.adv_list .one_adv {
		width: calc((100% - 30px) / 2);
	}

	.adv_list .one_adv:not(:nth-child(4n)) {
		margin-right: auto;
	}

	.adv_list .one_adv:not(:nth-child(2n)) {
		margin-right: 30px;
	}

	.adv_list .one_adv .number_wrp {
		margin-bottom: 20px;
	}

	.section_form .img_wrp {
		display: none;
	}

	.section_form .form_wrp {
		padding: 0;
	}

	.portfolio_grid {
		width: 554px;
		margin-left: auto;
		margin-right: auto;
	}

	.section_price {
		padding-bottom: 0;
	}

	.section_price .section_head {
		margin-bottom: 60px;
	}

	.section_price_table {
	    -webkit-flex-wrap: wrap;
	       -moz-flex-wrap: wrap;
	        -ms-flex-wrap: wrap;
	         -o-flex-wrap: wrap;
	            flex-wrap: wrap;
	}

	.section_price_table .one_table {
		width: 100%;
		margin-bottom: 10px;
	}

	.section_price_table .one_table.marked {
		-webkit-transform: scale(1);
		    -ms-transform: scale(1);
			 -o-transform: scale(1);
				transform: scale(1);
	}

	.features_list .features_box {
		width: 100%;
	}

	.features_list .features_box_head .title {
		padding-left: 10px;
		font-size: 20px;
		line-height: 28px;
	}

	.section_features .btn_fill {
		margin-top: 10px;
	}

	.section_map_content {
		left: calc(50% - 360px);
	}

	.section_map_content .content .title {
		margin-bottom: 30px;
		font-size: 32px;
		line-height: 32px;
	}
    
}

@media (max-width: 767px) {

	.site_header .content_block .top,
	.site_header .content_block .top .phones,
	.features_list,
	.site_footer .content,
	.site_footer .content .phones {
		-webkit-flex-direction: column;
		   -moz-flex-direction: column;
			-ms-flex-direction: column;
			 -o-flex-direction: column;
				flex-direction: column;
	}

	.site_header .content_block .top {
		height: auto;
		padding-top: 25px;
	}

	.site_header .content_block .top .logo,
	.site_footer .content .logo {
		margin-bottom: 15px;
	}

	.site_header .content_block .top .phone,
	.site_footer .content .phone {
		margin-bottom: 15px;
		padding-left: 0;
		background: none;
	}

	.site_header .content_block .top .btn_empty,
	.site_footer .content .btn_empty {
		margin-left: 0;
	}

	.section_head {
		margin-bottom: 60px;
	}

	.section_features .section_head {
		margin-bottom: 50px;
	}

	.services_list .one_service {
		width: calc(100% - 30px);
	}

	.services_list .one_service:not(:nth-child(3n)) {
		margin-right: auto;
	}

	.services_list .one_service:not(:nth-child(2n)) {
		margin-right: 30px;
	}

	.section_testimonials .testimonials_frame {
		padding: 40px;
	}

	.section_testimonials .testimonials_frame::before,
	.section_testimonials .testimonials_frame::after {
		display: none;
	}

	.section_testimonials .one_testimonial .content {
		padding-bottom: 90px;
	}

	.section_price_table blockquote {
		font-size: 14px;
		line-height: 20px;
	}

	.features_list .features_box {
		width: 100%;
		padding-right: 30px;
	}

	.steps_list li {
		width: calc((100% - 50px)/2);
	}

	.steps_list li:not(:nth-child(3n))::after {
		display: none;
	}

	.section_map {
		height: auto;
	}

	.section_map_content {
		position: relative;
		width: auto;
		top: 0;
		left: 0;
	}

	.section_map_content .content {
		background-color: var(--color-bg-light);
		-webkit-box-shadow: none;
				box-shadow: none;
	}
	
	.section_map_content .content .btn_fill {
		width: 470px;
		margin-left: auto;
		margin-right: auto;
	}

	.site_footer {
		padding-top: 15px;
	}

	.site_footer .content {
		height: auto;
		padding-bottom: 30px;
	}

}

@media (max-width: 639px) {

	.site_header .content_block .bottom .main_title {
		font-size: 44px;
		line-height: 54px;
	}

	.site_header .content_block .bottom .btn_fill,
	.section_advantages .btn_fill,
	.section_window_automation .btn_fill,
	.section_features .btn_fill,
	.section_map_content .content .btn_fill {
		width: 100%;
	}

	.site_header .content_block .bottom .btn_fill {
		margin-bottom: 20px;
	}

	.site_header .scroll_downs {
		display: none;
	}

	.section {
		padding-top: 50px;
		padding-bottom: 60px;
	}

	.section_services {
		padding-bottom: 30px;
	}

	.adv_list .one_adv .adv_title {
		font-size: 16px;
		line-height: 24px;
	}

	.adv_list .one_adv .number_wrp {
		width: 180px;
		height: 180px;
		font-size: 60px;
		line-height: 180px;
		-webkit-background-size: 180px 180px;
		background-size: 180px 180px;
	}

	.section_form .form_frame {
		padding: 30px;
	}

	.section_form .section_title {
		font-size: 40px;
		line-height: 44px;
	}

	.portfolio_grid {
		width: 440px;
	}

	.portfolio_grid .grid_sizer,
	.portfolio_grid .grid_item {
		width: 205px;
	}

	.portfolio_grid .grid_item_width2 {
		width: 440px;
	}

	.section_clients .section_head {
		margin-bottom: 40px;
	}

	.section_testimonials .one_testimonial {
		-webkit-flex-direction: column;
		   -moz-flex-direction: column;
			-ms-flex-direction: column;
			 -o-flex-direction: column;
				flex-direction: column;
	}

	.section_testimonials .testimonials_frame {
		padding: 30px;
	}

	.section_testimonials .one_testimonial .img {
		margin-bottom: 15px;
	}

	.section_testimonials .one_testimonial .img img {
		width: 150px;
	}

	.section_testimonials .one_testimonial .content {
		padding-left: 0;
		font-size: 16px;
		line-height: 24px;
	}

	.section_price_table .one_table {
		padding-bottom: 120px;
	}

	.section_price_table .one_table .btn {
		bottom: 40px;
		left: 40px;
		width: calc(100% - 80px);
	}

	#yandex_map {
		height: 480px;
	}
	
}

@media (max-width: 479px) {

	.site_header .content_block .bottom .main_title {
		font-size: 26px;
		line-height: 30px;
		margin-bottom: 20px;
	}

	.btn_fill {
		height: 55px;
		padding-left: 10px;
		padding-right: 10px;
		font-size: 15px;
		line-height: 55px;
	}

	.site_header .content_block .bottom .main_descr {
		font-size: 16px;
		line-height: 24px;
	}

	.site_header .content_block .bottom .main_descr {
		margin-bottom: 30px;
	}

	.site_header .content_block .bottom {
		padding-top: 20px;
		padding-bottom: 25px;
	}

	.section_title {
		font-size: 32px;
		line-height: 36px;
	}

	.services_list .one_service {
		width: 100%;
		margin-bottom: 30px;
	}

	.services_list .one_service:not(:nth-child(2n)),
	.adv_list .one_adv:not(:nth-child(2n)) {
		margin-right: auto;
	}

	.services_list .one_service img {
		width: 80px;
		margin-bottom: 15px;
	}
	
	.adv_list .one_adv {
		width: 100%;
		margin-bottom: 40px;
	}

	.adv_list .one_adv .number_wrp {
		margin-bottom: 15px;
	}

	.section_head {
		margin-bottom: 40px;
	}

	.section_form {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.section_form .form_frame {
		padding: 20px;
	}

	.section_form .section_title {
		font-size: 30px;
		line-height: 32px;
	}

	.section_form .form_wrp .field input[type="text"],
	.section_form .form_wrp .field input[type="tel"] {
		height: 50px;
		line-height: 50px;
	}

	.section_form .form_wrp .field button[type="submit"] {
		height: 60px;
		font-size: 16px;
		line-height: 60px;
	}

	.portfolio_grid {
		width: 280px;
	}

	.portfolio_grid .grid_sizer,
	.portfolio_grid .grid_item {
		width: 280px;
	}

	.section_testimonials .one_testimonial {
		padding-top: 2px;
		padding-left: 2px;
	}

	.clients_list .one_client {
		height: 350px;
	}

	.clients_list .one_client img {
		max-height: 350px;
	}

	.section_clients .owl-nav {
		top: 25px;
	}

	.section_testimonials .testimonials_frame {
		padding: 20px;
	}

	.section_price_table .one_table {
		padding-top: 30px;
		padding-left: 30px;
		padding-right: 30px;
	}

	.section_price_table .one_table .title {
		font-size: 24px;
		padding-bottom: 20px;
	}

	.section_price_table .one_table .price {
		font-size: 22px;
	}

	.features_list .features_box_head .img {
		width: 100px;
	}

	.features_list .features_box {
		padding-right: 15px;
	}

	.features_list .features_box_head .img img {
		width: 90px;
		height: auto;
	}

	.features_list .features_box_head .title {
		font-size: 18px;
		line-height: 24px;
	}

	.steps_list li {
		width: 100%;
	}

	.steps_list li img {
		width: 120px;
		height: auto;
	}

	.popup, .response_message {
		width: 280px;
	}

}

/**************************** /RESPONSIVE ***********************/