
/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

/*****---------------------------------------- 1) font-family: 'Rajdhani', sans-serif;
 2) font-family: 'Poppins', sans-serif;
 ----------------------------------------*****/


/*--------------------------------------------------------------------- import Files ---------------------------------------------------------------------*/

@import url(animate.min.css);
@import url(normalize.css);
@import url(meanmenu.css);
@import url(owl.carousel.min.css);
@import url(slick.css);
@import url(jquery-ui.css);
@import url(nice-select.css);

html{
    font-size: 62.5%;
    overflow-x: hidden;
   scroll-behavior: smooth;   
   text-align: justify !important;
}



.row{
    margin-left:0 !important;
    margin-right:0 !important;
}
.response{
    margin-top:8px;
} 
.float {
    position: fixed;
    width: 60px;
    height: 59px;
    bottom: 32px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 71px;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}
.my-float{
	margin-top:16px;
}
.main-container{
    background: url(./background.png);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.home-container{
    /* background: #f8b56d; */
    background: rgb(162, 184, 209);
    padding: 2rem 7%;
    width: 100%;
    padding-top: 4rem;

}

.home-content{
    margin-top: 5rem;
    margin-bottom: 0rem;
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.inner-content{
    flex: 1 1 45rem;
    padding: 2rem;
}
.inner-content h3{
    font-size: 31px;
}
.inner-content h2{
    font-size: 38px;
}
.inner-content p{
    font-size: 1.6rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 2rem;
    text-transform: none;
}
.inner-content .booknow {
    padding: .9rem 2.5rem;
    color: #f8b56d;
    font-size: 1.7rem;
    background-color: black;
    border: none;
    border-radius: 17px;
}
.inner-content .booknow:hover{
    color: black;
    padding: 1.2rem 3rem;
    border: 1px solid white;
    background: white;
}
.form-heading{
    background: black;
    border-radius: 2px;
    padding: 1.8rem 0;
}
.form-heading h1{
    color: white;
}
.contact-form{
    width: 45rem;
    background: white;
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 5px;
    margin: 0 auto;
}
.form-fields input{
    padding: 2rem;
    border: none;
    border-bottom: 1.5px solid black;
}
.contact-form button{
    background: black;
    width: 100%;
    display: inline-block;
    padding: 0.9rem 0;
    color: white;
    font-size: 1.7rem;
    box-shadow: 3px 3px 3px grey;
    border-radius: 5px;
}
.search-cabs{
    padding-top: 2rem;
}




@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

:root {
    --yellow: #f9d806;
    --light-yellow: #ffee80;
    --black: #130f40;
    --light-color: #666;
    --border: .1rem solid rgba(0, 0, 0, 0.1);
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;
}

section {
    padding: 2rem 9%;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    border-radius: .5rem;
    background: var(--light-yellow);
    padding: .8rem 3rem;
    color: var(--black);
    font-size: 1.7rem;
    font-weight: 500;
    cursor: pointer;
}

.btn:hover {
    background: var(--yellow);
}

#menu-btn {
    display: none;
    font-size: 2.5rem;
    color: var(--light-color);
    cursor: pointer;
}

html,body{
    overflow-x:hidden !important;
}

html {
    font-size: 62.5%;
    scroll-padding-top: 7rem;
    scroll-behavior: smooth;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 9%;
}

.header .logo {
    font-size: 2.5rem;
    font-weight: bolder;
    color: var(--black);
}

.header .logo span {
    color: var(--yellow);
}

.header .navbar a {
    font-size: 1.7rem;
    margin: 0 1rem;
    color: var(--black);
}

.header .navbar a:hover {
    color: var(--yellow);
}

.header .btn {
    margin-top: 0;
}

.header #login-btn i {
    display: none;
    font-size: 2.5rem;
    color: var(--light-color);
    cursor: pointer;
}

.header.active {
    box-shadow: var(--box-shadow);
    padding: 2rem 9%;
}

.login-form-container {
    position: fixed;
    top: -105%;
    left: 0;
    z-index: 1000;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.login-form-container.active {
    top: 0;
    opacity: 1;
}

.login-form-container form {
    padding: 2rem;
    margin: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow);
    background: #fff;
    border: var(--border);
    text-align: center;
    width: 40rem;
}

.login-form-container form .buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-form-container form .btn {
    display: block;
    width: 100%;
    margin: .5rem 0;
}

.login-form-container form h3 {
    color: var(--black);
    font-size: 2.5rem;
    padding-bottom: 1rem;
    text-transform: uppercase;
}

.login-form-container form .box {
    margin: .7rem 0;
    width: 100%;
    text-transform: none;
    color: var(--black);
    font-size: 1.2rem;
    padding: 1rem 1.2rem;
    border: var(--border);
    border-radius: 0.5rem;
}

.login-form-container form p {
    padding: 1rem 0;
    font-size: 1.5rem;
    color: var(--light-color);
}

.login-form-container form p a {
    color: var(--yellow);
    text-decoration: underline;
}

.login-form-container #close-login-btn {
    position: absolute;
    top: 1.5rem;
    right: 2.5rem;
    font-size: 5rem;
    color: var(--black);
    cursor: pointer;

}


.home {
    padding-top: 10rem;
    text-align: center;
    overflow-x: hidden;
}

.home h1 {
    font-size: 7.5vw;
    text-transform: uppercase;
    color: var(--black);
}

.home img {
    width: 100%;
    margin: 1rem 0;
}

.icons-container {
    padding-top: 5rem;
    padding-bottom: 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
    background: #eee;
}

.icons-container .icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #fff;
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
}

.icons-container .icons i {
    height: 6rem;
    width: 6rem;
    line-height: 6rem;
    font-size: 2.5rem;
    border-radius: 50%;
    background: #eee;
    color: var(--black);
    text-align: center;
}

.icons-container .icons .content h3 {
    color: var(--yellow);
    font-size: 2.5rem;
}

.icons-container .icons .content p {
    color: var(--light-color);
    font-size: 1.5rem;
}

.icons-container .icons:hover {
    background: var(--black);
}

.icons-container .icons:hover i {
    background: var(--yellow);
}

.icons-container .icons:hover .content h3 {
    color: #fff;
}

.icons-container .icons:hover .content p {
    color: #eee;
}


.heading {
    text-align: center;
    padding-bottom: 2rem;
    font-size: 4.5rem;
    color: var(--black);
}

.heading span {
    position: relative;
    z-index: 0;
}

.heading span::before {
    content: '';
    position: absolute;
    bottom: 1rem;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: var(--yellow);
    clip-path: polygon(0 90%, 100% 80%, 100% 100%, 0% 100%);
}


.services .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
    gap: 1.5rem;
    background-color:#eee;
}

.services .box-container .box{
    text-align: center;
    padding: 2rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    border: var(--border);
}

.services .box-container .box i{
    height: 6rem;
    width: 6rem;
    line-height: 6rem;
    font-size: 2.5rem;
    color: var(--black);
    background: var(--yellow);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.services .box-container .box h3{
    color: var(--black);
    font-size: 2.2rem;
}

.services .box-container .box p{
    color: var(--light-color);
    font-size: 1.4rem;
    padding: 1rem 0;
    line-height: 1.8;
}

.services .box-container .box:hover{
    background: var(--black);
}

.services .box-container .box:hover h3{
    color: #fff;
}

.services .box-container .box:hover p{
   color: #fff;
}

.featured-slider .featured-wrapper{
    position: relative;
    overflow-x: hidden;
}

.featured-slider .featured-wrapper .preNext{
    cursor: pointer;
    font-size: 5rem;
    text-align: center; 
    padding-top: 10.5%; 
    height: 100%;    
    color: var(--black);
    z-index: 1;
    width: 10%;
}

.featured-slider .featured-wrapper .preNext#fPreBtn{
    position: absolute;
    top: 0;
    left: 0%;
}
.featured-slider .featured-wrapper .preNext#fNextBtn{
    position: absolute;
    top: 0;
    right: 0%;
}

.featured-slider .fActCircle{
    text-align: center;
    color: var(--yellow);
}

.featured-slider .featured-wrapper .featured-wrapper2{
    width: 62vw;
    overflow-x:hidden;    
    margin-left: 10vw;
}

.featured-slider .featured-wrapper .featured-wrapper-box{
    display: flex;
    gap: 2rem;
}

.featured-slider .featured-wrapper .featured-wrapper-box .box{
    text-align: center;
    border: var(--border);
    padding: 2rem;
    margin: 2rem auto;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
}

.featured-slider .featured-wrapper .box img{
    width: 17vw;
}
.featured-slider .featured-wrapper .box:hover img{
    transform: scale(.9);
}
.featured-slider .featured-wrapper .box h3{
    font-size: 2.2rem;
    color: var(--black);
}
.featured-slider .featured-wrapper .box .stars{
    padding: 1rem 0;
}
.featured-slider .featured-wrapper .box .stars i{
   font-size: 1.7rem;
   color: var(--yellow);
}

.featured-slider .featured-wrapper .box .price {
    font-size: 2.5rem;
    color: var(--black);
 }

 .subscribe{
    padding: 6rem;
    text-align: center;
    background: url(../image/carbg.png) no-repeat;
    background-position: center;
    background-size: cover;
 }

 .subscribe h3{
    color: var(--black);
    font-size: 3rem;
 }

 .subscribe p{
    color: var(--light-color);
    font-size: 1.5rem;
    padding: 1rem 0;
}

.subscribe form{
    margin: 1rem auto;
    max-width: 60rem;
    height: 5rem;
    display: flex;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    border-radius: 5rem;
}

.subscribe form input[type="email"]{
    height: 100%;
    width: 100%;
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
    padding: 0 2rem;
}

.subscribe form input[type="submit"]{
    height: 100%;
    width: 17rem;
    font-size: 1.8rem;
    color: var(--black);
    background: var(--light-yellow);
    cursor: pointer;
}

.subscribe form input[type="submit"]:hover{
    background:var(--yellow);
}


/* .reviews .review-slider{
    position: relative;
    text-align: center;
}

.reviews .review-slider .rPreNext{
    cursor: pointer;
    font-size: 5rem;
    text-align: center; 
    height: 100%;    
    color: var(--black);
    padding-top: 15.5%;
    z-index: 1;
    width: 28vw;
}

.reviews .review-slider .rPreNext#rPreBtn{
    position: absolute;
    text-align: left; 
    top: 0;
    left: 0;
}
.reviews .review-slider .rPreNext#rNextBtn{
    position: absolute;
    text-align: right;
    top: 0;
    right: 0;
}

.reviews .review-slider .rActCircle{
    color: var(--yellow);
    margin-top: 2rem;
}

.reviews .review-slider .review-wrapper{
    overflow-x: hidden;
    width: 64.8vw;
    margin-left: 8vw;
}

.reviews .review-slider .review-wrapper .review-wrapper-box{
    display: flex;
    gap: 1rem;
}

.reviews .review-slider .box{
    transform: translateX(22vw);
    height: 300px;
    text-align: center;
    padding: 2rem;
    margin: auto;
    box-shadow: var(--box-shadow);
    opacity: .4;
}

.reviews .review-slider .box.active{
    border-radius: .5rem;    
    border: var(--border);
    opacity: 1;
}

.reviews .review-slider .review-wrapper-box .box img{
    width: 7rem;
    height: 7rem;
    margin-bottom: 2rem;
    border-radius: 50%;
}

.reviews .review-slider .box .content{
    width: 16.75vw;
}
.reviews .review-slider .box.active .content{
    width: 18.95vw;
}

.reviews .review-slider .box .content p{
    font-size: 1.4rem;
    color: var(--light-color);
    padding: 1rem 0;
}
.reviews .review-slider .box .content h3{
    font-size: 2.2rem;
    color: var(--black);
}
.reviews .review-slider .box .content .stars i{
    font-size: 1.7rem;
    color: var(--yellow);
} */






.contact .row{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact .row .map{
    flex: 1 1 42rem;
    width: 100%;
    padding: 2rem;
    border: var(--border);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
}

.contact .row form{
    flex: 1 1 42rem;
    width: 100%;
    padding: 2rem;
    border: var(--border);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.contact .row form h3{
    color: var(--black);
    font-size: 3rem;
}

.contact .row form .box{
    margin: .7rem 0;
    width: 100%;
    border: var(--border);
    padding: 1rem;
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
    border-radius: .5rem;
}

.contact .row form textarea{
    height: 15rem;
    resize: none;
}

.footer{
    /* background: var(--black); */
    background: var(--black);
}

.footer .footer-box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}

.footer .footer-box-container .box h3{
    color: var(--black);
    font-size: 2.2rem;
    padding: 1rem 0;
}

.footer .footer-box-container .box a{
    color: var(--light-color);
    font-size: 1.4rem;
    padding: 1rem 0;
    display: block;
}

.footer .footer-box-container .box a i{
    padding-right: .5rem;
    color: var(--black);
}

.footer .footer-box-container .box a:hover i{
    padding-right: 2rem;
}

.footer .copyright{
    color: var(--black);
    padding-top: 2.5rem;
    border-top: var(--border);
    margin-top: rem;
    font-size: 1.5rem;
}













/* media queries */
@media(max-width:991px) {
    html {
        font-size: 55%;
    }

    .header {
        padding: 2rem;
    }

    .header.active {
        padding: 2rem;
    }

    section {
        padding: 2rem;
    }

}

@media(max-width:768px) {

    .header #login-btn i {
        display: block;
    }

    .header #login-btn .btn {
        display: none;
    }

    .header .navbar {
        position: absolute;
        top: 99%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: var(--border);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    .header .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    .header .navbar a {
        display: block;
        margin: 2rem;
        font-size: 2rem;
    }

    #menu-btn {
        display: block;
    }

    #menu-btn.fa-xmark {
        transform: rotate(180deg);
    }

    .header.active {
        padding: 2rem;
    }

    .vehical .slider .wrapper .wraper-box {
        margin-left: 20vw;
    }

    .vehical .slider .wrapper .preNext#preBtn {
        width: 20vw;
    }

    .vehical .slider .wrapper .preNext#nextBtn {
        width: 20vw;
    }

    .featured-slider .featured-wrapper .preNext{
        padding-top: 30%; 
    }
    
    .featured-slider .featured-wrapper .featured-wrapper2{
        width: 100%;        
        margin: auto; 
    }
    .featured-slider .featured-wrapper .featured-wrapper2 .featured-wrapper-box .box{
        display: none;       
    }
    .featured-slider .featured-wrapper .featured-wrapper2 .featured-wrapper-box .box.active{
        display: block;       
    }
    .featured-slider .featured-wrapper .featured-wrapper-box .box.active img{
        width: 65vw;     
    }

    .reviews .review-slider .rPreNext{
        padding-top: 20%;
        width: 18vw;
    }

    .reviews .review-slider .review-wrapper{
        margin: auto;
    }
    .reviews .review-slider .box{
        transform: translateX(0vw);
        display: none;
    }
    .reviews .review-slider .box.active{
        display: block;
    }

    .reviews .review-slider .box.active .content{
        width: 55vw;
    }



}

@media(max-width:450px) {
    html {
        font-size: 50%;
    }

    .vehical .slider .wrapper .wraper-box .box {
        display: none;
    }

    .vehical .slider .wrapper .wraper-box .box.active {
        display: block;
        margin-left: -15%;
        margin-right: auto; 
    }

    .vehical .slider .wrapper .wraper-box .box.active img {
        transform: scale(1);
    }

    .vehical .slider .wrapper .preNext#preBtn {
        width: 15%;
        padding-top: 17%;
    }

    .vehical .slider .wrapper .preNext#nextBtn {
        width: 15%;
        padding-top: 17%;
    }

    .reviews .review-slider .rPreNext{
        padding-top: 30%;
        width: 14vw;
    }
    


    
}
body { color: #ccc }
.footer-widget p {
    margin-bottom: 27px;
    overflow-x:hidden;
}
p {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
  color:white;
    line-height: 28px;
}

   .animate-border {
  position: relative;
  display: block;
  width: 115px;
  height: 3px;
  background: #007bff; }

.animate-border:after {
  position: absolute;
  content: "";
  width: 35px;
  height: 3px;
  left: 0;
  bottom: 0;
  border-left: 10px solid #fff;
  border-right: 10px solid #fff;
  -webkit-animation: animborder 2s linear infinite;
  animation: animborder 2s linear infinite; }

@-webkit-keyframes animborder {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px); }
  100% {
    -webkit-transform: translateX(113px);
    transform: translateX(113px); } }

@keyframes animborder {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px); }
  100% {
    -webkit-transform: translateX(113px);
    transform: translateX(113px); } }

.animate-border.border-white:after {
  border-color: #fff; }

.animate-border.border-yellow:after {
  border-color: #F5B02E; }

.animate-border.border-orange:after {
  border-right-color: #007bff;
  border-left-color: #007bff; }

.animate-border.border-ash:after {
  border-right-color: #EEF0EF;
  border-left-color: #EEF0EF; }

.animate-border.border-offwhite:after {
  border-right-color: #F7F9F8;
  border-left-color: #F7F9F8; }

/* Animated heading border */
@keyframes primary-short {
  0% {
    width: 15%; }
  50% {
    width: 90%; }
  100% {
    width: 10%; } }

@keyframes primary-long {
  0% {
    width: 80%; }
  50% {
    width: 0%; }
  100% {
    width: 80%; } } 

.dk-footer {
  padding: 75px 0 0;
  background-color: #151414;
  position: relative;
  z-index: 2; }
  .dk-footer .contact-us {
    margin-top: 0;
    margin-bottom: 30px;
    padding-left: 60px; }
    .dk-footer .contact-us .contact-info {
      margin-left: 50px; }
    .dk-footer .contact-us.contact-us-last {
      margin-left: -80px; }
  .dk-footer .contact-icon i {
    font-size: 24px;
    top: -15px;
    position: relative;
    color:#007bff; }

.dk-footer-box-info {
  position: absolute;
  top: -12px;
  bottom: -120px;
  padding: 40px;
  z-index: 2; }
  .dk-footer-box-info .footer-social-link h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 25px; }
  .dk-footer-box-info .footer-social-link ul {
    list-style-type: none;
    padding: 0;
    margin: 0; }
  .dk-footer-box-info .footer-social-link li {
    display: inline-block; }
  .dk-footer-box-info .footer-social-link a i {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    background: #000;
    margin-right: 5px;
    color: #fff; }
    .dk-footer-box-info .footer-social-link a i.fa-facebook {
      background-color: #3B5998; }
    .dk-footer-box-info .footer-social-link a i.fa-twitter {
      background-color: #55ACEE; }
    .dk-footer-box-info .footer-social-link a i.fa-google-plus {
      background-color: #DD4B39; }
    .dk-footer-box-info .footer-social-link a i.fa-linkedin {
      background-color: #0976B4; }
    .dk-footer-box-info .footer-social-link a i.fa-instagram {
      background-color: #B7242A; }

.footer-awarad {
  margin-top: 285px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .footer-awarad p {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-left: 20px;
    padding-top: 15px; }

.footer-info-text {
  margin: 26px 0 32px; }

.footer-left-widget {
  padding-left: 80px; }

.footer-widget .section-heading {
  margin-bottom: 35px; }

.footer-widget h3 {
  font-size: 24px;
  color: #fff;
  position: relative;
  margin-bottom: 15px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content; }

.footer-widget ul {
  width: 50%;
  float: left;
  list-style: none;
  margin: 0;
  padding: 0; }

.footer-widget li {
  margin-bottom: 18px; }

.footer-widget p {
  margin-bottom: 27px; }

.footer-widget a {
  color: #878787;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }
  .footer-widget a:hover {
    color: #007bff; }

.footer-widget:after {
  content: "";
  display: block;
  clear: both; }

.dk-footer-form {
  position: relative; }
  .dk-footer-form input[type=email] {
    padding: 14px 28px;
    border-radius: 50px;
    background: #2E2E2E;
    border: 1px solid #2E2E2E; }
  .dk-footer-form input::-webkit-input-placeholder, .dk-footer-form input::-moz-placeholder, .dk-footer-form input:-ms-input-placeholder, .dk-footer-form input::-ms-input-placeholder, .dk-footer-form input::-webkit-input-placeholder {
    color: #878787;
    font-size: 14px; }
  .dk-footer-form input::-webkit-input-placeholder, .dk-footer-form input::-moz-placeholder, .dk-footer-form input:-ms-input-placeholder, .dk-footer-form input::-ms-input-placeholder, .dk-footer-form input::placeholder {
    color: #878787;
    font-size: 14px; }
  .dk-footer-form button[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    padding: 12px 24px 12px 17px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    border: 1px solid #007bff;
    background: #007bff;
    color: #fff; }
  .dk-footer-form button:hover {
    cursor: pointer; }

/* ==========================

    Contact

=============================*/
.contact-us {
  position: relative;
  z-index: 2;
  margin-top: 65px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.contact-icon {
  position: absolute; }
  .contact-icon i {
    font-size: 36px;
    top: -5px;
    position: relative;
    color: #007bff; }

.contact-info {
  margin-left: 75px;
  color: #fff; }
  .contact-info h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 0; }

.copyright {
  padding: 20px 0;
  margin-top: 55px;
  background-color: #202020; }
  .copyright span,
  .copyright a {
    color: #878787;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear; }
  .copyright a:hover {
    color:#007bff; }

.copyright-menu ul {
  text-align: right;
  margin: 0; }

.copyright-menu li {
  display: inline-block;
  padding-left: 20px; }



      /* .box-container{
        background-color: #10444e;
      } */

      .footer-widget li a {
        color:#fff;
        font-size: 13px;
      }
      
      
      
@media only screen and (max-width:1343px){
      .header .logo {
    font-size: 1.5rem;
   }
  }

      @media only screen and (max-width:990px){
      .footer-awarad p {
          margin-left: 0;
          padding-top: 56px;
      }

      .img-fluid {
        max-width:29% !important;
        height: auto;
    }

    .footer-left-widget {
        padding-left:0px;
    }

    .dk-footer-box-info {
        
        background: #151414;
        
    }

    .dk-footer .contact-us.contact-us-last {
        margin-left:0px; 
    }

    .dk-footer .contact-us {
        margin-bottom: 19px;
        padding-left: 0px;
    }
    .dk-footer-box-info {
        position: absolute;
        top: 0px;
        bottom: 0px;
        padding: 0px;
        z-index: -1;
    }


    .footer-info{
        margin-top:352px;
    }
    
    .header .text-logo{
     display:none;
   }
   

    }

 @media only screen and (max-width:978px) {

   .footer-info{
        margin-top:220px;
    }
}

      @media only screen and (max-width:754px) {

        .revers-col{
            display:flex;
            flex-direction:column-reverse !important;
        }
        
        .book_bt,.book_bt2{
            width:100% !important;
        }
        
        .book_bt a,.book_bt2 a {
            width: 40%;
            
        }


        .img-fluid {
            max-width:29% !important;
            height: auto;
        }

        .footer-left-widget {
            padding-left:0px;
        }

        .dk-footer-box-info {
            
            background: #151414;
            
        }

        .dk-footer .contact-us.contact-us-last {
            margin-left:0px; 
        }

        .dk-footer .contact-us {
            margin-bottom: 19px;
            padding-left: 0px;
        }
        .dk-footer-box-info {
            position: absolute;
            top: 0px;
            bottom: 0px;
            padding: 0px;
            z-index: -1;
        }

        .footer-awarad p {
            margin-left: 0;
            padding-top: 0;
        }

       .vehical .slider .wrapper .wraper-box .box img {
 
    width:187px;
    
}

 

      }  
      
 .img-logo{
    width:88px;
    margin-right:10px;
} 
      
.header .logo {
    display: flex;
    align-items: center;
    
} 

.header {
    padding: 1rem 9%;
}


.form-fields input[type="date"] {
    width: 188px;
    padding: 19px !important;
}

.form-fields input{
    font-size:12px;
}




/*Our Taxi Start*/
.taxis_section {
    width: 100%;
    float: left;
    /* background-color: #eee; */
    background-color: #ffffff;
    
    height: auto;
    
    padding-bottom: 50px;

}
/* .our_text{
    width: 100%;
    float: left;
    text-align: center;
    font-size: 50px;
    color: #fefefe;
    font-weight: bold;
} */
.taxis_section_2 {
    width: 105%;
    float: left;
}

.taxi_main{
     width: 100%;
     float: left;
     background-color: #fefefe;
     height: auto;
    margin-top: 30px;
}
.images_2{
    width: 100%;
    float: left;
    text-align: center;
}
.round_1 {
    width: 21%;
    margin: 0 auto;
    font-size: 24px;
    /* color: #fefefe; */
    height: 70px;
    background: #f8ca11;
    display: block;
    text-align: center;
    border-radius: 60px;
    padding-top: 12px;
    position: relative;
    top: -35px;
}
.carol_text{
    width: 100%;
    float: left;
    text-align: center;
    /* color: #2b3436; */
    font-size: 24px;
}

.reader_text{
    width: 100%;
    float: left;
    text-align: center;
    color: #2b3436;
    font-size: 20px;
    margin-left: 0px;
}
/* Our Taxis End */

/* Why Ride With Us Start */
.ride_section{
    width: 100%;
    float: left;   
}

.ride_text{
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #2b3436;
    font-size: 50px;
    margin-left: 0px;
    border-bottom: 1px solid #000;
}

.ride_main {
   width: 50%;
   margin: 0 auto;
   text-align: center;
}

.ride_section_2{
    width: 100%;
    float: left;
}

.image_3{
    width: 100%;
    float: left;
}
.ride_section{
    width: 100%;
    float: left;   
}


.ride_section_2 .ride_text{
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #2b3436;
    font-size: 50px;
    margin-left: 0px;
    border-bottom: 1px solid #000;
}

.ride_section_2 .ride_main {
   width: 50%;
   margin: 0 auto;
   text-align: center;
}

.ride_section_2{
    width: 100%;
    float: left;
}

.ride_section_2 .image_3{
    width: 100%;
    float: left;
}

.ride_section_2 .cabe_text {
   width: 100%;
   float: left;
   font-size: 24px;
   color: #2b3436;
   margin-top: 20px;
} 

.ride_section_2 .long_text{
    width: 100%;
    float: left;
    font-size: 16px;
    color: #2b3436;
    margin-left: 0px;
}

.ride_section_2 .book_bt a{
   width: 20%;
   float: left;
   font-size: 18px;
   color: #fefefe;
   background-color: #f8ca11;
   text-align: center;
   padding: 10px 0px;
   margin-top: 30px;
}

.book_bt a{ color:#fefefe; }
.book_bt a:hover{     
   color: #fff;
   background: #000;

}

.ride_section_2 .secure_text {
   width: 100%;
   float: left;
   font-size: 24px;
   color: #2b3436;
   margin-top: 20px;
   text-align: right;
}

.ride_section_2 .long_text_2{
    width: 100%;
    float: left;
    font-size: 16px;
    color: #2b3436;
    margin-left: 0px;
    text-align: right;
} 

.ride_section_2 .book_bt2 a{
   width: 20%;
   float: right;
   font-size: 18px;
   color: #fefefe;
   background-color: #f8ca11;
   text-align: center;
   padding: 10px 0px;
   margin-top: 30px;
}


.ride_section_2 .book_bt2 a:hover {
   color: #fff;
   background: #000;
}



/*Why Ride Us End*/

/* About Us Section Start */
.about_section{
    width: 100%;
    height: auto;
    /* background-color: #444; */
    background-color:#eee;
   
    display: flex;
    align-items: right;
    justify-content: space-between;
    /* padding: 50px 13%; */
    font-family: pop;
}
.about_img img{
    width: 450px;
    height: 350px;
    transform: translateY(10px);
}
.about_details h1{
    font-size: 48px;
    /* color: #fff; */
    color:black;
    position: relative;
}
.about_details h1::after{
    content: " ";
    position: absolute;
    width: 120px;
    height: 4px;
    background-color: #f39c12;
    border-radius: 5px;
    left: 0;
    bottom: 2px;
}
.about_details p{
    font-size: 15px;
    /* color: #fff; */
    color:#000;
    max-width: 680px;
    margin: 10px 0 0px 0;
    line-height: 29px;
}
.btn1{
    margin-right: 15px;
    background-color: #f39c12;
    color: #000;
}
.btn1:hover{
    background-color: transparent;
    color: #f39c12;
}

/* About Us Section End */

/* Testimonials Start */


/* Gallery Section Start */
.container1{
    height: 350px;
    margin:auto;
    position: relative;
width: 90%;
gap: 20px;

display:grid;
place-items: center;
overflow: hidden;
}
.slide-container{
    display:flex;
    width:calc(2000px * 18);
    
    animation:scroll 20s linear infinite;
    
}
@keyframes scroll{
    0%{
        transform:translatex(0);
    }
    100%{
        transform:translatex(calc(-250px * 9));
    }
}
.slide-image{
    height:250px;
    width:250px;
    display: flex;
    border: 10px solid whitesmoke;
    align-items: center;
    padding: 15px;
    perspective: 100px;
    
}
img{
    width: 100%;
    transition:transform 1s;
    
}
img:hover{
    transform:translateZ(20px);
}

/* Gallery Section End */