
html {
    scroll-behavior: smooth;
}

.topDiv {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 99;
    background: #EE4E34;
    border-radius: 10px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s;
    box-shadow: 0 0 20px rgb(0 0 0 / 15%);
}

.topDiv a {
    padding: 10px 17px;
    display: block;
    color: #fff;
}

.topDiv:hover {
    background-color: #000;
}

.topDiv:hover a img {
    filter: brightness(0);
}

.stickOnTop .topDiv {
    opacity: 1;
    transform: scale(1);
}

.topBarWrapper{
    border-bottom: 1px solid #4c4c4c;
    padding: 20px 0;
}

.topBar{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topBar .midDiv .logo a img{
    width: 180px;
    height: 34px;
}

.topBar .leftDiv a{
    color: #fff;
}

.topBar .midDiv h2{
    color: #fff;
}

.topBar .rightDiv i{
    color: #fff;
    padding: 0 10px;
}

.headerSection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

.headerSection .navbar-brand {
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    display: none;
}

.headerSection .navbar-brand img{
    width: 180px;
    height: 34px;
}

.stickOnTop .headerSection .navbar-brand{
    display: inline-block;
}

.navbar .navbar-toggler{
    border-color: #fff;
}

.navbar .navbar-toggler-icon{
    background: url(../contents/images/list.svg) center center no-repeat;
    background-size: 30px;
}

.headerSection .nav-link {
    color: #fff !important;
    font-weight: 500 !important;
}

.navCallDiv a {
    color: #fff;
    font-weight: 700;
}

.bi::before {
    font-weight: 900 !important;
}

header .navStoreIcons {
    display: none;
}

.navbar{
    padding: 10px 0;
    border-bottom: 1px solid #4c4c4c;
}

.heroSectionWrapper .navStoreIcons {
    display: flex;
}

.navStoreIcons .storeDiv {
    display: flex;
    align-items: center;
    background-color: #000;
    margin-left: 15px;
    border-radius: 5px;
    padding-right: 18px;
    width: 130px;
}

.navStoreIcons .apple {
    background-color: #ececec;
}

.navStoreIcons .google{
    background-color: #EE4E34;
}

.navStoreIcons .apple i,
.navStoreIcons .apple span,
.navStoreIcons .apple h3 {
    color: #000 !important;
}

.navStoreIcons .storeDiv .icon {
    padding: 0 5px 0 15px;
}

.navStoreIcons .storeDiv i {
    color: #fff;
}

.navStoreIcons .storeDiv span {
    font-size: 8px;
    color: #fff;
}

.navStoreIcons .storeDiv h3 {
    font-size: 10px;
    color: #fff;
}

.navStoreIcons a{
    text-decoration: none;
}

.stickOnTop .navbar {
    position: fixed !important;
    top: 0 !important;
    right: 0;
    left: 0;
    background-color: #000 !important;
    z-index: 99;
    animation: fadeInDown 1s both;
    box-shadow: 0 0 20px rgba(0 0 0 / 20%);
    border: none;
}

/* .stickOnTop .headerSection .navbar-brand,
.stickOnTop .headerSection .nav-link,
.stickOnTop .navCallDiv a{
    color: #fff !important;
} */


.heroSectionWrapper {
    /* background: linear-gradient(rgba(0 0 0 / 60%),rgba(0 0 0 / 60%)), url(../contents/images/homePageBanner.webp) center center no-repeat; */
    position: relative;
    background-size: cover;
    padding: 200px 0 100px;
}

.heroSectionWrapper .homePageBanner {
    background: linear-gradient(rgba(0 0 0 / 70%), rgba(0 0 0 / 75%)), url(../contents/images/homePageBanner.webp) center center no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 220px 220px 220px rgb(0 0 0) inset;
    z-index: -1;
}

.heroSectionInner .heroContent span {
    color: #fff;
    font-weight: 500;
}

.heroSectionInner .heroContent h1 {
    color: #fff;
    font-size: 46px;
    margin: 28px 0;
    /*font-family: 'DMsansRegular';*/
    
}

.heroSectionInner .heroContent h2 {
    font-size: 14px;
    color: #fff;
    border: 1px solid #fff;
    display: inline-block;
    padding: 12px 45px 12px 12px;
    background: rgba(0 0 0 / 45%) url(../contents/images/arrow-down-right.svg) 145px center no-repeat;
    background-size: 18px;
    border-radius: 5px;
    border-bottom-width: 2px;
}

.homePageAboutWrapper {
    padding: 150px 0;
}

.homePageAboutImg {
    background: url(../contents/images/aboutImg.webp) center center no-repeat;
    background-size: cover;
    width: 100%;
    height: 650px;
    border-radius: 10px;
}

.homePageAboutWrapper h2 {
    font-size: 45px !important;
    margin-bottom: 0px !important;
}

.homePageAboutWrapper .mainHeading {
    text-align: left !important;
    margin-bottom: 20px !important;
}

.homePageAboutWrapper p {
    color: #6c6c6c;
    font-size: 15px;
    font-weight: 600;
}

.customBtn {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 5px;
    border: 0;
    background: #EE4E34;
    color: #fff !important;
    box-shadow: 3px 3px 5px rgb(255 255 255 / 35%) inset, 0 0 20px rgb(0 0 0 / 10%);
    text-decoration: none !important;
    transition: all 0.3s;
}

.customBtn:hover {
    background: #000;
}

.ourServicesWrapper {
    padding: 150px 0 100px;
    background-color: #FCEDDA;
}

.mainHeading {
    text-align: center;
    margin-bottom: 70px;
}

.mainHeading h2 {
    color: #EE4E34;
    font-weight: 700;
    font-size: 30px;
}

.mainHeading h2 span {
    color: #000;
}

.ourServicesWrapper .cusCards,
.airportWrapper .cusCards,
.stationWrapper .cusCards{
    padding: 30px 0;
}

.ourServicesWrapper .cusCardsImg,
.airportWrapper .cusCardsImg,
.stationWrapper .cusCardsImg {
    text-align: center;
    background: #fff;
    border-radius: 10px;
    padding: 15px 0;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    width: 85px;
    margin-left: auto;
}

.ourServicesWrapper .cusCardsImg img,
.airportWrapper .cusCardsImg img,
.stationWrapper .cusCardsImg img{
    width: 50px;
    height: 50px;
}

.ourServicesWrapper .cusCards h2,
.airportWrapper .cusCards h2,
.stationWrapper .cusCards h2{
    font-size: 16px;
    color: #EE4E34;
    font-weight: 700;
}

.ourServicesWrapper .cusCards h2 a,
.airportWrapper .cusCards h2 a,
.stationWrapper .cusCards h2 a {
    color: #EE4E34;
}

.ourServicesWrapper .cusCards p,
.airportWrapper .cusCards p,
.stationWrapper .cusCards p {
    color: #565656;
    font-weight: 600;
    font-size: 12px;
    margin: auto;
    margin: 0;
    width: 80%;
}

.airportWrapper .airportBg{
    background: linear-gradient(#ee4e3426,#ee4e3426), url(../contents/images/airportBg.webp) center center no-repeat;
    background-size: cover;
}

.airportWrapper .cusCardsWrapper,
.stationWrapper .cusCardsWrapper{
    padding: 70px 0;
}

.airportWrapper .mainHeading h2,
.stationWrapper .mainHeading h2{
    font-size: 30px;
}

.airportWrapper .cusCards p,
.stationWrapper .cusCards p{
    width: 100%;
}

.airportWrapper .cusCards,
.stationWrapper .cusCards{
    padding: 10px 0;
}

.fleetWrapper {
    padding: 100px 0;
    position: relative;
}

.fleetWrapper .cusCards {
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 20px rgb(0 0 0 / 5%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fleetWrapper .cusCards .cusCardsContent h2 {
    font-size: 18px;
    font-weight: 700;
    color: #EE4E34;
}

.fleetWrapper .cusCards .cusCardsContent p {
    color: #919191;
    font-weight: 500;
    font-size: 14px;
}

.fleetWrapper .cusCards .cusCardImg {
    background-size: 180px !important;
    width: 100%;
    height: 120px;
}

.fleetWrapper .cusCards .cusCardImg1 {
    background: url(../contents/images/saloon.webp) center center no-repeat;
}

.fleetWrapper .cusCards .cusCardImg2 {
    background: url(../contents/images/estate.webp) center center no-repeat;
}

.fleetWrapper .cusCards .cusCardImg3 {
    background: url(../contents/images/executive.webp) center center no-repeat;
}

.fleetWrapper .cusCards .cusCardImg4 {
    background: url(../contents/images/mpv.webp) center center no-repeat;
}

.fleetNum span {
    margin-left: 35px;
}

.fleetNum span::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 10px;
    width: 40px;
    height: 41px;
    background: url(../contents/images/travel-luggage.webp) center center no-repeat;
    background-size: 20px;
    border-radius: 50%;
}

.stationWrapper .stationBg{
    background: linear-gradient(#ee4e3426,#ee4e3426), url(../contents/images/stationBg.webp) center center no-repeat;
    background-size: cover;
}

.downloadOurAppWrapper{
    padding: 100px 0;
    background: #000;
}

.downloadOurAppWrapper .mainHeading{
    text-align: left;
    margin-bottom: 15px;
}

.downloadOurAppWrapper .mainHeading h2{
    font-size: 45px;
}

.downloadOurAppWrapper .mainHeading h2 span{
    color: #fff;
}

.downloadOurAppWrapper p{
    width: 75%;
    color: #a6a6a6;
    margin-bottom: 30px;
}

.downloadOurAppWrapper .navStoreIcons{
    display: flex;
}

.downloadOurAppWrapper .navStoreIcons .storeDiv{
    padding: 0;
    margin: 0;
}

.downloadOurAppWrapper .navStoreIcons .storeDiv.google{
    margin-left: 15px;
}

/* .downloadOurAppWrapper .appsBanner{
    background: url(../contents/images/appsBanner.webp) center center no-repeat;
    background-size: cover;
    height: 540px;
} */

.innerPagesHeroSection h1 {
    color: #fff;
}

.innerPagesHeroSection h1 span {
    color: #EE4E34;
}

.innerPagesHeroSection h2{
    color: #fff;
    font-size: 16px;
    border: 1px solid #fff;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
}

.innerPagesContentWrapper {
    padding: 110px 0 100px;
}

.innerPagesContentWrapper .mainHeading{
    text-align: left;
    margin: 35px 0 15px;
}

.innerPagesContentWrapper h2{
    font-size: 30px;
}

.innerPagesContentWrapper p {
    font-weight: 600;
    color: #676767;
}


.innerPagesContentWrapper li {
    font-weight: 600;
    color: #676767;
}

.aboutHero {
    text-align: center;
    padding: 250px 0 150px;
    background: linear-gradient(rgba(0 0 0 / 75%),rgba(0 0 0 / 75%)), url(../contents/images/banner.webp) center bottom no-repeat;
    background-size: cover;
}

.aboutHero span{
    color: #fff;
}

.aboutHero h1 {
    color: #EE4E34;
    font-size: 60px;
}

.contactcontent .mainHeading {
    text-align: left;
    margin-bottom: 20px;
}

.contactcontent .mainHeading h2 {
    font-size: 28px;
}

.contactcontent .customInputs {
    padding: 25px 10px;
    margin: 0;
    background-color: #EE4E34;
    box-shadow: none;
    border: none;
}

.contactcontent .customBtn {
    padding: 8px 20px;
    background: #000;
}

.contactcontent .customBtn:hover{
    background-color: #EE4E34;
}

.contactcontent p {
    color: #6e6e6e;
    font-weight: bolder;
}

.contactcontent p a {
    color: #6e6e6e;
}

.contactcontent i {
    color: #EE4E34;
    font-size: 18px;
    margin-right: 15px;
}

.contactcontent .customInputs::placeholder{
    color: #fff !important;
}

.contactcontent .customInputs:focus{
    background: #000;
    color: #fff !important;
}

.contactcontent .customInputs:focus::placeholder{
    color: #fff !important;
}

.footerWrapper{
    background-color: #000;
    border-top: 1px solid #4c4c4c;
}



.footerTopDiv {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

.footerTopDivWrapper {
    border-bottom: 1px solid #0000001c;
}

.footerTopDiv .footerLeftDiv img{
    width: 180px;
    height: 34px;
    margin-right: 30px;
}

.footerTopDiv h2 {
    margin-bottom: 0;
    margin-right: 30px;
    color: #fff;
}

.footerTopDiv .footerRightDiv h2 {
    font-size: 16px;
    color: #fff;
}

.footerTopDiv .footerRightDiv a {
    color: #fff;
}

.footerTopDiv .footerRightDiv span i {
    font-size: 20px;
    margin-right: 20px
}

.footerMidDivWrapper {
    padding: 50px 0;
}

.footerMidDiv h2 {
    font-size: 18px;
    color: #EE4E34;
}

.footerMidDiv ul {
    padding: 0;
    list-style: none;
}

.footerMidDiv ul li {
    padding: 5px 0;
}

.footerMidDiv ul li a {
    color: #bbb;
    font-size: 13px;
}

.footerMidDiv i {
    font-size: 14px;
    color: #EE4E34;
}

.FooterstoreIconsDiv {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.FooterstoreIconsDiv .navStoreIcons {
    flex-direction: column;
}

.FooterstoreIconsDiv .navStoreIcons .storeDiv {
    margin-top: 10px;
}

.footerBottomDivWrapper {
    padding: 25px 0;
    border-top: 1px solid #0000001c;
}

.footerBottomDivWrapper .footerNav {
    text-align: end;
}

.footerBottomDivWrapper .footerNav ul {
    display: flex;
    padding-left: 0;
    margin: 0;
    list-style: none;
    justify-content: end;
}

.footerBottomDivWrapper .footerNav ul li {
    padding: 0 10px;
}

.footerBottomDivWrapper .footerNav ul li a {
    color: #bbb;
}

.copyrightDiv span{
    color: #fff;
}

.copyrightDiv span a {
    display: none;
    color: #fff;
}

.wrapper404 {
    background: #000;
    padding: 250px 0 150px;
}

.wrapper404 h1{
    font-size: 100px;
}

.wrapper404 h2{
    color: #fff;
}

.wrapper404 p{
    color: #999;
}

.wrapper404 p a{
    color: #EE4E34;
}

.wrapper404 .navStoreIcons{
    display: flex;
    justify-content: center;
}

#exampleModalLong .modal-content {
    background-color: #fff;
}

#exampleModalLong .modal-header .close {
    color: #000;
    font-size: 35px;
}

#exampleModalLong p {
    color: #8e8e8e;
}

#exampleModalLong .modal-body .mainHeading {
    text-align: left;
    margin-bottom: 20px !important;
}

#exampleModalLong .mainHeading {
    margin-bottom: 0;
}

#exampleModalLong .modal-body .mainHeading h2 {
    font-size: 30px;
}

#exampleModalLong .modal-header{
    border-bottom: 2px solid #EE4E34;
}

#exampleModalLong .modal-header .mainHeading h2{
    font-size: 25px;
}

#exampleModalLong .modal-footer{
    border-top: 2px solid #EE4E34;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@media screen and (max-width:576px) {
    .downloadOurAppWrapper .mainHeading h2{
        font-size: 30px;
    }
    .innerPagesHeroSection h1 {
        font-size: 30px;
    }
}

@media screen and (max-width:768px) {
    .topBar {
        flex-direction: column;
    }
    .topBar .leftDiv, .midDiv, .rightDiv {
        padding: 20px 0;
    }
    .heroSectionWrapper {
        padding: 330px 0 100px;
    }
    .footerNav {
        display: none;
    }

    .testimCard p {
        font-size: 12px;
    }

    .footerLeftDiv {
        display: none !important;
    }

    .copyrightDiv span {
        font-size: 13px;
    }

    .copyrightDiv span a {
        color: #EE4E34;
        display: inline-block;
    }

    .aboutHero {
        padding-top: 80px;
    }

    .aboutContent {
        padding: 20px 0 100px;
    }
}

@media screen and (max-width:992px) {
    .heroSectionInner .heroContent h1{
        width: 100%;
    }
    /* .headerSection .navbar .container{
        justify-content: center;
    } */
    .headerSection .navbar{
        border: none;
        background: rgba(0 0 0 / 90%);
        position: absolute;
        width: 100%;
        top: 0;
        padding: 10px 20px;
    }
    .headerSection .topBarWrapper{
        position: relative;
        top: 55px;
    }
    .headerSection .navCallDiv {
        position: absolute;
        top: 17px;
        right: 80px;
        padding: 2px 15px;
        border: 1px solid #00000024;
        border-radius: 5px;
    }

    .headerSection .navCallDiv a span {
        display: none;
    }

    .headerSection .navCallDiv a i {
        font-size: 22px;
        color: #000000a3;
    }

    .heroSectionInner .heroContent h2 {
        display: none;
    }

    .testimWrapper h2 {
        font-size: 30px;
    }

    .testimCard {
        margin: 40px 0 40px;
        box-shadow: none;
    }

    .carousel-control-prev {
        left: 0;
    }

    .carousel-control-next {
        right: auto;
        left: 60px;
    }

    .FooterstoreIconsDiv {
        align-items: start;
    }

    .homePageAboutImg {
        height: 300px;
        margin-bottom: 40px;
    }
    .homePageAboutWrapper .row{
        flex-direction: column-reverse;
    }
    .headerSection .navbar .navbar-nav{
        margin-top: 25px;
    }
    .innerPagesHeroSection h2{
        margin: 4px 0 20px;
    }
    .innerPagesHeroSection h2 i::before {
        transform: rotate(45deg);
    }
    .downloadOurAppWrapper .row{
        flex-direction: column-reverse;
    }
    .innerPagesHeroSection .navStoreIcons .storeDiv{
        height: 40px;
    }
}


@media screen and (min-width:768px) {

    .fleetWrapper,
    .testimWrapper {
        border-radius: 10px;
    }
    .stationWrapper .cusCards .row{
        flex-direction: row-reverse;
    }
    .stationWrapper .cusCards .cusCardsImg{
        margin-left: 0;
        margin-right: auto;
    }
    .stationWrapper .cusCards .cusCardContent{
        text-align: right;
    }
    .stationWrapper .cusCards .cusCardContent p{
        margin-left: auto;
    }
}

@media screen and (min-width:992px) {
    .heroSectionWrapper .navStoreIcons {
        display: none;
    }

    header .navStoreIcons {
        display: flex;
    }
    .innerPagesHeroSection h1 {
        /* width: 80%; */
        font-size: 50px;
    }
    .airportWrapper .cusCards p,
.stationWrapper .cusCards p{
    width: 50%;
}
    /* .stationWrapper .row{
        flex-direction: row-reverse;
    } */
}

@media (min-width: 576px) {
    #exampleModalLong .modal-dialog {
        max-width: 1000px;
        margin: 1.75rem auto;
    }
    .downloadOurAppWrapper img{
        width: 500px;
        height: 500px;
    }
}

.hero-inner{
    display: flex;
    justify-content: center;
    align-items: center;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 0px;
    margin-left: 0px;
}

#moreModalitem .modal-content{
    margin-top:100px !important;
}