/****************************** ****************************** 
    font-family: 'Ubuntu', sans-serif; 300, 400, 500, 700
    font-family: 'Raleway', sans-serif; 400, 600, 700
    font-family: 'Roboto', sans-serif; 400, 500, 700
****************************** *****************************/
/****************************** ****************************** 
                   		 Landing Page CSS
****************************** *****************************/
.landing-page {
	background: rgba(0, 0, 0, 0) url("../images/landing-bg.jpg") no-repeat scroll 50% 0 / cover;
	height: 100%;
	width: 100%;
	position: fixed;
	text-align: center;
	display: flex;
	align-items: flex-start;
}
.logo-ladning {
	display: block;
	padding-top: 18%;
}
.logo-ladning img {
	max-width: 100%;
}
.cta-btns {
	display: block;
	margin: 60px 0 0;
}
.btn-gray, .btn-blue {
	display: inline-block;
	border: 3px solid #ffffff;
	font-family: 'Roboto', sans-serif;
	font-size: 25px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 25px;
	text-align: left;
	position: relative;
	height: 84px;
	padding: 12px 60px;
	color: #ffffff;
	vertical-align: middle;
	margin: 0 13px;
}
.btn-blue {
	text-align: right;
}
.btn-gray i, .btn-blue i {
	position: absolute;
	width: 50px;
	left: 10px;
	top: calc(50% - 17px);
	color: #fff;
	text-align: center;
	font-size: 30px;
	transition: all 0.15s ease;
}
.btn-blue i {
	left: auto;
	right: 10px;
}
.btn-gray span, .btn-blue span {
	position: relative;
}
.btn-gray::before, .btn-blue::before {
	background: #7c7c7c;
	background: -moz-linear-gradient(top, #7c7c7c 0%, #343434 100%);
	background: -webkit-linear-gradient(top, #7c7c7c 0%, #343434 100%);
	background: linear-gradient(to bottom, #7c7c7c 0%, #343434 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7c7c7c', endColorstr='#343434', GradientType=0 );
	height: 100%;
	position: absolute;
	content: '';
	width: 9px;
	left: 0;
	top: 0;
	z-index: 0;
	transition: width 0.15s ease;
}
.btn-blue::before {
	background: #00bff3;
	background: -moz-linear-gradient(top, #00bff3 0%, #0660a5 100%);
	background: -webkit-linear-gradient(top, #00bff3 0%, #0660a5 100%);
	background: linear-gradient(to bottom, #00bff3 0%, #0660a5 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00bff3', endColorstr='#0660a5', GradientType=0 );
	left: auto;
	right: 0;
}
.btn-gray:hover::before, .btn-blue:hover::before {
	width: 100%;
}
.btn-gray:hover i {
	left: 5px;
}
.btn-blue:hover i {
	right: 5px;
}
.car-pic {
	width: 45%;
	margin: 0 auto;
}
.car-pic img {
	max-width: 100%;
}
/****************************** ****************************** 
                   	 Car Wash Page CSS
****************************** *****************************/
header {
	width: 100%;
	transition: all 0.3s;
}
header.sticky {
	background: rgba(0, 0, 0, 0.9);
}
.top-bar {
	display: block;
	padding: 8px 0;
}
.top-bar ul {
	list-style-type: none;
	margin: 0;
	padding: 0
}
.top-bar ul li {
	display: inline-block;
	vertical-align: middle;
	margin-right: 20px;
}
.top-bar ul li a {
	font-size: 12px;
	color: #ffffff;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
}
.top-bar ul li i {
	font-size: 16px;
	color: #ffffff;
	vertical-align: middle;
	padding-right: 8px;
}
.main-header {
	display: block;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 15px 0;
}
.main-header .navbar {
	padding: 0;
}
.navigation {
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}
.navigation .navbar-nav > li.nav-item {
	padding: 0 1.25rem;
}
.navigation .navbar-nav > li.nav-item:last-child {
	padding-right: 0;
}
.navigation .navbar-nav > li.nav-item > a.nav-link, .navigation .navbar-nav > li.nav-item > a.nav-link:focus {
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	color: #ffffff;
	position: relative;
	padding: 0;
}
.navigation .navbar-nav > li.nav-item > a.nav-link:hover, .navigation .navbar-nav > li.nav-item > a.nav-link:focus:hover {
	color: #fff;
}
.navigation .navbar-nav > li.nav-item > a.nav-link.active, .navigation .navbar-nav > li.nav-item > a.nav-link:focus.active {
	color: #fff;
}
.navigation .navbar-nav > li.nav-item > a.nav-link:before, .navigation .navbar-nav > li.nav-item > a.nav-link.active:before {
	height: 5px;
	position: absolute;
	content: '';
	-webkit-transition: all 0.35s ease;
	transition: all 0.35s ease;
	background-color: #439ed6;
	width: 0;
	top: -42px;
	left: 0;
}
.navigation .navbar-nav > li.nav-item > a.nav-link:hover:before, .navigation .navbar-nav > li.nav-item > a.nav-link.active::before {
	width: 100%;
}
.banner-section {
	background-color: #222222;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	display: block;
	height: 100vh;
	min-height: 600px;
	position: relative;
}
.banner-section .container {
	position: relative;
	height: 100%;
}
.banner-text {
	left: 0;
	max-width: 500px;
	position: absolute;
	top: 60%;
	width: 100%;
	padding: 0 15px;
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	-o-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}
.banner-text h1 {
	color: #ffffff;
	font-size: 60px;
	line-height: 1.1;
	font-weight: 700;
	margin: 0;
	padding: 0;
}
.banner-text p {
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	color: #ffffff;
	font-size: 25px;
	margin: 15px 0 60px;
}
.wrap-section-border {
	margin-bottom: -165px;
}
.bg_inner {
	position: relative;
	z-index: 99 !important;
	margin-top: -25px;
	padding-bottom: 80px;
	top: -10px;
}
.border-section-top {
	position: relative;
	overflow: hidden;
	padding-top: 110px;
}
.border-section-top::before, .border-section-top::after {
	background-color: #222;
	position: absolute;
	top: 19px;
	width: 170px;
	height: 80px;
	content: '';
}
.border-section-top::before {
	left: -70px;
	box-shadow: 4px 2px 0 2px #f5f5f5;
	transform: skew(-58deg, 10deg);
}
.border-section-top::after {
	right: -70px;
	box-shadow: -4px 2px 0 2px #f5f5f5;
	transform: skew(58deg, -10deg);
}
.border-section-bottom {
	position: relative;
	bottom: 80px;
	z-index: 10;
	display: block;
	width: 100%;
	padding-bottom: 80px;
}
.border-section-bottom::before, .border-section-bottom::after {
	position: absolute;
	bottom: 0;
	content: '';
}
.border-section-bottom::before {
	right: 127px;
	width: 165px;
	height: 54px;
	background-color: #f5f5f5;
	transform: skewX(-42deg);
}
.border-section-bottom::after {
	right: 35px;
	border-right: 50px solid transparent;
	border-bottom: 55px solid #f5f5f5;
	border-left: 50px solid transparent;
}
.our-service-section {
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	display: block;
	position: relative;
}
.our-service-section::after {
	background: rgba(67, 158, 214, 0.8);
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	content: '';
}
.our-service-wrap {
	display: block;
	padding: 120px 0;
	position: relative;
	z-index: 100;
}
.title-heading-part {
	position: relative;
	padding-bottom: 60px;
}
.title-heading-part h2 {
	font-family: 'Raleway', sans-serif;
	font-weight: 700;
	font-size: 40px;
	color: #ffffff;
	text-transform: uppercase;
	margin: 0;
}
.title-heading-part p {
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
	margin: 10px 0 0;
}
.service-list {
	display: block;
	background: #222222;
	transition: all 1s ease;
	padding: 35px;
	position: relative;
	min-height: 270px;
}
.service-list::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background-color: #555;
	content: '';
}
.service-icon {
	display: block;
	margin-bottom: 40px;
	width: 90px;
	height: 90px;
}
.service-name {
	display: block;
	margin-bottom: 30px;
}
.service-name h3 {
	font-family: 'Raleway', sans-serif;
	font-weight: 700;
	font-size: 36px;
	color: #ffffff;
	text-transform: uppercase;
	margin: 0;
}
.service-name h4 {
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 20px;
	color: #ffffff;
	margin: 0;
}
.decor-1 {
	width: 30px;
	margin-bottom: 20px;
	border-top: 1px solid #ffffff;
}
.decor-1::after {
	display: block;
	width: 30px;
	margin-top: 2px;
	margin-left: 10px;
	border-top: 1px solid #ffffff;
	content: '';
}
.service-list-overlay {
	position: absolute;
	background: #ffffff;
	padding: 35px;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}
.service-list-overlay .decor-1 {
	border-top: 1px solid #363636;
}
.service-list-overlay .decor-1::after {
	border-top: 1px solid #363636;
}
.service-list:hover .service-list-overlay {
	opacity: 1;
}
.service-decription {
	display: block;
}
.service-decription p {
	font-weight: 400;
	font-size: 15px;
	color: #252525;
}
.service-decription ul {
	list-style-type: none;
	margin: 0 0 15px;
	padding: 0;
}
.service-decription ul li {
	list-style-type: disc;
	font-weight: 500;
	font-size: 15px;
	color: #252525;
}
.service-decription ul li span {
	display: block;
	font-weight: 300;
}
.service-price {
	position: absolute;
	bottom: 25px;
	right: 30px;
	font-size: 40px;
	color: #363636;
	font-weight: 700;
	text-transform: uppercase;
	text-align: right;
	line-height: 26px;
}
.service-price span {
	font-size: 18px;
	display: block;
}
.about-section {
	background: #f5f5f5;
	padding: 120px 0;
}
.about-section h2 {
	font-family: 'Raleway', sans-serif;
	font-weight: 700;
	font-size: 40px;
	color: #121212;
	text-transform: uppercase;
	margin: 0 0 15px;
}
.about-section p {
	color: #a6a6a6;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 20px;
	line-height: 22px;
}
.about-section p:last-child {
	margin-bottom: 0;
}
.about-section ul {
	list-style-type: disc;
	margin: 0 0 20px 15px;
	padding: 0;
}
.about-section ul li {
	color: #a6a6a6;
	font-size: 14px;
	font-weight: 400;
}
.rewards-section {
	background: url(../images/reward-bg.jpg) no-repeat 100% 0% / cover;
	padding: 120px 0;
}
.rewards-section .title-heading-part {
	padding-bottom: 0;
	max-width: 570px;
	margin: 0 auto;
}
.rewards-section .title-heading-part p {
	margin: 20px 0 0;
	font-size: 14px;
	line-height: 22px;
}
.work-section {
	background: #e1e1e1;
	padding: 120px 0;
}
.work-section .title-heading-part h2 {
	color: #121212;
}
.brand-logo {
	display: block;
}
.brand-logo ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-flow: wrap;
	width: 100%;
}
.brand-logo ul li {
	width: 14.28%;
	text-align: center;
	float: left;
	margin: 25px 0;
}
.brand-logo ul li img {
	max-width: 100%;
}
.contact-section {
	background: #f5f5f5;
	padding: 120px 0;
}
.contact-section .title-heading-part h2 {
	color: #121212;
}
.contact-section .title-heading-part p {
	color: #686868;
}
.wrap-subtitle-section {
	display: block;
	margin-bottom: 25px;
}
.center-content {
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.center-content .decor-1 {
	margin: 30px auto 0px;
	height: 30px;
}
.center-content .decor-1 {
	border-top: 1px solid #ccc;
}
.center-content .decor-1::after {
	border-top: 1px solid #ccc;
}
.decor-2 {
	position: relative;
	display: inline-block;
	margin-top: 6px;
	text-align: center;
}
.decor-2::before, .decor-2::after {
	background-color: #439ed6;
	position: absolute;
	top: 5px;
	display: block;
	width: 14px;
	height: 14px;
	content: '';
	transform: rotate(45deg);
}
.decor-2::before {
	right: -10px;
}
.decor-2::after {
	left: -10px;
}
.decor-2 i {
	position: relative;
	display: inline-block;
	width: 23px;
	height: 23px;
	font-size: 12px;
	line-height: 1;
	color: #555;
	border: 3px solid #f5f5f5;
	border-radius: 3px;
	background-color: #ddd;
	z-index: 1;
	transform: rotate(45deg);
	vertical-align: inherit;
	margin: 0;
}
.decor-2 i::before {
	display: block;
	margin: 3px 0 0 1px;
	transform: rotate(-45deg);
}
.ui-title-inner {
	margin-bottom: 12px;
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #363636;
	text-transform: uppercase;
	margin-top: 20px;
}
.btn-submit {
	background: #38abf4;
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 600;
	color: #ffffff;
	border: none;
	border-right: 5px solid #363636;
	height: 42px;
	min-width: 160px;
	transition: all 0.15s ease;
}
.btn-submit:hover {
	background: #363636;
	border-right: 5px solid #38abf4;
	color: #ffffff;
}
.contact-form-part .btn-submit {
	margin-top: 15px;
}
footer {
	display: block;
	text-align: center;
	padding: 40px 0;
	background: #f5f5f5;
}
footer .border-section-top::before, footer .border-section-top::after {
	background-color: #38abf4;
}
.footer-main-section {
	background-color: #181818;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	display: block;
	padding-bottom: 100px;
	position: relative;
	z-index: 10;
}
.footer-main-section::after {
	background: rgba(24, 24, 24, 0.9);
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	content: '';
}
.footer-inner-section {
	padding-top: 50px;
	padding-bottom: 50px;
	position: relative;
	z-index: 100;
}
.footer-logo {
	display: block;
	margin: 70px 0;
	text-align: center;
}
.footer-logo .img-fluid {
	display: inline-block;
	max-width: 120px;
}
.footer-logo .decor-1 {
	display: block;
	width: 170px;
	margin: 20px auto;
	border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.footer-logo .decor-1::after {
	width: 170px;
	margin-left: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.footer-info {
	display: block;
	margin-bottom: 50px;
}
.footer-info:last-child {
	margin-bottom: 0;
}
.footer-info ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	font-size: 0;
}
.footer-info ul li {
	font-family: 'Roboto', sans-serif;
	display: inline-block;
	font-size: 20px;
	color: #ffffff;
	font-weight: 400;
	padding: 0 15px;
}
.footer-info ul li a {
	color: #ffffff;
}
.footer-info ul li a:hover {
	color: #ffffff;
	text-decoration: underline;
}
.footer-info ul li span {
	font-weight: 700;
	color: #828282;
}
.footer-info ul li p {
	display: inline-block;
}
.f-location.footer-info ul li p, .f-location.footer-info ul li span {
	display: block;
}
.footer-top-btn {
	position: relative;
	width: 300px;
	margin-top: -70px;
	margin-right: auto;
	margin-left: auto;
	border-top: 132px solid #181818;
	border-right: 150px solid transparent;
	border-left: 150px solid transparent;
	z-index: 10;
	text-align: center;
}
.top-btn {
	position: absolute;
	top: -53px;
	left: -10px;
	font-size: 12px;
	color: #999;
	text-transform: uppercase;
}
.top-btn::after, .top-btn::before {
	position: absolute;
	content: '';
}
.top-btn::before {
	top: -38px;
	left: -14px;
	border-right: 25px solid transparent;
	border-bottom: 33px solid #1e3384;
	border-left: 25px solid transparent;
	z-index: 15;
}
.top-btn::after {
	top: -23px;
	left: 2px;
	border-right: 9px solid transparent;
	border-bottom: 10px solid #eee;
	border-left: 9px solid transparent;
	z-index: 15;
}
.copyright {
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	font-weight: 600;
	margin-top: 40px;
	color: #999;
}
/****************************** ****************************** 
                   	 Dealershop Page CSS
****************************** *****************************/
.dealership-page .banner-text p {
	font-size: 20px;
}
.dealership-page .navigation .navbar-nav > li.nav-item > a.nav-link:before, .dealership-page .navigation .navbar-nav > li.nav-item > a.nav-link.active:before {
	background-color: #6a6a6a;
}
.dealership-page .border-section-top::before, .dealership-page .border-section-top::after {
	background: #353535;
	background: -moz-linear-gradient(top, #353535 0%, #303130 47%, #292929 100%);
	background: -webkit-linear-gradient(top, #353535 0%, #303130 47%, #292929 100%);
	background: linear-gradient(to bottom, #353535 0%, #303130 47%, #292929 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#353535', endColorstr='#292929', GradientType=0 );
}
.dealership-page .our-service-section::after {
	background: rgba(0, 0, 0, 0.3);
}
.dealership-page .service-list {
	background: #040404;
	min-height: 280px;
}
.dealership-page .service-list::after {
	background-color: #252525;
}
.dealership-page .decor-2::before, .dealership-page .decor-2::after {
	background-color: #1e3384;
}
.dealership-page .form-control:focus {
	border-bottom-color: #1e3384;
}
.dealership-page .btn-submit {
	background: #1e3384;
	color: #ffffff;
	border-right: 5px solid #555555;
}
.dealership-page .btn-submit:hover {
	background: #555555;
	border-right: 5px solid #1e3384;
}

.page-id-27 .service-list:hover .service-list-overlay {
	opacity: 0;
}
/* Additional CSS */
.page-id-27 .footer-info.f-location{display:none;}
.page-id-27 .footer-info{display:none;}
.page-id-27 .footer-logo {margin: 70px 0 0;}
.with_price li span {
	float: right;
	font-weight: 500 !important;
}
.page-id-29 .work-section{display:none;}
.with_price span em {
	font-size: 11px;
	font-style: inherit;
	font-weight: 300;
}
.gcaptcha > div {
    margin: 0 auto;
}