@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --theme-color: #ffc815;
  --theme-color2: #012c6d;
  --second-color: #000;
  --font-family: "Poppins", sans-serif;
  --font-color: #000;
  --transition: 0.3s linear;
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box; 
  font-family: var(--font-family);
}
html,body{
  overflow-x: hidden;
  font-family: var(--font-family);
}
p{
  color: #000;
  font-size: 16px;
  font-family: var(--font-family);
}
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;
  overflow: hidden;
  cursor: pointer;
  padding: 10px 20px;
  background: var(--theme-color);
  color: #fff;
  border: 1px solid var(--theme-color);
  box-shadow: inset 0 1px 0 #fff, 0 0.15em 0 var(--theme-color), 0.1em 0.2em 0.2em 0.15em rgba(0, 0, 0, .2);
  border-radius: 30px;
  transition: 0.2s linear;
}
.btn-theme:hover {
  box-shadow: inset 0 -1px 0 #fff, 0 -0.15em 0 var(--theme-color), -0.1em -0.2em 0.2em -0.15em rgba(0, 0, 0, .2);
}

/*.btn-theme:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 150%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  background-color: var(--second-color);
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  z-index: -1;
}*/


.btn-theme:hover::after {
  top: -50%;
  z-index: 0;
}
.btn-theme span {
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 110%;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}

.btn-theme:hover span {
  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;
}
.subtitle{
  position: relative;
  font-weight: 600;
  font-size: 18px;
  font-family: "poppins", cursive;
  color: var(--theme-color);
}
/*.section-title .title:before{
    position: absolute;
    content: "";
    height: 3px;
    border-radius: 30px;
    width: 50px;
    background-color: var(--theme-color);
    top: 34px;
    transform: translateX(-55px);
}*/
.section-title .title{
  font-size: 35px;
  font-weight: bold;
  position: relative;
  text-transform: capitalize;
}
.section-title .progress{
  width: 10%;
  height: 3px;
}
.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);*/
  }
  .about__area-two .title:before{
    display: none;
  }
  .about__area-two .title{
    padding: 0;
  }
/*======================================================
header
======================================================*/
header{
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05);
}
header .navbar-nav a{
  padding: 10px 14px;
  font-size: 15px;
  color: #000;
  font-weight: 500;
  transition: 0.2s linear;
  position: relative;
  border-radius: 5px;
}
header .navbar-nav a:hover{
  color: var(--second-color);
}
header .navbar-nav li{
  padding: 10px 4px;
}
.navbar-toggler-icon{
  background-image: none !important;
}
.navbar-toggler-icon i{
  color: #fff;
  font-size: 28px;
}
.header-social{
  display: flex;
  gap: 10px;
}
.header-social a{
  width: 35px;
  height: 35px;
  border-radius: 4px;
  display: inline-block;
  background-color: #fff;
  text-align: center;
  line-height: 35px;
  color: var(--second-color);
}
.header-social a:hover{
  background-color: var(--theme-color);
  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;
  padding-left: 10px;
  font-size: 25px;
  font-weight: 600;
  color: #000;
}
.navbar-brand > img {
  display: block;
  left: 0;
  position: relative;
  top: 0;
  width: 110px;
  z-index: 100;
  background-color: #fff;
  border-radius: 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: 46px;
  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: 545px;
  object-fit: cover;
  filter: brightness(0.8);
}
.slider-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-inline: auto;
  color: #fff;
  width: 60%;
  text-align: center;
  background-color: rgb(0 0 0 / 45%);
  padding: 30px 20px;
  border-radius: 10px;
}
.slider-caption .caption-subtitle{
  color: #000;
  background-color: #fff;
  border-radius: 50px 50px;
  padding: 10px 20px;
  font-weight: 400;
  display: inline-block;
  letter-spacing: 2px;
}
.slider-caption .caption-title{
  font-size: 52px;
  font-weight: 500;
  margin-top: 20px;
  line-height: 1.2;
  font-family: "Coiny", system-ui;
}
.slider-caption .caption-title span{
  /*-webkit-text-stroke-width: 1px;
  stroke-width: 1px;
  -webkit-text-stroke-color: var(--second-color);
  stroke: var(--second-color);*/
  color: var(--theme-color);
  position: relative;
  margin-left: 10px;
  font-family: "Coiny", system-ui;
}

.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(--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(--second-color);
}

/*=================================================
enquiry-form
=================================================*/
.enquiry-form form .form-title{
  margin-bottom: 20px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #000;
}
.enquiry-form hr:not([size]) {
  top: -6px;
}
.home-enquiry-form .section-title{
  margin-bottom: 0px;
}
.common-booking-form hr:not([size]) {
  top: -2px;
}
.accent-2 {
  width: 60px;
  position: relative;
  top: -9px;
  border-top: 1px solid var(--second-color);
}
.taxi-booking__form__title {
  position: relative;
  top: -27px;
  margin-bottom: 3px;
  display: inline-block;
  padding: 12px 46px 12px 20px;
  background-color: var(--second-color);
/*  clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%);*/
border-radius: 50px;
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;
  color: #fff;
}
/*.taxi-booking__form__heading::before {
  content: "";
  width: 6px;
  height: calc(100% - 5px);
  background-color: var(--theme-color);
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  border-radius: 45px 0 0 50px;
}*/

.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(--second-color);
}

/*.enquiry-form form ::placeholder{
  color: var(--theme-color);
}*/
.enquiry-form form .form-control:focus{
  box-shadow: none;
  border-color: var(--second-color);
}
.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-box{
  background-color: var(--theme-color2);
  border-radius: 10px;
  color: #fff;
  transition: var(--transition);
}
.service-box .service-img img{
  border-radius: 10px;
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.service-box .service-body{
  padding: 20px;
}
.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: 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(--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: 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(--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: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.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(--second-color);
  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: var(--theme-color);
}
.footer-wrapper {  
  background-color: #fff;
  position: relative;
}
footer .ot-widget-about img{
  top: -6px;
}
.footer-wrapper .footer-wrapper-overlay{
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: var(--theme-color);
  opacity: 0.93;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.footer-wrapper .justify-content-between{
  padding: 50px 60px 10px ;
}
.widget-area {
  padding-top: 120px;
  padding-bottom: 75px;
}
.footer-widget, .footer-widget .widget {
  padding: 0;
  border: none;
  padding-bottom: 0;
  background-color: transparent;
  box-shadow: none;
}
footer .footer-site_name{
  display: block;
  align-items: center;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}
footer .site_name_name{
  display: block;
  position: relative;
  top: -10px;
}

.footer-widget {
  margin-bottom: 40px;
}
.ot-widget-about .about-logo {
  margin-bottom: 30px;
}
.ot-widget-about .about-text {
  margin-bottom: 25px;
  margin-top: -0.46em;
  margin: -25px 0 18px 0;
  color:var(--font-color);
  font-weight: 550;
  line-height: 1.75;
  font-size: 14px;

}
.footer-wrapper .footer-gallary .gi{
  width: 90px;
  object-fit: cover;
  max-height: 90px;
  margin-bottom: 10px;
}
.footer-wrapper .footer-gallary .width-33{
  width: 33% !important;
}
.footer-wrapper .footer-gallary .gi img{
  object-fit: cover;
  width: 90px;
  height: 90px;
  border: 1px solid #181818;
  size: cover;
  border-radius: 5px;
}
.footer-wrapper .footer-gallary .gi img:hover{
  opacity: 0.5;
}
.footer-wrapper .ot-social a {
  --icon-size: 45px;
  font-size: 14px;
  border-color: rgb(255 255 255 / 7%);
  background-color: rgb(255 255 255 / 7%);
}
@media (max-width: 1399px){
  .ot-social a {
    margin-right: 3px;
  }
}
.ot-social a {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: transparent;
  color: #363539;
  font-weight: 550;
  font-size: 16px;
  text-align: center;
  margin-right: 5px;
  border-radius: 5px;
  border: 1px solid #fff;
}

.footer-widget .widget_title {
/*    max-width: 275px;*/
margin-bottom: 20px;
font-weight: 600;
color: #000 ;
font-family: var(--second-font);

}

.widget_title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
  margin: -0.1em 0 30px 0;
  padding-bottom: 20px;
}
.widget_title:before{
  content: '';
  height: 3px;
  width: 90px;
  background-color: #000 ;
  font-weight: 550;
  position: absolute;
  bottom: 13px;
  left: 0;
}
.contact-info-box{
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-info-box_text a:before {
  display: none;
  content: none;
}
.contact-info-box_text {
  display: block;
  color: var(--font-color) !important;
  font-size: 14px;
  font-weight: 550;
  margin-bottom: 0;
}
.contact-info-box_icon i{
  position: relative;
  left: 5px;
  top: 2px;
  font-size: 16px;
  color: var(--font-color);
  padding: 8px;
  border-radius: 50%;
  background: #fff;
}
.footer-widget.widget_nav_menu a {
  font-size: 14px;
  font-weight: 550;
  margin-bottom: 4px;
  display: block;
  max-width: 100%;
  padding-right: 0;
  background-color: transparent;
  position: relative;
  color: var(--font-color);
}
.footer-widget.widget_nav_menu a:before {
  content: "\f35a";
  font-family: 'FontAwesome';
  font-weight: 600;
  left: 0;
  top: 0;
  color: #000;
  background-color: transparent;
  border: none;
  transition: 0.4s linear;
  position: relative;
  padding-right: 10px;
  font-size: 15px;

}

.footer-widget.widget_nav_menu a:hover:before{
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/*.ot-widget-contact {
    max-width: 260px;
}*/
.info-box {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.info-box_icon {
  font-size: 16px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  background-color: transparent;
  border-radius: 50%;
  transition: 0.3s linear;
  border: 2px solid #fff;
}


.info-box_icon i{
  width: 35px;
  position: relative;
  left: -2px;
  top: -1px;
}
footer .info-box .info-box_text {
  display: block;
  color: #fff !important;
  font-size: 16px;
  font-weight: 550;
  margin-bottom: 0;
}
footer .info-box .info-box_text a{
  color: #fff !important;
  font-weight: 550;
}
.widget_nav_menu li{
  display: block;
  border-bottom: 1px solid #000;
  margin-bottom: 10px;
}

.copyright-wrap {
  padding: 10px 0;
  text-align: center;
  background-color: #efb700;
  border-top: 1px solid #313D54
}
.copyright-wrap .row{
  justify-content: space-between !important;
}

@media (max-width: 1199px) {
  .copyright-wrap {
    padding:24px 0
  }
}

.copyright-wrap.style2 {
  background-color: var(--theme-color);
  border-top: 1px solid #fff;
  padding: 5px 0
}
.copyright-wrap p{
  color: #fff;
  font-weight: 600;
}
.copyright-wrap p a{
  color: #000;
  font-weight: 700;
}
.copyright-text {
  margin: 0;
  color:#fff;
  font-weight: 550;
}

.copyright-text a:hover {
  color: var(--second-color);
}
.footer-links li {
  display: inline-block;
  padding-right: 15px;
  margin-right: 10px;
  position: relative;
}
.footer-links a {
  font-family: inherit;
  color: #fff;
}

.footer-links ul {
  padding: 0;
  margin: 0;
}
footer .ul_padding_no{
  padding: 0;
}
.footer-widget.widget_nav_menu a:hover {
  background-color: transparent;
  color: var(--second-color);
}
ul.social-link{
  padding: 0;
}
ul.social-link li{
  -webkit-margin-end: 5px;
  margin-inline-end: 5px;
  -webkit-margin-end: 5px;
  margin-inline-end: 5px;
  display: inline-block;
}
ul.social-link li a {
  background-color: #fff;
  color: var(--font-color);
  height: 36px;
  width: 36px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  text-shadow: 0px 0px #d4d4d4, 1px 1px #d4d4d4, 2px 2px #d4d4d4, 3px 3px #d4d4d4, 4px 4px #d4d4d4, 5px 5px #d4d4d4, 6px 6px #d4d4d4, 7px 7px #d4d4d4, 8px 8px #d4d4d4, 9px 9px #d4d4d4, 10px 10px #d4d4d4, 11px 11px #d4d4d4, 12px 12px #d4d4d4, 13px 13px #d4d4d4, 14px 14px #d4d4d4, 15px 15px #d4d4d4, 16px 16px #d4d4d4, 17px 17px #d4d4d4, 18px 18px #d4d4d4, 19px 19px #d4d4d4, 20px 20px #d4d4d4, 21px 21px #d4d4d4, 22px 22px #d4d4d4, 23px 23px #d4d4d4, 24px 24px #d4d4d4, 25px 25px #d4d4d4, 26px 26px #d4d4d4, 27px 27px #d4d4d4, 28px 28px #d4d4d4, 29px 29px #d4d4d4, 30px 30px #d4d4d4;
  overflow: hidden;
  border-radius: 4px;
}
ul.social-link li a .fa-facebook-f{
  color: #3b5998;
}
ul.social-link li a .fa-instagram{
  color:#F58529;
}

ul.social-link li a .fa-twitter{
  color: #1DA1F2;
}

ul.social-link li a .fa-youtube{
  color: #ff0000;
}

.copyright-text a {
  color: #000;
}
.footer-wrapper .ot-social a:hover {
  border-color: var(--second-color);
  background-color: var(--second-color);
}
.logo-style{
  text-align: center;
  background: var(--theme-color);
  box-shadow: 0px 4px 2.5px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  padding: 10px;
  border-bottom: 3px solid var(--second-color);
  width: 142px;
  height: 135px;
  color: #fff;
  position: absolute;
  top: 10px;
}

form .title{
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
form hr{
  text-align: center;
}
/*breadcrumbs*/
.sub-banner {
  background-image: linear-gradient( rgba(0, 0, 0, 0.5) , rgba(0, 0, 0, 0.5)),url(../images/about_banner.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: 0px 0;
  border-radius: 20px;
  /* flex-direction: row; */
  align-items: center;
  margin-bottom: 30px;
  border: none;
  box-shadow: 0px 11px 12px 0px rgb(166 166 166 / 40%);
  height: 100%;
  text-align: center;
  overflow: hidden;
}
.card_icon_div{
  position: relative;
  padding: 30px;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid #303030;
  box-shadow:0px 2px 8px #6c6c6c;
}

.contact-section .card .card-body{
  width: 100%;
  padding: 0;
  padding-top: 18px;
}
.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_img{
  position: absolute;
  right: 0;
  bottom: 45px;
  opacity: 0.5;
  z-index: 1;
}

/*=============contact-form-section============*/
.contact-form-section .contact-box{
  box-shadow: rgba(100,100,111,.2)0 7px 29px;
  border-radius: 20px;
  background-color: var(--theme-color);
}
/*.contact-form-section img{
  width: 100%;
  height: 100%;
  border-radius: 20px 0 0 20px;
  object-fit: cover;
  position: relative;
  z-index: 20;
  overflow: visible;
  right: 30px;
*/
.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: 30px;
  color: #fff;
  margin-bottom: 15px;
  background-color: transparent;
  font-weight: 600;
}
.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: 100px 0 100px 0;
  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;
  border-radius: 8px;
  margin-bottom: 25px;
  background-color: #ffeed8;
}
.widget-title .title{
  color: #000;
  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, rgb(171 119 69 / 10%) 0%, rgb(251 176 59) 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(--second-color);
  }

/*cab section*/
.banefits-two__single {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 55px;
  border-radius: 170px;
}
.banefits-two__single-img {
  position: relative;
  display: block;
  text-align: center;
  margin: 0 auto;
  z-index: 1;
}

/*.banefits-two__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}*/

.banefits-two__single-img .inner::before {
  position: absolute;
  top: 0%;
  left: 0%;
  bottom: 0%;
  right: 0%;
  content: '';
  transform: scaleY(1.0);
  opacity: 0;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  z-index: 1;
}

/*.banefits-two__single:hover .banefits-two__single-img .inner::before {
  opacity: 0.70;
  transform: scaleY(1.0);
}*/

.banefits-two__single-img .inner img {
  width: 200px;
  transition: 0.3s linear;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 9px solid #f3f5fb;
}

/*.banefits-two__single:hover .banefits-two__single-img .inner img {
  transform: scale(1.1) rotate(1deg);
}*/

.banefits-two__single-content {
  position: relative;
  display: block;
  margin-top: 37px;
}

.banefits-two__single-content .cab-title {
  margin-bottom: 4px;
  font-size: 25px;
  font-weight: 600;
}
.banefits-two__single-content .multi-button .btn-theme {
  padding: 10px;
}

.btn-header{
  background-color: var(--second-color);
  color: #fff;
}
.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{
  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__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%;
  max-width: 520px;
  margin-left: 50px;
}
@media (max-width: 575px) {
  .about-one__image__one {
    padding-left: 19px;
  }
}
/*.about-one__image__one::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50px;
  right: -50px;
   border: 3px solid var(--second-color); 
  background-color: var(--theme-color);
}*/
@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: auto;
  margin-top: -200px;*/
  width: 100%;
  max-width: 100%;
  z-index: 2;
  box-shadow: 0px 4px 60px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  border: 20px solid #FFFFFF;
}
@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: 20px solid #FFFFFF;
}*/
.about-one__image__one__img, .about-one__image__two__img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
}
.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(--second-color);
}
@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);
  }
}


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

.float-call{
  background-color:#143df3;
  left: 15px;
  font-size: 22px;
  border: 2px solid #fff;
}

.my-float{
  margin-top:5px;
  color: #25d366;
}
.my-call{
  margin-top:5px;
}

/*testimonial-section*/
.bd-tm__item {
  background: #fff;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  padding: 46px 50px 50px 50px;
  border-radius: 6px;
  overflow: hidden;
  border-bottom: 3px solid var(--theme-color);
}
.bd-tm__item:hover .bd-tm__text p {
  color: #fff;
}
.bd-tm__item:hover .bd-tm__quote-icon i {
  color: #fff;
}
.bd-tm__item:hover .bd-tm__author {
  background: var(--theme-color);
}
.bd-tm__item:hover .bd-tm__author-name {
  color: #fff;
}
.bd-tm__item:hover .bd-tm__author-cat {
  color: #fff;
}
.bd-tm__item:hover::before {
  height: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-tm__item {
    padding: 40px 20px 40px 20px;
  }
}
.bd-tm__rating {
  margin-bottom: 15px;
}
.bd-tm__rating i {
  color: var(--second-color);
}
.bd-hover-top::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  background: var(--theme-color);
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-transform: 0.5s;
  -moz-transform: 0.5s;
  -ms-transform: 0.5s;
  transform: 0.5s;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bd-hover-top {
  z-index: 1;
  position: relative;
}
.bd-hover-top:hover::before {
  height: 100%;
}


/*.bd-tm__rating i:last-child {
  color: var(--clr-common-gray-4);
}*/
.bd-tm__text {
  margin-bottom: 32px;
}
.bd-tm__text p {
  font-size: 20px;
  color: #353739;
  letter-spacing: -0.3px;
  font-weight: 600;
  line-height: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-tm__text p {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0px;
  }
}
.bd-tm__author {
  background: #f8f8f8;
  display: flex;
  position: relative;
  border-radius: 6px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.bd-tm__author-name {
  margin-bottom: 0;
  padding-top: 16px;
}
.bd-tm__author-img {
  margin-right: 20px;
  width: 70px;
  height: 70px;
}
.bd-tm__author-img img {
  width: 100%;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.bd-tm__quote-icon {
  position: absolute;
  right: 0;
  top: -30px;
}
.bd-tm__quote-icon i {
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  font-size: 52px;
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  display: block;
  color: var(--theme-color);
}

@media (max-width: 575px) {
  .bd-section__tm-title {
    margin-bottom: 20px;
  }
}


/*our services*/
.bg-light{
  background: #f5f5f5!important;
}
.feature-three__single {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  padding: 30px;
  z-index: 1;
  height: 100%;
}

.feature-three__single .shape1 {
  position: absolute;
  top: 45px;
  right: 10px;
  opacity: 0.5;
  z-index: 1;
}

.feature-three__single .shape2 {
  position: absolute;
  left: 0;
  bottom: 25px;
  opacity: 0.5;
  z-index: 1;
}

.feature-three__single::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  border-radius: 10px;
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
  content: "";
  z-index: -1;
}

.feature-three__single::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: scaleX(0.7) rotateX(0deg);
  transition: all 0.4s linear;
  border-radius: 10px;
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
  opacity: 0;
  z-index: -1;
  content: "";
}

.feature-three__single:hover::after {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.feature-three__single-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #eef0f6;
  margin: 0 auto 37px;
}
.feature-three__single-icon img{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.feature-three__single-icon span::before {
  position: relative;
  display: inline-block;
  font-size: 50px;
}

.feature-three__single .h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  text-transform: capitalize;
}

.feature-three__single .h2 {
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-three__single:hover .h2{
  color: #ffffff !important;
}

.feature-three__single .border-box {
  position: relative;
  display: block;
  width: 50px;
  height: 3px;
  background: #eef0f6;
  margin: 10px auto 0px;
}

.feature-three__single .border-box::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 10px;
  height: 3px;
  content: "";
  margin: 0 auto;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-three__single:hover .border-box::before {
  background: #96a7d8;
}

.feature-three__single p {
  margin: 0;
  margin-top: 10px;
}

.feature-three__single .btn-box {
  position: relative;
  display: inline-block;
  margin-top: 24px;
}

.feature-three__single:hover p {
  color: #ffffff;
}

.feature-three__single .btn-box a {
  position: relative;
  display: block;
  padding: 0px 30px 0px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 50px;
  border-radius: 25px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-three__single .btn-box a:hover {
  color: #ffffff;
}

.feature-three__single .btn-box a span::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  top: 2px;
}
.feature-three__single::after {
  background-color: var(--theme-color);
}

/*==============best cab service=============*/
.taxi-service-section{
  position: relative;
  background-image: linear-gradient(90deg, #FAEDDC 0%, #EFF9EC 100%);
}
.taxi-service-section .inner-box{
  position: relative;
  display: block;
  background: #ffffff;
  border-radius: 25px;
  padding: 32px 20px 0px 20px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 500ms ease;
  text-align: center;
}

.taxi-service-section .inner-box .shape{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 139px;
  height: 139px;
  background-repeat: no-repeat;
  transition: all 500ms ease;
}

.taxi-service-section .inner-box:hover .shape{
  opacity: 0;
}

.taxi-service-section .inner-box .overlay-shape{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 139px;
  height: 139px;
  opacity: 0;
  background-repeat: no-repeat;
  transition: all 500ms ease;
}

.taxi-service-section .inner-box:hover .overlay-shape{
  opacity: 1;
}

.taxi-service-section .inner-box:hover{
  transform: translateY(-10px);
}

.taxi-service-section .inner-box .h3{
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 8px;
}


.taxi-service-section .inner-box p{
  display: block;
  margin-bottom: 32px;
}

.taxi-service-section .inner-box .image-box{
  position: relative;
  display: inline-block;
  max-width: 220px;
  width: 100%;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 40px !important;
}

.taxi-service-section .inner-box .image-box img{
  width: 100%;
  height: 205px;
  object-fit: cover;
  border-radius: 50%;
  transition: all 500ms ease;
}

.taxi-service-section .inner-box .image-box:before,
.taxi-service-section .inner-box .image-box:after{
  position: absolute;
  content: '';
  background: #fff;
  width: 5px;
  height: 100%;
  top: 0px;
  z-index: 1;
}

.taxi-service-section .inner-box .image-box:before{
  left: 0px;
}

.taxi-service-section .inner-box .image-box:after{
  right: 0px;
}

.taxi-service-section .inner-box .link-box{
  position: relative;
  display: block;
  padding: 17px 0px 18px 0px;
}

.taxi-service-section .inner-box .link-box:before{
  position: absolute;
  content: '';
  border-top: 1px dashed #d8d2d0;
  width: calc(100% + 40px);
  height: 1px;
  left: -20px;
  top: 0px;
}

.taxi-service-section .inner-box .link-box a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Urbanist', sans-serif;
  color: #0c0c0c;
  font-weight: 800;
  text-transform: uppercase;
  padding-left: 32px;
}

.taxi-service-section .inner-box .link-box a:before {
  position: absolute;
  content: "\f061";
  font-family: 'fontawesome';
  font-size: 18px;
  top: 0;
  left: 0px;
  font-weight: 400;
  transition: all 500ms ease;
}
.taxi-service-section .inner-box .link-box a:hover{
  color: var(--theme-color);
}
/*a[href^="tel:"],.font-normal {
  font-family: cursive;
}*/



/*============our gallery=========*/
.gallery-one__single {
  position: relative;
  display: block;
  padding-top: 75px;
  max-width: 400px;
  width: 100%;
  z-index: 1;
}

.gallery-one__single::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #eef0f6;
  clip-path: polygon(0 0, 100% 6%, 100% 100%, 0% 100%);
  content: "";
  z-index: -1;
}

.gallery-one__single-img {
  position: relative;
  display: block;
}

.gallery-one__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  border-top-left-radius: 0px;
  z-index: 1;
}

.gallery-one__single-img .inner img {
  width: 100%;
  transform: scale(1.01);
  transition: all 700ms ease;
  object-fit: cover;
}

.gallery-one__single:hover .gallery-one__single-img .inner img {
  transform: scale(1.2);
}

.gallery-one__single-img .inner::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
}

.gallery-one__single:hover .gallery-one__single-img .inner::before {
  -webkit-animation: circle .75s;
  animation: circle .75s;
}

.gallery-one__single-img .content-box {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #ffffff;
  padding: 32px 0px 33px;
  padding-left: 20px;
  width: 280px;
  border-top-right-radius: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 2;
}

.gallery-one__single-img .content-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  transform: scaleX(0.7) rotateX(20deg);
  transition: all 0.4s linear;
  z-index: -1;
  border-top-right-radius: 20px;
  opacity: 0;
  background: var(--second-color);
}

.gallery-one__single:hover .gallery-one__single-img .content-box::before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.gallery-one__single-img .content-box .h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.gallery-one__single-img .content-box .h3 a {
  transition: all 200ms linear;
  transition-delay: 0.1s;
  color: #000;
  font-weight: 700;
}

.gallery-one__single:hover .gallery-one__single-img .content-box .h3 a {
  color: #ffffff;
}

.gallery-one__single-img .content-box p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.gallery-one__single:hover .gallery-one__single-img .content-box p {
  color: #ffffff;
}

.gallery-one__single-img .btn-box {
  position: absolute;
  left: 255px;
  bottom: 32px;
  z-index: 2;
}

.gallery-one__single-img .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  transition: all 200ms linear;
  transition-delay: 0.3s;
  background-color: var(--theme-color);
}

.gallery-one__single:hover .gallery-one__single-img .btn-box a {
  background: #ffffff;
}

.gallery-one__single-img .btn-box a span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.gallery-one__single:hover .gallery-one__single-img .btn-box a span:before{
  color: var(--theme-color);
}

.gallery-one__carousel.owl-carousel {
  display: block;
  max-width: 375px;
  width: 100%;
  margin: 0 auto;
}

.gallery-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
  padding: 0px 0px 0px;
}

/*about img three*/
.about-one__image__three{
  position: relative;
  margin-top: 70px;
  width: 100%;
  max-width: 300px;
  z-index: 2;
}
.about-one__image__three__img{
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  border-radius: 20px;
  height: 250px;
  object-fit: cover;
}
.about-one__image__one__img{
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
}
.mnt-50{
  margin-top: -50px;
}


/*================our cab services============*/
.service-item {
  background-color: #fff;
  padding: 60px 30px;
  border-radius: 170px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  height: 100%;
}

.service-item:before {
  content: "";
  background-color: var(--theme-color);
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .5s cubic-bezier(.785, .135, .15, .86);
  z-index: -1;
}

.service-item:after {
  content: "";
  background-color: var(--theme-color);
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all .3s cubic-bezier(.785, .135, .15, .86);
  z-index: -1;
}

.service-item:hover:after,
.service-item:hover:before {
  width: 100%;
}

.service-item .service-icon img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  transition: all .3s ease-in-out;
}

.service-item .h3 {
  font-size: 23px;
  margin: 30px 0 20px 0;
  line-height: 1;
  text-transform: capitalize;
  transition: all .3s ease-in-out;
}
.service-item .h3 a{
  color: #000;
}

.service-item p {
  margin-bottom: 30px;
  transition: all .3s ease-in-out;
}

.service-btn i {
  background-color: #171a1d;
  color: #fff;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  transform: rotate(-45deg);
  transition: all .3s ease-in-out;
}

.service-item:hover .service-icon svg {
  fill: #fff
}

.service-item:hover p,
.service-item:hover .h3 a {
  color: #fff;
}

.service-item:hover .btn-theme {
  background-color: #fff;
}

.service-item:hover .btn-theme span{
  color: var(--second-color);
}
.service-item .btn-theme:hover span {
  color: #fff;
}

/*========testimonial new=========*/
.testimonial-section{
  background-image: url(../images/testimonials/bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.testi-v2-item-box {
  display: flex;
  align-items: center;
  margin-left: 70px;
  border-radius: 20px;
  border: 1px solid #E3E3E3;
  background: #fff;
  margin-right: 10px;
  padding: 50px 55px 50px 0px;
  position: relative;
}

.testi-v2-item-box .image-wrap img {
  height: 160px;
  width: 160px;
  min-width: 160px;
  margin-left: -65px;
  margin-right: 30px;
  border-radius: 10px;
/*    border: 1px solid #E3E3E3;*/
object-fit: cover;
}

.testi-v2-name {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.testi-v2-designation {
  color: var(--theme-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.testi-v2-des {
  margin-bottom: 8px;
}

.testi-v2-share {
  color: #FFB422;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.testi-v2-icon {
  color: var(--theme-color);
  font-size: 60px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  position: absolute;
  right: 30px;
  top: 30px;
}
.man-img{
  background-color: #337180;
}
.woman-img{
  background-color: #fd8469;
}

/*footer contactlist*/
.icon-box-v1-item {
  text-align: left;
  background-color: #02010100;
  border: 1px solid var(--theme-color);
  padding: 22px 45px 22px 45px;
  display: flex;
  align-items: center;
  height: 100%;
  transition: .4s;
  border-radius: 10px;
  box-shadow: 0px 16px 51px 0px rgba(0, 0, 0, 0.07);
}
.icon-box-v1-item .icon-box-v1-icon {
  width: 70px;
  min-width: 70px;
  height: 70px;
  font-size: 24px;
  background-color: #FFFFFF;
  border-radius: 100%;
  margin-right: 20px;
  color: var(--theme-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-box-v1-item .icon-box-v1-title {
  color: #FFFFFF;
  margin: 0px 0px 3px 0px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.icon-box-v1-dec{
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

/*===============form=========*/
.coolinput {
  display: flex;
  flex-direction: column;
  position: relative;
}

.coolinput label.text {
  font-size: 14px;
  color: #000;
  font-weight: 600;
  background: #fff;
  margin-left: 50px;
}

.coolinput .input-group-text {
  border: none;
}
.coolinput .input {
  margin-left: 50px;
  padding: 1px;
  border: none;
  border-bottom: 1px solid #000;
  background: #fff;
  height: 35px;
  font-size: 14px;
}
/*.coolinput .input::placeholder{
  color: #4a4545;
}*/

.coolinput .input:focus {
  outline: none;
}
.coolinput i{
  color: #000000;
  position: absolute;
  top: 31px;
  left: 23px;
  font-size: 21px;
}
/*.coolinput input[type="time"]::-webkit-calendar-picker-indicator {

 background: none;
 background-size: 15px;
 position: relative;
 top: 3px;
 opacity: 0.7;
 right: -15px;

}*/
/*.home-enquiry-form .btn-theme{
  border-radius: 50px;
}*/
.enquiry-form .btn-theme{
  padding: 12px !important;
} 

form input:-internal-autofill-selected {
  background-color: none;
}

form input:focus{
  background-color: none;
}
.form_section .form-control{
  color-scheme: none;
}
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill{
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  box-shadow: 0 0 0 1000px white inset !important;
  background-color: transparent !important;
  color: inherit !important;
}

/*contact page*/
.contact-form-section form{
  background-color: var(--theme-color);
  position: relative;
}
.contact-form-section form .form-title,.contact-form-section form .form-control{
  position: relative;
}
.contact-background-overlay{
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0.4;
}
.contact-form-section form .btn-theme{
  background-color: var(--second-color);
} 

/*top header*/
.top-header{
  border-bottom: 1px solid #000;
}
.top-header.left-curve {
  background-color: var(--theme-color);
  color: #fff !important;
  font-size: 13px;
}
.top-header .top-phone, .top-header .top-email {
  margin-right: 20px;
}
.top-header a, .top-header p {
  color: #fff;
  font-size: 16px;
  display: inline-block;
}
.top-header .socials {
 list-style: none;
 padding: 0;
 display: flex;
 align-items: center;
 flex-wrap: wrap;
 margin-bottom: 0;
 float: right;
}
.socials li {
  display: inline-block;
}
.socials li a {
  text-align: center;
  line-height: 26px;
  display: inline-block;
  font-weight: 600;
  font-size: 13px;
  color: var(--second-color);
  border-radius: 4px;
  transition: background 0.5s;
  -webkit-transition: background 0.5s;
}
.socials li a i{
  color: var(--second-color);
}
.socials a, .socials a i, .socials a:hover, .socials a:focus {
  color: #ffffff;
}
.top-header .text-lg-start i {
  margin-right: 5px;
}
.enquiry-btn{
  background-color: var(--theme-color);
  padding: 6px 15px;
  border-radius: 5px;
  border: 2px solid var(--theme-color);
  transition: 0.3s linear;
}
.enquiry-btn:hover {
  color: var(--theme-color);
  background-color: transparent;
}

/*about new*/
.image-column .inner-column {
  position: relative;
  padding-right: 110px;
  padding-bottom: 60px
}

.image-column .image-1 {
  position: relative;
  display: inline-block;
  margin-bottom: 0
}

.image-column .image-1:before {
  position: absolute;
  right: -55px;
  bottom: -45px;
  width: 100px;
  height: 185px;
  background-image: url(../images/shapes/dots-3.png);
  content: ""
}

.image-column .image-1 img {
  border-radius: 10px;
  width:500px;
  height: 536px;
  object-fit: cover;
}

.image-column .image-2 {
  position: absolute;
  right: 0;
  top: -40px;
  margin-bottom: 0
}

.image-column .image-2:before {
  position: absolute;
  right: 100px;
  bottom: -80px;
  width: 20px;
  height: 60px;
  background-color: var(--theme-color);
  content: ""
}

.image-column .image-2 img {
  width: 320px;
  height: 294px;
  border-radius: 15px;
  object-fit: cover;
}

/*servicesection*/
.service-block .inner-box {
  position: relative;
  background-color: #fff;
/*    border: 1px solid #e2e2e2;*/
padding: 45px 25px 70px 50px;
-webkit-transition: all 300ms ease;
transition: all 300ms ease;
border-radius: 10px;
overflow: hidden
}

.service-block .inner-box::before {
  position: absolute;
  width: 124px;
  height: 121px;
  left: 0;
  top: 0;
  background-image: url(../images/shapes/dots.png);
  content: ""
}

.service-block .inner-box:hover {
  -webkit-box-shadow: 0 10px 60px rgba(0,0,0,.1);
  box-shadow: 0 10px 60px rgba(0,0,0,.1);
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px)
}

.service-block .inner-box:hover .icon-box {
  background-color: var(--theme-color)
}



.service-block .icon-box {
  position: absolute;
  right: -52px;
  bottom: -52px;
  height: 210px;
  width: 210px;
/*    background: #f3f3f3;*/
background-size: cover;
-webkit-transition: all 300ms ease;
transition: all 300ms ease;
padding: 40px 50px;
border-radius: 50%
}

.service-block .title {
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 14px
}

.service-block .title:hover {
  color: var(--theme-color)
}

.service-block .text {
  position: relative;
  margin-bottom: 60px
}


/*cab services section new*/
.services-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.services-one__img {
  position: relative;
  display: block;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  overflow: hidden;
  z-index: 1;
}

.services-one__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgb(25 24 37 / 30%);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  opacity: 1;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 1;
}

.services-one__single:hover .services-one__img:before {
  transform: scaleY(1.0);
}

.services-one__img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.services-one__single:hover .services-one__img img {
  transform: scale(1.1) rotate(2deg);
}

.services-one__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  padding: 40px 40px 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__single:hover .services-one__content {
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .10);
}

.services-one__title-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 21px;
}

.services-one__title-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.services-one__title-icon:before {
  position: absolute;
  top: 0;
  right: -20px;
  bottom: 0;
  width: 1px;
  content: "";
  background-color: #dcdce0;
}

.services-one__title-icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--theme-color);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1) rotateY(0deg);
}

.services-one__single:hover .services-one__title-icon span {
  transform: scale(.9) rotateY(360deg);
  color: #000;
}

.services-one__title {
  font-size: 25px;
  font-weight: 800;
  line-height: 31px;
  margin-left: 40px;
}

.services-one__title a {
  color: #000;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__single:hover .services-one__title a {
  color: var(--theme-color);
}

.services-one__text {
  font-weight: 500;
  line-height: 32px;
  margin: 0;
}

.services-one__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #dcdce0;
  padding-top: 20px;
  margin-top: 19px;
}

.services-one__read-more {
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: inline-block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__single:hover .services-one__read-more {
  color: var(--theme-color);
}

.services-one__arrow {
  position: relative;
  height: 32px;
  width: 45px;
  background-color: #fcf5f3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #000;
  font-size: 16px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.services-one__single:hover .services-one__arrow {
  color: #fff;
}

.services-one__arrow:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  background-color: var(--theme-color);
  border-radius: 15px;
  transform: scale(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.services-one__single:hover .services-one__arrow:before {
  transform: scaleX(1.0);
}

/*testimonial-section new*/

.testimonial-section-new{
  background-color: #f6f6f6;
}
.testimonial-block {
  position: relative;
  padding: 60px 0 0
}

.testimonial-block .inner-box {
  position: relative;
  background-color: #fff;
  border-top: 12px solid var(--theme-color);
  padding: 30px 50px 45px;
  margin-bottom: 30px;
  border-radius: 10px
}

.testimonial-block .inner-box:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 138px;
  height: 96px;
  background-color: #f3f3f3;
  border-radius: 0 0 500px 0;
  content: ""
}

.testimonial-block .image-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  padding-left: 110px;
  align-items: center;
  margin-bottom: 25px
}

.testimonial-block .image-box .image {
  position: absolute;
  left: -10px;
  top: -100px;
  margin-bottom: 0;
  height: 132px;
  width: 132px;
  padding: 12px
}

.testimonial-block .image-box .image:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 50%;
  width: 100%;
  background-color: var(--theme-color);
  border-radius: 120px 120px 0 0;
  content: ""
}

.testimonial-block .image-box .image img {
  position: relative;
  height: 100%;
  width: 100%;
  border: 5px solid #fff;
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-box-shadow: 0 10px 60px rgba(0,0,0,.1);
  box-shadow: 0 10px 60px rgba(0,0,0,.1)
}

.testimonial-block .name {
  margin-bottom: 2px;
  font-size: 24px;
  font-weight: 600;
}

.testimonial-block .designation {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 26px;
  color: #6a6a6a;
  font-weight: 400
}

.testimonial-block .rating {
  position: relative;
  color: #ffba25;
  font-size: 14px;
  letter-spacing: .05em
}

/*cab section*/
.cab-service-section .inner-box {
  position: relative
}

.cab-service-section .inner-box:hover .image-box .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.cab-service-section .inner-box:hover .info-box:after {
  height: 100%;
}

.cab-service-section .inner-box:hover .info-box .title {
  color: #fff;
}

.cab-service-section .inner-box:hover .info-box .icon img {
  -webkit-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}

.cab-service-section .image-box {
  position: relative;
  padding-bottom: 30px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.cab-service-section .image-box .image {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}

.cab-service-section .image-box .image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  border-radius: 4px;
}

.cab-service-section .info-box {
  position: absolute;
  right: 17px;
  left: 17px;
  bottom: -18px;
  background-color: #fff;
  padding: 29px 28px 36px 120px;
  -webkit-box-shadow: 0 10px 60px rgba(0,0,0,.1);
  box-shadow: 0 10px 60px rgba(0,0,0,.1);
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

@media(max-width: 575.98px) {
  .cab-service-section .info-box {
    padding:29px 28px 36px 108px
  }
}

.cab-service-section .info-box:before {
  content: "";
  position: absolute;
  background: var(--theme-color);
  left: -17px;
  bottom: 0;
  width: 83px;
  height: 100%;
  -webkit-transform: skew(16deg,0deg);
  transform: skew(16deg,0deg)
}

.cab-service-section .info-box:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  background-color: var(--second-color);
  content: "";
  z-index: -1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease
}

.cab-service-section .info-box .icon {
  border: 3px solid #fff;
  background-color: var(--theme-color);
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  position: absolute;
  left: 40px;
  top: 27px;
  height: 61px;
  width: 61px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.cab-service-section .info-box .icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.cab-service-section .info-box .title {
  display: inline-block;
  font-weight: 700;
  /* letter-spacing: -.1px; */
  line-height: 20px;
  margin-bottom: 0;
  z-index: 1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-size: 20px;
  position: relative;
  top: 8px;
}

@media(max-width: 1199.98px) {
  .cab-service-section .info-box .title {
    font-size:16px
  }
}

.cab-service-section .info-box .read-more {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  right: 21px;
  top: 34px;
  height: 45px;
  width: 45px;
  background-color: #f8f5f1;
  color: #000;
  font-size: 20px;
  z-index: 1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease
}

.cab-service-section .info-box .read-more:hover {
  background-color: var(--theme-color);
  color: #fff;
}

/*outstation taxi service*/
.outstation-taxi-service .service-block .inner-box{
  padding: 25px!important;
  background-color: var(--theme-color);
  color: #fff;
}
.outstation-taxi-service .service-block .inner-box .title{
  color: #fff!important;
}
.outstation-taxi-service .inner-box .text{
  margin-bottom: 0;
}

/*one-way-taxi-service*/
.one-way-taxi-service ul li a{
  color: #000;
  font-size: 20px;
  transition: 0.3s linear;
}
.one-way-taxi-service ul li a:hover{
  color: var(--theme-color);
}

/*sidelist*/
.service-details__sidebar-service-list {
  margin: 0;
}

.service-details__sidebar-service-list li+li {
  margin-top: 15px;
}

.service-details__sidebar-service-list li a {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  background-color: #fff;
  border-radius: 30px;
  padding: 15px 20px;
}

.service-details__sidebar-service-list li a:hover {
  color: #fff;
  background-color: var(--theme-color);
}

.service-details__sidebar-service-list li a span {
  height: 32px;
  width: 45px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: #000;
  background-color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 15px;
}

.service-details__sidebar-service-list li a:hover span {
  transform: translateY(-50%);
  color: #fff;
  background-color: var(--second-color);
}

/*provide-taxi-section*/
.provide-taxi-section .card{
  text-align: center;
  padding: 10px;
  height: 100%;
}
.provide-taxi-section .card img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
}
.provide-taxi-section .card .card-title{
  font-size: 20px;
  color: #000;
  font-weight: 700;
  margin-bottom: 30px;
}
.provide-taxi-section .card .btn-theme{
  padding: 10px 30px ;
}


/*about*/
.img-box1 {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 30px;
  margin-right: 50px;
  position: relative
}

@media (max-width: 575px) {
  .img-box1 {
    gap:8px
  }
}

@media (max-width: 1299px) {
  .img-box1 {
    margin-right:0
  }
}

.img-box1 .box-shape {
  top: -35px;
  left: -80px;
  position: absolute
}

.img-box1 .img1 {
  padding: 15px 0 15px 12px;
  border: 2px dashed var(--theme-color);
  border-radius: 10px;
  position: relative
}

.img-box1 .img1:before {
  content: '';
  height: 140px;
  width: 240px;
  max-width: 90%;
  position: absolute;
  bottom: -2px;
  left: -2px;
  background-color: var(--theme-color);
  border-radius: 0 0 0 10px
}

.img-box1 .img1 img {
  border-radius: 10px;
  -webkit-transform: translateX(2px);
  -ms-transform: translateX(2px);
  transform: translateX(2px);
  height: 100%;
  object-fit: cover;
  width: 350px;
}

.img-box1 .img2 {
  margin-top: 30px
}

@media (max-width: 575px) {
  .img-box1 .img2 {
    margin-top:8px
  }
}

.img-box1 .img2 img {
  border-radius: 10px;
  width: 100%;
}

.feature-circle {
  background-color: #fff;
  text-align: center;
  padding: 35px 8px;
  border: 2px dashed var(--theme-color);
  border-radius: 10px
}

.feature-circle .box-title {
  font-size: 20px;
  margin: 5px 0 -0.3em 0
}

.feature-circle .circle {
  position: relative
}

.feature-circle .circle-num {
  color: #000;
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

.spin {
  -webkit-animation: spin 10s linear infinite;
  animation: spin 10s linear infinite;
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0)
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

/*===============icon box=======*/
.service-section-new .icon-box{
  background-color: #FFFFFF;
  padding: 25px 40px;
  box-shadow: 0px 10px 60px 0px rgba(67, 67, 67, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.service-section-new .icon-box::before {
  width: 100%;
  height: 100%;
  background-color: var(--theme-color);
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  transition: all 0.3s ease;
  z-index: 1;
  transform: scale(1, 0);
  transform-origin: bottom;
  transition: transform 500ms ease;
}
.service-section-new .icon-box::after {
  width: 90%;
  height: 5px;
  background-color: var(--theme-color);
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  content: "";
}
.service-section-new .icon-box:hover:after {
  height: 0px;
  transition: transform 500ms ease;
}
.service-section-new .icon-box:hover:before {
  transform: scale(1, 1);
  transform-origin: bottom;
}
.service-section-new .icon-box .icon-box-content .title{
  font-size: 24px;
  font-weight: 700;
}
.service-section-new .icon-box:hover .mask-bg-iconbox, .icon-box:hover .icon, .icon-box:hover .title, .icon-box:hover .des, .icon-box:hover .btn-icon-box {
  color: #FFFFFF;
  z-index: 1;
}
.service-section-new .icon-box:hover .btn-icon-box {
  border: 2px solid #FFFFFF;
}
.service-section-new .icon-box:hover .mask-bg-iconbox {
  opacity: 0.5;
}
.service-section-new .icon-box .mask-bg-iconbox {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  color: #020101;
  opacity: 0.3;
}
.service-section-new .icon-box .icon img{
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.3s;
}

.mb-30 {
  margin-bottom: 30px;
}
.service-section-new .icon-box .btn-icon-box {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  padding: 16px 38px;
  display: inline-block;
  border: 2px solid rgba(51, 51, 51, 0.1);
}
.service-section-new .icon-box .btn-icon-box:hover {
  background-color: #FFFFFF;
  color: #222222;
}
.service-section-new .icon-box .icon-box-content {
  position: relative;
  z-index: 3;
}

.service-section-new .icon-box .btn-icon-box i {
  font-size: 12px;
} 


/*cab services*/
.service-card {
  position: relative;
  text-align: center;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.05);
  background-color: #fff;
  border-radius: 10px;
  z-index: 2
}

.service-card .box-img {
  -webkit-clip-path: polygon(100% 0, 100% 100%, calc(100% - 100px) 100%, 50% calc(100% - 32px), 100px 100%, 0 100%, 0 0);
  clip-path: polygon(100% 0, 100% 100%, calc(100% - 100px) 100%, 50% calc(100% - 32px), 100px 100%, 0 100%, 0 0);
  border-radius: 10px 10px 0 0;
  overflow: hidden
}

.service-card .box-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out
}

.service-card .box-content {
  padding: 0 30px 40px 30px
}

.service-card .box-icon {
  border-radius: 99px;
  margin: -16px auto 2px auto;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  font-size: 30px;
  color: var(--theme-color);
}

.service-card .box-title {
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 600;
}
.service-card .box-title a{
  color: #000;
  transition: 0.3s linear;
}
.service-card:hover a {
  color: var(--theme-color)
}

.service-card .box-text {
  margin-bottom: 22px
}

.service-card:hover .box-img img {
  transform: scale(1.1)
}

.service-card:hover .box-icon img {
  transform: rotateY(180deg)
}


/*testimonial new*/
#testimonial-1 .author-wrap {
  display: flex;
  align-items: center;
}
#testimonial-1 .author-thumb img {
  width: 70px !important;
  height: 70px;
  border-radius: 50%;
}
#testimonial-1 .author-desc {
  padding-left: 20px;
}
#testimonial-1 .author-desc .h5 {
  font-size: 20px;
}
#testimonial-1 .author-desc span {
  font-size: 15px;
  color: #898a9c;
}
#testimonial-1 .single-testimonial-item {
  background: #fff;
  padding: 65px 50px 70px;
  position: relative;
  z-index: 1;
  margin-top: 50px;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid #f6f6f6;
  transition: 0.3s;
}
@media (max-width: 767px) {
  #testimonial-1 .single-testimonial-item {
    padding: 60px 45px;
  }
}
#testimonial-1 .single-testimonial-item p {
  margin-bottom: 50px;
  font-size: 17px;
}
#testimonial-1 .testimonial-icon i {
  font-size: 25px;
  background: var(--theme-color);
  padding: 15px;
  position: absolute;
  top: -20px;
  color: #fff;
  z-index: 9;
}
#testimonial-1 .single-testimonial-item::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 4px;
  background-color: var(--theme-color);
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  visibility: hidden;
}
#testimonial-1 .single-testimonial-item:hover::before {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

/*provide taxi service*/
.icon-box2 {
  border-radius: 117px;
  background-color: #FFFFFF;
  padding: 60px 45px;
  box-shadow: 0px 10px 60px 0px rgba(67, 67, 67, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
  height: 100%;
}
.icon-box2::after {
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme-color);
  left: 0;
  right: 0;
  top: -100%;
  position: absolute;
  transition: all 0.4s ease-in-out;
}
.icon-box2::before {
  border: 1px dashed rgba(2, 6, 38, 0.1);
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  border-radius: 117px;
  margin: 15px;
  content: "";
  z-index: 1;
}
.icon-box2:hover::before {
  border: 1px dashed #FFFFFF;
}
.icon-box2:hover::after {
  top: 0px;
}
.icon-box2:hover .icon, .icon-box2:hover .title {
  color: #FFFFFF;
  z-index: 2;
  position: relative;
}
.icon-box2:hover .check {
  background-color: #D2A98E;
  z-index: 1;
  position: relative;
}
.icon-box2:hover .icon {
  transform: rotateY(180deg);
}
.icon-box2 .icon {
  margin-bottom: 10px;
  color: var(--theme-color);
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}
.icon-box2 .icon img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 55px 55px 20px 20px;
}
.icon-box2 .title {
  margin-bottom: 10px;
  text-align: center;
  z-index: 2;
  font-size: 23px;
  font-weight: 600;
}

/*cab-service-section*/
.cab-service-section{
  background: linear-gradient(rgba(44, 44, 44, 0.6),rgba(44, 44, 44, 0.6)),url(../images/bg/cabs.avif) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.cab-service-section .card{
  padding: 10px;
  text-align: center;
}
.cab-service-section .card img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
}
.cab-service-section .card .card-title{
  font-size: 22px;
  font-weight: 600;
  margin-top: 10px;
}
.cab-service-section .card .card-body{
  padding: 0;
}
.btngroup{
  display: flex;
  gap: 10px;
  font-size: 13px;
}
.btngroup .btn-theme{
  padding: 10px 3px;
  width: 100%;
  text-align: center;
}

.amazing-trip .shadow-box{
  background: #FFF;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.09);
  border-radius: 5px;
  position: relative;
  display: block;
  color: #000;
  padding: 4px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  border-radius: 5px;
  position: relative;
  height: 100%;
  border: dashed 3px #dfdfdf;
  text-align: center;
  background-color: #F5F5F5;
}
.amazing-trip .shadow-box img{
  width: 100%;
  height: 100px;
  border-radius: 5px;
}
.amazing-trip .h4{
  margin-bottom: 0;
}

/*about image*/
.p-relative {
  position: relative;
}
.about-2-image-area .main-image{
  text-align: center;
  padding-left: 20px;
}

.about-2-image-area .main-image img {
  border-radius: 0 100px 0 0;
  width: 90%;
  height: 548px;
  object-fit: cover;
}

.about-2-image-area .small-image {
  position: absolute;
  display: inline-block;
  bottom: 40px;
  right: -10px;
  border: 12px solid #fff;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
  width: 50%;
}
.about-2-image-area .small-image img{
  width: 100%;
}

.about-2-image-area .icon-box {
  background: var(--theme-color);
  display: flex;
  padding: 20px 10px;
  justify-content: flex-start;
  align-items: center;
  gap: 26px;
  position: absolute;
  transform: rotate(270deg);
  top: 50%;
  left: -87px;
  max-width: 322px;
}

.about-2-image-area .icon-box .icon {
  color: var(--theme-color);
  font-size: 60px;
  padding: 25px 30px;
  background: #fff;
  display: inline-block;
  transform: rotate(90deg);
}

.about-2-image-area .icon-box h3 {
  color: #fff;
}

.about-2-image-area .icon-box p {
  color: #fff;
  margin: 0;
}

.about-2-image-area .shape-1 {
  position: absolute;
  top: 55px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
}

/*OUR SERVICES NEW*/
.team-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-one__single-inner {
  position: relative;
  display: block;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  height: 100%;
}

.team-one__single-img {
  position: relative;
  display: block;
}

.team-one__single-img .btn-box {
  position: absolute;
  left: 0;
  bottom: -25px;
  right: 0;
  margin: 0 auto;
  z-index: 5;
}

.team-one__single-img .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  display:none;
}


.team-one__single-img .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: var(--theme-color);
  font-size: 15px;
  font-weight: 700;
}

.team-one__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.team-one__single-img .inner:before {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  right: 0px;
  flex-wrap: wrap;
  background: var(--theme-color);
  z-index: 1;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.team-one__single:hover .team-one__single-img .inner:before {
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.team-one__single-img .inner img {
  width: 100%;
  transition: all 700ms ease;
  height: 200px;
  object-fit: cover;
}

.team-one__single:hover .team-one__single-img .inner img {
  transform: scaleY(1.1);
}

.team-one__single-content {
  position: relative;
  display: block;
  text-align: center;
  background: #f7f7f7;
  padding: 33px 10px 20px;
  z-index: 1;
}

.team-one__single-content .shape1 {
  position: absolute;
  top: 30px;
  left: 15px;
  z-index: -1;
}

.team-one__single-content .shape2 {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: -1;
}

.team-one__single-content .h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
}




/*tour places*/
.tour-wrapper.style-six {
  padding: 25px 24px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  box-shadow: none;
  border: 1.5px dashed #4b4e52;
  position: relative;
}
.tour-wrapper.style-six .tour-thumb {
  height: 314px;
  width: 100%;
}
.image-overly a::before {
  position: absolute;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.8;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(180deg, rgba(28, 31, 57, 0) 17.61%, #0d1b2a 100%);
}
.tour-wrapper.style-six .tour-thumb img {
  border-radius: 0;
  width: 100%;
  height: 100%;
}
.tour-thumb a::after, .tour-thumb a::before {
  border-radius: 10px 10px 0 0;
}
.image-overly {
  position: relative;
  overflow: hidden;
}

.image-overly a::after {
  position: absolute;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
/*    border-radius: 10px;*/
transition: all 0.3s ease-in-out;
background: linear-gradient(180deg, rgba(0, 108, 228, 0) 0%, rgba(0, 108, 228, 0.75) 100%);
}
.tour-content-wrapper .tour-title{
  margin-top: 20px;
  margin-bottom: 10px;
}
.tour-content-wrapper .tour-title a{
  font-size: 28px;
  color: #000;
  font-weight: 600;
  line-height: 1.2;
}
.tour-wrapper.style-six:hover .tour-thumb a::before {
  opacity: 0;
}
.tour-wrapper.style-six:hover .tour-thumb a::after {
  opacity: 1;
}
.tour-wrapper.style-six:hover {
  border: 1.5px dashed transparent;
  box-shadow: 0px 4px 70px rgba(0, 0, 0, 0.15);
}

/*testimonial*/
.testimonial-style-four:not(:last-child) {
  margin-bottom: 24px;
}
.testimonial-style-four {
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 70px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}
.testimonial-style-four:nth-child(2n+1) {
  margin-inline-start: 96px;
}
.testimonial-style-four .testimonial-content {
  background-color: transparent;
  border: 1px solid #e2e4e7;
  padding: 24px 30px;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}

.testimonial-style-four .testimonial-content p {
  margin-bottom: 20px;
}
.testimonial-avatar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.testimonial-avatar-wrap {
  display: flex;
  gap: 16px;
  align-items: center;
}
.avatar-thumb {
  max-width: 60px;
}
.bdevs-el-image img {
  border-radius: 50px 50px 50px 50px;
  width: 100%;
}
.rating-color {
 color: #fec300; 
}
.fs-14 {
  font-size: 14px;
}
.avatar-meta-title{
  font-size: 20px;
  font-weight: 600;
  color: #000;
}
.testimonial-style-four:hover .testimonial-content {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #fff;
}

/*about images*/
.about-thumb-wrap {
  position: relative;
}
.about-thumb-wrap .img-1 {
  bottom: -53px;
  left: -39px;
  position: absolute;
  z-index: -1;
}
.about-thumb-wrap .img-2 {
  width: 470px;
  height: 500px;
  object-fit: cover;
}
.about-thumb-wrap .img-3 {
  margin-bottom: -75px;
  margin-left: -215px;
  vertical-align: bottom;
  width: 375px;
  height: 270px;
  object-fit: cover;
  border: 10px solid #fff;
}
.about-thumb-wrap .exprience-wrap {
  display: inline-block;
  position: absolute;
  right: -20px;
  text-align: center;
  top: 17px;
}
.about-thumb-wrap .exprience-wrap img {
  margin-bottom: -15px;
}
.about-thumb-wrap .exprience-wrap .details {
  background: url(../images/abouts/shape-2.png);
  background-position: 50%;
  background-size: cover;
  padding: 45px 30px;
}
.about-thumb-wrap .exprience-wrap .details h1 {
  color: #fa4318;
  color: var(--theme-color);
  font-size: 64px;
  font-weight: 900;
  line-height: 83px;
  margin-bottom: 0;
}
.about-thumb-wrap .exprience-wrap .details p {
  color: #080c24;
  color: var(--heading-color);
  font-weight: 600;
  line-height: 19px;
}

/*testimonial new*/
.single-testimonial-wrap {
  background: rgba(8, 12, 36, 0.05);
  border-radius: 25px;
  padding: 40px;
}
.single-testimonial-wrap .icon {
  position: absolute;
  width: 60px;
  height: 60px;
  padding: 10px;
  top: 0px;
  right: 0px;
  background: var(--theme-color);
  border-radius: 5px;
  border-top-right-radius: 27px;
}
.single-testimonial-wrap .icon img {
  width: 100%;
  height:100%;
}
.single-testimonial-wrap p {
  border-left: 3px solid #fa4318;
  border-left: 3px solid var(--theme-color);
  color: #4d5765;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0;
  padding-left: 7px;
}
.ratting_li{
  padding: 0;
  font-size: 16px;
  color: gold;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 3px;

}
.ratting_li li{
  list-style: none;
}
.single-testimonial-wrap .client-wrap {
  text-align: center;
}
.single-testimonial-wrap .client-wrap .thumb {
  flex: none;
}
.single-testimonial-wrap .client-wrap .thumb img {
  width: 60px;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
}
.single-testimonial-wrap .client-wrap .details .h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 31px;
  margin-bottom: 3px;
  color:#000;
}
.single-testimonial-wrap .client-wrap .details p {
  border: 0;
  color: #4d5765;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  padding-left: 0;
}
/*amazing trip*/
.service-area.style-2 .single-service-wrap {
  margin-bottom: 40px;
  margin-top: 0;
  -webkit-transform: none;
  transform: none;
}
.service-area.style-2 .single-service-wrap .details {
  padding: 40px 29px 30px;
}
.single-service-wrap {
  position: relative;
  z-index: 1;
  background-color: #fff;
}
.single-service-wrap:hover .thumb:after,
.single-service-wrap:hover .thumb:before {
  border-color: transparent transparent transparent #fa4318;
  border-color: transparent transparent transparent var(--theme-color);
}
.single-service-wrap:hover .details {
  background: #fa4318;
  background: var(--theme-color);
}
.single-service-wrap:hover .details .h5,
.single-service-wrap:hover .details p {
  color: #fff;
}
.single-service-wrap:hover .details p {
  border-bottom-color: #fff;
}
.single-service-wrap:hover .details .btn-wrap .read-more-text {
  color: #fff;
}
.single-service-wrap:hover .details .btn-wrap .read-more-text span {
  background: #fff;
  color: #fa4318;
  color: var(--theme-color);
}
.single-service-wrap .thumb {
  margin: 0 30px;
  position: relative;
  z-index: 0;
  padding-top:30px;
}
.single-service-wrap .thumb:after {
  left: -30px;
}
.single-service-wrap .thumb:after,
.single-service-wrap .thumb:before {
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 40px 0 0 39px;
  bottom: 68px;
  content: "";
  height: 0;
  position: absolute;
  transition: all 0.3s ease-in;
  width: 0;
  z-index: -1;
}
.single-service-wrap .thumb:before {
  right: -30px;
  -webkit-transform: translateY(-175%);
  transform: rotate(270deg);
}
.single-service-wrap .thumb img {
  width: 100%;
  height:300px;
  object-fit:cover;
}
.single-service-wrap .thumb .icon {
  border: 8px solid var(--theme-color);
  background: #fff;
  border-radius: 50%;
  height: 70px;
  line-height: 50px;
  margin-bottom: -70px;
  margin-left: auto;
  position: relative;
  right: 20px;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 70px;
}
.single-service-wrap .thumb .icon img {
  width: 40px;
  height:40px;
}
.single-service-wrap .details {
  background: #fff;
  box-shadow: 0 6px 30px rgba(0, 35, 90, 0.08);
  padding: 32px 29px 30px;
  transition: all 0.3s ease-in;
}
.single-service-wrap .details .h5 {
  line-height: 31px;
  margin-bottom: 8px;
  transition: all 0.3s ease-in;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}
.single-service-wrap .details p {
  border-bottom: 1px solid rgba(8, 12, 36, 0.15);
  line-height: 26px;
  margin-bottom: 20px;
  padding-bottom: 17px;
  transition: all 0.3s ease-in;
}
.single-service-wrap .details .btn-wrap .read-more-text {
  color: #080c24;
  color: var(--heading-color);
  display: flex;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease-in;
}
.single-service-wrap .details .btn-wrap .read-more-text:after {
  display: none;
}
.single-service-wrap .details .btn-wrap .read-more-text span {
  color: #fff;
  display: inline-block;
  height: 26px;
  line-height: 26px;
  transition: all 0.3s ease-in;
  width: 26px;
}
.service-details-wrap .thumb .icon,
.single-service-wrap .details .btn-wrap .read-more-text span {
  background: #fa4318;
  background: var(--theme-color);
  border-radius: 50%;
  margin-left: auto;
  text-align: center;
}
.service-details-wrap .thumb .icon {
  height: 70px;
  line-height: 68px;
  margin-bottom: -70px;
  position: relative;
  right: 50px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 70px;
}
.service-details-wrap .thumb .icon img {
  width: auto;
}
.service-details-wrap h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  margin-bottom: 9px;
  margin-top: 28px;
}
.service-details-wrap p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 18px;
}
.service-details-wrap p.last-para {
  margin-bottom: -8px;
}
/*services section*/



/*footer contact*/
.footer-top {
  background-position: 50%;
  border-bottom: 1px solid hsla(0, 0%, 100%, .2);
  margin-bottom: 30px;
  padding: 37px 0 0;
}
.footer-top .single-footer-top {
  display: flex;
  margin-bottom: 33px;
  position: relative;
}
.footer-top .single-footer-top .icon {
  background: var(--theme-color);
  border-radius: 5px;
  flex: none;
  height: 80px;
  line-height: 80px;
  margin: 6px 20px 0 6px;
  position: relative;
  text-align: center;
  width: 80px;
}
.footer-top .single-footer-top .icon:after {
  background: #fa4318;
  border-radius: 5px;
  content: "";
  height: 80px;
  left: -6px;
  opacity: .3;
  position: absolute;
  top: -6px;
  width: 80px;
}
.footer-top .single-footer-top .details .h6 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 4px;
}
.footer-top .single-footer-top .details p {
  color: #d6d6d6;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
}
.footer-top .single-footer-top:after {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD4AAACiCAYAAAAZZX58AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAANBSURBVHgB7Z27bhtBDEWvNkCAAEnlKt3UAfL/vzNVOlcpUirDhIJpWY99zIPk8ACrMdZqDq4OpEoCCufz+RMmYynSX8r5o5yfMRHL6XT6U87XciVMxEIPRf4XnWX175iERfydy/VS5L9hNki6XD9n6F0uTi/535ik9+X6xiy9L3fuZ0TvPnu/t7j73pdH//Tc+7LiORnRu5/e1yzusvdV4oS33leLMxnRu+3ety7upvfN4oSH3neJMxnRu73ejyxuuvdD4oTV3g+LMxnRu43eay1urvdq4oSl3quKMxnRu97eWyxuovcm4oT23puJMxnRu67eWy+utvfm4oTG3ruIMxnR+/jeey6uqveu4oSW3ruLMxnR+5jeRy0+vPdh4sTI3oeKMxnRe7/eNSw+pHcV4kTv3tWIMxnRe9vetS3erXd14kSP3lWKMxnRe/3eNS/etHfV4kSr3tWLMxnRe53erSxevXcz4kTN3k2JMxnR+/7eLS5epXeT4sTR3s2KMxnR+7berS++u3fz4sSe3l2IMxnR+/PePS2+qXdX4sTa3t2JMxnR++3evS7+tHe34sSj3l2LMxnR+1vvMyx+s/cpxInr3qcRZzK499nEiRM9zCaeyvVKzU8jfmn70voU4kX6azle8L/xOaD3bn4Pf/cBZobFE7hredO1+HXXErfi0fUdvC6ecKNriTvxR11LXIlH1yvwtHjCk64lLsTXdi0xLx5db8T64gkbupaYFd/TtcSkeHR9AIuLJ+zsWmJK/GjXEjPi0XUlrCyeUKFriXrxml1LVItH1w3QvHhC5a4lKsVbdS1RJx5dN0bb4gkNu5aoEe/RtUSFeHTdEQ2LJ3TqWjJUvHfXkmHi0fUgRi2eMKBrSXfxkV1LuopH1wrouXjC4K4lXcS1dC1pLh5dK6P14gmKupY0E9fYtaSJeHStmBaLJyjtWlJVXHvXkmri0bURai2eYKBryWFxS11LDolH1wY5sniCsa4lu8Stdi3ZLB5dG2fr4gmGu5asFvfQtWSVeHTtiDWLJzjpWvJQ3FvXkrvi0bVT7i2e4LBryQdxz11L3olH1xMgF09w3rXkn/gsXUsW/jq/ubq+cFb22+A9+Avi7Ps2zpCveAAAAABJRU5ErkJggg==);
  content: "";
  height: 160px;
  position: absolute;
  right: 0;
  top: -38px;
  width: 61px;
}
.footer-top .single-footer-top.after-none:after {
  display:none;
}


/*=========================================================================
=========================================================================
=========================================================================
=========================================================================*/
.shake {
  -webkit-animation-name: wobble;
  animation-name: wobble;
  -webkit-animation-duration: 0.8s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -webkit-transform-origin: 50% 100%; 
}

@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none; 
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); 
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); 
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); 
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); 
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); 
  }
  100% {
    -webkit-transform: none;
    transform: none; 
  } 
}

.header-call-btn{
  background-color: rgba(255, 200, 21, 0.2);
  border: 1px solid var(--theme-color);
}
.header-call-btn span{
  color: var(--second-color);
}
.header-call-btn:hover span{
  color: #000;
}
header .navbar-nav .header-call-btn:before {
  content: '';
  background: #fff;
  position: absolute;
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  top: -110%;
  left: -10%;
  border-radius: 50%;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}
/*header .navbar-nav .header-call-btn:after{
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background-color: var(--second-color);
  transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  z-index: -1;
}*/

header .navbar-nav .header-call-btn:hover {
  color: #000;
}

/*header .navbar-nav .header-call-btn:hover::after {
  top: -60%;
}*/
header .navbar-nav{
  align-items: center;
}

/*===================outstation-taxi-service=============*/

.feature-eight__single {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  border: 2px solid var(--theme-color);
  border-radius: 20px;
  box-shadow: 26px 23px 30px 0px rgba(0, 0, 0, 0.08);
  transition: all 500ms ease;
  text-align: center;
  overflow: hidden;
}
.feature-eight__single::after {
  background-color: #cca31d;
  position: absolute;
  top: 0;
  height: 0;
  left: 0;
  right: 0;
  content: "";
  transition: all 700ms ease;
  border-radius: 10px;
  z-index: -1;
  opacity: 0;
}
.feature-eight__single:hover {
  border-color: var(--theme-color);
}
.feature-eight__single:hover .feature-eight__single__text {
  color: #ffffff;
}
.feature-eight__single:hover::after {
  opacity: 1;
  height: 100%;
}
.feature-eight__single__title {
  font-size: 18px;
  font-weight: 700;
  margin: 25px 8px 16px;
}
.feature-eight__single__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.feature-eight__single__title a:hover {
  color: #ffffff;
  background-size: 100% 1px;
}
.feature-eight__single:hover .feature-eight__single__title {
  color: #ffffff;
}
.feature-eight__single__text {
  line-height: 30px;
  margin: 0 20px 10px;
  transition: all 300ms ease;
  font-size: 15pxx;
}
.feature-eight__single__icon {
  width: 94px;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 8px solid #ffffff;
  background-color: var(--second-color);
  border-radius: 50%;
  font-size: 44px;
  margin: -50px auto -25px;
  position: relative;
  color: #ffffff;
  z-index: 1;
  transition: all 0.4s ease;
}
.feature-eight__single__icon span {
  display: inline-block;
  transition: all 0.5s ease;
  transform: scale(1);
}
.feature-eight__single:hover .feature-eight__single__icon {
  background-color: var(--theme-color);
}
.feature-eight__single:hover .feature-eight__single__icon span {
  transform: scale(0.9);
}
.feature-eight__single__image {
  position: relative;
  margin: 0 -2px -2px;
  overflow: hidden;
  border-radius: 0;
}
.feature-eight__single__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.feature-eight__single .d-flex{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  justify-content: center;
}
.feature-eight__single .d-flex a span{
  font-size: 15px;
}
/*##################about us#######################*/
.about__img-wrap-two {
  text-align: center;
  position: relative;
  padding: 30px 0;
}
@media (max-width: 991.98px) {

}
@media (max-width: 767.98px) {

}
.about__img-wrap-two > img {
  width: 100%;
  border-radius: 10px;
  border: 4px solid var(--theme-color);
  position: relative;
  z-index: 1;
}
.about__img-wrap-two .shape img {
  position: absolute;
  left: 8%;
  bottom: -3%;
}
@media (max-width: 1199.98px) {
  .about__img-wrap-two .shape img {
    left: -2%;
  }
}
/*.about__img-wrap-two::before {
  content: "";
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 135px;
  height: 100%;
  background: var(--theme-color);
  border-radius: 10px;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .about__img-wrap-two::before {
    right: 0;
  }
}
*/
.experience__box-two {
  position: absolute;
  transform: rotate(180deg);
  left: 11px;
  bottom: 9%;
  padding: 60px;
}
@media (max-width: 767.98px) {
  .experience__box-two {
    display: none;
  }
}

.experience__content {
  display: flex;
  align-items: center;
  gap: 20px;
  writing-mode: vertical-lr;
  position: relative;
}
@media (max-width: 1199.98px) {
  .experience__content {
    left: 42%;
  }
}
.experience__content .title {
  font-size: 50px;
  line-height: 0.8;
  font-weight: 800;
  margin-bottom: 0;
  color: #fff;
  position: relative;
}
.experience__content .title::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -9px;
  width: 34px;
  height: 2px;
  background: var(--second-color);
}
.experience__content p {
  margin-bottom: 0;
  text-align: left;
  color: #fff;
  line-height: 1.2;
}
.experience__shape {
  position: absolute;
  left: 30%;
  top: 0;
  width: 37%;
  height: 100%;
  transform: rotate(180deg);
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .experience__shape {
    left: 63%;
  }
}
.experience__shape svg {
  width: 100%;
  height: 100%;
  color: var(--theme-color);
  overflow: visible;
}

.alltuchtopdown {
  animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
  animation-duration: 3s;
}

@keyframes alltuchtopdown {
  0% {
    transform: rotateX(0deg) translateY(0px);
  }
  50% {
    transform: rotateX(0deg) translateY(-20px);
  }
  100% {
    transform: rotateX(0deg) translateY(0px);
  }
}

.about__content-two .btn-theme{
  display: inline-block;
}

.bg-theme{
  background-color: var(--theme-color);
}
table thead th{
  background-color: var(--theme-color)!important;
  color: #fff!important;
}

/*########################our services##############*/
.service-section-new {
  padding-bottom: 100px;
}
.features__item-two {
  border-radius: 10px;
  border: 1px solid #bababa;
  background: #FFF;
  box-shadow:0px 0px 11px -3px;
  padding: 30px 30px;
  display: block;
  text-align: center;
  gap: 20px;
  margin-top: 30px;
}
.service-section-new .div_top_margin{
  position: relative;
  top: 40px;
}
@media (max-width: 1199.98px) {
  .features__item-two {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .features__item-two {
    flex-wrap: nowrap;
  }
}
.features__icon-two img{
  width: 57px;
}
.features__item-two:hover .features__icon-two img {
  transform: rotateY(180deg);
}
.features__icon-two {
  width: 83px;
  height: 83px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid var(--theme-color);
  background: #fff;
  line-height: 0;
  color: var(--theme-color);
  font-size: 50px;
  margin-bottom: 10px;
}
.features__icon-two i {
  transition: all 0.4s ease-out 0s;
  transform: rotateY(0);
}
.features__content-two .title {
  margin-bottom: 10px;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 600;
  color: #000;
}
.features__content-two p {
  margin-bottom: 0;
  color: var(--font-color);
}

/*our destination*/
.our-destination-area .card{
  border-radius: 2px 15px;
  border: 2px solid var(--theme-color);
  overflow: hidden;
  text-align: center;
  padding: 20px;
}
.our-destination-area .card.border-black{
  border-color: #000;
}
.our-destination-area .card img{
  width: 100%;
  height: 200px;
  object-fit: contain;
}
.our-destination-area .card .card-title{
  font-size: 20px;
  font-weight: 600;
}

.link_section ul{
  margin-bottom: 0;
}
.link_section ul li {
  padding: 10px;
  border: 1px solid #000;
  list-style: none;
  margin-top: 10px;
  border-left: 3px solid var(--theme-color);
  border-radius: 4px;
}
.link_section ul li:hover{
  background-color: #f5f5f5;
  transition: 0.3s;
  transform: translateY(-4px);
}
.link_section ul li a {
  color: var(--font-color);
  display: block;
  font-size: 16px;
  font-weight: 600;
}

/**************cabs section**********************/


.single-team-member .team-img {
  position: relative;
}
.single-team-member .team-img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  height: 200px;
  object-fit: cover;
}
.single-team-member .member-info {
  background-color: #222429;
  max-width: 90%;
  margin: 0 auto;
  padding: 15px;
  border-radius: 5px;
  margin-top: -50px;
  position: relative;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.single-team-member .member-info h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 3px;
}
.single-team-member .member-info p {
  color: #fff;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 25px
}
.single-team-member .member-info:before {
  content: "";
  width: 80%;
  height: 2px;
  background-color: var(--theme-color);
  position: absolute;
  top: 0;left:50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 10px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.single-team-member:hover .team-img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/***********Project Card*************/

.our-destination-area{
}
.project-card-img {
  overflow: hidden;
  height: 250px;
  background: #fff;
  border-top-right-radius: 10px;
}

.project-card-img img {
  width: 70%;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin: auto;
  height: auto;
  top: 50%;
  left: 50%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.project-card-icon {
  border: 7px solid #D4CBB9;
  border-radius: 50%;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  text-align: center;
  line-height: 83px;
  -webkit-transform: translate(45px, -117px);
  -ms-transform: translate(45px, -117px);
  transform: translate(45px, -117px);
  position: relative;
  z-index: 1;
  background: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: none;

}
.our-destination-area .project-card{
  border: 3px solid var(--second-color);  
  border-radius: 2px 15px 2px 15px;
}
.our-destination-area .yellow_card{
  border: 3px solid var(--theme-color);
}

.project-card-icon img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 60px;
  display: none;
}

.project-card-content {
  margin-bottom: 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-size: 15px;
}

@media (max-width: 320px) {
  .project-card-content {
    font-size:14px
  }
}

.project-card-details {
  background: #fff;
  padding: 18px;
  -webkit-transition: 0.4s;
  position: relative;
  transition: 0.4s;
  background-color: #fff;
  background: #fff;
  bottom: 4%;
  left: 0%;
  border-bottom-left-radius: 13px;
}
.project-card .box-title {
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .project-card .box-title {
    font-size:16px
  }
}

@media (max-width: 320px) {
  .project-card .box-title {
    font-size:16px
  }
}




.project-card:hover .project-card-icon {
  border-color: #fff;
  background: var(--theme-color)
}

.project-card:hover .project-card-icon img {
  -webkit-filter: invert(1);
  filter: invert(1);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg)
}

.project-card:hover .project-card-details {
  background-color: var(--theme-color)
}

.project-card:hover .box-title {
  color: #fff
}


.project-card:hover .project-card-content {
  color: #fff
}

.project-card:hover .btn-theme{
  background-color: var(--second-color);
}
.project-card-details .btn-theme:after{
  background-color: #fff;
  z-index: -1;
}

/*************FAq*************/


.faqs__area-six .accordion-item h6 {
  margin-bottom: 10px;
}
.faqs__area-six .accordion-item h2 {
  margin-bottom: 45px;
}
.faqs__area-six h5 {
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 0;
}
.faqs__area-six .accordion-item {
  margin-bottom: 20px;
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 1px 94px 1px rgb(0 0 0 / 5%);
}
.faqs__area-six .accordion-item button{
  border-radius: 10px;
}
.faqs__area-six .accordion-item:last-child {
  margin-bottom: 0;
}
.faqs__area-six .accordion-item .btn-link h5 {
  color: var(--e-global-color-accent);
}
.faqs__area-six .accordion-item .collapsed h5 {
  color: var(--e-global-color-secondary);
}


.faqs__area-six .accordion-button.collapsed {
  border: none; 
}
.faqs__area-six .accordion-item:not(.collapse) {
  border: 1px solid transparent;
}
.faqs__area-six .accordion-item:has(.collapse) {
  border: 1px solid var(--theme-color);
}
.faqs__area-six .accordion-item{
  border: none;
}
.faqs__area-six .accordion-item .accordion-body{
  padding: 0 1.25rem 1rem;
}
.faqs__area-six .accordian-inner .card-header {
  padding: 0;
  margin-bottom: 0;
  background: none;
  border: none;
}
.faqs__area-six .accordian-inner .card-header a {
  padding: 22px 26px;
}
.faqs__area-six .accordian-inner .card-body {
  padding: 0 26px 20px;
}
.accordion-item:first-of-type>.accordion-header .accordion-button{
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
}
.accordion-item:last-of-type>.accordion-header .accordion-button{
  border-bottom-left-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}
.faqs__area-six .accordion-item a.btn.btn-link:focus {
  outline: none;
  box-shadow: none;
}
.accordion-button:focus{
  box-shadow: none !important;
}
.faqs__area-six .accordian-inner .accordion-item i {
  position: absolute;
  right: 20px;
  margin: -6px 0;
}
.faqs__area-six .accordian-inner .accordion-item .btn {
  text-decoration: none;
  text-align: left;
  display: block;
  border-radius: 10px;
}
.faqs__area-six .accordion-item a.btn.btn-link {
  position: relative;
}

.faqs__area-six ..accordion-button:focus{
  border: none !important;
  box-shadow: none !important;
}
.faqs__area-six ..accordion-button{
  border: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.accordion-button:not(.collapsed){
 border: none !important;
 box-shadow: none !important;
 color: var(--theme-color);
 background-color: transparent !important;
}
.box-need-help img{
  width: 100%;
  height: 100%;
  border-radius: 20px;
}



.service-page .accordion-item h6 {
  margin-bottom: 10px;
}

.service-page h5 {
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 0;
}
.service-page .accordion-item {
  margin-bottom: 20px;
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 1px 94px 1px rgb(0 0 0 / 5%);
}
.service-page .accordion-item button{
  border-radius: 10px;
}
.service-page .accordion-item:last-child {
  margin-bottom: 0;
}
.service-page .accordion-item .btn-link h5 {
  color: var(--e-global-color-accent);
}
.service-page .accordion-item .collapsed h5 {
  color: var(--e-global-color-secondary);
}


.service-page .accordion-button.collapsed {
  border: none; 
}
.service-page .accordion-item:not(.collapse) {
  border: 1px solid transparent;
}
.service-page .accordion-item:has(.collapse) {
  border: 1px solid var(--theme-color);
}
.service-page .accordion-item{
  border: none;
}
.service-page .accordion-item .accordion-body{
  padding: 0 1.25rem 1rem;
}
.service-page .accordian-inner .card-header {
  padding: 0;
  margin-bottom: 0;
  background: none;
  border: none;
}
.service-page .accordian-inner .card-header a {
  padding: 22px 26px;
}
.service-page .accordian-inner .card-body {
  padding: 0 26px 20px;
}
.accordion-item:first-of-type>.accordion-header .accordion-button{
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
}
.accordion-item:last-of-type>.accordion-header .accordion-button{
  border-bottom-left-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}
.service-page .accordion-item a.btn.btn-link:focus {
  outline: none;
  box-shadow: none;
}
.accordion-button:focus{
  box-shadow: none !important;
}
.service-page .accordian-inner .accordion-item i {
  position: absolute;
  right: 20px;
  margin: -6px 0;
}
.service-page .accordian-inner .accordion-item .btn {
  text-decoration: none;
  text-align: left;
  display: block;
  border-radius: 10px;
}
.service-page .accordion-item a.btn.btn-link {
  position: relative;
}

.service-page ..accordion-button:focus{
  border: none !important;
  box-shadow: none !important;
}
.service-page ..accordion-button{
  border: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.accordion-button:not(.collapsed){
 border: none !important;
 box-shadow: none !important;
 color: var(--theme-color);
 background-color: transparent !important;
}
.box-need-help img{
  width: 100%;
  height: 100%;
  border-radius: 20px;
}


/*response page*/
.response-section .card{
  padding: 30px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  border: none;
}
.response-section .card .card-icon{
  border-radius: 50%;
  height: 110px;
  width: 110px;
  box-shadow: 0 0 18px #c2c2c2;
  background: #fff;
  margin: 0 auto;
  line-height: 113px;
  font-size: 75px;
  overflow: hidden;
  border: 1px solid #2ea729;
}
.response-section .card p{
  font-size: 20px;
  color: var(--font-color);
}
.response-section .card .card-icon i{

  text-shadow: 0px 0px #d4d4d4, 1px 1px #d4d4d4, 2px 2px #d4d4d4, 3px 3px #d4d4d4, 4px 4px #d4d4d4, 5px 5px #d4d4d4, 6px 6px #d4d4d4, 7px 7px #d4d4d4, 8px 8px #d4d4d4, 9px 9px #d4d4d4, 10px 10px #d4d4d4, 11px 11px #d4d4d4, 12px 12px #d4d4d4, 13px 13px #d4d4d4, 14px 14px #d4d4d4, 15px 15px #d4d4d4, 16px 16px #d4d4d4, 17px 17px #d4d4d4, 18px 18px #d4d4d4, 19px 19px #d4d4d4, 20px 20px #d4d4d4, 21px 21px #d4d4d4, 22px 22px #d4d4d4, 23px 23px #d4d4d4, 24px 24px #d4d4d4, 25px 25px #d4d4d4, 26px 26px #d4d4d4, 27px 27px #d4d4d4, 28px 28px #d4d4d4, 29px 29px #d4d4d4, 30px 30px #d4d4d4, 31px 31px #d4d4d4, 32px 32px #d4d4d4, 33px 33px #d4d4d4, 34px 34px #d4d4d4, 35px 35px #d4d4d4, 36px 36px #d4d4d4;
  width: 66%;
  height: 66%;
  border-radius: 50%;
  color: #2ea729;
}

.tab_section .nav-tabs{
  justify-content: center;
  gap: 15px;
}
.tab_section .nav-tabs li{
  border: 2px solid var(--theme-color);
  border-bottom: none;
  padding: 5px 10px;
  border-radius: 10px 10px 0 0;
}
.tab_section .nav-tabs li a{
  color: #000;
  font-weight: 100;
  font-size: 20px;
  font-family: "Coiny", system-ui;
  padding-bottom: 0;
}
.tab_section  .tab-content{
  padding: 20px;
  border: 2px solid;
  border-radius: 20px;
  position: relative;
}
.tab_section .nav-tabs li .nav-link.active{
  color: var(--theme-color);
  border: none;
  transition: 0.1s !important;
}

.tab_section .nav-tabs li .nav-link:hover{
  border:none;
  isolation: unset;
}
.tab_section .nav-tabs li .nav-link.active:hover{
}
.tab_section .nav-tabs li .nav-link:hover li{
  background-color: #f6f6f6;
}
.tab_section .nav-tabs .nav-link{
  margin: 0;
  border-radius: 0;
  border: none;
}
.tab_section h3{
  text-align: center;
}


.package-card4 {
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid #eee;
    border-radius: 5px;
    height: 100%;
    padding: 20px 10px;
    border: 2px dashed #000;
    box-shadow: none;
}
.package-card4 img{
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card4 {
    flex-direction: column;
  }
  
}
@media (max-width: 576px) {
  .package-card4 {
    flex-direction: column;
  }
  .package-card4 img{
  width: 100%;
}
}
.package-card4 .package-card-img {
  overflow: hidden;
  min-width: 250px;
  max-width: 250px;
  display: block;
  border-radius: 5px 0 0 5px;
  transition: all 0.5s ease-out;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .package-card4 .package-card-img {
    min-width: 240px;
    max-width: 240px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card4 .package-card-img {
    min-width: unset;
    max-width: unset;
  }
}
@media (max-width: 576px) {
  .package-card4 .package-card-img {
    min-width: unset;
    max-width: unset;
  }
}
.package-card4 .package-card-img img {
  min-width: 250px;
  max-width: 250px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px 0 0 5px;
  transition: all 0.5s ease-out;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .package-card4 .package-card-img img {
    min-width: 240px;
    max-width: 240px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card4 .package-card-img img {
    min-width: unset;
    max-width: unset;
    min-height: 315px;
    max-height: 315px;
    width: 100%;
    border-radius: 5px 5px 0 0;
    -o-object-position: top;
    object-position: top;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .package-card4 .package-card-img img {
    height: 100%;
  }
}
@media (max-width: 576px) {
  .package-card4 .package-card-img img {
    min-width: unset;
    max-width: unset;
    min-height: 350px;
    max-height: 350px;
    -o-object-position: top;
    object-position: top;
    width: 100%;
    border-radius: 5px 5px 0 0;
  }
}
.tour-temple .owl-nav{
  display: none !important;
}
@media(max-width:748px){
  .services_pages-sec .row{
    flex-direction: column-reverse;
  }
}
