@font-face {
    font-family: 'pf_beausans_problack';
    src: url('../fonts/pfbeausanspro-black-webfont.eot');
    src: url('../fonts/pfbeausanspro-black-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/pfbeausanspro-black-webfont.woff2') format('woff2'),
         url('../fonts/pfbeausanspro-black-webfont.woff') format('woff'),
         url('../fonts/pfbeausanspro-black-webfont.svg#pf_beausans_problack') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'pf_beausans_probold';
    src: url('../fonts/pfbeausanspro-bold-webfont.eot');
    src: url('../fonts/pfbeausanspro-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/pfbeausanspro-bold-webfont.woff2') format('woff2'),
         url('../fonts/pfbeausanspro-bold-webfont.woff') format('woff'),
         url('../fonts/pfbeausanspro-bold-webfont.svg#pf_beausans_probold') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'pf_beausans_prosemibold';
    src: url('../fonts/pfbeausanspro-sebold-webfont.eot');
    src: url('../fonts/pfbeausanspro-sebold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/pfbeausanspro-sebold-webfont.woff2') format('woff2'),
         url('../fonts/pfbeausanspro-sebold-webfont.woff') format('woff'),
         url('../fonts/pfbeausanspro-sebold-webfont.svg#pf_beausans_prosemibold') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'pf_beausans_probbook';
    src: url('../fonts/pfbeausanspro-book-webfont.eot');
    src: url('../fonts/pfbeausanspro-book-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/pfbeausanspro-book-webfont.woff2') format('woff2'),
         url('../fonts/pfbeausanspro-book-webfont.woff') format('woff'),
         url('../fonts/pfbeausanspro-book-webfont.svg#pf_beausans_probbook') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'magistralblackcregular';
    src: url('../fonts/magistralblackc-webfont.eot');
    src: url('../fonts/magistralblackc-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/magistralblackc-webfont.woff2') format('woff2'),
         url('../fonts/magistralblackc-webfont.woff') format('woff'),
         url('../fonts/magistralblackc-webfont.svg#magistralblackcregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'pf_beausans_proregular';
    src: url('../fonts/pfbeausanspro-reg-webfont.eot');
    src: url('../fonts/pfbeausanspro-reg-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/pfbeausanspro-reg-webfont.woff2') format('woff2'),
         url('../fonts/pfbeausanspro-reg-webfont.woff') format('woff'),
         url('../fonts/pfbeausanspro-reg-webfont.svg#pf_beausans_proregular') format('svg');
    font-weight: normal;
    font-style: normal;

}
/*---Анимация появления----------*/
.inviewport,
.hiddenthis {
    opacity: 0;
}

.visiblethis {
    opacity: 1;
}

.animated.delay1 {
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
}

.animated.delay2 {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.animated.delay3 {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

.animated.delay4 {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.animated.delay5 {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.animated.delay6 {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.animated.delay7 {
    -webkit-animation-delay: .7s;
    animation-delay: .7s;
}

.animated.delay8 {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}

.animated.delay9 {
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
}

* {
	font-family: 'pf_beausans_proregular';
	font-size: 16px;
	color: #3E3D40;
}

html, body {
	overflow-x: hidden;
}
/*-------------------Шапка-------------*/
header {
	position: relative;
	z-index: 9;
}

a.logo {
	display: block;
	float: left;
}

a.logo img{
	width: 100px;
//    margin-top: 10px;
	margin-top: -50px;
	margin-left: 10px;
	transition: all ease 0.3s;
}

.global-menu {
	height: 60px;
	background: #3E3D40;
}

.global-menu nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-left: 130px;
}

.global-menu nav ul li {
	display: inline-block;
	margin-right: 50px;	
	margin-left: 0;
	padding: 0;
}

.global-menu nav ul li a {
	display: block;
	height: 60px;
	line-height: 60px;
//	color: 	#AEB0B1;
	color: 	#fff;
	font-size: 16px;
	font-family: 'pf_beausans_proregular';
	text-transform: uppercase;
	transition: all ease 0.3s;
	position: relative;
}

.global-menu nav ul li a:after {
	content: "";
	width: 0%;
	height: 3px;
	background: #AEB0B1;
	display: block;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transition: all ease 0.3s;
	opacity: 0;
}

.global-menu nav ul li a:hover {
	color: #AEB0B1;
	text-decoration: none;
//	border-bottom: 3px solid #AEB0B1;
}	

.global-menu nav ul li a:hover:after {
	bottom: 0;
	opacity: 1;
	width: 100%;
	left: 0%;
	
}	

.global-menu .contacts {
	float: right;
	margin-right: 20px;
}

.global-menu .franchise {
	color: #33CCFF;
	text-transform: uppercase;	
	
	height: 60px;
	line-height: 60px;	
	display: block;
	float: left;
	transition: all ease 0.3s;
	text-decoration: none;	
}

.global-menu .franchise:hover {
	color: #fff;
}

.global-menu .phone {
	color: #fff;
	height: 60px;
	line-height: 60px;	
	font-family: 'pf_beausans_probbook';	
	font-size: 24px;
	display: block;
	float: left;
	margin-top: 2px;
	padding-right: 20px;
	margin-right: 20px;
	position: relative;
	transition: all ease 0.3s;
	text-decoration: none;
}	

.global-menu .phone:hover {
	color: #AEB0B1;
}

.global-menu .phone:after {
	content: "";
	display: block;
	position: absolute;
	width: 1px;
	height: 30px;
	top: 13px;
	right: 0px;
	background: #fff;
}

.service-menu {
	height: 60px;
	background: rgba(255,255,255,0.75);
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);

}

header.fix .service-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}	

header.fix {
	z-index: 2;
}

header.fix a.logo img{
	width: 50px;
//    margin-top: 10px;
	margin-top: 5px;
}

.service-menu .company {
	float: left;
	margin-left: 20px;
	height: 60px;
	line-height: 60px;
	font-family: 'magistralblackcregular';
	color: #009BDD;
	font-size: 22px;
	text-transform: uppercase;
	margin-right: 45px;
}

.service-menu .your-city {
	height: 60px;
	line-height: 60px;
	float: left;
	font-size: 14px;
	color: #3E3D40;
}

.service-menu .your-city a {
	color: #009BDD;
	font-size: 14px;
	margin-left: 5px;
	border-bottom: 1px dotted #009BDD;
	transition: all ease 0.3s;
	text-decoration: none;		
}

.service-menu nav {
	float: right;
	margin-right: 20px;	
}

.service-menu nav  ul {
	list-style: none;
	padding: 0;
	margin: 0;
}	

.service-menu nav  ul li {
	display: inline-block;
	margin-left: 30px;
}

.service-menu nav ul li:first-of-type {
	margin-left: 0px;
}

.service-menu nav  ul  li a {
	font-size: 14px;
	color: #3E3D40;
	height: 60px;
	line-height: 60px;
	transition: all ease 0.3s;
	text-decoration: none;	
}	

.service-menu nav  ul  li a:hover, .service-menu nav  ul  li a.active {
	color: #009BDD;
}

/*---------------Карта----------------------------*/
section#map {
	position: relative;
}

.map-top-layer {
	text-align: center;
	position: absolute;
	top: 200px;
	left: 50%;
	margin-left: -322px;
	pointer-events: none;
}

.map-top-layer h1 {
	line-height: 74px;
	height: 74px;
	font-size: 48px;	
    font-family: 'pf_beausans_probold'; 
	background: rgba(255,255,255,0.75);
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);	
	display: inline-block;
	border-radius: 37px;
	padding: 0px 37px;
	margin: 0;
}

.map-top-layer h1 span	{
	font-size: inherit;
    font-family: inherit;
}

.map-top-layer p {
	color: #9B9B9B;
	display: inline-block;
	font-size: 20px;
	border-bottom: 1px dotted #9B9B9B;
	margin: 15px 0 0 0;
    line-height: 22px;
}

/*---------------Филиалы----------------------------*/
.branch-list {
	margin-top: -120px;
} 

.branch-category {
	position: relative;
	text-align: center;
}

.branch-button {
	position: relative;
	display: inline-block;
}

.branch-button span {
	font-size: 20px;
	color: #3E3D40;	
	height: 50px;
	position: relative;
	padding-left: 35px;
	padding-right: 20px;
	display: inline-block;
	line-height: 62px;
	z-index: 1;
	cursor: pointer;
	transition: all ease 0.3s;	
	white-space: nowrap;
}

.branch-button span:hover {
	color: #009BDD;
}

.branch-list .col:nth-of-type(1) .branch-button span {
	background: url(../images/branch-marker-main.svg) no-repeat;	
}

.branch-list .col:nth-of-type(2) .branch-button span {
	background: url(../images/branch-marker.svg) no-repeat;	
}

.branch-list .col:nth-of-type(3) .branch-button  span {
	background: url(../images/branch-marker-inactive.svg) no-repeat;	
}

.branch-button span:after {
	content: "";
	display: block;
	width: 11px;
	height: 7px;
	background: url(../images/arrow.svg) no-repeat;
	position: absolute;
	right: 0;
	top: 28px;
	z-index: 1;
	transition: all ease 0.3s;
}

.branch-button span.active:after {
	transform: rotate(180deg);
}	

.branch-menu {
	border-radius: 8px;
	border: 2px solid #76DCFF;	
	background: rgba(255,255,255,0.75);
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);	
	position: absolute;
	bottom: -10px;    
    left: -20px;
    right: -20px;
}

.branch-menu.visible {
	display: block;
}	

.branch-menu ul{
	margin: 0 0 60px 0px;
	list-style: none;	
	border-bottom: 2px solid #E9EAEA;
	text-align: left;
	padding: 0;
	margin: 30px 15px 70px 15px;
}

.branch-menu ul li {
	margin-bottom: 15px;
}

.branch-menu ul li a {
	color: #009BDD;
	text-decoration: underline;
	font-size: 18px;
}

/*-------------Хотите открыть филиал----------------*/

section#open-service {
	background: #76DCFF;
	color: #fff;
	border-bottom: 4px solid #009BDD;
	text-align: center;
	margin-top: 40px;
	padding: 60px 0px;
}

section#open-service span {
	color: #fff;
	font-size: 20px;
	background:  #76DCFF;
	display: inline-block;
	position: relative;
	z-index: 1;
	padding: 0px 10px;
}

section#open-service p {
	height: 70px;
	line-height: 70px;
	display: inline-block;
	padding: 0px 35px;
	border: 2px solid #fff;
	border-radius: 35px;
	color: #fff;
	font-size: 36px;
	margin-top: -15px;
}

/*-------------Ваш филиал----------------*/

section#your-branch {
	overflow: hidden;
}

.your-branch {
	text-align: center;
	padding: 50px 0 25px 0;	
	background: url(../images/marker-big.svg) no-repeat;
	background-position: 50% calc(50% + 10px) ;
	margin-bottom: 20px;	
}	

.your-branch p {
	margin-bottom: 0;
}

.your-branch p:first-of-type {
	font-family: 'pf_beausans_probold'; 
	font-size: 36px;
	line-height: 36px;
}	

.your-branch p:last-of-type {
	font-family: 'pf_beausans_probold'; 
	font-size: 48px;
	line-height: 48px;
}	

.contact-item {
	margin: 20px 0px;
}

.contact-item:first-of-type {
	margin-top: 60px;
}

.contact-item  span {
	color: #9B9B9B;
	display: block;
	font-size: 13px;
	line-height: 12px;
	margin-left: 40px;
}

.contact-item  p {
	color: #656565;
	font-size: 20px;
	margin: 0;
	margin-left: 40px;
}

.contact-item.address img {
	margin-top: 0px;
}

.contact-item img {
	float: left;
	margin-top: 10px;
}

.branch-socials {
	border-top: 2px solid #E9EAEA;
	margin-top: -48px;
	padding-top: 20px;
	width: calc(100% - 50px);
}

.branch-socials img {
	margin-right: 5px;
}

.branch-socials span {
	font-size: 13px;
	color: #9B9B9B;
	margin-right: 5px;	
	display: inline-block;
}	

.branch-socials span:last-of-type {
	margin-left: 40px;
}

/*-------------Персонал----------------*/

section#personal {
	background: #F3F3F3;
	margin-top: 60px;
	overflow: hidden;
	border-bottom: 4px solid #009BDD;
	padding-bottom: 80px;
}

section#personal p.title {
	font-size: 30px;
	text-align: center;
	margin-top: 40px;
}	

section#personal .personal-carousel div img {
	width: 100px;
	border-radius: 50%;
	margin: 0 auto;
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	margin-bottom: 10px;	
}

section#personal .personal-carousel div p:first-of-type {
	text-align: center;
	color: #009BDD;
	font-size: 22px;
	font-family: 'pf_beausans_probold'; 
}

section#personal .personal-carousel div p:last-of-type {
	text-align: center;
	font-size: 13px;
	color: #656565;
}	

.carousel-wrap {
	width: calc(100% - 120px);
	margin: 0 auto;
}

/*----------Совиная карусель------------------*/

.owl-carousel .owl-nav .owl-prev {
	position: absolute;
    left: -60px;
    top: 50%;
    width: 25px;
    height: 40px;
    background: url(../images/owl-arrow.svg) -48px -47px no-repeat;
    margin-top: -20px;
    text-indent: 999999px;
	transform: rotate(180deg);
	transition: all ease 0.3s;	
}

.owl-carousel .owl-nav .owl-prev:after {
	content: "";
	display: block;
	position: absolute;
    left: 0px;
    top: 0px;
    width: 25px;
    height: 40px;
    background: url(../images/owl-arrow-blue.svg) -48px -47px no-repeat;
	opacity: 0;	
	transition: all ease 0.3s;	
}

.owl-carousel .owl-nav .owl-prev:hover:after {
	opacity: 1;	
}	

.owl-carousel .owl-nav .owl-next {
	position: absolute;
    right: -60px;
    top: 50%;
    width: 25px;
    height: 40px;
    background: url(../images/owl-arrow.svg) -48px -47px no-repeat;
    margin-top: -20px;
    text-indent: -999999px;
}	

.owl-carousel .owl-nav .owl-next:after {
	content: "";
	display: block;	
	position: absolute;
    right: 0px;
    top: 0;
    width: 25px;
    height: 40px;
    background: url(../images/owl-arrow-blue.svg) -48px -47px no-repeat;
	opacity: 0;
	transition: all ease 0.3s;	
}	

.owl-carousel .owl-nav .owl-next:hover:after {
	opacity: 1;	
}	


/*----------Новости------------------*/

section#news {
	background: #E9EAEA;
	overflow: hidden;
	padding-bottom: 80px;
	border-bottom: 4px solid #009BDD;
}

section#news p.title {
	text-align: center;
	font-size: 48px;
	font-family: 'pf_beausans_probold';
	margin: 90px 0 40px 0;
}	

.news-carousel {
	position: relative;
}

.news-carousel .owl-stage div  {
	position: relative;
    overflow: hidden;
}

.news-carousel .owl-stage div a{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
	padding: 10px;
}	

.news-carousel .owl-stage div a:hover {
	text-decoration: none;
}	

.news-carousel .owl-stage div  a p:first-of-type {
	color: #E9EAEA;
	margin: 0;
}	

.news-carousel .owl-stage div  a p:last-of-type {
	color: #fff;
	font-size: 22px;
	line-height: 26px;
	font-family: 'pf_beausans_probold';
	text-transform: uppercase;
}	

.news-carousel .owl-stage div img {
	transition: all ease 0.3s;	
}

.news-carousel .owl-stage div:hover img {
	transform: rotate(10deg) scale(1.5);	
}


/*-------------Иконки----------------------------*/

section#icons {
	padding-bottom: 80px;
	overflow: hidden;
}

section#icons p.title {
	text-align: center;
	margin-top: 80px;
	font-family: 'pf_beausans_probold';
	font-size: 48px;
	line-height: 57px;
}

section#icons p.title b {
	font-weight: normal;
	font-size: inherit;
	font-family: inherit;
}

section#icons p.title span {
	font-family: 'pf_beausans_probold';
	font-size: 36px;
	display: block;
	line-height: 32px;
	margin-bottom: 60px;
}

section#icons .col {
	text-align: center;
}

section#icons .col p {
	font-size: 22px;
	margin-top: 20px;
	margin-bottom: 0px;
}

/*-------------Что мы можем----------------------------*/

section#what-we-can {
	position: relative;
	background: #76DCFF;
	overflow: hidden;
	padding: 60px 0px 80px 0px;
	color: #fff;
}

section#what-we-can p.title {
	text-align: center;
	font-size: 48px;
	line-height: 57px;	
	font-family: 'pf_beausans_probold';
	color: #fff;
}

section#what-we-can p.title span {
	color: #0B72B2;
	font-size: 20px;
	display: block;
	line-height: 32px;
	margin: 30px 0px;	
}

section#what-we-can .wrap p {
	font-family: 'pf_beausans_prosemibold';
	font-size: 22px;
	line-height: 26px;
	margin-bottom: 30px;
	text-align: center;
    margin: 0 auto 30px auto;
    text-align: center;
    max-width: 80%;	
} 

section#what-we-can .wrap ul {
	list-style: none;
}

section#what-we-can .wrap ul li {
	font-family: 'pf_beausans_prosemibold';
    font-size: 15px;
    background: url(../images/bull-white.png) 0px 4px no-repeat;
    padding-left: 20px;
    margin-bottom: 6px;
}	

/*-------------Что мы можем----------------------------*/

section#diagnostic {
	position: relative;
	
	border-bottom: 4px solid #009BDD;	
}

#diagnostic .wrap {
	padding-bottom: 70px;	
	background: url(../images/car.png) no-repeat;
}

.diagnostic-text p:first-of-type {
	color: #009BDD;
	font-size: 48px;
	font-size: 48px;
	line-height: 57px;	
	font-family: 'pf_beausans_probold';	
	margin-top: 90px;
}

.diagnostic-text p:first-of-type span {
	display: block;
	line-height: 32px;
	font-family: 'pf_beausans_probold';	
	color: #009BDD;
	font-size: 39px;
}	

.diagnostic-text p:last-of-type {
	font-family: 'pf_beausans_prosemibold';
    font-size: 22px;	
	margin-top: 20px;
}

.checks  {
	overflow: hidden;
}	

.checks div {
	float: left;
}	

.checks div:first-of-type {
	width: 66%;
}

.checks last-of-type:first-of-type {
	width: 33%;
}

.checks div ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.checks div ul li {
	font-family: 'pf_beausans_prosemibold';
    font-size: 15px;
    background: url(../images/bull-blue.png) 0px 4px no-repeat;
    padding-left: 20px;
    margin-bottom: 6px;
}	

ul.general-checks  {
	overflow: hidden;
	margin: 40px 0 0 0;
	padding: 0;
	list-style: none;	
	
}

ul.general-checks  li {
	font-family: 'pf_beausans_prosemibold';
    font-size: 22px;
	line-height: 24px;
    background: url(../images/bull-blue.png) 0px 4px no-repeat;
    padding-left: 20px;
    margin-bottom: 6px;
	float: left;
	width: 33%;
}	


a.button {
	height: 50px;
	line-height: 50px;
	text-transform: uppercase;
	font-size: 23px;
	font-family: 'pf_beausans_probold';	
	padding: 0px 25px;
	border-radius: 25px;
	background: rgba(118, 220, 255, 0.7);
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	display: inline-block;	
	color: #3E3D40;	
    margin-left: 40px;	
	transition: all ease 0.3s;	
	text-decoration: none;
	position: relative;
    top: -50px;
}

a.button:hover {
	background: #76DCFF;
}
/*-------------Видео----------------------------*/

section#video {
	height: 600px;
	border-bottom: 4px solid #009BDD;
	position: relative;
}

#video-background {
	position: absolute;
	right: 0; 
	bottom: 0;
	top: 0;
	left: 0;
	width: 100%; 
	height: auto;
	z-index: -100;	
}



#video-viewport { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: -1; }
video { display: block; width: 100%; height: auto; }

.fullsize-video-bg { height: 100%; overflow: hidden; }

.fullsize-video-bg:before { content: ""; background: rgba(118, 220, 255, 0.7); position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }



.fullsize-video-bg .inner { display: table; width: 100%; height: 100%; margin: 0 auto; padding: 0; position: relative; z-index: 1	; text-shadow: 0 1px 5px rgba(0,0,0,.5); }
.fullsize-video-bg .inner > div { text-align: center; display: table-cell; vertical-align: middle; }


h1 { font-family: "Raleway", sans-serif; font-size: 3em; line-height: .9; font-weight: 900; letter-spacing: -.025em; text-transform: uppercase; margin-bottom: .5em; }
h1 + p { font-family: "Shadows Into Light Two", cursive; font-size: 1.5em;  }

.video-top p.round {
    height: 70px;
    line-height: 70px;
    display: inline-block;
    padding: 0px 35px;
    border: 2px solid #fff;
    border-radius: 35px;
    color: #fff;
    font-size: 36px;
    margin-top: -15px;
}

.video-top span {
	color: #fff;
    font-size: 20px;
    background: rgb(152, 224, 252);
    display: inline-block;
    position: relative;
    z-index: 1;
    padding: 0px 10px;
    border-radius: 20px;
}

.video-top a {
	display: block;
	color: #fff;
	font-size: 20px;
	margin-top: 40px;
}

/*-------------Фото----------------------------*/

section#photos {
	position: relative;
	padding: 90px 0 120px 0;
	background: url(../images/text-pattern.png) no-repeat;
	background-position: 50% calc(100% - 20px);
	border-bottom: 4px solid #009BDD;	
}

.photos-carousel .owl-stage div {
	overflow: hidden;
}

.photos-carousel .owl-stage div img {
	transition: all ease 0.3s;	
}

.photos-carousel .owl-stage div:hover img {
	transform: rotate(10deg) scale(1.5);	
}

/*-------------Отзывы----------------------------*/

section#reviews {
	position: relative;	
	background: url(../images/reviews-bg-min.jpg) center center no-repeat;
	background-size: cover;
	border-bottom: 4px solid #009BDD;	
	padding: 80px 0 120px 0;
	-webkit-box-shadow: 0px 20px 30px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 20px 30px 0px rgba(0,0,0,0.15);
	box-shadow: 0px 20px 30px 0px rgba(0,0,0,0.15);
}

section#reviews p.title {
	text-align: center;
    font-size: 48px;
    font-family: 'pf_beausans_probold';
}

.reviews-carousel .owl-item img {
	width: auto;
	display: block;
	margin: 0 auto;
}

.reviews-carousel .owl-item hr {
	width: 250px;
	border: none;
	height: 2px;
	background: #009BDD;
}

.reviews-carousel .owl-item p {
	text-align: center;
}

.reviews-carousel .owl-item p:nth-of-type(1) {
	font-size: 20px;
	line-height: 24px;
	margin: 20px auto;
	max-width: 740px;
}

.reviews-carousel .owl-item p:nth-of-type(2) {
	font-size: 22px;
	line-height: 26px;
	font-family: 'pf_beausans_probold';	
	margin: 30px 0px 0px 0px;
}

.reviews-carousel .owl-item p:nth-of-type(3) {
	color: #656565;	
}	

.owl-dots {
	text-align: center;
}

.owl-dots .owl-dot {
	width: 13px;
	height: 13px;
	background: #33CCFF;
	border: 1px solid #33CCFF;
	border-radius: 50%;
	display: inline-block;
	margin: 0px 10px;
}

.owl-dots .owl-dot.active {
	background: #FFF;
	-webkit-box-shadow: 0px 0px 5px 2px rgba(51,204,255,1);
	-moz-box-shadow: 0px 0px 5px 2px rgba(51,204,255,1);
	box-shadow: 0px 0px 5px 2px rgba(51,204,255,1);
}

/*-------------Инстаграм----------------------------*/

section#instagram {
	padding: 60px 0 70px 0;
}

section#instagram p.title {
	text-align: center;
    font-size: 48px;
    font-family: 'pf_beausans_probold';	
}

section#instagram img {
	width: 100%;
	
}

section#instagram .col a {
	display: block;
	margin-bottom: 30px;
	overflow: hidden;
}

p.subscribe {
	text-align: center;
	margin-bottom: 40px;
}

p.subscribe a, p.subscribe span {
	display: inline-block;
	line-height: 40px;
}

p.subscribe span {
	height: 40px;
	position: relative;
	padding-right: 35px;
	font-size: 30px;
	color: #0B72B2;
}	

p.subscribe span:after {
	content: "";
	position: absolute;	
	display: block;
	width: 1px;
	height: 40px;
	background: #656565;
	right: 0;
	top: 0;
}	

p.subscribe a {
	font-size: 20px;
	color: #656565;
	border: 1px solid #656565;
	border-radius: 3px;
	height: 34px;
	padding: 0 25px;
	margin-left: 35px;	
	position:relative;
	line-height: 34px;
    top: -2px; 
	transition: all ease 0.3s;
	text-decoration: none;
}	

p.subscribe a:hover {
	color: #0B72B2;
	border: 1px solid #0B72B2;	
}

#instagram .col {
	overflow: hidden;
}

#instagram .col img {
	transition: all ease 0.3s;	
}

#instagram .col:hover img {
	transform: rotate(10deg) scale(1.5);	
}

/*--------------------Подвал---------------------*/

footer {
	background: #3E3D40;
	padding: 70px 0 30px 0;
}

footer .socials img {
	margin-right: 20px;
}

footer .phone a {
	font-size: 24px;
	color: #fff;
	text-decoration: none;
	transition: all ease 0.3s;	
}

footer .email a {
	font-size: 18px;
	font-family: 'pf_beausans_prosemibold';
	text-decoration: underline;
	color: #33CCFF;
    margin-top: 3px;
    display: block;	
	transition: all ease 0.3s;	
}

footer .partner a {
	font-size: 16px;
	font-family: 'pf_beausans_prosemibold';
	color: #33CCFF;
	border: 2px solid #33CCFF;
	line-height: 34px;
	height: 34px;
	padding: 0 25px;
	border-radius: 17px;
	float: right;
	text-decoration: none;
	margin-top: -5px;
	transition: all ease 0.3s;	
}

footer .phone a:hover {
	color: #33CCFF;
}

footer .email a:hover {
	
	color: #fff;
}



footer .w-100 {
	height: 60px
}

.copyright img {
	float: left;
	width: 50px;
}

.copyright p {
	color: #fff;
}

.copyright p:first-of-type {
	font-size: 16px;
	margin: 5px 0 0 70px;
}	

.copyright p:last-of-type {
	font-size: 12px;
	margin: 0;
	margin-left: 70px;
}

.madein {
	text-align: right;
}

.madein p {
	font-size: 12px;
	color: #fff;
	margin-top: 30px;
	margin-bottom: 0;
}

.madein p a {
	font-size: 12px;
	color: #33CCFF;
}	

/*----------------Фэнси-------------*/
.zoom-link {
	display: block;
	position: relative;
}

.zoom-link:after {
	content: "";
	display: block;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	position: absolute;
	background: rgba(0,0,0,0.5) url(../images/zoom.svg) center center no-repeat;
	background-size: 60px 60px;
	transition: all ease 0.3s;	
	opacity: 0;
	
}

.zoom-link:hover:after  {
	opacity: 1;
}

.nav-link {
	padding: 0;
}

/*----------------Модальник-------------*/


.modal-window {
	border-radius: 8px;
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	border: 2px solid #009BDD;
	overflow: hidden;
	width: 780px
}

.modal-window .contact-item:first-of-type {
	margin-top: 0;
}

.contact-item.city {
	border-bottom: 2px solid #E9EAEA;
}

.contact-item.city p {
	font-size: 32px;
}

.contact-item.city span {
	font-size: 18px;
}

.contact-item.city img {
	margin-top: 0;
}

.modal-window .left-part, .modal-window .right-part{
	float: left;
}

.modal-window .left-part {
	width: 370px;
	margin-right: 20px;
}

.modal-window .right-part {
	width: 320px;
}


a.branch-link {
	font-size: 18px;
    color: #009BDD;
    text-decoration: none;
    border-bottom: 1px dotted #009BDD;
    margin-top: 20px;
    display: inline-block;
    margin-bottom: 12px;	
}

.modal-window .fancybox-close-small:after {

    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font: 30px/30px Arial,Helvetica Neue,Helvetica,sans-serif;
    color: #fff;
    font-weight: 300;
    text-align: center;
    border-radius: 2px;
    border-width: 0;
    background-color: transparent;
    transition: background-color .25s;
    box-sizing: border-box;
    z-index: 2;
    background: #76DCFF;
}

 iframe {
	 background: #E9EAEA url(../images/loader.gif) center center no-repeat;
 }
/*---------------- Наверх  -------------*/
 
a.back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display:none;
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.8) url(../images/to-top.svg) center center no-repeat;
	border-radius: 5px;
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);	
	transition: all 0.3s ease-in-out;
	z-index: 9;
}

a.back-to-top.show {
	display:block;
}

a.back-to-top:hover {	
	background: rgba(255, 255, 255, 1) url(../images/to-top.svg) center center no-repeat;
}
 
/*----------------Мобильные элементы-------------*/

.mobile-bar {
	position: fixed;
	top: 0;
	width: 100%;
	height: 56px;
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	background: #3E3D40;
	z-index: 999999;	
}

.mobile-logo img {
	width: 40px;
	margin: 8px 10px;
	transition: all 0.3s ease-in-out;
	float: left;
}

.mobile-logo.is-hide img {
	margin-left: -56px;
}

.hamburger {
	width: 56px;
	height: 56px;	
	position: absolute;
	top: 0;
	left: 56px;
	transition: all 0.3s ease-in-out;
}

.hamburger.is-active {
	left: 0px;
}

.hamburger .line{
	width: 30px;
	height: 4px;
	background-color: #9B9B9B;
	display: block;
	margin: 4px auto 0px auto;
	border-radius: 3px;	
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.hamburger .line:first-of-type {
	margin-top: 18px;
}
.hamburger:hover{
	cursor: pointer;
}

.hamburger.is-active .line:nth-child(2){
	opacity: 0;
}

.hamburger.is-active .line:nth-child(1){
	-webkit-transform: translateY(8px) rotate(45deg);
	-ms-transform: translateY(8px) rotate(45deg);
	-o-transform: translateY(8px) rotate(45deg);
	transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active .line:nth-child(3){
	-webkit-transform: translateY(-8px) rotate(-45deg);
	-ms-transform: translateY(-8px) rotate(-45deg);
	-o-transform: translateY(-8px) rotate(-45deg);
	transform: translateY(-8px) rotate(-45deg);
}

.your-city, .mobile-phone {
	float: right;
}

.your-city {
	text-align: right;
}

.your-city p:first-of-type {
    color: #fff;
    font-size: 12px;
    margin: 17px 0 0 0;
    line-height: 5px;
}

.your-city p:last-of-type {
	color: #fff;
}

.your-city p:last-of-type  a{
	font-size: 14px;
    display: inline-block;
    text-decoration: none;
    border-bottom: 1px dotted #33CCFF;
    color: #33CCFF;
    line-height: 12px;
}

.mobile-phone { 
	display: block;
	width: 56px;
	height: 56px;
	background: #656565 url(../images/phone.svg) center center no-repeat;
	margin-left: 15px;
	transition: all ease 0.3s;
}

.mobile-phone:hover {  
	background: #9b9b9b url(../images/phone.svg) center center no-repeat;
}

#mobile-menu {
	width: 100%;
	position: absolute;
    top: 56px;
	z-index: 999999;
}

.mobile-menu-wrap {
	background: #3E3D40;
	padding-bottom: 20px;
	border-top: 1px solid #656565;	
}

.mobile-menu-item, .mobile-menu-item.collapse.collapsed {
	display: block;
	line-height: 38px;
	text-decoration: none;
	text-transform: uppercase;
	color: #fff;
	font-size: 16px;
	background: #3E3D40;
	padding: 0px 17px;
	position: relative;
	border-bottom: 1px solid #656565;	
	transition: all 0.3s ease-in-out;
}

.mobile-menu-item.collapse {
	background: #58585A;
	border-bottom: 1px solid #58585A;	
}

.mobile-menu-item.collapse:after {
	content: "";
    display: block;
    width: 11px;
    height: 7px;
    background: url(../images/arrow-mobile.svg) no-repeat;
    position: absolute;
	right: 17px;
    top: 17px;
    z-index: 1;
    transition: all ease 0.3s;	
	transform: rotate(0deg);
}

.mobile-menu-item.collapse.collapsed:after {
	transform: rotate(-90deg);
}

.mobile-menu-item:hover {
	color: #fff;
	text-decoration: none;
}

.mobile-menu-wrap ul.inner-menu {
	background: #58585A;
	list-style: none;
	padding: 0px 0px 20px 40px;
	margin: 0;
}

.mobile-menu-wrap ul.inner-menu li a {
    display: inline-block;
    line-height: 27px;
    text-decoration: none;
    color: #d6d7d8;
    font-size: 14px;
}

p.company {
    margin-left: 17px;
	height: 40px;
    line-height: 40px;
    font-family: 'magistralblackcregular';
    color: #009BDD;
    font-size: 20px;
    text-transform: uppercase;
    margin-right: 45px;	
}

p.phone {
	margin-left: 17px;
	margin-left: 17px;
    margin-top: 20px;
}

p.phone a {
	text-decoration: none;
	color: #fff;
	font-size: 21px;
}	

p.phone span {
	color: #fff;
	font-size: 13px;
	margin-left: 10px;
}	
/*----------------Адаптивность-------------*/

.wrap {
	width: 100%;
	max-width: 1160px;
	margin: 0 auto;
}

.mobile {
	display: none;
}

.collapse-wrap { 
	display: none;
}

@media only screen and (max-width: 1220px) {
	.wrap {
		width: calc(100% - 30px);
	}	
	
	.map-top-layer .wrap {
		width: auto;
	}
}	

@media only screen and (max-width: 1080px) {
	.service-menu nav ul li {
		margin-left: 15px;
	}
	.service-menu .company {
		margin-right: 15px;
	}
	.news-carousel .owl-stage div a p:last-of-type {
		color: #fff;
		font-size: 18px;
		line-height: 22px;
		font-family: 'pf_beausans_probold';
		text-transform: uppercase;
	}	
	.diagnostic-text {
		margin-left: -80px;
	}
}	

@media only screen and (max-width: 1024px) {
	.diagnostic-text p:first-of-type {
		font-size: 40px;
	}
	.diagnostic-text p:first-of-type span {
		font-size: 32px;
	}
	.service-menu, .global-menu {
		display: none;
	}
	.mobile { 
		display: block;
	}
	.container.branch-list {
		width: 100%;
		max-width: 100%;
	}
	.branch-socials span:last-of-type {
		margin-left: 10px;
	}
	footer .partner a {
		padding: 0 17px;
	}
	#vmap {
		top: -40px;
	}
}	

@media only screen and (max-width: 992px) {
	#diagnostic .wrap {
		width: 100%;
	}
	
	.diagnostic-text {
		margin-left: 0px;
	}	
	
	a.button {
		top: 20px;
	}
	
	.diagnostic-text p:first-of-type {
		text-align: center;
		line-height: 32px;
		margin-top: 40px;
	}
	
	.diagnostic-text p:last-of-type {
		text-align: center;	
		font-size: 24px;
	}
	
	.checks div:first-of-type, .checks div:last-of-type,  ul.general-checks li {
		width: 100%;
	}
	
	.checks, ul.general-checks {
		width: 280px;
		margin: 0 auto;
	}
	
	ul.general-checks li {
		line-height: 36px;
		background: url(../images/bull-blue.png) 0px 13px no-repeat
	}
	
	.col-button {
		text-align: center;
	}
	
	a.button {
		margin-left: 0;
		font-size: 16px;
		height: 36px;
		line-height: 36px;
		border-radius: 18px;
	}
	.video-top p.round {
		border: none;
		border-top: 2px solid #fff;
		border-bottom: 2px solid #fff;
		border-radius: 0;
		height: auto;
		font-size: 21px;
		line-height: 25px;
		padding: 20px 0px;
		width: 100%;
		
	}
	
	section#video {
		height: 300px
	}
}	

@media only screen and (max-width: 768px) {
	.map-top-layer h1 span {
		display: block;	
		font-size: 24px;
		text-transform: capitalize;
		margin-top: 5px;
	}	
	
	.map-top-layer h1 {
		display: block;	
		font-size: 46px;
		line-height: 34px;
		text-transform: capitalize;	
		height: 90px;		
		border-radius: 45px;
		overflow: hidden;
	}	
	.map-top-layer {		
		margin-left: -150px;
	}
	
	.map-top-layer p {
		font-size: 14px;
	}
	
	.branch-button span {
		font-size: 16px;	
		background-size: 20px;
		background-position: 0px 6px;
	}
		
	.branch-list .col:nth-of-type(1) .branch-button span, .branch-list .col:nth-of-type(2) .branch-button span, .branch-list .col:nth-of-type(3) .branch-button span {
		background-size: 15px;
		background-position: 0px 13px;
		padding-left: 25px;		
	}
	
	.branch-category {
		width: 200px;
		margin: 0 auto;
		text-align: left;
	}
	
	.branch-menu {
		position: relative;
		background: none;
		border: none;
		box-shadow: none;
	}
	
	.branch-menu ul {
		padding: 0;
		margin: 0 0 0 45px;		
	}
	
	section#open-service p {
		border: none;
		border-top: 2px solid #fff;
		border-bottom: 2px solid #fff;
		border-radius: 0;
		height: auto;
		
		font-size: 21px;
		line-height: 25px;
		padding: 20px 0px;
		width: 100%;
	}

	.contact-item:first-of-type {
		margin-top: 0;
	}
	
	.branch-socials {
		width: 100%;
		margin-top: 20px;
	}
	
	.your-branch p:first-of-type {
		font-size: 24px;
		line-height: 24px;
	}
	
	.your-branch p:last-of-type {
		font-family: 'pf_beausans_probold';
		font-size: 36px;
		line-height: 36px;
	}	
	
	.your-branch {
		text-align: center;
		padding: 50px 0 25px 0;
		background: url(../images/marker-big.svg) no-repeat;
		background-position: 50% calc(50% + 15px);
		margin-bottom: 20px;
		background-size: 60px;
	}	
	
	.map-top-layer {
		top: 150px;
	}

	section#icons .row {
		display: block;	
	}
	
	section#icons .col {
		width: 100%;
	}
	
	section#icons p.title {
		line-height: 40px;
		margin-top: 40px;
	}
	
	section#icons p.title, section#icons p.title span {
		font-size: 24px;		
	}
	
	
	section#icons p.title span {
		margin-bottom: 40px;
	}
	
	section#icons p.title b {
		display: block;
		font-size: 36px;
	}	

	section#icons .col p {
		font-size: 22px;
		margin-top: 10px;
		margin-bottom: 40px;	
		
	}
	
	footer .col {
		text-align: center;
		margin-bottom: 20px;
	}
	
	footer .partner a {
		float: none;
		display: inline-block;
	}
	
	.copyright img {
		display: none;
	}
	
	.copyright p:first-of-type, .copyright p:last-of-type{
		margin-left: 0;
	}	
	
	footer .w-100 {
		height: 0px;		
	}
	
	.madein p {
		margin-top: 0;
	}
	
	footer {
		background: #3E3D40;
		padding: 40px 0 20px 0;
	}
	
	section#news p.title {
		margin: 40px 0 40px 0;
	}
	
	section#what-we-can {
		padding-top: 40px;
		padding-bottom: 60px;
	}
	
	section#reviews {
		padding: 40px 0 60px 0;		
	}
	
	section#instagram {
		padding: 40px 0 50px 0;
	}
	
	section#news p.title, section#what-we-can p.title, section#reviews p.title, section#instagram p.title {
		font-size: 30px;
		line-height: 32px;
	}

	section#personal p.title {
		font-size: 30px;
		line-height: 32px;		
	}
	
	p.subscribe span {
		font-size: 17px;
		padding-right: 15px;
	}
	
	p.subscribe a {
		font-size: 14px;
		height: 24px;
		line-height: 24px;
		top: 0px;
		margin-left: 15px;
		padding: 0 15px;
		
	}
	p.subscribe  {
		white-space: nowrap;
	}
	
	section#what-we-can p.title span {
		margin: 0;
		font-size: 16px;	
	}
	
	section#what-we-can .wrap p {
		font-size: 15px;
		line-height: 18px;
		text-align: left;
	}
	
	#what-we-can ul {
		margin-bottom: 0;
		padding-left: 0;
		display: none;
	}
	
	#what-we-can ul.showing {
		display: block;
	}
	
	section#what-we-can .wrap p {
		max-width: 100%;
		margin-bottom: 0px;
	}
	.collapse-wrap {
		text-align: center;
		display: block;
	}
	a.show {
		font-size: 13px;
		color: #009BDD;
		text-decoration: none;
		border-bottom: 1px dashed #009BDD;	
	}
	#reviews .carousel-wrap {
		width: 100%;
	}
	.carousel-wrap {
		width: calc(100% - 40px);
	}
	.owl-carousel .owl-nav .owl-next {
		right: -30px;
	}
	.owl-carousel .owl-nav .owl-prev {
		left: -30px;
	}
	.video-top a {
		font-size: 16px;
		margin-top: 10px;
	}	
	a.back-to-top.show { 
		display: none;
	}
}

@media only screen and (max-width: 640px) {
	.branch-list {
		margin-top: -80px;
	}
	.map-top-layer {
		top: 120px;
	}	
	#vmap {
		top: 0px;
	}	
}	

@media only screen and (max-width: 520px) {
	.branch-list {
		margin-top: -20px;
	}

}	

@media only screen and (max-width: 480px) {
	.branch-list {
		margin-top: 0px;
	}
	.map-top-layer {
		top: 90px;
	}	
	
	#vmap {
		top: 20px;
	}		
}	

@media only screen and (max-width: 320px) {
	.branch-list {
		margin-top: 40px;
	}
	#vmap {
		top: 40px;
	}	
	.map-top-layer h1 {
		font-size: 37px;
		line-height: 30px;			
		height: 76px;		
	}
	
	.map-top-layer {
		margin-left: -135px;
	}	
}	

/*-------Oil --------------------*/

.oil {
	height: 630px;
	background: url(../images/oil-bg.jpg) center center no-repeat;
	background-size: cover; 
}

.oil-content__top {
	display: flex;
}

.oil-content__recommend-logo {
	display: flex;
}

.oil-content__recommend-logo p {
	margin: 0;
}

.oil-content__recommend-logo img {
	width: 90px;
	height: 90px;
}

.oil-content__recommend-logo span {
	display: block;
    font-family: 'magistralblackcregular';	
    color: #0997da;
	font-size: 40px;
    line-height: 1;
	margin: 2px 0 0 5px;
}

.oil-content__recommend {
	margin: 20px 0 0 60px;
}

.oil-content__recommend > p {
	font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    font-size: 20.1px;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 0 5px;
    letter-spacing: -.3px;
}


.oil-content__bottom {
	width: 50%;
	text-align: center;
}

.oil-content__bottom > p:first-of-type {
  	font-size: 30px;
	font-family: 'pf_beausans_probold';
	text-transform: uppercase;
	line-height: 1.2;
	margin: 40px 0 20px 0;
}

.oil-content__bottom > p:nth-of-type(2) {
	margin-bottom: 40px;
}

.oil-content__bottom > p:nth-of-type(2) > span:first-of-type {
	color: #ffe23b;
}

.oil-content__bottom > p:nth-of-type(2) span {
	display: block;
	font-size: 47px;
	color: #0997da;
	line-height: 1.2;
	text-align: center;
	text-shadow: 0px 3px 2px rgba(0, 0, 0, 0.41);
	font-family: 'pf_beausans_problack';
	text-transform: uppercase;
}

.oil-content__bottom a.button {
	font-size: 20px;
    line-height: 1;
    height: auto;
    text-transform: none;
    padding: 15px 20px;
    font-family: 'pf_beausans_prosemibold';
    border-radius: 50px;
    top: auto;
}


@media only screen and (max-width: 991px) { 
	.oil-content__top {
		justify-content: space-between;
	}
	.oil-content__bottom {	
		width: 100%;
	}

	.oil-content__bottom > p:first-of-type { 

	    background: rgba(255,255,255,0.75);
	    -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	    -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	    display: inline-block;
	    border-radius: 37px;
	    padding: 8px 37px;	
	}

	.oil-content__recommend > p {
		background: rgba(255,255,255,0.75);
	    padding: 2px 5px 0 5px;
	    margin-left: 0px;
	    margin-top: 5px;
	}
}

@media only screen and (max-width: 640px) { 
	.oil-content__top > img {
		width: 100px;
		height: 102px;
	}

	.oil-content__recommend-logo img {
	    width: 50px;
	    height: 50px;
	}

	.oil-content__recommend-logo span {
		font-size: 22px;
	}

	.oil-content__recommend {
	    margin: 20px 0 0 0px;
	}	

	.oil-content__recommend > p {
		font-size: 11.5px;
	}

	.oil-content__bottom > p:first-of-type {
    	font-size: 20px;
	}    	

	.oil-content__bottom > p:nth-of-type(2) span {
		font-size: 27px;
	}

	.oil {		
		background: url(../images/oil-bg-mob.jpg) center center no-repeat;
		background-size: contain;
		height: 500px;
	}	

	.oil-content__bottom > p:first-of-type { 
	    padding: 8px 15px;	
	}
}	

.reviews-services {
	text-align: center;	
	background: url(../images/revs/pattern.jpg);
	padding: 50px 0;
	border-bottom: 4px solid #009BDD;
}

.reviews-services p {
	color: #009bdd;
	font-size: 39px;
	margin-bottom: 50px;
	line-height: 1;
}


.reviews-services .col-md-4 > div{
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
}

.reviews-services img {
    position: relative;
    z-index: 1;
    filter: grayscale(100%);
    transition: all ease .3s;
}

.reviews-services a:hover img {
	filter: grayscale(0);
}

.rev-count {
	background: #ff1d1d;
    display: table;
    font-size: 17px;
    line-height: 34px;
    height: 34px;
    border-radius: 17px;
    color: #fff;
    margin: 10px auto 0 auto;
    padding: 0 10px;
    font-weight: 100;
    position: relative;
    top: -50px;
    z-index: 0;
    opacity: 0;
    transition: all ease .3s;
}

.rev-count.count-start {
	opacity: 1;
	top: 0px;
}

@media only screen and (max-width: 640px) { 
	.reviews-services .col-md-4 {
		margin-bottom: 40px;
	}

	.reviews-services p {
		font-size: 24px;
	}
}