html {
    scroll-behavior: smooth;
}

body.open{
    overflow: hidden;
}

.headerSectionWrapper {
    overflow-x: clip;
}

.headerSectionInner {
    position: relative;
}

.headerSectionWrapper .topBar {
    padding: 13px 0 0;
    background: #222;
    position: relative;
    height: 98px;
    z-index: 1;
}

.headerSectionWrapper .topBar .navContactDiv i{
    color: #ff8201;
}

.headerSectionWrapper .topBar .navSocialDiv a {
    padding: 0 10px;
    font-size: 14px;
    color: #fff;
    transition: all 0.3s;
}

.headerSectionWrapper .navContactDiv {
    text-align: right;
}

.headerSectionWrapper .navContactDiv a {
    color: #fff;
    padding: 0 20px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.headerSectionWrapper .navContactDiv a:hover {
    color: #ff8201;
}

.headerSectionWrapper .headerCallDiv a{
    position: relative;
    color: #fff;
    background: #ff8201;
    padding: 12px;
    text-decoration: none;
}

.headerSectionWrapper .headerCallDiv a::before{
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    width: 57px;
    height: 100%;
    transform: skewX(45deg);
    background: #ff8201;
    z-index: -1;
}

.headerSectionWrapper .navbar .navbar-toggler {
    background: #ff8201;
    border: none;
}

.headerSectionWrapper .navbar .navbar-toggler i {
    font-size: 26px;
    color: #fff;
}

.headerSectionWrapper .navbar {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    padding: 10px 45px;
    margin: auto;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0 0 0 / 12%);
    height: 100px;
    width: 100%;
    max-width: 1200px;
    border-radius: 10px;
    transition: all 0.5s;
    z-index: 99;
}

.stickOnTop .headerSectionWrapper .navbar {
    position: fixed;
    top: 0;
    border-radius: 0;
    box-shadow: 0 0 20px rgba(0 0 0 / 10%);
    max-width: 100%;
    height: 75px;
}

.headerSectionWrapper .navbar .navbar-brand h2{
    margin-bottom: 0;
    font-weight: 800;
}

.headerSectionWrapper .navbar .navbar-brand span{
    color: #ff8201;
}

.headerSectionWrapper .navbar .navbar-brand img{
    width: 165px;
    height: 51px;
}

.headerSectionWrapper .bookTaxiWrapper{
    display: flex;
    align-items: center;
}

.headerSectionWrapper .navbar .cusToggle {
    margin-left: 30px;
}

.headerSectionWrapper .navbar .cusToggle a {
    color: #111;
}

.headerSectionWrapper .navbar .cusToggle a i {
    font-size: 30px;
}

.headerSectionWrapper .navbar .nav-link {
    color: #111;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 19px;
    transition: all 0.3s;
}

.headerSectionWrapper .navbar .nav-link#book_btn{
    background: #ff8201;
    color: #000;
    border-radius: 10px;
    padding: 20px 25px;
    text-transform: uppercase;
    transition: all 0.5s;
}

.headerSectionWrapper .navbar .nav-link#book_btn:hover{
    background-color: #2a2a2a;
    color: #ff8201;
}

.headerSectionWrapper .navbar .nav-link:hover {
    color: #ff8201;
}

.headerSectionWrapper .navbar .nav-link.active {
    color: #ff8201;
}

.sidebar-popup {
    position: fixed;
    top: 0;
    left: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100vh;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}

.sidebar-popup.open {
    visibility: visible;
    opacity: 1;
}

.sidebar-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 450px;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    padding: 40px;
    transition: all 0.5s;
    z-index: 9999;
}

.sidebar-wrapper.open {
    right: 0;
    visibility: visible;
    opacity: 1;
}

.sidebar-content {
    position: relative;
    overflow-y: auto;
    height: calc(100vh - 75px);
}

.close-sidebar-popup {
    position: absolute;
    top: 1px;
    right: 1px;
    width: 38px;
    height: 38px;
    line-height: 36px;
    border-radius: 50px;
    text-align: center;
    border: none;
    font-size: 20px;
    background: #111;
    color: #fff;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    transition: all 0.5s;
}

.close-sidebar-popup:hover {
    background: #ff8201;
}

.sidebar-logo img {
    width: 220px;
}

.sidebar-about {
    margin-top: 40px;
}

.sidebar-about p{
    color: #666;
}

.sidebar-about h4 {
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sidebar-contact {
    margin-top: 20px;
}

.sidebar-contact h6{
    font-weight: 700;
}

.sidebar-contact h4 {
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.sidebar-contact ul {
    padding: 0;
    margin: 0;
}

.sidebar-contact li {
    margin: 10px 0;
    list-style: none;
}

.sidebar-contact li a {
    color: #000;
}

.sidebar-contact li i {
    margin-right: 5px;
    color: #ff8201;
}

.sidebar-contact li a:hover {
    color: #ff8201;
}

.sidebar-social {
    margin-top: 25px;
}

.sidebar-social h4 {
    margin-bottom: 20px;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
}

.sidebar-social a {
    width: 40px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    text-align: center;
    border-radius: 50px;
    margin-right: 8px;
    background: #111;
    color: #fff;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.sidebar-social a:hover {
    background: #ff8201;
}

.heroSectionWrapper {
    background: linear-gradient(rgba(0 0 0 / 50%), rgba(0 0 0 / 50%)), url(../contents/images/home-page-banner.webp) center center no-repeat;
    background-size: cover;
    position: relative;
    padding: 130px 0 150px ;
}

.heroSectionWrapper .bannerContent{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 1;
}

.heroSectionWrapper .heroImg{
    background: url(../contents/images/aboutImg2.webp) center center no-repeat;
    background-size: contain;
    width: 100%;
    height: 250px;
    position: relative;
}

.heroSectionWrapper .heroImg:before{
    content: "";
    position: absolute;
    top: -40px;
    right: 30px;
    width: 320px;
    height: 320px;
    transform: rotate(45deg);
    border-radius: 10px;
    background: linear-gradient(135deg, #ff8201,#0000007c);
    z-index: -1;
}

.appsLinks .storeDiv{
    color: #000 !important;
}

.appsLinks a{
    padding: 0;
}

.customBtn:hover .storeDiv{
    color: #ff8201 !important;
}

.heroSectionWrapper h1 {
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
}

.heroSectionWrapper h1 span {
    color: #ff8201;
}

.heroSectionWrapper p {
    color: #fff;
    font-size: 16px;
}

.heroSectionWrapper .cus-slider{
    background-size: cover !important;
    height: 550px;
    width: 100%;
    position: relative;
}

.heroSectionWrapper .cus-slider.slide1{
    background: linear-gradient(rgba(0 0 0 / 75%),rgba(0 0 0 / 75%)), url(../contents/images/home-page-banner.webp) center center no-repeat;
}
.heroSectionWrapper .cus-slider.slide2{
    background: linear-gradient(rgba(0 0 0 / 75%),rgba(0 0 0 / 75%)), url(../contents/images/home-page-banner-1.webp) center center no-repeat;
}
.heroSectionWrapper .cus-slider.slide3{
    background: linear-gradient(rgba(0 0 0 / 75%),rgba(0 0 0 / 75%)), url(../contents/images/home-page-banner-2.webp) center center no-repeat;
}

.appsLinks {
    display: flex;
    justify-content: center;
}

.appsLinks a {
    text-decoration: none;
}

.appsLinks .storeDiv {
    display: flex;
    align-items: center;
    color: #000;
    font-weight: 800;
    background: #111;
    width: 125px;
    justify-content: space-around;
    padding: 2px;
    border: 2px solid #111;
    border-radius: 5px;
    transition: all 0.3s;
}

.appsLinks .storeDiv.apple{
    color: #ff8201 !important;
}

.appsLinks .storeDiv.google {
    margin-left: 20px;
    color: #fff;
    background: #ff8201;
    border-color: #ff8201;
}

.appsLinks .storeDiv span,
.appsLinks .storeDiv h3 {
    font-size: 8px;
}

.appsLinks .storeDiv .textDiv {
    margin-left: -22px;
}

/* .appsLinks .storeDiv:hover {
    background: transparent;
    color: #fff !important;
    border-color: #ff8201;
}

.appsLinks .storeDiv:hover.google {
    background: transparent;
    color: #fff !important;
} */

.homePageAboutWrapper {
    padding: 100px 0;
}

.mainHeading {
    position: relative;
}

.mainHeading h2 {
    color: #111;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 30px;
}

.mainHeading h3{
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    color: #ff8201;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.homePageAboutWrapper p {
    margin-bottom: 35px;
    color: #777;
}

.homePageAboutWrapper .homePageAboutServices img{
    background: #ff8201;
    border-radius: 10px;
    width: 70px;
    height: 70px;
    padding: 15px;
}

.homePageAboutWrapper .homePageAboutServices .corporateAccounts{
    background: #222;
}

.homePageAboutWrapper .homePageAboutServices h2{
    font-size: 20px;
    font-weight: 700;
}

.homePageAboutWrapper .homePageAboutServices p{
    margin-bottom: 0;
    font-size: 14px;
}

.homePageAboutWrapper a{
    background-color: #222;
    color: #ff8201;
    padding: 12px 35px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.homePageAboutWrapper a:hover{
    background-color: #ff8201;
    color: #222;
}

/* .homePageAboutImg {
    background: url(../contents/images/aboutImg.webp) center center no-repeat;
    background-size: contain;
    width: 100%;
    height: 600px;
} */

.homePageAboutImg{
    background: url(../contents/images/aboutImg.webp) center center no-repeat;
    background-size: cover;
    height: 650px;
    margin: 0 30px;
    border-radius: 20px;
}

.airportWrapper {
    padding: 100px 0 ;
}

.airportWrapper .mainHeading,
.fleetWrapper .mainHeading,
.stationWrapper .mainHeading{
    text-align: center;
}

.airportWrapper .mainHeading h2,
.fleetWrapper .mainHeading h2,
.stationWrapper .mainHeading h2{
    width: 100%;
    text-transform: capitalize;
    font-size: 45px;
}

.fleetWrapper .mainHeading h2,
.stationWrapper .mainHeading h2{
    margin-bottom: 50px;
}

.airportWrapper .cusCards {
    text-align: left;
    margin: 20px 0px;
    position: relative;
    transition: all 0.8s ease 0s;
}

.airportWrapper .cusCards .cusCardsImg {
    background-size: cover !important;
    height: 200px;
    border-radius: 20px;
    position: relative;
}

.airportWrapper .cusCards .cusCardsImg1{
    background: url(../contents/images/airport-heathrow.webp) center center no-repeat;
}
.airportWrapper .cusCards .cusCardsImg3{
    background: url(../contents/images/airport-luton.webp) center center no-repeat;
}
.airportWrapper .cusCards .cusCardsImg4{
    background: url(../contents/images/airport-stansted.webp) center center no-repeat;
}
.airportWrapper .cusCards .cusCardsImg5{
    background: url(../contents/images/airport-london-city.webp) center center no-repeat;
}

.airportWrapper .cusCards a{
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #ff8201;
    color: #222;
    border-radius: 10px;
    padding: 10px 10px;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
    transition: all 0.3s;
}

.airportWrapper .cusCards h2 {
    margin: 20px 0px 10px;
    padding-bottom: 8px;
    position: relative;
    font-size: 22px;
    font-weight: 700;
    color: rgb(34, 34, 34);
    text-transform: capitalize;
}

.airportWrapper .cusCards p {
    font-size: 15px;
    font-weight: 500;
    color: #757F95;
    overflow: hidden;
    text-overflow: ellipsis;
    /*display: -webkit-box;*/
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.airportWrapper .cusCards a:hover{
    background-color: #222;
    color: #ff8201;
}

.testimWrapper {
    background: linear-gradient(rgb(202 131 59),rgba(203, 146, 90, 0.198), rgba(0 0 0 / 80%)), url(../contents/images/testim-banner.webp) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0 0;
    text-align: center;
}

.testimWrapper .row{
    transform: translateY(80px);
}

.testimWrapper .mainHeading h2 {
    color: #fff;
    width: 100%;
    /*margin-bottom: -45px;*/
}

.testimWrapper .testimContent p {
    /* background: url(../contents/images/left-quote.webp) left center no-repeat;
    background-size: 50px;
    padding-left: 100px; */
    color: #999;
    width: 800px;
    font-size: 15px;
}

.testimWrapper .testimCard {
    position: relative;
    text-align: left;
    background: #000000;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 35px 15px;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* 
.testimWrapper .testimCard:before{
    content: "";
    position: absolute;
    top: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: url(../contents/images/quotation.webp) center center no-repeat;
    background-size: 65px;
} */

.testimWrapper .testimCard .customerDetails {
    margin-top: 30px;
}

.testimWrapper .testimCard .testimImg {
    text-align: center;
    margin-bottom: 16px;
}

.testimWrapper .testimCard .testimImg img {
    /* border-radius: 50%; */
    width: 85px;
    height: 85px;
}

.testimWrapper .testimCard h3 {
    color: #ff8201;
    font-size: 22px;
    margin-bottom: 0;
    margin-top: 20px;
}

.testimWrapper .testimCard span {
    color: #ff8201;
    font-size: 12px;
    font-weight: 700;
}

.testimWrapper .testimCard p{
    margin: 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    color: #fff;
    font-size: 13px !important;
}

.testimWrapper .testimCard i{
    color: #FFB300;
    font-size: 18px;
}

.stationWrapper {
    padding: 100px 0 0;
}

.stationWrapper .cusCards {
    position: relative;
    background-size: 70px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin: 30px 0;
    padding: 30px;
    transition: all 0.5s;
}

.stationWrapper .cusCards.lastCard{
    text-align: center;
}

.stationWrapper .cusCards.lastCard p{
    width: 65%;
    margin: 25px auto 20px;
}

.stationWrapper .cusCards.cusCard1{
    background-color: #222;
}

.stationWrapper .cusCards.cusCard1 .stationImg{
    background-color: #ff8201;
}

.stationWrapper .cusCards.cusCard1 .stationImg img{
    filter: brightness(0);
}

.stationWrapper .cusCards.cusCard1 h2{
    color: #fff;
}

.stationWrapper .cusCards.cusCard1 p{
    color: #e4e4e4;
}

.stationWrapper .cusCards .stationImg{
    background: #222;
    display: inline-block;
    border-radius: 10px;
    transition: all 0.5s;
}

.stationWrapper .cusCards img{
    width: 70px;
    height: 70px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.5s;
}

.stationWrapper .cusCards h2{
    margin: 20px 0 10px;
    position: relative;
    font-size: 22px;
    font-weight: 700;
    color: #222;
}

.stationWrapper .cusCards p{
    color: #828282;
    margin: 25px 0 20px;
}

.stationWrapper .cusCards a{
    font-size: 16px;
    color: #ff8201;
    text-decoration: none;
    transition: all 0.8s;
}

.stationWrapper .cusCards:hover{
    background-color: #222;
}

.stationWrapper .cusCards:hover .stationImg{
    background-color: #ff8201;
}

.stationWrapper .cusCards:hover .stationImg img{
    filter: brightness(0);
}

.stationWrapper .cusCards:hover h2{
    color: #fff;
}

.stationWrapper .cusCards:hover p{
    color: #e4e4e4;
}

.stationWrapper .cusCards.cusCard1:hover{
    background-color: #fff;
}

.stationWrapper .cusCards.cusCard1:hover .stationImg{
    background-color: #222;
}

.stationWrapper .cusCards.cusCard1:hover .stationImg img{
    filter: brightness(1);
}

.stationWrapper .cusCards.cusCard1:hover h2{
    color: #222;
}

.stationWrapper .cusCards.cusCard1:hover p{
    color: #828282;
}

.fleetWrapper {
    padding: 120px 0 100px;
}

.fleetWrapper .cusCards {
    margin: 50px 0;
    box-shadow: 0 0 20px rgba(0 0 0 / 10%);
    border-radius: 20px;
}

.fleetWrapper .cusCards.cusCard1{
    background-color: #222;
}

.fleetWrapper .cusCards.cusCard1 h2{
    color: #fff;
}

.fleetWrapper .cusCards.cusCard1 ul li{
    color: #e4e4e4;
}

.fleetWrapper .cusCards.cusCard1 ul li span{
    color: #ff8201;
}

.fleetWrapper .cusCardsImgWrapper {
    transform: translate(-35px, -50px);
}

.fleetWrapper .cusCardsImg {
    background-size: 160px !important;
    height: 85px;
    transition: all 0.5s;


    transition: transform 2s;
}
.fleetWrapper .cusCardsImg:hover{
    transform: translateX(100px) scale(1.2);
}

.fleetWrapper .cusCardsImg1 {
    background: url(../contents/images/saloon.webp) center center no-repeat;
}

.fleetWrapper .cusCardsImg2 {
    background: url(../contents/images/estate.webp) center center no-repeat;
    /* transform: scaleX(-1); */
}

.fleetWrapper .cusCardsImg3 {
    background: url(../contents/images/executive.webp) center center no-repeat;
}

.fleetWrapper .cusCardsImg4 {
    background: url(../contents/images/mpv.webp) center center no-repeat;
    /* transform: scaleX(-1); */
}

.fleetWrapper .cusCards .fleetDetails{
    padding: 0 20px 20px;
    margin-top: -48px;
}

.fleetWrapper .cusCards h2 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    padding: 22px 0 18px;
    position: relative;
}

.fleetWrapper .cusCards ul {
    padding: 0;
    margin: 0;
}

.fleetWrapper .cusCards ul li {
    list-style: none;
    color: #222;
    font-weight: 500;
    font-size: 14px;
    margin: 25px 0;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-left: 40px;
    padding-top: 4px;
}

.fleetWrapper .cusCards ul li:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #222 center center no-repeat;
    background-size: 18px !important;
    border-radius: 5px;
    width: 30px;
    height: 30px;
}

.fleetWrapper .cusCards.cusCard1 ul li:before{
    background-color: #fff;
}

.fleetWrapper .cusCards ul li:nth-child(1):before{
    background-image: url(../contents/images/passenger.webp);
}

.fleetWrapper .cusCards ul li:nth-child(2):before{
    background-image: url(../contents/images/briefcase.webp);
}

.fleetWrapper .cusCards ul li:nth-child(3):before{
    background-image: url(../contents/images/travel-luggage.webp);
}

.fleetWrapper .cusCards ul li span {
    color: #222;
}

.aboutHeroWrapper {
    padding: 130px 0 70px;
    text-align: center;
    background: linear-gradient(rgba(0 0 0 / 80%), rgba(0 0 0 / 80%)), url(../contents/images/aboutBanner.webp) center center no-repeat;
    background-size: cover;
}

.aboutHeroWrapper h1 {
    color: #fff;
    font-weight: 800;
    font-size: 32px;
    text-transform: uppercase;
    position: relative;
}

.aboutHeroWrapper .breadCrumbWrapper {
    display: inline-block;
    margin-top: 10px;
}

.aboutHeroWrapper ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}

.aboutHeroWrapper ul li a {
    color: #fff;
    background: url(../contents/images/chevron-right.svg) 47px 4px no-repeat;
    background-size: 10px;
    padding-right: 25px;
    text-decoration: none;
    transition: all 0.3s;
}

.aboutHeroWrapper ul li a:hover {
    color: #ff8201;
}

.aboutHeroWrapper ul li {
    color: #ff8201;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.innerPageHeroWrapper {
    background-size: cover !important;
    padding: 130px 0 140px;
}

.heathrowBanner {
    background: linear-gradient(rgba(0 0 0 / 50%), rgba(0 0 0 / 50%)), url(../contents/images/airport-heathrow.webp) center center no-repeat;
}

.gatwickBanner {
    background: linear-gradient(rgba(0 0 0 / 50%), rgba(0 0 0 / 50%)), url(../contents/images/airport-gatwick.webp) center center no-repeat;
}

.lutonBanner {
    background: linear-gradient(rgba(0 0 0 / 50%), rgba(0 0 0 / 50%)), url(../contents/images/airport-luton.webp) center center no-repeat;
}

.stanstedBanner {
    background: linear-gradient(rgba(0 0 0 / 50%), rgba(0 0 0 / 50%)), url(../contents/images/airport-stansted.webp) center center no-repeat;
}

.londonCityBanner {
    background: linear-gradient(rgba(0 0 0 / 50%), rgba(0 0 0 / 50%)), url(../contents/images/airport-london-city.webp) center center no-repeat;
}


.kingCrossBanner {
    background: linear-gradient(rgba(0 0 0 / 50%), rgba(0 0 0 / 50%)), url(../contents/images/station-king-cross.webp) center center no-repeat;
}

.waterlooBanner {
    background: linear-gradient(rgba(0 0 0 / 50%), rgba(0 0 0 / 50%)), url(../contents/images/station-waterloo.webp) center center no-repeat;
}

.eustonBanner {
    background: linear-gradient(rgba(0 0 0 / 50%), rgba(0 0 0 / 50%)), url(../contents/images/station-euston.webp) center center no-repeat;
}

.londonBridgeBanner {
    background: linear-gradient(rgba(0 0 0 / 50%), rgba(0 0 0 / 50%)), url(../contents/images/station-london-bridge.webp) center center no-repeat;
}

.victoriaBanner {
    background: linear-gradient(rgba(0 0 0 / 50%), rgba(0 0 0 / 50%)), url(../contents/images/station-victoria.webp) center center no-repeat;
}

.charingCrossBanner {
    background: linear-gradient(rgba(0 0 0 / 50%), rgba(0 0 0 / 50%)), url(../contents/images/station-charing-cross.webp) center center no-repeat;
}

.paddingtonBanner {
    background: linear-gradient(rgba(0 0 0 / 50%), rgba(0 0 0 / 50%)), url(../contents/images/station-paddington.webp) center center no-repeat;
}

.innerPageHeroWrapper h1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 700;
}

.innerPageHeroWrapper h1 span {
    color: #ff8201;
}

.innerPageHeroWrapper .appsLinks {
    margin: 25px 0 30px;
}

.innerPageHeroWrapper .bannerForm{
    transform: translateY(130px);
    margin-top: -130px !important;
}

.innerPagesContentWrapper {
    padding: 100px 0;
}

.innerPagesContentWrapper p {
    color: #888;
    font-weight: 500;
    font-size: 14px;
}

.innerPagesContentWrapper h2 {
    font-size: 20px;
    font-weight: 700;
    color: #444;
    margin: 35px 0 15px;
    text-transform: uppercase;
}

.innerPagesContentWrapper h2 span {
    color: #ff8201;
}

.innerPagesContentWrapper h3 {
    font-weight: 700;
    color: #444;
    font-size: 20px;
    margin-top: 35px;
}

.contactContent .customInputs {
    margin: 0;
    background: #222;
    padding: 22px 15px;
}

.contactContent .customInputs::placeholder {
    color: #cecece;
}

.contactContent .customBtn {
    background: #ff8201;
    color: #fff;
    padding: 8px 20px;
}

.contactContent i {
    color: #ff8201;
    margin-right: 10px;
}

.contactContent a {
    color: #888;
}

.footerSectionwrapper{
    /* background: #111; */
    background: linear-gradient(rgba(0 0 0 / 90%),rgba(0 0 0 / 90%)), url(../contents/images/aboutBanner.webp) center center no-repeat;
    background-size: cover;
    position: relative;
    overflow-x: clip;
    z-index: 1;
}

.footerSectionwrapper .footerSectionInner{
    padding: 120px 0 50px;
}

.footerInnerDiv h3 {
    color: #fff;
    font-size: 25px;
    position: relative;
    margin-bottom: 35px;
}

.footerInnerDiv h3:before{
    content: "";
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #ff8201;
}

.footerInnerDiv h3 span{
    color: #ff8201;
}

.footerInnerDiv p{
    color: #fff;
}

.footerSectionwrapper .socialDiv a img{
    width: 35px;
    height: 35px;
    border: 2px solid #ff8201;
    border-radius: 50%;
    padding: 10px;
    margin-right: 12px;
}

.footerInnerDiv ul {
    padding: 0;
    list-style: none;
}
.footerInnerDiv ul li,
.footerInnerDiv ul li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.5s;
}

.footerInnerDiv ul li a{
    padding: 5px 0;
    display: inline-block;
}

.footerInnerDiv ul li:hover{
    color: #ff8201;
    margin-left: 10px;
}

.footerInnerDiv ul li:hover a{
    color: #ff8201;
}

.footerInnerDiv ul li i {
    color: #ff8201;
    margin-right: 10px;
}

.footerSectionwrapper .copyrightSection{
    position: relative;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid #ff8201;
    font-weight: 700;
    overflow-x: clip;
    z-index: 1;
}

.footerSectionwrapper .copyrightSection .copyrightDiv{
    text-align: left;
}

.footerSectionwrapper .copyrightSection .logoDiv {
    text-align: center;
}

.footerSectionwrapper .copyrightSection .logoDiv img{
    width: 165px;
    height: 51px;
}

.footerSectionwrapper .copyrightSection .usefulLinks{
    text-align: right;
}

.footerSectionwrapper .copyrightSection .logoDiv h2{
    color: #fff;
    font-weight: 800;
    margin-bottom: 0;
}

.footerSectionwrapper .copyrightSection .logoDiv h2 span{
    color: #ff8201;
}

.footerSectionwrapper .copyrightSection p,
.footerSectionwrapper .copyrightSection a{
    color: #fff;
    text-decoration: none;
}

.footerSectionwrapper .copyrightSection .usefulLinks a{
    padding-left: 30px;
}

.footerSectionwrapper .copyrightSection a:hover{
    color: #ff8201;
}

.wrapper404 {
    padding: 150px 0;
    text-align: center;
}

.wrapper404 h1 {
    font-size: 100px;
    color: #ff8201;
}

.wrapper404 h2 {
    color: #444;
}

.wrapper404 p {
    color: #999;
}

.wrapper404 p a {
    color: #ff8201;
}

.wrapper404 .appsLinks {
    justify-content: center;
}

.wrapper404 .appsLinks a {
    text-align: left;
}

.wrapper404 .appsLinks .storeDiv:hover {
    color: #ff8201 !important;
}

#exampleModalLong .modal-header .close {
    color: #fff;
    font-size: 35px;
}

#exampleModalLong p {
    color: #d4d4d4;
    font-size: 14px;
}

#exampleModalLong .modal-body .mainHeading {
    text-align: left;
    margin-bottom: 20px !important;
}

#exampleModalLong .mainHeading {
    margin-bottom: 0;
}

#exampleModalLong .mainHeading h2 {
    width: 100%;
    color: #fff;
}

#exampleModalLong .mainHeading h2 span {
    color: #ff8201;
}

#exampleModalLong .modal-body .mainHeading h2 {
    font-size: 20px;
}

#exampleModalLong .customBtn {
    background: #ff8201;
    color: #fff;
    border: 1px solid #ff8201;
    padding: 10px 30px;
    transition: all 0.3s;
}

#exampleModalLong .customBtn:hover {
    background-color: transparent;
    color: #ff8201;
}

#exampleModalLong h3 {
    font-size: 16px;
    font-weight: 700;
    color: #ff8201;
}

#exampleModalLong ul li {
    color: #d4d4d4;
}

.zoom_in{
    animation: zoom_in 1s ease-in-out;
}

.innerPageHeroWrapper .bannerForm.zoom_in{
    animation: zoom_in_1 1s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes zoom_in {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes zoom_in_1 {
    0% {
        transform: translateY(130px) scale(1);
    }
    50% {
        transform: translateY(130px) scale(1.02);
    }
    100% {
        transform: translateY(130px) scale(1);
    }
}

@media (min-width: 576px) {
    #exampleModalLong .modal-dialog {
        max-width: 1000px;
        margin: 1.75rem auto;
    }
}


@media screen and (max-width: 576px) {
    .headerSectionWrapper {
        height: 120px;
    }

    .navSocialDiv,
    .navContactDiv {
        text-align: center !important;
        padding: 5px 0;
    }

    .headerSectionWrapper .navContactDiv a {
        padding: 0 8px;
    }

    .headerSectionWrapper .headerMidWrapper{
        display: none;
    }

    .headerSectionWrapper .navbar {
        /* top: 90px; */
        padding: 10px 15px;
        border-top: 1px solid #ff8201;
    }

    .headerSectionWrapper .navbar .navbar-brand img{
        width: 120px;
        height: 37px;
    }

    .headerSectionWrapper .bookTaxiWrapper{
        display: none;
    }
    
    .heroSectionWrapper h1{
        font-size: 25px;
    }

    .heroSectionWrapper p{
        width: 100%;
    }

    .heroSectionWrapper .formWrapper {
        padding: 0;
    }

    .mainHeading h2 {
        width: 100%;
    }

    .homePageAboutImgWrapper{
        margin-bottom: 40px;
    }

    .homePageAboutImg1, .homePageAboutImg2{
        height: 200px;
    }

    .fleetWrapper .mainHeading h2, .stationWrapper .mainHeading h2{
        margin-bottom: 0;
        font-size: 25px;
    }

    .airportWrapper .mainHeading h2{
        font-size: 25px;
    }

    .cusPagination {
        display: none;
    }

    .airportWrapper .cusCards .airportIcon{
        width: 60px;
        height: 60px;
        top: 64px;
        right: 30px;
        background-size: 35px !important;
    }

    .downloadOurAppWrapper .downloadOurAppInner{
        padding: 50px 20px;
    }

    .downloadOurAppWrapper .mainHeading h2{
        font-size: 22px;
    }

    .footerSectionwrapper .copyrightSection:before{
        right: -65px;
    }
}

@media screen and (max-width:768px) {

    .headerSectionWrapper .navContactDiv a{
        padding: 0 5px;
    }

    .homePageAboutImg {
        height: 350px !important;
        width: 100%;
    }

    .stationWrapper .stationImg {
        margin-top: 60px;
    }

    .stationWrapper .stationImg::before {
        display: none;
    }

    .stationWrapper .cusCards h2 {
        margin-top: 20px;
    }

    .stationWrapper .cusCards a {
        bottom: -55px;
    }
    .stationWrapper .cusCards.lastCard{
        text-align: left;
    }
    
    .stationWrapper .cusCards.lastCard p{
        width: 100%;
    }
    .fleetWrapper .cusCards.cusCard1{
        margin-top: 80px;
    }

    .homePageAboutWrapper .homePageAboutServices{
        display: none;
    }
}


@media screen and (max-width:992px) {
    .stickOnTop .headerSectionWrapper .navbar {
        height: auto;
    }

    .heroSectionWrapper .appsLinks{
        margin-bottom: 20px;
    }

    .homePageAboutImg {
        height: 500px;
    }

    .homePageAboutImg{
        margin: 0 0 30px;
    }

    .mainHeading h2 {
        margin-bottom: 8px;
    }

    .mainHeading h3 {
        position: relative;
        left: 0;
        writing-mode: horizontal-tb;
        margin-bottom: 25px;
    }

    .homePageAboutImg::before,
    .homePageAboutImg::after {
        display: none;
    }

    .downloadOurAppWrapper .downloadOurAppInner .downloadImg{
        display: none;
    }

    .footerWrapper .footerNav {
        justify-content: center;
        padding: 15px 0;
    }

    .footerWrapper .copyrightDiv {
        text-align: center;
        padding: 15px 0;
    }
    .heroSectionWrapper .heroImg{
        display: none;
    }

    .headerSectionWrapper .navbar{
        height: auto;
    }
    #book_btn{
        display: none;
    }

    .navbar-toggler{
        margin-left: auto;
    }
    .heroSectionWrapper{
        padding: 100px 0 85px;
    }
    .footerSectionwrapper .copyrightSection .copyrightDiv,
    .footerSectionwrapper .copyrightSection .logoDiv,
    .footerSectionwrapper .copyrightSection .usefulLinks{
        text-align: center;
        padding: 15px 0;
    }
}

@media screen and (min-width:576px) and (max-width:992px) {
    .stickOnTop .headerSectionWrapper .bookTaxiWrapper{
        display: none;
    }
}

@media (min-width: 1200px) {
    .container,.container-lg,.container-md,.container-sm,.container-xl {
        max-width: 1200px;
    }
}


.anchor_service:hover{
text-decoration: none !important;
}

@media screen and (max-width:768px) {
    .innerPageHeroWrapper {
        background-size: cover !important;
        padding: 44px 0 140px;
    }
    .innerPageHeroWrapper h1,.heroSectionWrapper h1,.heroSectionWrapper p{
        font-size: 14px !important;
    }
    .heroSectionWrapper {
        padding: 24px 0 85px;
    }
    .navSocialDiv{
        display: none !important;
    }
    .heroSectionWrapper,.heathrowBanner,.lutonBanner,.stanstedBanner,.londonCityBanner,.kingCrossBanner,.charingCrossBanner,.londonBridgeBanner,.eustonBanner,.victoriaBanner,.waterlooBanner,.paddingtonBanner{
        background: none !important;
        background-color: #000 !important;
    }
    .mainHeading h2{
        font-size: 22px !important;
    }

    .bannerContent .container{
        padding-right: 6px !important;
        padding-left: 6px !important;
    }

}


@media screen and (max-width:335px) {
    .navContactDiv{
        display: none !important;
    }
}


.dropdown-item:focus, .dropdown-item:hover {
    color: #fff;
    text-decoration: none;
    background-color: #ff8201;
}
/* 993 1199 */

@media screen and (max-width:1199px) and (min-width:993px) {
    .headerSectionWrapper .navbar .nav-link#book_btn,.headerSectionWrapper .navbar .nav-link{
padding:8px !important;
    }
}
