@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;
  font-family: "Work Sans", sans-serif;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
}
a {
  text-transform: capitalize;
}
ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
}
.lf-z-\[9999999\] {
  z-index: 7 !important;
}
/* whatsapp start here */
.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;
  right: 20px;
  bottom: 15px;
  z-index: 7;
}
.commonbtn {
  padding: 8px 30px;
  background: #000;
  color: #fff;
  border-radius: 4px;
}

.section-title {
  font-size: 45px;
  font-weight: 500;
  text-transform: uppercase;
}

.small-title {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  display: inline-block;
  color: #000;
}

header {
  background: #fff;
}

header nav ul li a {
  transition: 0.2s;
  color: #000;
}
header nav ul li a:hover {
  border-bottom: 1px solid #000;
}
header nav ul .dropdown {
  position: relative;
  display: inline-block;
}
header nav ul .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 270px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 8;
}
header nav ul .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
header nav ul .dropdown-content a:hover {
  background-color: #f1f1f1;
  border-bottom: unset;
}
header nav ul .dropdown:hover .dropdown-content {
  display: block;
}

.fixednav {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 10;
}

.banner {
  padding: 60px 0px;
  background: linear-gradient(
      rgba(0, 0, 0, 0.5254901961),
      rgba(0, 0, 0, 0.5725490196)
    ),
    url(../images/banner-bg.png);
}
.banner h1 {
  font-size: 42px;
  font-weight: 700;
}
.banner .banner-left p {
  font-size: 18px;
  font-weight: 400;
  padding: 15px 0px;
}

.fleet .fleet-carousel .item {
  padding: 6px 10px;
  box-shadow: 0px 6px 15px 0px rgba(255, 255, 255, 0.2823529412);
  border-radius: 5px;
  position: relative;
}
.fleet .fleet-carousel .item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5764705882);
  top: 0px;
  left: 0px;
  opacity: 0;
  transition: 0.3s;
}
.fleet .fleet-carousel .item:hover::after {
  opacity: 1;
}
.fleet .fleet-carousel .item:hover .commonbtn {
  opacity: 1;
}
.fleet .fleet-carousel .item .commonbtn {
  background: #fff;
  color: #000;
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50px, -40px);
  z-index: 2;
  opacity: 0;
}
.fleet .fleet-carousel .item .card-img {
  height: 211px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fleet .fleet-carousel .item p {
  font-size: 11px;
  padding: 10px 0px;
}
.fleet .fleet-carousel .item .feature {
  border-top: 0.5px solid rgba(255, 255, 255, 0.4823529412);
  gap: 5px;
  margin-bottom: 0px;
}
.fleet .fleet-carousel .item .feature li {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.fleet .fleet-carousel .item .feature li p {
  padding-bottom: 0px;
}
.fleet .fleet-carousel .item .feature li img {
  width: 23px;
}
.fleet .fleet-carousel .owl-dots button span {
  width: 40px;
  height: 5px;
  border-radius: 3px;
  background: #616161;
}
.fleet .fleet-carousel .owl-dots button:is(:hover, .active) span {
  background: #ddd;
}

.why-choose h3 {
  font-size: 36px;
}

.trained {
  background: #fff;
  color: #000;
}
.trained span {
  color: #939393;
}
.trained h2,
.trained h3 {
  font-size: 36px;
  font-weight: 500;
}

.service .service-carousel .item {
  position: relative;
}
.service .service-carousel .item .card-img {
  width: 100%;
}
.service .service-carousel .item .card-img img {
  width: 100%;
}
.service .service-carousel .item .card-img::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4078431373);
  opacity: 0;
  transition: 0.3s;
}
.service .service-carousel .item .card-content {
  position: absolute;
  bottom: 0px;
  left: 0px;
  text-align: center;
  transform: translateY(80%);
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.service .service-carousel .item .card-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5058823529);
}
.service .service-carousel .item .card-content p {
  font-size: 14px;
  font-weight: 400;
  padding: 10px 0px;
}
.service .service-carousel .item .card-content .service-btn {
  padding: 8px 20px;
  border: 1px solid #fff;
  border-radius: 4px;
  color: #fff;
}
.service .service-carousel .item:hover .card-img::after {
  opacity: 1;
}
.service .service-carousel .item:hover .card-content {
  transform: translateY(0px);
}
  .service-mobile .left img{
  width: 120px;
  height: 120px;
}
.overlay {
  background: url(../images/overlay-bg.png);
}
.overlay1 {
  background: url(../images/downloadbg.png);
}
.overlay h2 {
  font-size: 48px;
  font-weight: 500;
}
.overlay1 h2 {
  font-size: 48px;
  font-weight: 500;
}
.how-we-work {
  background: #202020;
  padding: 50px 0px;
}
.how-we-work .left img {
  width: 100%;
}
.how-we-work .container span,
.how-we-work .container h3 {
  font-size: 24px;
  font-weight: 500;
}
.how-we-work .container p {
  font-size: 17px;
  font-weight: 400px;
  margin-bottom: 0px;
}

.how-we-work-about .left {
  height: 500px;
  position: relative;
}
.how-we-work-about .left img {
  position: absolute;
  width: 350px;
  height: 280px;
  top: 0px;
  left: 0px;
}
.how-we-work-about .left .img2 {
  top: unset;
  left: unset;
  bottom: 0px;
  right: 0px;
}

.fleet-how-we-work p {
  font-weight: 400;
  padding: 10px 0px;
}
.fleet-how-we-work .feature li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.fleet-how-we-work .feature li img {
  width: 23px;
}
.fleet-how-we-work .feature li i {
  font-size: 25px;
}

.download .downloadbg {
  min-height: 400px;
  background: url("../images/downloadbg.png");
}
.download .mobile-img img {
  margin-top: -250px;
  width: 100%;
}
.download .download-bottom h2 {
  font-size: 28px;
  font-weight: 500;
}
.download .download-bottom img {
  width: 100%;
}
.download .download-bottom h2 span {
  color: rgb(255, 208, 0);
}

.testimonial .testimonial-carousel .item {
  padding: 15px;
  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%;
  object-fit: cover;
}
.testimonial .testimonial-carousel .item h3,
.testimonial .testimonial-carousel .item p {
  font-size: 16px;
  font-weight: 400;
}
.testimonial .testimonial-carousel .item p {
  font-size: 14px;
}
.testimonial .testimonial-carousel .owl-stage-outer {
  padding-top: 50px;
}

footer {
  padding: 80px 0 40px;
  background: #fff;
}

footer p,
footer a {
  color: #191919;
}

footer h3 {
  color: #191919;
}

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

footer .footercol ul li a {
  text-transform: capitalize;
}

footer .footercol h3 {
  font-size: 24px;
}

footer .footercol li {
  margin: 15px 0px;
}

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

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

.how-it-work .it-card {
  background: #fff;
  border-radius: 4px;
  color: #000;
}
.how-it-work .it-card h3 {
  font-size: 24px;
  font-weight: 700;
}
.how-it-work .it-card p {
  font-weight: 400;
}

.fleet-detail {
  background: linear-gradient(to top, #242219, #dad7d7);
}
.fleet-detail img {
  width: 100%;
}
.fleet-detail .commonbtn {
  width: 280px;
  margin: 30px 0px;
}
.fleet-detail h3 {
  font-size: 20px;
}
.fleet-detail .text p {
  font-weight: 400;
}
.fleet-offer .left img {
  width: 100%;
}
.fleet-offer .right .icon {
  width: 120px;
  height: 120px;
  text-align: center;
  background: #fff;
  font-size: 40px;
  color: #000;
  border-radius: 50%;
  line-height: 120px;
}
.fleet-offer .right img {
 width: 120px;
 height: 120px;
}
.fleet-offer .right h3 {
 margin-bottom: 0px;
}

.service-fleet .service-card {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.service-fleet .service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-fleet .service-card h3 {
  font-size: 20px;
  margin-bottom: 35px;
  transition: .3s;
}
.service-fleet .service-card .content {
  width: 100%;
  position: absolute;
  transform: translateY(75%);
  left: 0px;
  bottom: 0px;
  padding: 10px 30px;
  transition: .3s;
  background: linear-gradient(to top,#000,#0000000c);
}
.service-fleet .service-card:hover .content {
  transform: translateY(0%);
}
.service-fleet .service-card:hover .content h3{
  margin-bottom: 10px;
}

.service-special .premium-services {
  background: linear-gradient(to bottom, #b0b0b0, #6d6d6d);
  padding: 45px 20px;
  border-radius: 5px;
}
.service-special .container .section-title{
  font-size: 35px;
}
.service-special .premium-services h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-special .premium-services li {
  padding: 5px 0px;
}
.service-special .premium-services li a {
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  color: #fff;
}
.service-special p {
  font-weight: 300;
}
.service-special p a{
  color: #f4f4f4;
  font-weight: 600;
}
.service-special .col-lg-8 img {
  width: 100%;
}

.map-form iframe {
  border-radius: 5px;
  height: 100%;
  filter: grayscale(100%);
}

.contact-address .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(223, 212, 154, 0.2549019608);

}
.contact-address p {
  padding-bottom: 0px !important;
  font-size: 14px;
  font-weight: 400;
  color: #b1b1b1;
}
.contact-address a {
  color: #fff;
}
/* blog page start here */
.blog-main .blog-left .single{
  border: 1px solid #a09f9f;
  padding: 10px;
  transition: all .3s ease-in-out;
}
.blog-main .blog-left a.single:hover {
  transform: scale(1.02);
}
.blog-main .blog-left .blog-content{
  color: #000;
  padding: 10px;
}
.blog-main .blog-left .blog-content h2{
  font-size: 26px;
}
.blog-main .blog-right{
  color: #000;
}
.blog-main .blog-right .blog-list img {
  width: 100px;
  height: 85px;
  object-fit: cover;
}
.blog-main .blog-right h4{
  font-size: 18px;
  font-weight: 700;
}
.blog-content .small-title {
  text-transform: none;
}
@media (max-width: 992px) {
  .section-title {
    font-size: 34px;
  }
  .small-title {
    font-size: 16px;
  }
  header nav {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: #000;
    z-index: 8;
    transform: translateY(100%);
    opacity: 0;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  header nav ul {
    height: 100%;
    flex-direction: column;
    justify-content: center !important;
    align-items: center;
  }
  header nav ul li a {
    color: #fff;
  }
  header nav .close {
    position: absolute;
    width: 80px;
    height: 80px;
    color: #fff;
    font-size: 30px;
    text-align: center;
    line-height: 80px;
    top: 10px;
    right: 10px;
  }
  header .navactive {
    transform: translateY(0%);
    opacity: 1;
  }
  .fixednav nav {
    min-height: 100vh;
  }
  .banner {
    background: linear-gradient(
        rgba(0, 0, 0, 0.2862745098),
        rgba(0, 0, 0, 0.2784313725)
      ),
      url("../images/banner-mobile-bg.png");
    background-size: cover;
  }
  .banner h1 {
    font-size: 24px;
  }
  .banner p {
    font-size: 14px;
  }
  .overlay h2 {
    font-size: 20px;
  }
  .download .downloadbg {
    min-height: 215px;
  }
  .download .mobile-img img {
    margin-top: -150px;
  }
  .download .download-bottom h2 {
    font-size: 14px;
  }
  .service-fleet .service-card{
    min-height: 300px;
  }
  .service-fleet .service-card img{
    height: 300px;
    object-fit: cover;
  }
  .how-we-work .container p {
    font-size: 14px;
  }
  .service-mobile .right img{
  width: 300px;
}
} /*# sourceMappingURL=style.css.map */
@media (max-width:576px) {
    .section-title {
    font-size: 25px;
  }
  .how-we-work-about .left img{
    width: 100%;
  }
}