body {
	font-family: 'Montserrat';
	font-weight:500;
	line-height:initial;
	color:var(--black);
	font-size:14px;
}
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}
input:hover,
input:active,
input:focus,
a:hover,
a:active,
a:focus,
button:hover,
button:active,
button:focus,
textarea:hover,
textarea:active,
textarea:focus {
	outline:none;
}
a,
a:hover {
    text-decoration: none;
}

:root {
	--black:#1A1A1A;
	--green:#00D084;
	--green_h:#00A166;
	--t:0.2s ease
}
.btn {
	color:#fff;
	display:flex;
	justify-content:center;
	align-items:center;
	border-radius:8px;
	background:var(--green);
	transition:background var(--t);
}
.btn:hover {
	background:var(--green_h);
	color:#fff;
}
.indent {
	padding:80px 0 0;
}
.title {
	text-align:center;
	padding:0 0 32px;
	display:flex;
	align-items:center;
	flex-direction:column;
}
.title > span {
	display:inline-flex;
	align-items:center;
	padding:8px 16px;
	border-radius:6px;
	background:#D9F8ED;
	margin:0 0 8px;
	color:var(--green);
}
.title > span i {
	margin:0 8px 0 0;
	background:url(img/title_i.svg) center no-repeat;
	width:9px;
	min-width:9px;
	height:17px;
	display:block;
}
.title h2,.title h1 {
	font-size:32px;
	font-family: 'Nunito Sans';
	font-weight:bold;
	margin:0;
	letter-spacing: 1px;
	text-transform:uppercase;
}
.title h2 > span,.title h1 > span {
	color:var(--green_h);
}
.title p {
	text-align:center;
	margin:8px 0 0;
}
.row {
	margin:0 -8px -16px;
	width:calc(100% + 16px);
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
}
.row_item {
	padding:0 8px 16px;
}

/* ------ ------ header ------ ------ */

body {
	padding-top:60px;
}
header {
	position:fixed;
	left:0;
	right:0;
	top:0;
	background:#fff;
	z-index:999;
	border-bottom:1px solid #E5E5E5;
}
.header_in {
	display:flex;
	align-items:center;
	padding:10px 0;
	justify-content:space-between;
}
.logo a {
	display:flex;
	font-family: 'Prosto One';
	font-size:16px;
	color:var(--black);
	align-items:center;
    letter-spacing: -0.3px;
}
.logo:hover {
	color:var(--black);
}
.logo img {
	margin:0 5px 0 0;
}
.header_info {
	display:flex;
	align-items:center;
}
.header_phone {
	margin:0 4px 0 0;
	flex-direction:column;
	text-align:right;
	min-width:180px;
}
.header_phone p {
	font-size:12px;
	margin:0 0 2px;
}
.header_phone a {
	font-size:18px;
	font-weight:500;
	color:var(--black);
	transition:color var(--t)
}
.header_phone a:hover span {
	color:var(--green_h);
}
.header_phone img {
	display:none;
}
.header_mes,
.footer_mes {
	display:flex;
}
.header_mes a,
.footer_mes a {
	width:40px;
	display:block;
	min-width:40px;
	margin:0 4px;
	height:40px;
	background:#B1F0DA;
	border-radius:8px;
	position:relative;
	transition:background var(--t);
}
.header_mes a img,
.footer_mes a img {
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	margin:auto;
	transition:opacity var(--t);
}
.header_mes a img:first-child,
.footer_mes a img:first-child {
	opacity:1;
}
.header_mes a img:last-child,
.footer_mes a img:last-child {
	opacity:0;
}
.header_mes a:hover img:first-child,
.footer_mes a:hover img:first-child {
	opacity:0;
}
.header_mes a:hover img:last-child,
.footer_mes a:hover img:last-child {
	opacity:1;
}
.header_modal {
	margin:0 0 0 4px;
}
.header_modal a {
	width:158px;
	height:40px;
	min-width:158px;
}

.header_in nav{
	display:flex;
	justify-content:center;
}
.header_in nav ul {
    padding: 0;
    margin: 0;
    display: flex;
	align-items:center;
}
.header_in nav li {
    list-style: none;
	margin:0 8px;
}
.header_in nav li.ch a {
	padding:3px 4px;
	border:1px solid #E5E5E5;
	border-radius:4px;
	font-family: 'Quintessential';
}
.header_in nav li.ch a:hover {
	
}
.header_in nav a {
    display: block;
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
	transition:color var(--t);
}
.header_in nav a:hover {
    color: var(--green_h);
}

.header_nav_btn {
    display: none;
    width: 32px;
    height: 32px;
    position: relative;
}
.header_nav_btn div,
.header_nav_btn:after,
.header_nav_btn:before {
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--green);
    transition: all var(--t);
    left: 0;
    right: 0;
    margin: auto;
    content: "";
    display: block;
    border-radius: 10px;
}
.header_nav_btn div {
    top: 0;
    bottom: 0;
	opacity:0.5;
	width:20px;
	left:-3px;
}
.header_nav_btn:after {
    top: 8px;
}
.header_nav_btn:before {
    bottom: 8px;
	width:16px;
	left:-7px;
}
.header_nav_btn.active {
}
.header_nav_btn.active div {
    transform: rotate(-45deg);
    bottom: initial;
    top: 16px;
	left:0;
	opacity:1;
	width:24px;
}
.header_nav_btn.active:before,
.header_nav_btn.active:after {
    transform: rotate(45deg);
    bottom: initial;
    top: 16px;
	left:0;
	width:24px;
}

/* ------ ------ header_mobile ------ ------ */

.header_mobile {
	display:none;
}
.header_mobile .container {
	position:relative;
	z-index:2;
}
.header_mobile nav {
	padding:0 0 20px;
}
.header_mobile nav ul {
	display:flex;
	flex-direction:column;
	padding:0;
	margin:0;
}
.header_mobile nav ul li {
	list-style:none;
	margin:0 0 12px 0;
}
.header_mobile nav ul li.ch,
.footer_center ul li.ch {
	display:none;
}
.header_mobile nav ul a {
	font-size:14px;
	color:var(--black);
	transition:color var(--t);
}
.header_mobile nav ul a:hover {
	color:var(--green_h);
}
.header_mobile_soc,
.footer_soc {
	display:flex;
}
.header_mobile_soc a,
.footer_soc a {
	width: 40px;
    display: block;
    min-width: 40px;
    margin: 0 8px 0 0;
    height: 40px;
    background: #B1F0DA;
    border-radius: 8px;
    position: relative;
    transition: background var(--t);
}
.header_mobile_soc a:hover,
.footer_soc a:hover {

}
.header_mobile_soc a img,
.footer_soc a img {
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	margin:auto;
	transition:opacity var(--t);
}
.header_mobile_soc a img:first-child,
.footer_soc a img:first-child {
	opacity:1;
}
.header_mobile_soc a img:last-child,
.footer_soc a img:last-child {
	opacity:0;
}
.header_mobile_soc a:hover img:first-child,
.footer_soc a:hover img:first-child {
	opacity:0;
}
.header_mobile_soc a:hover img:last-child,
.footer_soc a:hover img:last-child {
	opacity:1;
}
.header_mobile_phone,
.footer_phone {
	font-size:18px;
	color:var(--black);
	text-decoration:underline;
	transition:0.2s var(--t);
	margin:0 0 12px;
	display:inline-flex;
}
.header_mobile_phone:hover,
.footer_phone:hover {
	color:var(--gren_h);
}
.header_mobile_info,
.footer_info {
	display:flex;
	margin:0 0 4px;
	flex-direction:column;
}
.header_mobile_time,
.footer_time {
	font-size:12px;
	color:#454545;
}
.header_mobile_modal {
	padding:32px 0 0;
	display:flex;
}
.header_mobile_modal a {
	width:340px;
	height:54px;
	font-size:18px;
	font-weight:500;
}

/* ------ ------ hero ------ ------ */

.hero {
	background:url(img/hero_bg.webp) center / cover no-repeat;
	padding:88px 0 60px;
}
.hero .container {
	display:flex;
}
.hero_text_top {
	margin:0 0 20px;
	padding:8px;
	color:var(--green_h);
	background:#EBF6FF;
	display:inline-flex;
	border-radius:6px;
}
.hero_title {
	margin:0 0 20px;
}
.hero_title h1 {
	font-size:36px;
	text-transform:uppercase;
	margin:0;
	line-height: 40px;
	font-family: 'Prosto One';
}
.hero_text {
	margin:0 0 48px;
	font-size:18px;
}
.hero_btns {
	display:flex;
}
.hero_btn {
	width:216px;
	height:54px;
	margin:0 12px 0 0;
	font-size:18px;
}
.hero_btn_service {
	border:1px solid var(--green);
	width:182px;
	height:54px;
	font-size:18px;
	background:transparent;
	color:var(--green);
}
.hero_btn_service:hover {
	border:1px solid var(--green_h);
	color:var(--green_h);
	background:transparent;
	transition:color var(--t),border var(--t);
}
.hero_img {
	position:relative;
}
.hero_img img {
    position: relative;
    right: -54px;
}

/* ------ ------ services ------ ------ */

.services {
	
}
.services_row {
	margin:0 -10px -20px;
	width:calc(100% + 20px);
}
.services_item {
	width:50%;
	padding:0 10px 20px;
}
.service {
	border:1px solid var(--green);
	border-radius:16px;
	padding:24px;
	position:relative;
	height:360px;
	background:#fff;
	transition:background var(--t);
	display:flex;
	flex-direction:column;
}
.service:hover {
	background:#F4FDFA;
}
.service:after {
	position:absolute;
	background:var(--green);
	width:6px;
	height:100px;
	position:absolute;
	content:'';
	display:block;
	left:-6px;
	top:16px;
	border-radius:10px 0 0 10px;
}
.service_title,
.service_list,
.service_btn {
	position:relative;
	z-index:2;
}
.service_title {
	margin:0 0 20px;
}
.service_title h3 {
	font-family: 'Prosto One';
	font-size:18px;
	margin:0;
}
.service_list {

}
.service_list ul {
	padding:0;
	margin:0;
	max-width:320px;
}
.service_list ul li {
	position:relative;
	list-style:none;
    padding: 0 0 2px 21px;
}
.service_list ul li:before {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    position: absolute;
    background: var(--black);
    border-radius: 10px;
    left: 9px;
    top: 9px;
}
.service_btn {
	margin-top:auto;
}
.service_btn a {
	width:144px;
	height:40px;
}
.service_img {
	position:absolute;
	right:0;
	bottom:0;
}

/* ------ ------ econom ------ ------ */

.econom_in {
	background:#EBF6FF;
	padding:40px;
	border-radius:16px;
	display:flex;
	
}
.econom_in .title {
	text-align:left;
	padding: 0 0 26px;
}
.econom_in .title h2 {
	font-size:22px;
}
.econom_img {
    padding: 0 10px 0 0;
	display:flex;
	align-items:center;
}
.econom_img img {
	width:290px;
}
.econom_content {
	display:flex;
	flex-direction:column;
}
.econom_in p {
	margin:0 0 16px;
}
.econom_in ul {
	padding:0;
	margin:0 0 16px;
}
.econom_in ul li {
	position:relative;
	list-style:none;
    padding: 0 0 2px 21px;
}
.econom_in ul li:before {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    position: absolute;
    background: var(--black);
    border-radius: 10px;
    left: 9px;
    top: 9px;
}
.econom_in p {
	
}
.econom_in a {
	margin:16px 0 0;
	color:var(--green);
	text-decoration:underline;
	transition:color var(--t);
}
.econom_in a:hover {
	color:var(--green_h);
}

/* ------ ------ step ------ ------ */

.steps {

}
.steps_item {
	width:20%;
}
.step {
	position:relative;
	border-radius:8px;
	background:#D9F8ED;
	height:100%;
	padding:16px 20px;
}
.step:after {
	position:absolute;
	background:var(--green);
	width:6px;
	height:80px;
	position:absolute;
	content:'';
	display:block;
	left:-6px;
	top:16px;
	border-radius:10px 0 0 10px;
}
.step_num {
	margin:0 0 12px;
	width:48px;
	min-width:48px;
	height:48px;
	background:#fff;
	border-radius:100px;
	display:flex;
	justify-content:center;
	align-items:center;
	color:var(--green_h);
	font-size:28px;
	font-family: 'Prosto One';
}
.step_title {
	margin:0 0 12px;
}
.step_title h3 {
	font-family: 'Prosto One';
	margin:0;
	font-size:16px;
}
.step_text {
	font-weight:400;
	font-family: 'Nunito Sans';
}
.steps_btn {
	display:flex;
	justify-content:center;
	padding:32px 0 0;
}
.steps_btn a {
	width:216px;
	height:54px;
	font-size:18px;
}

/* ------ ------ reliable ------ ------ */

.reliable {

}
.reliable_in {
	padding:80px 0;
	background:#EBF6FF;
}
.reliable_row {
	margin:0 -12px -24px;
	width:calc(100% + 24px);
}
.reliable_item {
	width:20%;
	padding:0 12px;
}
.reliable_item_in {
	border-radius:8px;
	background:#fff;
	height:100%;
	padding:16px;
	display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.reliable_ico {
	display:flex;
	flex-direction:column;
	align-items:center;
	width:56px;
	height:56px;
	border-radius:100px;
	background:#D9F8ED;
	display:flex;
	justify-content:center;
	align-items:center;
	margin:0 0 12px;
}
.reliable_ico img {
	
}
.reliable_text {
	
}

/* ------ ------ brands ------ ------ */

.brands {
	
}
.brands_item {
	width:16.6%;
}
.brand {
	border: 1px solid #E5E5E5;
	border-radius:8px;
	height:100px;
	display:flex;
	justify-content:center;
	align-items:center;
	padding:10px;
}
.brands_item img {
	max-width:100%;
	max-height:100%;
}

/* ------ ------ partners ------ ------ */

.partners {
	
}
.partners_item {
	width:16.6%;
}
.partner {
	border: 1px solid #E5E5E5;
	border-radius:8px;
	height:100px;
	display:flex;
	justify-content:center;
	align-items:center;
	padding:10px;
}
.partners_item img {
	max-width:100%;
	max-height:100%;
}

/* ------ ------ about ------ ------ */

.about {
	display:flex;
}
.about_row {
	display:flex;
	margin:0 -12px;
	justify-content:space-between;
}
.about_text,
.about_img {
	width:calc(50% - 12px);
}
.about_text {
	
}
.about_text p {
	margin:0 0 16px;
}
.about_text a {
	color:var(--black);
	text-decoration:underline;
	transition:color var(--t);
}
.about_text a:hover {
	color:var(--green_h);
}
.about_text p:last-child {
	margin:0;
}
.about_img {
	overflow:hidden;
}
.about_img img {
	height:100%;
	border-radius:8px;
	object-fit:cover;
}
.map_big {
	display:block;
}
.map_big img {
	border:1px solid #E5E5E5;
	border-radius:8px;
	max-width:100%;
	height:auto;
}
.map_mini {
	font-size:12px;
	display:none;
}
.map_mini img {
	border:1px solid #E5E5E5;
	border-radius:8px;
	margin:0 0 16px;
	width:100%;
	height:auto;
}
.map_mini p {
	margin:0;
	display:flex;
	flex-wrap:wrap;
}
.map_mini span {
	margin:0 10px 0 0;
}

/* ------ ------ form ------ ------ */

.form {
	
}
.form_in {
	background:url(img/form_img.png) left bottom no-repeat #D9F8ED;
	padding:40px;
	border-radius:16px;
	display:flex;
}
.form_in .inputs {
	display:flex;
	margin:25px 0 0;
	flex-direction:column;
}
.form_info {
	width:550px;
	min-width:550px;
	margin:0 16px 0 0;
}
.form_info .title {
	text-align:left;
	align-items:start;
	padding:0 0 20px;
}
.form_info .title h2 {
	font-size:22px;
}
.form_info_text {
	margin:0 0 20px;
}
.form_info_row {
	margin:0 0 0 264px;
}
.form_info_phone,
.form_info_email {
	margin:0 0 12px 0;
}
.form_info_phone a,
.form_info_email a {
	display:flex;
	align-items:center;
	transition:color var(--t);
	color:#454545;
}
.form_info_phone span,
.form_info_email span {
	margin:0 0 0 8px;
	text-decoration:underline;
}
.form_info_phone a:hover,
.form_info_email a:hover {
	color:var(--green_h);
}
.form_inputs {
	width:100%;
}
.form_checkbox {
	display:flex;
}
.form_checkbox > div {
	margin:0 16px 0 0;
	font-weight:400;
}
.form_checkbox > div:last-child {
	margin:0;
}
.form_checkbox > div i {
	width:24px;
	min-width:24px;
	height:24px;
	border-radius:100px;
	position:relative;
	background:#fff;
	margin:0 8px 0 0;
	border:1px solid var(--green);
}
.form_checkbox > div i:after {
	position:absolute;
	left:-1px;
	right:0;
	top:-1px;
	bottom:0;
	content:'';
	display:block;
	width:24px;
	min-width:24px;
	height:24px;
	opacity:0;
	border-radius:100px;
	border:9px solid var(--green);
	transition:opacity var(--t);
}
.form_checkbox > div.active i:after {
	opacity:1;
}
.form_checkbox > div span {
	display:flex;
	cursor:pointer;
	align-items:center;
}
.input_row {
	margin:0 -4px;
	display:flex;
}
.input {
	width:100%;
	padding:0 0 8px;
}
.input_row .input {
	width:50%;
	padding:0 4px 8px;
}
.input input {
	display:block;
	background:transparent;
	border:1px solid var(--green);
	color:var(--black);
	height:54px;
	width:100%;
	font-size:14px;
	border-radius:8px;
	padding:0 16px;
	transition:border 0.2s ease;
}
.input input::placeholder {
	color: #454545;
}
.input input:focus,
.input input:active {
	border:1px solid var(--green_h);
}
.form .submit {
	width:100%;
	margin:20px 0 0;
	position:relative;
}
.form p,
.form .submit p,
.inputs p {
	margin:0;
}

.submit input {
	padding:0;
	border-radius:8px;
	cursor:pointer;
	color:#fff;
	height:54px;
	width:100%;
	background:var(--green);
	cursor:pointer;
	font-size:18px;
	font-weight:500;
	border:0;
	transition:background var(--t);
}
.submit input:hover {
	background:var(--green_h);
}
.wpcf7-not-valid-tip {
}
.wpcf7-spinner {
	left:0;
	position:absolute !important;
}
.polit {
	margin:24px 0 0;
	font-size:12px;
	cursor:pointer;
	display:flex;
}
.polit > p {
	display:none;
}
.polit > div > p {
	display:flex;
	align-items:center;
	margin:0;
}
.polit i {
	min-width:24px;
	widtH:24px;
	height:24px;
	background-color:#fff;
	margin:0 14px 0 0;
	display:block;
	border-radius:3px;
	position:relative;
	transition:border 0.5s ease,background 0.5s ease;
}
.polit.active i {

}
.polit i:after {
	background:url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 9.4721L7.47222 12.9443L14.4167 5.99988" stroke="%2300D084" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat;
	background-position:center;
	width:24px;
	height:24px;
	opacity:0;
	display:block;
	content:'';
	transition:opacity 0.5s ease;
}
.polit.active i:after {
	opacity:1;
}
.polit a {
	text-decoration:underline;
	color:var(--blue);
}
.polit a:hover {
	text-decoration:none;
}
.file {
	margin:16px 0 24px;
	overflow:hidden;
}
.file input,
.form_checkbox > p {
	display:none;
}
.file_in {
	display:flex;
	align-items:center;
	color:var(--green);
	cursor:pointer;
	transition:color var(--t);
}
.file_in img {
	margin:0 8px 0 0;
}
.file_in span {
	text-decoration:underline;
}
.file_in:hover {
	color:var(--green_h);
}

.sended {
	display:none;
	padding:30px 50px;
	background:#fff;
	width:500px;
	border-radius:20px;
}
.sended_title {
	text-align:center;
	padding:0 0 16px;
}
.sended_title h2 {
}
.sended_txt {
	text-align:center;
	font-size:16px;
	font-weight:600;
	color:#444444;
}
.sended_btn {
    margin: 30px auto 0;
    display: flex;
    text-align: center;
    width: 200px;
	height:54px;
}
.form_hidden {
	display:none;
}
.form_hidden input {
	max-width:100%;
}

/* ------ ------ footer ------ ------ */

footer {
	
}
.footer_in {
	padding:48px 0 40px;
	background:#F4FDFA;
}
.footer_in .container {
	position:relative;
	display:flex;
	justify-content:space-between;
}
.footer_in .container > div {
	width:33.33%;
}
.footer_in {
	
}
.footer_left {
	display:flex;
	flex-direction:column;
}
.footer_polit {
	margin-top:auto;
}
.footer_polit a,
.footer_polit_mobile a {
	color:#454545;
	font-size:12px;
	text-decoration:underline;
	transition:color var(--t);
}
.footer_polit_mobile {
	display:none;
}
.footer_polit a:hover,
.footer_polit_mobile a:hover {
	color:var(--green_h);
}

.footer_center {
	padding:0 30px;
}
.footer_center ul {
	padding:0;
	margin:0 0 -12px;
}
.footer_center li {
	list-style:none;
	margin:0 0 12px;
}
.footer_center li:last-child {

}
.footer_center li a {
	color:var(--black);
	transition:color var(--t);
}
.footer_center li a:hover {
	color:var(--green_h);
}
.to_top {
    position: absolute;
    right: 15px;
    top: 0;
}

/* ------ ------ ch_hero ------ ------ */

.ch_hero {
	padding:32px 0 0;
	background:transparent;
}
.ch_hero img {
	border-radius:8px;
	max-width:100%;
	margin:0 0 32px;
}
.ch_hero_text p {
	margin:0 0 10px
}
.ch_hero_text p:last-child {
	margin:0;
}
.ch_hero_text {
	padding:0 0 32px;
}
.ch_hero_btn {
	display:flex;
	justify-content:center;
}
.ch_hero_btn a {
	width:132px;
	font-size:18px;
	height:54px;
}

/* ------ ------ index ------ ------ */

.index {
	padding:32px 0 0;
}
.index_text p {
	margin:0 0 10px
}
.index_text {
	padding:0 0 32px;
}

/* ------ ------ 1300 ------ ------ */

@media all and (max-width: 1300px) {
	.hero_img img {
		right:0;
	}
}

/* ------ ------ 1199 ------ ------ */

@media all and (max-width: 1199px) {
    .header_nav_btn {
        display: block;
		margin:0 0 0 8px;
    }
    .header_in nav li:not(.ch) {
		display:none;
    }
	.header_top {
		display:none;
	}
	.logo {
		margin:0 auto 0 0;
	}
	.header_mobile {
		position:fixed;
		display:block;
		top:58px;
		width:100%;
		left:-100%;
		z-index:10002;
		background:#fff;
		border-radius:0 0 16px 16px;
		padding:32px 0;
	}
	.header_mobile:after {
		position:absolute;
		left:0;
		right:0;
		top:0;
		bottom:0;
		border-radius:0 0 16px 16px;
		background:var(--orange);
		opacity:0.06;
		content:'';
	}
	.header_mobile.active {
		left:0;
	}
	body.open_menu {
		overflow:hidden;
	}
	.header_in {
		padding:10px 0;
	}
	body {
		padding:52px 0 0;
	}
	.header_phone {
		margin:0 2px 0 0;
	}
	.header_phone a {
		width:32px;
		min-width:32px;
		height:32px;
		display: block;
		background: #fff;
		border-radius: 8px;
		margin:0;
		border: 1px solid var(--orange);
		position: relative;
		transition: background var(--t);
	}
	.header_phone a span,
	.header_phone a p 	{
		display:none;
	}
	.header_phone img {
		display: block;
		position:absolute;
		left:0;
		right:0;
		top:0;
		bottom:0;
		margin:auto;
	}
	.header_mes,
	.header_modal {
		display:none;
	}
	.header_mobile {
		top:48px;
	}
	body {
		padding:48px 0 0;
	}
	.header_phone {
		width:32px;
		min-width:unset;
	}
	.logo a img {
		height:28px;
		width:auto;
	}
	.header_mobile nav ul {
		flex-direction:column;
	}
	.hero_title h1 br {
		display:none;
	}
	.hero_title h1 {
		font-size: 32px;
	}
	.hero_img img {
		width:300px;
	}
	.hero_img {
		display:flex;
		align-items:end;
	}
	.service {
		padding-bottom:130px;
	}
	.service_img {
		height:200px;
		bottom:-12px;
	}
	.service_img img {
		max-height:200px;
	}
	.service_btn {
		margin:16px 0 0;
	}
	.steps_item {
		width:33.33%;
	}
	.form_info {
		width:400px;
		min-width:400px;
		margin:0 16px 0 0;
	}
	.form_info_row {
		margin: 0 0 0 200px;
	}
	.form_info_phone, .form_info_email {
		margin: 0 0 12px 0;
	}
}
/* ------ ------ 991 ------ ------ */

@media all and (max-width: 991px) {
	.hero .container {
		flex-direction:column;
	}
	.hero {
		padding:32px 0 0;
		overflow:hidden;
	}
	.hero_img {
		margin-bottom:-40px;
		display:flex;
		justify-content:center;
	}
	.service {
		padding:15px 15px 130px;
	}
	.indent {
		padding:50px 0 0;
	}
	.reliable_in {
		padding:50px 0;
	}
	.econom_in {
		flex-direction:column;
	}
	.econom_img {
		justify-content:center;
		margin:24px 0 0;
	}
	.econom_img img {
		width:200px;
	}
	.title h2,.title h1 {
		font-size:28px;
	}
	.reliable_item {
		width:33.33%;
		padding:0 12px 24px;
	}
	.brands_item,.partners_item {
		width: 20%;
		padding: 0 4px 8px;
	}
	.brands_row,.partners_row {
		margin: 0 -4px -8px;
		width: calc(100% + 8px);
	}
	.about_row {
		flex-direction:column;
	}
	.about_img {
		width:100%;
		height:290px;
		padding:24px 0 0;
	}
	.about_img img {
		width:100%;
	}
	.about_text {
		widtH:100%;
	}
	.about_row {
		margin:0;
	}
	.form_in {
		flex-direction:column;
		padding:24px 15px 240px 15px;
		background-size: 333px;
	}
	.form_info {
		min-width:unset;
		width:100%;
		margin:0 0 24px;
	}
	.form_info_row {
		display:flex;
		margin:0;
	}
	.form_info_phone, 
	.form_info_email {
		margin:0;
	}
	.form_info_phone {
		margin:0 12px 0 0;
	}
}

/* ------ ------ 767 ------ ------ */

@media all and (max-width: 767px) {
    .hero_title h1 {
        font-size: 22px;
    }
	.hero_text {
		font-size:14px;
	}
	.hero_text br {

	}
	.services_item {
		width: 100%;
		padding:0 0 8px;
	}
	.service {
		height:auto;
	}
	.services_row {
		margin:0;
		width:100%;
	}
	.econom_in {
		padding:40px 20px 20px;
	}
	.title h2,.title h1 {
		font-size:22px;
	}
	.step {
		padding:8px 15px 12px;
	}
	.steps_item {
        width: 100%;
    }
	.step_top {
		display:flex;
		margin:0 0 8px;
		align-items:center;
	}
	.step_num {
		margin:0 12px 0 0;
	}
	.step_title {
		margin:0;
	}
	.steps_row {
		margin:0;
		width:100%;
	}
	.step:after {
		height:48px;
	}
	.steps_item {
		padding:0 0 8px;
	}
	.steps_btn {
		padding: 16px 0 0;
	}
	.step_title h3 {
		font-size:14px;
	}
	.brands_item,.partners_item {
		width: 25%;
	}
	.about_img {
		height:190px;
	}
	.footer_in .container {
		flex-direction:column;
	}
	.footer_in .container > div {
		width:100%;
	}
	.footer_center {
		padding:24px 0;
	}
	.footer_polit_mobile {
		display:block;
		margin:24px 0 0;
	}
	.footer_in {
		padding:32px 0;
	}
	.footer_polit {
		display:none;
	}
}

/* ------ ------ 576 ------ ------ */

@media all and (max-width: 576px) {
	.logo a {
		font-size: 14px;
	}
	footer .logo a {
        font-size: 16px;
    }
	.hero_btn_service {
		display:none;
	}
	.hero_btn {
		width:100%;
		margin:0;
	}
    .hero_title h1 {
        line-height: initial;
    }
	.econom_in {
		margin:0 -15px;
		border-radius:0;
	}
	.title h2,.title h1 {
		font-size:18px;
	}
	.reliable_row {
		flex-direction:row;
		padding:0 0 24px;
		margin:0;
		overflow:auto;
		flex-wrap:nowrap;
		justify-content:start;
		width:100%;
	}
	.reliable_item:first-child {
		padding-left:0;
	}
	.reliable_row::-webkit-scrollbar {
		height: 4px;
	}
	.reliable_row::-webkit-scrollbar-thumb {
		background-color: var(--green);
	}
	.reliable_row::-webkit-scrollbar-track {
		background-color: #D9F8ED;
	}
	
	.reliable_item {
		padding:0 4px;
		width:208px;
		min-width:208px;
	}
	.brands_item,.partners_item {
		width: 33.33%;
	}
	.brand,.partner {
		height:80px;
	}
	.input_row {
		flex-direction:column;
	}
	.input_row .input {
		width:100%;
	}
	.sended_btn {
		width:100%;
	}
	.sended {
		padding: 30px 14px;
	}
}

/* ------ ------ 440 ------ ------ */

@media all and (max-width:440px) {
	.brands_item,.partners_item {
		width: 50%;
	}
	.map_big {
		display:none;
	}
	.map_mini {
		display:block;
	}
	.form_checkbox {
		flex-direction:column;
	}
	.form_checkbox > div {
		margin: 0 0 16px 0; 
	}
}

/* ------ ------ 379 ------ ------ */

@media all and (max-width:379px) {
	.header_mobile {
		padding:15px 0;
	}
	.header_mobile_modal a {
		width:100%;
	}
	.logo a {
		font-size: 12px;
	}
	footer .logo a {
        font-size: 16px;
    }
	.hero_text_top {
		font-size: 12px;
	}
	.hero_title h1 {
        font-size: 20px;
	}
	.hero_text br  {
		display:none;
	}
	.form_info_row {
		flex-direction:column;
	}
	.form_info_phone {
		margin:0 0 10px;
	}
}
.hidden_input {
	display:none;
}