@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
  --theme-color:#004300;
  --theme-color2: #FFFA00;
  --second-color:  #004300;
  --font-family: "DM Sans", 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: 5px;
  background: var(--second-color);
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 15px 30px;
}

.btn-theme:after {
  content: " ";
  top: 0;
  width: 0%;
  height: 100%;
  background: var(--theme-color2);
  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 {
  color: #000;
  animation: scaleUp 0.3s ease-in-out;
}

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

  50% {
    transform: scale(0.95);
  }

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


/*=======================================================
section title
=======================================================*/
.section-title{
  margin-bottom: 40px;
}
.section-title .sub_title{
  font-size: 20px;
  color: var(--second-color);
  font-weight: 600;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
}
.section-title .title{
  font-size: 40px;
  font-weight: bold;
  text-transform: capitalize;
  font-family:"Playfair Display", serif
}
.section-title .progress{
  width: 10%;
  height: 4px;
/*  display: none;*/
}
.section-title.text-center .progress{
  margin: auto;
}
.section-title .progress-bar,.widget-title .progress-bar{
  width: 100%;
  background-color: var(--second-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-color);
}
header .navbar-nav a{
  padding: 30px 30px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  font-family: "Playfair Display", serif;
  transition: 0.2s linear;
}
header .navbar-nav a:hover{
  color: var(--second-color);
  color: #fff;
}
.header-social{
  display: flex;
  gap: 10px;
}
.header-social a{
  width: 35px;
  height: 35px;
  border-radius: 4px;
  display: inline-block;
  background-color: var(--second-color);
  text-align: center;
  line-height: 35px;
  color: #fff;
}
header nav .btn-theme span{
  color: #fff;
  font-family: "Playfair Display", serif;
}
header nav .btn-theme{
  padding: 10px 20px !important;
  border-radius: 30px;
  color: #000;
  border: 2px solid #fff;
  background-color: var(--theme-color);
}
header nav .btn-theme:hover span{
  color: var(--theme-color2);
}
header nav .btn-theme:after{
  border-radius: 30px;
  background-color: var(--second-color);
}
/*header .navbar-brand::after {
  border-radius: 50%;
  content: "";
  height: 100px;
  left: 3px;
  position: absolute;
  top: 2px;
  width: 115px;
  z-index: 10;
  background-color: var(--theme-color);
}*/
.navbar-brand{
  display: flex;
  align-items: center;
}
.navbar{
  background: var(--second-color);
}
.navbar-brand span{
  position: relative;
  z-index: 1000;
  padding-left: 10px;
  font-size: 25px;
  font-weight: 800;
  color: #000;
}
.navbar-brand > img {
  display: block;
  left: 0;
  top: 0;
  width: 100px;
  top: 10px;
  border-radius: 50%;
  left: 30px;
  background: #fff;
  position: absolute;
  z-index: 100;
}
.navbar-nav .collapse{
  padding-right: 10px;
}
.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(--second-color);
  border-bottom: 5px solid var(--second-color);
  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;
  border-bottom: 1px solid #bababa;
}
.navbar-nav li .dropdown_menu a:hover{
  background-color: var(--theme-color);
  color: #fff;
}
.navbar-nav .nav-item{
  padding: 20px 0;
}

/*=================================================
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: #000;
  z-index: 1;
}*/
.slider_bottom_logo{
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  display: block;
  top: -44px;
  /* transform: translateX(-50%); */
  /* left: 50%; */
  margin-right: auto;
  margin-left: auto;
  width: 120px;
  height: 120px;
}
.slider_bottom_logo img{
  width: 100%;
  border-radius: 50%;
}

#main-slider img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(0.8);
}
.slider-caption {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: #fff;
  width: 50%;
  z-index: 1;
}
.slider-caption .caption-subtitle{
  color: #000;
  background-color: #fff;
  border-radius: 0px 50px 50px 0px;
  padding: 5px 10px 5px 10px;
  font-weight: 600;
  display: inline-block;
  letter-spacing: 2px;
}
.slider-caption .caption-title{
  font-size: 7em;
  font-weight: bold;
  margin: 30px 0;
}
/*.slider-caption .caption-title span{
  -webkit-text-stroke-width: 1px;
  stroke-width: 1px;
  -webkit-text-stroke-color: var(--theme-color);
  stroke: var(--theme-color);
  color: #fff;
  position: relative;
  margin-left: 10px;
}*/

.slider-caption .caption-title span svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  transform: translate(-50%, -50%);
  overflow: visible;
  z-index: -1;
}

.slider-caption .caption-title span svg path {
  stroke: var(--second-color);
  stroke-width: 140px;
  stroke: var(--second-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(--second-color);
}

/*=================================================
enquiry-form
=================================================*/
.enquiry-form form .form-title{
  margin-bottom: 12px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  font-family: "Playfair Display", serif;
}
.enquiry-form .upper i {
  font-size: 11px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-right: 10px;
  border-radius: 100%;
  text-align: center;
  color: #ffffff;
  background-color: var(--second-color);
}

.enquiry-form .upper {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.enquiry-form form .input-group-text{
  border-right: 0;
  background-color: #fff;
  color: var(--second-color);
}
.enquiry-form form .input-group:focus .input-group-text{
  border-color: var(--second-color);
}
.enquiry-form form .form-control{
  padding: 12px;
/*  border: 3px solid var(--theme-color);*/
border: 1px solid #dee2e6;
}
/*.enquiry-form form ::placeholder{
  color: var(--theme-color);
}*/
.enquiry-form form .form-control:focus{
  box-shadow: none;
  border-color: var(--second-color);
}
.enquiry-form input[type="time"]::-webkit-calendar-picker-indicator {
 background: none;
}
.enquiry-form form .btn-theme{
  width: 100%;
  padding: 10px;
  margin-top: 34px;
  padding: 13px 30px;
}
.enquiry-form form .btn-theme:hover span{
  color: #000;
}
/*.enquiry-form form .btn-theme span{
  color: var(--theme-color);
}*/
.form__title{
  font-family: "Playfair Display", serif;
  font-size: 20px;
  display: none;
}
/*===============================================
service section
===============================================*/
.service-box{
  background-color: var(--theme-color2);
  padding: 60px 25px 80px 25px;
  border-radius: 20px 20px 175px 175px;
  border: 4px solid var(--theme-color);
  color: #fff;
  text-align: center;
  transition: var(--transition);
}
.service-box .service-icon{
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: var(--second-color);
  border-radius: 50%;
  font-size: 30px;
  text-align: center;
  margin: auto;
  margin-bottom: 30px;
}
.service-box .service-title{
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 15px;
}
.service-box p{
  font-size: 18px;
}
.service-box:hover{
  border-color: var(--second-color);
}

/*========================================================
about
========================================================*/
.about-img{
  position: relative;
}
.about-us .about-img img:first-child{
  width: 60%;
  display: block;
  margin-left: 50px;
  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: 200px;
  height: 200px;
  background-color: var(--theme-color);
  border-radius: 50%;
  text-align: center;
  padding: 40px 0;
  color: #fff;
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 1;
}
.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;
  font-family: "Playfair Display", serif;
}

.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(--second-color) 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: 12px;
  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(--second-color) 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: 80%;
  display: block;
  margin: auto;
}
.content-container .content-box p{
  text-align: justify;
}

/*=====================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(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/bg/footer-bg.jpg);
  background-size: cover;
  background-position: center;
  color: rgb(255 255 255 / 74%);
  border-top: 1px solid var(--second-color);
  border-bottom: 1px solid var(--second-color);
  position: relative;
}
.footer-title {
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 5px;
  font-size: 25px;
  font-weight: 700;
}
.footer-title img{
  background: #fff;
  border-radius: 50%;
  width: 100px;
}
.footer_list, .contact_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .contact_list{
  padding: 7px 0;
}
.footer_list a, .contact_list a {
  color: #fff;
  display: block;
  padding: 5px 0;
  position: relative;
}
.footer_list a:before {
  content: '\f061';
  font: var(--fa-font-solid);
  padding-right: 10px;
  color: #fff;
}
.contact_list a i {
  margin-right: 10px;
  display: inline-block;
  background: #fff;
  text-align: center;
  width: 27px;
  height: 27px;
  margin-top: 5px;
  line-height: 27px;
  color: var(--theme-color);
  border-radius: 2px;
}

.footer .progress-bar {
  width: 100%;
  background-color: #fff;
  background-size: var(--bs-progress-height) var(--bs-progress-height);
}
.footer .progress {
  width: 30%;
  height: 2px;
  margin-bottom: 20px;
}

.copyright{
  padding: 7px 0;
  background-color: var(--theme-color);
  color: #000;
  text-align: center;
}
.copyright p a{
  color: #fff;
  font-weight: bold;
  font-size: 110%;
  text-decoration: underline;
}
.copyright p{
  color: #fff;
}
/*breadcrumbs*/
.sub-banner {
  background-image: linear-gradient( rgba(0, 0, 0, 0.5) , rgba(0, 0, 0, 0.5)),url(../images/services/friends-driving.jpg);
  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: 20px;
  border-radius: 20px;
  text-align:center;
  align-items: center;
  height: 100%;
  border: 1px dashed var(--second-color);
}
.contact-section .card:hover{
  transform: translateY(-10px);
  transition: 0.4s;
  border: 1px solid var(--second-color);
}
.contact-section .card:hover .card-icon{
  transform: rotateX(360deg);
  transition: 0.5s;
}
.contact-section .card-one{
  border: 1px dashed var(--theme-color);
}
/*.contact-section .card-one i{
  background-color: var(--theme-color);
}
.contact-section .card-two{
  border: 1px dashed var(--second-color);
}
.contact-section .card-two i{
  background-color: var(--second-color);
}*/
/*.contact-section .card-three{
  border: 1px dashed #138999;
}
.contact-section .card-three i{
  background-color: #138999;
}*/
.contact-section .card .card-icon{
  width: 30%;
}
.contact-section .card .card-body{
  width: 70%;
  padding: 0;
}
.contact-section .card i{
  font-size: 50px;
  color: var(--second-color);
  margin-bottom: 10px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  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 .contact-map{
  width: 100%;
  height: 100%;
  padding: 10px;
}
.contact-form-section iframe{
  width: 100%;
  height: 100%;
}
.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;
}

/*service page*/
.service-page .contentBox img{
  width: 100%;
  max-height: 450px;
  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;
}

/*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;
  font-family: "Playfair Display", serif;
}
.widget-title .progress{
  width: 30%;
  height: 9px;
  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;
}

/*footer social media*/

.footer .header-social{
  margin-top: 20px;
}
.footer .header-social a{
  background-color: #fff;
}
.footer .header-social a i{
  color:var(--second-color);
}
.footer-logo{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
}

/*service section*/
.service-section{
  background-image: url(../images/bg/service-bg.png);
}
.work-process__item .icon {
  width: 80px;
  height: 80px;
  color: #FFF;
  font-size: 50px;
  line-height: 80px;
  position: relative;
  background: var(--theme-color);
  margin-bottom: -60px;
}
.work-process__item .text {
  height: 100%;
  background: #FFF;
  padding: 100px 28px 20px 28px;
  box-shadow: 0px 4px 25px rgb(14 10 1 / 7%);
}
.work-process__item .text .title{
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

/*about images*/
.about-us{
  position: relative;
}
/*.about-us:after{
  top: -587px;
    content: "";
    left: -564px;
    z-index: -1;
    width: 2048.04px;
    height: 1285.06px;
    position: absolute;
      background-size: auto;
    background-repeat: no-repeat;
    animation: scale 3s linear infinite;
    background-image: url(../images/bg/about-bg.png);
}*/
.our-company__meida {
  overflow: hidden;
  position: relative;
}
.our-company__meida.border-radius {
  padding-bottom: 6px;
  border-radius: 20px 20px 0px 0px;
}
.our-company__meida.border-radius img{
  height: 509px;
  object-fit: cover;
}
@media (max-width: 575px) {
  .our-company__meida.border-radius {
    margin-top: 25px;
  }
}
@media (max-width: 575px) {
  .our-company__meida img {
    width: 100%;
  }
}
.our-company__meida .horizental-bar {
  left: 10px;
  width: 232px;
  height: 15px;
  bottom: 0px;
  max-width: 100%;
  position: absolute;
  background: var(--theme-color);
  animation: move-right 3s linear infinite;
}

.years-experience {
  background: var(--theme-color);
  padding: 20px 15px 31px;
  border-radius: 0px 0px 20px 20px;
}

.years-experience .title {
  color: #243342;
  font-size: 25px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}
.years-experience .number {
  font-size: 64px;
  font-weight: 700;
  line-height: 60px;
}
@media (max-width: 767px) {
  .years-experience .number {
    font-size: 45px;
  }
}
.years-experience .number sup {
  font-size: 40px;
  font-weight: 400;
  line-height: 60px;
}
@media (max-width: 767px) {
  .years-experience .number sup {
    font-size: 35px;
  }
}

@keyframes move-right {
  0% {
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(20px, 0);
    -o-transform: translate(20px, 0);
    transform: translate(20px, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes scale{
  0% {
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

/*taxi services*/
.services__three-item {
  position: relative;
  overflow: hidden
}

.services__three-item>img {
  width: 100%;
  filter: grayscale(100%);
  min-height: 450px;
  object-fit: cover
}

.services__three-item.page {
  box-shadow: 0px 25px 70px rgba(0,0,0,.08);
}

.services__three-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 60px 30px 30px;
  margin-right: 20px;
  z-index: 1
}

.services__three-item-content:after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: -15px;
  transform: matrix(.99,-.1,.12,.99,0,0);
  background: #fff;
  width: 100%;
  height: 101%;
  z-index: -1
}

.services__three-item-content-icon {
  background: var(--theme-color);
  width: 80px;
  height: 80px;
  text-align: center;
  border-radius: 6px;
  border: 4px solid #fff;
  position: absolute;
  top: -30px;
  right: 0;
  padding: 10px 0
}

.services__three-item-content-icon i {
  color: #fff;
  font-size: 50px;
  display: inline-block
}

.services__three-item-content .h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}

.services__three-item-content .h4 a {
  transition: .4s;
  color: #000;
}

.services__three-item-content .h4 a:hover {
  color: var(--theme-color)
}

.services__three-item-content.page {
  background: none
}

.services__three-item-content.page.services__three-item-content .h4 a:hover {
  color: var(--theme-color)
}

.services__three-item-content.page .services__three-item-content-icon {
  background: var(--theme-color)
}

.services__three-item-content.page .services__three-item-content-icon img {
  max-width: 50px
}

.services__three-item:hover img {
  filter: grayscale(0)
}

.services__three-item:hover .services__three-item-content-icon img {
  animation: rotateY .7s
}

/*testimonials*/
.testimonial__two-item {
  padding: 40px;
/*    box-shadow: 0px 10px 70px rgba(0,0,0,.1);*/
background-color: #fff;
}

.testimonial__two-item-top {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px
}
.testimonial__two-item-top .fa-quote-right{
  font-size: 60px;
  color: var(--theme-color);
}
.testimonial__two-item-top-reviews h6 {
  font-size: 17px;
  line-height: 27px
}
.testi_quotes{
  left: 8px;
  position: absolute;
  top: 8px;
  width: 42px;
}

.testimonial__two-item-top-reviews ul {
  padding: 0;
  margin: 0
}

.testimonial__two-item-top-reviews ul li {
  display: inline-block
}

.testimonial__two-item-top-reviews ul li i {
  color: var(--theme-color)
}

.testimonial__two-item-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #e7e7e7;
  padding: 20px;
  margin-top: 40px;
  border-radius: 6px;
  position: relative
}

.testimonial__two-item-bottom:before {
  content: "";
  position: absolute;
  left: 30px;
  top: -10px;
  transform: rotate(45deg);
  width: 20px;
  height: 20px;
  background: #fff;
  border-top: 1px solid #e7e7e7;
  border-left: 1px solid #e7e7e7
}

.testimonial__two-item-bottom img {
  max-width: 60px;
  border-radius: 50%
}

@media (max-width: 1399px) {
  .testimonial__area-item {
    padding:40px 30px 35px
  }

  .testimonial__area-item-icon {
    right: 30px;
    bottom: 40px
  }

  .testimonial__area-item-client {
    margin-bottom: 25px
  }

  .testimonial__area-item-reviews {
    margin-top: 25px
  }

  .testimonial__two-item {
    padding: 40px 30px
  }
}

@media (max-width: 991px) {
  .testimonial__two-item {
    padding:35px 25px
  }
}

@media (max-width: 359px) {
  .testimonial__area-item {
    padding:35px 30px 30px
  }

  .testimonial__area-item-icon {
    right: 30px;
    bottom: 35px
  }
}
/*    our fleet*/
.service_box_style_four .service_content {
  position: relative;
  padding: 0px 20px 20px 20px;
  box-shadow: 0px 0px 40px 0px rgba(0,0,0,.09);
  background: #fff;
  border-radius: 10px;
  text-align: center;
  margin-top: 20px;
}
.service_box_style_four .service_content .image_box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  top: -20px;
}
.service_box_style_four .service_content .image_box img {
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
  object-fit: cover;
}

.service_box_style_four .service_content .image_box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: -100%;
  left: 0;
  background: rgb(255 84 14 / 37%);
  opacity: 0;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.service_box_style_four .service_content .content_inner {
  position: relative;
  padding: 5px 15px;
}
.service_box_style_four .service_content .content_inner .h2{
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #000;
  margin-bottom: 8px;
}
.service_box_style_four .service_content .content_inner p {
  text-transform: uppercase;
  margin-bottom: 0px;
  font-size: 12px;
  font-weight: 500;
  color: var(--theme-color);
  line-height: 22px;
}
.service_box_style_four .service_content:hover .image_box span {
  background: var(--theme-color);
  color: #fff;
}
.service_box_style_four .service_content:hover .image_box::before {
  bottom: 0;
  opacity: 0.9;
}

.common-booking-form .enquiry-form{
  background: #fafafa;
  padding: 30px;
  border-radius: 10px;
  border: 4px solid var(--second-color);
}
.common-booking-form .col-lg-12, .col-lg-6{
  margin-top: 12px;
}
/*main slider*/
/*#main-slider::before {*/
/*    position: absolute;*/
/*    content: "";*/
/*    left: 0;*/
/*    bottom: -1px;*/
/*    background-image: url(../images/bg/banner-2-mask.png);*/
/*    z-index: 1;*/
/*    width: 100%;*/
/*    height: 58px;*/
/*    background-repeat: no-repeat;*/
/*    background-position: bottom;*/
/*    background-size: contain;*/
/*}*/

/*why choose us*/
.chose-item {
  padding: 30px 20px;
  margin-bottom: 30px;
  border-bottom: 2px solid #fff;
  border-bottom: 2px solid var(--second-color);
  box-shadow: 0 1px 94px 1px rgb(0 0 0 / 3%);
  text-align: center;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.chose-icon {
  margin: auto;
  display: flex;
  width: 70px;
  height: 70px;
  background-color: transparent;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 33px;
  margin-bottom: 25px;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.chose-icon::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
/*    border: 1px dashed var(--theme-color);*/
border-radius: 10px;
transition: all 0.3s ease-in-out;
    /*animation-name: rotate-infinite;
    -webkit-animation-name: rotate-infinite;
    -webkit-animation-duration: 8s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;*/
    background-color: var(--second-color);
    z-index: -1;
  }
  .chose-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: all 0.3s ease-in-out;
  }

  @keyframes rotate-infinite{
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

/*our activity*/
.our-activity-section{
  position: relative;
}
/*.our-activity-section:before{
  content: '';
  background: var(--theme-color);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  z-index: -1;
}*/
.our-activity-section .row .col{
  padding-right: 5px;
  padding-left: 5px;
}
.activity-wrapper{
  padding: 10px;
  border: 1px solid var(--second-color);
  border-radius: 10px;
}
.activity-style-three {
  position: relative;
  margin-bottom: 40px;
}
.image-overly {
  position: relative;
  overflow: hidden;
}
.image-overly a::before {
  position: absolute;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.8;
  border-radius: 10px 10px 0 0 ;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(180deg, rgba(28, 31, 57, 0) 17.61%, #0d1b2a 100%);
}
.activity-style-three .activity-thumb img {
  width: 100%;
  border-radius: 10px 10px 0 0 ;
  height: 230px;
  object-fit: cover;
}
.image-overly a::after {
  position: absolute;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  border-radius: 10px 10px 0 0 ;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(180deg, rgba(0, 67, 0, 0) 0%, #004300 100%);
}
.activity-style-three .activity-content-wrap {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.activity-style-three .activity-content {
  background-color: #fff;
  border-radius:0 0 10px 10px;
  box-shadow: 0px 4px 10px 0px rgba(144, 144, 144, 0.25);
  padding: 5px 10px 8px 10px;
  transition: all 0.3s ease-in-out;
}
.activity-wrapper .feature-title{
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}
.activity-style-three .activity-content p{
  margin-bottom: 0;
}
.activity-style-three:hover .activity-thumb a::before {
  opacity: 0;
}
.activity-style-three:hover .activity-thumb a::after {
  opacity: 1;
}


/*about new*/
.it-section-subtitle {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  display: inline-block;
  color: var(--second-color);
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
}

.it-section-subtitle:after{
  position: absolute;
  content: "";
  width: 65px;
  height: 2px;
  left: 1px;
  top: 25px;
  background-color: var(--second-color);
}
.it-section-title {
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: #000;
  font-family: "Playfair Display", serif;
}
.it-about-service-icon span {
  font-size: 30px;
  color: var(--theme-color);
  width: 68px;
  height: 68px;
  display: inline-block;
  text-align: center;
  line-height: 70px;
  border-radius: 50%;
  background: rgba(255,101,37,.3);
}
.it-about-service-text p {
  font-size: 14px;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 0
}
.it-about-service-text{
  padding-left: 30px;
}
/*.it-about-service-text:before {
  content: '\f35a';
  font: var(--fa-font-solid);
  padding-right: 10px;
  color: var(--second-color);
}*/
.it-about-service-title {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.02em
}
.it-about-service-title .about_span{
  position: relative;
  left: -30px;
  top: 3px;
}
.it-about-service-title i{
  position: absolute;
}
.mr-20 {
  margin-right: 20px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-15{
  margin-bottom: 15px;
}
.p-relative {
  position: relative;
}
.it-about-style-2 .it-about-main-thumb img {
  border-radius: 35px;
  width: 500px;
  position: absolute;
  top: 20px;
  transform: scaleX(-1);
  right: 0;
  height: 378px;
  left: -78px;
}
.it-about-main-thumb{
  border: 15px solid #545454;
  border-radius: 35px;
  float: right;
  width: 100%;
  margin-left: 67px;
  height: 450px;
}
/*.it-about-main-thumb:before{
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .5;
    z-index: 1;
  }*/
  .it-about-main-thumb{
    text-align: right;
  }
  .it-about-style-2 .it-about-sub-thumb {
    position: absolute;
    bottom: -26%;
    left: -28%;
    width: 100%;
    height: 100%;
  }

  @media only screen and (min-width: 992px) and (max-width:1199px) {
    .it-about-style-2 .it-about-sub-thumb {
      left:-10%
    }
  }

  .it-about-style-2 .it-about-sub-thumb img {
    border: 8px solid #fff;
    border-radius: 25px;
    width: 80%;
    position: relative;
    bottom: 0;
    left: 0;
    height: 80%;
  }

  .it-about-style-2 .it-about-experience-box {
    position: absolute;
    padding: 31px 43px;
    top: 115px;
    left: -26%;
    width: 310px;
    height: 130px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 5px solid #fff;
    border-radius: 250px
  }

  @media only screen and (min-width: 992px) and (max-width:1199px) {
    .it-about-style-2 .it-about-experience-box {
      left:-14%
    }
  }

  @media (max-width: 767px) {
    .it-about-style-2 .it-about-experience-box {
      top:30px;
      left: 0;
      transform: scale(.7)
    }
  }

  @media only screen and (min-width: 576px) and (max-width:767px) {
    .it-about-style-2 .it-about-experience-box {
      top:115px;
      left: 0;
      transform: scale(1)
    }
  }

  .it-about-style-2 .it-about-experience-title {
    font-size: 30px;
    line-height: 112%;
    color: #fff;
    margin-right: 20px
  }

  .it-about-style-2 .it-about-experience-text {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7;
    color: #fff
  }
  .theme-bg-2 {
    background: var(--theme-color);
  }

  @keyframes itupdown{
    0% {
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0);
    }
    100% {
      -webkit-transform: translateY(-20px);
      -moz-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
      -o-transform: translateY(-20px);
      transform: translateY(-20px);
    }
  }

/*destination*/
.destination-section{
  background: linear-gradient(180deg, #fff3ee 0%, #fff3ee 100%);
}
.it-destination-2-item {
  transition: .3s;
}
.it-destination-2-thumb {
  transition: .3s;
  width: 100%;
  border: 2px dashed var(--second-color);
  padding: 10px;
  border-radius: 10px;
  height: 250px;
}
.destination-section .item:hover .it-destination-2-thumb {
  border: 2px solid var(--second-color);
}
.destination-section .item{
  margin-bottom: 30px;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
  border:none;
  position: relative;
  background:#fff;
  border-radius: 12px;
  text-align: center;
}
.it-destination-2-thumb img {
  width: 100%;
  border-radius: 10px;
  transition: .3s;
  height: 400px;
  object-fit: cover;
  height: 100%;
}

.it-destination-2-text {
  position: relative;
  padding: 12px;
  background-color: #fff;
  transition: .3s;
  border-radius: 0 0 12px 12px;
}

.it-destination-2-place {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: capitalize;
  transition: .3s;
  line-height: 1.3;
}
.it-destination-2-place a{
  color: #000;
  font-size: 17px;
}

.it-destination-2-place:hover {
  color: var(--theme-color)
}

.it-destination-2-tourist {
  font-size: 14px;
  color: var(--second-color)
}
.it-destination-2-item:hover .it-destination-2-thumb img {
}
.it-destination-2-item:hover .it-destination-2-text {
}
.destination-slider .owl-nav{
  margin-top: 20px;
  text-align: right;
}
.destination-slider .owl-nav button{
  width: 50px;
  height: 50px;
  line-height: 50px!important;
  background-color: var(--theme-color)!important;
  color: #fff!important;
  border-radius: 50%;
  transition: .3s;
  margin-right: 25px;
}

/*how its work*/
.it-work-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.grey-bg {
  background: #f3f8f6;
}
.it-work-item {
  transition: .3s;
}
.it-work-item:hover .it-work-quantity {
  background-color: var(--second-color)
}

.it-work-quantity {
  top: 25px;
  padding: 18px 27px;
  display: inline-block;
  color: #fff;
  background-color: var(--theme-color);
  border-radius: 0 10px 10px 10px;
  transition: .3s
}

.it-work-quantity::before {
  font-size: 24px;
  text-align: center;
  display: inline-block;
  counter-increment: count;
  content: "0" counter(count);
  color: #fff;
  border-radius: 50%;
  transition: .3s
}

.it-work-quantity::after {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 0;
  right: 0;
  bottom: -16px;
  text-align: center;
  margin: auto;
  content: "";
  background-color: #fff;
  border-radius: 50%
}

.it-work-box {
  background: #fff;
  padding: 51px 30px;
  border: 1px solid var(--second-color);
  border-radius: 10px
}

@media only screen and (min-width: 576px) and (max-width:767px) {
  .it-work-box {
    padding:51px 23px
  }
}

.it-work-box p {
  margin-bottom: 0
}

.it-work-title a{
  font-size: 24px;
  line-height: 1.7;
  display: inline-block;
  text-transform: capitalize;
  color: #000;
  transition: .3s
}

@media only screen and (min-width: 992px) and (max-width:1199px) {
  .it-work-title {
    font-size:22px
  }
}

@media only screen and (min-width: 576px) and (max-width:767px) {
  .it-work-title {
    font-size:20px
  }
}

.it-work-title:hover {
  color: var(--theme-color)
}
.counter-row {
  counter-reset: count
}

/*testimonials*/
.pb-90 {
  padding-bottom: 90px;
}

.pt-105 {
  padding-top: 105px;
}
.black-bg {
  background: #161b18;
}
.testimonial-area-bg {
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .testimonial-area .it-testimonial-area {
    padding-top: 80px;
  }
}
.testimonial-area .it-testimonial-shape-1 {
  position: absolute;
  left: auto;
  right: 13%;
  top: -100px;
  animation: itswing 1s forwards infinite alternate;
  transform-origin: bottom center;
}
@media (max-width: 767px) {
  .testimonial-area .it-testimonial-shape-1 {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .it-testimonial-content {
    margin-left: 0;
  }
}
.testimonial-area .it-testimonial-thumb {
  left: 38px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-area .it-testimonial-thumb {
    left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .testimonial-area .it-testimonial-thumb {
    left: 0;
    right: 0;
    text-align: center;
    margin-bottom: 40px;
  }
}
.testimonial-area .it-testimonial-thumb img {
  rotate: -10deg;
  border-radius: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .testimonial-area .it-testimonial-thumb img {
    rotate: 0deg;
    width: 100%;
  }
}
.testimonial-area .it-testimonial-thumb .thumb-shape-1 {
  position: absolute;
  width: 430px;
  height: 440px;
  left: -20px;
  top: -10px;
  rotate: 3deg;
  border-radius: 20px;
  transform: scale(0.9);
  border: 3px solid #fff;
}
@media (max-width: 767px) {
  .testimonial-area .it-testimonial-thumb .thumb-shape-1 {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-area .it-testimonial-thumb .thumb-shape-1 {
    display: block;
  }
}
.testimonial-area .it-testimonial-thumb .thumb-shape-2 {
  width: 430px;
  height: 440px;
  position: absolute;
  top: -10px;
  rotate: -3deg;
  left: -20px;
  border-radius: 20px;
  transform: scale(0.9);
  border: 3px solid #1B75E8;
}
@media (max-width: 767px) {
  .testimonial-area .it-testimonial-thumb .thumb-shape-2 {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-area .it-testimonial-thumb .thumb-shape-2 {
    display: block;
  }
}
.testimonial-area .it-testimonial-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
}
.testimonial-area .it-testimonial-dsc {
  margin-bottom: 35px;
}
.testimonial-area .it-testimonial-dsc::before {
  position: absolute;
  width: 3px;
  height: 100%;
  background: #fff;
  content: "";
  bottom: 0;
  top: 30px;
  left: -18px;
}
@media (max-width: 767px) {
  .testimonial-area .it-testimonial-dsc::before {
    height: 85%;
  }
}
.testimonial-area .it-testimonial-dsc p {
  font-size: 16px;
  color: #000;
  line-height: 1.5;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-area .it-testimonial-dsc p {
    font-size: 16px;
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-area .it-testimonial-dsc p {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .testimonial-area .it-testimonial-dsc p {
    margin-right: 0;
    font-size: 16px;
  }
}
.testimonial-area .it-testimonial-dsc .qoute-1 {
  top: 2px;
  left: -30px;
  font-size: 23px;
  position: absolute;
  display: inline-block;
  transform: rotateY(180deg);
  color: #fff;
}
.testimonial-area .it-testimonial-avater-thumb img {
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  display: inline-block;
  border-radius: 50px;
}
.testimonial-area .it-testimonial-avater-title {
  font-size: 21px;
  color: var(--second-color);
}
.testimonial-area .it-testimonial-avater-designation {
  font-size: 16px;
  font-weight: 500;
  color: var(--second-color);
  text-transform: uppercase;
}
.testimonial-area .it-testi-2-arrow-box {
  position: absolute;
  bottom: 10px;
  right: 0;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-area .it-testi-2-arrow-box {
    right: 30px;
  }
}
@media (max-width: 767px) {
  .testimonial-area .it-testi-2-arrow-box {
    position: absolute;
    bottom: -63px;
    right: 0;
    left: 0;
    text-align: center;
    margin: auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-area .it-testi-2-arrow-box {
    bottom: 0;
  }
}
.testimonial-area .it-testi-2-arrow-box .testimonial-prev {
  position: relative;
  color: var(--second-color);
  left: -10px;
  z-index: 2;
}
.testimonial-area .it-testi-2-arrow-box .testimonial-prev::before {
  position: absolute;
  width: 40px;
  height: 40px;
  content: "";
  bottom: -10px;
  left: -16px;
  border-radius: 50px;
  background-color: #fff;
  z-index: -1;
  transition: 0.3s;
}
.testimonial-area .it-testi-2-arrow-box .testimonial-prev:hover {
  color: var(--theme-color);
}
.testimonial-area .it-testi-2-arrow-box .testimonial-prev:hover::before {
  background-color: var(--second-color);
}
.testimonial-area .it-testi-2-arrow-box .testimonial-next {
  position: relative;
  color: var(--second-color);
  right: -10px;
  z-index: 2;
}
.testimonial-area .it-testi-2-arrow-box .testimonial-next::before {
  position: absolute;
  width: 40px;
  height: 40px;
  content: "";
  bottom: -10px;
  right: -16px;
  border-radius: 50px;
  background-color: #fff;
  z-index: -1;
  transition: 0.3s;
}
.testimonial-area .it-testi-2-arrow-box .testimonial-next:hover {
  color: var(--theme-color);
}
.testimonial-area .it-testi-2-arrow-box .testimonial-next:hover::before {
  background-color: var(--second-color);
}

@keyframes itswing {
  0% {
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}
.testimonial-slider .owl-nav{
  position: absolute;
  right: 0;
  bottom: 10px;
}
.testimonial-slider .owl-nav button{
  width: 50px;
  height: 50px;
  line-height: 50px!important;
  border: 1px solid var(--theme-color)!important;
  color: var(--theme-color)!important;
  border-radius: 50%;
  transition: .3s;
  margin-right: 25px;
}

/*our fleet*/
.cab-service-section{
  background-color: #ebf2fa;
}
.single-car-category {
  width: 210px;
  height: 210px;
  cursor: pointer;
}

.m-auto {
  margin: auto !important;
}
.single-car-category .car-category-thumb-wrapper {
  position: relative;
  width: 180px;
  height: 100px;
  z-index: 5;
}
.single-car-category img{
  width: 100%;
}
.single-car-category .car-category-name {
  color: #232323;
  font-size: 20px;
  font-weight: 700;
  margin-top: 25px;
}
.single-car-category .car-category-thumb-wrapper::before {
  position: absolute;
  z-index: -1;
  top: -60px;
  right: -30px;
  content: "";
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 5%);
  box-shadow: 0 0 50px rgba(0, 0, 0, 5%);
  -webkit-transition: all .5s;
  transition: all .5s;
}
.single-car-category:hover .car-category-thumb-wrapper::before {
  background-color: var(--theme-color);
  -webkit-animation: round-shake .4s 1 cubic-bezier(.17,.88,.325,1.27);
  animation: round-shake .4s 1 cubic-bezier(.17,.88,.325,1.27);
}
@keyframes round-shake{
  0% {
    -webkit-transform: rotate(-180deg) scale(.3);
    transform: rotate(-180deg) scale(.3);
  }

  100% {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
  }
}

/*slider caption with shapes*/
.main-slider__wrap {
  position: absolute;
  height: fit-content;
  top: 7%;
  /* left: 10%; */
  width: 50%;
  padding: 17px;
  border-radius: 25px;
  bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin: 0 25%;
  color: var(--second-color);
  background: rgba(255, 255, 255, 0.4);
}

.main-slider__slogan {
  margin-bottom: 2px;
  font-size: 16px;
}

.main-slider__title {
  margin-bottom: 10px;
  font-size: 70px;
  font-weight: 700;
  text-align: center;
  font-size: 60px;
  line-height: .9;
  text-shadow: 0 1px 1px #ffffff;
  font-family: "Playfair Display", serif;
}
.slider_list li{
  list-style-type: none;
  font-family: "Montez", cursive;
  font-size: 23px;
}
.slider_list{
  padding: 0;
  text-align: center;
  margin-bottom: 10px;
}
.slider_list li::before{
  content: '\f111';
  position: relative;
  font: var(--fa-font-solid);
  padding-right: 10px;
  top: -3px;
  color: #edff18;
  font-size: 6px;
  line-height: 1;
}
.main-slider__title_lg {
  font-size: 70px;
  text-align: center;
  text-shadow: 0 1px 1px #ffffff;
  font-family: "Playfair Display", serif;
}
.main-slider__link {
 font-size: 16px; 
 color: var(--theme-color); 
 -webkit-transition: all .3s; 
 transition: all .3s; 
 text-transform: uppercase;
 position:relative;
}
.main-slider__link:before{
  background-color: var(--theme-color); 
  display: inline-block;
  width: 100px;
  height: 5px;
  margin-right: 15px;
  content: '';
  vertical-align: middle;
}
.slider_list{
  display:flex;
  font-weight: 600;
  color: #edff18;
  width: 70%;
  margin: 0 15%;
}
.slider_list li{
  width: 33.33%;
}

/*destination*/
.destination-item img{
  border-radius: 20px;
  margin-bottom: 10px;
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.destination-item p{
  font-size: 25px;
  color: #000;
  font-weight: 600;
  margin-bottom: 0;
}


/*taxiservice_section*/
.taxiservice_section .card{
  border-radius: 20px;
  margin-top: 85px;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
}
.taxiservice_section .card img{
  width: 86%;
  height: 150px;
  position: absolute;
  top: -70px;
  margin: 0 7%;
  border-radius: 20px;
  object-fit: cover;
}
.taxiservice_section .card-body{
  padding-top: 90px;
}
.taxiservice_section .card_icon{
  color: #FFFFFF;
  background-color: #1B1B1B;
  font-size: 45px;
  line-height: 60px;
  position: absolute;
  text-align: center;
  border-style: solid;
  border-width: 5px 5px 5px 5px;
  border-color: #FFFFFF;
  border-radius: 50px 0px 50px 50px;
  height: 80px;
  width: 80px;
  left: 70%;
  top: 20px;
}
.taxiservice_section .card_icon i {
  font-size: 38px;
}
@media screen and (min-width: 300px) and (max-width:400px) {
  .taxiservice_section .card_icon{
    left: 71%;
  }
}
@media screen and (min-width: 401px) and (max-width:499px) {
  .taxiservice_section .card_icon{
    left: 73%;
  }
}
@media screen and (min-width: 500px) and (max-width:600px) {
  .taxiservice_section .card_icon{
    left: 79%;
  }
}
@media screen and (min-width: 601px) and (max-width:748px) {
  .taxiservice_section .card_icon{
    left: 79%;
  }
}
.taxiservice_section .card .card-title{
  font-size: 23px;
  font-weight: 700;
  margin-top: 4px;
}
.taxiservice_section .card .card-title a{
  color: #000;
  font-family:"Playfair Display", serif;;
}
.taxiservice_section .card p{
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(17, 24, 39, .1);
  padding-bottom: 15px;
}
.booking_btn{
  margin: 10px 0;
}
.bg-color-fff7ed{
  background-color: #fff7ed;
}

/*testimonial*/
.testimonial-img{
  position: relative;
}
.testimonial-img img{
  width: 100%;
}
.testimonial-img .testimonial-img2{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
}
.it-testimonial-avater{
  gap: 20px;
}
.it-testimonial-avater-thumb img{
  width: 60px!important;
}
.it-testimonial-avater-title{
  font-size: 20px;
  font-weight: 600;
  color: #000;
}
.it-testimonial-content{
  padding: 60px 10px 10px;
  border-radius: 20px;
  border-bottom: 2px solid var(--second-color);
  background-color: #f2f2f2;
}
.it-testimonial-content ul{
  gap: 5px;
}
.it-testimonial-content ul li i {
  color: #ffc107;
  font-size: 20px;
}

.owl-dots {
  text-align: center;
  padding-top: 15px;
}
.owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background: #ccc;
  margin: 0 3px;
}
.owl-dots button.owl-dot.active {
  background-color: var(--theme-color);
}
.owl-dots button.owl-dot:focus {
  outline: none;
}

/*cab-service-section*/
.cab-service-section .card{
  padding: 12px 30px 30px 30px;
  position: relative;
  box-shadow: 0px 11px 35px -12px rgba(0, 0, 0, 0.6);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  border: none;
  border-radius: 30px;
  text-align: center;
  flex-wrap: wrap;
  align-content: flex-start;
}
.cab-service-section .card-overlay{
  opacity: 0.06;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.cab-service-section .card .card-title{
  font-size: 25px;
  font-weight: 600;
  position: relative;
  font-family: "Playfair Display", serif;
}
.cab-service-section .card p{
  position: relative;
}
.cab-service-section .card img{
  height: 200px;
  width: 100%;
}
.cab-service-section .card a{
  position: relative;
  color: var(--theme-color);
  font-size: 22px;
  font-weight: 600;
}




/*.gallery_section .global-img img{
  width: 100%;
}
.gallery__name{
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    z-index: 3;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    border: none;
    font-size: 40px;
    font-weight: 300;
    color: #fff;
}
.gallery-card .global-img{

}*/
img{
  width: 100%;
}
.tour-gallery-card {
  position: relative;
}

.tour-gallery-card .gallery-img {
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  /* Medium devices */
}

@media (max-width: 991px) {
  .tour-gallery-card .gallery-img {
    margin-bottom: 0;
  }
}

.tour-gallery-card .gallery-img img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.tour-gallery-card .icon-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  line-height: normal;
  border: 0;
  background: transparent;
  color: var(--white-color);
  font-size: 32px;
  opacity: 0;
}

.tour-gallery-card:hover .tour-gallery-card-img {
  border-color: var(--white-color);
}

.tour-gallery-card:hover .icon-btn {
  opacity: 1;
}

.gallery-area .row {
  --bs-gutter-x: 17px;
}

.gallery-card:nth-child(2) {
  margin-top: 17px;
}

.gallery-card .box-img {
  border-radius: 24px;
  /* Medium devices */
}

@media (max-width: 991px) {
  .gallery-card .box-img {
    margin-bottom: 10px;
  }
}

.gallery-card .box-img img {
  border-radius: 24px;
  height: 100%;
}

.gallery-card .box-img .icon-btn {
  position: absolute;
  border: none;
  font-size: 18px;
  font-weight: 500;
}

.gallery-card .box-img .icon-btn:hover {
  background-color: transparent;
}
.gallery-card:hover .gallery-card {
  position: relative;
}
.gallery-card:hover .icon-btn {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.gallery-card .middle_img_card img{
  height: 100%;
}
.gallery-card .box-img{
  position: relative;
  display: block;
  height: 200px;
}
.gallery-card .box-img img:before{
  position: absolute;
  background-color: rgb(0, 0, 0 / 0.5);

}
.gallery-card .middle_img_card{
  height: 300px;
}
.gallery-card {
  position: relative;
  overflow: hidden;
}

.box-img img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

.icon-btn {display: none;
}

.box-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 24px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0); /* Initially transparent */
  transition: background-color 0.3s ease-in-out;
  z-index: 1;
}

.gallery-card:hover .box-img img {
  transform: scale(1.1); /* Zoom effect on hover */
  border-radius: 24px;
}
.gallery-card:hover .box-img{
  border-radius: 24px;
}
.gallery-card .box-img{
  border-radius: 24px;
}
.gallery-card:hover .icon-btn {
  opacity: 1; /* Show the icon button on hover */
}

.gallery-card:hover .box-img::before {
  background-color: rgba(0, 0, 0, 0.7); /* Black overlay on hover */
}
.gallery-card{
  border-radius: 24px;
}



/*************Footer Upper***************/
.footer_upper{
  background-color: #f8f8f8;
  padding: 2.5rem 0;
}
.footer_upper_wrapper ul{
  padding-left: 2rem;
}
.footer_upper_wrapper li{
  border-bottom: 1px dashed var(--second-color);

  margin-bottom: 15px;
  padding-bottom: 3px;

}
.footer_upper_wrapper li a{
  color: #000;
  font-weight: 550;
  font-size: 21px;
}
.footer_upper .section-title{
  margin-bottom: 30px;
}
.float_btn .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 15px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 0px 10px #999;
  z-index: 10000;
}
.float_btn .call_float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  left: 15px;
  background-color: #03a9f4;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 0px 10px #999;
  z-index: 100;
}
.float_btn i{
  line-height: 2;
}