@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Niconne&display=swap');

:root {
  --theme-color: #feda00;
  --theme-color2: #012c6d;
  --second-color: #000;
  --font-family: "Outfit", sans-serif;
  --font-color: #6d6b72;
  --transition: 0.3s linear;
  --theme-special-font: "Niconne", cursive;
  --white-color: #fff;
}

* {
  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: 50px 50px 50px 0;
  background: var(--theme-color);
  overflow: hidden;
  cursor: pointer;
  border: none;
  display: inline-block;
  padding: 14px 20px;
}

.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: #000;
  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;
  color: #FFF;
}

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

  50% {
    transform: scale(0.95);
  }

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


/*=======================================================
section title
=======================================================*/
.section-title {
  margin-bottom: 40px;
}

.section-title .subtitle {
  font-family: var(--theme-special-font);
  font-size: 34px;
}

.section-title .title {
  font-size: 35px;
  font-weight: bold;
  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);*/
  }

/*======================================================
header
======================================================*/
header {
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05);
  border-bottom: 2px solid var(--theme-color);
  position: relative;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 200px;
  background-color: #000;
  height: 100%;
}
@media(max-width:768px){
  header::before{
    height: 78px;
  }
}
header .navbar-nav a {
  padding: 10px 15px;
  font-size: 18px;
  color: #000;
  font-weight: 500;
  transition: 0.2s linear;
  position: relative;
}

header .navbar-nav a:hover {
  color: var(--second-color);
}

/* header .navbar-nav li {
  padding: 10px 11px;
} */

.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: 100%;
    z-index: 100;
    border-radius: 10px;
    width: 150px;
    background: #fff;
}

.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: 35px;
  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: 85vh;
  object-fit: cover;

  filter: brightness(0.8);
}
#main-slider img.object{
  object-position: top;
}
.slider-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-inline: auto;
  color: #fff;
  width: 50%;
  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: 60px;
  font-weight: bold;
  margin-top: 20px;
  line-height: 1.2;
}

.slider-caption p {
  color: #fff;
  text-align: center;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 0;
}

.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: #fff;
  position: relative;
  margin-left: 10px;
}

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

.slider-caption .caption-title span svg path {
  stroke: var(--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 .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-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: 40px;
}

.footer-site_name img {
  width: 180px;
  border-radius: 10px;
  position: relative;
  background: #000;
  padding: 10px;
}

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: var(--theme-color);
  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: 20px;
  color: var(--font-color);
}

.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: "\f101";
  font-family: 'FontAwesome';
  font-weight: 600;
  left: 0;
  top: 0;
  color: var(--font-color) !important;
  background-color: transparent;
  border: none;
  color: inherit;
  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 dashed #fff;
  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 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: transparent;
  color: var(--font-color);
  height: 36px;
  width: 36px;
  border-radius: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--font-color);
  transition: all 0.3s ease-in-out;
}

.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: 30px;
  border-radius: 20px;
  flex-direction: row;
  align-items: center;
  margin-bottom: 30px;
  border: none;
  box-shadow: 0px 16px 51px 0px rgba(0, 0, 0, 0.07);
  gap: 20px;
  height: 100%;
}

.contact-section .card .card-icon {
  width: 23%;
}

.contact-section .card .card-body {
  width: 70%;
  padding: 0;
}

.contact-section .card i {
  background-color: var(--theme-color);
  font-size: 35px;
  color: #fff;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 10px;
  text-align: center;
}

.contact-section .card-title {
  font-size: 25px;
  font-weight: 600;
}

.contact-section .card p {
  margin-bottom: 0;
  font-size: 15px;
}

.contact-section .card.bg-white {
  background-color: #fff;
  color: #000;
}

/*=============contact-form-section============*/
.contact-form-section .contact-box {
  box-shadow: rgba(100, 100, 111, .2)0 7px 29px;
  border-radius: 20px;
  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;
  /*    background: linear-gradient(to right, #1d226a, white);*/
}

.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: #e6fffe;
}

.widget-title .title {
  color: var(--theme-color);
  margin-bottom: 5px;
  font-size: 25px;
  font-weight: bold;
  text-transform: capitalize;
}

.widget-title .progress {
  width: 30%;
  height: 6px;
  margin-bottom: 20px;
}

/*chardham page*/
.booking-form-wrap {
  border-radius: 10px;
  background: linear-gradient(125deg, rgba(99, 171, 69, 0.1) 0%, rgba(251, 176, 59, 0.1) 100%);
  border-radius: 5px;
  padding: 25px;
}

.package-details-area h4 {
  color: #000;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.75px;
  margin-bottom: 10px;
  padding-top: 10px;
}

.form-inner {
  line-height: 1;
}

.mb-20 {
  margin-bottom: 20px;
}

.form-inner label {
  color: #5d5b58;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  line-height: 1;
  margin-bottom: 7px;
}

.form-inner label span {
  color: red;
  font-size: 16px;
}

.form-inner input {
  width: 100%;
  border-radius: 0;
  background: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 400;
  padding: 10px 20px;
  height: 50px;
  border: 1px solid #eee;
}

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

.service-page ol {
  padding-left: 20px;
}

.service-page ol li {
  margin: 5px 0;
}

/*=================testimonial=================*/
.testimonial-section {
  /*background: url(../images/bg/testimonial.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;*/
  }

  .testimonial-item-two {
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    background: #fff;
    padding: 60px 35px 40px;
    position: relative;
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .testimonial-icon-two {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--theme-color);
    font-size: 30px;
    color: #fff;
    line-height: 1;
    position: absolute;
    left: 35px;
    top: -40px;
  }

  .testimonial-content-two p {
    margin-bottom: 25px;
  }

  .testimonial-avatar-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .testimonial-avatar-info .avatar-thumb {
    width: 40px;
    flex: 0 0 40px;
    margin-right: 8px;
  }

  .testimonial-avatar-info .avatar-thumb img {
    border-radius: 50%;
  }

  .testimonial-avatar-info .avatar-content {
    text-align: left;
  }

  .testimonial-avatar-info .avatar-content .title {
    margin-bottom: 5px;
    font-size: 20px;
  }

  .testimonial-avatar-info .avatar-content p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.2;
  }

  .text-second {
    color: var(--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_form_img{
  width: 100%;
  height: 230px;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.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: relative;
  width: 100%;
  height: 100%;
  color: #FFF;
  border-radius: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 35px;
  border-radius: 30px;
  letter-spacing: -0.02em;
  box-shadow: 0px 0px 6px rgba(255, 255, 255, 1);
  border: 2px solid #fff;
}

.float-call {
  background-color: var(--theme-color);
  font-size: 15px;
  font-weight: 500 !important;
  color: #000;
}

.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;
}

/*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);
}
.contact-form-section form .btn-theme span{
  color: #Fff;
}
.contact-form-section form .btn-theme:hover span{
  color: #000;
}
.contact-form-section form .btn-theme:after{
  background-color: #fff;
}
/*top header*/
.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: 18px;
  font-weight: 700;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  background-color: #fff;
  border-radius: 30px 0 30px 0;
  padding: 15px 40px;
}

.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: 5px;
  margin-top: 60px;
  padding: 0 34px 40px 40px;
}

.single-testimonial-wrap .icon {
  margin-bottom: -9px;
  -webkit-transform: translateY(-39px);
  transform: translateY(-39px);
  position: relative;
  width: 81px;
  height: 69px;
  padding: 10px;
  top: -40px;
  background: var(--theme-color);
  transform: rotate3d(0, 1, 1, -60deg);
  border: 9px solid #FFF;
}

.single-testimonial-wrap .icon img {
  width: 100%;
  height: 100%;
  transform: rotate(42deg);
}

.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;
}

.single-testimonial-wrap .client-wrap {
  align-items: center;
  display: flex;
  margin-top: 29px;
}

.single-testimonial-wrap .client-wrap .thumb {
  flex: none;
  margin-right: 10px;
}

.single-testimonial-wrap .client-wrap .thumb img {
  width: 60px;
}

.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: #fff;
}

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: #fff;
  background-color: #000;
}

header .navbar-nav .header-call-btn:hover::after {
  top: -60%;
}

header .navbar-nav {
  align-items: center;
}

/*===================outstation-taxi-service=============*/
.outstation-taxi-service .card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(0,0,0,0.2);
}

.outstation-taxi-service .card:hover img {
  transform: scale(1.3);
}

.outstation-taxi-service .card svg {
  color: var(--theme-color);
}

.outstation-taxi-service .card .card-img-link {
  overflow: hidden;
  padding: 10px;
}

.outstation-taxi-service .card .card-img {
  overflow: hidden;
}

.outstation-taxi-service .card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  transition: 2s linear;
}

.outstation-taxi-service .card .card-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
@media(min-width:768px){
  .outstation-taxi-service .card .card-title{

    height: 31px;
    overflow: hidden;
  }
}

.outstation-taxi-service .card .card-title a {
  color: #000;
}

.outstation-taxi-service .card .card-body {
  padding: 10px;
}

.outstation-taxi-service .card p {
  text-align: justify;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.outstation-taxi-service .card .card-footer {
  background-color: #fff;
  display: flex;
  gap: 10px;
  border: none;
  padding: 10px;
}

.outstation-taxi-service .card .card-footer a {
  width: 100%;
  background: var(--theme-color);
  text-align: center;
  padding: 10px;
  color: #fff;
}

/*.outstation-taxi-service .card .card-footer a:last-child{
  background-color: #25d366;
}*/

/*##################about us#######################*/
.about__img-wrap-two {
  text-align: center;
  position: relative;
  padding: 30px 0;
}

@media (max-width: 991.98px) {
  .about__img-wrap-two {
    margin-bottom: 50px;
  }
}

@media (max-width: 767.98px) {
  .about__img-wrap-two {
    padding: 30px 15px 30px 0;
  }
}

.about__img-wrap-two>img {
  width: 100%;
  border-radius: 10px;
  border-left: 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: 7px 0;
  border-bottom: 1px dashed var(--font-color);
}

.link_section ul li::marker {
  color: var(--font-color);
}

.link_section ul li a {
  color: var(--font-color);
  display: block;
  font-size: 16px;
  font-weight: 600;
}

/**************cabs section**********************/
.cab-service-area .card {
  box-shadow: 0px 25px 20px 0px #cdcdcd;
  overflow: hidden;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #bababa;
  border-top: 4px solid #ccc;
}

.cab-service-area .card img {
  width: 80%;
  height: 180px;
  object-fit: contain;
}

.cab-service-area .card .card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cab-service-area .card .card-body {
  background-color: #ebebeb;
}

.cab-service-area .card p {
  padding: 1rem;
  margin-bottom: 0;
}

.cab-service-area .card ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.cab-service-area .card ul img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--theme-color);
  padding: 5px;
  margin: 3px 0;
  background: #fff;
}

.cab-service-area .card ul li {
  font-size: 14px;
  text-transform: uppercase;
}

.cab-service-area .card .card-footer {
  padding: 0px 20px 10px;
  display: flex
  ;
  border: none;
  background: transparent;
  justify-content: space-between;
}

.cab-service-area .card .card-footer a {
  width: auto;
  background: var(--theme-color);
  text-align: center;
  padding: 10px;
  color: #fff;
  border-radius: 30px 30px 30px 0;
  padding: 10px 25px;
}


.about-section-three {
  background-color: #fffbe4;
}

.main_part {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 14px rgba(0,0,0,0.2);
  border: 1px solid #d1d1d1;
  img {
    border-radius: 10px;
    max-height: 400px;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
.main_part h2{
  font-size: 25px;
}

.cab-service-area .card .card-footer a:last-child {
  background-color: var(--second-color);
}


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

.our-destination-area {}

.project-card-img {
  overflow: hidden;
  height: 175px;
  background: #fff;
  border-top-right-radius: 10px;
  box-shadow: 0 0 14px rgba(0,0,0,0.2);
}

.project-card-img img {
  width: 70%;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin: auto;
  height: auto;
  border: 2px solid #000;
  top: 50%;
  left: 50%;
  height: 150px;
  object-fit: cover;
  border-radius: 3px 15px 3px;
  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:hover .btn-theme span{
  color: #fff;
}
.project-card-details .btn-theme:after {
  background-color: #fff;
  z-index: -1;
}

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

.accordion-item {
  border-radius: 5px !important;
  overflow: hidden;
  padding: 0;
  background: #fff;
  margin-bottom: 20px;
  border: 1px solid var(--theme-color) !important;
}

.accordion-item+.accordion-item {
  margin-top: 17px;
}


.accordion-item .accordion-header .accordion-button {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  font-size: 19px;
  padding: 13px 10px;
  border-bottom: 2px solid #000;
  font-weight: 700 !important;
}

@media (max-width: 1199px) {
  .accordion-item .accordion-header .accordion-button {
    font-size: 1.125rem;
  }
}

@media (max-width: 575px) {
  .accordion-item .accordion-header .accordion-button {
    font-size: 1rem;
  }
}

.accordion-item {
  background-color: transparent;
  background: transparent;
  border: 1px solid var(--theme-color) !important;
}
.accordion-item.active{
  box-shadow: 0 4px 0 var(--theme-color);
}

.accordion-item .accordion-button {
  background-color: transparent;
  border-radius: 0 !important;
  box-shadow: none;
  border: none !important;
}

.accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: transparent;
  background: transparent;
  color: #000;
  border: none;
  border-bottom: 2px solid #fff;
}

.accordion-item:first-of-type .accordion-button {
  border-radius: 0 !important;
}

.accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  content: "\f177";
  position: absolute;
  top: 50%;
  right: 8px;
  font-size: 20px;
  line-height: 01;
  color: var(--theme-base);
  background-image: none !important;
  transform: translateY(-50%) rotate(-45deg);
  font-family: 'FontAwesome';
  font-weight: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion-button:not(.collapsed)::after {
  content: "\f178";
  color: var(--theme-color);
  transform: translateY(-50%) rotate(-45deg);
  font-family: 'FontAwesome';
}


.accordion {
  border-radius: 0 !important;
}

.accordion-item .accordion-body {
  padding: 13px 10px;
}

.accordion-item .accordion-body p {
  color: var(--font-color);
  font-size: 15px;
  margin-bottom: 10px;
}

.accordion.style-border .accordion-item+.accordion-item {
  margin-top: 10px;
}

.accordion.style-border .accordion-item {
  background-color: transparent;
  box-shadow: none;
  border: none;
  border-radius: 0 !important;
  border-bottom: 2px solid var(--second-color);
}

.accordion.style-border .accordion-item .accordion-header .accordion-button {
  background-color: transparent;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 19px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  padding-inline: 0;
  color: var(--second-color);
  padding: 20px 8px;
}

.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;
}

.float_whatsapp {
  background-color: #25D366;
}

.float {
  img {
    width: 23px;
    margin-right: 5px;
  }
}
@media(max-width: 768px){

.float {
  img {
    width: 19px;
    margin-right: 3px;
  }
}
}
@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
    /* Moves up */
  }

  100% {
    transform: translateY(0);
  }
}

.fixed__btns {
  position: fixed;
  right: 0;
  left: 50%;
  bottom: 6px;
  background-color: transparent;
  width: 99%;
  height: 50px;
  z-index: 99;
  padding: 0;
  gap: 11px;
  overflow: hidden;
  display: flex;
  transform: translateX(-50%);
}
.float_popup{
    position: fixed;
    right: 10px;
    bottom: 70px;
    background-color: red;
    width: max-content;
    height: auto;
    z-index: 99;
    padding: 8px 10px;
    gap: 4px;
    overflow: hidden;
    display: flex;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
}
.float_popup img{
    width: 23px;
    height: 23px;
}
.abt-img-wrapper {
  position: relative;
}

.about-img {
  -webkit-mask-image: url(../images/abouts/abt-shape1.png);
  mask-image: url(../images/abouts/abt-shape1.png);
  mask-image: url(../images/abouts/abt-shape1.png);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

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

@media only screen and (max-width: 479px) {
  .experienc-year {
    padding: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .experienc-year {
    right: 0;
  }
}

@media only screen and (max-width: 1199px) {
  .experienc-year {
    padding: 25px;
    right: -70px;
    bottom: 15px;
  }
}

@media only screen and (max-width: 1399px) {
  .experienc-year {
    padding: 35px;
    right: -90px;
    bottom: 40px;
  }
}

@media only screen and (max-width: 1599px) {
  .experienc-year {
    right: -100px;
    bottom: 55px;
  }
}

@media only screen and (max-width: 1599px) {
  .experienc-year {
    right: -100px;
    bottom: 55px;
  }
}

.experienc-year {
  position: absolute;
  z-index: 5;
  padding: 40px;
  background-color: var(--theme-color);
  border-radius: 6px 50px;
  bottom: 65px;
  right: -110px;
}

/* ========================services================ */
.vs-services-style1 .destinations-card {
  margin-bottom: 20px;
}

.vs-services-style1 .destinations-card.middle {
  height: 100%;
  padding-bottom: 20px;
}

.vs-services-style1 .destinations-card.middle .destinations-img {
  height: 100%;
}

.vs-services-style1 .destinations-card .destinations-img {
  position: relative;
  overflow: hidden;
  transition: 0.5s ease-in-out;
  width: 100%;
  border-radius: 10px;
  height: 300px;

  img {
    height: 100%;
    width: 100%;
  }
}

.vs-services-style1 .destinations-card .destinations-img img {
  transition: all 0.5s ease-out;
  object-fit: cover;
  filter: brightness(0.6);
}

@media (max-width: 767px) {
  .vs-services-style1 .destinations-card .destinations-img img {
    width: 100%;
  }
}

.vs-services-style1 .destinations-card .destinations-img .destinations-content-hidden {
  text-align: center;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 33, 71, 0.8);
  -webkit-backdrop-filter: blur(1.5px);
  backdrop-filter: blur(1.5px);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
}

.vs-services-style1 .destinations-card .destinations-content .destinations-visible .icon img {
  max-width: 64px;
  margin-inline: auto;
  margin-bottom: 30px;
  display: block;
  filter: brightness(1);
}

.vs-services-style1 .destinations-card .destinations-img .destinations-content-hidden .content h2 {
  font-family: var(--theme-font);
  font-size: 26px;
  font-weight: 700;
  line-height: 26px;
  color: #fff;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .vs-services-style1 .destinations-card .destinations-img .destinations-content-hidden .content h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }
}

.vs-services-style1 .destinations-card .destinations-img .destinations-content-hidden .content p {
  font-family: var(--theme-heading-font);
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  color: var(--white-color);
  margin-bottom: 40px;
}

@media (max-width: 1199px) {
  .vs-services-style1 .destinations-card .destinations-img .destinations-content-hidden .content p {
    font-size: 15px;
    margin-bottom: 35px;
  }
}

@media (max-width: 991px) {
  .vs-services-style1 .destinations-card .destinations-img .destinations-content-hidden .content p {
    display: none;
  }
}

@media (max-width: 991px) {
  .vs-services-style1 .destinations-card .destinations-img .destinations-content-hidden .content .see-btn {
    font-size: 14px;
  }
}

.vs-services-style1 .destinations-card .destinations-content {
  transition: 0.5s ease-in-out;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10%;
  padding: 17px;
}

@media (max-width: 767px) {
  .vs-services-style1 .destinations-card .destinations-content {
    right: 15%;
  }
}

@media (max-width: 576px) {
  .vs-services-style1 .destinations-card .destinations-content {
    right: 18%;
  }
}

.vs-services-style1 .destinations-card .destinations-content .destinations-visible {
  width: 312px;

}

@media (min-width: 1200px) and (max-width: 1399px) {
  .vs-services-style1 .destinations-card .destinations-content .destinations-visible {
    width: 250px;
  }
}

@media (max-width: 1199px) {
  .vs-services-style1 .destinations-card .destinations-content .destinations-visible {
    width: 210px;
  }
}

@media (max-width: 991px) {
  .vs-services-style1 .destinations-card .destinations-content .destinations-visible {
    width: 130px;
  }
}

@media (max-width: 425px) {
  .vs-services-style1 .destinations-card .destinations-content .destinations-visible {
    width: 200px;
  }
}

.vs-services-style1 .destinations-card .destinations-content .destinations-visible h3 {
  font-family: var(--theme-font);
  font-size: 27px;
  font-weight: 500;
  line-height: 26px;
  color: #fff;
  margin: 0;
  text-align: center;
}

.vs-services-style1 .destinations-card:hover .destinations-img img {
  transform: scale(1.1);
}

.vs-services-style1 .destinations-card:hover .destinations-img .destinations-content-hidden {
  opacity: 1;
  transform: scaleY(1);
}

.vs-services-style1 .destinations-card:hover .destinations-content {
  opacity: 0;
}

.vs-services-style1 .destinations-card.style-2 .destinations-img .destinations-content-hidden {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: 0.5s ease-in-out;
  padding-top: 140px;
}

@media (max-width: 1499px) {
  .vs-services-style1 .destinations-card.style-2 .destinations-img .destinations-content-hidden {
    padding: 130px 40px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .vs-services-style1 .destinations-card.style-2 .destinations-img .destinations-content-hidden {
    padding-top: 90px;
  }
}

@media (max-width: 1199px) {
  .vs-services-style1 .destinations-card.style-2 .destinations-img .destinations-content-hidden {
    padding-top: 60px;
  }
}

@media (max-width: 991px) {
  .vs-services-style1 .destinations-card.style-2 .destinations-img .destinations-content-hidden {
    padding-top: 60px;
  }
}

@media (max-width: 767px) {
  .vs-services-style1 .destinations-card.style-2 .destinations-img .destinations-content-hidden {
    padding-top: 95px;
  }
}

@media (max-width: 425px) {
  .vs-services-style1 .destinations-card.style-2 .destinations-img .destinations-content-hidden {
    padding-top: 160px;
  }
}

.vs-services-style1 .destinations-card.style-2:hover .destinations-img .destinations-content-hidden {
  opacity: 1;
  transform: scaleY(1);
}

.vs-services-style1 .destinations-card .destinations-img .destinations-content-hidden .btn-theme:after {
  display: none;
}

.vs-services-style1 .destinations-card .destinations-img .destinations-content-hidden .btn-theme:hover {
  background-color: var(--second-color);
  color: #fff;
}

@media only screen and (min-width: 1025px) {
  .outstation-taxi-service {
    padding-top: 180px !important;
  }
}

.py-30 {
  padding: 30px 0 !important;
}

.vs-services-style1 .destinations-card.outer{
  padding: 10px;
  border-radius: 15px;
  border: 1px solid #d1d1d1;
  background-color: #fff;
}
.vs-services-style1 .destinations-card.outer .destinations-img{
  height: auto;
  overflow: visible;
}
.vs-services-style1 .destinations-card.outer .destinations-img img{
  height: 200px;
  border-radius: 15px;
}
.vs-services-style1 .destinations-card.outer:hover .destinations-img img{
  transform: none;
}
.vs-services-style1 .destinations-card.outer .destinations-img .destinations-content-hidden{
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  opacity: 1;
  background-color: transparent;
  visibility: visible;
  padding: 10px 10px 0;
}
.vs-services-style1 .destinations-card.outer .destinations-img .destinations-content-hidden .content h2{
  color: #000;
  margin-bottom: 10px;
}
.vs-services-style1 .destinations-card.outer .destinations-img .destinations-content-hidden .content p{
  color: #222;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
/* ===================tour packages=========== */

.tour_packages_area .card {
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
}

.tour_packages_area .card .card-body {
  padding: 10px 0;
  text-align: center;
}

.tour_packages_area .card .card-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0;
}

.tour_packages_area .card .card-img {
  overflow: hidden;
}

.tour_packages_area .card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  transition: 2s linear;
}

.tour_packages_area .card:hover img {
  transform: scale(1.3);
}

.tour_packages_area .card .card-footer {
  background-color: #fff;
  display: flex;
  gap: 10px;
  border: none;
  padding: 0;
}

.tour_packages_area .card .card-footer .btn-theme {
  padding: 10px 14px;
}

/* =================google rating review============= */
.rating-header {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
  line-height: 18px;
}

.review-card {
  border-radius: 10px;
  padding: 20px;
  background: #f2f2f2;
  height: 100%;
  box-shadow: 0 0 14px rgba(0,0,0,0.2);
  text-align: center;
}

.review-stars {
  color: #fbbc05;
  font-size: 25px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  background-color: #ccc;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: auto;
  font-size: 1.2rem;
  margin-top: 10px;
}

.google-icon {
  height: 40px;
}

.review-footer {
  color: #888;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 6px;
}

.review-footer span {
  font-size: 13px;
  text-align: left;
  line-height: 1.4;
}

.review-content {
  display: inline;
}

.more-text {
  display: none;
}

.read-more-btn {
  color: #007bff;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  font-size: 1em;
}

.service-page .contentBox img{
  max-height: 450px;
  object-fit: cover;
}
.vs-footer-style1{
  padding: 25px 0 0 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 1;
  border-top: 2px solid var(--theme-color);
}
#icons i {
  color: var(--white-color);
  margin-right: 5px;
  width: 30px;
  height: 30px;
  background: var(--theme-color);
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  transition: 0.3s linear;
  position: absolute;
  left: 0;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 25px;
}
@media (max-width: 1199px) {
  .footer-links ul {
    gap: 15px;
  }
}
.footer-links ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #222;
  font-weight: 500;
  line-height: 1.15;
  transition: .3s;
  letter-spacing: 0.42px;
  text-transform: capitalize;
}
.footer-links ul li a i {
  color: #222;
  transition: .3s;
}
.footer-links ul li a:hover {
  color: var(--theme-color);
}

/*footer partner*/
.footer-partner-list {
  border-top: 1px solid #dddddd;
  padding: 10px 0;
  color: #000;
}
.footer-partner-list span{
  color: #000;
  font-weight: bold;
}
.footer-partner-list a{
  color: var(--theme-color);
  font-weight: 500;
}
.footer-partner-list a:hover{
  color: #000;
}

.footer-copyright {
  color: #d3d2d2;
  font-weight: 700;
  letter-spacing: 0.42px;
  text-transform: uppercase;
}

.footer-menu ul {
  display: flex;
  align-items: center;
  gap: 25px;
}
.footer-menu ul a {
  color: #d3d2d2;
  font-weight: 700;
  letter-spacing: 0.42px;
  text-transform: uppercase;
}
.footer-menu ul a:hover {
  color: var(--theme-color);
}
.footer-widgets .logo{
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: start;
  img{
    width: 210px;
    border-radius: 10px;
    background-color: transparent;
    padding: 8px;
  }
  span{
    color: var(--second-color);
  }
}

.footer-widgets .social-media {
  margin-top: 35px;
}
@media (max-width: 991px) {
  .footer-widgets .social-media {
    margin-top: 25px;
  }
}
.footer-widgets .widgets-title {
  letter-spacing: 0.72px;
  position: relative;
  line-height: 175%;
  z-index: 0;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .footer-widgets .widgets-title {
    margin-bottom: 25px;
  }
}
.footer-widgets .widgets-title::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  width: 85%;
  height: 2px;
  background: #ccc;
  z-index: 1;
}
.footer-widgets .widgets-title::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 2px;
  background: var(--theme-color);
  z-index: 2;
}

.social-media ul {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}
.social-media ul li a {
  display: inline-block;
  width: 48px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 6px;
  border: 2px solid var(--theme-color);
  display: grid;
  place-content: center;
  color: #222;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.48px;
  text-transform: capitalize;
}
.social-media ul li {
  display: inline-block;
}
.social-media ul li a:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #Fff;
}

.newsletter input {
  padding: 16px 22px;
  border-radius: 8px;
  background: rgba(49, 9, 80, 0.5);
  color: var(--white-color);
  font-weight: 500;
  line-height: 171.429%;
  height: max-content;
  letter-spacing: 0.42px;
  text-transform: capitalize;
  border: 0;
}
.newsletter input::placeholder {
  color: #d3d2d2;
}
.newsletter input:focus, .newsletter input:active {
  background: rgba(49, 9, 80, 0.5);
  color: var(--white-color);
}
.newsletter button {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  padding: 0;
  height: max-content;
  line-height: 1;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 256.25%;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  background-color: transparent;
}
.newsletter button i {
  color: var(--theme-color);
}
.newsletter button:hover {
  color: var(--theme-color);
}

.instagram {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 11px;
  column-gap: 13px;
}
.instagram a {
  display: block;
  border-radius: 10px;
  border: 3px solid var(--theme-color);
  overflow: hidden;
  position: relative;
}
.instagram a::before {
  position: absolute;
  content: "";
  left: 15px;
  top: 15px;
  right: 15px;
  bottom: 15px;
  opacity: 0;
  border-radius: 10px;
  background: rgba(49, 9, 80, 0.5);
  z-index: 2;
  transition: all 0.3s;
}
.instagram a img {
  transition: all 0.3s;
}
.instagram a:hover::before {
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 1;
}
.instagram a:hover img {
  transform: scale(1.05);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 25px;
}
@media (max-width: 1199px) {
  .footer-links ul {
    gap: 15px;
  }
}
.footer-links ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #222;
  font-weight: 500;
  line-height: 1.15;
  transition: .3s;
  letter-spacing: 0.42px;
  text-transform: capitalize;
}
.footer-links ul li a i {
  color: #222;
  transition: .3s;
}
.footer-links ul li a:hover {
  color: var(--theme-color);
}

/*footer partner*/
.footer-partner-list {
  border-top: 1px solid #dddddd;
  padding: 10px 0;
  color: #000;
}
.footer-partner-list span{
  color: #000;
  font-weight: bold;
}
.footer-partner-list a{
  color: #000;
  font-weight: 400;
  transition: 0.2s;
  font-size: 14px;
}
.footer-partner-list a:hover{
  color: var(--theme-color);
}
.payment-icon li {
  margin-bottom: 0px;
  line-height: 1.5;
  color: #fff;
  position: relative;
  display: inline-block;
  padding: 0;
}
.before_none .sec-title:after{
  display: none;
}
.google-reviewed {
  max-width: 405px;
  border-radius: 17px;
  background: var(--white-color);
  box-shadow: 0px 4px 4px 0px rgba(0,0,0, 0.1);
  display: flex;
  align-items: center;
}
.bg-second-theme-color {
  background-color: var(--theme-color);
}
@media (max-width: 575px) {
  .google-reviewed {
    flex-direction: column;
    text-align: center;
  }
}
.gap-2{
  gap: 0.5rem !important;
}
.google-reviewed  .fs-xxs{
  font-size: 13px;
}
.text-theme-color i{
  color: gold;
}
.google-reviewed > div {
  padding: 30px 25px;
  width: 100%;
  gap: 0.5rem !important;
}
@media (max-width: 991px) {
  .google-reviewed > div {
    padding: 25px 20px;
  }
}
@media (max-width: 575px) {
  .google-reviewed .left {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .google-reviewed .right .rating {
    justify-content: center;
  }
}
.google-reviewed .right .review {
  color: rgba(170, 172, 173, 0.9);
}
#icons li {
  position: relative;
  padding-left: 40px;
}
.link-widget li {
  color: var(--white-color);
  padding-bottom: 15px;
  display: block;
}
#icons li a {
  padding-left: 0;
}
#icons li a:hover{
  color: var(--theme-color);
}
footer .link-widget li a {
  color: #000;
  transition: 0.3s;
}
.link-widget li a {
  position: relative;
  font-size: 16px;
  color: var(--white-color);
  padding-left: 20px;
}
.footer-bottom {
}
.footer-bottom {
  padding: 10px 0;
  clear: both;
  background-color: var(--theme-color);
}
/*.footer-links ul  a{
  color: #000;
}
.footer-links ul  a:hover{
  color: var(--theme-color);
}*/
@media(max-width:768px){
  .footer-bottom{
    padding-bottom: 60px;
  }
}
.home-enquiry-form .coolinput{
  position: relative;
  z-index: 1;
}


.home-enquiry-form .coolinput .input{
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid #000;
    height: 45px;
    padding: 10px;
}
.home-enquiry-form hr{
  width: 120px;
  top: -3px;
  border-top:1px solid #000;
  opacity: 1;
}
.enquiry-form  .section-title .title{
  font-size: 25px;
}
.home-enquiry-form .coolinput i{
    left: 21px;
    font-size: 18px;
    /* width: 25px; */
    /* height: 25px; */
    top: 50%;
    transform: translateY(-50%);
  }
  @media(max-width: 768px){
    .home-enquiry-form .coolinput:before{
      width: calc(84% + 5px);
    }
    .home-enquiry-form .coolinput i{
      left: 1px;
      font-size: 15px;
    }
    .home-enquiry-form .coolinput .input{
      margin-left: 21px;
    }
  }

.bg-banner {
    background-size: cover;
    background-position: center;
    width: 100%;
    background-repeat: no-repeat;
    position: relative;
}

.same-section-spacing {
    padding: 100px 0 100px;
}
.bg-banner{
  position: relative;
  z-index: 1;
}
.bg-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

.banner-box {
    .breadcrumb {
        background-color: transparent;
    }
}

.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: .25rem;
}

.breadcrumb {
    display: inherit !important;
    text-align: center;
}

.breadcrumb {
    background: transparent;
    color: var(--white-color);
    padding: 10px 0;
}

.breadcrumb {
    background: transparent;
    color: var(--white-color);
    padding: 10px 0;
}

.breadcrumb li {
    display: inline-block;
}

.breadcrumb-item a {
    font-weight: 600;
    color: var(--white-color);
}

.banner-box {
    .breadcrumb-item.active {
        color: #fff;
    }
}

.banner-box {
    .breadcrumb-item+.breadcrumb-item::before {
        color: #fff;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: .5rem;
    color: #6c757d;
    content: "/";
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #6c757d;
    content: "/";
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white-color);
}

.banner-box h2 {
    color: var(--white-color);
    margin-bottom: 0 !important;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 45px;
}

@media(max-width:768px) {
    .banner-box h2 {
        font-size: 30px;
    }
}

.forum-main-image {
    padding: 10px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 2px 15px 0px rgb(0 0 0 / 6%);
    box-shadow: 0px 2px 15px 0px rgb(0 0 0 / 6%);
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #fff;
    border: 1px solid var(--theme-color);
}

.forum-main-image img {
    width: 100%;
}

.forum-main-image img {
    border-radius: 5px;
    margin-bottom: 0;
}

.forum-details h3 {
    font-size: 35px;
    margin-bottom: 30px;
}
.spad {
    padding-top: 100px;
    padding-bottom: 100px;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.breadcrumb__text {
    text-align: center;
}

.breadcrumb__links {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 25px;
    border-bottom: none;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    text-align: center;
}

.breadcrumb__links a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-right: 26px;
    display: inline-block;
    position: relative;
}

.breadcrumb__links span {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-right: 26px;
    display: inline-block;
    position: relative;
}

.breadcrumb__links a::after {
    position: absolute;
    right: -18px;
    top: 0px;
    font-family: FontAwesome;
    content: "";
    font-size: 20px;
    font-weight: 400;
}

.breadcrumb__links span:last-child {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-right: 26px;
    display: inline-block;
    position: relative;
}

.breadcrumb__links span {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    margin-right: 26px;
    position: relative;
}

.breadcrumb__text h2 {
    color: #fff;
    font-size: 46px;
    font-weight: 700;
}

/*.footer-links li a:before {
    font-family: FontAwesome;
    content: "\f101";
    padding-right: 10px;
    color: var(--theme-color);
}*/

/*.animated{
      animation-fill-mode: inherit!important;
}*/

.List-items li:not(:last-child) {
    padding-bottom: calc(11px/2);
}

.List-items li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: inherit;
    display: block;
}

.List-items i {
    color: var(--theme-color);
    width: 1.25em;
    font-size: 14px;
}

.List-items span {
    color: var(--theme-color);
    padding-left: 8px;
}

.main-box {
    background-color: #ffffff !important;
    border-radius: 6px;
    border-style: solid;
    border-width: 0px 0px 5px 0px;
    border-color: var(--theme-color);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 0px 0px 0px 6px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 6px;
    padding: 35px 35px 13px 36px;
}

.main-box .box-icon img {
    width: 75px;
}

/*OUR GALLERY*/

#our_gallery {
    position: relative;
}

.bgimage {
    background-color: var(--theme-color) !important;
    background-image: url('../images/bgimg.png');
    background-size: contain;
    background-position: center center;
    position: absolute;
    height: 510px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: -1;
    margin-bottom: 10px;
}

/*OUR DESTINATION*/

.booking-one__single {
    margin-bottom: 30px;
    -webkit-transition: all .35s;
    transition: all .35s;
    border-radius: 10px
}

.booking-one__image {
    position: relative;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    min-height: 90px;
    background: #ccc
}

.booking-one__image img {
    height: 250px;
}

.booking-one__content {
    padding: 10px 30px 0;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    border-top: none;
    border-radius: 0 0 10px 10px;
    background: #fff;
    position: relative;
    margin-top: -16px;
    text-align: center;
}

@media (max-width: 1024px) {
    .booking-one__content {
        padding: 10px 20px 0
    }
}

.booking-one__content:after {
    content: '';
    width: 100%;
    height: 20px;
    border-radius: 20px 20px 0 0;
    position: absolute;
    bottom: 100%;
    left: 0;
    z-index: 9;
    background: #fff;
    margin-bottom: -1px
}

.booking-one__content-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.booking-one__content-top .booking__rating {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 66px);
    flex: 0 0 calc(100% - 66px)
}

.booking-one__media {
    background: #fff;
    padding: 7px 18px 5px;
    position: absolute;
    top: -35px;
    right: 30px;
    -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .1);
    border-radius: 8px;
    z-index: 11;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66px;
    flex: 0 0 66px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.booking-one__title {
    font-size: 20px;
    margin: 10px 0 10px;
    font-weight: 600
}

.booking-one__address {
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 400
}

.booking-one__address i {
    margin-right: 10px;
    color: var(--e-global-color-primary)
}

.booking-one__price .item_info_price_new {
    color: var(--e-global-color-secondary)
}

.booking-one__meta {
    margin-top: 20px;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border-top: 1px solid #e2dfeb
}

.booking-one__item-meta i {
    margin-right: 4px;
    font-size: 20px;
    position: relative;
    top: 2px;
    color: var(--e-global-color-primary)
}

.booking-one__meta-left>span:not(:last-child) {
    margin-right: 18px
}

.booking-one__meta-right a {
    display: inline-block;
    position: relative;
    padding-right: 20px
}

.booking-one__meta-right a:after {
    content: '\f061';
    font-family: 'Line Awesome Free';
    position: absolute;
    top: 8px;
    right: 0;
    font-size: 14px;
    z-index: 1;
    line-height: 1;
    font-weight: 900
}

/*DESTINATION*/

.single_package {
    margin: 0 15px 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
    border-radius: 4px;
}

.package-hover {}

.single_package .package-hover {
    padding: 30px;
}

.package-hover p {
    margin-bottom: 20px;
}

.package-hover i {
    color: #fec42d;
}

.breadcrumb {
    background: transparent;
    color: var(--white-color);
    padding: 10px 0;
}

.breadcrumb {
    background: transparent;
    color: var(--white-color);
    padding: 10px 0;
}

.breadcrumb li {
    display: inline-block;
}

.breadcrumb-item a {
    font-weight: 600;
    color: var(--white-color);
}

.banner-box {
    .breadcrumb-item {
        color: #fff;
    }
}

.banner-box {
    .breadcrumb-item+.breadcrumb-item::before {
        color: #fff;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: .5rem;
    color: #6c757d;
    content: "/";
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #6c757d;
    content: "/";
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white-color);
}

.banner-box h2 {
    color: var(--white-color);
    margin-bottom: 0 !important;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 45px;
}

@media(max-width:768px) {
    .banner-box h2 {
        font-size: 30px;
    }
}


.vs-contact .form-group .form-control {

    border-radius: 10px;
    width: 100%;
    border-color: rgba(34, 55, 64, 0.1);
    background: transparent;
    color: #222;
    font-size: 16px;
    font-weight: 500;
    height: 69px;
    transition: all 0.3s ease-in-out;
  background: rgba( 34, 55, 64, 0.07);
}
.vs-contact a{
    color: inherit;
    transition: 0.2;
}
.vs-contact a:hover{
    color: var(--theme-color);
}
.vs-contact textarea {
    min-height: 150px;
    padding: 20px;
}
.vs-contact .form-group button[type=submit] {
  border-radius: 50px;
}

.vs-contact-info {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  line-height: 186.667%;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}
@media (min-width: 1400px) {
  .vs-contact-info {
    max-width: 460px;
  }
}
.vs-contact-info .social-follow {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .vs-contact-info .social-follow {
    gap: 20px;
    margin-top: 15px;
  }
}
.vs-contact-info .social-follow ul {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 991px) {
  .vs-contact-info .social-follow ul {
    gap: 10px;
  }
}

.vs-contact-list {
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(156, 155, 155, 0.5);
}
@media (max-width: 991px) {
  .vs-contact-list {
    margin-top: 15px;
    padding-bottom: 15px;
  }
}
.vs-contact-list .contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
}
.vs-contact-list .contact-item:not(:last-child) {
  margin-bottom: 15px;
}
.vs-contact-list .contact-item .icon {
  width: 72px;
  height: 72px;
  background-color: var(--theme-color);
  border-radius: 100%;
  flex-shrink: 0;
  display: grid;
  place-content: center;
  box-shadow: 0px 0px 0px 3px rgba(247, 146, 31, 0.3);
  color: var(--white-color);
  font-size: 25px;
  margin: 3px;
}
@media (max-width: 991px) {
  .vs-contact-list .contact-item .icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
.vs-contact-list .contact-item .info .info-title {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 162.5%;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}
.vs-contact-list .contact-item .info p {
  color: #222;
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 162.5%;
  text-transform: capitalize;
  a{
    text-transform: lowercase;
    word-break: break-all;
  }
}
.main_site_name{
    font-weight: 800;
    font-size: 30px;
    max-width: 185px;
    word-break: break-word;
    white-space: normal;
    line-height: 1;
    padding: 5px 0;
    text-align: center;
    color: #fff;
}
footer .main_site_name{
  background-color: #000;
  padding: 10px ;
  border-radius: 10px;
}
@media(max-width:768px){
  .main_site_name{
    font-size: 17px;
    max-width: 90px;
  }
footer .main_site_name{
  max-width: 95px;
}
}


/*# POP Up */

.main-popup {
  display: none; /* Hide popup by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.main-popup .form-control, .main-popup .form-select{
    height: 46px;
    border-radius: 5px !important;
    background-color: #f2f2f2;
    border: 1px solid #000000;
    margin-block: 0 20px;
    padding: 8px;
    color: #000;
}
.main-popup textarea{
    height: 90px;
    min-height: 90px;
}
.main-popup hr{
    margin: 5px 0;
    background-color: #fff;
}
.main-popup .form-control:focus, .main-popup .form-select:focus{
    box-shadow: none;
}
.main-popup .form-control::placeholder, .main-popup .form-select::placeholder, .main-popup textarea::placeholder{
    transition: 0.3s;
    color: #000;
}
.main-popup .form-control:focus::placeholder, .main-popup .form-select:focus::placeholder, .main-popup textarea:focus::placeholder{
    opacity: 0;
}
.main-popup.active {
  display: flex; /* Show when active */
}
.main-popup .card_top{
    background-image: url(../images/services/delhi.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    height: 150px;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background-position: center;
    width: 100%;
}
.pop_heading{
    font-size: 26px;
    margin-block: 5px;
    line-height: 1;
    text-align: center;
    color: #fff;
}
.sub_heading{
    color: #f1f1f1;
    font-size: 16px;
    text-align: center;
    margin-top: -6px;
}
.main-popup .card_top:before{
    content: '';
    background-color: #222;
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.main-popup .card_top h2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 80%;
    text-align: center;
    line-height: 1.2;
    font-size: 28px;
    letter-spacing: 2px;
}
.main-popup form{    
    padding: 15px;
    /* border: 2px solid var(--theme-color); */
    border-radius: 15px;
    width: 100%;
    margin-inline: auto;
    margin-block: 15px;
    padding-block: 0;
}
.outer-popup {
    width: 100%;
    max-width: 26rem;
    margin: 0px auto;
    background-color: var(--theme-color);
    border-radius: 10px;
    padding: 0;
    box-shadow: 0px 0px 12px #8a8a8a;
    height: fit-content;
    position: relative;
    overflow: hidden;
    border: 4px solid #fff;
}
.outer-popup .th-btn{
    background-color: var(--theme-color2);
}
.outer-popup .th-btn:before{
    background-color: #d1d1d1;
}
.close-popup {
  width: 100%;
  text-align: right;
  margin: -6px;
}

.close-popup-span {
    padding-right: 0rem;
    cursor: pointer;
    position: absolute;
    right: 2px;
    top: 2px;
    z-index: 3;
}

.popup-heading {
  margin-top: 0.5rem;
  color: #323232;
  font-size: 18px;
  letter-spacing: 1px;
  text-align: center;
  font-weight: 600;
}

.popup-heading > span {
  font-weight: 600;
  color: #03a84e;
  text-transform: uppercase;
}
.form_enquiry_caption_course{
  color: #fff;
}
.pop_upgroup label span{
  color: #fff;
}
.pop_upgroup label{
  font-weight: 600;
  color: #fff;
}
.pop_upgroup .btn-theme{
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  background-color: #000;
  span{
    color: #fff;
  }
}
.pop_upgroup .btn-theme:hover{
  box-shadow: none;
}
.form__btn{
  background-color: var(--theme-color);
}
.form__btn:hover{
  background-color: #fff;
}
.outer-popup .pop_upgroup label span{
  color: red;
}
.outer-popup .pop_upgroup label{
  font-weight: 600;
  color: #000;
}
.popup-btn {
  font-size: 0.9rem;
  color: white;
  display: none;
  background-color: rgb(27, 27, 95);
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  display: block;
  margin: 1rem auto;
  border-radius: 5px;
  text-transform: capitalize;
  cursor: pointer;
  font-weight: 500;
}

.popup-btn:hover {
  background-color: rgb(15, 15, 53);
}

.cross-after-text {
  justify-content: space-between;
  align-items: center;
  margin-left: 1rem;
  display: flex;
  cursor: pointer;
  position: fixed;
  bottom: 6rem;
}
