@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --themeblack: #424242;
  --themered: #a07437;
  --themedeepyellow: #ffd940;
  --themewhite: #ffffff;
  --themegray: #9e9a9a;
}

a {
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
  text-transform: capitalize;
  color: var(--themeblack);
}

ul {
  list-style: none;
  color: var(--themeblack);
}

p {
  margin-bottom: 0px;
  color: var(--themeblack);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--themeblack);
}

.small-title {
  font-size: 25px;
  font-weight: 700;
  color: var(--themered);
}

.commonbtn {
  padding: 8px 30px;
  background: url(../images/button-bg.webp);
  background-size: cover;
  color: #fff;
  border-radius: 4px;
}

.lf-z-\[9999999\] {
  z-index: 7 !important;
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--themered);
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* header start here */
header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

header .header-top {
  position: relative;
  background: rgba(0, 0, 0, 0.7725490196);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

header .header-top .header-top-left li .fa-whatsapp {
  color: rgb(0, 141, 12) !important;
  border-right: 0.5px solid #595959;
  font-size: 25px;
}

header .header-top ul li a {
  font-weight: 500;
}
header .header-top ul li a i {
  font-size: 20px;
}

header .header-top .header-top-left ul li a {
  color: #fff;
}

header .header-top .header-top-right ul li a {
  color: var(--themewhite);
}

header .header-top .social-media {
  border-right: 0.5px solid var(--themegray);
}

header .header-bottom {
  background: rgba(25, 25, 25, 0.8431372549);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

header .header-bottom .logo img {
  width: 130px;
}

header .navbar .nav-menu {
  -moz-column-gap: 40px;
  column-gap: 40px;
  /* The container <div> - needed to position the dropdown content */
  /* Dropdown Content (Hidden by Default) */
  /* Links inside the dropdown */
  /* Change color of dropdown links on hover */
  /* Show the dropdown menu on hover */
}

header .navbar .nav-menu li > a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: rgb(234, 234, 234);
}

header .navbar .nav-menu li > a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 110%;
  border-bottom: 3px solid var(--themered);
  top: 3px;
  left: 0;
  transition: 0.2s;
}

header .navbar .nav-menu li > a:hover::after {
  width: 100%;
}

header .navbar .nav-menu .fa-bars {
  color: rgb(53, 53, 53);
}

header .navbar .nav-menu .dropdown {
  position: relative;
  display: inline-block;
}

header .navbar .nav-menu .dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--themewhite);
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  top: 110%;
}

header .navbar .nav-menu .dropdown-content a {
  font-size: 15px;
  color: rgb(53, 53, 53);
  padding: 10px 12px;
  text-decoration: none;
  display: block;
}

header .navbar .nav-menu .dropdown-content a:hover {
  background-color: #ddd;
}

header .navbar .nav-menu .dropdown:hover .dropdown-content {
  display: block;
}

header .navbar .menu {
  width: 50px;
  height: 50px;
  font-size: 30px;
  cursor: pointer;
}

.fixednav {
  position: fixed;
  top: 0px;
  left: 0px;
}

/* header end here */
.banner {
  margin-top: 90px;
  padding: 170px 0px;
  background: linear-gradient(rgba(230, 232, 233, 0.424), rgba(31, 66, 93, 0.431)), url(../images/banner-bg.webp);
  background-position: top;
  color: #fff;
}
.banner h1 {
  font-size: 42px;
  font-weight: 700;
}
.banner .banner-left p {
  font-size: 18px;
  font-weight: 400;
  padding: 15px 0px;
  color: #fff;
}
.banner .rightform {
  width: 100%;
  position: relative;
  z-index: 1;
}
/* LUXURY TRAVEL EDGE - QUOTE FORM */
.banner .rightform .contact-form {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 28px;
  margin: 10px auto;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  max-width: 450px;
}
.banner .rightform .contact-form .form-heading {
  text-align: center;
  margin-bottom: 15px;
}
.banner .rightform .contact-form .form-heading h2 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  color: #111;
}
/* FORM GROUP */
.banner .rightform .contact-form .form-group {
  /* margin-bottom: 10px; */
  padding-left: 5px;
  padding-right: 5px;
}
.banner .rightform .contact-form .row {
  margin-left: -5px;
  margin-right: -5px;
}
/* LABEL */
.banner .rightform .contact-form label {
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
  color: #333;
}
/* INPUT + SELECT */
.banner .rightform .contact-form .form-control {
  width: 100%;
  height: 45px;
  padding: 0 14px;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  background: #fafafa;
  color: #222;
  font-size: 13px;
  box-shadow: none;
  outline: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
/* Placeholder */
.banner .rightform .contact-form .form-control::placeholder {
  color: #999;
  opacity: 1;
}
/* Focus */
.banner .rightform .contact-form .form-control:focus {
  border-color: #b5b5b5;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.035);
}
/* SELECT */
.banner .rightform .contact-form .select-wrap {
  position: relative;
}
.banner .rightform .contact-form .select-wrap::after {
  content: "\f107";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  color: #555;
  pointer-events: none;
}
.banner .rightform .contact-form select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}
/* ERROR */
.banner .rightform .contact-form small.text-danger {
  display: block;
  min-height: 16px;
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.3;
  color: #c0392b !important;
}
/* SUBMIT BUTTON */
.banner .rightform .contact-form .form-submit {
  margin-top: 4px;
}
.banner .rightform .contact-form button,
.banner .rightform .contact-form [type="button"],
.banner .rightform .contact-form [type="reset"],
.banner .rightform .contact-form [type="submit"] {
  min-width: 160px;
  padding: 11px 30px;
  border: 0;
  background: url("../images/button-bg.webp") center center / cover no-repeat;
  color: #fff;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}
.banner .rightform .contact-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.15);
}
.banner .rightform .contact-form button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* MOBILE */
@media (max-width: 767px) {
  .banner .rightform .contact-form {
    padding: 22px 18px;
    margin: 10px auto;
  }
  .banner .rightform .contact-form .form-heading {
    margin-bottom: 20px;
  }
  .banner .rightform .contact-form .form-heading h2 {
    font-size: 23px;
  }
  .banner .rightform .contact-form .form-heading p {
    font-size: 12px;
  }
  .banner .rightform .contact-form .form-control {
    height: 42px;
  }
  .banner .rightform .contact-form button {
    width: 100%;
  }
  .banner h1 {
    font-size: 32px;
  }
}

.about .container-fluid {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2392156863);
}
.about .left .img1 {
  width: 100%;
  height: 100%;
}
.about .left .img1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .right p {
  font-size: 18px;
}
.about .right .about-card {
  padding: 15px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2745098039);
}

.service > .container-fluid {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2392156863);
}
.service .service-card {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2392156863);
  text-align: center;
  padding: 20px;
  position: relative;
  margin-top: 50px;
  min-height: 350px;
}
.service .service-card::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 0%;
  background: url(../images/service-card-vector.webp), linear-gradient(#a07437, #a07437);
  background-size: cover;
  z-index: -1;
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.service .service-card:hover {
  color: #fff;
}
.service .service-card:hover::after {
  bottom: unset;
  top: 0px;
  height: 100%;
  color: #fff;
}
.service .service-card:hover p {
  color: #fff;
}
.service .service-card:hover i {
  color: #fff;
}
.service .service-card h3 {
  font-size: 20px;
  font-weight: 600;
  padding: 15px 0px;
  margin-bottom: 0;
}
.service .service-card p {
  margin-bottom: 20px;
}
.service .service-card i {
  font-size: 18px;
  color: #a07437;
}
.service .service-card .card-img {
  margin-top: -75px;
}
.service .service-card .card-img img {
  margin: 0px auto;
  position: relative;
  width: 170px;
  height: 170px;
}
.service .service-card .card-img img::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 0px;
  background: var(--themered);
}
.service .owl-dots {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
.service .owl-dots button span {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  border: 3px solid var(--themered);
  background: #616161;
}
.service .owl-dots button:is(:hover, .active) span {
  background: var(--themered) !important;
}
.service .owl-stage {
  padding: 30px 0px;
}

.trained {
  background: #fff;
  color: rgb(53, 53, 53);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.3019607843);
}
.trained span {
  color: #939393;
}
.trained h2,
.trained h3 {
  font-size: 36px;
  font-weight: 600;
}

.fleet .fleet-container .item {
  padding: 6px 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2392156863);
  border-radius: 5px;
  position: relative;
  min-height: 420px;
}
.fleet .fleet-container .item .after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(241, 230, 143, 0.5607843137);
  top: 0px;
  left: 0px;
  opacity: 0;
  transition: 0.3s;
  display: none;
}
.fleet .fleet-container .item:hover .after {
  opacity: 1;
  display: block;
}
.fleet .fleet-container .item:hover .commonbtn {
  opacity: 1;
}
.fleet .fleet-container .item .commonbtn {
  background: rgb(53, 53, 53);
  position: absolute;
  width: 50px;
  height: 50px;
  bottom: 15%;
  border-radius: 50%;
  left: 45%;
  z-index: 2;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: var(--themewhite);
  padding: 0px;
  opacity: 0;
}
.fleet .fleet-container .item .card-img {
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fleet .fleet-container .item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
}
.fleet .fleet-container .item p {
  font-weight: 400;
  padding: 5px 0px;
}
.fleet .fleet-container .item .feature {
  border-top: 0.5px solid rgba(255, 255, 255, 0.4823529412);
  gap: 5px;
  margin-bottom: 0px;
  padding-left: 0px;
}
.fleet .fleet-container .item .feature li {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.fleet .fleet-container .item .feature li p {
  padding-bottom: 0px;
  font-size: 14px;
}
.fleet .fleet-container .item .feature li img {
  width: 20px;
}
.fleet .fleet-container .item i {
  font-size: 25px;
  color: var(--themered);
}
.fleet .fleet-container .owl-dots button span {
  width: 40px;
  height: 5px;
  border-radius: 3px;
  background: #616161;
}
.fleet .fleet-container .owl-dots button:is(:hover, .active) span {
  background: var(--themered);
}
.fleet .fleet-container .owl-stage-outer {
  padding: 20px;
}
.fleet .fleet-container .owl-nav {
  position: absolute;
  right: 0px;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
}
.fleet .fleet-container .owl-nav button {
  width: 54px;
  height: 54px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3098039216);
  border-radius: 50%;
  background: var(--themered);
  color: #fff;
}
.fleet .fleet-container .owl-nav button:is(.disabled, :hover) {
  color: rgb(53, 53, 53);
  background: #fff;
}

.overlay {
  background: url(../images/overlay-bg.webp);
}
.overlay h2 {
  font-size: 48px;
  font-weight: 500;
  color: #fff;
}

.testimonial {
  margin-bottom: 50px;
}
.testimonial .testimonial-carousel .item {
  padding: 15px 25px;
  border-radius: 5px;
  border: 1px solid #e3e3e3;
}
.testimonial .testimonial-carousel .item .img img {
  width: 35px;
  height: 28px;
}
.testimonial .testimonial-carousel .item .img .profile {
  width: 80px;
  height: 80px;
  margin-top: -50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial .testimonial-carousel .item h3 {
  font-size: 20px;
  font-weight: 600;
}
.testimonial .testimonial-carousel .item p {
  font-size: 16px;
  font-weight: 400;
}
.testimonial .testimonial-carousel .owl-stage-outer {
  padding-top: 50px;
}
.testimonial .testimonial-carousel .owl-nav {
  position: absolute;
  right: 0px;
}
.testimonial .testimonial-carousel .owl-nav button {
  width: 54px;
  height: 54px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3098039216);
  border-radius: 50%;
  background: var(--themered);
  color: #fff;
}
.testimonial .testimonial-carousel .owl-nav button:is(.disabled, :hover) {
  color: rgb(53, 53, 53);
  background: #fff;
}

.download img {
  width: 100%;
}
.download .downloadbg {
  min-height: 400px;
  background: url("../images/download-bg.webp");
}
.download .mobile-img img {
  width: 100%;
  margin-top: -250px;
}
.download .download-bottom h2 {
  font-size: 28px;
  font-weight: 500;
}
.download .download-bottom h2 span {
  color: var(--themered);
}

footer {
  padding: 100px 0px 30px 0px;
  background: rgb(53, 53, 53);
}

footer li,
footer p,
footer a,
footer i {
  color: #f7f7f7;
}

footer .col-12 {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2392156863);
  padding: 10px 0px;
}
footer .col-12 ul li a {
  word-wrap: break-word;
}

footer li:hover {
  color: var(--themeblack);
}
footer li:hover a {
  color: var(--themeblack);
}
footer li:hover a i {
  color: var(--themeblack);
}

footer i {
  font-size: 18px;
  padding-right: 10px;
}

footer h3 {
  color: #f5f5f5;
}

footer .footercol {
  z-index: 2;
  position: relative;
}
footer .footercol::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 0%;
  background: url(../images/service-card-vector.webp), linear-gradient(#a07437, #a07437);
  background-size: cover;
  z-index: -1;
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 10px;
}
footer .footercol:hover {
  color: #fff;
}
footer .footercol:hover::after {
  bottom: unset;
  top: 0px;
  height: 100%;
  color: #fff;
}
footer .footercol:hover p {
  color: #fff;
}
footer .footercol:hover i {
  color: #fff;
}

footer .footercol ul {
  padding-left: 0;
}

footer .footercol h3 {
  font-size: 24px;
}
footer p, footer .footercol li {
  width: 96%;
}
footer .footercol li {
  margin: 15px 0px;
}

footer .footer-bottom {
  padding: 30px 0 0;
  border-top: 1px solid #fff;
  margin-top: 40px;
}

footer .footer-bottom p a {
  color: #fff;
}

footer .footer-bottom p a:hover {
  color: var(--themeyellow);
}

.whatsapp-container {
  background-color: #42db87;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  box-shadow: 2px 2px 3px #000;
  position: fixed;
  left: 20px;
  bottom: 15px;
  z-index: 7;
}

.about-page-section .left .img1 {
  height: 75%;
}
.about-page-section .left .img2 {
  bottom: 0px;
  top: unset;
  height: 70%;
}
.about-page-section .right .card-1 {
  border-bottom: 3px solid var(--themered);
}

.about-trained .right {
  padding-left: 25px;
}
.about-trained .left {
  position: relative;
}
.about-trained .left .boxes {
  position: absolute;
  bottom: 15%;
  right: 0px;
}
.about-trained .left .boxes .box {
  width: 340px;
  height: 340px;
  background: rgb(53, 53, 53);
  padding: 40px;
  padding-bottom: 0px;
  color: #fff;
}
.about-trained .left .boxes .box h3 {
  font-size: 45px;
  font-weight: 600;
}
.about-trained .left .boxes .box p {
  font-size: 25px;
  font-weight: 400;
  color: #c5c5c5;
}
.about-trained .left .boxes .box2 {
  background: var(--themered);
}

.service-detail .left .other-service-link {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2392156863);
}
.service-detail .left .other-service-link li {
  margin: 5px 0;
}
.service-detail .left .other-service-link li a {
  font-size: 20px;
  padding: 10px 10px;
  color: rgb(53, 53, 53);
  border-radius: 5px;
}
.service-detail .left .other-service-link li a:hover {
  background: var(--themered);
  color: #fff;
}
.service-detail .left .other-service-link li a i{
  font-size: 14px;
}
.service-detail .right img {
  width: 100%;
}

.faq .section-title {
  font-weight: 500;
}
.faq ul.accordion-list {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 20px;
  margin: 0;
  list-style: none;
}
.faq ul.accordion-list li {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-color: #fff;
  margin: 0 auto 15px auto;
  border: 1px solid #eee;
  border-radius: 5px;
  cursor: pointer;
}
.faq ul.accordion-list li.active h3:after {
  transform: rotate(45deg);
}
.faq ul.accordion-list li h3 {
  font-weight: 500;
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 15px 20px;
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.01em;
  cursor: pointer;
  background: #f6f6f6;
  border-bottom: 2px solid #d8d8d8;
}
.faq ul.accordion-list li h3:after {
  content: "+";
  font-family: "material-design-iconic-font";
  position: absolute;
  right: 40px;
  top: 10px;
  color: #fcc110;
  transition: all 0.3s ease-in-out;
  font-size: 28px;
  color: var(--themered);
}
.faq ul.accordion-list li div.answer {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 10px 20px;
  cursor: pointer;
}
.faq ul.accordion-list li div.answer p {
  position: relative;
  display: block;
  font-weight: 300;
  padding: 10px 0 0 0;
  cursor: pointer;
  line-height: 150%;
  margin: 0 0 15px 0;
  font-size: 14px;
}
.faq .container:is(.gap-4) {
  display: none !important;
}

.fleet .main-fleet-carousel .item-card {
  padding: 6px 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2392156863);
  border-radius: 5px;
  margin-top: 30px;
  position: relative;
}
.fleet .main-fleet-carousel .item-card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5764705882);
  top: 0px;
  left: 0px;
  opacity: 0;
  transition: 0.3s;
  display: none;
}
.fleet .main-fleet-carousel .item-card:hover::after {
  opacity: 1;
  display: block;
}
.fleet .main-fleet-carousel .item-card:hover .commonbtn {
  opacity: 1;
}
.fleet .main-fleet-carousel .item-card .commonbtn {
  background: #fff;
  position: absolute;
  width: 50px;
  height: 50px;
  bottom: 15%;
  border-radius: 50%;
  left: 45%;
  z-index: 2;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: var(--themered);
  padding: 0px;
  opacity: 0;
}
.fleet .main-fleet-carousel .item-card .card-img {
  height: 211px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fleet .main-fleet-carousel .item-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
}
.fleet .main-fleet-carousel .item-card p {
  font-weight: 400;
  margin-bottom: 10px;
}
.fleet .main-fleet-carousel .item-card .feature {
  border-top: 0.5px solid rgba(255, 255, 255, 0.4823529412);
  gap: 5px;
  margin-bottom: 0px;
  padding-left: 0px;
}
.fleet .main-fleet-carousel .item-card .feature li {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.fleet .main-fleet-carousel .item-card .feature li p {
  padding-bottom: 0px;
  font-size: 14px;
  margin-bottom: 0px;
}
.fleet .main-fleet-carousel .item-card .feature li img {
  width: 23px;
}
.fleet .main-fleet-carousel .item-card i {
  font-size: 25px;
  color: var(--themered);
}

/* The container <div> - needed to position the dropdown content */
.fleet-dropbtn {
  width: 200px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.3019607843);
  padding: 10px 15px;
}
.fleet-dropbtn span {
  font-weight: 600;
}

/* Dropdown Content (Hidden by Default) */
.fleet-dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.fleet-dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.fleet-dropdown-content a:hover {
  background-color: var(--themered);
  color: var(--themewhite);
}

/* Show the dropdown menu on hover */
.dropdown:hover .fleet-dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.main-fleet-carousel {
  display: none; /* Initially hide all cards */
}

.main-fleet-active {
  display: flex !important;
}

.fleet-detail .right .feature-card {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2470588235);
  padding: 30px 30px 15px 30px;
}
.fleet-detail .right .feature-card .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.231372549);
  display: grid;
  place-content: center;
}
.fleet-detail .right .feature-card .icon i {
  font-size: 28px;
  color: var(--themered);
}
.fleet-detail .right .feature-card .icon img {
  width: 30px;
}
.fleet-detail .right .feature-card span {
  font-size: 20px;
  color: var(--themered);
}
.fleet-detail .right .feature-card p {
  font-size: 20px;
}
.fleet-detail .right .feature-card .commonbtn {
  background: var(--themered);
  border-radius: 0px;
  width: 100%;
  text-align: center;
  padding: 12px 0px;
}
.fleet-detail .left .text-content {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2235294118);
  border-bottom: 5px solid var(--themered);
  margin-top: 10px;
}
.fleet-detail .left .text-content span,
.fleet-detail .left .text-content h3 {
  font-size: 22px;
  font-weight: 500;
}
.fleet-detail .left .text-content .text-content-header i {
  font-size: 50px;
}
.fleet-detail .left-top .text-content {
  border: none;
  border-radius: 10px;
  position: relative;
}
.fleet-detail .left-top .text-content::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 0%;
  background: url(../images/service-card-vector.webp), linear-gradient(#a07437, #a07437);
  background-size: 100% 150%;
  z-index: -1;
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.fleet-detail .left-top .text-content:hover {
  color: #fff;
}
.fleet-detail .left-top .text-content:hover::after {
  bottom: unset;
  top: 0px;
  height: 100%;
  color: #fff;
}
.fleet-detail .left-top .text-content:hover p {
  color: #fff;
}
.fleet-detail .left-top .text-content:hover i {
  color: #fff;
}

.car-carousel {
  overflow-x: hidden;
}
.car-carousel .swiper {
  width: 100%;
  height: 100%;
}

.car-carousel .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.car-carousel .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.car-carousel .swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.car-carousel .swiper-slide {
  background-size: cover;
  background-position: center;
}

.car-carousel .mySwiper2 {
  height: 80%;
  width: 100%;
  position: static !important;
  overflow: visible;
}

.car-carousel .mySwiper2 .swiper-slide {
  background: linear-gradient(to bottom, rgba(217, 217, 217, 0.5803921569), rgba(115, 115, 115, 0.7333333333));
}

.car-carousel .mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.car-carousel .mySwiper .swiper-slide {
  width: 100px !important;
  height: 100px;
  opacity: 0.4;
}

.car-carousel .mySwiper {
  background: var(--themered);
}

.car-carousel .mySwiper .swiper-slide img {
  width: 90%;
  -o-object-fit: unset;
     object-fit: unset;
  height: auto !important;
}

.car-carousel .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.car-carousel .swiper-slide img {
  display: block;
  width: 80%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.car-carousel .swiper-button-prev,
.car-carousel .swiper-button-next {
  width: 60px;
  height: 60px;
  background: var(--themewhite);
  border-radius: 50%;
  bottom: 10px;
  color: var(--themeblack);
  bottom: 5%;
  top: unset;
  z-index: 3;
}
.car-carousel .swiper-button-prev::after,
.car-carousel .swiper-button-next::after {
  font-size: 14px !important;
}

.car-carousel .swiper-button-prev {
  left: 15%;
}

.car-carousel .swiper-button-next {
  right: 15%;
}

.map-form iframe {
  border-radius: 5px;
  height: 100%;
}
.map-form .form:is(.book-now) {
  background: rgb(249, 238, 224);
  border-radius: 8px;
}
.map-form .address-container {
  position: relative;
}
.map-form .address-container .autocomplete-suggestions {
  /* border: 1px solid #ddd; */
  max-height: 200px;
  overflow-y: auto;
  background-color: #fff;
  position: absolute;
  z-index: 9999;
  width: 100%;
}
.map-form .address-container .autocomplete-suggestion {
  padding: 8px;
  cursor: pointer;
}
.map-form .address-container .autocomplete-suggestion:hover {
  background-color: #f0f0f0;
}

.contact-address .container {
  background: var(--themeblack);
  border-radius: 15px;
}
.contact-address .icon {
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(202, 31, 39, 0.3098039216);
  display: grid;
  place-content: center;
}
.contact-address .icon img {
  width: 20px;
}
.contact-address p {
  padding-bottom: 0px !important;
  font-size: 14px;
  font-weight: 400;
  color: #b1b1b1;
}
.contact-address a {
  color: #fff;
}

.blog .blog-left .blog-content .tag {
  background: #f5f8f9;
}
.blog .blog-left .blog-content .text-content h2,
.blog .blog-left .blog-content .text-content h3,
.blog .blog-left .blog-content .text-content h4 {
  font-weight: 600;
}
.blog .blog-left .blog-content .text-content p a {
  font-size: 17px;
  font-weight: 500;
}
.blog .blog-left .previous-next .line {
  min-height: 54px;
  width: 1px;
  border: 1px solid #dee2e6;
}
.blog .blog-left .previous-next a {
  color: #6c757d;
  font-weight: 500;
}
.blog .blog-left .previous-next a span {
  color: #000;
  font-weight: 600;
}
.blog .blog-left #pagination-container ul {
  display: flex;
}
.blog .blog-left #pagination-container ul li {
  margin-right: 10px;
}
.blog .blog-left #pagination-container ul li a,
.blog .blog-left #pagination-container ul li span {
  width: 25px;
  height: 25px;
  border: 0.5px solid #d9d9d9;
  font-size: 16px;
  text-align: center;
  line-height: 25px;
  display: inline-block;
  border-radius: 4px;
  box-shadow: 0px 3px 5px 3px rgba(0, 0, 0, 0.1411764706);
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.blog .blog-left #pagination-container ul .active .current:not(.next, .prev) {
  background: #000;
  color: #fff;
}
.blog .blog-left .service-card {
  font-size: 18px;
  color: #6c757d;
}
.blog .blog-left .service-card h3 {
  font-size: 15px;
  font-weight: 600;
}
.blog .blog-right .logo {
  padding: 20px;
  background: var(--themewhite);
  height: 300px;
  display: grid;
  place-content: center;
}
.blog .blog-right .logo img {
  width: 90%;
  margin: 0px auto;
}
.blog .blog-right .blog-list-container {
  background: var(--themewhite);
  border-radius: 4px;
}
.blog .blog-right .blog-list-container .list-item:last-child {
  border-bottom: unset;
}
.blog .blog-right .blog-list-container .list-item {
  padding: 15px 0px;
  border-bottom: 1px solid #e1e1e1;
}
.blog .blog-right .blog-list-container .list-item .item-left-img {
  min-width: 87px;
  height: 72px;
}
.blog .blog-right .blog-list-container .list-item .item-left-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog .blog-right .blog-list-container .list-item .item-right-content h5 {
  margin-bottom: 0px;
}
.blog .blog-right .blog-list-container .list-item .item-right-content h5 a {
  font-size: 16px;
  font-weight: 600;
  color: #6c757d;
}
.blog .blog-right .blog-list-container .list-item .item-right-content .date {
  padding: 5px 0px;
}

@media (min-width: 1600px) {
  p {
    font-size: 18px;
  }
}
@media (max-width: 1400px) {
  .about-trained .right {
    padding-top: 50px;
    padding-left: 50px;
  }
  .about-trained .left .boxes .box {
    width: 250px;
    height: 250px;
    padding: 15px;
  }
  .about-trained .left .boxes .box h3 {
    font-size: 30px;
  }
  .about-trained .left .boxes .box p {
    font-size: 22px;
  }
}
@media (max-width: 992px) {
  .section-title {
    font-size: 28px;
  }
  header .header-top {
    display: none;
  }
  header .navbar .nav-menu {
    position: absolute;
    top: 0;
    left: -130%;
    width: 100%;
    height: 100vh;
    background: black;
    flex-direction: column;
    justify-content: center !important;
    align-items: center;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
  }
  header .navbar .nav-menu li {
    margin: 20px 0px;
  }
  header .navbar .nav-menu li a {
    font-size: 18px;
    color: #fff;
  }
  header .navbar .nav-menu .nav-booknow-btn {
    background: var(--themewhite);
    color: var(--themeblack);
  }
  header .navbar .nav-menu .close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    width: 50px;
    height: 50px;
  }
  header .navbar .nav-menu .close .fa-xmark {
    color: #fff;
  }
  header .navbar .menuadd {
    left: 0%;
  }
  .about .left {
    min-height: 350px;
  }
  .about .left .img1 {
    width: 100%;
    height: 100%;
  }
  .about .left .img1 {
    width: 100%;
    height: 100%;
  }
  .about .left .img1 img {
    width: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about .left .img2 {
    width: 40%;
    height: 50%;
    bottom: 0px;
    right: 0px;
    top: unset;
  }
  .about .left .img2 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .overlay h2 {
    font-size: 30px;
  }
  .download .downloadbg {
    min-height: 215px;
  }
  .download .mobile-img img {
    margin-top: -150px;
  }
  .download .download-bottom h2 {
    font-size: 14px;
  }
  .fleet .fleet-carousel .item p {
    font-size: 14px;
    padding: 0px;
  }
  .about-trained .right {
    padding: 20px;
  }
  .about-trained .left .boxes .box {
    width: 150px;
    height: 150px;
    padding: 5px;
  }
  .about-trained .left .boxes .box h3 {
    font-size: 20px;
  }
  .about-trained .left .boxes .box p {
    font-size: 16px;
  }
  .car-carousel .swiper-button-prev {
    left: 5px;
  }
  .car-carousel .swiper-button-next {
    right: 5px;
  }
  header .navbar .menu {
    color: #fff;
  }
}
@media (max-width: 768px) {
  .fleet .fleet-carousel h3 {
    margin-top: 20px;
  }
  .fleet .fleet-carousel .owl-stage-outer {
    padding: 0px;
  }
  .faq ul.accordion-list li h3:after {
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
  }
  footer .footer-bottom {
    padding: 30px 0;
  }
  .footer-bottom .social-media {
    margin: 10px auto;
  }
}
@media (max-width: 576px) {
  header .navbar .nav-menu .dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--themewhite);
    min-width: 300px;
    height: 350px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 110%;
    left: -100px;
  }
  .fleet .fleet-carousel h3 {
    margin-top: 0px;
  }
  .fleet-detail .right .feature-card .icon {
    width: 50px;
    height: 50px;
  }
  .fleet-detail .right .feature-card .icon img {
    width: 20px !important;
  }
  .fleet-detail .left .text-content {
    padding: 10px 20px;
  }
  .fleet-detail .left .text-content .text-content-header {
    display: none;
  }
  .car-carousel .mySwiper .swiper-slide {
    width: 50px !important;
    height: 50px;
  }
  .car-carousel .swiper-button-prev,
  .car-carousel .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
.cookieswrapper {
  position: fixed;
  bottom: 50px;
  right: -370px;
  max-width: 345px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 20;
}

.show {
  right: 20px !important;
}

.cookieswrapper .header {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}

.cookieswrapper .header i {
  color: var(--themered);
  font-size: 32px;
}

.cookieswrapper .header h2 {
  color: var(--themered);
  font-weight: 500;
}

.cookieswrapper .data {
  margin-top: 16px;
}

.cookieswrapper .data p {
  color: #333;
  font-size: 16px;
}

.data p a {
  color: var(--themered);
  text-decoration: none;
}

.data p a:hover {
  text-decoration: underline;
}

.cookieswrapper .buttons {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookieswrapper .buttons .button {
  border: none;
  color: #fff;
  padding: 8px 0;
  border-radius: 4px;
  background: var(--themered);
  cursor: pointer;
  width: calc(50% - 10px);
  transition: all 0.2s ease;
}

.cookieswrapper .buttons #acceptBtn:hover {
  background-color: var(--themered);
}

.cookieswrapper #declineBtn {
  border: 2px solid var(--themered);
  background-color: #fff;
  color: var(--themered);
}

.cookieswrapper #declineBtn:hover {
  background-color: var(--themered);
  color: #fff;
}

.fa-facebook {
  color: rgb(24, 119, 242) !important;
}

.fa-instagram {
  background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, #b252cf);
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
}

.fa-x-twitter {
  color: rgb(29, 161, 242);
}

.fa-youtube {
  color: #FF0000;
}

.fa-whatsapp {
  color: #25D366;
}

.fa-linkedin-in {
  color: #0077B5;
}/*# sourceMappingURL=style.css.map */

/* New service single */
.scrollbar {
  position: fixed;
  right: 40px;
  top: 225px;
  height: 450px;
  width: 8px;
  background-color: #ddd;
  border-radius: 4px;
  z-index: 9; 
  opacity: 0; 
  transition: opacity 0.3s;
}

/* When the scrollbar is visible */
.scrollbar.visible {
  opacity: 1;
}


.scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #A07437;
  border-radius: 4px;
}

/* Circular scroll handle */
.scroll-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #A07437;
  border-radius: 50%;
  top: 0;
  left: -6px;
  z-index: 1000; 
}

/* Scroll percentage text */
.scroll-percentage {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #A07437;
  z-index: 1000;
}

.section-title.line {
  position: relative;
  padding-left: 40px;  
  margin-bottom: 20px;
  width: 70%;
  text-transform: uppercase;
}

.section-title.line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 110px;
  background-color: #A07437;
}
@media screen and (max-width: 1024px) {
  .service-detail .left .other-service-link li a {
    font-size: 18px;
  }
  
}
@media screen and (max-width: 992px) {
  .scrollbar {
    right: 15px;
    width: 5px;
  }
  .main-content {
    padding-right: 20px;
  }
  .section-title.line {
    width: 100%;
    margin: 15px 0 !important;
  }
  .section-title.line::before {
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .section-title.line {
    font-size: 24px;
  }
  .banner {
    background-size: auto;
    padding: 120px 0 0px;
    background-position: 30% 0;
  }
  
}