/*
* @author: Shushas Roman
* @email: Shushasrp@gmail.com
*/


/* <Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, html *{
	margin:0;
	padding:0;
	border:0;
	font-size:100%;
	font:inherit;
	vertical-align:baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section{
	display:block;
}
body{
	line-height:1;
}
ol, ul{
	list-style:none;
}
blockquote, q{
	quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after{
	content:'';
	content:none;
}
table{
	border-collapse:collapse;
	border-spacing:0;
}
hr{
	font-size:0;
	line-height:0;
	border:none;
}
*:focus{
	outline: 0;
}
/* Reset> */


/* <Fonts */
@font-face{
	font-family: '';
	src: url('../fonts/.eot');
	src: url('../fonts/.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/.woff') format('woff'),
		 url('../fonts/.ttf') format('truetype'),
		 url('../fonts/.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
/* Fonts> */


/* <Service styles */
body{
	font: 15px 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
	font-weight: 500;
	color: #222;
	min-width: 300px;
	background: #fff;
    letter-spacing: .3px;
}
a{
	outline: none;
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}
i{
	font-style: italic;
}
b,
strong{
	font-weight: bold;
}
.clearfix:after,
.clear{
	font-size:0;
	clear:both;
	overflow:hidden;
	line-height:0;
	border: 0;
	content: '';
	display: block;
}
.fl-l{
	float: left;
}
.fl-r{
	float: right;
}
.ta-l{
	text-align: left;
}
.ta-c{
	text-align: center;
}
.ta-r{
	text-align: right;
}
button,
input{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
}
button:focus{
	outline: none;
}
/* Service styles> */


/* <Icons */
.icon{
	display: inline-block;
	background-position: center;
	background-repeat: no-repeat;
}
/* Icons> */


/* <Form */
.button{
	display: inline-flex;
    cursor: pointer;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    padding: 17px 24px 18px;
    letter-spacing: .3px;
}
.button:hover{
	text-decoration: none;
}
.button:active{}
.button.block{
	display: block;
	width: 100%;
	box-sizing: border-box;
}
.button-red{
	color: #fff;
	background: #357fdd;
}
.button-red:hover{
	background: #2d5991;
}

textarea,
select,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"]{
	border: 1px solid #e2e2e2;
    background: #f9f9f9;
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 45px;
    box-sizing: border-box;
    padding: 0 20px 2px;
    font-size: 14px;
}
textarea{
	height: auto;
    min-height: 90px;
    resize: none;
    padding-top: 12px;
    padding-bottom: 12px;
}
::-webkit-input-placeholder{color: #222222}
::-moz-placeholder{color: #222222}
:-ms-input-placeholder{color: #222222}
:-moz-placeholder{color: #222222}

.input-file{
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	border: 1px solid #e2e2e2;
    box-sizing: border-box;
    width: 100%;
    background: #f9f9f9;
    height: 45px;
    box-sizing: border-box;
    padding: 0 20px 2px;
    font-size: 14px;
    color: #999;
    justify-content: space-between;
}
.input-file-text{
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}
.input-file-text.changed{
	color: #222222;
}
.input-file-help{
    font-size: 12px;
    flex-shrink: 0;
    width: 94px;
    margin-left: 20px;
}
.input-file input{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 200%;
	height: 200%;
	opacity: 0;
}
.input-number{
	position: relative;
	display: block;
}
.input-number-title{
    position: absolute;
    top: 0;
    left: 23px;
    bottom: 2px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #999;
    cursor: text;
}
.input-number input{
	padding-left: 86px;
}

.checkbox{
	display: flex;
	color: #222;
	padding-top: 2px;
}
input[type="checkbox"]:checked{
    border-color: #357fdd;
    background: url(../images/checkbox.png) center no-repeat #357fdd;
}
input[type="checkbox"]{
	border: 1px solid #e2e2e2;
    background: #f9f9f9;
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin-right: 18px;
    margin-top: -2px;
    flex-shrink: 0;
}
.radio{
	display: flex;
	align-items: center;
	color: #222;
	padding-top: 2px;
}
input[type="radio"]:checked{
	border-width: 8px;
    border-color: #357fdd;
}
input[type="radio"]{
	border: 1px solid #e2e2e2;
    background: #f9f9f9;
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    margin-right: 18px;
    margin-top: -2px;
    flex-shrink: 0;
}

.form-wrapper{}
.form-wrapper .box{
	display: flex;
	justify-content: space-between;
}
.form-wrapper .form{
    padding: 60px 48px;
    background: #fff;
    flex-basis: 876px;
    margin: -20px 0 -20px 42px;
    min-width: 0;
}
.ajax_form.af_example.form,
.form{
    width: auto;
	display: flex;
	margin: 0 28px;
	flex-wrap: wrap;
}
.form-box{
	color: #6B6969;
    box-sizing: border-box;
    flex-basis: 50%;
    padding: 0 12px;
    margin-bottom: 25px;
    min-width: 0;
}
.form-box.block{
	flex-basis: 100%;
}
.form-box-container{}
.form-box.last{
    text-align: center;
    margin: 5px 0 0 0;
}
.form-box.last .button{
	padding-left: 48px;
	padding-right: 48px;
}

.form-aside{
	padding: 14px 0;
}
.form-aside-title{}
.form-aside p{
	line-height: 24px;
	margin-bottom: 15px;
}
.form-aside a{
	color: #357fdd;
	text-transform: uppercase;
	font-size: 13px;
}
.form-aside a strong{
	font-size: 15px;
}


@media (max-width: 1024px){
	.form-wrapper .form{
		padding: 20px 8px;
		margin: 20px 0 0 0;
	}
}
@media (max-width: 768px){
	.form-wrapper .box{
		flex-direction: column;
	}
	.form-wrapper .form{
		padding: 20px 8px;
		flex-basis: auto;
	}
	.form{
		flex-direction: column;
	}
	.form-box{
		flex-basis: 100%;
		margin-bottom: 15px;
	}
}
/* Form> */


/* <Common styles */
.page-wrapper{
	overflow: hidden;
}
.section-wrapper{
	position: relative;
	padding: 60px 0;
}
.section-wrapper.big-padding{
	padding: 94px 0;
}
.hr-after::after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: #e2e2e2;
}
.bg-image-red{
	background: url(../images/slider-03-vodoley.jpg) center no-repeat;
	background-size: cover;
	color: #fff;
}
.bg-image-gray{
	background: url(../images/bg-image-2.jpg) center no-repeat;
	background-size: cover;
}
.box{
	width: 100%;
	max-width: 1200px;
	padding-left: 15px;
	padding-right: 15px;
	margin: 0 auto;
	box-sizing: border-box;
}


.first-title{
	font-weight: 700;
	font-size: 42px;
}
.second-title{
    font-weight: 700;
    font-size: 36px;
    line-height: 42px;
    letter-spacing: 1px;
    margin-bottom: 45px;
}
.third-title{
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 25px;
	color: #2d5991;
}


.location{
	font-size: 14px;
	position: relative;
    min-width: 250px;
}
.location-button{
    font-weight: 600;
    color: #357fdd;
    display: flex;
    font-size: 15px;
    margin-bottom: 9px;
    align-items: center;
}
.location-button::after{
	content: '';
	width: 11px;
	height: 8px;
	background: url(../images/red-arrow.png) center no-repeat;
	margin-left: 7px;
}
.location-button:hover{
	text-decoration: underline;
}
.location-address{
    display: none;
}
.location-address.active{
    display: block;
}


.contacts-wrapper{
    box-shadow: 0 20px 40px -20px rgba(0,0,0,.2);
    position: relative;
    z-index: 1;
    border-top: 1px solid #e2e2e2;
}
.contacts{
	display: flex;
	justify-content: space-between;
	padding: 2px 0;
}
.contacts .contact{}
.contacts > .contact:nth-child(2){
    width: 500px;
}
.contact-last{
    flex-basis: 310px;
}
.contact .third-title{
	margin: -8px 0 0 0;
}
.contact .location{
	display: flex;
    white-space: nowrap;
    font-size: 16px;
}
.contact .location-button{
	margin-right: 20px;
	flex-basis: 190px;
	flex-shrink: 0;
	text-transform: none;
	font-size: 16px;
}
.contact .contact-title{
	font-size: 16px;
}

.contact{
	font-size: 12px;
}
.contact > a{
	color: #357fdd;
	text-transform: uppercase;
}
.contact-title{
	color: #232323;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 6px;
    letter-spacing: .6px;
}
.contact-title a{
	color: inherit;
}
.contact .button{
	color: #fff;
}


.red-color{
	color: #357fdd;
}


.text{
	line-height: 24px;
	margin-bottom: -15px;
}
.text p{
	margin-bottom: 15px;
}
.text + *{
	margin-top: 82px;
}


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

	align-items: center;
	position: relative;
	text-align:center;
}

.step-count{
	font-weight: 700;
	color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #357fdd;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	box-sizing: border-box;
	margin-right: 15px;
	padding-bottom: 4px;
}
.
.step:last-child::before{
	display: none;
}
.step-title{
	padding-bottom: 4px;
}


.map-wrapper{
	padding: 0;
}
.map{
    display: none;
}
.map.active{
    display: block;
}
.map iframe{}


.dropdown{
    display: none;
    position: absolute;
    top: 24px;
    left: 0;
    width: 240px;
    background: #fff;
    border: 1px solid #e2e2e2;
}
.dropdown-item{
	display: block;
	padding: 6px 12px;
}
.dropdown-item.active,
.dropdown-item:hover{
	background: #f8f8f8;
}
.open .dropdown{
	display: block;
	z-index: 23;
}
.contact-toggle{
    display: none;
}
.contact-toggle.active{
    display: block;
}
/* Common styles> */


/* <Header */
.header-wrapper{
	padding: 20px 0 17px;
}
.header{
	display: flex;
	justify-content: space-between;
}
.header-box{}
.header-box:nth-child(1){}
.header-box:nth-child(2){
	padding: 16px 0;
}
.header-box:nth-child(3){
	margin-left: 30px;
	padding: 18px 0 2px;
}
.header-box:nth-child(4){
	padding: 14px 0;
}
.header-logo{
	display: flex;
	align-items: center;
	width: 320px;
}
.header-logo img{}
.header-logo .header-text{
    color: #999;
    font-size: 13px;
    border-left: 1px solid #ccc;
    margin-left: 21px;
    padding: 0px 0 0px 20px;
    line-height: 20px;
}
.header-box .button{}


@media (max-width: 1024px){
	.header-logo .header-text{
		display: none;
	}
	.header-logo{
		width: auto;
		margin-right: 20px;
	}
}
@media (max-width: 768px){
	.header{
		flex-wrap: wrap;
	}
	/*
	.header-box:nth-child(3),
	.header-box{
		flex-basis: 50%;
		margin: 0;
	}
	.header-box:nth-child(2){
		order: 3;
	}
	.header-box:nth-child(3){
		order: 2;
	}
	.header-box:nth-child(4){
		order: 4;
	}
	*/
	.header-box:nth-child(4),
	.header-box:nth-child(3),
	.header-box:nth-child(2),
	.header-box:nth-child(1){
		flex-basis: 100%;
	    display: flex;
	    justify-content: center;
	    text-align: center;
	    margin: 0;
	}
	.header-box .location-button{
		justify-content: center;
	}
	.header-box .location .dropdown{
	    width: 100%;
	}
	.header-logo{
		margin: 0 0 20px;
	}
}
/* Header> */


/* <Footer */
.footer-wrapper{}
/* Footer> */


/* <Nav */
.nav-wrapper{
	background: #f8f8f8;
	padding: 0;
	border-top: 1px solid #ececec;
	border-bottom: 1px solid #ececec;
}
.nav{
	font-weight: 600;
}
.nav-list{
	display: flex;
	justify-content: space-between;
}
.nav-list-item{
	position: relative;
}
.nav-list-item.big{
    text-transform: uppercase;
    font-size: 12px;
    margin-left: 15px;
}
.nav-list-item a{
    min-height: 58px;
    display: flex;
    align-items: center;
    padding-bottom: 4px;
    box-sizing: border-box;
}
.nav-list-item a:hover{
	text-decoration: none;
}
.nav-list-item a[href]:hover{
	text-decoration: underline;
}
.nav-list-item .icon{
    margin: 4px 10px 0 0;
}

.nav-list-dropdown{
	display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background: #fff;
    border: 1px solid #ececec;
    z-index: 23;
    padding: 4px 0;
}
.nav-list-item:hover .nav-list-dropdown{
	display: block;
}
.nav-list-dropdown-item{}
.nav-list-dropdown-item a{
	min-height: 0;
    padding: 8px 12px;
}
.nav-list-dropdown-item a:hover{
	text-decoration: none;
	background: #ececec;
}
.nav-list-dropdown-button{
	padding: 0 30px 0 21px;
    padding: 0 1.6vw 0 1.1vw;
    border-left: 1px solid #ececec;
    border-right: 1px solid #ececec;
}
.nav-list-dropdown-button .icon{
    margin: 4px 18px 0 0;
}

.mobile-nav-button{
	display: none;
    margin: 0 -15px;
    box-sizing: border-box;
    padding: 15px;
	flex-direction: column;
	align-items: center;
}
.mobile-nav-button:hover{
    background: #ececec;
}
.mobile-nav-button-line{
	width: 28px;
	height: 3px;
	border-radius: 5px;
	margin: 2px 0;
	background: #357fdd;
	display: block;
}


@media (max-width: 1024px){
	.mobile-nav-button{
		display: flex;
	}
	.nav-list{
		padding: 6px 0;
		display: none;
	    position: absolute;
	    top: 100%;
	    left: 0;
	    right: 0;
	    z-index: 23;
	    background: #f8f8f8;
	    border-top: 1px solid #ececec;
	}
	.nav-list-dropdown-button,
	.nav-list-item a{
		padding: 0;
		justify-content: center;
		min-height: 44px;
	}
	.open ~ .nav-list{
		display: block;
	}
	.nav-list-dropdown{
		width: auto;
		right: 0;
	}
}
/* Nav> */


/* <Banner */
.banner-wrapper{
	overflow: hidden;
	padding: 0;
}
.banner{}
.banner-slider{}
.banner-slide{
	position: relative;
    box-sizing: border-box;
    width: 100vw;
}
.banner-image{
	position: absolute;
	top: 0;
	right: 12%;
	right: 12vw;
	height: 100%;
}
.banner-title{
    font-weight: 700;
    text-transform: uppercase;
    font-size: 36px;
    line-height: 60px;
    letter-spacing: 1.2px;
    margin-bottom: 28px;
}
.banner-slide p{
    font-size: 16px;
    line-height: 28px;
}
.banner .box{
    display: flex;
    z-index: 1;
    position: relative;
    flex-direction: column;
    justify-content: center;
    min-height: 480px;
    min-height: 30vw;
    padding: 63px 30% 47px 7px;
}
.banner .slick-arrow{}
.banner .slick-dots{
    position: absolute;
    right: 0;
    left: 0;
    bottom: 98px;
    max-width: 1200px;
    padding: 0 15px;
    box-sizing: border-box;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.banner .slick-dots button{
    cursor: pointer;
    font-size: 0;
    font-weight: bold;
    width: 8px;
    height: 8px;
    background: #d18698;
    border-radius: 50%;
    color: #fff;
    margin-top: 20px;
    display: block;
    position: relative;
}
.banner .slick-dots .slick-active button{
    font-size: 14px;
    width: auto;
    height: auto;
    background: none;
    margin-top: 18px;
    margin-bottom: -2px;
}
.banner .slick-dots .slick-active button::before{
	content: '0';
}


@media (max-width: 1300px){
	.banner-image{
		right: 2vw;
	}
}
@media (max-width: 1024px){
	.slick-slide img{
		right: -120px;
	}
}
@media (max-width: 768px){
	.slick-slide img{
		right: -666px;
		left: -666px;
		margin: auto;
		opacity: .7;
	}
	.banner .box{
		padding-right: 15px;
		padding-left: 15px;
		text-align: center;
	}
}
/* Banner> */


/* <Catalog */
.catalog-wrapper{}
.catalog{
	position: relative;
}
.catalog-slider{}
.catalog-slide{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.catalog-icon{
	display: flex;
	height: 50px;
	align-items: center;
	justify-content: center;
	margin-bottom: 23px;
}
.catalog-icon img{}
.catalog-title{
	font-weight: 600;
	color: #357fdd;
	margin-bottom: 13px;
}
.catalog-price{}
.gallery .slick-arrow,
.catalog .slick-arrow{
	background: url(../images/white-arrow.png) center no-repeat #357fdd;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	text-indent: -6666px;
	overflow: hidden;
	z-index: 1;
}
.gallery .slick-arrow{
    bottom: 20px;
}
.gallery .slick-arrow:hover,
.catalog .slick-arrow:hover{
	background-color: #99092c;
}
.gallery .slick-next,
.catalog .slick-next{
	transform: rotate(180deg);
	right: -4.55vw;
}
.gallery .slick-prev,
.catalog .slick-prev{
	left: -4.55vw;
}


@media (max-width: 1300px){
	.gallery .slick-next{
	    right: -60px;
	}
	.catalog .slick-next{
		right: 0;
	}
	.gallery .slick-prev{
	    left: -60px;
	}
	.catalog .slick-prev{
		left: 0;
	}
	.gallery-wrapper,
	.catalog-slider{
		padding: 0 60px;
	}
}
@media (max-width: 400px){
	.slick-slider{
		padding: 0 0 80px;
	}
	.catalog .slick-arrow{
		top: auto;
	}
	.catalog .slick-next{
		left: 50%;
		right: auto;
		margin: 0 10px;
	}
	.catalog .slick-prev{
		right: 50%;
		left: auto;
		margin: 0 10px;
	}
}
/* Catalog> */


/* <Services */
.services-wrapper{}
.services{
	
	margin: 0 -10px -20px;
}
.service{
	    display: inline-block;
	margin: 0 20px 20px 0;
	color: #fff;
}
.service:hover .service-title{
    background-color: rgba(0,0,0,.2);
}
.service img{
    display: block;
	height: 280px;
}
.service-title{
    display: block;
	font-weight: 600;
    font-size: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    padding: 12px 20px 10px;
    min-height: 98px;
    line-height: 26px;
    box-sizing: border-box;
}


@media (max-width: 1200px){
	.services{
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 0 auto -20px;
		max-width: 800px;
	}
	.service{
		flex-basis: 48%;
		margin-left: 0;
		margin-right: 0;
	}
}
@media (max-width: 600px){
	.services{
		display: block;
	}
	.service{}
}
/* Services> */


/* <Gallery */
.gallery{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
	padding: 6px 0;
}
.gallery-item{
	position: relative;
	flex-basis: 33.3333%;
}
.gallery-image{
	display: block;
    height: 259px;
    margin: 0 10px 20px;
    position: relative;
    background-size: cover;
    background-position: center;
}
.gallery-image::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #357fdd;
	opacity: 0;
}
.gallery-image::after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 60px;
	background: url(../images/icon-zoom.png) center no-repeat #fff;
	border-radius: 50%;
	margin: auto;
	opacity: 0;
}
.gallery-image:hover::before{
	opacity: .6;
}
.gallery-image:hover::after{
	opacity: 1;
}


@media (max-width: 768px){
	.gallery-item{
		flex-basis: 50%;
	}
}
@media (max-width: 520px){
	.gallery{
		margin: 0 auto;
		max-width: 380px;
	}
	.gallery-item{
		flex-basis: 100%;
		padding: 0;
	}
	.gallery-image{
		margin-left: 0;
		margin-right: 0;
	}
}
/* Gallery> */


/* <News */
.news{}
.news-list{
	padding: 7px 0;
	margin: 0 -10px -20px;
	display: flex;
	flex-wrap: wrap;
}
.news-list-item{
	flex-basis: 33.3333%;
	padding: 0 10px;
	margin-bottom: 20px;
	box-sizing: border-box;
}
.news-box{
	border: 1px solid #e2e2e2;
	background: #fff;
	display: block;
	padding-bottom: 26px;
	min-height: 100%;
	box-sizing: border-box;
}
.news-image{
	position: relative;
	height: 219px;
	display: block;
	margin-bottom: 25px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.news-title{
    display: block;
    font-weight: 600;
    font-size: 16px;
    padding: 0 29px;
    line-height: 24px;
}
.news-title strong{}
.news-date{
    display: block;
    font-size: 12px;
    color: #999;
    padding: 20px 29px 0;
}


@media (max-width: 768px){
	.news-list-item{
		flex-basis: 50%;
	}
}
@media (max-width: 520px){
	.news-list-item{
		flex-basis: 100%;
	}
}
/* News> */


/* <Popup */
.popups{
	display: none;
}
.popup{
	padding: 60px;
}
.popup-small{
	width: 460px;
	box-sizing: border-box;
}
.popup-head{
	text-align: center;
	margin-bottom: 25px;
}
.popup-title{
	margin-bottom: 15px;
}
.popup .form-box{
    flex-basis: 100%;
}
.popup .ph{
    display: none;
}
form>input:first-child{
    display: none;
}
/* Popup> */


/* <About */
.bg-about-image{
    position: relative;
    padding: 2.6vw 0;
    overflow: hidden;
}
.bg-about-image::before{
	content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 23.021vw;
    height: 21.719vw;
    background: url(../images/bg-faq.png) 0 0 no-repeat;
    background-size: contain;
    transform: rotate(180deg);
}

.about{
	margin-bottom: 49px;
	margin-bottom: 0;
}
.bg-gray .about{
	margin-bottom: 0;
}
.about-list{
	display: flex;
    justify-content: space-between;
    margin: 0 -15px -20px;
}
.about-list-item{
    padding: 0 15px 15px;
    width: 32.25%;
    display: flex;
    align-items: flex-start;
}
.about-list-icon{
	flex-shrink: 0;
	width: 46px;
	height: 46px;
	position: relative;
	margin-right: 27px;
}
.about-list-icon img{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	max-width: 100%;
	max-height: 100%;
}
.about-list-title{}
.about-list-text{
	line-height: 24px;
	color: #8e8e8e;
	font-size:14px;
}
.about-info{
	position: relative;
}
.about-info .first-title{
	margin-bottom: 37px;
}
.about-info p{
	line-height: 30px;
	padding: 0 10vw;
}

.about-container{
	display: flex;
	margin: 1.5vw 0;
}
.about-image{
	flex-basis: 50%;
	position: relative;
	overflow: hidden;
	order: 2;
}
.about-container.bg-white .about-image{
	order: 0;
}
.about-container.bg-white .about-image img{
	position: absolute;
	top: -666px;
	right: -666px;
	bottom: -666px;
	left: -666px;
	margin: auto;
	min-width: 100%;
	min-height: 100%;
}
.about-text{
	flex-basis: 50%;
    padding: 8px 50px 8px 0;
}
.about-container.bg-white .about-text{
    box-sizing: border-box;
    padding: 2vw;
}
.bg-gray .about-text{
	padding-top: 2.5vw;
	padding-bottom: 2.5vw;
}
.about-text-title{
	margin-bottom: 38px;
}
.about-container.bg-white .about-text-title{
	margin-bottom: 17px;
}
.about-text p{
	line-height: 30px;
	margin-bottom: 21px;
}
.about-text .button{
	margin-top: 29px;
}
/* About> */



/* <Responsive */
@media (max-width: 1200px){
	.step::before{
		width: 18vw;
	}
}
@media (max-width: 1024px){
	.banner-title{
		font-size: 36px;
		line-height: 46px;
	}


	.step::before{
		width: 14vw;
	}


	.contacts{
		flex-direction: column;
		text-align: center;
		padding: 0;
		margin: -20px 0;
	}
	.contacts .contact{
		margin: 20px 0;
	}
	.contact-last{
	    flex-basis: auto;
	}
	.contacts .contact:nth-child(2){
	    width: auto;
	}
	.contacts .contact .location{
		align-items: center;
		flex-direction: column;
		display: inline-flex;
	}
	.contacts .contact .location .dropdown{
	    width: 100%;
	}
	.contacts .contact .location-button{
		flex-basis: auto;
		margin: 0 0 10px;
	}
}
@media (max-width: 768px){
	.banner-title{
		font-size: 28px;
		line-height: 36px;
	}
	.banner .slick-dots{
	    bottom: 20px;
	}
	.service img {
    display: block;
    height: 221px;
    width:auto;
}
.about-text p {
    line-height: 26px;
    margin-bottom: 21px;
    text-align: center;
}

	.about-container{
		flex-direction: column;
	}
	.about-image{
		margin-top: 50px;	
	}
	
    .about-text{}
	.about-text p{
		margin: 0;
	}
	.about-container.bg-white .about-text{
		padding-bottom: 0;
		padding: 30px 30px 0;
	}
	.about-container.bg-white .about-image{
		min-height: 240px;
		order: 2;
	}
	.about-image img,
	.about-container.bg-white .about-image img{
		position: static;
		display: block;
		margin: 0 auto;
		min-width: 0;
		min-height: 0;
		max-width: 100%;
	}
	
	
	.bg-gray .about-text{
		padding: 0;
	}


	.steps{
		flex-wrap: wrap;
	}
	.step{
		flex-direction: column;
		text-align: center;
	}
	.step-count{
		margin: 0 0 15px;
	}
	.step::before{
		display: none;
	}
}
@media (max-width: 450px){
    .second-title {
    text-align: center;
    font-size: 22px;
    line-height: 29px;
    letter-spacing: 0;
}
	.steps{
		justify-content: center;
	}
	.step{
		flex-basis: 30%;
		margin-bottom: 20px;
	}
}
/* Responsive> */

.banner-text{
    background: rgba(33, 36, 39, 0.44);
    padding: 15px;
    border-radius: 20px;
}
