@import url('../../css2-1');

:root {
  --theme-color: #061A3A;
  --theme-color2: #ff6700;
  --second-color: #FFa20a;
  --font-family: "Signika Negative", sans-serif;
  --transition: 0.3s linear;
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box; 
  font-family: var(--font-family);
}
html,body{
  overflow-x: hidden;
}
a{
  text-decoration: none;
}
/*scroll*/
::-webkit-scrollbar-track{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: #F5F5F5;
}

::-webkit-scrollbar
{
  width: 6px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
  background-color: var(--theme-color);
}
.form-control:focus{
  box-shadow: none;
  border-color: var(--theme-color);
}
/*===================================================
BUTTONS
===================================================*/
.btn-theme {
  position: relative;
  border-radius: 7px;
  background: var(--theme-color2);
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 15px 30px;
  font-weight: 600;
}

.btn-theme:after {
  content: " ";
  top: 0;
  width: 0%;
  height: 100%;
  background: var(--theme-color);
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
  border-radius: 5px;
}

.btn-theme:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.btn-theme span {
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}

.btn-theme:hover span {
  animation: scaleUp 0.3s ease-in-out;
  color: #fff;
}
.btn-theme:hover{
  box-shadow: none;
  transition: 0.4s all ease;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}


/*=======================================================
section title
=======================================================*/
.section-title{
  margin-bottom: 40px;
}
.section-title .title{
  font-size: 40px;
  font-weight: bold;
  text-transform: capitalize;
}
.section-title .progress{
  width: 10%;
  height: 6px;
}
.section-title.text-center .progress{
  margin: auto;
}
.section-title .progress-bar,.widget-title .progress-bar{
  width: 100%;
  background-color: var(--theme-color);
  background-size: var(--bs-progress-height) var(--bs-progress-height);
  /*background-image: linear-gradient(45deg, rgb(255 255 255 / 80%) 25%, transparent 25%, transparent 50%, 
    rgb(255 255 255 / 80%) 50%, 
    rgb(255 255 255 / 80%) 75%, transparent 75%, transparent);*/
  }

/*======================================================
header
======================================================*/
header{
  background-color: #fff;
  border-bottom: 2px solid var(--theme-color2);
}
header .navbar-nav a{
  padding: 30px 20px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  transition: 0.2s linear;
}
header .navbar-nav a:hover{
  color: var(--theme-color2);
}
.header-social{
  display: flex;
  gap: 10px;
}
.header-social a{
  width: 35px;
  height: 35px;
  border-radius: 4px;
  display: inline-block;
  background-color: var(--theme-color2);
  text-align: center;
  line-height: 35px;
  color: #fff;
}
/*header .navbar-brand::after {
  border-radius: 50%;
  content: "";
  height: 100px;
  left: 0;
  position: absolute;
  top: 2px;
  width: 115px;
  z-index: 10;
  background-color: var(--theme-color);
}*/
.navbar-brand{
  display: flex;
  align-items: center;
}
.navbar-brand span{
  position: relative;
  z-index: 1000;
  display: inline;
  padding-left: 18px;
  font-size: 21px;
  font-weight: 800;
}
.logo-style{
  width: 350px;
  background: var(--theme-color2);
  box-shadow: 0px 4px 2.5px rgba(0, 0, 0, 0.25);
  color: var(--main-color);
  position: relative;
  top: 0px;
  padding: 6px 0;
  -webkit-clip-path: polygon(0 0, calc(103% - 100px) 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, calc(103% - 100px) 0%, 100% 100%, 0% 100%);
  left: -12px;
}
.navbar-toggler{
  position: absolute;
  right: 8px;
  top: 10px;
}
.navbar-toggler-icon{
  font-size: 30px;
  color: var(--theme-color);
}
.navbar-toggler-icon i{
  color: var(--theme-color);
}
.logo-style img{
  display: inline;
  left: 0;
  position: relative;
  top: 0;
  width: 63px;
  left: 20px;
  height: 63px;
  object-fit: cover;
  z-index: 100;
  background-color: #fff;
  border-radius: 50%;
}
/*
.navbar-brand > img {
  display: block;
  left: 0;
  position: relative;
  top: 0;
  width: 63px;
  height: 63px;
  object-fit: cover;
  z-index: 100;
  background-color: #fff;
  border-radius: 50%;
}*/
.navbar-nav .menu{
  position: relative;
  transition: var(--transition);
}
.navbar-nav .menu i{
  font-size: 16px;
}
.navbar-nav li .dropdown_menu{
  border-top: 5px solid var(--theme-color2);
  border-bottom: 5px solid var(--theme-color2);
  display: none;
  min-width: 300px;
  background-color: #fff;
  position: absolute;
  top: 52px;
  left: 0;
  transition: var(--transition);
  max-height: 320px;
  line-height: 25px;
  overflow-y: auto;
  z-index: 1000;
}
.navbar-nav li .dropdown_menu a{
  display: block;
  padding: 7px 25px;
  font-size: 16px;
  line-height: 19px;
  color: #000;
  font-weight: 400;
}
.navbar-nav li .dropdown_menu a:hover{
  background-color: var(--theme-color);
  color: #fff;
}

/*=================================================
main slider
=================================================*/
.carousel-control-next, .carousel-control-prev{
  width: 5%;
}
/*#main-slider:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 42%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
  webkit-mask: url(../images/download.svg);
  mask: url(../images/download.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: -no-repeat;
  -webkit-mask-position: left top;
  mask-position: left top;
  -webkit-mask-size: cover;
  mask-size: cover;
  transform: rotate(180deg);
}*/
#main-slider img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(0.8);
}
.slider-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #fff;
  text-align: center;
  z-index: 1;
  letter-spacing: 0px;
  font-weight: 900;
  text-align: center;
  background: rgb(255 255 255 / 38%);
  padding: 70px 20px;
  line-height: 1.2;
  width: 40%;
  font-family: "Lobster", sans-serif;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.slider-caption .caption-title{
  font-family: "Anta", sans-serif;
}
.slider-caption .caption-subtitle{
  color: #000;
  background-color: #fff;
  border-radius: 50px 50px;
  padding: 10px 20px;
  font-weight: 600;
  display: inline-block;
  letter-spacing: 2px;
}
.slider-caption .caption-title{
  font-size: 4em;
  font-weight: bold;
  margin: 10px 0;
}
.slider-caption .caption-title span{
  /*
  -webkit-text-stroke-width: 1px;
  stroke-width: 1px;*/
  -webkit-text-stroke-color: var(--theme-color2);
  stroke: var(--theme-color2);
  color: var(--theme-color);
  position: relative;
  margin-left: 10px;
}
.slider-caption .caption-title span svg path {
  stroke: var(--theme-color);
  stroke-width: 140px;
  stroke: var(--theme-color);
  stroke-width: 140px;
  fill: none;
  opacity: 0;
  stroke-dasharray: 0 1500;
  transition: .3s;
  animation: headline-dash forwards;
  animation-duration: 1.2s;
  animation-iteration-count: 1;
}
@keyframes headline-dash{
  0% {
    stroke-dasharray: 0 1500;
    opacity: 1;
  }

  100% {
    stroke-dasharray: 1500 1500;
    opacity: 1;
  }
}
.slider-caption p{
  font-size: 1.3em;
  max-width: 79%;
}
.slider-caption .h2 {
  font-size: 70px;
  font-weight: 900;
}
.slider-caption .h2 span {
  color: var(--theme-color2);
}

/*=================================================
enquiry-form
=================================================*/
.enquiry-form form .form-title{
  margin-bottom: 20px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}
.taxi-booking__form__title {
  position: relative;
  top: -27px;
  margin-bottom: 3px;
  display: inline-block;
  padding: 17.5px 46px 17.5px 20px;
  background-color: var(--theme-color2);
    /*
    clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%);*/
    border-radius:  0px 10px 10px 0;
    z-index: 1;
  }
  .taxi-booking__form__heading {
    margin: 0;
    position: relative;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.03em;
    line-height: 1.25;
    text-transform: capitalize;
  }
  .taxi-booking__form__heading::before {
    content: "";
    width: 18px;
    height: 66px;
    background-color: var(--theme-color);
    position: absolute;
    top: 50%;
    left: -32px;
    border-radius: 5px 0 0 5px;
    transform: translateY(-50%);
  }

  .enquiry-form form .input-group-text{
    color: #a3a3a3;
    background-color: #fff;
    border-left: none;
  }
  .enquiry-form form .input-group:focus .input-group-text{
    border-color: var(--theme-color2);
  }
  .enquiry-form form .form-control{
    padding: 12px;
    border-right: none;
  }
  .enquiry-form form ::placeholder{
    color: var(--theme-color);
  }
  .enquiry-form form .form-control:focus{
    box-shadow: none;
    border-color: var(--theme-color2);
  }
  .enquiry-form form .btn-theme{
    width: 100%;
    padding: 10px;
    text-transform: uppercase;
  }
/*.enquiry-form form .btn-theme span{
  color: var(--theme-color);
}*/

/*===============================================
service section
===============================================*/
.service-section .col-lg-3{
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.service-box{
  background-color: #fff;
  padding: 20px;
  color: #000;
  transition: var(--transition);
  box-shadow: 0px 0px 7px 0px rgb(22 22 22 / 19%);
  border: none;
  border-radius: 10px;
}
.service-box:hover{
  filter: drop-shadow(5px 5px 6px rgba(0, 0, 0, 0.3));
  transition: 0.1s;
}

.service-box .service-img img{
  border-radius: 10px;
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.service-box .service-body{
  padding: 20px 0 0;
}
.service-box .service-icon{
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: var(--theme-color2);
  border-radius: 50%;
  font-size: 30px;
  text-align: center;
  margin: auto;
  margin-bottom: 30px;
}
.service-box .service-title{
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 15px;
}
.service-box p{
  font-size: 18px;
}
.service-box:hover{
  border-color: var(--theme-color2);
}
.service-box .btn-theme{
  padding: 9px 30px;
}

/*========================================================
about
========================================================*/
.about-img{
  position: relative;
}
.about-us .about-img img:first-child{
  width: 75%;
  display: block;
  margin-left: 110px;
  box-shadow: 0 20px 100px rgba(0,0,0,.1);
  border-radius: 6px;
}
.about-us .about-img img:last-child{
  width: 60%;
  box-shadow: 0 20px 100px rgba(0,0,0,.1);
  border-radius: 6px;
  margin-left: auto;
  display: block;
  margin-top: -190px;
}
.experience{
  width: 250px;
  height: 250px;
  background-color: var(--theme-color);
  border-radius: 50%;
  text-align: center;
  padding: 40px 0;
  color: #fff;
  position: absolute;
  top: 150px;
  left: 0;
  z-index: 1;
  border: 15px solid white;
}
.experience .year{
  font-size: 40px;
  font-weight: 800;
}
.experience p{
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}

.about-us .owl-nav button {
  height: 56px;
  width: 56px;
  border-radius: 50px;
  border: 1px solid #ccc!important;
}
.about-us .owl-nav button.owl-next {
  margin-left: 20px;
}
.about-slider{
  background: url(../images/bg/about.webp);
}


/*==============Taxi Service section=========*/
.taxi-service-section .card{
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  padding: 20px;
  border-radius: 20px;
  border: none;
}
.taxi-service-section .card .card-img{
  overflow: hidden;
  border-radius: 20px;
}
.taxi-service-section .card img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.3s linear;
}
.taxi-service-section .card .card-body{
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.taxi-service-section .card .card-title{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.taxi-service-section .card:hover img {
  -webkit-transform: scale(1.05) rotate(2deg);
  transform: scale(1.05) rotate(2deg);
  opacity: .8;
}


/*===============group buttons===============*/
.offer-action {
  text-align: center;
  background: var(--theme-color2) none repeat scroll 0 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  margin: 24px auto 0;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border-radius: 4px;
}

.offer-action a {
  display: inline-block;
  text-transform: uppercase;
  padding: 15px 15px;
  font-weight: 500;
  color: #fff;
  font-size: 14px;
  width: 49%;
  line-height: 10px;
}
.offer-action a i{
  padding-right: 5px;
}

.offer-action:after {
  position: absolute;
  content: "";
  width: 66%;
  height: 100%;
  background: var(--theme-color) none repeat scroll 0 0;
  right: -36px;
  z-index: -1;
  -webkit-transform: skewX(40deg);
  transform: skewX(40deg);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.offer-action:hover {
  background: var(--theme-color) none repeat scroll 0 0;
}

.offer-action:hover:after {
  background: var(--theme-color2) none repeat scroll 0 0;
}


.multi-button {
  margin-top: 15px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.multi-button a {
  width: 100%;
  display: inline-block;
  text-align: center;
}
.multi-button a i{
  padding-right: 5px;
}

/*================content-container=============*/
.content-container img{
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0px 0px 7px 0px rgb(22 22 22 / 19%);
  border-radius: 10px;
  padding: 10px;
}
.content-container .content-box{
  border: 1px solid #dfdfdf;
  padding: 20px;
  border-radius: 10px;
}
.content-container .content-box p{
  text-align: justify;
}
.content-container .title{
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 15px;
  line-height: 1.2;
}
.driver-details__info {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-top: 25px;
  margin-top: 29px;
  border-top: 1px solid #dfdfdf;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}
.driver-details__info li {
  display: flex;
  align-items: center;
  gap: 11px;
}
.driver-details__info li .driver-details__info__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F2F2F2;
  font-size: 16px;
  color: var(--theme-color2);
  border-radius: 50%;
  transition: all 500ms ease;
}
.driver-details__info li a {
  color: #838383;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: all 500ms ease;
}

/*=====================cab section=================*/
.tour-listing__card {
  position: relative;
  border-radius: 10px;
  border: 1px solid #EBE6DE;
  background-color: #ffffff;
  transition: all 500ms ease;
}
.tour-listing__card:hover {
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.06);
}
.tour-listing__card-image-box {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  z-index: 1;
  margin: -1px -1px 0;
}
.tour-listing__card-image-box img{
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.tour-listing__card-image {
  display: block;
  width: 100%;
  border-radius: 10px 10px 0 0;
  transition: all 500ms ease;
}
.tour-listing__card:hover .tour-listing__card-image {
  transform: scale(1.1);
}

.tour-listing__card-image-overlay {
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgb(4 40 72 / 33%);
  z-index: 1;
  border-radius: 10px 10px 0 0;
  transition: all 500ms ease;
}
.tour-listing__card:hover .tour-listing__card-image-overlay {
  top: 0;
  height: 100%;
}
.tour-listing__card-content {
  padding: 30px;
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .tour-listing__card-content {
    padding: 32px 25px 25px;
  }
}
@media (max-width: 375px) {
  .tour-listing__card-content {
    padding: 32px 20px 20px;
  }
}
@media (max-width: 360px) {
  .tour-listing__card-content {
    padding: 32px 15px 20px;
  }
}

.tour-listing__card-title {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 1px;
  font-weight: bold;
  color: #000;
}
.tour-listing__card-title:hover {
  color: var(--theme-color);
}
.tour-listing__card-title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.tour-listing__card-title a:hover {
  background-size: 100% 1px;
}
.tour-listing__card-text {
  line-height: 24px;
  margin-bottom: 18px;
}
.tour-listing__card-inner-content {
  position: relative;
  padding: 17px 20px 15px;
  margin-top: 18px;
  background-color: #FAF5EE;
  border-radius: 10px;
  transition: all 400ms ease-in-out;
  z-index: 1;
}
.tour-listing__card-inner-content::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--theme-color);
  z-index: 1;
  border-radius: 10px 10px 0 0;
  transition: all 500ms ease;
  border-radius: 10px;
  z-index: -1;
}
.tour-listing__card:hover .tour-listing__card-inner-content::after {
  top: 0;
  height: 100%;
}

.tour-listing__card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
.tour-listing__card-bottom-left {
  display: flex;
  align-items: center;
}
.tour-listing__card-day {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.tour-listing__card-day span {
  position: relative;
  top: -1px;
  font-size: 14px;
  color: var(--theme-color);
  margin-right: 9px;
  transition: all 0.4s ease-in-out;
}
.tour-listing__card:hover .tour-listing__card-day span {
  color: #ffffff
}
.tour-listing__card-day-text {
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}
.tour-listing__card:hover .tour-listing__card-day-text {
  color: #ffffff
}

.tour-listing__card-price {
  line-height: 1;
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
  color: #000;
  font-weight: bold;
}
.tour-listing__card:hover .tour-listing__card-price {
  color: #ffffff;
}
.tour-listing__card .multi-button .btn-theme {
  padding: 10px;
}

/*======================footer===================*/
.footer {
  background: linear-gradient(rgba(4, 40, 72, 0.8), rgba(4, 40, 72, 0.8)), url(../images/bg/footer.jpg);
  background-size: cover;
  background-position: center;
  color: rgb(255 255 255 / 74%);
  border-top: 1px solid var(--theme-color2);
  border-bottom: 1px solid var(--theme-color2);
  position: relative;
}
.main-footer__pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  background-repeat: repeat-x;
  animation: cloudMove 60s linear 0s infinite;
}
@keyframes cloudMove {
  0% {
    background-position: -1920px 100%;
  }
  100% {
    background-position: 0 100%;
  }
}

.footer-title {
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 5px;
  font-size: 25px;
  font-weight: 700;
}
.footer_list, .contact_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer_list a, .contact_list a {
  color: #fff;
  display: block;
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
}
.footer_list a:before {
  content: '\f061';
  font: var(--fa-font-solid);
  padding-right: 10px;
  color: var(--theme-color2);
  position: absolute;
  top: 8px;
  left: 0;
}
.contact_list a i {
  margin-right: 10px;
  display: inline-block;
  background: var(--theme-color2);
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
}
.contact_list a {
  padding-left: 40px;
  margin-bottom: 10px;
}
.footer .progress-bar {
  width: 100%;
  background-color: #fff;
  background-size: var(--bs-progress-height) var(--bs-progress-height);
/*  background-image: linear-gradient(45deg, var(--theme-color) 25%, transparent 25%, transparent 50%, var(--theme-color) 50%, var(--theme-color) 75%, transparent 75%, transparent)*/
}
.footer .progress {
  width: 30%;
  height: 6px;
  margin-bottom: 20px;
}

.copyright{
  padding: 7px 0;
  background-color: var(--theme-color);
  color: #fff;
  text-align: center;
}
.copyright p a{
  color: var(--theme-color2);
}

/*breadcrumbs*/
.sub-banner {
  background-image: linear-gradient( rgba(0, 0, 0, 0.5) , rgba(0, 0, 0, 0.5)),url(../images/breadcrumbs/common.webp);
  background-size: cover;
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
  font-family: var(--font-family);
}

.sub-banner .breadcrumb-area {
  letter-spacing: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
}

.sub-banner .breadcrumb-area .h1 {
  margin: 0 0 5px;
  font-weight: 700;
  color: #fff;
  font-size: 30px;
  text-transform: uppercase;
}

.sub-banner .breadcrumbs li {
  display: inline-block;
  list-style: none;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.sub-banner .breadcrumbs li a{
  color: #fff;
}

.sub-banner .breadcrumbs .active {
  margin-left: 3px;
  color: #fff;
}

.sub-banner .breadcrumbs .active:before {
  content: "/";
  font-family: "font awesome 6 free";
  font-size: 16px;
  margin-right: 7px;
  font-weight: 600;
}

/*=============contact section======*/
.contact-section .card{
  padding: 30px;
  border-radius: 20px;
  flex-direction:row;
  align-items: center;
  margin-bottom: 30px;
  border: none;
}

.contact-section .card .card-icon{
  width: 23%;
}
.contact-section .card .card-body{
  width: 70%;
  padding: 0;
}
.contact-section .card i{
  background-color: var(--theme-color);
  font-size: 35px;
  color: #fff;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 10px;
  text-align: center;
}
.contact-section .card-title{
  font-size: 25px;
  font-weight: 600;
}
.contact-section .card p{
  margin-bottom: 0;
  font-size: 15px;
}
.contact-section .card.bg-white{
  background-color: #fff;
  color: #000;
}

/*=============contact-form-section============*/
.contact-form-section .contact-box{
  box-shadow: rgba(100,100,111,.2)0 7px 29px;
  border-radius: 20px;
}
.contact-form-section img{
  width: 100%;
  height: 100%;
  border-radius: 20px 0 0 20px;
  object-fit: cover;
}
.contact-form-section iframe{
}
.contact-form-section form{
  padding: 30px;
  border-radius: 0 20px 20px 0;
}
.contact-form-section form .form-control{
  margin-bottom: 15px;
  padding: 15px;
}
.contact-form-section form .form-title{
  font-size: 25px;
  color: #000;
  margin-bottom: 15px;
  background-color: transparent;
}
.contact-form-section form label{
  color: #fff;
}
.contact_details{
  background-color: #f1f1f1;
  padding: 30px;
  height: 100%;
  border-radius: 0 20px 20px 0;
}
/*service page*/
.service-page .contentBox img{
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
}
.service-page .contentBox h3,.service-page .contentBox .h3{
  font-weight: 600;
  margin-bottom: 20px;
}
.service-page .contentBox p{
  text-align: justify;
}
.service-page .contentBox table img{
  width: 150px;
  margin-right: 10px;
}
/*sidebar*/
.widget_service_categories {
  padding: 20px;
  background-color: #e9f5f6;
  border-radius: 8px;
  margin-bottom: 25px;
}
.widget_service_categories ul, .widget_service_categories ol {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  padding: 0;
}
.widget_service_categories ul li:first-child, .widget_service_categories ol li:first-child {
  padding-top: 0;
}
.widget_service_categories ul li {
  border: 0;
  padding-bottom: 10px;
}
.widget_service_categories ul li.active a {
  background: var(--theme-color);
  color: #ffffff;
}
.widget_service_categories ul li a {
  background: #fff;
  border-radius: 8px;
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #0e3440;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  position: relative;
  text-transform: capitalize;
  transition: all 0.5s ease-out;
}

.widget_service_categories ul li a:hover {
  background: var(--theme-color);
  color: #ffffff;
}
.widget-title .title{
  color: var(--theme-color);
  margin-bottom: 5px;
  font-size: 25px;
  font-weight: bold;
  text-transform: capitalize;
}
.widget-title .progress{
  width: 30%;
  height: 6px;
  margin-bottom: 20px;
}

/*chardham page*/
.booking-form-wrap {
  border-radius: 10px;
  background: linear-gradient(125deg, rgba(99, 171, 69, 0.1) 0%, rgba(251, 176, 59, 0.1) 100%);
  border-radius: 5px;
  padding: 25px;
}
.package-details-area h4 {
  color: #000;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.75px;
  margin-bottom: 10px;
  padding-top: 10px;
}
.form-inner {
  line-height: 1;
}

.mb-20 {
  margin-bottom: 20px;
}
.form-inner label {
  color: #5d5b58;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  line-height: 1;
  margin-bottom: 7px;
}
.form-inner label span {
  color: red;
  font-size: 16px;
}
.form-inner input {
  width: 100%;
  border-radius: 0;
  background: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 400;
  padding: 10px 20px;
  height: 50px;
  border: 1px solid #eee;
}

.form-inner textarea {
  width: 100%;
  border-radius: 5px;
  background: #fff;
  color: #5e5e5e;
  border: 1px solid #eee;
  outline: none;
  font-size: 13px;
  font-weight: 400;
  padding: 20px 25px;
  min-height: 150px;
}
.service-page ol{
  padding-left: 20px;
}
.service-page ol li{
  margin: 5px 0;
}

/*=================testimonial=================*/
.testimonial-section {
    /*background: url(../images/bg/testimonial.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;*/
  }
  .testimonial-item-two {
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    background: #fff;
    padding: 60px 35px 40px;
    position: relative;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .testimonial-icon-two {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--theme-color);
    font-size: 30px;
    color: #fff;
    line-height: 1;
    position: absolute;
    left: 35px;
    top: -40px;
  }
  .testimonial-content-two p {
    margin-bottom: 25px;
  }

  .testimonial-avatar-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .testimonial-avatar-info .avatar-thumb {
    width: 40px;
    flex: 0 0 40px;
    margin-right: 8px;
  }
  .testimonial-avatar-info .avatar-thumb img {
    border-radius: 50%;
  }
  .testimonial-avatar-info .avatar-content {
    text-align: left;
  }
  .testimonial-avatar-info .avatar-content .title {
    margin-bottom: 5px;
    font-size: 20px;
  }
  .testimonial-avatar-info .avatar-content p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.2;
  }
  .text-second{
    color: var(--theme-color2);
  }

/*cab section*/
.cab-service-section{
  background: linear-gradient(rgba(255, 255, 255, 0.9),rgba(255, 255, 255, 0.9)),url(../images/bg/pattern.webp);
  background-size: cover;
}
.taxi-card {
  position: relative;
  background-color: #141414;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 13px 20px 9px rgba(0, 0, 0, 0.09);
  transition: all 400ms linear;
}
.taxi-card:hover {
  transform: translateY(-5px);
}
.taxi-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 8px;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  mix-blend-mode: lighten;
  opacity: 0.5;
  background-color: #fff;
}
.taxi-card__inner {
  position: relative;
  z-index: 1;
}
.taxi-card__image {
  position: relative;
  border: 4px solid #f4f4f4;
  border-radius: 8px 8px 0 0;
}
.taxi-card__image img {
  width: 100%;
  height: 250px;
  border-radius: 2px 2px 0 0;
  object-fit: cover;
}
.taxi-card__price {
  margin: 0;
  display: inline-block;
  padding: 4.5px 14.5px;
  position: absolute;
  top: 30px;
  left: 30px;
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 1.5;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  background-color: #141414;
  transition: all 500ms ease;
}
.taxi-card:hover .taxi-card__price {
  color: #141414;
  background-color: #FFFFFF;
}
.taxi-card__content {
  padding: 23px 30px 30px;
  text-align: center;
  background: rgba(50, 50, 255, 0.1);
  border-radius: 0 0 8px 8px;
}
.taxi-card__title {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 24px;
  color: #FFFFFF;
  line-height: normal;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-family: "Anta", sans-serif;
}
.taxi-card__company {
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  text-transform: capitalize;
}
.taxi-card__list {
  margin-bottom: 30px;
  padding-top: 21px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(223, 223, 223, 0.25);
  border-bottom: 1px solid rgba(223, 223, 223, 0.25);
}
.taxi-card__list li + li {
  margin-top: 12px;
}
.taxi-card__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-transform: capitalize;
}
.taxi-card .multi-button .btn-theme{
  padding: 10px;
}

.btn-header{
  border-radius: 30px !important;
  padding: 4px 5px !important;
  color: #fff !important;
  background-color: var(--theme-color2);
  border: 3px solid var(--theme-color2);
  display: flex;
  align-items: center;
  gap: 5px;
}
.btn-header i{
  border: 1px solid #fffbfb;
  border-radius: 50%;
  color: #ffffff;
  width: 26px;
  height: 26px;
  line-height: 27px;
  text-align: center;
  font-size: 14px !important;
}
.btn-header:after{
  background-color: #000;
}

/*book now*/
.bookingform{
  box-shadow: 0px 6px 30px rgba(7, 36, 95, 0.08);
  border-radius: 10px;
}
.booking-page .form-control,.booking-page .form-select {
  padding: 10px;
}
.booking-page label{
  color: #000;
  margin-bottom: 5px;
}
.booking-page label span{
  color: #ff0000;
  padding-left: 5px;
}
.booking-page .enquiry-form{
  margin-bottom: 0!important;
}
.booking-page .enquiry-form form{
  background-color: #e7e7e7;
  box-shadow: none;
  border-radius: 10px 0 0 10px;
}
.booking-page .enquiry-form form .form-title{
  color: #000;
}
.booking-page img{
  border-radius: 0 10px 10px 0;
}
.booking-page .enquiry-form form .btn-theme{
  border: none;
  padding: 13px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-one {
  position: relative;
  background-color: #F2F2F2;
}
.about-one--about {
  background-color: #FFFFFF;
}
.about-one--about .about_sec_padding{
  background: #FFFFFF;
  box-shadow: 0px -6px 49px rgba(0, 0, 0, 0.22), 0px 4px 4px rgba(0, 0, 0, 0.22);
  border-radius: 20px;
  border: 5px solid var(--theme-color2);
  padding: 0px;
  padding: 10px 20px;
  position: relative;
}
.about-one__content .btn-theme{
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 9px 30px;
}
.about-one__bg {
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.6;
  mix-blend-mode: overlay;
}
.about-one .container {
  position: relative;
  z-index: 1;
}
.about-one__image {
  position: relative;
}
.about-one__image__one {
  position: relative;
  width: 100%;
}

/*
.about-one__image__one::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50px;
  left: -50px;
  border: 3px solid var(--theme-color2);
}
@media (max-width: 1199px) {
  .about-one__image__one::before {
    top: 25px;
    left: -25px;
  }
}*/
@media (max-width: 991px) {
  .about-one__image__one::before {
    top: 25px;
    left: -25px;
  }
}
@media (max-width: 575px) {
  .about-one__image__one::before {
    width: calc(100% - 30px);
    left: -6px;
    animation: zumpBottom 2s linear infinite;
  }
}
.about-one__image__two {
  position: relative;
  margin-left: 170px;
  margin-top: -279px;
  width: 100%;
  max-width: 370px;
  z-index: 2;
  box-shadow: 0px 4px 60px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1199px) {
  .about-one__image__two {
    margin-left: 35px;
    margin-top: -160px;
  }
}
@media (max-width: 991px) {
  .about-one__image__two {
    margin-left: 170px;
    margin-top: -279px;
  }
}
@media (max-width: 767px) {
  .about-one__image__two {
    margin-left: 130px;
  }
}
@media (max-width: 575px) {
  .about-one__image__two {
    margin: 70px 0 0 0;
  }
}
.about-one__image__two__img {
  border: 10px solid #FFFFFF;
}
.about-one__image__one__img, .about-one__image__two__img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  border-radius: 10px;
  /* border: 10px solid #fff;*/
}
.about-one__image__shape-one {
  position: absolute;
  top: -41px;
  right: -31px;
  animation: zumpBottom 2s linear infinite;
}
@media (max-width: 575px) {
  .about-one__image__shape-one {
    display: none;
  }
}
.about-one__image__shape-two {
  position: absolute;
  left: -35px;
  bottom: -37px;
  animation: zump 2s linear infinite;
}
@media (max-width: 575px) {
  .about-one__image__shape-two {
    display: none;
  }
}
.about-one__experience {
  position: relative;
  position: absolute;
  left: 46px;
  bottom: 9.75px;
  z-index: 1;
}
@media (max-width: 375px) {
  .about-one__experience {
    left: 30px;
  }
}
.about-one__experience__inner {
  padding-bottom: 12px;
  text-align: center;
}
.about-one__experience__year {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.about-one__experience__text {
  margin: 0;
  font-size: 16px;
  color: #000000;
  line-height: 1.75;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
@media (max-width: 375px) {
  .about-one__experience__text {
    font-size: 14px;
  }
}
.about-one__experience__shape {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
}
.about-one__experience__shape__one, .about-one__experience__shape__two {
  position: relative;
  width: 258px;
  height: 169px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background-color: var(--theme-color2);
}
@media (max-width: 375px) {
  .about-one__experience__shape__one, .about-one__experience__shape__two {
    width: 230px;
  }
}
.about-one__experience__shape__one {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}
.about-one__experience__shape__two {
  left: -218px;
  background-color: #FFFFFF;
}
.about-one__content {
  margin-top: 29px;
}
@media (max-width: 991px) {
  .about-one__content {
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .about-one__content {
    margin-top: 0px;
  }
}
.about-one .sec-title {
  margin-bottom: 19px;
}
.about-one__sub-title {
  margin-bottom: 22px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.about-one__text-box {
  margin-bottom: 39px;
  border-bottom: 1px solid #DFDFDF;
}
.about-one__text {
  margin-bottom: 30px;
  letter-spacing: -0.03em;
  text-transform: capitalize;
}
.about-one__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 239px;
  animation: zumpBottom 2s linear infinite;
}
@media (max-width: 1599px) {
  .about-one__shape {
    max-width: 110px;
  }
}
@media (max-width: 1399px) {
  .about-one__shape {
    display: none;
  }
}

@keyframes zumpBottom {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

/*cab services*/
.taxi-service-section{
  position: relative;
}
.taxi-service-section:before{
  content: '';
  background-image: url(../images/bg/services_bg.webp);
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 56%;
  z-index: -1;
}
/*.services-item-three {
  margin-bottom: 40px;
}*/
.services-thumb-three {
  border-radius: 20px;
  overflow: hidden;
}
div.services-thumb-three img {
  transform: scale(1);
  transition: .3s ease;
  width: 100%;
  min-height: 300px;
  object-fit: cover;
}
.services-item-three:hover .services-thumb-three img {
  transform: scale(1.1);
}
.services-content-three {
  background: #fff;
  margin: -130px 20px 0;
  padding: 55px 18px 35px;
  position: relative;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  z-index: 1;
}
.services-content-three .icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 0;
  border-radius: 50%;
  background: var(--theme-color);
  color: #fff;
  position: absolute;
  left: 25px;
  top: -45px;
}
.services-content-three:hover svg{
  transform: rotateY(360deg);
  transition: 0.7s ;
}
.services-content-three .icon svg {
  width: 36px;
}
.services-content-three .title {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}
.services-content-three p {
  margin-bottom: 30px;
}
.services-content-three .btn {
  background: var(--tg-gray-five);
  color: var(--tg-blue);
  padding: 18px 20px;
}
.services-content-three .btn:hover {
  color: #fff;
}

/*float  buttons*/
.float{
  position:fixed;
  width:60px;
  height:60px;
  bottom:40px;
  right:40px;
  border: 10px solid #25d366;
  background-color:#fff;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  z-index:100;
  line-height: 39px;
  z-index: 100000;
}

.float-call{
  border: 10px solid var(--theme-color);
  left: 40px;
  font-size: 22px;
  line-height: 43px;
}

.my-float{
  margin-top:5px;
  color: #25d366;
}
.my-call{
  margin-top:5px;
  color: var(--theme-color);
}
.footer-logo{
  width: 110px;
  position: relative;
  height: 110px;
  object-fit: cover;
  margin: auto;
  border-radius: 50%;
}

/*footer popular routes*/
.popular-routes{
  padding: 30px 0;
    /*position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/route-bg.jpg);
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid var(--second-color);*/
  }
  .popular-routes .title{
    font-size: 25px;
    font-weight: 600;
    color: #000;
    position: relative;
    padding-bottom: 5px;
  }
  .popular-routes .progress {
    width: 10%;
    height: 6px;
    margin-bottom: 20px;
    background-color: var(--theme-color);
  }
  .popular-routes ul{
    list-style: none;
    padding-left: 0;
    border: 1px solid #eaeaea;
    border-right: 0;
  }
  .popular-routes ul:last-child{
    border: 1px solid #eaeaea;
  }
  .popular-routes ul li{
    width: 100%;
  }
  .popular-routes ul li a {
    border-bottom: 1px solid #eaeaea;
    color: #000;
    display: block;
    padding: 9px 10px;
    text-transform: capitalize;
  }


  #footer-logo{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
  }