* {
  margin: 0;
  padding: 0;
  font-family: var(--theme-font);
  box-sizing: border-box;
}

body {
  font-family: var(--theme-font);
}

:root {
  --heading-font: "Poppins", sans-serif;
  --color-black: #000;
  --theme-color: #b99548;
  --theme-color2: #0D3B66;
  --theme-font: "Poppins", sans-serif;
}

.common-radius {
  border-radius: var(--radius);
}

.whatsapp {
  position: fixed;
  width: 50px;
  height: 50px;
  background-color: #00e676;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  box-shadow: 2px 2px 3px #5f5f5f;
  z-index: 10;
  margin-top: 0px;
  line-height: 50px;
  transition: all ease-in-out 0.2s;
  bottom: 70px;
  right: 10px;
}

.call-icon {
  position: fixed;
  width: 50px;
  height: 50px;
  background-color: #0a8549;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  box-shadow: 2px 2px 3px #5f5f5f;
  z-index: 10;
  margin-top: 0px;
  line-height: 50px;
  transition: all ease-in-out 0.2s;
  bottom: 130px;
  right: 10px;
}

.book-btns {
  position: fixed;
  background-color: var(--theme-color);
  z-index: 10;
  top: 47%;
  right: 23px;
  direction: unset;
  display: unset;
  transform: rotate(90deg);
  transform-origin: right;
  box-shadow: 0 0 16px -5px #000;
}

.title-des {
  font-weight: 500;
  display: inline-block;
  padding: 13px 19px 0 60px;
  margin-bottom: 25px;
  position: relative;
  text-transform: uppercase;
  font-family: var(--theme-font);
}
.title-des.center {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.title-des:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 40px;
  content: "";
  background-image: url(img/hatchback.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

::-moz-selection {
  background-color: var(--theme-color);
  color: #fff;
}

::selection {
  background-color: var(--theme-color);
  color: #fff;
}

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

p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  color: #3d3d3d;
  line-height: 30px;
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

.theme-color {
  color: var(--theme-color);
  font-family: inherit;
}

.background-1 {
  background-color: var(--theme-color) !important;
}

.background-2 {
  background-color: var(--theme-color2) !important;
}

.common-btn {
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s linear;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2rem;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 32px 20px 31px;
  line-height: 1;
  border-radius: 0px;
  background-color: var(--theme-color2);
  color: #fff;
  display: flex;
  font-family: var(--theme-font);
  border: solid 2px var(--theme-color2);
}
.common-btn i {
  margin-left: 0.7rem;
  font-size: 18px;
  transform: rotate(-45deg);
}
.common-btn:hover {
  background-image: unset;
  background-color: transparent;
  color: #000;
}

.common-space {
  padding: 100px 0;
}

.common-heading {
  position: relative;
  margin: 0;
  font-size: 36px;
  font-family: "poppins";
  line-height: 58px;
  color: var(--theme-color2);
  padding-left: 30px;
  padding-right: 30px;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  margin: 0 0 30px;
}
.common-heading.center {
  margin-left: auto;
  margin-right: auto;
}
.common-heading:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url(img/star.svg) no-repeat;
  width: 23px;
  height: 23px;
  left: 0;
}
.common-heading:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url(./img/star.svg) no-repeat;
  width: 23px;
  height: 23px;
  right: 0;
}

.common-list {
  padding-left: 0;
}
.common-list li {
  padding-left: 20px;
  list-style: none;
  margin-bottom: 12px;
  position: relative;
  line-height: 1.8;
}
.common-list li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "fontawesome";
  color: var(--theme-color);
}

.ads {
  background-color: #e9e9e9;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-self: unset;
  justify-content: center;
}

.ads2-new {
  background-color: #e9e9e9;
  width: 100%;
  height: 170px;
  display: flex;
  align-items: center;
  justify-self: unset;
  justify-content: center;
}

header {
  width: 100%;
  background-color: #fff;
}
header.sticky {
  position: fixed;
  background-color: #fff;
  z-index: 99;
  box-shadow: 0 0 15px -8px #000;
}
header .bg-body-tertiary {
  background-color: transparent !important;
}
header .navbar-brand {
  padding: 15px 5px;
}
header .navbar-brand img {
  max-height: 60px;
}
header nav {
  padding-top: 0 !important;
  padding: 0 !important;
}
header .callbtn {
  display: flex;
  margin-right: 20px;
  line-height: 61px;
  padding-top: 0;
  padding-bottom: 0;
}
header .callbtn a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d3b66;
  font-weight: 700;
}
header .callbtn .cll-icons i {
  margin-right: 8px;
  font-size: 25px;
  color: var(--theme-color);
}
header .callbtn .cll-cont h4 {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}
header .callbtn .cll-cont h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1;
  transition: 0.5s;
}
header .cont-btns a {
  margin-top: 0;
}
header .navbar-nav li a.nav-link {
  font-weight: 500;
  margin-right: 10.5px;
  color: #000;
  text-transform: uppercase;
}
header .navbar-nav li a.nav-link.active {
  color: var(--theme-color);
}
header .menu-item-has-children:hover .dropdown-menu {
  display: block;
}
header .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
}
header .dropdown-item.active,
header .dropdown-item:active {
  background-color: var(--theme-color2);
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}
.banner-home {
  position: relative;
}
.banner-home .owl-dots {
  position: absolute;
}
.banner-home .bnr-img {
  position: relative;
}
.banner-home .bnr-bottom {
  position: absolute;
  bottom: 0;
  z-index: 5;
  left: 0;
  width: 100%;
}
.banner-home .bnr-bottom img {
  height: auto;
}
.banner-home .owl-item.active .bnr-img img {
  animation: zoomIn 4s 1 linear;
}
.banner-home .bnr-outer-cont {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 8;
  top: 50%;
  transform: translateY(-50%);
}
.banner-home .bnr-outer-cont .redmore .common-btn {
  width: -moz-fit-content;
  width: fit-content;
}
.banner-home .bnr-outer-cont h2 {
  font-size: 65px;
  line-height: 1.15em;
  color: #ffffff;
  font-weight: 400;
}
.banner-home .bnr-outer-cont p {
  color: #fff;
  font-size: 20px;
}
.banner-home .owl-prev {
  position: absolute;
  left: 0px;
  top: 47%;
  font-size: 38px;
  width: 40px;
  height: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
  color: #fff !important;
  padding: 0;
  margin: 0;
}
.banner-home .owl-prev span {
  font-size: 30px;
  padding-bottom: 0px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  transition: all 0.3s;
  width: 32px;
  color: #fff;
  height: 32px;
  line-height: 26px;
  border-radius: 3px;
  background-color: var(--theme-color);
}
.banner-home .owl-next {
  position: absolute;
  right: 0px;
  top: 47%;
  font-size: 38px;
  width: 40px;
  height: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
  color: #fff !important;
  padding: 0;
  margin: 0;
}
.banner-home .owl-next span {
  font-size: 30px;
  padding-bottom: 0px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
  width: 32px;
  height: 32px;
  line-height: 26px;
  border-radius: 3px;
  background-color: var(--theme-color);
}
.banner-home.mobile-ban {
  display: none;
}

.about-us {
  position: relative;
  background-image: linear-gradient(45deg, rgb(13, 59, 102), rgba(13, 59, 102, 0.89)), url(img/ser-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.about-us .title-des {
  color: #fff;
}
.about-us p {
  color: #fff;
}
.about-us h2 {
  color: var(--theme-color);
}
.about-us .common-btn {
  background-color: var(--theme-color);
  color: #fff;
}
.about-us .common-btn:hover {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.about-us:before {
  content: "";
  position: absolute;
  width: 100%;
  background-color: var(--theme-color);
}
.about-us .ab-img-wrapper img {
  max-height: 478px;
  filter: drop-shadow(14px 15px 12px rgba(0, 0, 0, 0.3764705882));
}

.service-home {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.service-home h2 {
  margin-bottom: 3rem;
  color: var(--theme-color2);
}
.service-home .ser-ab-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-home .ser-ab-wrapper .ser-box {
  background-color: #f8f6f6;
  padding: 25px;
  border-radius: 0 0 25px 0;
  box-shadow: 0 15px 29px -13px rgba(0, 0, 0, 0.6509803922);
}
.service-home .ser-ab-wrapper .ser-box h4 {
  color: var(--theme-color2);
  font-weight: 600;
  margin-bottom: 17px;
}
.service-home .ser-ab-wrapper .ser-box p {
  color: #000;
  line-height: 1.8;
}

.counter {
  padding: 40px 0;
  background-color: var(--theme-color2);
}
.counter .counter-box-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.counter .counter-box-wrapper .counter-box {
  background-image: linear-gradient(45deg, rgba(186, 152, 80, 0.9294117647), rgba(187, 153, 80, 0.9607843137)), url(img/bnr1.jpg);
  padding: 25px;
  color: #fff;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.counter .counter-box-wrapper .counter-box h4 {
  font-size: 45px;
  font-weight: 500;
}
.counter .counter-box-wrapper .counter-box p {
  color: #fff;
}

.book-now-page .form-wrapper-page {
  background-color: var(--theme-color2);
  color: #fff;
  padding: 40px;
  border-radius: 0px;
}
.book-now-page .form-wrapper-page h2 {
  margin-bottom: 2.5rem;
  font-family: "poppins";
  text-align: center;
  color: #fff;
}
.book-now-page .form-wrapper-page form input:not([type=submit]) {
  line-height: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
  border-radius: 0;
  border-radius: 0;
}
.book-now-page .form-wrapper-page form textarea {
  border-radius: 0;
  height: 100px;
}
.book-now-page .form-wrapper-page form input[type=submit] {
  background-color: var(--theme-color);
  color: #fff;
  background-image: unset;
  border: 0;
  margin-left: auto;
  text-align: center;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  font-size: 20px;
}

footer {
  background: linear-gradient(45deg, rgba(13, 59, 102, 0.92), rgba(13, 59, 102, 0.92)), url(img/footer-bg.jpg);
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  background-position: center;
  background-size: cover;
}
footer * {
  font-family: "poppins";
}
footer .middle-widget-sec {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
footer h3 {
  font-size: 24px;
  line-height: 32px;
  color: var(--theme-color);
  font-family: "poppins";
  font-weight: 700;
  position: relative;
  padding-bottom: 7px;
  margin-bottom: 10px;
}
footer p {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
}
footer ul {
  margin: 0;
  padding-left: 0;
}
footer ul li {
  font-size: 15px;
  line-height: 28px;
  color: #fff;
}
footer a {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
}
footer form {
  position: relative;
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-end;
  position: relative;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
footer form input {
  position: relative;
  width: 100%;
  padding-left: 15px;
  height: 65px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  color: #b4b4b4;
  padding: 10px;
  border-radius: 15px;
  transition: all 500ms ease;
}
footer form button {
  font-size: 15px;
  color: #fff;
  width: 50px;
  border-radius: 12px;
  height: 65px !important;
  line-height: 65px;
  text-align: center;
  padding-top: 0;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 0;
  cursor: pointer;
  transition: all 500ms ease;
  background-color: var(--theme-color3);
  border: 0;
}
footer form label {
  color: #Fff !important;
}
footer .links-list li a:hover {
  color: #fff;
}
footer .social-links {
  display: flex;
  align-items: center;
  margin-left: 1.1rem;
  padding-left: 1.5rem;
  border-left: solid 1px rgba(217, 216, 216, 0.14);
}
footer .social-links li {
  position: relative;
  display: inline-block;
  padding: 0px 25px 0 0;
  position: relative;
}
footer .social-links li a {
  width: 42px;
  height: 42px;
  justify-content: center;
  border: solid 1px rgba(217, 216, 216, 0.14);
  display: flex;
  border-radius: 25px;
  transition: all 0.3s;
  align-items: center;
  justify-content: center;
}
footer .social-links li a:hover {
  background-color: var(--theme-color2);
}
footer .social-links li i {
  margin-right: 0px;
  color: #fff;
}
footer .footer-widget {
  padding: 50px 0;
}
footer .footer-widget ul li {
  margin-bottom: 9px;
  list-style: none;
}
footer .footer-widget.links-widget {
  padding-left: 45px;
}
footer .about-widget {
  position: relative;
}
footer .footer-column:first-child {
  border-left: 0;
}
footer .footer-column:nth-child(2) {
  border-right: 0;
  border-left: 0;
}
footer .footer-bottom {
  position: relative;
  padding: 15px 0px;
}
footer .footer-bottom p {
  margin: 0;
}
footer .info-list {
  padding-left: 0;
}
footer .info-list li {
  display: flex;
  align-items: start;
  justify-content: start;
  margin-bottom: 10px;
}
footer .info-list li i {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-right: 10px;
  align-items: center;
  justify-content: center;
  color: var(--theme-color);
}

.breadcrumb {
  padding-top: 9rem;
}

.tour-packages {
  background-color: #f5f5f5;
}
.tour-packages .pack-pac {
  background-color: var(--theme-color2);
}
.tour-packages h2 {
  margin-bottom: 3rem;
}
.tour-packages img {
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
.tour-packages .pac-cont {
  padding: 20px;
}
.tour-packages .pac-cont h4 {
  margin-top: 0rem;
  font-family: var(--theme-font);
  font-size: 15px;
  text-transform: uppercase;
  line-height: 1.7;
  font-weight: 500;
  color: #fff;
}

.m-btnss {
  display: none;
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 8;
  padding: 14px 12px;
  background-image: linear-gradient(45deg, #b99548 50%, #071f36 50%);
  grid-template-columns: repeaT(2, 1fr);
}
.m-btnss .callbtn {
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: center;
}
.m-btnss .callbtn i {
  margin-right: 6px;
}
.m-btnss .callbtn a {
  color: #fff;
}
.m-btnss .cont-btns {
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: center;
}
.m-btnss .cont-btns a {
  color: #fff;
}

.testimonials {
  background-image: linear-gradient(45deg, rgb(255, 255, 255), rgba(255, 255, 255, 0.82)), url(img/bred.jpg);
  background-size: cover;
  background-position: left;
}
.testimonials .title-des {
  color: #fff;
}
.testimonials .owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 38%;
  left: -20px;
  color: #fff;
  background-color: #fff;
  width: 31px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  font-size: 20px;
  color: var(--theme-color);
  padding-bottom: 4px;
  opacity: 0.7;
}
.testimonials .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 38%;
  right: -20px;
  color: #fff;
  background-color: #fff;
  width: 31px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  font-size: 20px;
  color: var(--theme-color);
  padding-bottom: 4px;
  opacity: 0.7;
}
.testimonials .work-content .common-heading {
  margin-bottom: 10px;
}
.testimonials .work-content .work-top {
  font-weight: 700;
  font-size: 20px;
  color: var(--theme-color2);
}
.testimonials .work-content ul {
  list-style: none;
  background-color: white;
  padding: 10px 0px;
  border-radius: 10px;
}
.testimonials .work-content ul li {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  margin: 10px 0px;
  background-color: aliceblue;
  border-radius: 5px;
}
.testimonials .work-content ul li span {
  font-weight: bold;
}
.testimonials .work-content .work-bt {
  margin-top: 20px;
  font-weight: 500;
}
.testimonials .work-content .work-bt a {
  color: var(--theme-color);
  font-weight: 700;
  text-decoration: underline;
}
.testimonials .work-content .inner-test {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 50px 25px 20px;
  margin-bottom: 10px;
  margin-top: 20px;
  box-shadow: 0 0 17px rgba(0, 0, 0, 0.1);
}
.testimonials .work-content .inner-test .quotes {
  position: absolute;
  left: 21px;
  top: -39px;
  font-size: 70px;
  color: #bb9950;
}
.testimonials .work-content .inner-test p {
  font-size: 16px;
  line-height: 33px;
  color: black;
  margin-bottom: 20px;
  font-weight: 400;
}
.testimonials .work-content .inner-test h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--theme-color2);
}
.testimonials .work-content .inner-test h6 {
  font-size: 14px;
  color: var(--theme-color);
}
.testimonials .work-content .inner-test .rating {
  position: absolute;
  right: 0;
  bottom: -7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--theme-color2);
  min-width: 180px;
  font-size: 12px;
  letter-spacing: 0.05em;
  height: 45px;
  border-radius: 10px;
}
.testimonials .work-content .inner-test .rating i {
  color: var(--theme-color);
}
.testimonials .work-content .inner-test .icon-quote {
  position: absolute;
  right: 55px;
  bottom: 57px;
  width: 64px;
  height: 46px;
  background-image: url("img/icon-quote.png");
}

.home-testi .common-heading {
  font-size: 26px;
}

.breds {
  background-image: linear-gradient(45deg, rgba(13, 59, 102, 0.92), rgba(13, 59, 102, 0.93)), url(img/bred.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 6rem 0 5rem;
}
.breds span {
  color: white;
}
.breds h1 {
  font-size: 48px;
  color: #fff;
  color: var(--theme-color);
  text-transform: uppercase;
  font-weight: 600;
}
.breds ul {
  padding-left: 0;
}
.breds ul li {
  display: inline-block;
  color: #fff;
  position: relative;
  list-style: none;
  padding-right: 30px;
}
.breds ul li:before {
  position: absolute;
  content: "\f105";
  right: 10px;
  top: 0px;
  color: #fff;
  font-family: "fontawesome";
}
.breds ul li a {
  color: #fff;
}
.breds ul li:last-child:before {
  display: none;
}

.contact-page .add__card {
  background-color: var(--theme-color2);
  border-radius: 0px;
  padding: 35px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-page .add__card .icon__box {
  padding: 10px;
  background-color: var(--theme-color);
  color: #fff;
  border-radius: 6px;
  width: 41px;
  display: flex;
  align-items: center;
  height: 41px;
  justify-content: center;
}
.contact-page .add__card p {
  font-weight: 500;
  font-size: 18px;
  font-family: "poppins";
  margin-bottom: 10px;
  color: #fff;
}

.cont-page-form .form-wrapper-page {
  background-color: var(--theme-color2);
  color: #fff;
  padding: 40px;
  border-radius: 0px;
}
.cont-page-form .form-wrapper-page h2 {
  margin-bottom: 2.5rem;
  font-family: "poppins";
  text-align: center;
  color: #fff;
}
.cont-page-form .form-wrapper-page form input:not([type=submit]) {
  line-height: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
  border-radius: 0;
}
.cont-page-form .form-wrapper-page form textarea {
  border-radius: 0;
  height: 100px;
}
.cont-page-form .form-wrapper-page form input[type=submit] {
  background-color: var(--theme-color);
  color: #fff;
  background-image: unset;
  border: 0;
  margin-left: auto;
  text-align: center;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  font-size: 20px;
}

.about-page {
  background-image: linear-gradient(90deg, #ffffff 0%, #ffffff 50%, transparent 60%), url(img/ab-bg.jpg);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
}
.about-page .common-heading {
  color: var(--theme-color);
}

.ab-part2 {
  overflow: hidden;
}
.ab-part2 h4 {
  font-size: 24px;
  color: var(--theme-color);
}
.ab-part2 ul {
  padding-left: 0;
}
.ab-part2 ul li {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 30px;
  margin-bottom: 15px;
  list-style: none;
  padding-left: 45px;
  position: relative;
}
.ab-part2 ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
  background-image: url(img/check-mark-ne.png);
  background-size: contain;
}
.ab-part2 .ab-p-2-wrapper {
  background-color: var(--theme-color2);
  padding: 50px;
  border-radius: 25px 0 0 25px;
  position: relative;
  color: #fff;
}
.ab-part2 .ab-p-2-wrapper p {
  color: #fff;
}
.ab-part2 .ab-p-2-wrapper h4 {
  color: #fff;
}
.ab-part2 .ab-p-2-wrapper::before {
  left: 100%;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  content: "";
  background-color: var(--theme-color2);
}

.taxi-ser .tzat-ser-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.taxi-ser .tzat-ser-wrapper .taxy-ser-box {
  position: relative;
  box-shadow: 0 0 30px -20px #000;
  overflow: hidden;
}
.taxi-ser .tzat-ser-wrapper .taxy-ser-box h4 {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 10px 10px;
  color: #fff;
  bottom: 0;
  font-size: 18px;
  background-color: var(--theme-color2);
}
.taxi-ser .tzat-ser-wrapper .taxy-ser-box img {
  transition: all 0.3s;
}
.taxi-ser .tzat-ser-wrapper .taxy-ser-box:hover img {
  opacity: 0.7;
  transform: scale(1.06);
}

.car-rental-rates {
  background-color: #153347;
}
.car-rental-rates .car-rt-box {
  background-color: #fff;
}
.car-rental-rates .car-rt-box .car-img img {
  width: 100%;
}
.car-rental-rates .car-rt-box .car-dets {
  padding: 25px;
}
.car-rental-rates .car-rt-box .car-dets h4 {
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 1.5rem;
}
.car-rental-rates .car-rt-box .car-dets ul {
  padding-left: 0;
}
.car-rental-rates .car-rt-box .car-dets ul li {
  padding-left: 35px;
  position: relative;
  list-style: none;
  margin-bottom: 6px;
}
.car-rental-rates .car-rt-box .car-dets ul li:before {
  position: absolute;
  content: "\f061";
  left: 10px;
  top: 0px;
  color: var(--theme-color);
  font-family: "fontawesome";
}

.car-rental-driver-rates {
  background-color: #ffffff;
}
.car-rental-driver-rates .car-rt-box {
  background-color: #ebf1f9;
}
.car-rental-driver-rates .car-rt-box .car-img img {
  width: 100%;
}
.car-rental-driver-rates .car-rt-box .car-dets {
  padding: 25px;
}
.car-rental-driver-rates .car-rt-box .car-dets h4 {
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 1.5rem;
}
.car-rental-driver-rates .car-rt-box .car-dets ul {
  padding-left: 0;
}
.car-rental-driver-rates .car-rt-box .car-dets ul li {
  padding-left: 35px;
  position: relative;
  list-style: none;
  margin-bottom: 6px;
}
.car-rental-driver-rates .car-rt-box .car-dets ul li:before {
  position: absolute;
  content: "\f061";
  left: 10px;
  top: 0px;
  color: var(--theme-color);
  font-family: "fontawesome";
}

.blog-page .blogs-wrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
.blog-page .blogs-wrapper .blogs-boxx {
  background-color: #efefef;
  padding: 30px;
  border-radius: 20px;
}
.blog-page .blogs-wrapper .blogs-boxx .blog-img {
  overflow: hidden;
  border-radius: 10px;
}
.blog-page .blogs-wrapper .blogs-boxx .blog-img img {
  transition: all 0.3s;
  width: 100%;
}
.blog-page .blogs-wrapper .blogs-boxx .common-btn {
  color: #fff;
  border-radius: 5px;
  margin-left: 1rem;
  border: solid 1px transparent;
  padding: 13px 20px;
}
.blog-page .blogs-wrapper .blogs-boxx .common-btn:hover {
  color: var(--theme-color2);
  background-color: transparent;
  border-color: var(--theme-color2);
}
.blog-page .blogs-wrapper .blogs-boxx .meta-abr {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #252525;
  margin-top: 10px;
  font-family: "poppins";
  margin-bottom: 15px;
}
.blog-page .blogs-wrapper .blogs-boxx .meta-abr i {
  color: var(--theme-color2);
  margin-right: 2px;
}
.blog-page .blogs-wrapper .blogs-boxx .meta-abr .users {
  margin-right: 1.5rem;
}
.blog-page .blogs-wrapper .blogs-boxx h4 {
  font-weight: 600;
  font-family: "poppins";
  color: var(--theme-color2);
  font-size: 20px;
}
.blog-page .blogs-wrapper .blogs-boxx:hover .blog-img img {
  transform: scale(1.06);
}

.ser-sidebar {
  position: sticky;
  top: 90px;
}
.ser-sidebar .side-ser-wrapper {
  background: var(--theme-color2);
  padding: 30px;
  border-radius: 10px;
  color: #fff;
}
.ser-sidebar .side-ser-wrapper h4 {
  font-weight: 600;
  font-family: "poppins";
  font-size: 28px;
}
.ser-sidebar .side-ser-wrapper ul {
  padding-left: 0;
  margin-bottom: 0;
}
.ser-sidebar .side-ser-wrapper ul li {
  padding-left: 20px;
  list-style: none;
  position: relative;
  transition: all 0.3s;
}
.ser-sidebar .side-ser-wrapper ul li:before {
  width: 10px;
  height: 10px;
  content: "";
  transition: all 0.3s;
  position: absolute;
  left: 0;
  border-radius: 25px;
  top: 24px;
  background-color: #fff;
  opacity: 0.3;
}
.ser-sidebar .side-ser-wrapper ul li a {
  padding: 15px 0;
  font-family: "poppins";
  display: flex;
  border-bottom: solid 1px rgba(221, 221, 221, 0.0784313725);
  transition: all 0.3s;
  border-radius: 8px;
}
.ser-sidebar .side-ser-wrapper ul li a:hover {
  background-color: rgba(25, 61, 98, 0.2509803922);
}
.ser-sidebar .side-ser-wrapper ul li:last-child a {
  border-bottom: 0;
}

.work-schd {
  background-image: linear-gradient(45deg, rgb(255, 255, 255), rgba(255, 255, 255, 0.82)), url(img/bred.jpg);
  background-size: cover;
  background-position: left;
}
.work-schd .form-box {
  max-width: 85%;
  border-radius: 10px;
  background-color: var(--theme-color2);
  padding: 3.75rem 3.0625rem 1.75rem;
}
.work-schd .form-box label {
  color: #fff;
  margin-bottom: 8px;
}
.work-schd .form-box .treat-head h3 {
  font-weight: 700;
  font-size: 30px;
  color: var(--theme-color);
}
.work-schd .form-box .treat-head p {
  color: white;
  font-weight: 500;
  margin-bottom: 22px;
}
.work-schd .form-box input {
  padding: 9px 16px;
  margin: 0 0 18px 0;
  border-radius: 0;
}
.work-schd .form-box textarea {
  padding: 14px 16px;
  margin: 0 0 18px 0;
  border-radius: 0;
  height: 100px;
}
.work-schd .form-box .common-btn {
  background-color: var(--theme-color);
  padding: 20px 40px;
  text-transform: uppercase;
}
.work-schd .form-box .common-btn:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.work-schd .work-content .common-heading {
  margin-bottom: 10px;
}
.work-schd .work-content .work-top {
  font-weight: 700;
  font-size: 20px;
  color: var(--theme-color2);
}
.work-schd .work-content ul {
  list-style: none;
  background-color: white;
  padding: 10px 0px;
  border-radius: 10px;
}
.work-schd .work-content ul li {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  margin: 10px 0px;
  background-color: aliceblue;
  border-radius: 5px;
}
.work-schd .work-content ul li span {
  font-weight: bold;
}
.work-schd .work-content .work-bt {
  margin-top: 20px;
  font-weight: 500;
}
.work-schd .work-content .work-bt a {
  color: var(--theme-color);
  font-weight: 700;
  text-decoration: underline;
}
.work-schd .work-content .inner-test {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 50px 25px 20px;
  margin-bottom: 10px;
  margin-top: 20px;
  box-shadow: 0 0 17px rgba(0, 0, 0, 0.1);
}
.work-schd .work-content .inner-test .quotes {
  position: absolute;
  left: 21px;
  top: -39px;
  font-size: 70px;
  color: #bb9950;
}
.work-schd .work-content .inner-test p {
  font-size: 17px;
  line-height: 33px;
  color: black;
  margin-bottom: 20px;
  font-weight: 400;
  text-align: justify;
}
.work-schd .work-content .inner-test h2 {
  font-size: 27px;
  font-weight: 700;
  color: var(--theme-color2);
}
.work-schd .work-content .inner-test h6 {
  font-size: 14px;
  color: var(--theme-color);
}
.work-schd .work-content .inner-test .rating {
  position: absolute;
  right: 0;
  bottom: -7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--theme-color2);
  min-width: 180px;
  font-size: 12px;
  letter-spacing: 0.05em;
  height: 45px;
  border-radius: 10px;
}
.work-schd .work-content .inner-test .rating i {
  color: var(--theme-color);
}
.work-schd .work-content .inner-test .icon-quote {
  position: absolute;
  right: 55px;
  bottom: 57px;
  width: 64px;
  height: 46px;
  background-image: url("img/icon-quote.png");
}

.count {
  background-color: var(--theme-color2);
  padding: 30px;
}
.count .count-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.count .count-main .count-box {
  border-right: 1px dotted white;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 20px;
}
.count .count-main .count-box:last-child {
  border: none;
}
.count .count-main .count-box .icon-box i {
  font-size: 70px;
  color: var(--theme-color);
}
.count .count-main .count-box .content span {
  font-size: 35px;
  font-weight: 700;
  color: white;
}
.count .count-main .count-box .content h4 {
  margin-bottom: 2px;
  color: white;
  font-weight: 700;
}
.count .count-main .count-box .content p {
  margin-bottom: 0;
  color: white;
}

.service-car-detaila-row {
  position: relative;
  overflow-x: hidden;
}
.service-car-detaila-row h4 {
  font-size: 25px;
  font-family: "poppins";
  line-height: 58px;
  color: var(--theme-color2);
  padding-left: 0;
  padding-right: 21px;
  width: 100%;
  font-weight: 700;
  margin: 0 0 30px;
  background-color: #f9f9f9;
  padding-left: 13px;
}
.service-car-detaila-row h3 {
  font-size: 25px;
  font-family: "poppins";
  line-height: 58px;
  color: var(--theme-color2);
  padding-left: 0;
  padding-right: 21px;
  width: 100%;
  font-weight: 700;
  margin: 0 0 30px;
  background-color: #f9f9f9;
  padding-left: 13px;
}
.service-car-detaila-row ul li {
  padding-left: 20px;
  list-style: none;
  margin-bottom: 12px;
  position: relative;
  line-height: 1.8;
}
.service-car-detaila-row ul li:before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "fontawesome";
  color: var(--theme-color);
}
.service-car-detaila-row .list-rating-star {
  color: #FFC107;
  margin-bottom: 15px;
}
.service-car-detaila-row .car-img-wrapper {
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.service-car-detaila-row .car-img-wrapper::before {
  position: absolute;
  left: 50%;
  content: "";
  top: 50%;
  width: 350px;
  height: 350px;
  background-color: var(--theme-color2);
  border-radius: 300px;
  transform: translate(-50%, -50%);
  z-index: -1;
  outline: solid 7px #0d3b66;
  outline-offset: 15px;
}

/* Guide Charges Section Specific Styles */
.guide-charges-section {
  background-image: linear-gradient(90deg, #f3f3f3 0%, rgba(255, 255, 255, 0.9215686275) 50%, transparent 60%), url(img/tour-guide-s.jpg);
  background-size: cover;
  background-position: right center;
}
.guide-charges-section h2 {
  color: var(--theme-color);
  font-weight: 700;
}
.guide-charges-section .guide-charges-content {
  margin: 0 auto;
  /* Inner padding */
  border-radius: 15px;
  /* Stronger shadow */
  position: relative;
  z-index: 1;
}
.guide-charges-section .guide-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.guide-charges-section .guide-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  padding-left: 0;
  transition: all 0.3s ease;
  border-radius: 5px;
  background: #eeeeee;
  padding: 13px 12px;
  margin-bottom: 0;
}
.guide-charges-section .guide-list li .price-range {
  font-weight: 600;
}
.guide-charges-section .guide-list li:nth-child(odd) {
  background: #ffffff;
}
.guide-charges-section .guide-list li:last-child {
  margin-bottom: 0;
}
.guide-charges-section .guide-list li:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}
.guide-charges-section .guide-list li i {
  color: var(--theme-color);
  font-size: 1.5rem;
  min-width: 30px;
  text-align: center;
  filter: drop-shadow(0 0 5px rgba(var(--theme-color), 0.5));
}

.category-section-four {
  background-color: #fcfbfb;
}
.category-section-four .category-item {
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  background: #fff;
  transition: 500ms all ease;
}
.category-section-four .category-item .bk-now-in {
  background-color: var(--theme-color2);
  color: #fff;
  padding: 1px 7px;
  border-radius: 6px;
  font-size: 13px;
}
.category-section-four .category-item .category-info {
  padding: 20px;
}
.category-section-four .category-item .title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.category-section-four .category-item p {
  font-size: 14px;
}
.category-section-four .category-item .link-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #F1F1F1;
  font-size: 16px;
  color: #111111;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-section-four .category-item .category-img {
  text-align: right;
}
.category-section-four .category-item:hover {
  background: #111111;
}
.category-section-four .category-item:hover p {
  color: #fff;
}
.category-section-four .category-item:hover .title a {
  color: #fff;
}
.category-section-four .category-item:hover .link-icon {
  background: #FFA633;
  color: #fff;
}

.our-cars {
  padding-top: 0;
  background-color: #fcfbfb;
}
.our-cars .listing-item {
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  margin: 0 0 24px 0;
  padding: 15px;
  margin-bottom: 20px;
}
.our-cars .listing-item .listing-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 0 10px;
}
.our-cars .listing-item .listing-img img {
  border-radius: 10px;
  width: 100%;
  transform: translateZ(0);
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  height: 245px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.9);
}
.our-cars .listing-item .featured-text {
  background: #ffffff;
  border-radius: 5px;
  color: #111;
  z-index: 9;
  padding: 1px 6px;
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 14px;
}
.our-cars .listing-item .featured-text span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 4px 0;
  box-shadow: 0px 4px 24px 0px rgba(225, 225, 225, 0.2509803922);
  color: #FFF;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  text-transform: capitalize;
  text-align: center;
  font-size: 14px;
  inset-inline-end: 0px;
  inset-block-start: 24px;
  transform: rotate(-45deg);
  background-color: red;
}
.our-cars .listing-item .listing-price-text {
  font-size: 13px;
  font-weight: bold;
}
.our-cars .listing-item .listing-price h6 {
  font-weight: 700;
  font-size: 21px;
  color: #FF0000;
  margin-bottom: 0;
}
.our-cars .listing-item .listing-price h6 span {
  font-size: 14px;
  color: #000;
}
.our-cars .listing-item .feature-text {
  background-size: cover;
  text-transform: uppercase;
  color: #FFF;
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
  z-index: 6;
  top: 0;
  left: 0;
}
.our-cars .listing-item .feature-text span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 4px 0;
  box-shadow: 0px 4px 24px 0px rgba(225, 225, 225, 0.2509803922);
  color: #FFF;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  text-transform: capitalize;
  text-align: center;
  font-size: 14px;
  inset-inline-end: 0px;
  inset-block-start: 24px;
  transform: rotate(-45deg);
}
.our-cars .listing-item .listing-content {
  margin-top: 15px;
}
.our-cars .listing-item .listing-content .listing-features {
  position: relative;
  border-bottom: 1px solid #F4F4F4;
  margin: 0 0 15px;
  padding: 0 0 15px;
  width: 100%;
}
.our-cars .listing-item .listing-content .listing-features .list-rating {
  width: calc(100% - 25px);
  overflow: hidden;
  font-size: 14px;
}
.our-cars .listing-item .listing-content .listing-features .list-rating i {
  color: var(--theme-color);
}
.our-cars .listing-item .listing-content .listing-features .list-rating p {
  margin-top: 15px;
  margin-bottom: 9px;
  font-size: 14px;
  line-height: 1.7;
}
.our-cars .listing-item .listing-content .listing-features .listing-title {
  margin-bottom: 5px;
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}
.our-cars .listing-item .listing-content .listing-features .listing-title a {
  font-weight: 700;
  color: var(--theme-color2);
  margin-bottom: 4px;
  margin-top: 10px;
  display: flex;
}
.our-cars .listing-item .listing-location-details {
  background: #F2F7F6;
  padding: 10px;
  margin: 0 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.our-cars .listing-item .listing-button {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
.our-cars .listing-item .btn-order {
  background: var(--theme-color2);
  position: relative;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  padding: 9px 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.other-services {
  background-color: #f4f4f4;
}
.other-services .other-ser-ab-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.other-services .other-ser-ab-wrapper .other-ser-box {
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  margin: 0 0 24px 0;
  padding: 15px;
  margin-bottom: 0;
}
.other-services .other-ser-ab-wrapper .other-ser-box .ser-conts h4 {
  font-weight: 700;
  color: var(--theme-color2);
  margin-bottom: 4px;
  margin-top: 10px;
  display: flex;
}
.other-services .other-ser-ab-wrapper .other-ser-box .ser-conts p {
  margin-top: 15px;
  margin-bottom: 9px;
  font-size: 14px;
  line-height: 1.7;
}

.our-cars-page {
  background-color: #fcfbfb;
}
.our-cars-page .listing-item {
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  margin: 0 0 30px 0;
  padding: 15px;
  margin-bottom: 15px;
}
.our-cars-page .listing-item .listing-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 0 10px;
}
.our-cars-page .listing-item .listing-img img {
  border-radius: 10px;
  width: 100%;
  transform: translateZ(0);
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  height: 245px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.9);
}
.our-cars-page .listing-item .featured-text {
  background: #ffffff;
  border-radius: 5px;
  color: #111;
  z-index: 9;
  padding: 1px 6px;
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 14px;
}
.our-cars-page .listing-item .featured-text span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 4px 0;
  box-shadow: 0px 4px 24px 0px rgba(225, 225, 225, 0.2509803922);
  color: #FFF;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  text-transform: capitalize;
  text-align: center;
  font-size: 14px;
  inset-inline-end: 0px;
  inset-block-start: 24px;
  transform: rotate(-45deg);
  background-color: red;
}
.our-cars-page .listing-item .listing-price h6 {
  font-weight: 700;
  font-size: 24px;
  color: #FF0000;
  margin-bottom: 0;
}
.our-cars-page .listing-item .listing-price h6 span {
  font-size: 14px;
  color: #000;
}
.our-cars-page .listing-item .feature-text {
  background-size: cover;
  text-transform: uppercase;
  color: #FFF;
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
  z-index: 6;
  top: 0;
  left: 0;
}
.our-cars-page .listing-item .feature-text span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 4px 0;
  box-shadow: 0px 4px 24px 0px rgba(225, 225, 225, 0.2509803922);
  color: #FFF;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  text-transform: capitalize;
  text-align: center;
  font-size: 14px;
  inset-inline-end: 0px;
  inset-block-start: 24px;
  transform: rotate(-45deg);
}
.our-cars-page .listing-item .listing-content {
  margin-top: 15px;
}
.our-cars-page .listing-item .listing-content .listing-button {
  width: -moz-fit-content;
  width: fit-content;
}
.our-cars-page .listing-item .listing-content .listing-features {
  position: relative;
  border-bottom: 1px solid #F4F4F4;
  margin: 0 0 15px;
  padding: 0 0 15px;
  width: 100%;
}
.our-cars-page .listing-item .listing-content .listing-features .list-rating {
  width: calc(100% - 25px);
  overflow: hidden;
  font-size: 14px;
}
.our-cars-page .listing-item .listing-content .listing-features .list-rating i {
  color: var(--theme-color);
}
.our-cars-page .listing-item .listing-content .listing-features .list-rating p {
  margin-top: 15px;
  margin-bottom: 9px;
  font-size: 14px;
  line-height: 1.7;
}
.our-cars-page .listing-item .listing-content .listing-features .listing-title {
  margin-bottom: 5px;
  font-size: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}
.our-cars-page .listing-item .listing-content .listing-features .listing-title a {
  font-weight: 700;
  color: var(--theme-color2);
  margin-bottom: 4px;
  margin-top: 10px;
  display: flex;
}
.our-cars-page .listing-item .listing-location-details {
  background: #F2F7F6;
  padding: 10px;
  margin: 0 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.our-cars-page .listing-item .btn-order {
  background: var(--theme-color2);
  position: relative;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  padding: 9px 10px;
  width: 100%;
}

.local-attraction-page {
  background-color: #edf0f5;
  overflow: hidden;
}
.local-attraction-page .local-atta-wrapper {
  position: relative;
  margin-top: 2rem;
}
.local-attraction-page .local-atta-wrapper:before {
  content: "";
  position: relative;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #454545;
}
.local-attraction-page .local-atta-wrapper .loca-box {
  display: flex;
}
.local-attraction-page .local-atta-wrapper .loca-box .loca-box-wrapper {
  max-width: 50%;
  padding-right: 10px;
  position: relative;
  margin-top: -7rem;
  padding-right: 120px;
}
.local-attraction-page .local-atta-wrapper .loca-box .loca-box-wrapper:before {
  content: "\f3c5";
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 33px;
  color: var(--theme-color);
  font-family: fontawesome;
  transform: translate(50%, -50%);
}
.local-attraction-page .local-atta-wrapper .loca-box .loca-box-wrapper .local-img-wrapper {
  position: relative;
}
.local-attraction-page .local-atta-wrapper .loca-box .loca-box-wrapper .local-img-wrapper img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 0 17px -5px #000;
  margin-bottom: 1.5rem;
  position: relative;
}
.local-attraction-page .local-atta-wrapper .loca-box .loca-box-wrapper .local-img-wrapper::before {
  content: "";
  position: absolute;
  left: -34%;
  top: -45%;
  width: 340px;
  background-size: contain;
  height: 340px;
  background: url(img/patne.png);
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  animation: zoomImg 4s infinite linear;
}
.local-attraction-page .local-atta-wrapper .loca-box .loca-box-wrapper .local-conts h4 {
  margin-top: 1.8rem;
  font-size: 28px;
  margin-bottom: 1rem;
}
.local-attraction-page .local-atta-wrapper .loca-box:nth-child(even) {
  justify-content: end;
}
.local-attraction-page .local-atta-wrapper .loca-box:nth-child(even) .loca-box-wrapper {
  padding-right: 0px;
  padding-left: 120px;
}
.local-attraction-page .local-atta-wrapper .loca-box:nth-child(even) .loca-box-wrapper:before {
  right: unset;
  left: 0;
  transform: translate(-50%, -50%);
}
.local-attraction-page .local-atta-wrapper .loca-box:nth-child(even) .loca-box-wrapper .local-img-wrapper:before {
  left: unset;
  right: -35%;
}
.local-attraction-page .local-atta-wrapper .loca-box:first-child .loca-box-wrapper {
  margin-top: 0rem;
}
.local-attraction-page .table-1 table thead tr th {
  background: var(--theme-color2);
  color: white;
}
.local-attraction-page .table-1 table tr:nth-child(odd) td {
  background: #ebf6ff;
}

.taxi-services-section {
  background-color: #f9f9f9;
}
.taxi-services-section .service-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 50px;
}
.taxi-services-section .service-list li {
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}
.taxi-services-section .service-list li:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--theme-color);
}
.taxi-services-section .service-list li .service-icon {
  font-size: 1.3rem;
  color: var(--theme-color);
  margin-right: 9px;
  flex-shrink: 0;
}
.taxi-services-section .service-list li .service-text {
  font-size: 1rem;
  font-weight: 600;
  flex-grow: 1;
}
.taxi-services-section .service-list li .enquire-btn {
  background-color: var(--theme-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.taxi-services-section .service-list li .enquire-btn:hover {
  background-color: var(--theme-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: scale(1.02);
}
.taxi-services-section .service-list li .enquire-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}
.taxi-services-section .service-list li .enquire-btn:hover i {
  transform: translateX(5px);
}/*# sourceMappingURL=style.css.map */