
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  margin: 0;
	padding: 0;
  font-family: 'Poppins', sans-serif;
  overflow-x:hidden;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ac0000+0,f61212+100 */

}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.page-loader{
	width: 100%;
	height: 100vh;
	position: absolute;
	background: rgba(17,22,36,1);
	z-index: 999999;
}
.container {
	max-width:1200px;
	margin: 0 auto;
}
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 15px 0;
}
header section {
    display: flex;
    align-items: center;
}
.logo img {
    transition: all 0.4s ease 0s;
}
.inner_header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.menu_round {
    position: relative;
    display: none;
    width: 40px;
    float: right;
    height: 50px;
    margin: 0 25px 0 0;
    top: 21px;
}
.menu_round span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    display: block;
    border-radius: 25px;
    margin: 10px 0 0;
}
.menu_round:before {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    width: 70%;
    height: 3px;
    background-color: #fff;
	border-radius: 25px;
}
.menu_round:after {
    position: absolute;
    right: 0;
    top: 20px;
    content: "";
    width: 70%;
    height: 3px;
    background-color: #fff;
    border-radius: 25px;
}
ul.menu {
    display: flex;
    font-size: 14px;
    margin: 15px 0 0 0;
}
ul.menu li {
    margin: 0 30px 0 0;
	position:relative;
}
ul.menu li:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -10px;
    background: #ff0000;
    width: 20px;
    height: 4px;
    border-radius: 15px;
	display:none;
}
ul.menu li:hover:before {
	display:block;
}
ul.menu li a {
    display: block;
    text-decoration: none;
    color: #fff;
}
.contact_number {
    font-size: 17px;
    color: #fff;
    font-weight: 600;
    margin: 0;
	display:block;
    background-image: url(../images/ride_icon3.png);
    background-repeat: no-repeat;
    background-position: left 20px;
    background-size: 22px auto;
    padding: 0 0 0 28px;
	text-decoration: none;
	position:relative;
	transition: all 0.4s ease 0s;
}
.contact_number:hover {
	color: #ff8383;
	text-shadow: 0 0 10px #000;
}
.contact_number span {
    display: block;
    font-size: 13px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    opacity: 0.7;
}
.contact_number:before {
    position: absolute;
    content: "";
    left: -7px;
    top: 15px;
    background: #ff0000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0px 0px 1px 1px #0000001a;
    animation: pulse-animation 2s infinite;
    z-index: -5;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
}


header.sticky {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.9);
	    padding: 12px 0;
}
header.sticky .logo img {
    width: 150px;
}
header.sticky .contact_number span {
    font-size: 11px;
}
header.sticky .contact_number {
    font-size: 14px;
}
header.sticky .contact_number {
    background-position: left 13px;
}
header.sticky .contact_number:before {
    left: -6px;
    top: 9px;
    width: 32px;
    height: 32px;
}
header.sticky ul.menu {
    font-size: 13px;
    margin: 0px 0 0 0;
}

.banner_wrapper {
    background-image: url(../images/banner.png);
    background-repeat: no-repeat;
    height: 715px;
    background-position: center top;
    background-size: cover;
	position: relative;
}
.banner_wrapper:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    background-color: rgba(7, 18, 50, 0.5);
    width: 100%;
    height: 100%;
}
.banner_wrapper .container {
    position: relative;
    z-index: 99;
    min-height: 716px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner_wrapper h1 {
    text-align: center;
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 200;
    color: #fff;
}
.banner_wrapper section h1 strong {
    font-weight: 500;
    color: #ff0000;
}
.banner_wrapper section {
    text-align: center;
    position: relative;
    z-index: 999;
}
.banner_wrapper section small {
    display: block;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0 0 15px;
    font-size: 16px;
}
.banner_wrapper section a {
    display: block;
    width: 215px;
    padding: 20px 0;
    border: solid 1px #fff;
    border-radius: 50px;
    margin: 30px auto 0;
    color: #fff;
    text-decoration: none;
	transition: all 0.4s ease 0s;
}
.banner_wrapper section a i {
    transform: rotate(-35deg);
    position: relative;
    left: 10px;
}
.banner_wrapper section a:hover {
	background-color: #ff0000;
    border: solid 1px #ff0000;
    color: #fff;
}
.banner_wrapper .container:before {
    position: absolute;
    left: 15px;
    top: -65px;
    content: "";
    background-image: url(../images/LUXURY.png);
    width: 112px;
    height: 905px;
}
.banner_wrapper .container:after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    background-image: url(../images/banner_line.png);
    width: 100%;
    height: 100%;
    opacity: 0.2;
}
ul.social_icons {
    position: absolute;
    right: 0;
    bottom: 110px;
    z-index: 9999999;
    padding: 20px;
    text-align: center;
}
ul.social_icons li a {
    color: #fff;
    display: flex;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: none;
	transition: all 0.4s ease 0s;
}
ul.social_icons li:hover a {
	background-color: rgba(0, 0, 0, 0.3);
    border: solid 1px #fff;
}
ul.social_icons li a {
    color: #fff;
}

.intro_wrapper {
    background: linear-gradient(45deg, rgba(17,22,36,1) 0%,rgba(42,48,69,1) 100%);
    padding: 10px 0 50px;
    position: relative;
}
.intro_wrapper p {
    font-size: 14px;
    color: #B5B5B5;
    line-height: 28px;
    text-align: justify;
    margin: 20px 0 0;
}
.car_bg {
    position: absolute;
    left: 0;
    top: -102px;
    content: "";
    height: 350px;
    width: 100%;
    background-image: url(../images/shadow.png);
}
.car_image {
    width: 854px;
    height: 262px;
    background-image: url(../images/car_image.png);
    position: relative;
    background-repeat: no-repeat;
    margin: -100px auto 0;
	    z-index: 99999;
}
.wheel1 {
    width: 122px;
    height: 122px;
    background-image: url(../images/wheel.png);
    position: absolute;
    left: 120px;
    bottom: 4px;
	-webkit-animation:spin 2s linear infinite;
    -moz-animation:spin 2s linear infinite;
    animation:spin 2s linear infinite;
}
.wheel2 {
    width: 122px;
    height: 122px;
    background-image: url(../images/wheel.png);
    position: absolute;
    right: 74px;
    bottom: 4px;
	-webkit-animation:spin 2s linear infinite;
    -moz-animation:spin 2s linear infinite;
    animation:spin 2s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }


.intro_wrapper .container {
    position: relative;
    z-index: 999;
}
.intro_title {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.intro_title small {
    color: #fff;
    position: absolute;
    left: -105px;
    top: 112px;
    text-transform: uppercase;
    letter-spacing: 7px;
    font-size: 15px;
    transform: rotate(-90deg);
}
.intro_title h3 {
    font-size: 90px;
    font-weight: 800;
    text-transform: uppercase;
    color: #323a4c;
    width: 100%;
	padding: 0 0 0 30px;
}
.intro_title h3 span {
    display: block;
    font-size: 35px;
    text-transform: none;
    color: #fff;
    margin: -35px 0 0;
    font-weight: 600;
}
.intro_title a {
    position: absolute;
    left: 45px;
    bottom: 0;
    display: block;
    width: 215px;
    padding: 20px 0;
    border: solid 1px #C20000;
    border-radius: 50px;
    margin: 30px auto 0;
    color: #fff;
    text-decoration: none;
    text-align: center;
    background-color: #C20000;
}
.intro_title a i {
    transform: rotate(-35deg);
    position: relative;
    left: 10px;
}
.features_wrapper {
    background: linear-gradient(45deg, rgba(255,0,0,1) 0%,rgba(118,0,0,1) 100%);
    text-align: center;
    padding: 50px 0;
}
.features_wrapper h5 {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 5px;
    margin: 30px 0 0;
    font-size: 17px;
}
.form_wrapper {
    position: relative;
    padding: 50px 0;
}
.form_wrapper:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 62%;
    height: 100%;
    background-image: url(../images/car_bg.png);
    background-size: cover;
	background-position: center bottom;
    z-index: -9;
}
.form_wrapper:after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    width: 38%;
    height: 100%;
    background-color: #111624;
    z-index: -9;
}
.form_section h2 {
    text-align: center;
    margin: 0;
    color: #fff;
    font-size: 26px;
}
.form_section section {
    background-color: #fff;
    padding: 30px;
    margin: 20px 0 0;
    border-radius: 15px;
}
.form_section section h3 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px;
}
.form_section section form input[type="text"] {
    width: 100%;
    height: 45px;
    border: none;
    font-size: 14px;
    border: solid 1px #ddd;
    margin: 0 0 25px;
    padding: 0 15px;
    border-radius: 4px;
}
.form_section section form input[type="number"] {
    width: 100%;
    height: 45px;
    border: none;
    font-size: 14px;
    border: solid 1px #ddd;
    margin: 0 0 25px;
    padding: 0 15px;
    border-radius: 4px;
}
.form_section section form select {
    width: 100%;
    height: 45px;
    border: none;
    font-size: 14px;
    border: solid 1px #ddd;
    margin: 0 0 25px;
    padding: 0 15px;
    border-radius: 4px;
}
.form_section section form textarea {
    width: 100%;
    height: 145px;
    border: none;
    font-size: 14px;
    border: solid 1px #ddd;
    margin: 0 0 25px;
    padding: 15px;
    border-radius: 4px;
}
.form_section section form h5 {
    font-size: 16px;
    margin: 18px 0 15px;
    text-align: center;
}
.form_section section form label {
    font-size: 14px;
}
.radio_wrapper .form-check {
    font-size: 14px;
}
.radio_wrapper {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 0;
    align-items: center;
}
.ride_right {
    align-items: center;
    display: flex;
}
.ride_details {
    padding: 0 0 0 65px;
}
.ride_details section {
    padding: 5px 0 5px 95px;
    position: relative;
    min-height: 64px;
    margin: 45px 0;
}
.ride_icon {
    position: absolute;
    width: 64px;
    height: 64px;
    left: 0;
    top: 0;
}
.ride_details section label {
    color: #bbb;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    width: 100%;
    margin: 12px 0 0;
}
.ride_details section p {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}
.ride_details section p a {
	text-decoration:none;
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}
.ride_details section p a:hover {
    color: #ff0000;
}
.ride_icon:before {
    position: absolute;
    right: -10px;
    bottom: -5px;
    content: "";
    width: 40px;
    height: 40px;
    background-color: #ff0000;
    border-radius: 50%;
    opacity: 0.5;
}
.ride_icon img {
	position:relative;
	z-index:9;
}
.chauffeur_wrapper {
    background-color: #000;
    padding: 50px;
}
.chauffeur_wrapper h2 {
    font-size: 90px;
    font-weight: 800;
    text-transform: uppercase;
    color: #262626;
    width: 100%;
    padding: 0 0 0 30px;
    text-align: center;
    margin: 0 0 55px;
}
.chauffeur_wrapper h2 span {
    display: block;
    font-size: 35px;
    text-transform: none;
    color: #fff;
    margin: -35px 0 0;
    font-weight: 600;
}
.chauffeur_wrapper section {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin: 15px 0;
}
.chauffeur_wrapper section h4 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 20px;
	text-align: center;
}
.chauffeur_wrapper section p {
    font-size: 14px;
    color: #555;
    margin: 0 0;
}
.chauffeur_wrapper section img {
    margin: 20px 0;
}
.taxi_image {
    width: 100%;
	transition: all 0.4s ease 0s;
}
.chauffeur_wrapper section:hover .taxi_image {
	transform:scale(1.2);
}
.credibility_wrapper {
    position: relative;
}
.credibility_wrapper:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    background: linear-gradient(45deg, rgba(17,22,36,1) 0%,rgba(42,48,69,1) 100%);
    width: 50%;
    height: 100%;
    z-index: -9;
}
.credibility_wrapper:after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
	background-image:url(../images/credibility_image.png);
	background-size:cover;
	    background-position: center;
    width: 50%;
    height: 100%;
    z-index: -9;
}
.credibility_wrapper section {
    position: relative;
    padding: 0 0 0 80px;
    margin: 40px 0;
}
.credibility_icon {
    position: absolute;
    left: 0;
    top: 0;
}
.credibility_wrapper section span {
    display: block;
    color: #323a4c;
    font-size: 80px;
    font-weight: 800;
    line-height: 60px;
}
.credibility_wrapper section h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: -20px 0 0;
}
.credibility_wrapper section p {
    color: #637381;
    font-size: 14px;
    font-weight: 500;
    margin: 10px 0 0;
}
.credibility_wrapper h2 {
    text-align: center;
    margin: 0 0 40px;
}
.credibility_wrapper h2 strong {
    font-size: 90px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    width: 100%;
    padding: 0;
    text-align: center;
    margin: 0;
    display: block;
    opacity: 0.3;
}
.credibility_wrapper h2 span {
    display: block;
    font-size: 35px;
    text-transform: none;
    color: #fff;
    margin: -40px 0 0;
    font-weight: 600;
}
.credibility_content {
    display: flex;
    justify-content: center;
    align-items: end;
}
.testimonial_wrapper {
    padding: 50px 0;
    background-color: rgba(17,22,36,1);
}
.testimonial_wrapper article {
    padding: 0 0 0 100px;
    position: relative;
}
.testimonial_wrapper article p {
    color: #fff;
    font-size: 30px;
    font-weight: 300;
}
span#coma_left {
    position: absolute;
    left: 40px;
    top: -18px;
    font-size: 40px;
    opacity: 0.5;
}
.testimonial_wrapper article h4 {
    color: #fff;
    opacity: 0.6;
    font-size: 18px;
}
footer {
    background-color: #000;
    padding: 35px 0 0;
}
.footer_address p {
    font-size: 14px;
    color: #fff;
    margin: 50px 0;
	padding: 0 75px 0 0;
    line-height: 26px;
}
.footer_address ul {
    display: flex;
    flex-wrap: wrap;
}
.footer_address li {
    width: 33.3333%;
	position:relative;
	padding: 0 0 0 25px;
}
.footer_address li label {
    display: block;
    font-size: 14px;
    color: #aaa;
    margin: 0 0 10px;
}
.footer_address li span {
    display: block;
    position: relative;
    font-size: 14px;
    color: #fff;
}
.footer_address li i {
    position: absolute;
    left: 0;
    top: 4px;
	color: #fff;
}
.footer_menu {
    display: flex;
    flex-wrap: wrap;
}
.footer_menu section {
    width: 100%;
    margin: 60px 0 0;
}
.footer_menu section h3 {
    font-size: 17px;
    color: #aaa;
    margin: 0 0 30px;
}
.footer_menu section li {
    margin: 0 0 15px;
    font-size: 14px;
}
.footer_menu section li a {
    display: block;
    text-decoration: none;
    color: #fff;
}
.footer_address {
    margin: 60px 0 0;
}
.footer_address h3 {
    font-size: 17px;
    color: #aaa;
    margin: 0 0 30px;
}
.footer_address ul {
    display: block;
}
.footer_address li {
    width: 100%;
    margin: 0 0 20px;
}
.legal_links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.legal_links li {
    font-size: 14px;
    margin: 0 0 0 25px;
}
.legal_links li a {
    display: block;
    text-decoration: none;
    color: #aaa;
}
.copyright p {
    margin: 0;
    font-size: 14px;
    color: #aaa;
}
.copyright {
    padding: 25px 0;
    border-top: solid 1px #333;
    margin: 25px 0 0;
}
.car_logo {
    display: block;
    margin: 0 auto 20px!important;
    width: 110px;
}
.chauffeur_wrapper section ul {
    display: flex;
    justify-content: center;
}
.chauffeur_wrapper section li {
    font-size: 14px;
    padding: 0 0 0 25px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 17px auto;
    margin: 0 15px;
}
.icon_seat {
    background-image: url(../images/icon-seat.png);
}
.icon_fuel {
    background-image: url(../images/icon-fuel.png);
}
.inner_banner {
    height: 400px;
    position: relative;
    background-image: url(../images/inner_banner.jpg);
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: end;
}
.inner_banner:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
}
.inner_banner h2 {
    position: relative;
    z-index: 999;
    color: #fff;
    font-size: 60px;
    margin: 0 0 70px;
}

.form_page:before, .form_page:after {
	display:none;
}
.form_wrapper.form_page {
    background-color: #f5f5f5;
}
.form_page h2 {
    color: #000;
}
.button_wrapper {
    display: flex;
    justify-content: flex-end;
}
.button_wrapper a {
    display: block;
    width: 215px;
    padding: 20px 0;
    border: solid 1px #C20000;
    border-radius: 50px;
    margin: 30px 0 0 15px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    background-color: #C20000;
}
.button_wrapper a#cancel {
	background-color:#5a6268;
    display: block;
    width: 215px;
    padding: 20px 0;
    border: solid 1px #5a6268;
    border-radius: 50px;
    margin: 30px 0 0 15px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease 0s;
}

.button_wrapper .booking-submit-btn {
    background-color: #007bff;
    display: block;
    width: 215px;
    padding: 20px 0;
    border: solid 1px #007bff;
    border-radius: 50px;
    margin: 30px 0 0 15px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease 0s;
}






.page-loader {
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(17,22,36,1);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
}
.card-new {
    text-align: center;
    margin: 0 0 30px;
}

@-webkit-keyframes gauge {
  0% {
    -webkit-transform: rotate(-50deg);
    -moz-transform: rotate(-50deg);
    -ms-transform: rotate(-50deg);
    -o-transform: rotate(-50deg);
    transform: rotate(-50deg);
  }

  10% {
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  20% {
    -webkit-transform: rotate(60deg);
    -moz-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    -o-transform: rotate(60deg);
    transform: rotate(60deg);
  }

  24% {
    -webkit-transform: rotate(60deg);
    -moz-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    -o-transform: rotate(60deg);
    transform: rotate(60deg);
  }

  40% {
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    transform: rotate(-20deg);
  }

  54% {
    -webkit-transform: rotate(70deg);
    -moz-transform: rotate(70deg);
    -ms-transform: rotate(70deg);
    -o-transform: rotate(70deg);
    transform: rotate(70deg);
  }

  56% {
    -webkit-transform: rotate(78deg);
    -moz-transform: rotate(78deg);
    -ms-transform: rotate(78deg);
    -o-transform: rotate(78deg);
    transform: rotate(78deg);
  }

  58% {
    -webkit-transform: rotate(73deg);
    -moz-transform: rotate(73deg);
    -ms-transform: rotate(73deg);
    -o-transform: rotate(73deg);
    transform: rotate(73deg);
  }

  60% {
    -webkit-transform: rotate(75deg);
    -moz-transform: rotate(75deg);
    -ms-transform: rotate(75deg);
    -o-transform: rotate(75deg);
    transform: rotate(75deg);
  }

  62% {
    -webkit-transform: rotate(70deg);
    -moz-transform: rotate(70deg);
    -ms-transform: rotate(70deg);
    -o-transform: rotate(70deg);
    transform: rotate(70deg);
  }

  70% {
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    transform: rotate(-20deg);
  }

  80% {
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  83% {
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    transform: rotate(25deg);
  }

  86% {
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  89% {
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    transform: rotate(25deg);
  }

  100% {
    -webkit-transform: rotate(-50deg);
    -moz-transform: rotate(-50deg);
    -ms-transform: rotate(-50deg);
    -o-transform: rotate(-50deg);
    transform: rotate(-50deg);
  }
}

@-moz-keyframes gauge {
  0% {
    -webkit-transform: rotate(-50deg);
    -moz-transform: rotate(-50deg);
    -ms-transform: rotate(-50deg);
    -o-transform: rotate(-50deg);
    transform: rotate(-50deg);
  }

  10% {
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  20% {
    -webkit-transform: rotate(60deg);
    -moz-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    -o-transform: rotate(60deg);
    transform: rotate(60deg);
  }

  24% {
    -webkit-transform: rotate(60deg);
    -moz-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    -o-transform: rotate(60deg);
    transform: rotate(60deg);
  }

  40% {
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    transform: rotate(-20deg);
  }

  54% {
    -webkit-transform: rotate(70deg);
    -moz-transform: rotate(70deg);
    -ms-transform: rotate(70deg);
    -o-transform: rotate(70deg);
    transform: rotate(70deg);
  }

  56% {
    -webkit-transform: rotate(78deg);
    -moz-transform: rotate(78deg);
    -ms-transform: rotate(78deg);
    -o-transform: rotate(78deg);
    transform: rotate(78deg);
  }

  58% {
    -webkit-transform: rotate(73deg);
    -moz-transform: rotate(73deg);
    -ms-transform: rotate(73deg);
    -o-transform: rotate(73deg);
    transform: rotate(73deg);
  }

  60% {
    -webkit-transform: rotate(75deg);
    -moz-transform: rotate(75deg);
    -ms-transform: rotate(75deg);
    -o-transform: rotate(75deg);
    transform: rotate(75deg);
  }

  62% {
    -webkit-transform: rotate(70deg);
    -moz-transform: rotate(70deg);
    -ms-transform: rotate(70deg);
    -o-transform: rotate(70deg);
    transform: rotate(70deg);
  }

  70% {
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    transform: rotate(-20deg);
  }

  80% {
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  83% {
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    transform: rotate(25deg);
  }

  86% {
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  89% {
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    transform: rotate(25deg);
  }

  100% {
    -webkit-transform: rotate(-50deg);
    -moz-transform: rotate(-50deg);
    -ms-transform: rotate(-50deg);
    -o-transform: rotate(-50deg);
    transform: rotate(-50deg);
  }
}

@-o-keyframes gauge {
  0% {
    -webkit-transform: rotate(-50deg);
    -moz-transform: rotate(-50deg);
    -ms-transform: rotate(-50deg);
    -o-transform: rotate(-50deg);
    transform: rotate(-50deg);
  }

  10% {
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  20% {
    -webkit-transform: rotate(60deg);
    -moz-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    -o-transform: rotate(60deg);
    transform: rotate(60deg);
  }

  24% {
    -webkit-transform: rotate(60deg);
    -moz-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    -o-transform: rotate(60deg);
    transform: rotate(60deg);
  }

  40% {
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    transform: rotate(-20deg);
  }

  54% {
    -webkit-transform: rotate(70deg);
    -moz-transform: rotate(70deg);
    -ms-transform: rotate(70deg);
    -o-transform: rotate(70deg);
    transform: rotate(70deg);
  }

  56% {
    -webkit-transform: rotate(78deg);
    -moz-transform: rotate(78deg);
    -ms-transform: rotate(78deg);
    -o-transform: rotate(78deg);
    transform: rotate(78deg);
  }

  58% {
    -webkit-transform: rotate(73deg);
    -moz-transform: rotate(73deg);
    -ms-transform: rotate(73deg);
    -o-transform: rotate(73deg);
    transform: rotate(73deg);
  }

  60% {
    -webkit-transform: rotate(75deg);
    -moz-transform: rotate(75deg);
    -ms-transform: rotate(75deg);
    -o-transform: rotate(75deg);
    transform: rotate(75deg);
  }

  62% {
    -webkit-transform: rotate(70deg);
    -moz-transform: rotate(70deg);
    -ms-transform: rotate(70deg);
    -o-transform: rotate(70deg);
    transform: rotate(70deg);
  }

  70% {
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    transform: rotate(-20deg);
  }

  80% {
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  83% {
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    transform: rotate(25deg);
  }

  86% {
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  89% {
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    transform: rotate(25deg);
  }

  100% {
    -webkit-transform: rotate(-50deg);
    -moz-transform: rotate(-50deg);
    -ms-transform: rotate(-50deg);
    -o-transform: rotate(-50deg);
    transform: rotate(-50deg);
  }
}

@keyframes gauge {
  0% {
    -webkit-transform: rotate(-50deg);
    -moz-transform: rotate(-50deg);
    -ms-transform: rotate(-50deg);
    -o-transform: rotate(-50deg);
    transform: rotate(-50deg);
  }

  10% {
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  20% {
    -webkit-transform: rotate(60deg);
    -moz-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    -o-transform: rotate(60deg);
    transform: rotate(60deg);
  }

  24% {
    -webkit-transform: rotate(60deg);
    -moz-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    -o-transform: rotate(60deg);
    transform: rotate(60deg);
  }

  40% {
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    transform: rotate(-20deg);
  }

  54% {
    -webkit-transform: rotate(70deg);
    -moz-transform: rotate(70deg);
    -ms-transform: rotate(70deg);
    -o-transform: rotate(70deg);
    transform: rotate(70deg);
  }

  56% {
    -webkit-transform: rotate(78deg);
    -moz-transform: rotate(78deg);
    -ms-transform: rotate(78deg);
    -o-transform: rotate(78deg);
    transform: rotate(78deg);
  }

  58% {
    -webkit-transform: rotate(73deg);
    -moz-transform: rotate(73deg);
    -ms-transform: rotate(73deg);
    -o-transform: rotate(73deg);
    transform: rotate(73deg);
  }

  60% {
    -webkit-transform: rotate(75deg);
    -moz-transform: rotate(75deg);
    -ms-transform: rotate(75deg);
    -o-transform: rotate(75deg);
    transform: rotate(75deg);
  }

  62% {
    -webkit-transform: rotate(70deg);
    -moz-transform: rotate(70deg);
    -ms-transform: rotate(70deg);
    -o-transform: rotate(70deg);
    transform: rotate(70deg);
  }

  70% {
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    transform: rotate(-20deg);
  }

  80% {
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  83% {
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    transform: rotate(25deg);
  }

  86% {
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  89% {
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    transform: rotate(25deg);
  }

  100% {
    -webkit-transform: rotate(-50deg);
    -moz-transform: rotate(-50deg);
    -ms-transform: rotate(-50deg);
    -o-transform: rotate(-50deg);
    transform: rotate(-50deg);
  }
}

/* Styles for old versions of IE */
.gauge {
  font-family: sans-serif;
  font-weight: 100;
}

/* :not(:required) hides this rule from IE9 and below */
.gauge:not(:required) {
  background: #ff0000;
  -moz-border-radius-topleft: 32px;
  -webkit-border-top-left-radius: 32px;
  border-top-left-radius: 32px;
  -moz-border-radius-topright: 32px;
  -webkit-border-top-right-radius: 32px;
  border-top-right-radius: 32px;
  display: inline-block;
  width: 64px;
  height: 32px;
  overflow: hidden;
  position: relative;
  text-indent: -9999px;
}
.gauge:not(:required)::before {
  -webkit-animation: gauge 4000ms infinite ease;
  -moz-animation: gauge 4000ms infinite ease;
  -ms-animation: gauge 4000ms infinite ease;
  -o-animation: gauge 4000ms infinite ease;
  animation: gauge 4000ms infinite ease;
  background: white;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  content: '';
  position: absolute;
  left: 30px;
  top: 5.33333px;
  width: 4px;
  height: 26.66667px;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.gauge:not(:required)::after {
  content: '';
  background: white;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  position: absolute;
  left: 25.6px;
  top: 25.6px;
  width: 12.8px;
  height: 12.8px;
}




.cd-top {
    display: inline-block;
    height: 50px;
    width: 50px;
    position: fixed;
    bottom: 40px;
    right: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background: linear-gradient(45deg, rgba(255,0,0,1) 0%,rgba(118,0,0,1) 100%);
    visibility: hidden;
    opacity: 0;
    border-radius: 50%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
}
.cd-top:hover {
	color: #fff;
	}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: #e86256;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 50px;
    width: 50px;
    right: 30px;
    bottom: 30px;
  }
}


.service_wrapper {
    padding: 70px 0;
    background-color: #000;
}
.service_wrapper img {
    width: 100%;
    border-radius: 10px;
}
.service_wrapper section {
    margin: 55px 0;
}
.service_content {
    display: flex;
    align-items: center;
}
.service_content article {
    padding: 0 0 0 25px;
}
.service_content article {
    padding: 0 0 0 25px;
}
.right_service .service_content article {
    padding: 0 25px 0 0;
    text-align: right;
}
.service_wrapper h2 {
    font-size: 90px;
    font-weight: 800;
    text-transform: uppercase;
    color: #262626;
    width: 100%;
    padding: 0 0 0 90px;
    text-align: center;
    margin: 0 0 55px;
}
.service_wrapper h2 span {
    display: block;
    font-size: 35px;
    text-transform: none;
    color: #fff;
    margin: -35px 0 0;
    font-weight: 600;
}
.service_wrapper h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 30px;
}
.service_wrapper p {
    color: #637381;
    font-size: 14px;
    font-weight: 500;
    margin: 10px 0 0;
	    text-align: justify;
}



.footer_address li span a {
    color: #fff;
    text-decoration: none;
}
.chauffeur_wrapper section a {
    display: block;
    text-decoration: none;
    color: #000;
}


.ui-widget.ui-widget-content {
    border: none!important;
    padding: 10px!important;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1)!important;
}
.ui-widget-header {
    border: none!important;
    background: transparent!important;
    color: #333333!important;
    font-weight: bold!important;
}
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
    width: 45%!important;
    margin: 0 4px!important;
    height: 30px!important;
    font-size: 14px!important;
    border: solid 1px #ddd!important;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    background: transparent!important;
}
.ui-datepicker td span, .ui-datepicker td a {
    text-align: center!important;
}
.ui-state-highlight, .ui-widget-content a.ui-state-default.ui-state-highlight, .ui-widget-header a.ui-state-default.ui-state-highlight {
    border: 1px solid #C20000!important;
    background: #C20000!important;
    color: #fff!important;
}
a.ui-state-default {
    border: solid 1px #eee!important;
    background: #eee!important;
}




.flatpickr-calendar {
    width: 200px!important;
}
.flatpickr-time .numInputWrapper {
    width: 33%!important;
}
.flatpickr-time .numInputWrapper {
    width: 33%!important;
}
.flatpickr-time .flatpickr-am-pm {
    width: 32%!important;
}


@media (min-width:250px) and (max-width: 1200px) {
.intro_title small {
    left: -90px;
}
.ride_details {
    padding: 0;
}
.form_wrapper:after {
    width: 50%;
}
.form_section {
    width: 50%;
}
.ride_right {
    width: 50%;
}
.ride_details {
    padding: 0 0 0 25px;
}
.ride_icon img {
    width: 40px;
}
.ride_icon {
    width: 45px;
    height: 45px;
	top: 15px;
}
.ride_icon:before {
    right: -10px;
    bottom: -5px;
    width: 30px;
    height: 30px;
}
.ride_details section {
    padding: 5px 0 5px 70px;
    min-height: 45px;
    margin: 15px 0;
}
}



@media (min-width:250px) and (max-width: 1024px) {
.intro_title h3 {
    font-size: 75px;
}
.intro_title h3 span {
    font-size: 30px;
    max-width: 280px;
}
.chauffeur_wrapper h2 {
    font-size: 75px;
}
.chauffeur_wrapper h2 span {
    font-size: 30px;
}	
.credibility_wrapper h2 strong {
    font-size: 75px;
}
.credibility_wrapper h2 span {
    font-size: 30px;
}
.service_wrapper h2 {
    font-size: 75px;
    padding: 0;
}
.service_wrapper h2 span {
    font-size: 30px;
}
}



@media (min-width:250px) and (max-width: 991px) {
.menu_round {
    display: block;
}
ul.menu {
    display: none;
    font-size: 14px;
    margin: 0;
    position: absolute;
    top: 75px;
    text-align: right;
    background-color: #fff;
    width: 160px;
    right: 186px;
    padding: 10px 0;
}
ul.menu li {
    margin: 0;
}
ul.menu li a {
    display: block;
    padding: 5px 18px;
    color: #000;
}
.logo img {
    width: 160px;
}	
.contact_number {
    font-size: 15px;
}
.contact_number span {
    font-size: 12px;
}
.contact_number:before {
    left: -5px;
    top: 17px;
    width: 30px;
    height: 30px;
}
.menu_round {
    height: 25px;
    top: 8px;
}
.banner_wrapper h1 {
    font-size: 40px;
}
.banner_wrapper section small {
    font-weight: 500;
    font-size: 14px;
}
.banner_wrapper section a {
    width: 200px;
    padding: 15px 0;
}
.car_image {
    width: 640px;
    height: 200px;
    background-size: 100% auto;
}
.wheel1 {
    width: 95px;
    height: 95px;
    left: 89px;
    bottom: 4px;
    background-size: 100% auto;
}
.wheel2 {
    width: 95px;
    height: 95px;
    right: 56px;
    bottom: 4px;
    background-size: 100% auto;
}
.banner_wrapper .container:before {
    left: 15px;
    top: 92px;
    content: "";
    background-image: url(../images/LUXURY.png);
    width: 75px;
    height: 606px;
    background-size: 100% auto;
}
.intro_title a {
    width: 200px;
    padding: 15px 0;
}
.intro_title {
    width: 100%;
    padding-bottom: 100px;
}
.intro_wrapper .col-12.col-sm-6.col-md-6.col-lg-6 {
    width: 100%;
}
.features_wrapper .col-12.col-sm-12.col-md-6.col-lg-4 {
    width: 33.3333%;
}
.ride_details section p a {
    font-size: 16px;
}
.service_content article {
    padding: 25px;
    border: solid 1px;
    border-radius: 10px;
}
.right_service .service_content article {
    padding: 25px;
    text-align: right;
}
}







@media (min-width:250px) and (max-width: 767px) {
.banner_wrapper {
    height: 590px;
}	
ul.social_icons {
    position: absolute;
    right: 0;
    bottom: auto;
    z-index: 9999999;
    padding: 20px 5px;
    text-align: center;
}
.car_image {
    width: 430px;
    height: 130px;
    background-size: 100% auto;
}
.wheel1 {
    width: 60px;
    height: 60px;
    left: 62px;
    bottom: 1px;
}
.wheel2 {
    width: 60px;
    height: 60px;
    right: 38px;
    bottom: 1px;
}
.car_bg {
	top: -102px;
	height:250px;
	background-size:auto 100%;
}
.banner_wrapper section {
	margin: 0 0 90px;
}
.banner_wrapper h1 {
	font-size:30px;
}
.banner_wrapper .container:before, .banner_wrapper .container:after {
	display:none;
}
.intro_title h3 {
    font-size: 60px;
}
.intro_title h3 span {
    font-size: 25px;
    margin: -25px 0 0;
}
.intro_title small {
    left: -82px;
    top: 100px;
    font-size: 13px;
}
.features_wrapper {
    padding: 30px 0;
}
.features_wrapper .col-12.col-sm-12.col-md-6.col-lg-4 {
    width: 100%;
    margin: 20px 0;
}
.features_wrapper img {
    width: 40px;
}
.features_wrapper h5 {
    letter-spacing: 2px;
    margin: 30px 0 0;
    font-size: 14px;
}
.form_section {
    width: 100%;
}
.ride_right {
    width: 100%;
}
.form_wrapper:after {
    width: 100%;
    opacity: 0.7;
}
.form_wrapper:before {
    width: 100%;
}
.chauffeur_wrapper .col-12.col-sm-12.col-md-4.col-lg-4 {
    width: 50%;
}
.chauffeur_wrapper h2 {
    font-size: 75px;
    padding: 0;
    line-height: 65px;
}
.credibility_content {
    display: none;
}
.credibility_wrapper:before {
    background: linear-gradient(45deg, rgba(17,22,36,1) 0%,rgba(42,48,69,1) 100%);
    width: 100%;
    height: 100%;
    z-index: -9;
	    opacity: 0.9;
}
.credibility_wrapper:after {
    width: 100%;
    height: 100%;
    z-index: -10;
}
.service_content article {
    padding: 25px;
    border: solid 1px;
    border-radius: 10px;
    margin: 15px 0;
}
.service_wrapper {
    padding: 70px 0 10px;
    background-color: #000;
}
.testimonial_wrapper article p {
    font-size: 20px;
}
.copyright .col-12.col-sm-6.col-md-6.col-lg-6 {
    width: 100%;
}
.copyright p {
    margin: 0 0 15px;
    font-size: 13px;
    text-align: center;
    padding: 0 0 15px;
    border-bottom: solid 1px #333;
}
.legal_links {
    justify-content: center;
}
.legal_links li {
    font-size: 13px;
    margin: 0 10px;
}
}



@media (min-width:250px) and (max-width: 576px) {
    .logo img {
        width: 140px;
    }	
    .banner_wrapper .container {
        position: relative;
        z-index: 99;
        min-height: 716px;
        display: block;
        justify-content: center;
        align-items: normal;
        flex-wrap: wrap;
        padding-top: 160px;
    }
    .banner_wrapper section {
        margin: 0 0 20px;
        width: 100%;
    }
    .contact_number {
        margin: 0;
        display: block;
        background-image: url(../images/ride_icon3.png);
        background-repeat: no-repeat;
        background-position: 5px 3px;
        background-size: 22px auto;
        padding: 0 0 0 28px;
        text-decoration: none;
        position: relative;
        transition: all 0.4s ease 0s;
    }
    .contact_number:before {
        left: 0;
        top: 0;
        width: 30px;
        height: 30px;
    }
    .contact_number span {
        font-size: 0;
    }
    .contact_number {
        font-size: 0;
        width: 32px;
        height: 32px;
        padding: 0;
    }
    .menu_round {
        height: 19px;
        top: 2px;
        margin: 0 20px 0 0;
    }
    ul.social_icons {
        position: relative;
        right: 0;
        bottom: 0;
        z-index: 9999999;
        padding: 0px 5px;
        text-align: center;
        width: 100%;
        display: flex;
        top: 0;
        justify-content: center;
    }	
    .chauffeur_wrapper .col-12.col-sm-12.col-md-4.col-lg-4 {
        width: 100%;
    }
    header.sticky .contact_number {
        font-size: 0;
    }
    header.sticky .contact_number span {
        font-size: 0;
    }
    header.sticky .contact_number:before {
        left: 0;
        top: 0;
        width: 32px;
        height: 32px;
    }
    header.sticky .contact_number {
        background-position: 5px 4px;
    }
    ul.menu {
        right: 60px;
    }	
    .car_image {
        width: 330px;
        height: 100px;
        background-size: 100% auto;
            margin: -65px auto 0;
    }
    .wheel1 {
        width: 47px;
        height: 47px;
        left: 47px;
        bottom: 0px;
    }
    .wheel2 {
        width: 47px;
        height: 47px;
        right: 29px;
        bottom: 0px;
    }
    span#coma_left {
        left: 5px;
        top: -18px;
        font-size: 30px;
    }
    .testimonial_wrapper article {
        padding: 0 0 0 55px;
    }
    .testimonial_wrapper article p {
        font-size: 16px;
    }
    .testimonial_wrapper article h4 {
        font-size: 16px;
    }
    .footer_address {
        margin: 0px 0 0;
    }
    .footer_menu section {
        margin: 0;
    }
    .footer_menu {
        margin: 0 0 45px;
    }
    .menu_round:before {
        right: 0;
        top: 0;
        width: 60%;
        height: 2px;
    }
    .menu_round span {
        width: 88%;
        height: 2px;
        margin: 8px 0 0;
    }
    .menu_round:after {
        right: 0;
        top: 16px;
        width: 60%;
        height: 2px;
    }
    .menu_round {
        height: 19px;
        top: 2px;
        margin: 0 20px 0 0;
    }
    .banner_wrapper section a {
        width: 160px;
        padding: 12px 0;
        font-size: 14px;
    }
    .intro_title a {
        width: 160px;
        padding: 12px 0;
        font-size: 14px;
    }
    .button_wrapper a {
        width: 200px;
        padding: 15px 0;
        font-size: 14px;
    }
    .button_wrapper a#cancel {
        width: 200px;
        padding: 15px 0;
    }
    }


/** Avi custom styles */
.has-error {
    border: solid 1px red !important;
  }
  
  .booking-required-validation {
    display:none;
  }

/** Avi custom styles End */

#validationModal .modal-dialog {
    margin: 150px auto 0;
}

#validationModal .modal-body {
    position: relative;
    border-bottom: solid #ff0000;
    border-radius: 0 0 4px 4px;
}

#validationModal .modal-body button.close {
    border: none;
    background: transparent;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
}

p#validationMessage {
    margin: 0;
    font-size: 14px;
    color: #ff0000;
}

.ride_price {
    margin: 0;
    text-align: right;
    font-size: 22px;
}

.ride_price label {
    margin: 0 5px 0 0;
}

img.thanks-img {
    width: 400px;
    margin: -50px auto 0;
    display: block;
}

.thanks-section h2 {
    margin: 0 0 30px;
}

.thanks-section p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 25px;
}

a#back-to-home {
    background-color: #5a6268;
    display: block;
    width: 215px;
    padding: 20px 0;
    border: solid 1px #5a6268;
    border-radius: 50px;
    margin: 30px 0 0 15px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease 0s;
    text-align: center;
}

a#book-another-ride {
    background-color: #007bff;
    display: block;
    width: 215px;
    padding: 20px 0;
    border: solid 1px #007bff;
    border-radius: 50px;
    margin: 30px 0 0 15px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease 0s;
    text-align: center;
}

section.thanks-section {
    padding: 50px 30px 30px;
}

.succes-page-redirect-cont {
    display: flex;
    justify-content: center;
    padding: 0 0 40px;
}

.radio_wrapper article {
    display: flex;
}

.radio_wrapper article .form-check {
    margin: 0 20px 0 0;
}

h6#payment-form-validation-msg {
    color: red;
}

.disabled-link {
    cursor: not-allowed;
    border: solid 2px #000;
}

p.later-payment-message {
    margin-top: 15px;
    color: red;
    font-weight: 600;
}


/*************ABOUT US********************/


.about_wrapper {
    padding: 50px 0;
}
.about_img img {
    width: 100%;
}
.about_content {
    display: flex;
    align-items: center;
}
.about_content section {
    padding: 0 0 0 30px;
}
.about_content h2 {
    margin: 0 0 25px;
}
.about_content p {
    font-size: 14px;
    line-height: 28px;
    text-align: justify;
    color: #666;
}
.about_img {
    display: flex;
    align-items: center;
}


/* pop up */

.modal_bg {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
}
.modal_bg section {
    max-width: 470px;
    margin: 70px auto 0;
    background-color: #fff;
    padding: 0 30px 30px;
    border-radius: 20px;
    position: relative;
}
.modal_bg section img {
    width: 230px;
    margin: 0 0 20px;
}
.close_btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 16px;
    color: #000;
}
.modal_bg section h3 {
    font-size: 24px;
    color: #112e63;
}
.modal_bg section p span {
    font-size: 22px;
    font-weight: 600;
    color: #C20000;
}
.modal_bg section article {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}
.modal_bg section article a {
    font-size: 14px;
    padding: 10px 20px;
    border: solid 1px #000;
    border-radius: 20px;
    text-decoration: none;
    margin: 0 5px;
}
.book_now {
    background-color: #C20000;
    border: solid 1px #C20000!important;
    color: #fff;
}
.call_us {
    color: #111624;
}
.modal_bg section article {
    display: flex;
    justify-content: center;
    margin: 30px 0 0;
}
/* popup end */