
body,html{
  	overflow-x:hidden;
}
  
body {
  font-family: 'Poppins', sans-serif;
	font-size: 16px;
	/*overflow-x: hidden !important;*/
	/*color: #838282;*/
}

/* poppins-regular - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/poppins-v19-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/poppins-v19-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  font-display: swap;
}
/* poppins-italic - latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  src: local(''),
       url('../fonts/poppins-v19-latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/poppins-v19-latin-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  font-display: swap;
}
/* poppins-500 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: local(''),
       url('../fonts/poppins-v19-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/poppins-v19-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  font-display: swap;
}
/* poppins-500italic - latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 500;
  src: local(''),
       url('../fonts/poppins-v19-latin-500italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/poppins-v19-latin-500italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  font-display: swap;
}
/* poppins-600 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: local(''),
       url('../fonts/poppins-v19-latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/poppins-v19-latin-600.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  font-display: swap;
}
/* poppins-600italic - latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 600;
  src: local(''),
       url('../fonts/poppins-v19-latin-600italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/poppins-v19-latin-600italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  font-display: swap;
}

ul{
	padding: 0;
	margin: 0;
	list-style: none;
}
a{
	text-decoration: none;
	/*color: #2f2f2f;*/
}
a:focus{
	outline: none;
	text-decoration: none;
}
h1,h2,h3,h4,h5,h6{
	font-family: 'Poppins', sans-serif;
}

h1 {
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	line-height: 40px;
	margin: 0;
	padding-bottom: 10px;
}

h2 {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	line-height: 40px;
	margin: 0;
	padding-bottom: 10px;
}

h3 {
    padding: 0;
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
    color: #333;
    font-weight: 100;
    margin-bottom: 23px;
    padding-left: 15px;
    border-left: 3px solid #0094ff;
}

h4 {
    padding: 0;
    margin: 0;
    font-size: 18px;
}

img{
 border:none;
}

/* Preloader */

#preloader {
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#fff; /* change if the mask should have another color then white */
	z-index:99999; /* makes sure it stays on top */
}

.loader {
	font-size: 10px;
	top: 300px;
	left: 45%;
	text-indent: -9999em;
	width: 11em;
	height: 11em;
	border-radius: 50%;
	position: relative;
	-webkit-animation: load3 1.4s infinite linear;
	animation: load3 1.4s infinite linear;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
}
.loader:before {
	width: 50%;
	height: 50%;
	border-radius: 100% 0 0 0;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
}
.loader:after {
	background: #fff;
	width: 75%;
	height: 75%;
	border-radius: 50%;
	content: '';
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*scrol to top*/

.scrollToTop {
	border-radius: 50%;
	bottom: 25px;
	display: none;
	font-size: 25px;
	height: 55px;
	line-height: 50px;
	position: fixed;
	right: 15px;
	text-align: center;
	text-decoration: none;
	width: 55px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	z-index: 999;
}
.scrollToTop i{
  padding-top: 15px;
}
.scrollToTop:hover,
.scrollToTop:focus{
  color: #fff;
  text-decoration: none;
  outline: none;
}
testimonial-conten .slick-slide {
    background: transparent !important;
}
.testimonial-conten .slick-slide .testimonial-thumb {
		height: 100px !important;
		width: 100px !important;
}
/*--------------------*/
/* HOME HEADER */
/*--------------------*/

#header {
    background-color: #383838;
	float: left;
    height: 580px;
    background-image:url("../images/bg-minibus.webp");
    background-position: center center;
	align-items: center;
	background-size: cover;
	width: 100%;
	padding-top: 15px;
    padding-bottom: 15px;
	
}
#headerchauffeur {
    background-color: #383838;
    float: left;
    height: 580px;
    background-image: url(../images/bg-car.webp);
    background-position: center center;
	align-items: center;
	width: 100%;
	background-size: cover;
	padding-top: 15px;
    padding-bottom: 15px;
}
#headercoach {
    background-color: #383838;
    float: left;
    height: 580px;
    background-image: url(../images/bg-bus.webp);
    background-position: center center;
	align-items: center;
	width: 100%;
	background-size: cover;
	padding-top: 15px;
    padding-bottom: 15px;
}
#headermain {
    background-color: #383838;
    float: left;
    height: 580px;
    background-image: url(../images/bg_800.webp);
    background-position: center center;
	align-items: center;
	width: 100%;
	background-size: cover;
	padding-top: 15px;
    padding-bottom: 15px;
}
.headerLeft.chauffeurPag h5 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}
.bif {
    display: block;
}
.bif p {
    display: inline-block;
    /*width: max-content;*/
    font-size: 18px !important;
    font-weight: 100 !important;
    position: relative;
    /*margin-right: 25px !important;*/
    padding-left: 30px;
}
.bif p:before {
    content: '';
    display: block;
    position: absolute;
    width: 21px;
    height: 21px;
    background-image: url(../images/icons/bif.png);
    background-repeat: no-repeat;
    left: 0;
    top: 0;
}
.header-shadow{
    -webkit-box-shadow: 0px 2px 4px 0px #f3f3f3;
    -moz-box-shadow: 0px 2px 4px 0px #f3f3f3;
    box-shadow: 0px 2px 4px 0px #f3f3f3;
}
.header-inner{
	display: block;
	position: relative;
	float: left;
	width: 100%;
}
.header-inner>img{
	width: 100%;
}
.header-overlay{
	/*background-color: rgba(0, 0, 0, 0.6);*/
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 10;
}
.header-content {
	float: left;
	width: 100%;
	height: 100%;
	padding: 9% 140px 140px;
	text-align: center;
}

.header-content h1 {
	font-size: 80px;
	font-weight: 100;
	text-transform: uppercase;
	line-height: 80px;
}

.header-content h2 {
	font-size: 80px;
	font-weight: 100;
	text-transform: uppercase;
	line-height: 80px;
}

.header-content h2 span {
	font-weight: normal;
	line-height: 93px;
}
.header-btn-area{
	margin-top: 90px;
	float: left;
	display: inline;
	width: 100%;
	text-align: center;
}
.header-btn-area a{
	margin: 0px 15px;
}
.knowmore-btn{
	border: 2px solid #fff;
	border-radius: 2px;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	font-family: 'Raleway', sans-serif;
	text-transform: uppercase;
	padding: 25px 28px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.download-btn{
	border: 2px solid #fff;
	border-radius: 4px;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	font-family: 'Raleway', sans-serif;
	text-transform: uppercase;
	padding: 25px 28px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.knowmore-btn:hover,
.knowmore-btn:focus,
.download-btn:hover,
.download-btn:focus{
	color: #fff;
	text-decoration: none;
	outline: none;

}

#userForm {
	margin-bottom: 0;
	width: 100%;
    max-width: 450px;
    margin-left: auto;
    color: #333;
	background-color: #272727;
	position: relative;
	z-index: 5;
}
#userForm .form-header {
    background-color: #f9f9f9;
    height: 65px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    -ms-align-items: flex-end;
    align-items: flex-end;
    /*border-bottom: 3px solid #0094ff;*/
    padding: 0 35px;
}

form#userFormp {
    width: 350px;
    margin: 0 auto;
    background-color: rgb(124, 200, 255);
    padding: 15px;
    color: #333333;
    border-radius: 5px;
    font-size: 14px;
}

.rsform_payment_total {
font-size: 15px
}

.form-header .form-h-left {
    height: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;

}

#userForm .form-header .form-h-left img {
	margin-top: 0;
	margin-right: 0;
	float: unset;
    margin-right: 15px;
    min-width: 49px;
}

.form-header .form-h-text {
    font-size: 24px;
}
.form-header .form-h-text span {
    color: #0094ff;
    font-weight: 600;
}

#userForm .form-h-nav {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
}
#userForm .form-h-nav li {
    font-size: 13px;
    text-transform: uppercase;
    /*font-weight: 500;*/
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    padding-bottom: 50px;
    margin-right: 15px;
}
#userForm .form-h-nav li:last-of-type {
    margin-right: 0;
}
#userForm .form-h-nav li span.nav-number {
    border: 2px solid #0094ff;
    border-radius: 50%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-right: 5px;
}
#userForm .form-h-nav li.completed {
    color: #0094ff;
}
#userForm .form-h-nav li.completed span.nav-number {
    color: #fff;
    background-color: #0094ff;
}
#userForm .form-h-nav li.current {
    position: relative;
}
#userForm .form-h-nav li.current:after {
    content: '';
    position: absolute;
    border: 14px solid transparent;
    border-bottom: 10px solid #0094ff;
    bottom: 0;
    left: calc(50% - 7px);
}


#userForm .form-body {
	padding: 10px 35px 30px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #272727;
}

#formTabs {
  /* height: 46px; */
  background-color: #f9f9f9;
  border-bottom: 3px solid #0094ff;
  display: flex;
}

.aform {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #272727;
}

.nav-tabs > li > a.active::after {
    margin-right: 2px;
    line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
    color: #000;
    content: '';
    position: absolute;
    border: 14px solid transparent;
    border-bottom: 10px solid #0094ff;
    bottom: 0;
    left: calc(50% - 7px);
}

.label-form {
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25px;
  float: left;
}

.form-body label .radio-wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
		margin-top: 8px;
		margin-bottom: -14px;
}
.form-body > label .radio-wrapper .radio-box {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    white-space: nowrap;
    margin-bottom: 14px;
}
.form-body > label .radio-wrapper .radio-box > input[type="radio"] {
    opacity: 0;
    width: 23px;
    height: 23px;
    margin-top: -3px;
    position: absolute;
}
.form-body > label .radio-wrapper .radio-box > input[type="radio"]:hover{
  cursor:pointer;
}
.form-body .input-geo input,.form-body .input-time input,.form-body .input-date input, .form-body .input-passengers input,.input-time select{
  border-radius: 0!important;
}

.form-body > label .radio-wrapper .radio-box > label {
    display: block;
    width: 22px;
    height: 22px;
    background-color: #fff;
    border-radius: 3px;
    margin-right: 10px;
    cursor: pointer;
}
.form-body > label .radio-wrapper .radio-box > input[type="radio"]:checked + label {
    background: url('../images/check-icon.png') no-repeat center #fff;

}
.form-body > label .radio-wrapper .radio-box span {
    text-transform: none;
    font-size: 15px;
    font-weight: lighter;
}

#userForm .form-body > label {
	margin-bottom: 0px;
    width: 100%;
    color: #fffefe;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.25px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    position: relative;
}
#userForm .form-body .input-geo,
#userForm .form-body .input-car,
#userForm .form-body .input-luggage,
#userForm .form-body .input-chauffer,
#userForm .form-body .additional-requirements-ta,
#userForm .form-body .input-person,
#userForm .form-body .input-tel,
#userForm .form-body .input-mail,
#userForm .form-body .input-antispam {
	margin-top: 4px;
	margin-bottom: 4px;
}
#userForm .form-body > label input[type="text"],
#userForm .form-body > label input[type="tel"],
#userForm .form-body > label select,
#userForm .form-body > label textarea {
	padding-top: 9px;
	padding-bottom: 9px;
    margin-top: 8px;
    height: 40px;
    margin-bottom: 0px;
    border: 0;
    color: #333;
    padding-left: 15px;
    padding-right: 50px;
    font-size: 15px;
    border-radius: 0!important;
    font-family: 'Poppins', sans-serif;
    font-weight: lighter;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
#rsform_6_page_2 #SendPrev {
width: 20%;
background-color: #ccc;

}

#rsform_6_page_1 #Next2Prev {
width: 20%;
background-color: #ccc;

}


#userForm .form-body > label textarea {
    resize: none;
    height: 80px !important;
    padding: 15px;
}
#about #userForm{
  max-width: none;
  background-color: transparent;
}
#userForm .form-body > label .antispam-image {
    margin-top: 8px;
}
#userForm .form-body > label .antispam-image img {
	margin-top: 0;
	margin-right: 0;
	float: unset;
}

#userForm .form-body > label.half {
		width: calc(50% - 15px);
		margin-top: 5px;
    margin-bottom: 6px;
}

#userForm .form-body > label:after {
    position: absolute;
    right: 13px;
    bottom: 4px;
    z-index: 99;
}

.input-date .input-group-btn{display: none;}

.input-time .input-group-btn{display: none;}

.input-geo:after {
    content: url('../images/geo-icon.png');
}
.input-time:after {
    content: url('../images/time-icon.png');
}
.input-date:after {
    content: url('../images/date-icon.png');
}
.input-passengers:after {
    content: url('../images/people-icon.png');
}
.input-person:after {
    content: url('../images/man-user.png');
}
.input-tel:after {
    content: url('../images/phone-icon.png');
}
.input-mail:after {
    content: url('../images/email-filled-closed-envelope.png');
}
.input-antispam:after {
    content: url('../images/warning.png');
}
.input-chauffer:after {
    content: url('../images/chauffeur.png');
}
.input-car:after {
    content: url('../images/car-compact.png');
}
.input-luggage:after {
    content: url('../images/luggage-icon.png');
}


.form-footer button{
  border-radius: 0!important;
}
#userForm .form-footer {
    background-color: #f9f9f9;
    height: 65px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    padding: 0 35px;
    justify-content: space-between;
}
#userForm .form-footer .form-f-current-step {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    border-left: 4px solid #0094ff;
    padding: 4px 0 4px 8px;
}

#userForm .form-footer .next-step-btn,
#userForm .form-footer .send-request-btn {
    width: 180px;
    height: 50px;
    background-color: #2ecc71;
    border: 0;
    font-size: 16px;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #080808;
    text-transform: uppercase;
    cursor: pointer;
}

.control-group {
    width: 100%;

}


.control-group.half {
    width: calc(50% - 15px);
    margin-top: 3px;
    margin-bottom: 3px;
}

label.control-label {

color: #fffefe;
text-transform: uppercase;
font-size: 13px;
font-weight: 500;
letter-spacing: 0.25px;
display: flex;
/* flex-direction: column; */
position: relative;
}

.aform-control {
  height: 38px;
  margin-bottom: 0px;
  border: 0;
  color: #333;
  padding-left: 14px;
  padding-right: 50px;
  font-size: 15px;
  border-radius: 0 !important;
  font-family: 'Poppins',sans-serif;
  appearance: none;
  font-weight: lighter;
  width: 100%;
}



input[type="text"], input[type="email"], input[type="tel"], select.inputc, textarea.inputc {
    margin-top: 7px;
    height: 38px;
    margin-bottom: 0px;
    border: 0;
    color: #333;
    padding-left: 14px;
    padding-right: 50px;
    font-size: 15px;
    border-radius: 0!important;
    font-family: 'Poppins',sans-serif;
    /* appearance: none; */
    font-weight: lighter;
    width: 100%;
	}

textarea.inputc {
    width: 100%;
    height: 100px;
}

.message-form {
    width: 50%;
    float: right;
    
}

/*--------------------*/
/* MENU */
/*--------------------*/

#menu-area{
	float: left;
	display: inline;
	width: 100%;
    height: 100px;
}
.main-navbar {
  background: #fff none repeat scroll 0 0;
  height: 100px;
  margin-bottom: 0;
  z-index: 1034;
  border: none;
}

.navbar-fixed-top{
	height: 100px;
	/*
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	*/
}

.logo {
	position: relative;
	right: 12px;
    width: 100px;
    padding: 0;
    margin: 25px 0;
    margin-left: 0 !important;
}
.logo  span{
	color: #333;
	display: block;
	font-size: 60px;
	padding-top: 38px;
}
.logo-compressed {
    margin: 17px 0 0;
}
.logo-compressed .logo img {
    height: 90%;
    width: 90%;
}
.navbar-fixed-top .main-nav li a{
  font-size: 14px;
}
.navbar-fixed-top .getQuote a {
    background-color: rgb(0, 148, 255);
    color: #fff;
    display: block;
    float: right;
    transition: .3s;
    width: 170px;
    margin: 18px 0 0;
    padding: 10px 0px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
}

.logo img {
	width: 188px;
	height: auto;
	margin-left: 9px;
}
#navbar {
	float: left;
	width: 82%;
}
#about{
	padding: 50px 0 80px;

}
.main-nav {
	padding-left: 132px;
    display: flex;
    justify-content: space-between;
  /* display: inline-block; */
  text-align: center;
  width: 97%;
  padding-right: 0px;
}
.serviceBlockTitle{
  position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
    display: block;
}
.serviceBlockTitle:before {
    content: "S";
    display: block;
    position: absolute;
    color: #f8f8f8;
    top: -55px;
    text-align: center;
    width: 100%;
    font-size: 165px;
    line-height: 1;
    font-weight: 500;
}
.serviceBlockTitle.testimonTit:before {
    content: "T";
    display: block;
    position: absolute;
    color: #efefef;
    top: -55px;
    text-align: center;
    width: 100%;
    font-size: 165px;
    line-height: 1;
    font-weight: 500;
}
.serviceBlockTitle.flags:before {
    content: "L";
    display: block;
    position: absolute;
    color: #efefef;
    top: -55px;
    text-align: center;
    width: 100%;
    font-size: 165px;
    line-height: 1;
    font-weight: 500;
}
.serviceBlockTitle.flags{
	margin-bottom: 95px !important;
}
#countries{
	padding-top: 144px;
	padding-bottom: 59px;
}
.serviceBlockTitle.aboutCom:before {
    content: "A";
    display: block;
    position: absolute;
    color: #121418;
    top: -55px;
    text-align: center;
    width: 100%;
    font-size: 165px;
    line-height: 1;
    font-weight: 500;
}
.serviceBlockTitle.aboutCom h4{
  color: #fff;
}
.serviceBlockTitle.aboutCom h3{
  color: #0094ff;
}
.flagLink {
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 2px;
    position: relative;
    transition: .3s;
    font-weight: 400;
		padding: 10px 0;
		margin-top: 8px;
}
.countryLink:hover .flagLink:before {
    content: '';
    display: block;
    position: absolute;
    height: 2.5px;
    background: #0094ff;
    width: 30px;
    left: 2px;
    transition: .3s;
    top: 19px;
}
.countryLink:hover .flagLink:after {
    content: '';
    display: block;
    position: absolute;
    height: 2.5px;
    background: #0094ff;
    width: 30px;
    right: 2px;
    transition: .3s;
    top: 19px;
}
.countryLink {
    text-align: center;
    margin-bottom: 47px;
}

.blog-banner-area h1 {
    color: #fff;
    font-size: 50px;
    padding-bottom: 0px;
    font-weight: 100;
    line-height: 1;
    font-family: Poppins;
    margin-bottom: 35px;
}

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    font-size: 14px;
    font-family: verdana;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    color: #ecf0f1;
    background: #212327;
}

button.btn.btn-primary.btn-sm.acceptcookies {
    font-size: 14px;
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
}

.cookiealert a {
    text-decoration: underline;
    color: #0094ff;
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}

.footerTopArea {
    display: inline-block;
    width: 100%;
	padding: 126px 0 48px;
    justify-content: space-between;
    align-items: center;
}
.footerBottomArea .footerMenuLinks{
	padding-left: 13px;
}
.footerBottomArea .footerMenuLinks ul li{
	padding-left: 22px;
    margin-bottom: 9px;
}
.footerBottomArea .footerMenuLinks ul li a{
	font-size: 16px !important;
}
.footerMenuLinks h4 {
    margin: 0;
    text-transform: uppercase;
    color: #333;
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.footerMenuLinks ul li {
    padding-left: 15px;
    margin-bottom: 5px;
    position: relative;
    width: 100%;
}

.footerMenuLinks ul li a {
    color: #444;
    font-size: 16px !important;
    border: none;
    text-align: left;
    padding: 0px;
}
.footerMenuLinks ul li:before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../images/carret.png);
    background-repeat: no-repeat;
    width: 5px;
    height: 9px;
    left: 0;
    top: 7px;
    transition: 0.4s ease;
}
.footerMenuLinks ul li:hover::before {
	left: 4px;
}
.footerMenuLinks ul li a {
    color: #444;
    font-size: 16px !important;
}
.footerMenuLinks ul li a:hover {
    color: #0094ff;
    text-decoration: none;
}
.footerBottomArea {
    display: inline-block;
    width: 100%;
    position: relative;
    padding-bottom: 53px;
}
.fco {
    border-top: 1px solid #eee;
    padding: 46px 0;
}
.fco .col-md-6{
	padding-left: 0;
}
.copyr p a {
    color: #0094ff;
    font-weight: 500;
    text-decoration: none;
}
.copyr p {
    margin: 0;
    font-size: 14px;
    color: #999;
    line-height: 1.1;
}
ul.footerSocial li {
    display: inline-flex;
    text-align: right;
    margin-right: 5%;
}
ul.footerSocial li:last-child {
    margin-right: 0;
}
ul.footerSocial li a {
    font-size: 14px;
    color: #bababa;
    letter-spacing: 0.5px;
    font-weight: 100;
    text-decoration: none;
}
ul.footerSocial li a:hover{
      color: #0094ff;
}
ul.footerSocial li a span {
    top: -1px;
    margin-right: 5px;
    position: relative;
}
ul.footerSocial {
    line-height: 1;
    margin-top: -1.6px;
    text-align: right;
}
.contactInfo.e h4:before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../images/icon_email.png);
    width: 16px;
    height: 11px;
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    top: 1px;
}
.contactInfo.p h4:before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../images/phone_icon.png);
    width: 16px;
    height: 11px;
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    top: 1.5px;
}
.contactInfo h4 {
    margin: 0;
    text-transform: uppercase;
    font-size: 14px;
    color: #0094ff;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    letter-spacing: 0.2px;
}
.contactInfo h2 {
    font-size: 24px;
    margin: 0;
    padding: 0;
    line-height: 1.1;
}
.contactInfo h2 span {
    color: #0094ff;
}
.contactInfo a {
    text-decoration: none;
}
.flagLink a {
    text-decoration: none;
}
.serviceBlockTitle h4{
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 18px !important;
  letter-spacing: 2px;
  margin: 0;
  position: relative;
  z-index: 1;
  line-height: 1;
  color: #333333;
  font-weight: 100;
  border: none;
}
.serviceBlockTitle h3{
  color: #333;
font-size: 40px;
line-height: 1;
position: relative;
z-index: 1;
letter-spacing: 1px;
padding: 0;
font-weight: 100;
margin: 0;
border: none;
}
.serviceBlockTitle h3 span{
  font-weight: 900;
}
.main-nav li {
	display: inline-block;
	float: none;
}
.main-nav li a {
  color: #333333;
  font-size: 17px;
  font-weight: 500;
  padding: 38.5px 0px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.less-padding{
	padding: 30px 20px !important;
}
.getQuote {
	position: relative;
  display: inline-block;
  width: 22%;
    float: right;
    top: -100px;
    right: -124px;
}
.getQuote.foot{
	top: 0;
	right: 0;
}
.getQuote::before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../images/car.png);
    width: 130px;
    right: -40px;
    background-size: auto;
    bottom: -11px;
    height: 50px;
    background-repeat: no-repeat;
}
.getQuote.foot::before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../images/carfooter.png);
    width: 130px;
    right: 15px;
    background-size: auto;
    bottom: -10px;
    height: 50px;
    background-repeat: no-repeat;
}
.getQuote a {
    background-color: rgb(0, 148, 255);
    color: #fff;
    display: block;
    margin: 25px 0 0;
    padding: 12px 10px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
}

.headerLeft h1 {
    font-size: 34px;
    padding-bottom: 0;
    margin: 0;
    margin-bottom: 30px;
    letter-spacing: 1px;
    line-height: 38px;
    border-left: 4px solid #0094ff;
    padding-left: 20px;
}

.headerLeft h2 {
    font-size: 22px;
    padding-bottom: 0;
    margin: 0;
    margin-top: 50px;
    margin-bottom: 10px;
    font-weight: 400;
    padding-left: 20px;
}
.stepsLeft h4 {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 22px;
    margin: 0;
    color: #fff;
    margin-bottom: 40px;
    position: relative;
    font-weight: 400;
}
.stepsLeft h4 span {
    color: #0094ff;
    font-weight: 600;
}
.headerLeft .stepsLeft:last-child{
	margin-bottom: 0  !important;
}
.step {
    display: inline-block;
    width: 100%;
    position: relative;
    /*margin-bottom: 45px;*/
}
.stepImg {
    display: inline-block;
    width: 15%;
    float: left;
}
.stepText {
    display: inline-block;
    width: 85%;
}
.stepText h5 {
    margin: 0;
    font-size: 22px;
    color: #0094ff;
    font-weight: 600;
    margin-bottom: 9px;
    letter-spacing: 1.5px;
}
.stepText p {
    margin: 0;
    color: #fff;
    padding-left: 20px;
    /*letter-spacing: 1px;*/
    /*font-size: 12px;*/
    /*line-height: 24px;*/
    
}
.headerRight img {
    max-height: 575px !important;
    margin-top: 85px;
    float: right;
    margin-right: 5%;
}
.stepsLeft h4:before{
  display: block;
  content: '';
  position: absolute;
  width: 15px;
  height: 3px;
  bottom: -2px;
  left: 0;
  background: #fff;
}
.navbar-default .navbar-nav > li > a {
  color: #333;
 /* -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
*/
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  background-color: transparent;
  border-bottom: 3px solid;
  margin: 0 auto;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    background-color: transparent;
}
.search-area {
	display: inline-block;
	float: right;
	height: 60px;
	padding: 0;
	position: relative;
	width: 5%;
}
.search-area input[type="text"] {
	height: 100%;
	font-size: 20px;
	display: inline-block;
	font-weight: 100;
	border: none;
	outline: none;
	line-height: 20px;
	color: #555;
	padding: 3px 60px 0px 3px;
	width: 0px;
	position: absolute;
	top: 11%;
	right: 0;
	background: none;
	z-index: 3;
	-webkit-transition: width .4s cubic-bezier(0.000, 0.795, 0.000, 1.000);
	        transition: width .4s cubic-bezier(0.000, 0.795, 0.000, 1.000);
	cursor: pointer;
}
.col-md-3.np {
    padding: 0;
    border-right: 1px solid #eee;
    position: relative;
    text-align: center;
}
section#testiomnial {
    /*background-image: url("../images/bgTest.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;*/
	padding: 145px 0 40px;
	margin-top: 95px;
}
section#testiomnialWhite {
    /*background-image: url("../images/bgTestWhite.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-position: center -145px;*/
    padding: 70px 0 20px;
}
#chauffeurServices.defaultSection{
	padding: 40px 0 10px;
}
#safety.defaultSection{
	padding: 111px 0 87px;
}
#vehicleClass.defaultSection{
	padding: 111px 0 77px;
}
.titleBlock.safety.city{
	margin-bottom: 0px;
}
.aboutCompanyText {
    display: block;
    /*height: 693px;
    padding: 0 1%;
    overflow-y: scroll;
    overflow-x: hidden;*/
}
.aboutCompanyText p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.5;
    font-weight: 100 !important;
}
.txtImage {
    display: inline-block;
    width: 100%;
    padding: 25px 0;
}
.txtImage img {
    width: 25%;
    float: left;
    margin: 2px 0 0 0;
    display: inline-block;
}
.txtImageT {
    width: 75%;
    display: inline-block;
}
.txtImageT p {
    margin-bottom: 9px;
    padding-left: 30px;
}
.aboutCompanyText h2 {
    font-size: 24px;
    font-weight: 100;
    padding: 0;
    margin-top: 15px;
    padding-left: 15px;
    margin-bottom: 35px;
    line-height: 1;
    border-left: 3px solid #0094ff;
}
.aboutCompanyText p span {
    color: #0094ff;
}
.getQuote a:hover {
    text-decoration: none;
}
.slick-slide:hover{
  background: #0094ff !important;
}
.slick-slide img {
    display: block;
    cursor: pointer;
    margin: auto !important;
    height: 70px !important;
}
.slick-slide {
  cursor: pointer;
  background: #fff !important;
  margin: 0 10px !important;
  text-align: center;
  position: relative;
  padding: 15px !important;
}
.slick-slide span {
    position: absolute;
    left: 0;
    right: 0;
    font-weight: 500;
    bottom: -30px;
    color: #999999;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}
.slick-list.draggable {
    height: 100px;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 25px !important;
    height: 30px !important;
    margin: 0 0px !important;
    padding: 0 !important;
    cursor: pointer;
}
.slick-dots li button:before{
  font-size: 35px !important;
    line-height: 35px !important;
    position: absolute;
    top: 0 !important;
    left: 0 !important;
    width: 20px !important;
    height: 30px !important;
    content: '•';
    text-align: center;
    opacity: 1 !important;
    color: #eee !important;
}
.client-area .slick-dots li.slick-active button:before{
  display: none;
}
.client-area .slick-dots li button:before{
  display: none;
}
.slick-dots li.slick-active button:before{
  color: #0094ff !important;
  opacity: 1 !important;
}
.client-area .slick-dots{
	bottom: -45px;
}
/*
.footerLogo img {
	width: 225px;
}
*/
.client-area .slick-dots li button{
	padding: 0;
	background-color: #eee;
	border-radius: 10px;
	width: 13px;
	height: 13px;
}
.client-area .slick-dots .slick-active button{
	background-color: #0094ff;
}
.aboutCompanyText::-webkit-scrollbar {
    width: 5px;
}
.aboutCompanyText::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 20px rgba(79, 78, 78, 0.43);
-webkit-border-radius: 10px;
border-radius: 5px;
}

.aboutCompanyText::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
border-radius: 5px;
background: #0094ff;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
.aboutCompanyText::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(255,0,0,0.4);
}
section#aboutCompany {
    background-image: url("../images/aboutBg.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.googleIMG {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}
.row.serviceGridBot .col-md-3.np:before {
    content: '';
    display: block;
    position: absolute;
    background: #eee;
    top: -8px;
    width: 15px;
    border-radius: 2px;
    right: -8px;
    height: 15px;
    transform: rotate(45deg);
}
.row.serviceGridBot .col-md-3.np:last-child::before {
    display: none;
}
.singleService:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 45px 5px rgba(0, 0, 0, 0.07);
    position: relative;
    transform: scale(1.1);
    z-index: 407;
    transition: .3s;
}
.singleService {
    width: 100%;
    height: 250px;
    transition: .3s;
    text-align: center;
}
.singleServiceImg {
    width: 100%;
    display: block;
    margin-bottom: 22px;
    position: relative;
    height: 40%;
}
.singleServiceImg img {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
}
.singleService h4 {
    font-size: 20px;
    color: #333;
    margin: 0;
    cursor: pointer;
    margin-bottom: 10px;
}
.singleService p {
    margin: 0;
    font-size: 14px;
    cursor: pointer;
    color: #545454;
    line-height: 23px;
    font-weight: 100 !important;
}
.row.serviceGridTop {
    border-bottom: 1px solid #eeeeee;
}
.row.serviceGridTop .col-md-3:last-child {
    border: none;
}
.row.serviceGridBot .col-md-3:last-child {
    border: none;
}
.search-area input[type="text"]:focus {
	width: 935px;
	z-index: 1;
	background-color: #fff;
	cursor: text;
}
.search-area input[type="submit"] {
	background-image: url("../images/search-icon.png");
	background-position: center center;
	background-repeat: no-repeat;
	border: medium none;
	cursor: pointer;
	display: inline-block;
	float: right;
	height: 35px;
	outline: medium none;
	position: absolute;
	right: 0;
	text-indent: -10000px;
	top: 53%;
	-webkit-transition: opacity 0.4s ease 0s;
	      transition: opacity 0.4s ease 0s;
	width: 45px;
	z-index: 2;
}
.search-area input[type="submit"]:hover {
  opacity: 0.8;
}

/*--------------------*/
/* ABOUT */
/*--------------------*/

/* #about{

} */
section#salon {
    padding: 0;
    background: #333333;
    position: relative;
    height: 743px;
    /*height: 100%;*/
}
section#salon .container{
	height: 100%;
}
section#salon .container .salonBlock .col-md-6{
	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.minibusCars.ourCars {
    width: 100%;
}
.vehiclesLinks {
    display: block;
    float: left;
    margin-top: 30px;
    width: 100%;
}
.links > a {
    display: block;
    text-decoration: none;
    width: 100%;
    padding: 13px;
    margin-bottom: 20px;
    font-size: 15px;
    text-align: center;
    border: 2px solid #ebebeb;
    line-height: 1;
}
.links > a.active {
    color: #0094ff;
    border-color: #0094ff;
}
.links > a:hover {
    color: #0094ff;
    border-color: #0094ff;
}

.linksb ul li a {
    display: block;
    text-decoration: none;
    width: 100%;
    padding: 13px;
    margin-bottom: 20px;
    font-size: 15px;
    text-align: center;
    border: 2px solid #ebebeb;
    line-height: 1;
}
.linksb > a.active {
    color: #0094ff;
    border-color: #0094ff;
}
.linksb > a:hover {
    color: #0094ff;
    border-color: #0094ff;
}

.titleBlock.autopark h4 {
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 20px !important;
    letter-spacing: 4px;
    margin: 0;
    line-height: 1;
    color: #333333;
    font-weight: 400;
}

.autopark-tit-left h1 {
    text-align: right !important;
    color: #0094ff !important;
    font-size: 39px !important;
    line-height: 1 !important;
    padding: 0 !important;
    font-weight: 200! important;
    margin: 0 !important;
    border: none !important;
}


.autopark-tit-right h2 {
    text-align: left !important;
    color: #0094ff !important;
    font-size: 38px !important;
    line-height: 1 !important;
    padding: 0 !important;
    font-weight: 100! important;
    margin: 0 !important;
    border: none !important;
}

@media (max-width: 400px){
	.autopark-tit-left h1{
	font-size: 29px !important;
	}
	.autopark-tit-right h2{
	font-size: 27px !important;
	}
}

.pr-5 {
    padding-right: 8px;
}
.pl-5 {
    padding-left: 8px;
}
.pr-0 {
    padding-right: 0px;
}
.pl-0 {
    padding-left: 0px;
}
.carsSingleImage img {
    border-radius: 7px;
}
.carsName h3 span {
    color: #0094ff;
    font-weight: 600;
}
.minibusCars {
    display: block;
    float: left;
		margin-top: 48px;
    margin-bottom: 16px;
}
.page-header{
	border: none;
}
.carsName h3 {
    padding: 0;
    margin: 0;
    text-align: left;
    color: #333;
    padding-left: 15px;
    line-height: 1.2;
    font-size: 24px;
    font-weight: 100;
    border-left: 3px solid #0094ff;
}
.carsName h3 span {
    color: #0094ff;
    font-weight: 600;
}
.carsOptions {
    text-align: right;
}
.option {
    display: inline-block;
    width: max-content;
    padding: 5px 15px;
    margin-left: 20px;
    background: #f8f8f8;
}
.option img {
    display: inline-block;
    padding-right: 5px;
}
.option p {
    display: inline-block;
    margin: 0;
    font-size: 12px;
    line-height: 1;
    color: #333;
}
.carsImage {
    margin-top: 20px;
    display: block;
    float: left;
}
.carsSingleImage img {
    border-radius: 7px;
}
.carsSingleImage a {
    position: relative;
    width: 100%;
    display: block;
    z-index: 1;
}
.getaquote {
    text-align: center;
    margin: 57px 0 37px;
    position: relative;
    display: block;
    width: 100%;
    float: left;
}
.getaquote:before {
    content: '';
    display: block;
    position: absolute;
    width: 97%;
    left: 0;
    top: 25px;
    height: 1px;
    background: #eee;
    right: 0;
    margin: auto;
}
.getaquote a {
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    z-index: 2;
    background: #0094ff;
    border-right: 25px solid #fff;
    border-left: 25px solid #fff;
    text-decoration: none;
    position: relative;
    padding: 20px 85px;
    display: inline-block;
}



.carsSingleImage a:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 9999;
    opacity: 0;
    background-image: url(../images/iconzoom.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.carsSingleImage:hover a:before {
    opacity: 1;
    transition: .3s;
}
.singleImageAP a{
	position: relative;
	display: block;
}
.singleImageAP a img{
	height: 210px;
	width: 100%;
	object-fit: cover;
	border-radius: 6px;
}
.singleImageAP a:before {
	content: '';
	display: block;
	position: absolute;
	z-index: 10;
	opacity: 0;
	background-image: url(../images/iconzoom.png);
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
}

.singleImageAP:hover a:before {
	opacity: 1;
	transition: .3s;
}

.aboutMinibus h6 {
    color: #0094ff;
    margin: 25px 0 0;
    font-weight: 100;
    line-height: 1;
    font-size: 22px;
}
.aboutMinibus h3 span {
    color: #0094ff;
}
.aboutMinibus h3 {
    color: #333;
    font-size: 27px;
    margin: 21px 0;
    line-height: 1;
    padding: 0;
    font-weight: 100;
    border: none;
}
.minibusService .col-md-6 {
    min-height: 335px;
    /*height: 100%;*/
}
.tools p {
    padding-right: 0 !important;
    width: inherit;
    margin: 0 !important;
    margin-right: 3px !important;
    margin-bottom: 3px !important;
    background: #fff;
    padding: 5px 5px !important;
    color: #999 !important;
    font-size: 12px !important;
    display: inline-block;
}
.minibusService {
    display: block;
    float: left;
    background: #f8f8f8;
    margin-top: 50px;
    width: 100%;
}
.tools {
    margin-bottom: 0px;
}
.minibusImage {
    min-height: inherit;
    background-size: cover;
    background-position: center center;
}
.aboutMinibus p {
    /*font-size: 13px !important;
    font-weight: 100 !important;
    line-height: 1.5 !important;*/
    color: #333;
    padding-right: 20px;
}
section#salon:before {
    content: '';
    display: block;
    position: absolute;
    width: 50%;
    height:100%;
    background-image: url("../images/salon.webp");
    background-repeat: no-repeat;
    right: 0;
    background-size: cover;
    top:0;
}
.salonTitle h4 {
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 20px !important;
    letter-spacing: 2px;
    z-index: 2;
    margin: 0;
    position: relative;
    line-height: 1;
    color: #ffffff;
    font-weight: 100;
}
.salonTitle {
    margin-bottom: 55px;
    position: relative;
}
.salonTitle:before {
    content: "W";
    position: absolute;
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    color: #383838;
    line-height: 1;
    font-size: 165px;
    top: -60px;
    left: -65px;
}
.salonTitle h2 {
    color: #0094ff;
    font-size: 38px;
    line-height: 1;
    letter-spacing: 1px;
    font-weight: 100;
    margin: 0;
    position: relative;
    padding: 0;
    z-index: 2;
}
.salonTitle h2:before {
    content: '';
    display: block;
    position: absolute;
    width: 39px;
    height: 3px;
    bottom: -34px;
    background: #0094ff;
    left: 0;
}
.salonTitle h2 span {
    font-weight: 900;
}
.leftSalon p {
	position: relative;
	top: 12px;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
    color:#fff;
}

.leftSalon a {
    color: #0094ff;
}

.leftSalon ul {
	position: relative;
    top: 16px;
    margin-bottom: 45px;
}
a.salonLink:hover {
    background-position: 0 0;
}

a.salonLink {
	height: 50px;
    width: 197px;
    display: flex;
    position: relative;
    margin-top: 65px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    background-image: linear-gradient(to left, transparent, transparent 50%, #0094ff 50%, #0094ff);
    background-position: 100% 0;
    background-size: 200% 100%;
    transition: all .25s ease-in;
    padding: 8px 35px;
    border: 2px solid #0094ff;
}
.leftSalon p span {
    color: #fff;
}
.leftSalon ul li {
    font-size: 15px;
    letter-spacing: 0.5px;
    padding-left: 22px;
    color: #fff;
    position: relative;
    margin-bottom: 10px;
}
.testimonial-area .slick-slide{
  background: transparent !important;
  height: auto;
}
.leftSalon ul li:before {
    content: '';
    display: block;
    position: absolute;
    width: 16px;
    background-size: contain;
    height: 19px;
    background-image: url(../images/check.png);
    left: 0;
    top: 2px;
    background-repeat: no-repeat;
}
.leftSalon ul li span {
    color: #0094ff;
}
.leftSalon {
	top: 14px;
    display: block;
    position: relative;
    /* margin-top: 110px; */
}
.defaultSection {
   /* padding: 136px 0 80px;*/
    background-color: #fff;
    float: left;
    display: inline;
    width: 100%;
}
.titleBlock {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
    display: block;
}
.titleBlock.chauffeur{
	/*margin-top: 80px;*/
}
.about-tit-left {
   /* text-align: right;*/
}
.about-tit-left h4 {
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 15px !important;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
    color: #333333;
    font-weight: 500;
}
.about-tit h4{
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 21px !important;
  letter-spacing: 3px;
  margin: 0;
  line-height: 1;
  color: #333333;
  font-weight: 400;
}
.titleBlock.chauffeur h2 {
    text-align: center;
}
.titleBlock.safety{
	margin-bottom: 80px;
}
section#callToUs {
    min-height: 317px;
	margin-bottom: -7px;
    float: left;
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    display: table;
    height: 100%;
    background-image: url(../images/car-driver-price.webp);
    background-position: center;
}
section#callToUsMinibus {
    min-height: 317px;
	margin-bottom: -7px;
    float: left;
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    display: table;
    height: 100%;
    background-image: url(../images/calltous-minibus.webp);
    background-position: center;
}
section#callToUsMinibusbuttom {
    min-height: 317px;
	margin-bottom: -7px;
    float: left;
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    display: table;
    height: 100%;
    background-image: url(../images/calltous-minibus2.webp);
    background-position: center;
}

section#callToUsMinibusPrice {
    min-height: 317px;
	margin-bottom: -7px;
    float: left;
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    display: table;
    height: 100%;
    background-image: url(../images/mini-bus-price.webp);
    background-position: center;
}
.calltoAction {
    float: left;
    padding: 72.5px 0px 72.5px;
    width: 100%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    position: relative;
}
.calltoAction .q-letter {
	position: absolute;
    left: -85px;
    font-size: 180px;
    font-weight: bold;
    opacity: .2;
    top: -10px;
}
.calltoAction h4 {
    text-transform: uppercase;
    color: #fefefe;
    font-weight: 400;
    margin-bottom: 23px !important;
    margin: 0;
    position: relative;
    padding: 0;
		font-size: 16px;
		margin-top: 5px;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
}
.calltoAction h3 {
    font-weight: 100;
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    position: relative;
    margin: 0;
    margin-bottom: 20px;
    color: #ffffff;
    border: none;
}
.calltoAction h3 span {
    font-weight: 700;
}
a.buttonCall {
    color: #fff;
    text-transform: uppercase;
    background: #0094ff;
    text-decoration: none;
    position: relative;
    font-size: 19px;
		padding: 16px 89px;
		right: -12px;
    margin-right: 3.5%;
    float: right;
    display: inline-block;
}
a.buttonCall:before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../images/decorTop.png);
    width: 80px;
    background-repeat: no-repeat;
    height: 25px;
    left: -9%;
		top: -45%;
}
a.buttonCall:after {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../images/decorBottom.png);
    width: 80px;
    background-repeat: no-repeat;
    height: 25px;
    bottom: -45%;
    right: -10%;
}


.calltoAction h3:before {
    content: '';
    display: block;
    position: absolute;
    width: 40px;
    height: 4px;
    background: #0094ff;
    bottom: -38px;
}

.titleBlock.aboutPage:before{
    content: "8";
}
.carAvalaible {
    background: #fafafa;
    width: 360px;
    height: 300px;
    text-align: center;
    margin-bottom: 84px;
    cursor: pointer;
}
.carIMG {
    width: 100%;
    display: block;
    margin-bottom: 22px;
    position: relative;
    height: 53%;
    transition: .3s;
}
.carIMG img {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
}
.carIMG-hover {
	width: 100%;
    display: block;
    margin-bottom: 22px;
    position: relative;
    height: 53%;
    display: none;
    transition: .3s;
}
.carIMG-hover img {
	position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
}
.carAvalaible h4 {
    font-size: 20px;
    color: #333;
    margin: 0;
    cursor: pointer;
    margin-bottom: 10px;
}
.carAvalaible p {
    margin: 0;
    font-size: 14px;
    cursor: pointer;
    color: #545454;
    line-height: 23px;
    font-weight: 100 !important;
}

.carAvalaible.team {
  height: 600px;
}

.carIMG.team {
    height: 73%;
}

.carIMG-hover.team {
  height: 73%;
}

.stats:before {
    content: '';
    display: block;
    height: 100%;
    width: 1px;
    top: 0;
    right: -25px;
    position: absolute;
    background: #f3f1f1;
}
.carAvalaible.active {
  background-color: #fff;
  box-shadow: 0px 0px 45px 5px rgba(0, 0, 0, 0.07);
}
.carAvalaible:hover{
  background-color: #fff;
  transition: .3s;
  box-shadow: 0px 0px 45px 5px rgba(0, 0, 0, 0.07);
}
.carAvalaible:hover .carIMG {
	display: none;
}
.carAvalaible:hover .carIMG-hover {
	display: block;
}
.stats {
    text-align: center;
    height: 75px;
    padding: 5px 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}
.stats .statsTEXT {
	margin-left: 15px;
}
.stats .stats-num {
	font-size: 38px;
	font-weight: bold;
	color: #333;
	line-height: 1;
}
.stats .stats-desc {
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 0;
	color: #999;
	text-transform: uppercase;
	text-align: left;
}
.states .col-md-3:first-child .stats:before {
    right: -10px;
}
.states .col-md-3:nth-child(2) .stats:before {
    right: 5px;
}
.states .col-md-3:nth-child(3) .stats:before {
    right: -18px;
}
.states .col-md-3:nth-child(4) .stats img {
    margin-left: 10px;
}
.states .col-md-3:nth-child(4) .stats:before {
    display: none;
}

.about-tit-left h1 {
    color: #333;
    font-size: 39px;
    line-height: 1;
    padding: 0;
    font-weight: 100;
    margin: 0;
    border: none;
}

.about-tit-left h2 {
    color: #333;
    font-size: 32px;
    line-height: 1;
    padding: 0;
    font-weight: 100;
    margin: 0;
    border: none;
}
.about-tit-left h3 {
    color: #333;
    font-size: 35px;
    line-height: 1;
    padding: 0;
    font-weight: 100;
    margin: 0;
    border: none;
}
.titleBlock .row .col-md-6:first-child {
    padding-right: 10px;
}
.titleBlock .row .col-md-6:nth-child(2) {
    padding-left: 10px;
}
.about-tit-left h2 span {
	font-size: 42px;
    font-weight: 600;
}

.about-tit-left h1 span {
	font-size: 42px;
    font-weight: 600;
}

.about-tit-left h3 span {
	font-size: 38px;
    font-weight: 600;
}

#about 
.titleBlock:before {
    content: "V";
    display: block;
    position: absolute;
    color: #f8f8f8;
    top: -55px;
    text-align: center;
    width: 100%;
    font-size: 165px;
    line-height: 1;
    font-weight: 500;
}
.oportuniti {
    display: block;
    float: left;
    width: 100%;
    margin-top: 30px;
}

.singleOport img {
    border-radius: 6px;
    /*min-height: 200px;*/
}

.singleReview {
    text-align: center;
    margin-bottom: 40px;
    display: block;
    width: 100%;
    padding: 20px 20px;
    float: left;
    color: #333;
    background: #fafafa;
}

.singleReview h4 {
    padding: 10px 10px;
}

.titleBlock.safety.black.city:before {
    content: '';
    height: 165px;
    display: block;
    width: 165px;
    position: absolute;
    left: -75px;
    background-image: url(../images/globe.png);
    background-repeat: no-repeat;
}

.tit-oport h3:before {
    display: block;
    position: absolute;
    color: #f8f8f8;
    top: -35px;
    content: "C";
    width: 100%;
    z-index: -1;
    font-size: 80px;
    line-height: 1;
    font-weight: 900;
}
.tit-oport h3 {
    padding: 0;
    color: #333;
    text-align: center;
    line-height: 1;
		margin: 51px 0 48px;
    position: relative;
    z-index: 14;
    font-size: 20px;
    /*text-transform: uppercase;*/
    font-weight: 400;
    /* letter-spacing: 5px;*/
    border: none;
}
.tit-oport p {
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
    /*color: #999;*/
}
.oportuniti .col-md-4:nth-child(2) .tit-oport h3:before {
    content: "S";
}
.oportuniti .col-md-4:nth-child(3) .tit-oport h3:before {
    content: "R";
}
.tit-oport h3:after {
    content: '';
    display: block;
    position: absolute;
    width: 40px;
    left: 0;
    height: 3px;
    background: #0094ff;
    right: 3px;
    margin: auto;
    bottom: -20px;
}
.tit-oport h3 span{
  color: #0094ff;
}
section#safety {
    background-image: url(../images/safety_bg.webp);
    background-size: cover;
    background-position: center;
    min-height: 483px;
}
section#coach {
    background-image: url(../images/cauch_bg.webp);
    background-size: cover;
	background-position: center;
	/*padding: 103px 0 90px;*/
	min-height: 483px;
}
.titleBlock.safety h4 {
    color: #fff;
}
.titleBlock.safety h2 {
    text-align: left;
    color: #333;
    font-size: 32px;
}
.titleBlock.safety h3 {
    text-align: left;
    color: #fff;
}  
.titleBlock.safety h1 {
    text-align: left;
    color: #333;
    font-size: 36px;
}
.titleBlock.safety:before {
    font-weight: 900;
    text-align: left;
    color: rgba(255, 255, 255, 0.09);
    left: -55px;
}
section#vehicleClass {
    background: #f8f8f8;
}
.titleBlock.safety.black h4 {
    color: #333;
}
.titleBlock.safety.black h2 {
    color: #333;
}
.titleBlock.safety.black h3 {
    color: #333;
}
.titleBlock.safety.black:before {
    content: '';
    height: 166px;
    display: block;
    width: 150px;
    position: absolute;
    left: -75px;
    background-image: url(../images/shild.png);
    background-repeat: no-repeat;
}
.countryLink.citypage {
    text-align: right;
    display: block;
    float: right;
    position: relative;
    top: -50px;
		margin: 0;
		height: 145px;
}
.countryLink.citypage .flagImg img {
    width: 200px;
}
.countryLink.citypage .flagLink {
    width: 200px;
    display: block;
    padding-bottom: 0;
    float: right;
    text-align: center;
}
.citypageAnotation:before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../images/icons/anotation.png);
    width:21px;
    height: 21px;
    background-repeat: no-repeat;
    left: 0;
    top:0;
}
.citypageAnotation p {
    color: #333;
    font-size: 15px;
    margin: 0;
}
.citypageText {
	margin: 38px 0 45px;
}
.citypageText p {
    font-size: 16px;
    font-weight: 100;
    color: #333;
    text-align: justify;
}
.citypageText h2 {
    padding: 0;
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
    color: #333;
    font-weight: 100;
    margin-bottom: 23px;
    padding-left: 15px;
    border-left: 3px solid #0094ff;
}

.citypageText h4 {
    padding: 0;
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: #333;
    font-weight: 100;
    margin-bottom: 23px;
    padding-left: 15px;
    border-left: 3px solid #0094ff;
}

.citypageText h1 {
    padding: 0;
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
    color: #333;
    font-weight: 100;
    margin-bottom: 23px;
    padding-left: 15px;
    border-left: 3px solid #0094ff;
}

.citypageText ul {
margin-top: 0;
    margin-bottom: 10px;
	padding-left: 22px;
	font-size: 16px;
    font-weight: 100;
    color: #333;
    text-align: justify;
	list-style-type: circle;
	}

.citypageImage img {
    border-radius: 5px;
}
.rowLinks {
    display: block;
    width: 100%;
    float: left;
}
.rowLinks ul{
list-style: none;
}
.footerMenuLinks ul li.active a {
    color: #0094ff;
    text-decoration: none;
}
.citypageAnotation {
    padding-left: 35px;
    position: relative;
}
.vehicleClassTit h3 span {
    color: #0094ff;
    font-weight: 900;
}
.singleVehicle {
    background: #fff;
    text-align: center;
    min-height: 380px;
    padding-top: 22px;
    transition: .3s;
    position: relative;
    box-shadow: 0px 0px 23.75px 1.25px rgba(0, 0, 0, 0.025);
    padding-bottom: 38px;
    /*height: 100%;*/
    overflow: hidden;
    position: relative;
}

.singleVehicle:hover .vehicleRealImage {
	opacity: 1;
}

.vehicleRealImage {
	width: 100%;
	position: absolute;
	opacity: 0;
	transition: 0.4s ease;
	cursor: pointer;
	max-height: 369px;
	padding-top: 50px;
}
.vehicleRealImage a > img {
	width: 100%;
	 height: 100%;
}
@media (max-width: 768px){
	.vehicleRealImage > img {
		object-fit: contain;
		width: 100%;
		padding-top: 100px;
	}
}
.vehicleRealImage .RealImageDesc {
	background-color: rgba(0,0,0,0.75);
	position: absolute;
	bottom: 0;
	color: #fff;
	height: 50px;
	line-height: 50px;
	width: 100%;
	font-size: 15px;
}
.vehicleRealImage .RealImageDesc:after {
	content: url('../images/arrow.png');
	margin-left: 14px;
    position: relative;
    top: 5px;
}
.vehicleClases .col-md-6 {
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 0;
}
.vehicleClases {
    padding: 0 15px;
    position: relative;
}
.vehicleClases:before {
    content: '';
    display: block;
    position: absolute;
    width: 15px;
    height: 15px;
    left: 0;
    border-radius: 2px;
    background: #eee;
    right: 0;
    transform: rotate(45deg);
    bottom: 0;
    top: 0;
    margin: auto;
}
.vehicleClases .col-md-6:nth-child(1){
  padding-right: 15px;
  padding-bottom: 15px;
}
.vehicleClases .col-md-6:nth-child(2){
  padding-left: 15px;
  padding-bottom: 15px;
  border-right: none;
}
.vehicleClases .col-md-6:nth-child(3){
  padding-right: 15px;
  padding-top: 15px;
  border-bottom: none;
}
.vehicleClases .col-md-6:nth-child(4){
  padding-left: 15px;
  padding-top: 15px;
  border-right: none;
  border-bottom: none;
}

.carsOptions.vehicleSingle {
    text-align: center;
    background-color: #fff;
    position: relative;
    padding-bottom: 25px;
}
.carsOptions.vehicleSingle:before {
	content: '';
	display: block;
	width: 3px;
	height: 32px;
	background-color: #0094ff;
	position: absolute;
	left: 0;
	top: 0;
}
.carsOptions.vehicleSingle .option {
    margin: 0 5px;
}
.carsOptions.vehicleSingle .option img {
    filter: grayscale(100%);
    /*opacity: .6;*/
    padding-right: 5px;
}
.vehicleClassImage {
    height: 230px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}

.vehicleClassTit h3 {
    color: #333;
    font-size: 20px;
    margin: 0;
    margin-bottom: 10px;
    line-height: 1;
    padding: 0;
    font-weight: 100;
    border: none;
}
.vehicleClassTit h3 span {
    color: #0094ff;
    font-weight: 900;
}
.vehicleClassTit p {
    margin: 0;
    line-height: 1;
    font-size: 14px;
    font-weight: 100;
    color: #333;
}
.singleVehicle:hover {
    box-shadow: 0px 0px 38.75px 2.25px rgba(0, 0, 0, 0.14);
    transition: .3s;
}
.titleBlock.safety:after {
    content: '';
    display: block;
    position: absolute;
    width: 40px;
    left: 0;
    height: 4px;
    background: #0094ff;
    right: 0px;
    bottom: -45px;
}

.titleBlock.safety.city:before {
	 }
	 
.titleBlock.safety.city:after {
    border:none;
    background:none;
}
.safetyText h4 {
    margin: 0;
    font-size: 24px;
    font-weight: 100;
    color: #fff;
    line-height: 1.3;
}
.safetyText p {
    color: #fff;
    font-size: 14px;
    margin: 8px 0 35px;
    padding: 0;
    line-height: 1.5;
}
#vehicleClass.defaultSection{
	padding-top: 77px;
}
.tit-oport {
    display: block;
    float: left;
    width: 100%;
}
.titleBlock.chauffeur:before{
  content: "C";
}
.titleBlock.autopark:before {
    content: '';
    display: block;
    background-image: url(../images/titleCar.png);
    position: absolute;
    color: #f8f8f8;
    top: -40px;
    left: -15px;
    text-align: center;
    width: 100%;
    background-position: center;
    height: 140px;
    background-repeat: no-repeat;
}
.autoparkText p strong span {
    color: #0094ff;
}

.autoparkText p strong {
    color: #333;
}
.autoparkText p {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
}
.about-tit-right p {
    font-size: 16px;
    line-height: 1.61;
    padding: 0;
    color: #333;
    margin-top: -5px !important;
    margin: 0;
}
.welcome-area{
	float: left;
	display: inline;
	width: 100%;
}
.title-area {
	display: inline;
	float: left;
	padding: 0 172px;
	position: relative;
	text-align: center;
	width: 100%;
}
.tittle {
	color: #3a3a3a;
	font-size: 40px;
	margin-bottom: 0;
	padding-bottom: 18px;
}
.tittle-line {
	background-color: #898989;
	display: inline-block;
	height: 3px;
	margin-bottom: 16px;
	width: 60px;
}
.welcome-content{
	float: left;
	display: inline;
	width: 100%;
	margin-top: 50px;
}
.wc-table{
	display: inline-block;
	text-align: center;
}
.wc-table li {
	float: left;
	width: 25%;
}
.single-wc-content{
	float: left;
	display: inline;
	width: 100%;
}
.single-wc-content span {
	border-radius: 20%;
	display: inline-block;
	font-size: 35px;
	height: 117px;
	line-height: 117px;
	text-align: center;
	width: 117px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.single-wc-content .wc-tittle{
	color: #525252;
	text-transform: uppercase;
	font-size: 18px;
	border-bottom: 1px solid #bbbbbb;
	margin-top: 32px;
	padding-bottom: 17px;
}
.single-wc-content p {
	color: #7d7d7d;
	font-size: 15px;
	padding: 12px;
}
.single-wc-content:hover .wc-icon{
	color: #fff;
}
.single-wc-content:hover .wc-tittle{
	padding-bottom: 16px;
}
.about-area {
	display: inline;
	float: left;
	margin-bottom: 25px;
	width: 100%;
}
.about-left {
	display: inline;
	float: left;
	height: 420px;
	position: relative;
	width: 445px;
}
.about-left img {
	left: 7px;
	position: absolute;
	top: 23px;
}
.introduction-btn {
	color: #f9fffd;
	display: inline-block;
	font-size: 25px;
	left: 36%;
	padding: 18px 16px;
	position: absolute;
	text-decoration: none;
	top: 50%;
}
.introduction-btn:hover,
.introduction-btn:focus{
	color: #f9fffd;
	text-decoration: none;
	outline: none;
}
.about-right {
	display: inline;
	float: left;
	padding-left: 85px;
	padding-top: 20px;
	width: 100%;
}
.about-right .title-area{
	text-align: left;
	padding: 0px;
}
.about-right .tittle{
	padding-bottom: 47px;
}
.about-right .tittle-line {
	height: 2px;
	margin-bottom: 35px;
	width: 100%;
}
.about-right p {
	color: #535353;
	font-family: "Raleway", sans-serif;
	margin-bottom: 32px;
}
.about-btn-area{
	float: left;
	display: inline;
	margin-top: 14px;
	width: 100%;
}
.button {
	float: left;
	display: block;
	margin: 1em;
	border: none;
	background: none;
	color: inherit;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
}
.button:focus {
	outline: none;
}
.button > span {
	vertical-align: middle;
}
.button-default {
	text-decoration: none;
	border-radius: 2px;
	overflow: hidden;
	font-weight: 600;
	font-size: 15px;
	padding: 0;
	-webkit-transition: border-color 0.3s, background-color 0.3s;
	transition: border-color 0.3s, background-color 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button-default::after {
	content: attr(data-text);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	color: #3f51b5;
	-webkit-transform: translate3d(0, 25%, 0);
	transform: translate3d(0, 25%, 0);
}
.button-default > span {
	display: block;
}
.button-default:after {
	color: #fff;
}
.button-default::after,
.button-default > span {
	padding: 12px 21px;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button-default:hover {
	background-color: rgba(63, 81, 181, 0.1);
	text-decoration: none;
}
.button-default:hover,
.button-default:focus {
	color: #fff !important;
}
.button-default:hover::after {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.button-default:hover > span {
	opacity: 0;
	-webkit-transform: translate3d(0, -25%, 0);
	transform: translate3d(0, -25%, 0);
}

/*--------------------*/
/* CALL TO ACTION */
/*--------------------*/

#call-to-action{
	display: inline;
	float: left;
	position: relative;
	width: 100%;
}
#call-to-action img{
    width: 100%;
    height: 250px;
}

.call-to-overlay{
	background-color: rgba(0,0,0,0.8);
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
.call-to-content {
	display: inline;
	float: left;
	padding: 60px 0;
	text-align: center;
	width: 100%;
}
.call-to-content h2{
	color: #fff7f7;
	font-size: 45px;
}
.call-to-content a {
	display: inline-block;
	float: none;
	margin-top: 29px;
}

.tripadvisor {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
}

.tripadvisor img {
  border-radius: 15px;
  flex-shrink: 0;   
}

/*--------------------*/
/* TEAM */
/*--------------------*/

#team{
	display: inline;
	padding: 70px 0px;
	float: left;
	width: 100%;
}
.team-area {
	display: inline;
	float: left;
	padding-bottom: 56px;
	width: 100%;
}
.team-content {
	display: inline;
	float: left;
	margin-top: 18px;
	width: 100%;
}
.team-grid {
	margin: 20px 0 0 0;
	padding: 0;
	list-style: none;
	display: block;
	text-align: center;
	width: 100%;
}
.team-grid li {
	display: inline-block;
	height: 230px;
	margin: 20px 25px;
	width: 20%;
}
.team-item {
	width: 100%;
	height: 100%;
	position: relative;
	cursor: default;
	box-shadow:
		inset 0 0 0 16px rgba(255,255,255,0.6),
		0 1px 2px rgba(0,0,0,0.1);
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.team-img-1 {
	background-image: url(../images/team-member1.png);
}

.team-img-2 {
	background-image: url(../images/team-member2.png);
}

.team-img-3 {
	background-image: url(../images/team-member3.png);
}
.team-img-4 {
	background-image: url(../images/team-member4.png);
}
.team-info {
	position: absolute;
	width: inherit;
	height: inherit;
	padding: 50px 0;
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-backface-visibility: hidden;
}
.team-info p {
	color: #fff;
	padding: 10px 5px;
	font-style: italic;
	margin: 0 30px;
	font-size: 14px;
	opacity: 0;
	-webkit-transition: all 1s ease-in-out 0.4s;
	-moz-transition: all 1s ease-in-out 0.4s;
	-o-transition: all 1s ease-in-out 0.4s;
	-ms-transition: all 1s ease-in-out 0.4s;
	transition: all 1s ease-in-out 0.4s;
}
.team-info a {
	border: 1px solid #fffefe;
	border-radius: 50%;
	color: #fffefe;
	display: inline-block;
	font-size: 16px;
	opacity: 0.8;
	height: 27px;
	margin: 0 5px;
	text-align: center;
	width: 27px;
}
.team-info a:hover {
	opacity: 1;
}
.team-grid li:hover .team-info {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.team-grid li:hover .team-info p {
	opacity: 1;
}
.team-address {
	display: inline;
	float: left;
	margin-top: 26px;
	text-align: center;
	width: 100%;
}
.team-address p {
	color: #525252;
	margin-bottom: 0px;
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
	font-family: "Raleway", sans-serif;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.team-address span {
	color: #777777;
	font-size: 17px;
	font-style: italic;
	font-family: "Raleway", sans-serif;
}

/*--------------------*/
/* SERVICE */
/*--------------------*/

#service{
	background-color: #F6F6F6;
	float: left;
	display: inline;
	padding: 70px 0;
	width: 100%;
}
.service_area{
	display: inline;
	float: left;
	width: 100%;
}
.service-content{
	display: inline;
	margin-top: 45px;
	float: left;
	width: 100%;
}
.service-table{
	display: inline-block;
	width: 100%;
	text-align: center;
}
.single-service {
	display: inline;
	float: left;
	margin-bottom: 15px;
	padding: 45px 20px;
	position: relative;
	text-align: left;
	background: #fff;
	width: 100%;
	-w-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.single-service:after{
	content: '';
	position: absolute;
	left: 0;
	opacity: 0;
	bottom: 0;
	height: 24px;
	width: 100%;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.single-service:hover:after{
	opacity: 1;
}
.single-service:hover{
        cursor: pointer;
	background-color: #fff;
}
.single-service .service-icon{
	color: #bdbdbd;
	font-size: 55px;
	margin-bottom: 10px;
}
.single-service .service-title {
	color: #343333;
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 30px;
}
.single-service p{
	color: #878787;
}

/*--------------------*/
/* PORTFOLIO */
/*--------------------*/

#portfolio{
	display: inline;
	float: left;
	padding: 70px 0;
	width: 100%;
        background: #f6f6f6;
}
.portfolio-area{
	display: inline;
	float: left;
	width: 100%;
}
.portfolio-content {
	display: inline;
	float: left;
	width: 100%;
}
.portfolio-menu{
	display: inline;
	float: left;
	width: 100%;
}
.portfolio-menu ul{
	display: inline-block;
	width: 100%;
	text-align: center;
}
.portfolio-menu ul li {
	border-bottom: 1px solid #fff;
	border-top: 1px solid #fff;
	cursor: pointer;
	display: inline-block;
	font-family: "Raleway", sans-serif;
	font-size: 14px;
	font-weight: bold;
	margin: 0 13px;
	padding: 6px;
	text-transform: uppercase;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.portfolio-container {
	display: inline;
	float: left;
	margin-left: -9px;
	margin-top: 60px;
	width: 100%;
}
.single-portfolio {
	display: inline;
	float: left;
	margin-bottom: 18px;
	margin-left: 18px;
	width: 23.4%;
}
.single-item{
	width: 100%;
	position: relative;
	overflow: hidden;
}
.single-item>img{
	width: 100%;
    display: block;
    height: auto;
    -webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.single-item>img:hover{
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}
#mixit-container .mix{
    /*display: none;*/
}
.single-item-content {
	background-color: #000;
	display: inline;
	opacity: 0;
	height: 100%;
	left: 0;
	position: absolute;
	text-align: center;
	top: 0;
	width: 100%;
	-webkit-transition: background-color 0.5s linear;
	-moz-transition: background-color 0.5s linear;
	-o-transition: background-color 0.5s linear;
	-ms-transition: background-color 0.5s linear;
	transition: background-color 0.5s linear;
}
.portfolio-social-icon {
	float: left;
	display: inline;
	padding: 110px 50px;
	width: 100%;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.single-item:hover .single-item-content{
	opacity: 1;
}
.single-item-content:hover{
	background-color: rgba(0, 0, 0, 0.8);
}
.portfolio-social-icon a {
	color: #fff;
	display: inline-block;
	font-size: 25px;
	height: 40px;
	line-height: 15px;
	margin: 0 8px;
	padding: 12px;
	text-align: center;
	width: 40px;
	transform: scale(0.5);
	-webkit-transition: all 0.7s ease 0s;
	-o-transition: all 0.7s ease 0s;
	transition: all 0.7s ease 0s;
}
.single-item-content:hover .view-btn{
	 transform: scale(0.9);
}
.portfolio-title {
	top: 0;
	display:inline;
	opacity: 0;
	left: 0;
	padding-bottom: 12px;
	position: absolute;
	text-align: center;
	width: 50%;
	-webkit-transition: all 0.7s ease 0s;
	-o-transition: all 0.7s ease 0s;
	transition: all 0.7s ease 0s;
}
.single-item:hover .portfolio-title{
	opacity: 1;
}
.portfolio-title h4 {
	color: #fff7f7;
	font-size: 15px;
	margin-bottom: 0;
	text-transform: uppercase;
}
.portfolio-title span{
	color: #fff7f7;
	font-size: 12px;
	font-family: "Raleway", sans-serif;
}

.portfolio-detail{
	display: none;
	float: left;
	text-align: center;
	width: 100%;
}

#portfolio-popup{
	background-color: #fff;
	bottom: 0;
	display: none;
	left: 0;
	position: fixed;
	right: 0;
	text-align: center;
	top: 0;
	opacity: 0;
	z-index: 99999;
	overflow-y: scroll;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.portfolio-popup-area{
	display: block;
	float: left;
	padding: 40px 15%;
	width: 100%;
}

#portfolio-popup .portfolio-detail{
	display: inline;
}

#portfolio-popup.portfolio-popup-show{
	align-items: center;
display: flex;
}
nav.navbar-fixed-top li.drobDown button {
    padding: 30px 20px !important;
}
.navbar-fixed-top .getQuote{
	top: -81px;
    right: -128px;
}
.portfolio-popup-inner{
	color: #333;
	display: inline;
	width: 100%;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.portfolio-popup-inner p{
    text-align: justify;
}

.portfolio-popup-inner-show{
	margin-left: 0;
}


.portfolio-popup-inner img{
	max-width: 80%;
	float: left;
	margin-right: 45px;
}

.portfolio-popup-inner h2{
	color: #000;
	margin-top: 15px;
}

.modal-close-btn{
	border: 2px solid #000;
	border-radius: 50%;
	color: #000;
	display: inline-block;
	height: 40px;
	line-height: 35px;
	opacity: 0.5;
	position: absolute;
	right: 2%;
	text-align: center;
	top: 2%;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	width: 40px;
}

.modal-close-btn:hover,
.modal-close-btn:focus{
	color: #000;
	opacity: 1;
}

.view-project-btn{
	display: inline-block;
	margin-top: 10px;
	padding: 6px 15px;
	text-decoration: none;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.view-project-btn:hover,
.view-project-btn:focus{
	border-color: #000;
	color: #000;
	text-decoration: none;

}

/*--------------------*/
/* COUNTER */
/*--------------------*/

#counter{
	display: inline;
	float: left;
	position: relative;
	width: 100%;
}
.counter-overlay{
	background-color: rgba(0, 0, 0, 0.8);
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.counter-area {
	display: inline;
	float: left;
	padding: 112px 0;
	width: 100%;
}
.single-counter {
	display: inline;
	float: left;
	padding: 0 10px;
	width: 100%;
}
.single-counter > span {
	display: block;
	float: left;
	font-size: 60px;
	text-align: center;
	width: 60px;
}
.single-counter .counter-count{
	float: left;
	margin-left: 20px;
}
.single-counter .counter-count > span {
	color: #fff;
	display: block;
	font-size: 50px;
	font-weight: bold;
	margin-bottom: -7px;
	margin-top: -16px;
}
.single-counter .counter-count > p {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	margin-left: 5px;
}

/*--------------------*/
/* PRICING TABLE */
/*--------------------*/

#pricing-table{
	display: inline;
	float: left;
	padding: 70px 0;
	width: 100%;
}
.pricing-table-area{
	display: inline;
	float: left;
	width: 100%;
}
.pricing-table-content {
	display: inline;
	float: left;
	margin-top: 60px;
	width: 100%;
}
.price-table{
	display: inline-block;
	text-align: center;
	width: 100%;
}
.price-table li {
  border-bottom: 1px solid #e4e4e4;
  border-left: 1px solid #e4e4e4;
  border-top: 1px solid #e4e4e4;
  display: inline-block;
  float: left;
  padding-bottom: 12px;
  width: 25%;
}
.price-table li:last-child{
	border-right: 1px solid #e4e4e4;
}
.single-price{
	display: inline;
	float: left;
	width: 100%;
}
.single-price .price-header {
	color: #fff;
	font-size: 28px;
	margin: 0;
	padding: 20px 0;
	position: relative;
	text-align: center;
}
.single-price .price-header::after {
	bottom: -30%;
	content: "";
	font-family: fontAwesome;
	font-size: 32px;
	left: 46.5%;
	position: absolute;
}
.standard-price .price-header::after{
	bottom: -22%;
}
.single-price .price-amount {
	display: block;
	font-size: 32px;
	font-weight: 600;
	padding: 10px 0;
	text-align: center;
}
.price-month{
    font-size: 14px;
    color: #5d5d5d;
}
.standard-price{
	margin-top: -20px;
}
.standard-price .price-header{
	padding: 30px 0px;
}
.single-price p{
	color: #5d5d5d;
	font-size: 18px;
	border-bottom:1px solid #e4e4e4;
	padding: 20px 0;
	margin-bottom: 0px;
}
.single-price p:last-of-type{
	border: none;
}
.single-price a {

	display: inline-block;
	float: none;
	margin-top: 23px;
}
.single-price a span {
	border: medium none;
	display: inline-block;
	padding: 12px 65px;
}
.standard-price a{
	color: #fff !important;
}

/*--------------------*/
/* TESTIMONIAL */
/*--------------------*/


#testimonial{
	display: inline;
	float: left;
	position: relative;
	width: 100%;
	height: 380px;
	overflow: hidden;
}
.group.submitbtn button {
    float: none;
    font-size: 15px;
    margin: 20px auto auto auto;
    color: #fff !important;
    background: #0094ff !important;
    font-weight: 400;
}
.group.submitbtn button span {
	padding: 18px 70px 18px 90px;
}
.group.submitbtn button i {
    margin-left: 25px;
    font-size: 20px;
    position: relative;
    top: 1px;
}
.contact-info {
    display: block;
    width: 100%;
    margin-top: 75px;
    float: left;
}
.contactBox > h2 {
    padding: 0;
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    color: #333;
    font-weight: 400;
    margin-top: 41px;
    margin-bottom: 20px;
    padding-left: 18px;
    border-left: 3px solid #0094ff;
}
.contactDetails{
	margin-top: 45px;
}
.details {
    display: flex;
    width: 100%;
    position: relative;
    margin: 19px 0;
    max-height: 60px;
}
.details h2 {
    display: block;
    width: 100%;
    padding: 0;
    font-weight: 600;
    color: #333;
    padding: 20px 0 20px 20px;
    line-height: 1;
    font-size: 20px;
    border: none;
    max-height: 60px;
}
.rowlinks.contactPage {
		margin-top: 55px !important;
		margin-bottom: -25px;
    display: block;
    width: 100%;
    float: left;
}
.details h2 span {
    font-weight: 100;
    margin-left: 15px;
}
.testimonial-area{
	display: inline;
	float: left;
	width: 100%;
}
.testimonial-area .tittle{
	color: #fff;
}
.testimonial-area .tittle-line{
	background-color: #fff;
}
.testimonial-conten{
  display: inline;
  float: left;
  width: 100%;
}
.testimonial-slider {
	display: inline;
	float: left;
	width: 100%;
	left: 0;
}
.serviceBlockTitle.testimonTit {
    margin-bottom: 50px;
}
.single-slide {
	display: inline;
	float: left;
	padding: 0 124px;
	text-align: center;
	width: 100%;
}
.single-slide > p {
  padding: 0 7%;
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  margin-bottom: 20px !important;
  line-height: 38px;
  margin: 0;
  position: relative;
}
.single-slide > p::after {
	color: #fff;
	content: "";
	font-family: fontAwesome;
	font-size: 50px;
	left: -44px;
	position: absolute;
	top: -29px;
}
.single-testimonial{
	display: inline;
	float: left;
	width: 100%;
}
.testimonial-thumb {
    border-radius: 50%;
    height:80px;
    margin: 0 auto 0;
    border: none;
    width: 80px;
}
.single-testimonial p {
    font-size: 17px;
    color: #333;
    margin-top: 28px;
    font-weight: bold;
    margin-bottom: 0px;
}
.single-testimonial span {
    color: #b6b6b6;
    display: inline-block;
    font-size: 12px;
}
.testimonial-slider .slick-prev::before {
	border-radius: 50%;
	color: #d6d6d6;
	display: inline-block;
	font-family: fontAwesome;
	font-size: 24px;
	height: 35px;
	line-height: 31px;
	padding: 0 10px;
	text-align: center;
	width: 35px;
}
.slick-slide:focus{
    outline: none;
}
.testimonial-slider .slick-next:before{
	color: #d6d6d6;
	border-radius: 50%;
	display: inline-block;
	font-family: fontAwesome;
	font-size: 24px;
	height: 35px;
	line-height: 31px;
	padding: 0 10px;
	text-align: center;
	width: 35px;
}
.testimonial-slider .slick-prev{
	left: 0;
	z-index: 1;
	top: 20%;
}
.testimonial-slider .slick-next{
	right: 40px;
	z-index: 1;
	top: 20%;
}

/*--------------------*/
/* FORM BLOG */
/*--------------------*/

#from-blog{
	background-color: #F6F6F6;
	display: inline;
	padding: 70px 0;
	float: left;
	width: 100%;
}
.from-blog-area{
	display: inline;
	float: left;
	width: 100%;
}
.from-blog-content {
	display: inline;
	float: left;
	margin-top: 60px;
	width: 100%;
}
.single-from-blog {
	background-color: #fff;
	display: inline;
	float: left;
	width: 100%;
}
.single-from-blog figure{
	display: inline;
	float: left;
	width: 100%;
}
.single-from-blog figure img{
	width: 100%;
}
.single-from-blog .blog-title {
	display: inline;
	float: left;
	padding: 20px;
	width: 100%;
}
.single-from-blog .blog-title h2 {
	color: #3e3e3e;
	font-size: 28px;
	padding-bottom: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.single-from-blog .blog-title h2 a {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.single-from-blog .blog-title h2 a:hover,
.single-from-blog .blog-title h2 a:focus{
	text-decoration: none;
	outline: none;
}
.single-from-blog .blog-title p{
	font-size: 13px;
	font-style: italic;
}
.single-from-blog > p {
	color: #757575;
	padding: 20px 20px 10px;
}
.single-from-blog .blog-footer {
	display: inline;
	float: left;
	padding: 0 20px 20px;
	width: 100%;
}
.single-from-blog .blog-footer a {
	color: #818181;
	font-size: 14px;
	margin-right: 35px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.single-from-blog .blog-footer a:hover,
.single-from-blog .blog-footer a:focus {
	text-decoration: none;
	outline: none;
}
.single-from-blog .blog-footer a span {
	border: 1px solid;
	border-radius: 50%;
	display: inline-block;
	line-height: 14px;
	margin-right: 3px;
	padding: 4px 5px;
}

/*--------------------*/
/* CLIENT */
/*--------------------*/

#client {
	background-color: #f8f8f8;
	display: inline;
	float: left;
	padding: 50px 0 50px;
	width: 100%;
	min-height: 338px;
}
.client-area{
	display: inline;
	float: left;
	width: 100%;
	text-align: center;
}
.client-table {
	display: inline-block;
	margin-bottom: 0;
	text-align: left;
	width: 100%;
}
.client-table li {
	display: inline-block;
	margin-right: 80px;
}
.client-table li:last-child{
	margin-right: 0px;
}

/*--------------------*/
/* CONTACT */
/*--------------------*/

#contact {
	background-image: linear-gradient(to bottom right,rgba(0, 0, 0, 0.8),rgba(0, 0, 0, 0.8)),url(../images/contact-us.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	display: inline;
	float: left;
	padding: 70px 0;
	width: 100%;
}
.contact-left {
	background-color: rgba(104, 102, 96, 0.5);
	display: inline;
	float: left;
	padding: 30px 40px 10px;
	width: 100%;
}
.contact-left h2 {
	color: #fafafa;
	font-size: 35px;
	margin-bottom: 35px;
}
.single-address {
	display: inline;
	float: left;
	margin-bottom: 35px;
	padding-right: 50px;
	width: 100%;
}
.single-address h4 {
	color: #fafafa;
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 17px;
}
.single-address p {
	color: #fafafa;
	font-size: 14px;
	margin-bottom: 5px;
}
.contact-right{
	background-color: rgba(104, 102, 96, 0.5);
	display: inline;
	float: left;
	padding: 30px 40px;
	width: 100%;
}
.contact-right h2 {
	color: #fafafa;
	font-size: 35px;
	margin-bottom: 48px;
}
.contact-form .form-group input {
	background: transparent;
	color: #e1e1e1;
	font-size: 20px;
	border: 1px solid #fff;
	border-radius: 0;
	height: 40px;
	margin-bottom: 24px;
}
.contact-form .form-group textarea{
	color: #e1e1e1;
	background: transparent;
	border: 1px solid #fff;
	border-radius: 0;
	height: 150px;
}
.contact-form .form-control:focus {
    outline: 0;
    box-shadow: none;
}
.contact-form .form-control::-webkit-input-placeholder {
	color: #e2e2e2;
	font-size: 20px;
}

.contact-form .form-control:-moz-placeholder { /* Firefox 18- */
	color: #e2e2e2;
	font-size: 20px;
}

.contact-form .form-control::-moz-placeholder {  /* Firefox 19+ */
	color: #e2e2e2;
	font-size: 20px;
}

.contact-form .form-control:-ms-input-placeholder {
	color: #e2e2e2;
	font-size: 20px;
}
.contact-form button {
	float: right;
	margin-right: 0;
	border-radius: 0px;
}
.contact-form.button-default::after,
.contact-form .button-default > span {
	padding: 4px 40px;
}
#google-map{
	display: none;
	float: left;
	width: 100%;
        box-shadow: rgb(138, 138, 138) 0px 0px 25px 2px;
}
iframe{
    border: 0;
    width: 100%;
    height: 500px;
}
.map-show{
    text-align: center;
    font-weight: bold;
    position: relative;
    top: 30px;
}
.map-show div{
    width: 150px;
    margin: 0 auto;
    cursor: pointer;
}
.map-show div:hover{
    color: #fafafa;
}
.map-show p{margin: 0;}
.map-show i {font-weight: bold;}


/*--------------------*/
/* FOOTER */
/*--------------------*/

#footer{
  background-color: #fff;
      display: inline;
      float: left;
      position: relative;
      margin-top: 0;
      width: 100%;
}
#footer:before {
    content: '';
    display: block;
    position: absolute;
    width: 50%;
    height: 100%;
    background-size: 50%;
    right: 0%;
    background-position: bottom right;
    bottom: 10%;
    background-repeat: no-repeat;
    background-image: url(../images/opCar.png);
}
.getQuote.foot a {
    width: 74%;
    float: left;
    padding: 13px 10px;
    margin-top: 0;
    font-size: 17px;
}

.getQuote.foot {
    width: 100%;
}
.footer-top {
	display: inline;
	float: left;
	width: 100%;
}
.footer-top-area{
	display: inline;
	float: left;
	text-align: center;
	width: 100%;
}
.footer-logo{
	display: inline-block;
}
.footer-social{
	display: inline;
	float: left;
	margin: 40px 0px;
	width: 100%;
}
.footer-social a {
	border: 1px solid #505050;
	border-radius: 30%;
	color: #b8b8b8;
	display: inline-block;
	font-size: 18px;
	height: 48px;
	line-height: 48px;
	margin: 0 9px;
	text-align: center;
	width: 48px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.footer-social a.facebook:hover{
	background-color: #3b5998;
	border-color: #3b5998;
	color: #fff;
}
.footer-social a.twitter:hover{
	color: #fff;
	background-color: #00aced;
	border-color: #00aced;
}
.footer-social a.google-plus:hover{
	color: #fff;
	background-color: #dd4b39;
	border-color: #dd4b39;
}
.footer-social a.youtube:hover{
	color: #fff;
	background-color: #bb0000;
	border-color: #bb0000;
}
.footer-social a.linkedin:hover{
	color: #fff;
	background-color: #007bb5;
	border-color: #007bb5;
}
.footer-social a.dribbble:hover{
	color: #fff;
	background-color: #ea4c89;
	border-color: #ea4c89;
}
.footer-bottom{
	display: inline;
	float: left;
	width: 100%;
	text-align: center;
}
.footer-bottom div{
    width: 50%;
    border-top: 1px solid #434343;
    margin: 0 auto;
    padding: 20px 0;
}

.footer-bottom p{
	color: #fff;
	font-size: 18px;
	margin-bottom: 0px;
}


/*--------------------*/
/* BLOG PAGE */
/*--------------------*/
.group {
    display: block;
    width: 100%;
    margin-bottom: 31px;
    position: relative;
}
.contactForm {
    padding: 0 10%;
}
.titleBlock.chauffeur.contactus {
		margin-bottom: 72px;
		margin-top: 62px;
}
li.drobDown {
    position: relative;
}
li.drobDown:hover ul.sub-menu {
    display: block;
}
ul.sub-menu {
    width: 100%;
    position: absolute;
    padding: 0px 0;
    border-top: 4px solid #fff;
    margin: 0;
    top: 96px;
    display: none;
    min-width: 250px;
    background: #f8f8f8;
}
nav.navbar-fixed-top li.drobDown:hover ul.sub-menu {
    top: 76px;
}
ul.sub-menu li {
    display: block;
    padding: 10px 15px;
    transition: .3s;
    text-align: left;
    border-bottom: 1px solid #eee;
}
ul.sub-menu li:hover {
    border-left: 4px solid #0094ff;
    transition: .3s;
    padding: 10px 20px;
}
li.drobDown button {
    color: #333333;
    font-size: 17px;
    background: none;
    border: none;
    font-weight: 500;
    padding: 38.5px 0px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
li.drobDown:hover > button {
    color: #0094ff !important;
}
ul.sub-menu li a{
  text-decoration: none;
  padding: 0 0;
  transition: .3s;
}

li.drobDown i {
    font-size: 10px;
    transition: .3s;
    position: relative;
    margin-left: 15px;
    top: -2px;
    transform: rotate(90deg);
}
li.drobDown:hover i {
    transform: rotate(0deg);
    transition: .3s;
    color: #0094ff;
}

.group label p {
    margin: 0;
    margin-bottom: 11px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 100;
    color: #737373;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}
.group label p span {
    color: red;
}
.group label {
    display: block;
    margin-bottom: 0;
}
.group label select {
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none;
    display: block;
    border: 2px solid #b3b3b3;
    font-size: 16px;
    font-weight: 400;
    height: 55px;
    padding: 5px 12px;
    box-shadow: none;
    color: #333333;
    line-height: 1;
}
.group label input {
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none;
    display: block;
    border: 2px solid #b3b3b3;
    font-size: 16px;
    font-weight: 400;
    height: 55px;
    padding: 5px 12px;
    box-shadow: none;
    color: #333333;
    line-height: 1;
}
.group label.select:before {
    position: absolute;
    content: '';
    width: 0px;
    bottom: 23px;
    right: 15px;
    height: 0px;
    border-style: solid;
    border-width: 7px 5px 0 5px;
    border-color: #d2d2d2 transparent transparent transparent;
    display: block;
}
.group label input::placeholder {
    color: #bdbdbd;
}
.group label textarea {
	min-height: 172px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  display: block;
  border: 2px solid #b3b3b3;
  font-size: 16px;
  font-weight: 400;
  padding: 5px 12px;
  box-shadow: none;
  color: #333333;
  line-height: 1;
}
.form-horizontal .form-group{
	position: relative;
	right: -15px;
}
#blog-banner {
    float: left;
    background-image: url(../images/pageTitle.webp);
    position: relative;
    width: 100%;
    /*height: 100%;*/
    background-position: center;
    background-size: cover;
    display: table;
    text-align: center;
}
#blog-bannerContact {
    float: left;
    background-image: url(../images/pageTitle.jpg);
    position: relative;
    width: 100%;
    /*height: 100%;*/
    background-position: center;
    background-size: cover;
    display: table;
    text-align: center;
}
.titleBlock.chauffeur.contactus h2 {
		/* padding: 0 30%; */
		margin: 0 auto;
		text-align: center;
		max-width: 550px;
		font-size: 39px;
}
.blog-overlay{
	background-color: rgba(0, 0, 0, 0.6);
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.blog-banner-area {
    width: 100%;
    height: 450px;
    display: table-cell;
    vertical-align: middle;
}
.contentText.ap p {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.contentText.ap h2 {
    color: #333;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 400;
    padding-left: 15px;
    padding-bottom: 0;
    border-left: 4px solid #0094ff;
    margin-top: 50px;
    margin-bottom: 15px;
}

.blog-banner-area h2 {
    color: #fff;
    font-size: 48px;
    padding-bottom: 0px;
    font-weight: 100;
    line-height: 1;
    font-family: Poppins;
    margin-bottom: 35px;
}
.colored {
    color: #0094ff;
    font-weight: 600;
}
.blog-banner-area .breadcrumb {
    background-color: transparent;
    border-radius: 0;
    padding-left: 0;
    padding: 0;
    line-height: 1;
    margin-bottom: 0;
}
.blog-banner-area .breadcrumb li {
    font-family: Poppins;
    position: relative;
    margin: 0 15px;
    line-height: 1.5;
    font-size: 14px;
    text-transform: uppercase;
}
.blog-banner-area .breadcrumb li a {
    color: #fff;
    font-size: 14px;
    font-family: Poppins;
    line-height: 1.1 !important;
    text-decoration: none;
}
.blog-banner-area .breadcrumb > li + li::before {
    content: '';
    background-image: url(../images/devider.png);
    display: block;
    position: absolute;
    height: 10px;
    width: 6px;
    background-repeat: no-repeat;
    left: -18px;
    top: 6px;
    background-size: contain;
}
#blog{
	background-color: #f8f8f8;
	display: inline;
	float: left;
	padding: 70px 0;
	width: 100%;
}
.blog-area{
	display: inline;
	float: left;
	width: 100%;
}
.blog-archive .single-from-blog{
	margin-bottom: 35px;
}
.blog-title .com-like{
    margin-left: 12px;
    color: #818181;
}
.single-from-blog:hover{
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
}
.blog-left{
	display: inline;
	float: left;
	width: 100%;
}
.blog-pagination{

}
.blog-pagination > li > a,
.blog-pagination > li > span {
	padding: 8px 18px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.blog-pagination > li > a:hover,
.blog-pagination > li > span:hover,
.blog-pagination > li > a:focus,
.blog-pagination > li > span:focus{
	color: #fff;
}
.blog-pagination > li:first-child > a,
.blog-pagination > li:first-child > span {
	border-bottom-left-radius: 0px;
	border-top-left-radius: 0px;
	margin-left: 0;
}
.blog-pagination > li:last-child > a,
.blog-pagination > li:last-child > span {
	border-bottom-right-radius: 0px;
	border-top-right-radius: 0px;
}
.blog-right{
	display: inline;
	float: left;
	width: 100%;
}
.single-widget {
	background-color: #fff;
	display: inline;
	margin-bottom: 30px;
	float: left;
	padding: 20px 30px;
	width: 100%;
}
.single-widget h2 {
	color: #444444;
	font-size: 25px;
	line-height: 25px;
	margin-bottom: 15px;
	margin-left: -31px;
	padding-bottom: 0;
	padding-left: 29px;
	padding-top: 0;
}
.blog-search{
	display: inline;
	float: left;
	width: 100%;
}
.blog-search input[type="text"] {
	border: 1px solid #cccccc;
	color: #444;
	height: 43px;
	padding: 5px;
	width: 100%;
}
.blog-search .button-default {
	margin-bottom: 10px;
	margin-left: 0;
	margin-top: 23px;
}
.blog-search .button-default::after,
.blog-search .button-default > span {
  	padding: 10px 30px;
}
.follow-us {
	border-top: 1px solid #d4d4d4;
	display: inline;
	float: left;
	padding-bottom: 10px;
	padding-top: 24px;
	text-align: center;
	width: 100%;
}
.follow-us a {
	border: 1px none transparent;
	border-radius: 50%;
	color: #fff;
	display: inline-block;
	font-size: 16px;
	height: 35px;
	line-height: 35px;
	margin: 0 5px;
	text-align: center;
	width: 35px;
}
.follow-us a.facebook{
	background-color: #3b5998;
	border-color: #3b5998;
}
.follow-us a.twitter{
	background-color: #00aced;
	border-color: #00aced;
}
.follow-us a.google-plus{
	background-color: #dd4b39;
	border-color: #dd4b39;
}
.follow-us a.youtube{
	background-color: #bb0000;
	border-color: #bb0000;
}
.follow-us a.linkedin{
	background-color: #007bb5;
	border-color: #007bb5;
}
.follow-us a.dribbble{
	background-color: #ea4c89;
	border-color: #ea4c89;
}
.popular-post-widget{
	border-top: 1px solid #d4d4d4;
	display: inline;
	float: left;
	padding-bottom: 15px;
	padding-top: 24px;
	text-align: left;
	width: 100%;
}
.media-object{
    width: 100px;
}
.popular-post-widget .media-left {
	float: left;
	height: 100px;
	margin-right: 20px;
	width: 100px;
}
.popular-post-widget .media-heading{
	color: #505050;
	font-size: 18px;
}
.popular-post-widget .media-heading a{
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.popular-post-widget .media-heading a:hover,
.popular-post-widget .media-heading a:focus{
	text-decoration: none;
	outline: none;
}
.popular-post-widget .media-body p{
	color: #7c7c7c;
	font-size: 13px;
}
.instagram-feed{
	border-top: 1px solid #d4d4d4;
	display: inline;
	float: left;
	padding-bottom: 25px;
	padding-top: 24px;
	text-align: left;
	width: 100%;
}
.single-instagram-feed{
	display: inline;
	float: left;
	width: 100%;
}
.single-instagram-feed img {
  	width: 100%;
}
.instagram-feed .slick-prev,
.instagram-feed .slick-next {
	font-size: 0;
	height: 25px;
	line-height: 0;
	margin-top: -10px;
	padding: 0;
	position: absolute;
	top: 100%;
	width: 10px;
	z-index: 999;
}
.instagram-feed .slick-prev {
  	left: 28%;
}
.instagram-feed .slick-next {
  	right: 29%;
}
.instagram-feed .slick-prev::before,
.instagram-feed .slick-next::before {
	font-family: "fontAwesome";
	font-size: 20px;
	line-height: 1;
	opacity: 0.75;
}
.instagram-feed .slick-prev::before{
	content: '\f104';
}
.instagram-feed .slick-next::before{
	content: '\f105';
}
.instagram-feed .slick-dots {
  bottom: -18px;
}
.instagram-feed .slick-dots li button {
	background: #eeeeee none repeat scroll 0 0;
	border: 0 none;
	border-radius: 50%;
	color: #eeeeee;
	cursor: pointer;
	display: block;
	font-size: 0;
	height: 10px;
	line-height: 0;
	outline: medium none;
	padding: 5px;
	width: 10px;
}
.slick-dots li button:before{
    font-family: none;
}
.instagram-feed li button::before{
 	color: #eeeeee;
}
.blog-details {
  	background-color: #fff;
}
.blog-details-content{
	display: inline;
	float: left;
	padding: 40px;
	width: 100%;
}
.blog-details-content blockquote {
	color: #1f1f1f;
	font-size: 22px;
	margin-bottom: 40px;
	margin-top: 40px;
}
.blog-details-content>span{
	color: #464646;
	font-size: 20px;
	font-weight: bold;
}
.blog-details-content > a {
	color: #464646;
	font-size: 18px;
	margin-right: 4px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.blog-details-content h1,
.blog-details-content h2,
.blog-details-content h3,
.blog-details-content h4,
.blog-details-content h5,
.blog-details-content h6{
	color: #464646;
}
.blog-details-content h3{
	margin-top: 10px;
}
.blog-comment {
	display: inline;
	float: left;
	padding: 0 40px 50px;
	width: 100%;
}
.blog-comment h2 {
	color: #464646;
	font-family: "Open Sans", sans-serif;
	font-size: 25px;
	margin-bottom: 15px;
}
.pagination > li > a, .pagination > li > span{
    border: none;
    margin-right: 2px;
}
.comment-form .form-group input {
	border-radius: 0;
	color: #858585;
	font-size: 18px;
	height: 40px;
	margin-bottom: 20px;
}
.comment-form .form-group textarea{
	color: #858585;
	border-radius: 0;
	font-size: 18px;
	height: 190px;
}
.comment-form .form-control:focus {
    outline: 0;
    box-shadow: none;
}
.comment-form .form-control::-webkit-input-placeholder {
	color: #858585;
	font-size: 18px;
}

.comment-form .form-control:-moz-placeholder { /* Firefox 18- */
	color: #858585;
	font-size: 18px;
}

.comment-form .form-control::-moz-placeholder {  /* Firefox 19+ */
	color: #858585;
	font-size: 18px;
}

.comment-form .form-control:-ms-input-placeholder {
    color: #858585;
   font-size: 18px;
}
.comment-form button {
	border-radius: 0;
	float: left;
	margin-left: 0;
	margin-right: 0;
}
.comment-form.button-default::after,
.comment-form .button-default > span {
  	padding: 12px 40px;
}

/*--------------------*/
/* ERROR PAGE */
/*--------------------*/

#error-page {
	background-color: #f8f8f8;
	display: inline;
	float: left;
	padding: 150px 0;
	width: 100%;
}
.error-page-area {
	display: block;
	margin: 0 auto;
	width: 670px;
}
.error-no-area {
	background-color: #fff;
	display: inline;
	float: left;
	padding: 20px;
	width: 100%;
}
.error-no {
	display: inline;
	float: left;
	padding: 50px;
	text-align: center;
	width: 100%;
}
.error-no h2 {
	color: #727272;
	font-family: "Open Sans", sans-serif;
	font-size: 60px;
	font-weight: bold;
	text-transform: uppercase;
}
.error-no p {
	font-size: 80px;
	margin-bottom: 0;
	-webkit-transform: rotate(-20deg);
	-ms-transform: rotate(-20deg);
	transform: rotate(-20deg);
}
.error-message {
	display: inline;
	float: left;
	margin-top: 70px;
	text-align: center;
	width: 100%;
}
.error-message h4 {
	color: #4b8181;
	font-family: "Pacifico",cursive;
	font-size: 65px;
	line-height: 65px;
	margin-bottom: 50px;
}
.error-message p {
	color: #727272;
	font-size: 30px;
	padding: 0 138px;
}


/*THEME STYLE SWITCHER*/

.theme_style_switcher {
	background-color: rgba(0, 0, 0, 0.75);
    -webkit-border-bottom-right-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    border-bottom-right-radius: 4px;
    height: auto;
    left: -250px;
    padding: 15px;
    position: fixed;
    top: 140px;
    width: 250px;
    z-index: 1000;
    text-align: center;
    -moz-transition: all 0.35s ease 0s;
    -o-transition: all 0.35s ease 0s;
    -webkit-transition: all 0.35s ease 0s;
    transition: all 0.35s ease 0s
}
.theme_style_switcher a {
  border-radius: 50%;
  display: inline-block;
  float: none;
  height: 40px;
  margin: 5px;
  width: 40px;
}
.theme_style_switcher > h4 {
  color: #fff;
  padding: 15px 10px;
  text-transform: uppercase;
}
.style-switch-button {
  background-color: rgba(0, 0, 0, 0.75);
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  cursor: pointer;
  height: 50px;
  left:250px;
  text-align:left;
  position: absolute;
  top: 50px;
  width: 50px;
  z-index: 1000;
}
.style-switch-active{
	left: 0;
}
.style-switch-button i {
  color: #fff;
  font-size: 20px;
  left: 15px;
  line-height: 1;
  position: relative;
  top: 15px;
}
#default{
  background-color: #00d999;
}
#yellow{
  background-color: #e4e404;
}
#red{
  background-color: #ee4532;
}
#bridge{
  background-color: #a5d549;
}
#green{
  background-color: #3fc35f;
}
#liteBlue{
 background-color: #37c6f5;
}
#orange{
  background-color: #ff871c;
}
#pink{
  background-color: #ff2851;
}
#darkRed{
  background-color: #970001;
}
#purple{
  background-color: #c762cb;
}


/*======================///////////////
			start responsive style
=====================///////////////////////*/
@media(max-width:1500px ){
    .header-btn-area{
        margin-top: 50px;
    }
}
@media(max-width:1400px ){
    .aboutCompanyText {
       /* height: 550px;*/
    }
}
@media(max-width:1300px ){
    .header-btn-area{
        margin-top: 20px;
    }
}
@media(max-width:1199px ){
	.header-content {
            padding: 70px;
	}
	.header-content h2 {
	  font-size: 60px;
	  line-height: 58px;
	}
	.knowmore-btn {
	  font-size: 18px;
	  padding: 20px 25px;
	}
	.download-btn {
	  font-size: 18px;
	  padding: 20px 25px;
	}
	.header-btn-area {
	  margin-top: 65px;
	}
	.logo {
	  margin-right: 0;
	}
	#navbar {
	  width: 87%;
	}
	.main-nav li a {
	  padding: 39px 16px;
	}
	.search-area input[type="text"]:focus {
	  width: 820px;
	}
	.team-grid li {
	  height: 198px;
	  margin: 20px;
	  width: 20%;
	}
	.team-img-1,
	.team-img-2,
	.team-img-3,
	.team-img-4 {
	  background-position: center center;
	}
	.team-info {
		padding: 12px 0px;
	}
	.team-info p {
		margin: 0 32px;
	  	padding: 10px 0px;
	}
	.team-info a {
	  margin: 0 2px;
	}
        #testimonial{
            height: 400px;
        }
	.single-service {
	  padding: 45px 15px;
	}
	.single-service .service-title {
	  font-size: 20px;
	}
	.single-portfolio {
	  width: 23%;
	}
	.single-counter > span {
	  font-size: 50px;
	  width: 50px;
	}
	.single-counter .counter-count > span {
	  font-size: 40px;
	}
	.single-counter .counter-count > p {
	  font-size: 14px;
	}
	.single-from-blog .blog-title h2 {
	  font-size: 25px;
	}
	.single-from-blog .blog-footer a {
	  margin-right: 18px;
	}
	.contact-left h2,
	.contact-right h2 {
	  font-size: 26px;
	}
	.single-address h4 {
	  font-size: 20px;
	}
	.counter-area {
	  padding: 125px 0;
	}
	.portfolio-popup-area {
		padding: 20px 5%;
	}

	.portfolio-social-icon{
		padding: 75px 50px;
	}
}

@media(max-width:1100px ){
    .header-btn-area{
        margin-top: 20px;
    }
}

@media(max-width:991px ){
	.header-content {
            padding: 50px;
	}
	.header-content h2 {
	  font-size: 50px;
	  line-height: 50px;
	}
	.knowmore-btn {
	  font-size: 16px;
	  padding: 18px 20px;
	}
	.download-btn {
	  font-size: 16px;
	  padding: 18px 20px;
	}
	.header-btn-area {
	  margin-top: 20px;
	}
	#navbar {
	  width: 86%;
	}
	.search-area {
	  width: 3%;
	}
	.main-nav li a {
	  font-size: 14px;
	  padding: 39px 7px;
	}
	.less-padding {
	  padding: 30px 7px !important;
	}
	.search-area input[type="text"]:focus {
	  width: 630px;
	}
	.single-wc-content .wc-tittle {
	  font-size: 15px;
	}
	.about-left {
	  height: 328px;
	  width: 100%;
	}
	.about-left img {
	  width: 100%;
	}
	.about-right .tittle {
	  padding-bottom: 10px;
	  font-size: 28px;
	}
	.about-right .tittle-line {
	  margin-bottom: 15px;
	}
	.about-right p {
	  font-size: 14px;
	  margin-bottom: 6px;
	}
	.about-btn-area {
	  margin-top: 0;
	}
	.call-to-content h2 {
	  font-size: 30px;
	}
	.team-grid li {
	  height: 170px;
	  margin: 20px 10px;
	  width: 21%;
	}
	.team-info p {
 		font-size: 10px;
	}
	.team-info a {
	  font-size: 15px;
	  height: 25px;
	  width: 25px;
	}
	.team-address p {
	  font-size: 16px;
	}
	.team-address span {
	  font-size: 14px;
	}
	.title-area {
	  padding: 0 100px;
	}
        #testimonial {
            height: 430px;
        }
	.single-portfolio {
	  width: 30.8%;
	}
	.portfolio-social-icon {
  		padding: 85px 50px;
	}
        .portfolio-popup-inner img{
            float: none;
            margin-right: 0;
        }
	.portfolio-title h4 {
	  font-size: 13px;
	}
	.counter-area {
 	 padding: 90px 0;
	}
	.single-counter {
	  margin-bottom: 35px;
	}
	.single-price .price-amount {
  		font-size: 25px;
	}
	.single-price p {
  		font-size: 15px;
	}
	.single-price a span {
	  padding: 12px 35px;
	}
	.single-from-blog {
	  margin-bottom: 30px;
	}
	.blog-right {
	  margin-top: 25px;
	}
	.instagram-feed .slick-prev {
	  left: 40%;
	}
	.instagram-feed .slick-next {
	  right: 41%;
	}
	.error-message h4 {
	  font-size: 50px;
	  line-height: 50px;
	}
	.error-message p {
	  font-size: 25px;
	  padding: 0 50px;
	}
}
@media(max-width:990px ){
    .header-btn-area{
        display: none;
    }
}
.testimonial-area .slick-list.draggable{
    /*height: 100%;*/
    height: auto;
}
@media(max-width:767px ){

  .titleBlock.autopark:before {
    top: -25px;
    left: 50px;
    background-size: cover;
    width: 70%;
    height: 100px;
}
.contactBox > img {
    width: 92.5vw;
}
.details {
    display: flex;
    width: 100%;
    position: relative;
    margin: 15px 0;
}
.contactBox {
    margin-bottom: 70px;
}
.rowlinks.contactPage {
    margin-top: 0px !important;
}

.blog-banner-area h1 {
    font-size: 28px;
    margin-bottom: 15px;
    height: 53px;
}
.blog-banner-area h2 {
    font-size: 26px;
    margin-bottom: 15px;
}
.blog-banner-area .breadcrumb li a{
  font-size: 12px;
}
.blog-banner-area .breadcrumb li{
  font-size: 12px;
}
.blog-banner-area {
    float: left;
    padding: 17.5% 0;
    width: 100%;

    display: table-cell;
    vertical-align: middle;
}
.titleBlock.aboutPage h4 {
    font-size: 12px;
    letter-spacing: 1px;
}
.titleBlock.aboutPage:before {
    content: "8";
    font-size: 100px;
    top: -30px;
}
li.drobDown button {
    color: #333333;
    font-size: 14px;
    background: none;
    border: none;
    padding: 10px 20px !important;
    text-align: left;
    font-weight: 500;
    width: 100%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
li.drobDown.drop .sub-menu {
    display: contents !important;
}
.collapse #top-menu li.drobDown.drop .sub-menu {
    display: contents;
    top: 0px;
}
.collapse #top-menu li.drobDown.drop .sub-menu {
    display: contents;
    top: 0px;
}
.collapse #top-menu li.drobDown.drop .sub-menu li:first-child {
    border-top: 2px solid #0094ff;
}
.collapse #top-menu li.drobDown.drop .sub-menu li:first-child {
    border-top: 2px solid #0094ff;
}
.collapse #top-menu li.drobDown.drop .sub-menu li:last-child {
    border-bottom: 2px solid #0094ff;
}
.collapse #top-menu li.drobDown.drop .sub-menu li:last-child {
    border-bottom: 2px solid #0094ff;
}
.collapse #top-menu li.drobDown.drop .sub-menu li {
    padding: 0;
}
.collapse #top-menu li.drobDown.drop .sub-menu li {
    padding: 0;
}
.singleOport img {
   /* width: 100%;*/
}
.singleOport {
    text-align: center;
    margin-bottom: 40px;
    display: block;
    width: 100%;
    padding: 0 20px;
    float: left;
}

.titleBlock.chauffeur h2{
  font-size: 21px;
}
.titleBlock.chauffeur h2 span{
  font-size: 21px;
}
.autoparkText p {
    padding: 0 10px;
}
.titleBlock.safety h2 {
    font-size: 20px;
    text-align: center;
}
.titleBlock.safety h2 span{
    font-size: 20px;
    text-align: center;
}
.titleBlock.safety.black.city:before {
    content: '';
    height: 80px;
    display: block;
    width: 80px;
    position: absolute;
    margin: 0;
    left: 0;
    background-size: cover;
    background-image: url(../images/globe.png);
    background-repeat: no-repeat;
}

.titleBlock.safety:after {
    content: '';
    display: block;
    position: absolute;
    width: 40px;
    left: 0;
    height: 3px;
    background: #0094ff;
    right: 0px;
    bottom: -15px;
}
.safetyText h4 {
    font-size: 18px;
}
.safetyText p {
    font-size: 12px;
}
section#safety .row.states {
    display: none;
}
section#safety {
    padding: 0;
}
section#coach .row.states {
    display: none;
}
section#coach {
    padding: 0;
}
.titleBlock.safety.black h4 {
    color: #333;
    text-align: center;
    font-size: 10px;
}
section#vehicleClass {
    background: #f8f8f8;
    padding: 15px 0;
}

.titleBlock.safety.black:before {
    content: '';
    height: 90px;
    display: block;
    width: 80px;
    background-size: cover;
    position: absolute;
    left: 0;
    top: -25px;
    right: 0;
    margin: auto;
    background-image: url(../images/shild.png);
    background-repeat: no-repeat;
}
.titleBlock.safety:after {
    content: '';
    display: block;
    position: absolute;
    width: 40px;
    left: 0;
    margin: auto;
    height: 3px;
    background: #0094ff;
    right: 0px;
    bottom: -5px;
}
.carsOptions.vehicleSingle .option {
    margin: 5px;
    padding: 3px 15px;
}
.carsOptions.vehicleSingle {
    margin-top: 0;
}
.singleVehicle {
    background: #fff;
    text-align: center;
    min-height: fit-content;
		padding-top: 25px;
		padding-bottom: 25px;
    transition: .3s;
    position: relative;
    box-shadow: 0px 0px 23.75px 1.25px rgba(0, 0, 0, 0.025);
    padding-bottom: 35px;
    /* height: 100%; */
}
.vehicleClassImage {
    margin: 45px 0;
}
.vehicleClassImage img{
    margin: 45px 0;
    width: 95%;
}
.vehicleClases .col-md-6:nth-child(1) {
    padding-right: 0;
    padding-bottom: 20px;
    border: none;
}
.vehicleClases .col-md-6:nth-child(2) {
    padding-left: 0px;
    padding-bottom: 20px;
    border: none;
}
.vehicleClases .col-md-6:nth-child(3) {
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 20px;
    border: none;
}
.vehicleClases .col-md-6:nth-child(4) {
    padding-left: 0px;
    padding-top: 0px;
    padding-bottom: 20px;
    border-right: none;
    border-bottom: none;
}
.vehicleClases:before{
  display: none;
}
.testimonial-slider .slick-next {
    display: none !important;
}
.testimonial-slider .slick-prev{
  display: none !important;
}
.titleBlock.safety.black.city h4 {
    letter-spacing: 2px;
    text-align: left;
}
.titleBlock.safety.black.city h2 {
    font-size: 18px;
    letter-spacing: 0;
}
.titleBlock.safety:after{
  display: none;
}
section#chauffeurServices {
    padding: 25px 0;
}
.titleBlock.safety.black.city {
    margin-bottom: 20px;
}
.countryLink.citypage {
    text-align: right;
    display: block;
    float: right;
    position: relative;
    top: 23px;
    margin: 0;
}
.countryLink.citypage .flagImg img {
    width: 80px;
}
.countryLink.citypage .flagLink {
    padding-top: 0;
    width: 80px;
}
.countryLink.citypage .flagLink a {
    font-size: 10px;
}
.citypageAnotation {
    padding-left: 33px;
    display: block;
    width: 100%;
    float: left;
}
.citypageAnotation p {
    color: #333;
    font-size: 13px;
    margin: 0;
    padding: 0;
}
.citypageText {
    margin: 25px 0;
    padding-right: 15px;
    padding-left: 15px;
}
.citypageText h2 {
    font-size: 20px;
}
.citypageText p {
    font-size: 14px;
}
.citypageImage {
    text-align: center;
}
.citypageImage img {
    border-radius: 5px;
    margin-bottom: 25px;
}
.rowlinks .links {
    margin-bottom: 25px;
}
.vehiclesLinks .links {
    margin-bottom: 20px;
}
.minibusCars.ourCars {
    margin-top: 20px;
}
.autopark-tit-right h2 {
    font-size: 22px;
}
.titleBlock.autopark h4{
  font-size: 11px;
}
.links {
    margin-bottom: 50px;
}
.autoparkText p {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.5;
    padding: 0 5px;
}
.minibusService .col-md-6 {
    min-height: 200px;
    /* height: 100%; */
}
.aboutMinibus {
    padding-left: 15px;
}
.aboutMinibus h6 {
    color: #0094ff;
    margin: 25px 0 0;
    font-weight: 100;
    line-height: 1;
    font-size: 22px;
}
.aboutMinibus h2 {
    color: #333;
    font-size: 20px;
    margin: 20px 0;
    line-height: 1;
    padding: 0;
    font-weight: 100;
}
.aboutMinibus p {
    font-size: 13px;
    font-weight: 100;
    margin-bottom: 25px;
    line-height: 1.5;
    color: #333t;
    padding-right: 40px;
}
.tools p {
    padding-right: 0 !important;
    width: inherit;
    margin: 0 !important;
    margin-right: 4px !important;
    margin-bottom: 4px !important;
    background: #fff;
    padding: 5px 5px !important;
    color: #999 !important;
    font-size: 12px !important;
    display: inline-block;
}

.carsOptions {
    text-align: center;
    margin-top: 15px;
}
.option {
    display: inline-block;
    width: max-content;
    padding: 3px 15px;
    margin-left: 0px;
    margin: 5px;
    background: #f8f8f8;
}
.option p {
    display: inline-block;
    margin: 0;
    font-size: 12px;
    line-height: 1;
    color: #333;
}
.carsSingleImage {
    transform: scale(0.9);
}
.getaquote a {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    z-index: 2;
    background: #0094ff;
    border-right: 10px solid #fff;
    border-left: 10px solid #fff;
    text-decoration: none;
    position: relative;
    padding: 15px 70px;
    display: inline-block;
}
.getaquote:before {
    content: '';
    display: block;
    position: absolute;
    width: 90%;
    left: 0;
    top: 30px;
    height: 1px;
    background: #eee;
    right: 0;
    margin: auto;
}
.calltoAction h4 {
    text-transform: uppercase;
    color: #fefefe;
    font-weight: 400;
    margin-bottom: 25px !important;
    margin: 0;
    position: relative;
    text-align: center;
    padding: 0;
    line-height: 1.3;
    font-size: 12px;
    letter-spacing: 2px;
    font-family: Poppins;
}
.calltoAction .q-letter {
	display: none;
}
.calltoAction h3 {
    font-weight: 100;
    font-size: 28px;
    font-family: Poppins;
    line-height: 1.4;
    text-align: center;
    padding: 0;
    position: relative;
    margin: 0;
    margin-bottom: 20px;
    color: #ffffff;
    border: none;
}
.calltoAction h3:before {
    content: '';
    display: block;
    position: absolute;
    width: 40px;
    left: 0;
    height: 2px;
    right: 0;
    background: #0094ff;
    bottom: -15px;
    margin: auto;
}
a.buttonCall {
    color: #fff;
    text-transform: uppercase;
		font-size: 19px;
		padding: 16px 89px;
		right: -12px;
    background: #0094ff;
    text-decoration: none;
    transform: scale(.8);
    position: relative;
    margin-top: 35px !important;
    text-align: center;
    margin: auto;
    width: 100%;
    margin-right: 3.5%;
    float: none;
    display: inline-block;
}
a.buttonCall:before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../images/decorTop.png);
    width: 80px;
    background-repeat: no-repeat;
    height: 25px;
		left: -9%;
		top: -45%;
}
a.buttonCall:after {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../images/decorBottom.png);
    width: 80px;
    background-repeat: no-repeat;
		height: 25px;
		bottom: -45%;
    right: -10%;
}
section#callToUs {
    min-height: 353px;
    float: left;
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    display: table;
    background-size: cover;
    height: 100%;
    background-image: url(../images/car-driver-price.webp);
    background-position: center;
}
section#callToUsMinibus {
    min-height: 353px;
    float: left;
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    display: table;
    background-size: cover;
    height: 100%;
   background-image: url(../images/calltous-minibus.webp);
    background-position: center;
}
section#callToUsMinibusbuttom {
    min-height: 353px;
    float: left;
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    display: table;
    background-size: cover;
    height: 100%;
    background-image: url(../images/calltous-minibus2.webp);
    background-position: center;
}
section#callToUsMinibusPrice {
    min-height: 353px;
    float: left;
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    display: table;
    background-size: cover;
    height: 100%;
   background-image: url(../images/mini-bus-price.webp);
    background-position: center;
}
.calltoAction {
    float: left;
    padding: 44.5px 0px 44.5px;
    width: 100%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
}
.autopark-tit-left h2 {
    font-size: 22px;
}
    header#header {
    height: 300px;
    position: relative;
    background-size: cover;
    background-image: url("../images/bg-minibus-m.webp");

}
#headerchauffeur {
  background-color: #383838;
  height: 270px;
  position: relative;
  background-size: cover;
  background-image: url("../images/bg-car-m.webp");
}
#headercoach {
  height: 270px;
  position: relative;
  background-size: cover;
   background-image: url("../images/bg-bus-m.webp");
}
#headermain {
  height: 270px;
  position: relative;
  background-size: cover;
   background-image: url("../images/bg_800_900.webp");
}
.headerLeft h2 {
    font-size: 14px;
    border: none;
    padding: 0;
    line-height: 1.2;
    font-weight: 400;
    margin-top: 0px;
}

#menu-area{
    height: 70px;
}
.main-navbar{
    height: 70px;
}

.navbar-default .navbar-toggle{
      margin-right: 15px !important;
    margin-top: 15px !important;
    background: #333;
    border: none;
}
.navbar-default .navbar-toggle span {
    height: 5px;
    background-color: #0094ff !important;
}
.formBlockMobile {
    text-align: center;
    width: 95%;
    margin: auto;
}
.formBlockMobile .form-body {
    background-color: #191919;
}
.formBlockMobile .rsformProgress {
    border: 2px solid #0094ff;
    border-bottom: 0;
}
.formBlockMobile .form-footer {
    border: 2px solid #191919;
}
.formBlockMobile .form-body > label {
    text-align: left;
}
.formBlockMobile #userForm .form-body > label input[type="text"],
.formBlockMobile #userForm .form-body > label input[type="tel"],
.formBlockMobile #userForm .form-body > label select {
    height: 40px;
}
.formBlockMobile #userForm .form-body > label:after {
    right: 10px;
    bottom: 4px;
}

.formBlockMobile img {
    width: 92%;
}

.tripadvisor img {
  max-width: 50px;
}

/*
#about {
    padding: 20px 0 0px !important;
}
*/

.leftSalon{
        margin-top: 50px;
}
.salonTitle:before{
    display: none;
}
.titleBlock:before {
    font-size: 130px;
}
.salonTitle h2{
    font-size: 26px;
}
.salonTitle h4{
    margin-bottom: 10px !important;
    letter-spacing: 1px;
    font-size: 16px;
}
section#salon{
    min-height: 425px;
}
.testimonial-area .slick-slide img{

}
.googleIMG {
    margin-top: 0;
}
.serviceBlockTitle.flags:before{
    font-size: 120px;
    top: -35px;
}
.countryLink img {
    max-width: 100%;
}
.countryLink{
    margin-bottom: 10px;
}
section#countries div .row:last-child .col-md-3:first-child {
    display: none;
}
section#countries div .row:last-child .col-md-3:last-child {
    display: none;
}
.row.flagRow .col-md-3 {
    width: 50%;
    display: inline-block;
    float: left;
}
.row.flagRow .col-md-2 {
    width: 50%;
    display: inline-block;
    float: left;
}
.txtImage {
    display: inline-block;
    width: 100%;
    padding: 0px 0;
}
.txtImage img {
    display: none;
    width: auto;
    margin: 0;
}
.txtImageT {
    width: 100%;
    display: inline-block;
}
.txtImageT p {
    padding: 0;
}
.client-table {
    padding-left: 0px !important;
}
.slick-slide img{
    height: 55px !important;
}
#client{
    padding: 40px 0 60px;
}
.footerTopArea{
    padding: 55px 0 35px;
}
.footerBottomArea .col-md-3 {
    width: 50%;
    float: left;
    margin-bottom: 30px;
    padding-right: 0px;
    display: block;
}
.footerMenuLinks h4 {
    margin: 0;
    text-transform: uppercase;
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.footerMenuLinks ul li {
    padding-left: 10px;
    margin-bottom: 5px;
    position: relative;
}
.footerMenuLinks ul li a {
    color: #444;
    font-size: 16px !important;
}
#footer:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: bottom right;
    bottom: 4%;
    background-repeat: no-repeat;
    background-image: url(../images/opCar.png);
}
.fco {
    border-top: 1px solid #eee;
    padding: 20px 0;
}

.fce {
  margin: 0px;
}

.copyr p {
    margin: 0;
    font-size: 14px;
    text-align: center;
    color: #424242;
    line-height: 1.6;
}
.loader{
    left: 37%;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: #333 !important;
    border-color: #333 !important;
    color: #fff;
}
#navbar {
    margin-right: -15px !important;
    width: 110% !important;
    margin-left: -15px !important;
    padding-right: 0 !important;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
    padding-left: 0px !important;
}
.main-nav {
    background: #fff none repeat scroll 0 0;
    display: block;
    margin: 0;
    position: relative;
    background-image: url(../images/opCar.png) !important;
    text-align: center;
    width: 100% !important;
    background-size: 60% !important;
    background-repeat: no-repeat !important;
    background-position: bottom right !important;
}
.main-nav li.active a {
    background: #0094ff !important;
    color: #fff !important;
    border-color: #0094ff !important;
}
.main-nav li a {
    display: block;
    padding: 10px 20px !important;
    text-align: left;
}
.getQuote {
    display: inline-block;
    position: relative;
    width: 100%;
    float: right;
}
.getQuote a {
    background-color: rgb(0, 148, 255);
    color: #fff;
    display: block;
    margin: 0px 0 0;
    padding: 20px 10px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
}
.header-shadow{
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.6);
}
.navbar-fixed-top .getQuote a {
    background-color: rgb(0, 148, 255);
    color: #fff;
    display: block;
    float: right;
    transition: .3s;
    width: 100% !important;
    margin: 0px 0 0 !important;
    padding: 19px 10px;
    font-size: 16px !important;
    text-transform: uppercase;
    font-weight: 500 !important;
    text-align: center;
}
.getQuote::before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../images/car.png);
    width: 130px;
    left: 0px;
    background-size: auto;
    transform: scaleX(-1);
    bottom: 13px;
    height: 50px;
    background-repeat: no-repeat;
}

/*
header#header:before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../images/downIco.png);
    width: 100%;
    height: 20px;
    background-size: contain;
    bottom: 25px;
    left: 0;
      -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
    background-repeat: no-repeat;
    background-position: center;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
*/
ul.footerSocial {
    line-height: 1;
    margin-top: 10.4px;
}
ul.footerSocial li {
   /* display: inline-flex;*/
    text-align: right;
    margin-right: 0%;
}
ul.footerSocial li a {
    font-size: 12px;
    color: #2b2b2b;
    letter-spacing: 0px;
    font-weight: 100;
    text-decoration: none;
}
/*.footerTopArea .col-md-3:nth-child(2){
    display: none;
}
.footerTopArea .col-md-3:nth-child(3){
    display: none;
}
.footerTopArea .col-md-3:nth-child(4){
    display: none;
}*/
.flagLink a {
    text-decoration: none;
    font-size: 12px;
}
.googleIMG img {
        max-width: 55%;
        max-height: 100%;
}
.serviceBlockTitle:before {
    content: "S";
    display: block;
    position: absolute;
    color: #f8f8f8;
    top: -35px;
    text-align: center;
    width: 100%;
    font-size: 120px;
    line-height: 1;
    font-weight: 500;
}
.serviceBlockTitle h4{
    font-size: 13px;
}
.serviceBlockTitle h3{
    font-size: 26px;
}
.row.serviceGridTop .col-md-3.np {
    width: 50%;
    display: inline-block;
    float: left;
}
.row.serviceGridBot .col-md-3.np {
    width: 50%;
    display: inline-block;
    float: left;
}
.singleService {
    width: 100%;
    height: 186px;
    transition: .3s;
    border-bottom: 1px solid #eee;
    text-align: center;
}
.singleServiceImg{
    height: 42%;
}
.serviceBlockTitle.testimonTit{
    margin-bottom: 30px;
}
.row.serviceGridBot .col-md-3.np:nth-child(3) .singleService {
    border-bottom: none !important;
}
.row.serviceGridBot .col-md-3.np:nth-child(4) .singleService {
    border-bottom: none !important;
}
.singleService h4{
    font-size: 14px;
}
.singleService p{
    font-size: 12px;
    line-height: 16px;
}
.defaultSection{
        padding: 50px 0 30px;
}
#countries{

}
.serviceBlockTitle.testimonTit:before{
    font-size: 120px;
    top: -35px;
}
.serviceBlockTitle{
    margin-bottom: 40px;
}
.salonTitle{
    margin-bottom: 35px;
}
.leftSalon ul li {
    font-size: 12px;
    letter-spacing: 0px;
    padding-left: 0px;
    color: #fff;
    position: relative;
    margin-bottom: 10px;
}
section#testiomnial{
        padding: 50px 0 40px;
}
.testimonial-area .slick-slide {
    cursor: pointer;
    background: transparent !important;
    margin: 0 0px !important;
    text-align: center;
    position: relative;
    padding: 0px !important;
}
.testimonial-area .single-slide > p{
    padding: 0 !important;
}
.leftSalon ul li:before{
    display: none;
}
.leftSalon p {
    font-size: 14px;
    line-height: 1.5;
    color: #a0a0a0;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.salonTitle h2:before{
    bottom: -15px;
}
section#salon:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 425px;
    background-image: url(../images/salon.jpg);
    background-repeat: no-repeat;
    right: 0;
    background-size: cover;
    background-position: center;
    top: 0;
}
.about-tit-left {
    text-align: center;
}
.about-tit-left h4{
    font-size: 13px;
}
.about-tit-left h2{
    font-size: 26px;
        margin-bottom: 14px !important;
}

.about-tit-left h1{
    font-size: 28px;
        margin-bottom: 14px !important;
}
.about-tit-left h3{
    font-size: 24px;
        margin-bottom: 14px !important;
}
.about-tit-left h3 span{
    font-size: 24px;
        margin-bottom: 14px !important;
}
.about-tit-right.wow.fadeInRight {
    text-align: center;
}
.titleBlock{
    margin-top: 40px;
        margin-bottom: 40px;
}
.carAvalaible {
    background: #fafafa;
    width: auto;
    height: 270px;
    text-align: center;
    margin-bottom: 30px;
}
.row.states {
    background: #005694;
        padding: 20px 0;
}
.row.states .col-md-3:nth-child(4) {
    padding-left: 10px;
}
.stats {
    text-align: left;
    justify-content: flex-start;
}
.stats .statsTEXT {
	margin-left: 30px;
}
.stats .stats-num {
	color: #fff;
	font-size: 25px;
}
.stats .stats-desc {
	font-size: 13px;
	font-weight: 500;
	color: #fff;
}
.row.states .col-md-3:nth-child(3) {
    padding-top: 8px;
}
.row.states .col-md-3:nth-child(2) {
    padding-left: 17px;
}
.row.states .col-md-3:nth-child(1) {
    padding-left: 20px;
}
.carIMG {
    width: 100%;
    display: block;
    margin-bottom: 22px;
    position: relative;
    height: 50%;
}
.about-tit-right.wow.fadeInRight p {
    font-size: 16px;
    margin-top: 20px !important;
    padding: 0 10px;
}
.contentImage.ap img {
    width: 100%;
    height: 100%;
}
.contentText.ap h2 {
    font-size: 20px;
    padding-right: 15px;
}
.contentText.ap p {
    font-size: 14px;
}
.singleImageAP {
    text-align: center;
    margin-bottom: 30px;
}
.titleBlock.chauffeur.contactus h2 {
    padding: 0 10%;
    font-size: 26px;
}

.titleBlock.chauffeur.contactus h2 Span {
    font-size: 26px;
}

.titleBlock.chauffeur:before {
    content: "C";
    font-size: 100px;
    top: -30px;
}
.contactForm {
    padding: 0 5%;
}

/*
.logo img {
    height: 88%;
    width: 84%;
}

*/
.logo {
    width: auto;
    padding: 0;
    margin: 2px 0 8px 0;
    margin-left: 15px !important;
}
	.header-content h2 {
	  font-size: 35px;
	  line-height: 35px;
	}
	.header-content h2 span {
	  font-weight: normal;
	  line-height: 55px;
	}
        .header-btn-area{
            margin-top: 0px;
            display: block;
        }
        .header-btn-area i{
            font-size: 20px;
            border: 2px solid #fff;
            padding: 3px 8px;
        }
	.knowmore-btn {
	  font-size: 15px;
	  padding: 15px 18px;
	}
	.download-btn {
	  font-size: 15px;
	  padding: 15px 18px;
	}
	.main-nav li {
	  display: block;
	  float: left;
	  width: 100%;
	}
	.main-nav li a {
	  display: block;
	  padding: 8px 7px;
	}
	.less-padding {
	  padding: 8px 7px !important;
	}
	#navbar {
	  margin-right: 0;
	  width: 99%;
	  padding-right: 0;
	  padding-left: 30px;
	}
	.main-nav {
	  background: #fff none repeat scroll 0 0;
	  display: block;
	  margin: 0;
	  text-align: center;
	  width: 100%;
	}
	.navbar-default .navbar-toggle {
	  border-color: #ddd;
	  margin-right: 78px;
	  margin-top: 32px;
	  border-radius: 0;
	}
	.navbar-default .navbar-toggle:hover,
	.navbar-default .navbar-toggle:focus{
		background-color: #00d999;
		border-color: #00d999;
		color: #fff;
	}
	.navbar-default .navbar-toggle:hover .icon-bar,
	.navbar-default .navbar-toggle:focus .icon-bar{
		background-color: #fff;

	}
	.search-area {
	  left: -3px;
	  top: -100px;
	  width: 3%;
	}
	.search-area input[type="text"]:focus {
	  height: 36px;
	  top: 31px !important;
	  width: 550px;
	}
	.navbar-fixed-top .search-area{
		top: -77px;
	}
	.navbar-fixed-top .navbar-toggle {
	  margin-top: 25px;
	}
	.navbar-fixed-top .search-area input[type="text"]:focus {
	  top: 23px !important;
	}
	.wc-table li {
	  margin-bottom: 20px;
	  width: 50%;
	}
	#about {
	  padding: 50px 0 50px;
	}
	.about-left {
	  width: 96%;
	}
	.about-left img {
/*	  height: 100%;*/
	  width: 100%;
	}
	.about-right {
            margin-top: 35px;
            padding-left: 10px;
            background: rgba(255, 255, 255, 0.95);
            width: 96%;
            margin-left: 7px;
	}
	.title-area {
	  padding: 0 50px;
	}
	.call-to-content h2 {
	  font-size: 28px;
	}
	.team-grid li {
	  height: 230px;
	  margin: 20px 25px 70px;
	  width: 38%;
	}
	.team-img-1, .team-img-2, .team-img-3, .team-img-4 {
	  background-position: center center;
	  background-size: 100% auto;
	}
	.team-info {
	  padding: 30px 18px;
	}
	.team-info p {
	  font-size: 15px;
	}
        #testimonial {
            height: 430px;
        }
	.single-portfolio {
	  width: 30.3%;
	}
	.button-default::after, .button-default > span {
	  padding: 12px 8px;
	  font-size: 12px;
	}
	.single-slide > p {
	  font-size: 15px;
	  line-height: 28px;
	  margin-top: 37px;
	}
	.contact-left {
	  margin-bottom: 30px;
	}
	.instagram-feed .slick-prev {
	  left: 39%;
	}
	.instagram-feed .slick-next {
	  right: 40%;
	}
	#error-page {
	  padding: 100px 0;
	}
	.error-page-area {
	  width: 500px;
	}
	.error-message h4 {
	  font-size: 35px;
	  line-height: 35px;
	}
	.error-message p {
	  font-size: 20px;
	  padding: 0 45px;
	}
	.logo span{
		padding-left: 15px;
	}
	.stepText p {
        font-size: 12px;
        /* padding-left: 0px; */
    }
}
@media(max-width:710px ){
    	.about-right {
            margin-top: -15px;
	}
}

@media(max-width:680px ){
    	.about-right {
            margin-top: -70px;
	}
        .search-area input[type="text"]:focus {
            width: 500px;
        }
}

@media(max-width:640px ){

        .about-right {
            margin-top: 280px;
            margin-left: 0;
            padding-left: 0;
            width: 100%;

	}
        .search-area input[type="text"]:focus {
            width: 480px;
        }
        .header-btn-area{
            margin-top: -10px;
        }
        #testimonial {
            height: 450px;
        }
	.single-portfolio {
		width: 46%;
	}

	#portfolio-popup.portfolio-popup-show{
		display: block;
	}

	.portfolio-popup-inner img {
		max-width: 80%;
	}

	.portfolio-social-icon {
		padding: 110px 50px;
	}
}

@media(max-width:600px ){
        .about-right {
            margin-top: 230px;
        }
        #testimonial {
            height: 480px;
        }
        .header-btn-area{
            display: none;
        }
        .search-area input[type="text"]:focus {
            width: 380px;
        }
}

@media(max-width:530px ){
        .about-right {
            background: none;
            margin-top: 170px;
        }
        #testimonial {
            height: 530px;
        }
}


@media(max-width:480px ){
	.header-content {
	  padding: 20px;
	}
	.header-content h2 {
	  font-size: 25px;
	  line-height: 25px;
	}
	.header-content h2 span {
	  font-weight: normal;
	  line-height: 43px;
	}
        .header-btn-area{
            display: block;
        }
        .header-btn-area i {
            font-size: 15px;
            border: 2px solid #fff;
            padding: 3px 7px;
        }
	.knowmore-btn {
	  font-size: 14px;
	  padding: 10px 15px;
	}
	.download-btn {
	  font-size: 14px;
	  padding: 10px 15px;
	}
	#navbar {
	  width: 100%;
	}
	.title-area {
	  padding: 0 15px;
	}
        #testimonial {
            height: 480px;
        }
	.search-area input[type="text"] {
	  font-size: 15px;
	}
	.search-area input[type="text"]:focus {
		height: 35px;
		top: 32px !important;
		width: 320px;
	}
	.call-to-content h2 {
	  font-size: 20px;
	}
	.team-grid {
	  padding: 0 75px;
	}
	.team-grid li {
	  height: 300px;
	  margin: 20px 0 70px;
	  width: 100%;
	}
	.team-info {
	  padding: 70px 18px;
	}
	.team-info p {
	  font-size: 18px;
	}
	.single-portfolio {
	  margin-left: 8px;
	  width: 100%;
	}
	#counter img {
	  height: 354px;
	  width: 100%;
	}
	.counter-area {
	  padding: 40px 0;
	}
	.single-counter > span {
	  font-size: 50px;
	  text-align: center;
	  width: 100%;
	}
	.single-counter .counter-count {
	  margin-left: 0;
	  margin-top: 20px;
	  text-align: center;
	  width: 100%;
	}
	.single-price .price-header {
	  font-size: 20px;
	  padding: 10px 0;
	}
	.single-price .price-header::after {
	  bottom: -43%;
	}
	.standard-price .price-header {
	  padding: 20px 0;
	}
	.standard-price .price-header::after {
	  bottom: -32%;
	}
	.single-price .price-amount {
	  font-size: 16px;
	}
	.single-price p {
	  font-size: 14px;
	}
	.single-price a span {
	  padding: 12px 20px;
	}
	.button-default::after, .button-default > span {
	  font-size: 10px;
	}
        	.price-table li {
	  margin-bottom: 20px;
	  width: 100%;
	  border: 1px solid #e4e4e4;
	}
	.single-price a span {
	  font-size: 14px;
	}
	.single-price .price-amount {
	  font-size: 16px;
	}
	.single-price p {
	  font-size: 14px;
	}
	.button-default::after, .button-default > span {
	  font-size: 14px;
	}
	.standard-price {
	  margin-top: 0;
	}
	.single-slide {
	  padding: 0 100px;
	}
	.single-slide > p {
	  font-size: 14px;
	  line-height: 26px;
	  margin-top: 20px;
	}
	.single-slide > p::after {
	  font-size: 40px;
	  top: -10px;
	}
        .about-right {
            background: none;
            margin-top: 110px;
        }
	.testimonial-thumb {
	  margin: 20px auto 0;
	}
	.client-table {
	  padding-left: 30px;
	}
	.instagram-feed .slick-prev {
	  left: 34%;
	}
	.instagram-feed .slick-next {
	  right: 35%;
	}
	#error-page {
	  padding: 80px 0;
	}
	.error-page-area {
	  width: 350px;
	}
	.error-no {
	  padding: 20px;
	}
	.error-no h2 {
	  font-size: 45px;
	}
	.error-no p {
	  font-size: 50px;
	}
	.error-message h4 {
	  font-size: 35px;
	  line-height: 35px;
	}
	.error-message p {
	  font-size: 20px;
	  padding: 0 45px;
	}

	.portfolio-social-icon {
		padding: 190px 50px;
	}

	.logo span {
		font-size: 40px;
	}
	
	    .nav-pills > li {
  width: 90%;  
}

}
@media(max-width:470px ){
    .formBlockMobile #userForm .form-body {
        padding: 20px 25px;
    }
    .formBlockMobile #userForm .form-header,
    .formBlockMobile #userForm .form-footer {
        padding: 0 20px;
    }
    .formBlockMobile #userForm .form-footer .form-f-current-step {
        font-size: 13px;
        min-width: 100px;
    }
    .formBlockMobile #userForm .form-body > label.half {
        width: calc(50% - 8px);
    }
    .formBlockMobile #userForm .form-body > label {
        font-size: 11px;
    }
    .formBlockMobile #userForm .form-body > label input[type="text"],
    .formBlockMobile #userForm .form-body > label input[type="tel"],
    .formBlockMobile #userForm .form-body > label select,
    .formBlockMobile #userForm .form-body > label textarea {
        font-size: 14px;
    }
    .formBlockMobile .form-body > label .radio-wrapper .radio-box span {
        font-size: 13px;
    }
    .formBlockMobile .form-body > label .radio-wrapper .radio-box > label {
        width: 20px;
        height: 20px;
    }
    .formBlockMobile #userForm .form-header .form-h-text {
        font-size: 20px;
        margin-bottom: 2px;
    }
    
}
@media(max-width:433px ){
        .search-area input[type="text"]:focus {
           width: 300px;
        }
        #testimonial {
            height: 530px;
        }
        .header-btn-area {
            margin-top: -20px;
        }
        .about-right {
            background: none;
            margin-top: 80px;
        }
}
@media(max-width:410px ){
        .search-area input[type="text"]:focus {
           width: 280px;
        }
        #testimonial {
            height: 570px;
        }
        .about-right {
            background: none;
            margin-top: 50px;
        }
}
@media(max-width:380px ){
    .formBlockMobile #userForm .form-body > label.half {
        width: 100%;
    }
    #userForm .form-h-nav li span.nav-number {
        font-size: 13px;
    }
    #userForm .form-h-nav li {
        font-size: 12px;
    }
    .form-header .form-h-text {
        font-size: 18px;
    }
    .form-header .form-h-left {
        display: none;
    }
        #testimonial {
            height: 600px;
        }
        .header-btn-area {
           display: none;
        }
        .search-area input[type="text"]:focus {
           width: 255px;
        }
}
@media(max-width:360px ){
	.header-inner > img {
	  height: 150px;
	  width: 100%;
	}
	.header-content {
	  padding: 30px;
	}
	.header-content h2 {
	  font-size: 20px;
	  line-height: 18px;
	}
	.header-content h2 span {
	  font-weight: normal;
	  line-height: 35px;
	}
	.header-btn-area {
	  margin-top: 00px;
	}

	.header-btn-area a {
	  display: block;
	  margin: 10px 15px;
	}
        .header-btn-area {
            margin-top: 50px;
        }
	.knowmore-btn {
	  font-size: 14px;
	  padding: 7px 8px;
	}
	.download-btn {
	  font-size: 14px;
	  padding: 7px 8px;
	}
	#navbar {
	  width: 100%;
	}
	.title-area {
	  padding: 0 10px;
	}
	.tittle {
	  font-size: 20px;
	  padding-bottom: 5px;
	}
	.title-area p{
		font-size: 14px;
	}
        #testimonial {
            height: 550px;
        }
	.search-area input[type="text"] {
	  font-size: 14px;
	}
	.search-area input[type="text"]:focus {
		height: 35px;
		top: 32px !important;
		width: 215px;
	}
	.wc-table li {
	  margin-bottom: 20px;
	  width: 100%;
	}
	.about-right {
	  margin-top: 45px;
	}
	.about-right .tittle {
	  font-size: 20px;
	  padding-bottom: 5px;
	}
	.about-right .tittle-line {
	  width: 60px;
	}
	.call-to-content h2 {
	  font-size: 20px;
	}
	.team-grid {
	  padding: 0 55px;
	}
	.team-grid li {
	  height: 220px;
	}
	.team-info {
	  padding: 20px 10px;
	}
	.team-info p {
	  font-size: 14px;
	}
	.portfolio-container {
	  margin-left: 0;
	}
	.portfolio-menu ul li {
	  font-size: 12px;
	  margin: 0 7px 5px;
	  padding: 8px;
	}
	.single-portfolio {
	  width: 100%;
	  margin-left: 0px;
	}
	.portfolio-social-icon {
	  padding: 130px 50px;
	}
	#counter img {
	  height: 354px;
	  width: 100%;
	}
	.counter-area {
	  padding: 40px 0;
	}
	.single-counter > span {
	  font-size: 40px;
	}
	.single-counter .counter-count > span {
	  font-size: 30px;
	}
	.single-counter .counter-count > p {
	  font-size: 12px;
	}
	.price-table li {
	  margin-bottom: 20px;
	  width: 100%;
	  border: 1px solid #e4e4e4;
	}
	.single-price a span {
	  font-size: 14px;
	}
	.single-price .price-amount {
	  font-size: 16px;
	}
	.single-price p {
	  font-size: 14px;
	}
	.button-default::after, .button-default > span {
	  font-size: 14px;
	}
	.standard-price {
	  margin-top: 0;
	}
	.single-slide {
	  padding: 0 50px;
	}
	.introduction-btn {
	  font-size: 20px;
	}
	.header-content h2 {
	  margin-bottom: 10px;
	}
	.contact-left h2, .contact-right h2 {
	  font-size: 20px;
	  margin-bottom: 10px;
	}
	.single-address h4 {
	  font-size: 18px;
	}
	.single-address p {
	  font-size: 13px;
	}
	.contact-right {
	  padding: 30px 20px;
	}
	.contact-form .form-group input {
	  font-size: 16px;
	  height: 40px;
	}
	.footer-social a {
	  font-size: 15px;
	  height: 40px;
	  line-height: 40px;
	  margin: 0 5px;
	  width: 40px;
	}
	.instagram-feed .slick-prev {
	  left: 26%;
	}
	.instagram-feed .slick-next {
	  right: 27%;
	}
	.single-widget h2 {
	  font-size: 20px;
	  line-height: 20px;
	}
	.blog-pagination > li > a,
	.blog-pagination > li > span {
	  padding: 6px 15px;
	}
	.follow-us a {
	  font-size: 15px;
	  height: 32px;
	  line-height: 32px;
	  margin: 0 2px;
	  width: 32px;
	}
	.blog-details-content {
	  padding: 25px;
	}
	.blog-comment {
	  padding: 0 25px 40px;
	}
	.blog-details-content blockquote {
	  font-size: 18px;
	  margin-bottom: 30px;
	  margin-top: 30px;
	}
	#error-page {
	  padding: 60px 0;
	}
	.error-page-area {
	  width: 250px;
	}
	.error-no {
	  padding: 20px;
	}
	.error-no h2 {
	  font-size: 35px;
	}
	.error-no p {
	  font-size: 40px;
	}
	.error-message h4 {
	  font-size: 25px;
	  line-height: 20px;
	}
	.error-message p {
	  font-size: 16px;
	  padding: 0 15px;
	}
        .about-right {
            background: none;
            margin-top: 0px;
        }
	.portfolio-popup-inner img {
		max-width: 80%;
		float: none;
		padding-top: 50px;
	}

	.portfolio-popup-inner h2{
		font-size: 20px;
	}

	.portfolio-popup-inner p{
		font-size: 14px;
	}



}


@media(max-width:320px ){
	.search-area input[type="text"]:focus {
		width: 210px;
	}
	.search-area input[type="text"] {
	  font-size: 12px;
	}
	#navbar {
	  width: 100%;
	}
	.team-grid {
	  padding: 0 35px;
	}
	.team-info {
	  padding: 25px 10px;
	}
	.footer-social a {
	  font-size: 14px;
	  height: 35px;
	  line-height: 35px;
	  margin: 0 2px;
	  width: 35px;
	}
	.footer-bottom p {
	  font-size: 15px;
	}
	.instagram-feed .slick-prev {
	  left: 23%;
	}
	.instagram-feed .slick-next {
	  right: 24%;
	}
	.blog-pagination > li > a,
	.blog-pagination > li > span {
	  padding: 4px 13px;
	}
	.follow-us a {
	  font-size: 14px;
	  height: 30px;
	  line-height: 30px;
	  margin: 0 2px;
	  width: 30px;
	}
	.popular-post-widget .media-left {
	  margin-right: 0;
	  text-align: center;
	  width: 100%;
	  margin-bottom: 15px;
	}
	.popular-post-widget .media-left a{
		display: inline-block;
	}
	.popular-post-widget .media-body {
	  text-align: center;
	}
	.formBlockMobile {
    max-width: 700px;
    margin: 0 auto;
    position: absolute;
    padding-left: 5%;
    padding-top: 10%;
}
.formBlockMobile .form-body {
    background-color: #191919;
}
.formBlockMobile .rsformProgress {
    border: 2px solid #0094ff;
    border-bottom: 0;
}
.formBlockMobile .form-footer {
    border: 2px solid #191919;
}

}
.help-block{display: none}
.moduletable #about.defaultSection .titleBlock{
	/*margin-top: 85px;*/
}
.titleBlock.aboutPage{
	margin-top: 18px;
}
.flagImg img{
	max-width: 100%;
}
.carsSingleImage img{
	max-width: 100%;
}
.singleOport img{
	max-width: 100%;
}
.contactBox img{
	max-width: 100%;
}
@media(max-height:880px) and (min-width:992px) and (max-width:1200px) {
    .about-tit-left h1 {
        font-size: 34px;
    }
        .about-tit-left h2 {
        font-size: 32px;
    }
        .about-tit-left h3 {
        font-size: 30px;
    }
    .about-tit-right p {
        font-size: 15px;
    }
    .about-tit-left h2 {
        margin-bottom: 10px !important;
    }
        .about-tit-left h1 {
        margin-bottom: 10px !important;
    }
    .about-tit-left h3 {
        margin-bottom: 10px !important;
    }
    .stats .stats-num {
        font-size: 32px;
    }
    .statsIMG {
        width: 70px;
    }
    .statsIMG img {
        max-width: 100%;
    }
    .stats .stats-desc {
        font-size: 12px;
    }
    .serviceBlockTitle {
        margin-bottom: 40px;
    }
    .single-slide > p {
        font-size: 18px;
    }
    .serviceBlockTitle h3 {
        font-size: 36px;
    }
    section#testiomnial {
        padding-top: 110px;
    }
    .titleBlock {
        margin-bottom: 40px;
    }
}
@media(max-height:880px) and (min-width:992px){
    .titleBlock.chauffeur.contactus {
        margin-top: 40px;
        margin-bottom: 50px;
    }
    #rsform_3_page_0 .group label select {
        height: 50px;
    }
    #rsform_3_page_0 .group label.select:before {
        bottom: 21px;
    }
    #rsform_3_page_0 .group label input {
        height: 50px;
    }
    #rsform_3_page_0 .group {
        margin-bottom: 20px;
    }
    #rsform_3_page_0 .group label p {
        margin-bottom: 5px;
    }
    #rsform_3_page_0 .group label textarea {
        min-height: 160px;
    }
    #rsform_3_page_0 .group.submitbtn button {
        margin-top: 10px;
    }
    .contactBox > h2 {
        margin-top: 20px;
    }
    .contactBox .details > img {
        width: 60px;
        height: 60px;
    }
    .details h2 {
        padding: 10px 0 10px 20px;
    }
    .stepText {
        width: calc(85% - 10px);
    }
    .stepImg {
        margin-right: 10px;
    }
    .stepText h5 {
        font-size: 20px;
    }
    .stepText p {
        line-height: 22px;
    }
    .carAvalaible {
        margin-bottom: 50px;
    }

	#header{
		height: 580px;
	}
	#headerchauffeur{
		height: 580px;
	}
	#headercoach{
		height: 580px;
	}
	#headermain{
		height: 580px;
	}

	section#salon{
		height: 560px;
	}
	section#aboutCompany{
		padding: 80px 0 80px;

	}
	.aboutCompanyText{
		/*height: 420px;*/
	}
	.headerLeft h2{
		/*margin-bottom: 40px;*/
	}
	.step{
		margin-bottom: 30px;
	}
	#userForm .form-body > label input[type="text"], 
	#userForm .form-body > label input[type="tel"], 
	#userForm .form-body > label select, 
	#userForm .form-body > label textarea{
		height: 40px;
	}
	#userForm .form-body{
		padding: 20px 35px 20px;
	}
	#userForm .form-header{
		height: 65px;
	}
	#userForm .form-footer{
		height: 65px;
	}
	#userForm .form-body > label:after{
		bottom: 4px;
	}

}
@media(max-width:1170px){
	.main-nav{
		padding-left: 93px;
    width: 83%;
	}
	.getQuote{
		right: -40px;
	}
	.navbar-fixed-top .getQuote{
		right: -30px;
	}
}
@media (max-width: 768px){
	.navbar-fixed-top .getQuote {
		right: 0px;
		top: 0px;
}
.getQuote{
	right: 0px;
		top: 0px;
}
section#salon{
	height: 420px;
}
section#salon .leftSalon{
	margin-top: 0;
}
#countries {
	padding-top: 60px;
}
.page-header h2{
	font-size: 0;
}
.titleBlock.safety:before{
	left: -16px;
	top: -60px;
	position: absolute;
}
.titleBlock.safety{
	margin-bottom: 40px;
}
#vehicleClass.defaultSection {
	padding-top: 20px;
}

	.formBlockMobile {
    max-width: 700px;
    margin: 0 auto;
    position: absolute;
    padding-left: 5%;
    padding-top: 40%;
}
.formBlockMobile .form-body {
    background-color: #191919;
}
.formBlockMobile .rsformProgress {
    border: 2px solid #0094ff;
    border-bottom: 0;
}
.formBlockMobile .form-footer {
    border: 2px solid #191919;
}

.message-form {
    width: 100%;
}

}
.formBlockMobile > div{
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    padding-right: 0 !important;
}
.formBlockMobile > div p{
/*	display: none; */
}
@media (max-width: 414px){
	.vehicleClassImage a img{
		max-width: 100%;
	}
.formBlockMobile {
    max-width: 700px;
    margin: 0 auto;
    position: absolute;
    padding-left: 5%;
    padding-top: 14%;
}
.formBlockMobile .form-body {
    background-color: #191919;
}
.formBlockMobile .rsformProgress {
    border: 2px solid #0094ff;
    border-bottom: 0;
}
.formBlockMobile .form-footer {
    border: 2px solid #191919;
}
}