:root {
    --primary-color: #26af34;
    --secondary-color: #000;
    --tritary: #fff;
    --poppins: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

/* .about-sec ul li {
    color: var(--secondary-color);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1.8rem;
} */

body {
    font-size: 1rem;
    margin: 0;
    padding: 0;
    font-family: var(--poppins);
    position: relative;
}

.row {
    flex-wrap: wrap;
}




.taxi-img img {
    width: 550px;
    height: 270px;
}

.nav-link {
    font-size: 1.6rem;
    margin-right: 2rem;
    padding: 1rem 3rem !important;
    font-weight: 500;
    text-decoration: none !important;
    color: var(--primary-color);
    border-radius: 999px;
    position: relative;
    transition: all 0.5s;
    overflow: hidden;
    border: 1.5px solid var(--primary-color);
    z-index: 2;
}

.nav-link::before,
.luggage-btns::before,
.modal-content .modal-body .card-body .btn::before,
.bookbtn::before,
.custom-btn-2::before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    transform: scale(.1);
    opacity: 0;
    border-radius: 999px;
    z-index: -1;
}

.nav-link:hover::before,
.active::before,
.luggage-btns:hover::before,
.modal-content .modal-body .card-body .btn:hover::before,
.bookbtn:hover::before,
.custom-btn-2:hover::before {
    background: var(--primary-color);
    transform: scale(1.1);
    opacity: 1;
}
.about-sec .modal .custom-btn-2:hover::before {
    background-color: var(--tritary);
}
.active,
.nav-link:hover {
    color: var(--tritary) !important;
}

.banners {
    height: 60vh !important;
}

/* .topbar {
    padding: 2rem 1rem;
    background-color: #000;
}

.topbar img {
    width: 25px;
    height: 25px;
    margin-right: 1rem;
}

.topbar span {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.social-imgs {
    display: flex;
    justify-content: end;
    align-items: center;
}

.social-imgs img {
    margin-right: 2rem;
    transform: rotate(0);
    transition: .3s;
}

.social-imgs img:hover {
    transform: rotate(360deg);
} */

.header {
    background: transparent;
    position: absolute;
    width: 100%;
}

.logo {
    width: 180px;
    height: 39px;
}


.navbar {
    /* position: absolute; */
    padding: 2rem 4rem;
    background-color: transparent;
    z-index: 999;
    width: 100%;
    transition: .8s;
}

.navbar-collapse {
    justify-content: end;
}

a {
    text-decoration: none !important;
}

a:hover {
    color: white;
}

.navbar ul {
    margin: 0;
    padding: 0;
}


.call-btn img {
    margin-left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 1rem;
}

.hero-banner {
    background-image: url(./src/assets/images/banner.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: fixed;
    width: 100%;
    height: auto;
    z-index: 2;
}

.hero-banner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.80);
    z-index: -1;
}

.banner-content {
    padding: 110px 0 50px;
}

.subHd {
    font-size: 1.8rem;
    color: var(--tritary);
    letter-spacing: .5px;
}

.mainHd {
    color: var(--tritary);
    font-size: 5rem;
    font-weight: 500;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.hero-banner p {
    color: var(--tritary);
    font-size: 1.5rem;
}

.bookbtn {
    border-radius: 999px;
    position: relative;
    transition: all 0.5s;
    border: 1.5px solid var(--primary-color);
    z-index: 2;
    color: var(--tritary);
    padding: 1.4rem 2.6rem;
    font-size: 1.6rem;
    margin-right: 1.6rem;
    overflow: hidden;
}

.about-modal {
    margin-top: 8rem;
    position: relative;
}

.about-modal:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: var(--primary-color);
    z-index: -2;
    width: 63%;
}

.about-modal:hover .sonata-img {
    filter: grayscale(0);
}

.about-modal p {
    color: var(--secondary-color);
}

.sonata-img {
    background-image: url(src/assets/images/sonata_img2.jpg);
    background-position: center;
    background-size: cover;
    height: 600px;
    background-repeat: no-repeat;
    filter: grayscale(1);
    transition: all .5s;
}

.morebtn {
    border-color: var(--tritary);
}

.morebtn:hover::before {
    background-color: var(--tritary);
}

.morebtn:hover span {
    color: var(--primary-color) !important;
    transition: all .5s;
}

.morebtn img {
    width: 22px;
    height: 20px;
}

.cards-sec {
    padding: 5rem 0;
}

.service-sec {
    padding: 8rem 0;
}

.secHd {
    color: var(--secondary-color);
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.secHd span {
    color: var(--primary-color);
}

.sec-para {
    color: #777777;
    font-size: 1.6rem;
    font-weight: 400;
    margin: .5rem 0 5rem;
}

.service-box {
    border: 1px solid transparent;
    border-radius: 10px;
    text-align: center;
    padding: 2rem 1rem 3rem;
    margin-bottom: 30px;
    transition: 0.3s;
    position: relative;
    height: 360px;
}

.service-box:hover {
    transform: rotate(-2deg);
    border-color: var(--primary-color);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.service-box h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1em;
    margin-top: 10px;
    margin-bottom: 10px;
}

.service-box p {
    color: #999999;
    font-size: 1.6rem;
    font-weight: 400;
}

.service-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 2rem;
}

.service-img img {
    width: 40px;
    height: 40px;
}


.airport-sec {
    background-image: url(src/assets/images/car-banner.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    height: auto;
    position: relative;
    padding-bottom: 7rem;
}

.airport-sec::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000000bb;
}

.airport-sec .secHd {
    margin-top: 8rem;
    color: var(--tritary);
}

.airport-card {
    position: relative;
    z-index: 2;
}

.airoplane-card {
    position: relative;
    height: 260px;
    text-align: center;
    margin-bottom: 4rem;
    transition: all .8s;
    border-radius: 10px;
    padding-top: 2rem;
    background-color: var(--tritary);
}

.airoplane-card span {
    font-size: 10rem;
    color: var(--primary-color);
    font-weight: bold;
    top: 50%;
    transform: translateY(-50%);
    left: -33px;
    position: absolute;
    z-index: -1;
}

.airport-sec .col-lg-4:nth-child(4) .airport-card span {
    left: -44px;
}

.card-inner {
    padding: 3.5rem 3rem;
}

.card-inner h4 {
    font-weight: 500;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-inner h4:nth-child(2) {
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.airport-detail {
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 1rem;
    transition: all .8s ease;
}


.airport-detail p {
    color: #999999;
    font-size: 1.8rem;
    font-weight: 400;
}

.station-card {
    margin-top: 3rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    border-radius: 10px;
    height: 380px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.station-card::before {
    background-image: linear-gradient(to top, #000000c5, #000000a6), url(src/assets/images/station-paddington.webp);
    background-size: cover;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .5s;
}

.service-sec .col-lg-3:nth-child(2) .station-card::before {
    background-image: linear-gradient(to top, #000000c5, #000000a6), url(src/assets/images/Charing-Cross-bg.jpg);
}

.service-sec .col-lg-3:nth-child(3) .station-card::before {
    background-image: linear-gradient(to top, #000000c5, #000000a6), url(src/assets/images/king-cross-bg.jpg);
}

.service-sec .col-lg-3:nth-child(4) .station-card::before {
    background-image: linear-gradient(to top, #000000c5, #000000a6), url(src/assets/images/waterloo-bg.jpg);
}

.service-sec .col-lg-3:nth-child(5) .station-card::before {
    background-image: linear-gradient(to top, #000000c5, #000000a6), url(src/assets/images/euston-bg.jpg);
}

.service-sec .col-lg-3:nth-child(6) .station-card::before {
    background-image: linear-gradient(to top, #000000c5, #000000a6), url(src/assets/images/londonbridge-bg.jpg);
}

.service-sec .col-lg-3:nth-child(7) .station-card::before {
    background-image: linear-gradient(to top, #000000c5, #000000a6), url(src/assets/images/Victoria-Station.jpg);
}

.station-card:hover::before {
    transform: scale(1.1);
}

.station-inner {
    padding: 2rem .5rem;
    transition: all .8s;
}

.station-inner h2 {
    border-radius: 999px;
    font-size: 2rem;
    background-color: var(--primary-color);
    color: var(--tritary);
    padding: 1rem;
    margin-bottom: 2rem;
    width: 120px;
    text-align: center;
}

.station-inner h3 {
    font-size: 2.2rem;
    color: var(--tritary);
    margin-bottom: 2rem;
}

.station-inner p {
    color: var(--tritary);
    font-size: 1.6rem;
    margin-bottom: 3rem;
}

.station-inner a {
    position: absolute;
    top: 315px;
    background-color: var(--primary-color);
    margin-right: 0;
    padding: 1rem 3rem;
}

.station-inner a:hover {
    color: var(--primary-color);
}

.station-inner a:hover::before {
    background-color: var(--tritary);
}

.cars-sec {
    background-image: url(./src/assets/images/fleet-banner.jpg);
    height: auto;
}

.cars-sec h2 {
    margin: 5rem 0 7rem;
}

.cars-card {
    padding: 0 0 3rem 0;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-bottom: 4rem;
    transition: .8s;
    border-radius: 10px;
    transition: .5s;
    overflow: hidden;
}

.cars-img {
    overflow: hidden;
}

.suv-car {
    width: 100%;
    height: 170px;
    transition: .5s;
}

.model {
    padding: .3rem 0;
    margin-left: 10px;
    background-color: #26af34;
    display: block;
    width: 115px;
    font-size: 1.4rem;
    text-align: center;
    color: var(--tritary);
    border-radius: 999px;
}

.cars-card:hover {
    border-color: var(--primary-color);
}

.cars-card:hover .suv-car {
    transform: scale(1.1);
}

.cars-inner {
    padding: 2rem 0 0;
}

.cars-inner h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-left: 1rem;
}

.car-detail {
    list-style: none;
    padding: 0;
    font-size: 1.6rem;
    display: flex;
    justify-content: space-between;
}

.car-detail span {
    color: var(--primary-color);
}

.car-detail img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.cars-inner ul li {
    padding: 0 1rem;
    position: relative;
}

.card-inner ul .li-border::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 10px;
    background-color: var(--primary-color);
    top: 50%;
    right: -20px;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.cars-inner ul li:last-child {
    border: none;
}

.car-ratings {
    margin-top: 2rem;
    background-color: var(--primary-color);
    font-size: 1.4rem;
    color: var(--tritary);
    display: flex;
    justify-content: space-between;
    width: 70px;
    padding: .5rem 1rem;
    margin-left: auto;
    margin-right: 1rem;
    align-items: center;
    border-radius: 999px;
}

.car-ratings img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    margin-bottom: 3px;
}

.client-sec {
    padding: 7rem 0;
}

.client-sec .secHd {
    margin-bottom: 6rem;
}

.client-sec span {
    font-size: 1.8rem;
    color: var(--tritary);
}

.client-sec i {
    margin-top: 1rem;
    font-size: 1.3rem;
    color: var(--tritary);
}

.client-sec .rate {
    font-size: 2.5rem;
}

.client-card {
    background-color: var(--primary-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 440px;
    position: relative;
    transition: all .5s;
    background-image: url(src/assets/images/man-1.jpg);
    display: flex;
    align-items: end;
}
.client-card2 {
    background-image: url(src/assets/images/man2.jpg);
}
.client-card3 {
    background-image: url(src/assets/images/man-3.jpg);
}
.client-num {
    position: absolute;
    top: -36px;
    left: 3rem;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-inner-div {
    background-color: #26af3446;
    padding: 2rem 1rem 2rem 3rem;
    position: relative;
}

.client-card:hover {
    background-color: var(--secondary-color);
}

.client-card:hover .client-review,
.client-card:hover .client-name {
    color: var(--tritary);
    transition: all .5s;
}

.rate-div {
    display: flex;
}

.rate-div div {
    margin-right: 80px;
}

.ratings {
    margin: 1rem 0 2rem;
}

.star-imgs {
    display: flex;
}

.star-imgs img {
    margin-right: .3rem;
    width: 50px;
    height: 50px;
}

.client-name-div {
    background-color: var(--primary-color);
    top: -20px;
    position: absolute;
    padding: 1rem 2rem;
    border-radius: 999px;
}

.client-name {
    text-align: center;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--tritary);
    font-family: 'Playfair Display', serif;

}

.client-review {
    margin-top: 2rem;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--tritary);
}

.footer {
    background: #000;
    padding: 2rem;
}

.social-icons img {
    margin: 0px 1rem;
    width: 40px !important;
    height: 40px !important;
}

.social-icons img:hover {
    filter: brightness(0) invert(1);
}

.end {
    color: var(--tritary);
    font-size: 1.6rem;
    text-align: center;
    margin: 3rem 0 0;
}

/* =========slider============ */
.client-img {
    border: 4px solid #ffd000;
    height: 105px;
    left: -70px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 105px;
}

.slick-arrow {
    display: none !important;
}

.slick-dots {
    display: flex;
    justify-content: center;
    width: 100%;
    list-style: none;
    padding: 0;
}

.slick-dots li::after {
    content: '.';
    font-size: 5rem;
    margin-right: 10px;
}

.slick-active::after {
    color: #ffffff;
}

.slick-dots li:last-child::after {
    margin-right: 0;
}

.slick-dots li button {
    display: none;
    /* more CSS */
}

/* =========slider============ */
.sec-pad {
    padding: 5rem 0;
}

/* =========about========= */
.about-banner {
    background-image: url(src/assets/images/about-banner-img.jpg);
}

.about-banner span {
    color: var(--primary-color);
    font-weight: 600;
}

.about-banner .bannerForm {
    margin-top: 5rem !important;
}

.about-sec .modal .custom-btn-2 {
    background-color: var(--primary-color);
    color: var(--tritary);
    border-color: var(--primary-color);
}

.about-sec .modal .custom-btn-2:hover {
    background-color: var(--tritary);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.about-banner .Nav {
    font-size: 1.8rem;
    text-decoration: none;
    align-items: center;
    color: white;
}

.about-banner .Nav a {
    color: white;
}

.facts-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
}

.facts-list strong {
    font-size: 4rem;
    font-weight: 400;
    color: var(--primary-color);
}

.facts-list i {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.facts-list span {
    font-size: 1.6rem;
}

/* =========about========= */
/* =========service-sec========= */
.service-sec-2 {
    padding: 3rem 0;
}

/* =========service-sec========= */
/* =========contact-sec========= */
.contact-banner {
    background-image: url(src/assets/images/contact-banner-img.jpg);
}

.contact-sec {
    padding: 3rem 0;
}
.contact-subHd {
    text-align: center;
    color: var(--primary-color);
}
.form-field {
    width: 48%;
}

.form-field label {
    display: block;
    font-size: 1.6rem;
    color: #777777;
}

.fields {
    outline: none;
    border: 1px solid var(--primary-color);
    padding: 1rem 2rem;
    font-size: 1.6rem;
    color: #777777;
    border-radius: 5px;
    width: 100%;
}

.fields::placeholder {
    color: #000;
}

.field-3 {
    width: 100%;
    margin: 2rem 0;
}

.contact-info {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 240px;
    border: 1px solid transparent;
    transition: .5s;
}
.contact-info:hover {
    transform: rotate(-1deg);
    border-color: var(--primary-color);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
/* =========contact-sec========= */
/* =========station-sec========= */
.stations-sec .secHd {
    font-size: 3rem;
}

.stations-sec .secHd::after {
    width: 110px;
    margin: 2rem 0;
}

/* =========station-sec========= */
input[type="date"],
input[type="time"] {
    color-scheme: light;
}

.field-a input,
select,
.customInputs {
    background-color: transparent;
    border: 0;
    color: #777 !important;
    padding: 0px 18px;
    transition: all .3s;
}

.field-a input:focus,
select:focus,
.select2:focus {
    outline: none !important;
    background-color: var(--primary-color) !important;
    color: #fff !important;
}



.field-a input:focus::placeholder {
    color: #fff !important;
}

.field-a select option {
    color: #fff;
    background-color: var(--primary-color) !important;
}


/* myCssEnd */
#holdabledata .form-control {
    height: 44px !important;
}

#holdabledata .input-group-addon .btn {
    height: 44px !important;
    border: 2px solid white;
}

.bannerForm {
    position: relative;
    margin-top: -11rem;
    text-align: center;
    background: var(--tritary);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 15px;
    border-radius: 18px;
    z-index: 2;
    width: 100%;

}

.bannerFormHeading {
    padding: 12px 0px;
    margin-bottom: 8px;
    height: auto;

}

.bannerFormHeading h3 {
    color: white !important;
    font-weight: 700;
    margin-bottom: 0px !important;
    line-height: 100%;
    margin-top: 0 !important;
}

.bannerFormBody ul li {
    padding: 0 10px
}

.bannerForm .row [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}

.innerPageBnner {
    position: relative;
    display: flex;
}

.innerPageBnner {
    width: 80% !important;
    margin: auto;
}






@media (min-width:768px) {
    .innerPageBnner {
        height: 500px !important;
        padding: 0 !important;
    }
}

@media (max-width:768px) {
    .form-container {
        position: relative;
        width: 100%;
    }

    .my-header,
    .my-header-1 h1 {
        font-size: 4.2rem !important
    }

    .door-no-768 {
        position: absolute;
        top: 77px;
        width: 101%
    }

    .field-mini-768 {
        margin-top: 57px
    }

    .navbar-toggle {
        float: none
    }


    button#submit {
        width: 100% !important
    }

    .innerPageBnner {
        width: 100% !important;
    }

    .innerPageBnner {
        height: 305px !important;
        padding: 0px;
        margin-top: 0 !important;
    }

    .bannerFormBody ul li {
        float: none !important
    }

    .bannerFormHeading {
        width: 100% !important;
    }

    .bannerForm .cus-order-1 {
        order: -1;
    }


}

.bokingform {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 0
}

.apps-icon ul {
    width: 100%;
    text-align: center
}

.apps-icon ul li {
    width: 7%
}



.ui-helper-hidden {
    display: none
}

.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.field-img {
    background-color: #fff;
    padding: 15px;
    border-right: 1px solid #d3d3d3
}





.field-mini img {
    width: 23px;
    height: 23px;
}

.field-mini button {
    background-color: var(--primary-color);
    outline: none;
    border: 2px solid var(--primary-color);
}

.field-mini button:focus {
    outline: none;
}

.field-mini button:hover {
    cursor: pointer;
    transition: .4s
}

.field-mini {
    display: flex
}

.field-mini input {
    width: 100%;
    font-size: 16px !important;
    font-weight: 500 !important;
    cursor: default;
    height: 50px !important;
}

.lin1 {
    width: 100%;
    float: left;
    display: flex;
    justify-content: center
}

.lin2 {
    width: 100%;
    float: left;
    display: flex;
    justify-content: space-between
}

.datefield input {
    width: 100%;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 6px 18px;
    height: 50px !important;
}

.lin3 {
    width: 100%;
    float: left;
    display: flex;
    justify-content: center
}

.datefield {
    display: flex
}

.datefield img {
    background-color: #fff;
    padding: 15px
}

.timefield img {
    background-color: #fff;
    padding: 13px
}

.timefield {
    display: flex
}

.timefield input {
    width: 100%;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 6px 18px;
    height: 50px !important;
}

.mini2 button {
    padding: 5px 9px;
}

.mini2 button:hover {
    transition: none;
    cursor: auto
}

.field-mini select {
    height: 50px;
    width: 100%;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 11px;
}

.form-container {
    padding: 20px 14px;
    border-radius: 20px;

}

.selectfield select {
    width: 100%;
    font-size: 16px !important;
    font-weight: 500 !important;
}

.submitbtn {
    width: 100%;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 8px;
}

.submitbtn button {
    border-radius: 999px;
    border: 1px solid var(--primary-color);
    color: var(--tritary);
    height: 50px;
    background-color: var(--primary-color);
    font-weight: 500;
    font-size: 1.6rem;
    position: relative;
    transition: all 0.5s;
    overflow: hidden;
    z-index: 2;
}

.submitbtn button::before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    transform: scale(.1);
    opacity: 0;
    background-color: #000;
    border-radius: 999px;
    z-index: -1;
}

.submitbtn button:hover::before {
    background: var(--tritary);
    transform: scale(1.2);
    opacity: 1;
    transition: all .5s;
}

.submitbtn button:hover {
    background-color: var(--tritary);
    color: var(--primary-color);
    transition: all .5s;
}

.form-home .submitbtn button {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
}

.modal {
    background-color: rgba(0, 0, 0, .6);
    z-index: 9999;
}



.card-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}




#holdabledata .input-group {
    margin-top: 10px !important;
    float: left !important;
    padding-left: 15px !important;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 3px 8px;
}

.form-control {
    font-size: 1.4rem;
    color: var(--primary-color);
    padding: 10px 20px;
    border: 1px solid var(--primary-color);
}


.input-grp-btns {
    background-color: #fff
}

#holdabledata .input-group-addon {
    padding: 0 !important;
    background-color: transparent !important;
    border: 0 !important
}


.times-dialog {
    margin: 300px auto
}
.times-dialog span {
    padding: 10px 20px;
    font-size: 1.4rem;
    border: 0 !important;
    background-color: var(--primary-color) !important;
}
.times-dialog .form-control {
    margin-right: 2px;
}
.modal-header .close {
    color: var(--primary-color);
    font-size: 25px
}

.btn-default {
    font-weight: 700 !important
}



.wait-label {
    margin-top: 11px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
}
.input-group-addon span {
    background-color: var(--primary-color) !important;
    font-size: 1.4rem;
}
.selection_arrow {
    height: 45px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--primary-color) transparent;
}

.select2-container--open .select2-dropdown {
    margin-top: -4px;
}

@media screen and (min-width:320px) and (max-width:767px) {
    .lin1 {
        display: flex;
        justify-content: center;
        flex-direction: column
    }

    .lin2 {
        display: flex;
        justify-content: center;
        flex-direction: column
    }

    .lin3 {
        display: flex;
        justify-content: center;
        flex-direction: column
    }

    .field {
        width: 100%
    }

    .field-mini {
        width: 100%;
        margin: 0 0 8px
    }

    .datefield {
        width: 100%;
        margin: 0 0 8px
    }

    .timefield {
        width: 100%;
        margin: 0 0 8px
    }

    .selectfield {
        width: 100%;
        margin-bottom: 8px
    }

    .submitbtn button {
        width: 100%
    }

    .apps-icon ul li {
        width: 22%
    }

    .bokingform {
        padding-bottom: 50px
    }

    .bannerForm {
        height: auto;
    }
}

.loading-div {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background-color: #26af343d;
    transform: scale(0);
    transition: all .3s ease-in-out
}

.inner-loading-div {
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%
}

.loading-heading {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px
}

.loading-imgs-div {
    width: fit-content;
    position: relative;
    margin: 0 auto
}

.loading-buttons {
    margin-top: 15px
}

.loading-buttons a {
    padding: 10px 30px;
    border-radius: 4px;
    color: #fff;
    font-size: 18px;
    text-decoration: none
}

.tire {
    animation-name: tire_anim;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite
}

@keyframes tire_anim {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.rim {
    position: absolute;
    top: 0;
    left: 120px;
    transform: rotate(360deg);
    animation-name: rim_anim;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite
}

@keyframes rim_anim {
    0% {
        transform: rotate(360deg)
    }

    100% {
        transform: rotate(0)
    }
}

.field-a,
.customInputs {
    margin: 8px 0;
    overflow: hidden;
    border-radius: 999px;
    transition: all 0.3s ease-in-out;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 3px 8px;
}

.modal-content {
    background: var(--tritary);
    border: none;
    border-radius: 20px;
}

#myModalvias .modal-content {
    text-align: center;
}

#myModalitem label {
    margin: 4px 0;
}

.modal-footer {
    border: none;
}

.table td,
.table th {
    border: none;
    color: var(--primary-color);
    vertical-align: 0;
    font-size: 1.4rem;
}


.btn:focus {
    box-shadow: 0 0 0 0.2rem #26af34a6;
}

.card-header {
    background: transparent;
    border: none;
}

.modal .card {
    background-color: transparent;
    border: none;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary-color) !important;
}

@media (max-width:425px) {
    .lin1 .col-lg-4.col-md-6.col-sm-12.m-top-60 {
        margin-top: 60px;
    }

    .lin2 .col-lg-4.col-md-6.col-sm-12.m-top-89 {
        position: absolute;
        top: 80px;
        width: 100%;
    }

    .bannerFormHeading h3 {
        font-size: 20px !important;
    }

    .submitbtn {
        margin-top: 5px !important;
    }

    .field-a {
        margin: 7px 0 !important;
    }
}

@media (max-width: 480px) {
    .bannerFormHeading.pad-t-50 {
        padding-top: 10px !important;
    }
}

@media (max-width: 768px) {
    .innerPageBnner {
        height: 100% !important;

    }
}

.select2 {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    background: transparent !important;
    border: none !important;
    border-radius: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #777 !important;
    font-weight: 500;
}

.select2-selection__rende#e90000 {
    text-align: left;
}

.select2-search__field:focus-visible {
    outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__rende#e90000 {
    color: #777 !important;
    padding-left: 18px !important;
}

.select2-dropdown {
    background: #fff !important;
    border: 0 !important;
}

.select2-selection__rendered {
    text-align: left;
    padding-left: 18px !important;
}



.animate-bottom {
    position: relative;
    animation: animatebottom 0.4s;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    animation: fadeInDown 1s both;
}

.sticky .navbar {
    background-color: #fff !important;
    top: 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 2rem 4rem;
}

.top {
    background-color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 5px;
    position: fixed;
    z-index: 999;
    bottom: 130px;
    right: 20px;
    opacity: 0;
    transform: scale(0);
    transition: all .3s;
}

.top img {
    width: 40px;
    height: 40px;
}

.sticky .top {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1);
    opacity: 1;
}

@keyframes animatebottom {
    from {
        bottom: -300px;
        opacity: 0;
    }

    to {
        bottom: 0;
        opacity: 1;
    }
}

.select2-container .select2-selection--single {
    height: 50px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 50px;
    font-size: 16px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 43px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    color: #777;
    font-size: 1.6rem;
}

.select2-results__option {
    font-size: 1.4rem;
}

.about-sec .modal-dialog {
    max-width: 1200px;
    margin: 2rem auto;
}

.about-sec .modal-content {
    background-color: var(--secondary-color);
}

.about-sec .modal-header {
    border-bottom: 1px solid var(--primary-color);
}

.about-sec .modal-header .close {
    color: var(--primary-color);
    opacity: 1;
}

.about-sec .close:not(:disabled):not(.disabled):hover {
    opacity: 1;
    color: var(--tritary);
}

.about-sec .modal-body h3 {
    font-size: 2.5rem;
    margin: 2rem 0 2rem;
    color: var(--primary-color);
}

.about-sec .modal-body h3 span {
    color: var(--tritary);
}

.about-sec .modal-body p {
    font-size: 1.6rem;
    color: var(--tritary);
    margin: 1rem 0 3rem;
}

/* scrollbar */
/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: grey;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #26af34ab;
}

.service-card-sec {
    width: 100%;
    background: url(./src/assets/images/cars-img.webp) no-repeat center;
    background-size: cover;
    position: relative;
    padding: 0;
}

.service-card-sec::before {
    background: rgba(221, 55, 81, 0.9);
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
}

.service-sec-card {
    padding: 4rem 0;
}

.mainHeading h2 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.mapdiv {
    margin-bottom: 3rem;
}


.routes-names h5 {
    font-size: 1.8rem;
    margin: 6rem 0 2rem;
    color: var(--tritary);
    font-weight: 500;
}

.routes-names p {
    font-size: 1.5rem;
    color: var(--tritary);
    font-weight: 400;
}

.routes-names span {
    color: var(--primary-color);
}

.routes-names li {
    padding: 1rem;
    padding-left: 0;
}

.routes-names a {
    font-size: 1.5rem;
    color: var(--tritary);
    transition: .5s;
    display: flex;
}

.routes-names a span {
    color: var(--tritary);
    transition: all .5s;
}

.routes-names a:hover,
.routes-names a:hover span {
    color: var(--primary-color);
}

.routes-names img {
    width: 24px;
    height: 24px;
    transition: all .5s;
}

.routes-names a:hover img {
    filter: brightness(0) invert(1);
}

.infoicon-div img {
    width: 40px;
    height: 40px;
}

.info-text p {
    margin: 1rem 0;
    font-size: 3rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.info-text span {
    color: #999999;
    font-size: 1.6rem;
    font-weight: 400;
}


.darkBg {
    background-color: #fff;
}

.mainHd span {
    color: var(--primary-color);
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.four-o-four-banner {
    height: 80vh !important;
}

.not-found .four-o-four {
    font-size: 7rem;
}

.not-found .mainHd {
    margin-top: 0;
    margin-bottom: 2rem;
    font-weight: 700;
}

.not-found p {
    color: #26af34;
    margin-bottom: 2rem;
}

.C-C-banner {
    background-image: url(src/assets/images/Charing-Cross-bg.jpg);
}

.K-C-banner {
    background-image: url(src/assets/images/king-cross-bg.jpg);
}

.paddington-banner {
    background-image: url(src/assets/images/station-paddington.webp);
}

.euston-banner {
    background-image: url(src/assets/images/euston-bg.jpg);
}

.L-B-banner {
    background-image: url(src/assets/images/londonbridge-bg.jpg);
}

.waterloo-banner {
    background-image: url(src/assets/images/waterloo-bg.jpg);
}

.victoria-banner {
    background-image: url(src/assets/images/Victoria-Station.jpg);
}

.heathrow-banner {
    background-image: url(src/assets/images/heathow-bg.jpg);
}

.gatwick-banner {
    background-image: url(src/assets/images/gatwick-bg.jpg);
}

.luton-banner {
    background-image: url(src/assets/images/luton-bg.jpg);
}

.stansted-banner {
    background-image: url(src/assets/images/stansted-bg.jpg);
}

.L-C-banner {
    background-image: url(src/assets/images/london-city-bg.webp);
}
.routes-banners {
    height: auto;
}
.routes-banners .bannerForm {
    margin-top: 0;
}
.right-arrow {
    width: 27px;
    height: 24px;
}
.nav-call-btns {
    display: none;
}
.form-control:focus {
    border-color: #26af34c2;
        box-shadow: 0 0 0 0.2rem #26af344d;
} 
@media screen and (max-width: 991px) {
    .nav-call-btns {
        display: flex;
    }
    .station-card {
        height: 340px;
    }
    .subHd {
        text-align: center;
    }
    .airport-sec .col-lg-4:nth-child(4) .airport-card span {
        left: -30px;
    }
    .service-box {
        margin-bottom: 0;
        height: 304px;
    }

    .airport-sec {
        padding-bottom: 1rem;
    }

    .airport-sec .secHd {
        margin-top: 3rem;
    }

    .bannerForm {
        background-color: #26af340f;
        border-radius: 50px;
        margin: 3rem 0 1rem !important;
        padding: 0.5rem;
    }

    .about-sec .modal-dialog {
        width: 100%;
    }

    .mt30 {
        margin-top: 3rem;
    }

    .four-o-four {
        font-size: 6rem;
    }

    .not-found p {
        margin-bottom: 2rem;
    }

    .banners {
        height: 40vh !important;
    }

    .four-o-four-banner {
        height: auto !important;
    }


    .suv-car {
        object-fit: cover;
        width: 100%;
        height: 190px;
        transition: .5s;
    }

    .cars-sec h2 {
        margin: 3rem 0 3rem;
    }

    .steering {
        width: 85px;
        height: 85px;
    }

    .station-inner h2 {
        font-size: 1.8rem;
    }

    .station-inner a {
        width: 120px;
        font-size: 1.8rem;
        padding: 1rem;
        display: block;
        margin: auto;
        top: 272px;
    }

    .social-imgs {
        justify-content: end;
    }

    .banner-content {
        padding: 100px 0 10px;
    }

    .navbar-toggler {
        padding: 0;
    }

    .navbar-toggler img {
        width: 40px;
        height: 40px;
    }
    /* 
    .call-btn {
        background-color: transparent;
        padding: 0;
    }

    .call-btn span {
        display: none;
    }

    .call-btn i {
        font-size: 1.8rem;
        background-color: var(--primary-color);
        color: var(--tritary);
        width: 40px;
        height: 40px;
    } */

    .hero-banner {
        height: auto;
    }

    .navbar {
        padding: 1rem;
        border-bottom: 1px solid var(--primary-color);
    }

    .sticky .navbar {
        padding: 1rem;
    }

    .navbar-toggler {
        margin-left: .5rem;
    }

    .navbar-collapse {
        order: 3;
    }
    .navbar ul {
        padding-top: 2rem;
    }
    .nav-link {
        font-size: 1.8rem;
        margin: 1rem;
        width: 40%;
        text-align: center;
    }


    .mainHd {
        text-align: center;
        font-size: 3rem;
        margin: 1rem 0 1.5rem;
    }

    .bnr-btns {
        display: flex;
        justify-content: center;
    }

    .bookbtn {
        font-size: 2rem;
        padding: 1rem 3rem;
        display: block;
        text-align: center;

    }

    .morebtn {
        width: 180px;
        padding: 1rem;
        font-size: 2rem;
    }

    .secHd {
        font-size: 3rem;
    }

    .secHd::after {
        width: 70px;
    }

    .about-modal {
        margin-top: 4.5rem;
        padding: 0 0 2rem 0;
    }

    .cards-sec {
        padding-bottom: 2rem;
    }

    .service-sec {
        padding: 3rem 0 3rem;
    }

    .card-inner h3 {
        font-size: 2.8rem;
        margin-bottom: 0;
    }

    .card-inner p {
        font-size: 2rem;
    }

    .cars-inner {
        padding: 3rem 0 1rem;
    }

    .cars-inner ul li {
        padding: 2rem;
    }

    .client-sec {
        padding: 3rem 0;
    }

    .client-sec .secHd {
        margin-bottom: 7rem;
    }
    .client-name-div {
        top: -20px;
    }
    .client-name {
        font-size: 2rem;
    }

    .client-review {
        font-size: 1.6rem;
        margin-top: 4rem;
    }

    .client-inner-div {
        padding: 2rem 1rem 0 3rem;
    }
    .client-card3 {
        margin-top: 7rem;
    }
    .footer {
        padding: 3rem 0;
    }

    .social-icons i {
        font-size: 2rem;
        padding: 2rem;
    }

    .end {
        text-align: center;
        margin-top: 2rem;
        font-size: 2rem;
        padding-top: 10px;
        border-top: 1px solid var(--primary-color);
    }

    .contact-info {
        margin-top: 4rem;
    }

    /* ==========about-sec=========== */
    .about-first-row {
        flex-direction: column-reverse;
    }

    .about-sec-hd {
        text-align: center;
    }

    .about-sec-hd::after {
        margin: 2rem auto !important;
    }

    /* ==========about-sec=========== */

    .service-sec-card {
        margin-bottom: 0;
    }

    .logo-nav-div {
        width: 100%;
        justify-content: space-between;
    }

    .taxi-img img {
        display: block;
        margin: auto;
        margin-bottom: 2rem;
        width: 490px;
        height: 225px;
    }

    .times-dialog {
        margin: 280px auto;
    }

    .topbar {
        padding-left: 0;
        padding-right: 0;
    }
    .about-modal:after {
        width: 100%;
    }
        .sonata-img {
        height: 360px;
    }
    .hero-banner p {
        text-align: center;
    }
    .about-modal .modal {
        height: 100%;
    }
    .about-modal .modal-content {
        border-radius: 0;
        height: 100% !important;
    }

}

@media screen and (max-width: 767px) {
    .about-Hd {
        margin-top: 3rem !important;
    }
    .social-icons img {
        margin: 0px 1rem;
        width: 30px !important;
        height: 30px !important;
    }
    .airoplane-card span {
        display: none;
    }

    .bannerForm {
        margin: 0 !important;
        border-radius: 0;
        box-shadow: rgba(0, 0, 0, 0.35) 0px -1px 15px;
    }

    .contact-div {
        justify-content: center;
    }


    .taxi-img img {
        height: 170px;
    }

    .topbar span {
        font-size: 1rem;
    }

    .call-btn {
        background-color: transparent;
    }

    .call-btn span {
        display: none;
    }

    .call-btn i {
        font-size: 1.8rem;
        background-color: var(--primary-color);
        color: var(--tritary);
    }

    .info-box i {
        font-size: 1.5rem;
        padding: 0;
        border: 0;
        border-radius: 0;
    }

    .phone-icon i {
        background-color: transparent;
        color: var(--primary-color);
    }

    .info-text br {
        display: none;
    }

    .addresshd {
        display: none;
    }

    .addressdt {
        font-size: 1.2rem;
        font-weight: 500 !important;
    }

    .mainHd {
        font-size: 2rem;
        text-align: center;
    }
    .bookbtn {
        font-size: 1.6rem;
        padding: 1rem 2rem;
    }

    .secHd {
        font-size: 2.5rem;
    }

    .names span {
        font-size: 1.8rem;
    }

    .numbers span {
        font-size: 1.8rem;
    }

    .client-name-div {
        top: -23px;
    }


    .client-card {
        margin-top: 4rem;
        height: 450px;
    }

    .client-card2 {
        margin-top: 6rem;
    }
    .social-imgs {
        justify-content: center;
        margin-top: 2rem;
    }

    .end {
        font-size: 1.4rem;
    }

    /* =========about-sec========= */

    .facts-list strong {
        font-size: 3.3rem;
    }

    .facts-list span {
        font-size: 1.4rem;
    }

    /* =========about-sec========= */
    /* =========contact-sec========= */
    .form-field {
        width: 100%;
        margin: 0 0 2rem 0;
    }

    .form .d-flex {
        flex-direction: column;
    }

    .form-field label {
        font-size: 2rem;
    }

    .fields {
        font-size: 2rem;
    }

    .contact-info .info-box {
        margin-bottom: 3rem;
    }

    .contact-info .addressdt {
        font-size: 1.6rem;
    }

    .contact-info .addressdt1 {
        margin-right: 1rem;
    }

    .contact-info i {
        font-size: 2rem;
    }

    /* =========contact-sec========= */
    .rate-div {
        justify-content: center;
    }

    .rate-div div {
        margin-right: 70px;
    }

    .social-icons {
        padding-top: 2rem !important;
        margin: 1rem 0 2rem;
    }
    
    .times-dialog {
        margin: 220px auto;
        padding: 0 1rem;
    }

    .times-dialog button {
        font-size: 1.4rem;
    }

    .wait-label {
        font-size: 1.4rem;
    }

    .subHd {
        font-size: 1.4rem;
    }

    .field-mini select,
    .select2-results__option,
    .select2-container--default .select2-selection--single .select2-selection__rendered,
    .field-mini input,
    .datefield input,
    .timefield input,
    .submitbtn button,
    .select2-container--default .select2-search--dropdown .select2-search__field,
    .selectfield select {
        font-size: 1.2rem !important;
    }

    .col-mobile {
        padding: 0;
    }

    .about-Hd {
        margin-top: 3rem !important;
    }

    .routes-names h5 {
        margin: 2rem 0 2rem;
    }
    .hero-banner p {
        display: none;
    }
    .formWrapper {
        padding: 0;
    }
    .about-sec .modal-dialog {
        width: 100%;
        margin: 0 auto;
    }
    .about-sec .modal-content {
        border-radius: 0;
    }
    
   
    .times-dialog .modal-content {
        height: auto !important;
    }
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}