/* Icons */
@import url("https://site-assets.fontawesome.com/releases/v6.0.0/css/all.css");
/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #000079;
  --secondary: #cf0000;
  /* Font Variable */
  --font-poppins: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: var(--font-poppins);
}

section {
  position: relative;
  padding: 7.5rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: #717171;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-family: var(--font-heading);
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* Lenis */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Preloader */
/* body.loading {
  overflow: hidden;
} */

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  align-items: start;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 16rem;
  font-weight: 600;
  letter-spacing: 8px;
  position: absolute;
  bottom: 2rem;
  right: 5rem;
}

.preLoader .counter span {
  font-family: var(--font-fredoka);
}

.preLoader .line {
  position: absolute;
  top: 80%;
  left: 0;
  width: 0;
  height: 5px;
  background-color: var(--white);
  opacity: 0.75;
}

.preLoader .bar {
  width: 20%;
  height: 100vh;
  background-color: var(--primary);
}

/* GLOBAL CSS */

.themeBtn {
  background: var(--primary);
  font-size: 1.125rem;
  color: var(--white) !important;
  text-transform: capitalize;
  font-weight: 600;
  display: inline-block;
  padding: 1.59375rem 3.6875rem;
  border-radius: 38.5px;
  line-height: normal;
  overflow: hidden;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

.subHead {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  text-transform: capitalize;
  overflow: hidden;
}

.subHead span {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  margin-bottom: 7.39px;
  border-radius: 50%;
}

.mainHead {
  font-size: 60px;
  font-weight: bold;
  margin: 0;
  text-transform: capitalize;
  overflow: hidden;
}

.mainHead .char {
  display: inline !important;
}

/* !GLOBAL CSS */
/* NAV HEADER CSS */

.top-bar {
  padding: 26px 0;
}

.top-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 461px;
}

.top-wrap h1 {
  font-size: 45px;
  font-weight: bold;
  color: var(--white);
  margin: 0;
}

.top-user {
  display: flex;
  align-items: center;
  gap: 24.89px;
}

.user-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-wrap i {
  color: var(--secondary);
}

.user-wrap a {
  font-size: 14px;
  color: var(--white);
}

.top-social {
  display: flex;
  align-items: center;
  gap: 34.91px;
}

.top-bar li a {
  color: var(--white);
}

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 111;
  top: 0;
  width: 100%;
  padding: 1rem 0;
  transition: 0.3s ease-in-out;
}

header .navbar {
  background: var(--primary);
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav {
  align-items: center;
  justify-content: space-between;
  width: 74%;
  margin-right: 48px;
  padding: 32px 0;
}

.navbar-nav .nav-item .nav-link {
  font-size: 0.875rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
  position: relative;
}

.navbar-nav .nav-item.active .nav-link {
  color: var(--white);
  text-shadow: 1px 0 0 rgb(17, 17, 17, 80%);
}

.navbar-nav .nav-item.active .nav-link::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--white);
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
  color: var(--white);
  text-shadow: 1px 0 0 rgb(17, 17, 17, 80%);
}

.navbar-nav .nav-link:hover::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--white);
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.contactWrap {
  display: flex;
  align-items: center;
  gap: 23.5px;
  position: relative;
}

.contactWrap::before {
  content: "";
  width: 239px;
  height: 93px;
  background: var(--secondary);
  position: absolute;
  left: 1.5rem;
}

.contactIcon i {
  width: 63px;
  height: 63px;
  background: #111;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  transform: rotate(311deg);
  border-radius: 50%;
}

.contactInfo {
  z-index: 1;
}

.contactInfo a {
  font-size: 18px;
  color: var(--primary);
  font-weight: 600;
  margin: 0;
}

.contactInfo p {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2.5px;
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
  height: 1080px;
}

.main-slider .slide-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
  overflow: hidden;
}

.homeSlider .swiper-pagination {
  bottom: 8rem;
  width: fit-content;
  left: 18rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
  width: 63px;
  height: 63px;
  color: #fff;
  display: grid;
  align-items: center;
  justify-content: end;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.homeSlider .swiper-button-next {
  right: 120px;
  justify-content: start;
}

.homeSlider .swiper-button-prev {
  left: 120px;
}

.homeSlider .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "\f177";
}

.homeSlider .swiper-button-next:after,
.swiper-button-prev:after {
  font-family: "Font Awesome 5 Pro";
  font-size: 2.5rem;
  font-weight: 300;
}

.homeSlider .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "\f178";
}

.homeSlider .swiper-button-next:after,
.swiper-button-prev:after {
  font-family: "Font Awesome 5 Pro";
  font-size: 2.5rem;
  font-weight: 300;
}

.homeSlider .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  display: inline-block;
  margin: 0 0.5rem !important;
  opacity: 1;
  border: 1px solid var(--white);
  background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
  background: var(--white);
  position: relative;
}

.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.slideOne {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
}

.main-slider h1 {
  margin: 0;
  color: var(--white);
  font-size: 4.7rem;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 23.5px;
}

.main-slider p {
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
  font-size: 1.875rem;
  margin-bottom: 40.5px;
}

/* !MAIN HERO SLIDER CSS */

/* sections css start */

/* ride section css start */

.ride-sec {
  background: url(../images/ridebg.png) no-repeat center/cover;
  position: relative;
}

.rideWrap h2 {
  color: var(--white);
  margin-bottom: 5px;
}

.rideWrap h3 {
  color: var(--white);
  margin-bottom: 41px;
}

.rideWrap p {
  color: #dadada;
}

.rideBook input {
  width: 100%;
  height: 67px;
  color: #e8e8e8;
  font-size: 14px;
  font-weight: 600;
  background: #242424;
  border: none;
  border-radius: 33.5px;
  outline: none;
  padding: 0 40px;
  margin-bottom: 20px;
}

.rideBook input::placeholder {
  font-size: 14px;
  font-weight: 600;
  color: #dadada;
}

.rideBook button {
  border: none;
  width: 100%;
  padding: 20px 0;
}

.below-bar {
  position: absolute;
  bottom: 0;
}

/* ride section css end */

/* welcome section css start */

.welcomeHead h2 {
  color: #717171;
}

.welcomeHead h2 span {
  margin-left: auto;
  margin-right: auto;
}

.welcomeHead h3 {
  margin-bottom: 60px;
}

.welcome-img img {
  border-radius: 10px;
}

.airportWrap {
  background: #f3f3f3;
  border-radius: 10px;
  margin-bottom: 55px;
}

.airportInfo {
  padding: 51px 47px;
}

.airportInfo p {
  font-size: 20px;
  font-weight: 500;
  color: #111;
}

.airportImg {
  position: relative;
}

.airportImg img {
  width: 100%;
  border-radius: 0 10px 10px 0;
}

.playBtn {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translateY(-50%);
}

.playBtn a {
  width: 63px;
  height: 63px;
  background: var(--primary);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
}

.welcaome-para {
  padding-bottom: 61px;
  border-bottom: 2px solid #f3f3f3;
}

.calling-wrap {
  margin-top: 60px;
}

.phoneIcon i {
  width: 63px;
  height: 63px;
  background: var(--primary);
  color: var(--white);
  transform: rotate(311deg);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 2rem;
}

.phoneInfo p {
  text-transform: capitalize;
}

.numberWrap a {
  font-size: 33px;
  color: #111;
}

/* welcome section css end */

/* number-sec css start */

.number-sec {
  background: #f3f3f3;
}

.number-wrap {
  background: var(--white);
  padding: 55px 63px;
  border-radius: 10px;
  min-height: 289px;
}

.number-wrap figure {
  margin-bottom: 18px;
}

/* number-sec css end */

/* quote-sec css start */

.quote-sec {
  background: var(--primary);
  position: relative;
}

.quote-wrap h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.quote-wrap h3 {
  font-size: 50px;
  text-transform: none;
  color: var(--white);
}

.quote-bar {
  position: absolute;
  bottom: 0;
  left: 0;
}

.quote-anch a {
  background: #111;
}

/* quote-sec css end */

/* choose-sec css start */

.choose-sec .welcomeHead h3 {
  margin-bottom: 30px;
}

.chooseTabs .nav {
  justify-content: center;
  gap: 17.38px;
  border: none;
  margin-bottom: 50px;
}

.chooseTabs .nav .nav-item .nav-link {
  padding: 10px 60px;
  color: #717171;
  font-weight: 600;
  background: #f3f3f3;
  border-radius: 18.5px;
  outline: none;
  border: none;
  text-transform: uppercase;
}

.chooseTabs .nav .nav-item .nav-link.active {
  background: var(--primary);
  color: var(--white);
  text-shadow: 1px 0 0 rgb(17, 17, 17, 80%);
}

.carWrap {
  padding: 65px 37px;
  border: 2px solid #f3f3f3;
  border-radius: 10px;
}

.carWrap figure + figure {
  margin-top: 7.5px;
  margin-bottom: 25px;
}

.carWrap figure + figure {
  width: 100px;
  height: 100px;
  background: #111;
  display: grid;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}

.carWrap h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

.carWrap p {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.carWrap p span {
  font-weight: 600;
}

.carWrap p + p {
  margin-top: 10px;
}

.car-anch {
  margin-top: 30px;
}

.car-anch a {
  padding: 17px 56px;
}

.carWrap:hover .car-logo {
  background: var(--primary);
  transition: 0.3s ease-in-out;
  border-radius: 50%;
}

/* choose-sec css end */

/* why-choose sec css start */

.whychoose-sec {
  background: url(../images/why-choosebg.png) no-repeat center/cover;
  position: relative;
}

.whychoose-sec .rideWrap h2 span {
  margin-left: auto;
  margin-right: auto;
}

.whychoose-sec .rideWrap h3 {
  margin-bottom: 60px;
}

.safetyWrap {
  padding: 9px 74px;
}

.safetyWrap figure {
  width: 98px;
  height: 98px;
  background: var(--primary);
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin: 0 auto;
}

.safetyWrap h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin: 33px 0;
}

.safetyWrap p {
  color: #b5b5b5;
  margin-bottom: 24.61px;
}

.safetyWrap a {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.safetyBorders {
  border-inline: 1px solid rgb(255, 255, 255, 10%);
}

/* why-choose sec css end */

/* fare-section css start */

.fareWrap {
  padding: 6.25rem;
  background: var(--primary);
  border-radius: 10px;
}

.fareimgs {
  display: flex;
  gap: 20px;
  padding-bottom: 42px;
  border-bottom: 2px solid rgb(17, 17, 17, 10%);
}

.fare-info h2 {
  font-size: 30px;
  color: var(--white);
  margin-bottom: 2.64px;
}

.fare-info p {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}

.fareWrap ul {
  margin: 30px 0;
}

.fareWrap ul li {
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
}

.fare-anc {
  text-align: center;
}

.fare-anc a {
  padding: 17px 60px;
  background: #111;
}

.fareHead {
  margin-top: 55px;
}

.testinomal-sec {
  background: url(../images/testinomalbg.png) no-repeat center/cover;
}

.testinomal-sec .rideWrap h2 span {
  margin-left: auto;
  margin-right: auto;
}

.testnomalSlider1 {
  width: 300px;
  margin-bottom: 50px;
}

.testnomalSlider1 .swiper-slide-active .usersImgs::before {
  position: relative;
  z-index: 2;
}

.usersImgs {
  position: relative;
}

.usersImgs img {
  border-radius: 50%;
  width: 100%;
}

.usersImgs::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #00000090;
  border-radius: 50%;
  position: absolute;
  left: 0;
}

.testinomalWrap {
  text-align: center;
}

.testinomalWrap h2 {
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 38.64px;
}

.testinomalWrap p {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary);
}

.testinomal-sec .swiper-pagination {
  bottom: 8rem;
  width: fit-content;
  left: 18rem;
}

.testinomal-sec .swiper-button-prev,
.testinomal-sec .swiper-button-next {
  width: 63px;
  height: 63px;
  color: #fff;
  display: grid;
  align-items: center;
  justify-content: end;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.testinomal-sec .swiper-button-next {
  right: 120px;
  justify-content: start;
}

.testinomal-sec .swiper-button-prev {
  left: 120px;
}

.testinomal-sec .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "\f177";
}

.testinomal-sec .swiper-button-next:after,
.swiper-button-prev:after {
  font-family: "Font Awesome 5 Pro";
  font-size: 2.5rem;
  font-weight: 300;
}

.testinomal-sec .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "\f178";
}

.testinomal-sec .swiper-button-next:after,
.swiper-button-prev:after {
  font-family: "Font Awesome 5 Pro";
  font-size: 2.5rem;
  font-weight: 300;
}

/* fare-section css end */

/* sections css end */

/* blog-section css start */

.blog-wrap figure img {
  border-radius: 10px;
}

.blog-wrap ul {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 17px;
}

.blog-wrap ul li {
  font-size: 14px;
  font-weight: 500;
  color: #717171;
}

.blog-wrap ul li span {
  padding: 10px 9px;
  background: var(--primary);
  font-size: 12px;
  color: var(--white);
  font-weight: bold;
  border-radius: 18.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.blog-wrap h2 {
  font-size: 30px;
  margin-bottom: 24px;
}

.blogs-wrap {
  padding: 67.5px 40px 67px 47px;
  background: #f3f3f3;
  border-radius: 10px;
}

.blogs-wrap h2 {
  font-size: 20px;
  margin-top: 17px;
}

.blogs-wrap span {
  padding: 10px 9px;
  background: var(--primary);
  font-size: 12px;
  color: var(--white);
  font-weight: bold;
  border-radius: 18.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.blogs-wrap ul {
  display: flex;
  gap: 12px;
}

.blogs-wrap ul li {
  font-size: 14px;
  color: #717171;
  font-weight: 500;
}

.blogs-img img {
  width: 100%;
}

/* blog-section css end */

/* Umair  */

/* footer Start */

footer {
  background: var(--black);
  padding: 6rem 0 2rem;
  position: relative;
  overflow: hidden;
}

footer h3 {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  font-family: "Poppins";
  line-height: 21.6px;
  margin-bottom: 2.224375rem;
}

footer p {
  color: var(--white);
}

ul.social-icon {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 1.725625rem;
}

.quicklist li a {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.quicklist li {
  margin-bottom: 1rem;
}

.contact {
  margin-top: 1rem;
}

.contact li a {
  color: var(--white);
  font-size: 0.875rem;
}

form.input-group {
  display: flex;
  background: #242424;
  padding: 0.3rem 0.2rem 0.3rem 0.8rem;
  margin-top: 2rem;
  border-radius: 33.5px;
  width: 100%;
}

.input-group input {
  background: transparent;
  border: 0;
}

.input-group span {
  color: var(--white);
  width: 47px;
  height: 47px;
  background: var(--secondary);
  display: grid;
  place-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50%;
}

ul.social-icon li i {
  color: var(--white);
}

.copyRight {
  padding: 4rem 0 0;
  margin-top: 5rem;
}

.copyRight p span {
  color: var(--secondary);
}

footer .border-top {
  border-top: 1px solid #ffffff10 !important;
}

ul.social-link {
  display: flex;
  gap: 1rem;
}

ul.social-link li a {
  color: var(--white);
  font-size: 1rem;
}

.contact li a i {
  color: var(--secondary);
  margin-right: 0.5rem;
}

figure.footer-img {
  position: absolute;
  right: 0;
  top: 0;
}

.hour-service {
  background: var(--primary);
}

.hour-service .subHead {
  color: var(--white);
}

.hour-service .mainHead {
  color: var(--white);
}

.hour-service .themeBtn {
  padding: 17px 60px;
  background: #111;
}

/* Innerpages */
.main-slider--inner {
  height: 550px;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
    margin-left: 9px;
    color: #fff; /* Ensures visibility on dark backgrounds */
}

/* Contact Us Page */
.contact-form {
  background: #1e1e1e;
  padding: 2rem 3rem 8rem 6rem;
}

.contact-form .mainHead {
  background: #1e1e1e;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
  margin-bottom: 3rem;
}

.contact-form input {
  width: 93%;
  color: var(--white);
  background: none;
  outline: none;
  border: 1px solid #ffffffaa;
  position: relative;
  z-index: 1;
  padding: 0.75rem 1rem;
  margin: 0 0.5rem 1rem;
}

/*.contact-form button {*/
/*  background: var(--primary);*/
/*  color: var(--white);*/
/*  border: none;*/
/*  outline: none !important;*/
/*  padding: 0.25rem 1rem;*/
/*  display: block;*/
/*  position: relative;*/
/*  margin: -2rem 0 0 auto;*/
/*  z-index: 1;*/
/*}*/

.contact-form button {
    background: var(--primary);
    color: var(--white);
    border: none;
    outline: none !important;
    padding: 0.5rem 1.5rem;
    width: 100%;
    margin-top: 1rem;
    display: block;
    border-radius: 4px;
    font-size: 1rem;
}

/* Textarea color behavior */
.custom-textarea {
    background-color: #202020;
    color: #495057;
    transition: background-color 0.3s ease;
    margin-left: 5px;
}

.custom-textarea:focus {
    background-color: #fff;
    color: #000;
}
.form-check input {
  margin-left: -23.6rem;    
    
}

.form-check-label {
    margin-top: -2rem;
}

.contact-map {
  height: 100%;
  position: relative;
}

.contact-mapAddress {
  width: 270px;
  background: var(--primary);
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1.5rem 1.5rem 3rem;
}

.contact-mapAddress h3 {
  font-size: 1.75rem;
  text-transform: capitalize;
  color: var(--white);
}

.contact-mapAddress a {
  display: block;
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 0.25rem;
}

.contactUsWrap {
  position: relative;
}

/*.contactUsWrap::before {*/
/*  content: "";*/
/*  width: 94%;*/
/*  height: 80%;*/
/*  border: 1px solid var(--secondary);*/
/*  position: absolute;*/
/*  top: 14%;*/
/*  left: 50%;*/
/*  transform: translateX(-50%);*/
/*  z-index: 1;*/
/*  pointer-events: none;*/
/*}*/

.mainHead.center-line {
  text-align: center;
  border-bottom: 1px solid #ccc;
  padding: 0 0 1rem;
  margin: 0 0 3rem;
}

.booking-card .nav-tabs {
  justify-content: center;
  border: 0;
  gap: 10px;
  margin: 0 0 1.5rem;
}

.booking-card .nav-tabs .nav-link {
  all: unset;
  cursor: pointer;
  background: #e3e2e2;
  font-size: 1.125rem;
  color: #111111;
  font-weight: 600;
  display: inline-block;
  padding: 14px 45px;
}

.booking-card input {
  width: 100%;
  height: 63px;
  background: #f3f3f3;
  border: 1px solid #dcdcdc;
  font-size: 14px;
  font-weight: 500;
  padding: 0 1.5rem;
  margin: 0 0 1rem;
}

.booking-card input::placeholder {
  color: #909090;
}

.booking-card .themeBtn {
  border: 0;
  border-radius: 0;
  padding: 0.72rem 3.27rem;
  margin: auto;
  display: table;
}

.booking-card .nav-tabs .nav-link.active {
  background: #111111;
  color: var(--white);
}

/* step form css start */

#msform {
  text-align: center;
  position: relative;
  margin-top: 20px;
}

#msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding-bottom: 20px;
  position: relative;
}

.form-card {
  text-align: left;
}

#msform fieldset:not(:first-of-type) {
  display: none;
}

#msform input,
#msform textarea {
  /* padding: 8px 15px 8px 15px; */
  border: 1px solid #ccc;
  border-radius: 0px;
  margin-bottom: 10px;
  margin-top: 2px;
  width: 100%;
  /* box-sizing: border-box; */
  /* font-family: montserrat; */
  color: #2c3e50;
  /* background-color: #eceff1; */
  font-size: 14px;
  /* letter-spacing: 1px; */
}

#msform input:focus,
#msform textarea:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid #673ab7;
  outline-width: 0;
}

#msform .action-button {
  width: 100px;
  background: var(--primary);
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 30px 0px 10px 5px;
  float: none;
}

#msform .action-button:hover,
#msform .action-button:focus {
  background-color: #311b92;
}

#msform .action-button-previous {
  width: 100px;
  background: #616161;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 30px 0px 10px 5px;
  float: left;
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
  background-color: #000000;
}

.card {
  z-index: 0;
  border: none;
  position: relative;
}

.fs-title {
  font-size: 25px;
  color: #673ab7;
  margin-bottom: 15px;
  font-weight: normal;
  text-align: left;
}

.purple-text {
  color: var(--primary);
  font-weight: normal;
}

.steps {
  font-size: 25px;
  color: gray;
  margin-bottom: 10px;
  font-weight: normal;
  text-align: right;
}

.fieldlabels {
  color: gray;
  text-align: left;
}

#progressbar {
  margin-bottom: 4rem;
  /* overflow: hidden; */
  color: lightgrey;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#progressbar .active {
  color: var(--primary);
}

#progressbar li {
  list-style-type: none;
  font-size: 15px;
  /* width: 25%; */
  /* float: left; */
  position: relative;
  font-weight: 400;
  background: transparent;
  flex: 1;
}

/* #progressbar #account:before {
  font-family: FontAwesome;
  content: "\f13e";
}

#progressbar #personal:before {
  font-family: FontAwesome;
  content: "\f007";
}

#progressbar #payment:before {
  font-family: FontAwesome;
  content: "\f030";
}

#progressbar #confirm:before {
  font-family: FontAwesome;
  content: "\f00c";
} */
#progressbar li strong {
  width: 48px;
  height: 48px;
  /* background: #ff4800; */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 15px;
  color: var(--white);
  /* border: 3px solid var(--white); */
  box-shadow: 0 0 0px 14px #ff48002e;
  position: relative;
  z-index: 1;
  /* background: transparent; */
}

#progressbar li:before {
  width: 50px;
  height: 50px;
  line-height: 45px;
  display: block;
  font-size: 20px;
  color: #ffffff;
  background: lightgray;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  padding: 2px;
}

#progressbar li:after {
  content: "";
  width: 100%;
  height: 2px;
  background: lightgray;
  position: absolute;
  left: 0;
  top: 25px;
  z-index: -1;
}

#progressbar li.active:before,
#progressbar li.active:after {
  background: var(--primary);
}

.progress {
  height: 20px;
}

.progress-bar {
  background-color: #673ab7;
}

.fit-image {
  width: 100%;
  object-fit: cover;
}

#progressbar li strong:before {
  content: "";
  position: absolute;
  inset: 0;
  width: 45px;
  height: 45px;
  background: var(--primary);
  border-radius: 50%;
  margin: auto;
  border: 3px solid #fff;
  z-index: -1;
}

.summary-card {
  background: #f3f3f3;
  padding: 2.5rem 2rem;
  border: 1px solid #dcdcdc;
}

.summar-content h4 {
  font-size: 22px;
  color: #1e1e1e;
  text-transform: capitalize;
  margin: 0 0 1rem;
}

.summar-content h5 {
  font-size: 14px;
  color: #111111;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 1.2rem;
}

.summar-content h5 i {
  color: #676666;
  font-size: 1.2rem;
}

.summar-content h5 strong {
}

.summar-content span {
  position: relative;
}

.summar-content span input {
  height: 37px;
  background: var(--white);
  padding: 0 2.8rem;
}

.summar-content span i {
  position: absolute;
  top: 0;
  left: 15px;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  color: #676666;
}

.summar-content a {
  font-size: 14px;
  color: var(--primary);
  text-transform: capitalize;
  font-weight: 400;
}

.sumary-map h3 {
  font-size: 14px;
}

.sumary-map iframe {
  box-shadow: 0 4px 4px 0 rgb(0 0 0 / 25%);
}

.select-vehicle {
  background: #f3f3f3;
  padding: 2.5rem 2rem;
  border: 1px solid #dcdcdc;
  margin: 2.5rem 0 0;
}

.vehicle-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid #dcdcdc;
  padding: 1rem 1rem;
}

.vhcl-flex {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.vhcl-flex figure {
  flex-shrink: 0;
}

.vhcl-flex h4 {
  font-size: 22px;
  color: #1e1e1e;
}

.vhcl-flex ul {
  display: flex;
  align-items: center;
}

.vhcl-flex ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: #1e1e1e;
  font-weight: 500;
  border-right: 1px solid var(--black);
  padding: 0 1rem;
}

.vhcl-flex ul li:first-child {
  padding-left: 0;
}

.vhcl-flex ul li:last-child {
  border: 0;
  padding-right: 0;
}

.vehcl-select {
  display: flex;
  align-items: center;
  gap: 20px;
}

.vehcl-select .themeBtn {
  padding: 0.9rem 2.74rem;
  border-radius: 0;
}

.vehcl-select span {
  font-size: 14px;
  color: #111111;
  font-weight: 400;
}

.select-vehicle h3 {
  font-size: 22px;
  color: #1e1e1e;
  text-transform: capitalize;
  margin: 0 0 0.45rem;
}

.select-vehicle p {
  font-size: 14px;
  color: #111111;
  margin: 0 0 1.4rem;
}

.vehicle-card + .vehicle-card {
  margin: 1rem 0 0;
}

.step-form {
  padding: 2.5rem 0;
}

.pasender-detail {
  margin: 1rem 0 0;
}

.pasender-detail label {
  font-size: 14px;
  color: #111111;
  font-weight: 500;
  margin: 0 0 8px;
  display: block;
}

#msform .pasender-detail label + input {
  width: 100%;
  height: 37px;
  border: 1px solid #dcdcdc;
  padding: 0 10px;
  margin: 0 0 1.3rem;
}

.number {
  display: flex;
  align-items: center;
  margin: 0 0 1.3rem;
}

.number span.minus,
.number span.plus {
  width: 37px;
  height: 37px;
  border: 1px solid #dcdcdc;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

#msform .number input {
  height: 37px;
  margin: 0;
  font-weight: 500;
  padding: 0 16px;
}

#msform .pasender-detail a.onboard {
  font-size: 14px;
  color: var(--primary);
  font-weight: 400;
  display: inline-block;
  margin: 0 0 1rem;
}

.pasender-detail textarea {
  height: 136px;
  resize: none;
}

.pasender-detail textarea + span {
  font-size: 14px;
  color: #111111;
  font-style: italic;
  display: block;
  margin: 0 0 1rem;
}

.count {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.count input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #d9d9d9;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.count:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.count input:checked ~ .checkmark {
  background-color: var(--primary);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.count input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.count .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.check-list {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 2rem;
}

.check-list label.count {
  margin: 0;
  display: flex;
  align-items: center;
}

.trip-card {
  background: var(--white);
  margin-bottom: 2rem;
}

.trip-card h4 {
  background: #111111;
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  padding: 1rem 2rem;
}

.trip-content {
  padding: 1rem 2rem;
}

.trip-content h5 {
  color: #1e1e1e;
  font-size: 1.125rem;
  margin: 0 0 0.6rem;
}

.trip-date figure {
  display: flex;
  align-items: center;
  gap: 13px;
  /* border-bottom: 1px solid #B6B6B6; */
  /* padding: 16px 0; */
}

.trip-date figure h5 {
  margin: 0 0 5px;
}

.trip-date figure span {
  font-size: 14px;
  color: #676666;
  font-weight: 400;
}

.trip-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #b6b6b6;
  padding: 16px 0;
}

.trip-date:last-child {
  padding: 30px 0;
  border: 0;
}

.charges-total h3 {
  background: #111111;
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  padding: 1rem 2rem;
}

.charges-total {
  background: var(--white);
}

.charges-content {
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.charges-content h4 {
  font-size: 14px;
  color: #1e1e1e;
  font-weight: 400;
}

.charges-content h5 {
  font-size: 1.125rem;
  color: #1e1e1e;
}

.charges-content span {
  font-size: 33px;
  color: #676666;
  font-weight: 600;
}

.pasender-detail.promo-detal span {
  gap: 1rem;
  display: flex;
  align-items: center;
}

.pasender-detail.promo-detal span input {
  height: 37px;
  margin: 0 !important;
  padding: 0 10px;
}

.pasender-detail.promo-detal span a {
  font-size: 14px;
  color: var(--primary);
  text-transform: capitalize;
  font-weight: 400;
}

.pasender-detail.promo-detal {
  margin: 1rem 0 1.5rem;
}

.paymnt-card {
  margin: 1rem 0 1rem;
}

.paymnt-card span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.paymnt-card span div {
  position: relative;
  /* display: flex; */
  /* align-items: center; */
}

#msform .paymnt-card span div input {
  margin: 0;
  height: 37px;
  padding-left: 3rem;
  text-transform: capitalize;
  width: 390px;
}

.paymnt-card span div img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 16px;
}

#msform .paymnt-card span div + input {
  margin: 0;
  height: 37px;
  text-transform: capitalize;
  padding: 0 16px;
}

.promo-code a.paybtn {
  background: var(--white);
  border: 1px solid #383838;
  display: block;
  text-align: center;
  font-size: 14px;
  color: #111111;
  font-weight: 500;
  text-transform: capitalize;
  padding: 10px 0;
}

.promo-code a.paybtn + a.paybtn {
  border: 0;
  margin: 1rem 0 0;
}

.promo-code .total {
  font-size: 22px;
  color: #717171;
  font-weight: bold;
  display: block;
  margin: 1rem 0 1rem;
}

.promo-code button.themeBtn {
  padding: 0.9rem 2.74rem;
  border-radius: 0;
  border: 0;
}

/* step form css end */
#progressbar li:last-child {
  flex: unset;
}

.trip-content.trp-adult h5 {
  border-bottom: 1px solid #b6b6b6;
  padding: 0 0 1rem;
}

.charges-total-ad-b-rate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 19rem;
  border-bottom: 1px solid #b6b6b6;
  padding: 0 0 1rem;
}

.charges-total-ad-b-rate h4 {
  color: #676666;
  font-size: 1.25rem;
  font-weight: 600;
}

.charges-total-ad-t {
  display: flex;
  gap: 2.2rem;
  padding: 0 0rem 0 2rem;
}

.charges-total-ad-t h2 {
  font-size: 2.0625rem;
  font-weight: 500;
  text-transform: capitalize;
}

.charges-total-ad-t h3 {
  background: 0;
  color: #676666;
  font-size: 2.0625rem;
  font-weight: 600;
}

.charges-total-ad-t p {
  font-size: 0.875rem;
  color: #1e1e1e;
  margin-bottom: 3rem;
}

.unconf {
  display: flex;
  gap: 8rem;
  border-bottom: 1px solid #b6b6b6;
  padding: 0 0 0.8rem;
}

.unconf h5 span {
  font-weight: 300;
}

.unconf h6 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 400;
  background: var(--primary);
  padding: 0.4rem;
}

.journey {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0.5rem 0 0;
}

article {
  display: none;
}

article.on {
  display: block;
}

.way-booking {
  border: 3px solid var(--primary);
  background: var(--black);
  padding: 3rem 2rem;
  height: 100%;
  padding-right: 3rem;
}

.book-taxi {
  text-align: left;
  margin: 0 0 1.5rem;
}

.book-taxi h2 {
  font-size: 30px;
  color: var(--white);
  font-weight: bold;
  text-transform: capitalize;
}

.book-taxi p {
  font-size: 14px;
  color: #979797;
  font-weight: 500;
  margin: 0;
}

.way-tb {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0 0 1.2rem;
}

.way-tb span {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.way-tb label {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  font-weight: 500;
  display: block;
  text-transform: capitalize;
}

.way-form .way-tb span input {
  margin: 0 !important;
}

article.form-strt span {
  position: relative;
}

article.form-strt span input {
  margin: 0 !important;
  width: 100%;
  height: 53px;
  background: #5c5c5c;
  border: 0;
  text-transform: capitalize;
  font-weight: 400;
  padding: 0 37px;
  border: 1px solid #8f8e8e !important;
  margin: 0 0 0.6rem !important;
  color: #fff !important;
}

article.form-strt span input::placeholder {
  color: #fff;
}

article.form-strt span img {
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
}

article.form-strt span select {
  width: 100%;
  height: 53px;
  background: #5c5c5c;
  border: 0;
  text-transform: capitalize;
  font-weight: 400;
  padding: 0 50px;
  color: var(--white);
  appearance: none;
}

article.form-strt span input[type="datetime-local"] {
  color: var(--white);
  padding: 0 14px;
}

article.form-strt span input[type="datetime-local"]::placeholder {
  color: #fff !important;
}

article.form-strt .themeBtn {
  padding: 0rem 1.6875rem;
  border: 0;
  border-radius: 0;
  height: 53px;
}

.form-strt .col-md-6 {
  padding-right: 0;
}

.form-strt .col-md-5,
.form-strt .col-md-4,
.form-strt .col-md-3 {
  padding-right: 0;
}

figure.book-img {
  border: 3px solid var(--primary);
}
.terms-para p{
  margin-top: 25px;
}
.terms-para h2{
  margin-top: 10px;
}

.serviesp-wrap h3 {
  font-size: 2rem;
  text-transform: capitalize;
  font-weight: bold;
}

.serviesp-wrap p {
  margin-bottom: 1rem;
}

.serviesp-wrap .themeBtn {
  padding: 1rem 2.5rem;
}

.servicepage-section .row + .row {
  margin-top: 2rem;
}
/* .servicepage-section figure img {
  height: 550px;
  object-fit: cover;
  border-radius: 15px;
} */
