:root{
	--FiraSans: "Fira Sans Condensed", sans-serif;
	--OpenSans: "Open Sans", sans-serif;
	--16: 16px;
	/*color*/
	--yellow: #fed100;
	--white: #ffffff;
	--black: #1f1f1f;
}
body{
	font-family: var(--OpenSans);
	font-size: var(--16);
	font-weight: var(--400);
	line-height: 22px;
}
h1,h2,h3,h4,h5,h6,p{
	margin-bottom: 0;
}
h1,h2,h3,h4,h5,h6,a{
	font-family: var(--FiraSans);
}
a{
	text-decoration: none;
}
button{
	font-family: var(--FiraSans);
	font-size: var(--16);
	font-weight: var(--500);
}
button:active,
button:focus,
button:focus-visible,
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus,
.form-control.is-valid:focus,
.was-validated .form-control:valid:focus,
.form-select.is-invalid:focus,
.was-validated .form-select:invalid:focus,
.form-select.is-valid:focus,
.was-validated .form-select:valid:focus{
	outline: none !important;
	box-shadow: none !important;
}
.form-select.is-valid:not([multiple]):not([size]),
.form-select.is-valid:not([multiple])[size="1"],
.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:valid:not([multiple])[size="1"]{
    --bs-form-select-bg-icon: none !important;
}
input{
	padding-top: 10px !important;
	padding-bottom: 10px !important;
	border-radius: 5px !important;
}
.form-control,
.form-control:focus {
	font-family: var(--FiraSans);
  color: var(--black);
  background-color: var(--white);
}
.custom-select-selected:focus-within,
.form-control:focus {
  border-color: #fdfe86 !important;
  outline: 0;
  box-shadow: 0 0 0 .25rem #fed10052 !important;
}

/*Common css start*/
.bg1{
	background-color: var(--black);
}
.sec_padding{
	padding: 120px 0;
}
.sec_title{
	margin-bottom: 22px;
}
.sub_title{
	margin-bottom: 0 !important;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--yellow);
}
.title{
	padding: 10px 0;
	font-size: 65px;
	font-weight: 600;
	text-transform: capitalize;
	text-transform: capitalize;
}
.custom_btn1,
.custom_btn2{
	font-family: var(--FiraSans);
	font-size: 18px;
	font-weight: 500;
  padding: 10px 30px;
  color: var(--black);
  background-color: var(--yellow);
  border-radius: 5px;
  position: relative;
  transition: 0.33s linear;
  z-index: 1;
  overflow: hidden;
}
.custom_btn1::before,
.custom_btn2::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	transition: 0.33s linear;
	z-index: -1;
}
.custom_btn1::before{
	background-color: var(--white);
}
.custom_btn1:hover::before,
.custom_btn2:hover::before{
	width: 100%;
}
.custom_btn1 span,
.custom_btn2 span{
	position: relative;
	z-index: 2;
	transition: 0.33s linear;
}
.custom_btn1:hover span{
	color: var(--black);
}
.custom_btn2:hover {
  color: var(--white);
}
.custom_btn2::before{
	background-color: var(--black);
}


.link_hover{
	position: relative;
	transition: 0.33s linear;
}
.link_hover:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 0;
	height: 2px;
	background-color: var(--yellow);
	transition: 0.33s linear;
}
.link_hover:hover::before{
	width: 100%;
}
.link_hover:hover{
	color: var(--yellow) !important;
}
/*Common css end*/
/*header css start*/
.header_section {
  position: relative;
  height: 800px;
  width: 100%;
  overflow: hidden;
}
.header_section::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  opacity: 0.7;
  z-index: -1;
}
#myVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -999;
}
header{
	z-index: 999;
}
.header_top{
	padding: 15px 0;
	background-color: var(--yellow);
}
.ht_email {
	margin-right: 20px;
}
.ht_email i,
.ht_location i{
	margin-right: 8px;
	font-size: 16px;
	color: var(--black);
}
.ht_email a,
.ht_location a,
.ht_right a{
	font-size: 16px;
	color: var(--black);
	position: relative;
}
.ht_email a::before,
.ht_location a::before,
.ht_right a::before{
	content: '';
	width: 0;
	bottom: -3px;
	left: 0;
	height: 2px;
	background-color: var(--black);
	position: absolute;
	transition: 0.33s linear;
}
.ht_email a:hover::before,
.ht_location a:hover::before,
.ht_right a:hover::before{
	width: 100%;
}

.header_bottom{
	padding: 15px 0;
	z-index: 999;
}
.header_scroll_fixed{
	transition: all 0.3s ease;
}
.header_scroll_sticky{
  position: fixed;
  top: 0;
  width: 100%;
  scroll-behavior: smooth;
  background: var(--white);
  transition: 0.3s linear;
  box-shadow: 0px 0px 13px 0px #464646ab !important;
}
.header_scroll_sticky #header_menu ul li a{
	color: var(--black);
}
.header_scroll_sticky .custom_btn1:hover span{
  color: var(--white);
}
.header_scroll_sticky .custom_btn1::before{
	background-color: var(--black);
}
.header_logo{
	width: 150px;
}
#header_menu ul li a{
	margin-right: 30px;
	font-size: 20px;
	font-weight: 400;
	text-transform: capitalize;
	color: var(--white);
}
.header_menu_toggler{
	background-color: var(--white);
}
.header_container{
	padding-top: 70px;
	color: var(--white) !important;
}
.hc_sub_title{
	margin-bottom: 0;
	font-size: 20px;
}
.hc_title{
	padding: 0;
	margin-bottom: 22px;
	font-size: 75px;
}
.hc_bottom {
  background-color: #0e0e0eb3;
  padding: 10px 50px 30px;
  border-radius: 5px;
}
.booking_form{}
.booking_form label{
	margin-top: 30px;
	text-transform: capitalize;
	color: var(--white);
}
.position-relative {
  position: relative;
}

.input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
  pointer-events: none;
}
.custom-select-wrapper {
  user-select: none;
  width: 100%;
  cursor: pointer;
  font-family: 'Fira Sans', sans-serif;
}

.custom-select-selected {
  border: 1px solid #ccc;
  padding: 10px 40px 10px 15px;
  position: relative;
  background-color: white;
  color: #333;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.custom-select-selected i {
  color: var(--black);
}

.custom-select-selected .arrow {
  position: absolute;
  right: 15px;
  font-size: 14px;
  pointer-events: none;
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: white;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.15);
}

.custom-select-options div {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #333;
  transition: background-color 0.3s ease;
}

.custom-select-options div i {
  color: var(--black);
}

.custom-select-options div:hover {
  background-color: #f0b429;
  color: #000;
  cursor: pointer;
}
#submitBtn:disabled {
  background-color: #fed1009e !important;
  color: #161616c2 !important;
  cursor: not-allowed;
	pointer-events: none;
}
#submitBtn{
  font-family: var(--FiraSans);
  font-size: 18px;
  font-weight: 500;
  padding: 10px 30px;
  color: var(--black);
  background-color: var(--yellow);
  border-radius: 5px;
  position: relative;
  transition: 0.33s linear;
}
/*header css end*/
/*about css start*/
.abl_img_1{
	width: 380px;
	max-height: 500px;
	overflow: hidden;
	border-radius: 10px;
}
.abl_img_2{
	padding: 10px;
	width: 250px;
	max-height: 200px;
	background-color: var(--yellow);
	overflow: hidden;
	border-radius: 10px;
	left: calc(0% + 220px);
	top:40%;
}
.abl_img_2 img{
	border-radius: 10px;
}
.about_video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.about_video button{
	width: 50px;
	height: 50px;
	border-radius: 50px;
	border: 0;
	color: var(--yellow);
	background-color: var(--white);
	z-index: 1;
}
.about_video i{}
.about_video::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: var(--white);
	border-radius: 50px;
	animation: play 2s infinite;
	z-index: -1;
}
@keyframes play{
	0%{
		transform: scale(1.2);
	}
	25%{
		transform: scale(1.4);
		opacity: 0.5;
	}
	50%{
		transform: scale(1.6);
		opacity: 0.6;
	}
	75%{
		transform: scale(1.7);
		opacity: 0.5;
	}
	100%{
		transform: scale(1.8);
		opacity: 0.5;
	}
}
.about_right p{
	margin-bottom: 20px;
}
/*about css end*/
/*services css start*/
.services_section{
	color: var(--white);
	background-color: var(--black);
}
.services{
	margin-top: 80px;
	border-right: 2px solid var(--yellow);
}
.services:last-child{
	border-right: 0;
}
.service_item{
	padding: 0 20px;
	text-align: center;
}
.service_item i{
	font-size: 55px;
	color: var(--yellow);
}
.service_item h2{
	font-size: 25px;
	margin: 30px 0 10px;
}
.service_item h2 a{
	color: var(--white);
	transition: 0.33s linear;
}
.service_item h2 a:hover{
	color: var(--yellow);
}
.service_item p{}
/*services css end*/
/*feature and price css start*/
.packages_section{}

.packages_item {
	margin-top: 60px;
  box-shadow: 0 0 10px #00000066;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.33s linear;
}
.packages_item:hover{
	transform: translateY(-10px);
}
.p_img{}
.p_img img{}
.package_heading{
	padding: 5px 20px;
	z-index: 1;
	color: var(--black);
	background-color: var(--white);
}
.package_heading:before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 60%;
	height: 100%;
	background-color: var(--yellow);
	clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
	z-index: -1;
}
.package_heading h2{
	font-size: 25px;
}
.package_heading span{
	font-size: 18px;
	font-weight: 700;
}
.packages_content{
	padding: 20px;
	color: var(--white);
	background-color: var(--black);
}
.packages_content ul{}
.packages_content ul li{
	margin: 10px 0;
}
.packages_content ul li span{
	font-size: 14px;
	text-transform: capitalize;
	color: var(--white);
}
.packages_content button{}
.packages_content button span{
	color: var(--black);
}
/*feature and price css end*/
/*why choose css start*/
.why_choose_section{
	color: var(--white);
	background-color: var(--black);
}
.choose_item{
	margin-top: 30px;
}
.choose_item i{
	font-size: 55px;
	color: var(--yellow) !important;
}
.choose_item h5{
	margin-top: 15px;
	margin-bottom: 10px;
	font-size: 25px;
}
.choose_item p{}
/*why choose css end*/
/*driver css start*/
.driver_section{}
.driver_slider{
	margin-top: 40px;
}
.driver_list {
  margin: 10px;
  box-shadow: 1px 1px 10px 0px #00000066;
  border: 0;
}
.driver_img{
	max-height: 213px;
	overflow: hidden;
}
.driver_list:hover .driver_info{
	left: 5px;
	opacity: 1;
}
.driver_info{
  left: -50px;
  bottom: 5px;
  opacity: 0;
  transition: 0.33s linear;
}
.driver_info a{}
.driver_info i{
	margin-top: 10px;
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  background: var(--yellow);
  border-radius: 50%;
  transition: 0.33s linear;
}
.driver_info i:hover{
	color: var(--yellow) !important;
	background-color: var(--black);
}
.dl_body{}
.driver_review{}
.driver_review i{
	color: var(--yellow);
}
.dl_body h5{
	margin: 10px 0 5px 0;
	font-size: 18px;
	text-transform: capitalize;
}
.dl_body p{
	font-size: 16px;
	text-transform: capitalize;
}
/*driver css end*/
/*testmonial css start*/
.testmonial_section{
	background-color: var(--black);
}
.testmonial_top{
	margin-bottom: 30px;
	color: var(--white);
}
.customer_review{
	padding: 50px;
	margin-top: 60px;
	min-height: 350px;
	background-color: var(--white);
	border-radius: 5px;
}
.cr_img{
	width: 80px;
	height: 80px;
	border-radius: 50px;
	overflow: hidden;
	left: 50%;
  top: 0px;
  transform: translate(-50%, -50%);
}
.cr_img img{}
.cr_heading{
	margin-bottom: 20px;
}
.cr_heading h3{
	font-size: 22px;
	text-transform: capitalize;
}
.cr_heading span{
	font-size: 15px;
}
.cr_content{}
.cr_content p{}
.cr_star{
	margin-top: 20px;
}
.cr_star i{
	font-size: 22px;
	color: var(--yellow);
}
.testmonial_slider .owl-nav{}
.testmonial_slider .owl-nav button ,
.blogs .owl-nav button ,
.driver_slider .owl-nav button {
  margin: 20px 20px 0 !important;
  width: 40px;
  height: 40px;
  background-color: var(--yellow) !important;
  border-radius: 5px !important;
  transition: 0.33s linear;
}
.testmonial_slider .owl-nav button span,
.blogs .owl-nav button span,
.driver_slider .owl-nav button span{
	font-size: 35px;
	color: var(--white);
	transition: 0.33s linear;
}
.testmonial_slider .owl-nav button:hover ,
.blogs .owl-nav button:hover {
  background-color: var(--white) !important;
}
.driver_slider .owl-nav button:hover {
  background-color: var(--black) !important;
}
.testmonial_slider .owl-nav button:hover span,
.blogs .owl-nav button:hover span,
.driver_slider .owl-nav button:hover span{
	color: var(--yellow);
}
/*testmonial css end*/
/*app download css start*/
.app_section{}

.download_link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.download_link a{
	margin-top: 30px;
	margin-right: 40px;
	display: inline-block;
}
.download_link a:last-child{
	margin-right: 0;
}
.appstore{
	padding-right: 40px;
	color: var(--white);
	background-color: var(--black);
	transition: 0.33s linear;
}
.appstore i {
  margin-right: 20px;
  font-size: 35px;
  height: 60px;
  width: 60px;
  color: var(--white);
  background-color: var(--yellow);
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  transition: 0.33s linear;
}
.dl_text{}
.dl_text h5{
	font-size: 18px;
	text-transform: capitalize;
}
.dl_text span{
	font-size: 14px;
}
.download_link a:hover .appstore{
	background-color: var(--yellow);
}
.download_link a:hover .appstore i{
	color: var(--yellow);
	background-color: var(--black);
}
.app_img {
  margin: 0 auto;
  max-width: 320px;
  animation: app 5s infinite;
}

@keyframes app {
  0% {
    transform: translateY(0);
  }
  25%{
  	transform: translateY(10px);
  }
  50% {
    transform: translateY(-10px);
  }
  75%{
  	transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.app_img img{}
/*app download css end*/
/*blog css start*/
.blog_section{
	color: var(--white);
	background-color: var(--black);
}
.blogs{
	margin-top: 30px;
}
.blog_item{
	color: var(--black);
	background-color: var(--white);
	border-radius: 5px;
	overflow: hidden;
}

.post-meta-date{}
.post-meta-date span{
	padding: 5px 0;
	font-size: 16px;
	font-weight: 500;
	width: 110px;
	display: block;
}
.post-meta-date span:first-child{
	color: black;
	background-color: white;
}
.post-meta-date span:last-child{
	color: var(--black);
	background-color: var(--yellow);
}
.blog_body{
	padding: 20px 30px;
}
.post-meta{}
.post-meta i{
	color: var(--yellow);
}
.post-meta span{
	font-size: 15px;
}
.blog_body h3{
	margin: 10px 0;
}
.blog_body h3 a{
	font-size: 18px;
	color: var(--black);
	transition: 0.33s linear;
}
.blog_body p{
	font-size: 15px;
}
.blog_btn{
	padding: 5px 20px;
	margin-top: 20px;
	display: inline-block;
}
/*blog css end*/
/*faq css start*/
.faq_section{
	color: var(--black);
	background-color: var(--white);
}
#accordionFaq{
	margin-top: 40px;
}
#accordionFaq .accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--yellow);
}
/*faq css end*/
/*contact form css start*/
.contact_section{
	color: var(--white);
	background-color: var(--black);
}
.contact_bottom{
	margin-top: 40px;
}
/*contact form css end*/
/*footer css start*/
.footer_section{
	padding-top: 40px;
	padding-bottom: 40px;
}
.footer_logo,
.footer_title{
	margin-top: 40px;
}
.f_logo_img{
	margin-bottom: 40px;
	width: 150px;
	aspect-ratio: 3/1;
}
.app_qrcode{
	margin-top: 20px;
}
.qr_code{
	width: 100px;
	aspect-ratio: 1/1;
}
.qr_code img{}
.app_download{}
.app_download a{
	display: block;
	margin-top: 10px;
}
.app_download a:first-child{
	margin-top: 0;
}
.app_download .appstore{
	padding-right: 10px;
}
.app_download .appstore i{
	margin-right: 10px;
  font-size: 18px;
  height: 40px;
  width: 40px;
}
.app_download .dl_text{}
.app_download .dl_text h5{
	font-size: 12px;
}
.app_download .dl_text span{
	font-size: 10px;
}
.app_download a:hover .appstore{
	background-color: var(--yellow);
}
.app_download a:hover .appstore i{
	color: var(--yellow);
	background-color: var(--black);
}
.footer_title{
	margin-bottom: 50px;
	font-size: 32px;
	font-weight: 600;
	text-transform: capitalize;
	position: relative;
}
.footer_title:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 100px;
	height: 2px;
	background-color: var(--yellow);
}
.quick_link{}
.quick_link h3{}
.quick_link ul{}

.quick_link ul li,
.official_link ul li{
	margin-bottom: 15px;
}
.quick_link ul li:last-child,
.official_link ul li:last-child{
	margin-bottom: 0;
}
.quick_link ul li a,
.official_link ul li a,
.f_contact_info span{
	font-size: 18px;
	color: var(--black);
	font-weight: 600;
}
.f_contact_info{}
.f_contact_info i{
	margin-right: 10px;
	color: var(--yellow);
}
.f_contact_info span{
	font-family: var(--FiraSans);
}
.footer_social{
	margin-top: 20px;
}
.footer_social a{
	margin-right: 20px;
}
.footer_social a i{
	font-size: 25px;
	color: var(--yellow) !important;
	transition: 0.33s linear;
}
.footer_social a:hover i{
	transform: scaleX(-1);
}
.subscribe_input{
	margin-top: 20px;
	margin-bottom: 10px;
}
.subscribe_input input{
	padding:10px 35px 10px 10px;
}
.subscribe_input i {
  right: 10px;
  top: 50%;
  transform: translate(0%, -50%);
}
.subscribe_form button{
	width: 100%;
	text-transform: capitalize;
}
/*scroller icon css start*/
#scrollIcon {
  display: block;
  position: fixed;
  bottom: 10px;
  right: 20px;
  font-size: 30px;
  color: rgb(255, 255, 255);
  cursor: pointer;
  z-index: 9999;
  overflow: hidden;
}
#scrollIcon i{
	font-size: 45px;
	color: var(--white);
	background-color: var(--yellow);
	border-radius: 5px;
	transition: 0.33s linear;
}
#scrollIcon i:hover{
	color: var(--black);
}
/*scroller icon css end*/
/*footer css start*/
.footer{
	padding: 20px 0;
	color: var(--white);
	background: var(--black);
}
.f_right ul li a{
	margin-right: 20px;
	color: var(--gray);
	transition: 0.3s linear;
}
.f_right ul li:last-child a{
	margin-right: 0;
}
.f_right ul li a:hover{
	color: var(--ultramarine_blue);
}
/*footer css end*/
