@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #cf810c;
    --primary-color2: #F7C377;
    --secondary-color: #E6E6E6;
    --white-color: #fff;
    --black-color: #000;
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

figure {
    margin: 0;
    padding: 0;
}

.btn:focus {
    outline: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

p, span {
    margin-bottom: 0px !important;
}

a, button {
    display: inline-block;
}

    button:focus {
        outline: none;
        box-shadow: none;
    }

select {
    cursor: pointer;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

/************************** All Main Css Start **************************/
/* mini header css */
.mini-header {
    width: 100%;
    padding: 5px;
    background: var(--primary-color);
}

.infocont {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
}

    .infocont a {
        color: var(--white-color);
        transition: all 0.3s ease-in-out;
    }

        .infocont a:hover {
            color: var(--primary-color2);
        }

        .infocont a i {
            padding-right: 5px;
        }

.social_icons {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    margin-top: 5px;
}

    .social_icons i {
        color: var(--white-color);
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

        .social_icons i:hover {
            color: var(--primary-color2);
        }
/* mini header css */
/* header css */
.header {
    width: 100%;
    position: relative;
    background: var(--white-color);
    transition: all 0.3s ease;
    z-index: 10;
}

.header-sticky {
    width: 100%;
    position: relative;
    background: var(--white-color);
    transition: all 0.3s ease;
    z-index: 10;
}

    .header-sticky.sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: var(--white-color);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        animation: fadeInDown 0.5s ease;
    }

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#scrollBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    transition: background-color 0.3s;
}

    #scrollBtn:hover {
        background-color: var(--primary-color2);
    }

.navbar-expand-lg {
    padding: 10px 0;
    background: var(--white-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .navbar-expand-lg .logo {
        width: 150px;
    }

    .navbar-expand-lg .navbar-collapse {
        justify-content: flex-end;
        align-items: center;
    }

    .navbar-expand-lg .navbar-nav {
        align-items: center;
        gap: 40px;
    }

.navbar-light .navbar-nav .nav-link.active {
    border: none;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white-color);
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.custom-head-Btn {
    border: none;
    padding: 10px 40px !important;
    background: var(--primary-color);
    color: var(--white-color);
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 10px;
}

    .custom-head-Btn:hover {
        background: var(--primary-color2);
        color: var(--white-color);
        box-shadow: 0 0px 5px 0 var(--primary-color);
    }

.custom-head-Btn2 {
    border: none;
    padding: 10px 40px !important;
    background: var(--primary-color);
    color: var(--white-color);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 10px;
}

    .custom-head-Btn2:hover {
        background: var(--primary-color2);
        color: var(--white-color);
        box-shadow: 0 0px 5px 0 var(--primary-color);
    }

    .custom-head-Btn2 .Btn-Top {
        margin-top: 10px;
    }

.custom-head-Btn3 {
    border: none;
    padding: 10px 40px !important;
    background: var(--white-color);
    color: var(--primary-color);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 50px;
}

    .custom-head-Btn3:hover {
        background: var(--secondary-color2);
        color: var(--white-color);
        box-shadow: 0 0px 5px 0 var(--secondary-color);
    }

.navbar-light .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: var(--black-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.navbar-nav .nav-item:hover .nav-link {
    color: var(--black-color);
}

.navbar-nav .nav-item .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover::before {
    width: 100%;
}

.navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover::after {
    width: 100%;
}
/* header css */
/* hero section */
.hero-section {
    width: 100%;
    padding: 80px 0;
    background: url(../images/hero-image.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-hero .heading-section {
    width: 100%;
}

    .main-hero .heading-section h2 {
        font-size: 18px;
        font-weight: 700;
        color: var(--white-color);
        width: fit-content;
        padding: 10px 20px;
        border-radius: 0px;
        background: var(--primary-color);
        margin-bottom: 10px;
        border-radius: 10px;
    }

    .main-hero .heading-section h1 {
        font-size: 50px;
        font-weight: 700;
        color: var(--white-color);
        margin: 10px auto;
    }

    .main-hero .heading-section p {
        color: var(--white-color);
        font-size: 20px;
    }

.rent-details-box {
    background-color: #ffffff21;
    border: 3px solid #cf810c;
    border-radius: 35px;
    padding: 25px 30px;
    width: 100%;
}

.rent-details-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.rent-details-item {
    width: calc(100% - 0px);
    display: flex;
    border-bottom: 1px solid var(--primary-color2);
    padding-bottom: 15px;
}

    .rent-details-item .icon-box {
        margin-right: 10px;
    }

        .rent-details-item .icon-box img {
            max-width: 40px;
        }

.rent-details-content {
    width: calc(100% - 34px);
}

    .rent-details-content h3 {
        font-size: 18px;
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 5px;
        color: #fff;
    }

    .rent-details-content input, .rent-details-content select {
        font-size: 16px;
        width: 100%;
        display: block;
        border: none;
        border-radius: 0;
        background-color: transparent;
        color: #ffffff;
        box-shadow: none;
        outline: none;
        padding: 0 20px 0 0;
        background-position: right center;
        cursor: pointer;
        font-family: "Poppins", sans-serif;
    }

        .rent-details-content select option {
            background-color: var(--white-color);
            color: var(--black-color);
        }
/* hero section */
/* about section */
.about-us {
    padding: 40px 0;
}

.about-image {
    position: relative;
    background: url(../images/about-image-bg.svg) no-repeat;
    background-position: bottom 25px right 50px;
    background-size: auto;
    padding-bottom: 100px;
    margin-right: 40px;
    padding-left: 10px;
}

.about-img-1 {
    width: 414px;
    position: relative;
}

    .about-img-1::before {
        content: '';
        position: absolute;
        top: -10px;
        bottom: 0;
        left: -10px;
        right: 0;
        width: 100%;
        height: 100%;
        border: 5px solid var(--primary-color);
        border-radius: 35px;
        z-index: 1;
    }

    .about-img-1 img {
        width: 100%;
        aspect-ratio: 1 / 1.37;
        object-fit: cover;
        border-radius: 35px;
    }

.about-img-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
}

    .about-img-2::before {
        content: '';
        position: absolute;
        top: -8px;
        bottom: 0;
        left: -8px;
        right: 0;
        width: 100%;
        height: 100%;
        border: 5px solid var(--primary-color);
        border-radius: 35px;
        z-index: 1;
    }

    .about-img-2 img {
        width: 100%;
        aspect-ratio: 1 / 1.37;
        object-fit: cover;
        border-radius: 35px;
    }

.section-title {
    margin-bottom: 20px;
}

    .section-title h3 {
        display: inline-block;
        position: relative;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.2em;
        text-transform: capitalize;
        color: var(--white-color);
        padding: 10px 40px;
        width: fit-content;
        margin-bottom: 10px;
        background: var(--primary-color);
        border-radius: 10px;
    }

    .section-title h2 {
        font-size: 54px;
        font-weight: 700;
        margin-bottom: 0;
    }

    .section-title p {
        margin-top: 10px;
        margin-bottom: 0;
    }
/* about section */
/* services section */
.services-section {
    width: 100%;
    padding: 40px 0;
    background: var(--primary-color);
}

.services-heading {
    width: 100%;
    text-align: center;
}

    .services-heading h2 {
        font-size: 18px;
        font-weight: 700;
        color: var(--primary-color);
        background: var(--white-color);
        padding: 10px 40px;
        width: fit-content;
        margin: 0 auto 10px auto;
        border-radius: 10px;
    }

    .services-heading h3 {
        font-size: 42px;
        font-weight: 700;
        color: var(--white-color);
        margin-bottom: 40px;
    }

    .services-heading p {
        margin-bottom: 40px;
    }

.mainSer {
    width: 100%;
    border: 5px solid var(--secondary-color);
    background: var(--white-color);
    margin-bottom: 25px;
    border-radius: 25px;
    height: 320px;
    overflow: hidden;
}

.imageServ {
    width: 100%;
    height: 320px;
    background: url(../images/airport-transfer.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.imageServ2 {
    width: 100%;
    height: 320px;
    background: url(../images/leicester-taxis.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.imageServ3 {
    width: 100%;
    height: 320px;
    background: url(../images/seaport-transfer.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.imageServ4 {
    width: 100%;
    height: 320px;
    background: url(../images/courier-service.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.imageServ5 {
    width: 100%;
    height: 320px;
    background: url(../images/mercedes-benz-e-class.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.imageServ6 {
    width: 100%;
    height: 320px;
    background: url(../images/school-transport.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.padDiv {
    width: 100%;
    padding: 20px;
}

    .padDiv h2 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--black-color);
    }

    .padDiv p {
        margin-bottom: 10px !important;
        font-size: 14px;
        color: var(--black-color);
    }
/* services section */
/* our fleets section */
.our-fleet-section {
    width: 100%;
    padding: 40px 0px;
}

    .our-fleet-section h2 {
        font-size: 18px;
        font-weight: 700;
        color: var(--white-color);
        background: var(--primary-color);
        text-align: center;
        margin-bottom: 40px;
        padding: 10px 40px;
        width: fit-content;
        margin: 0 auto 40px auto;
        border-radius: 10px;
    }

    .our-fleet-section .fleetPara {
        text-align: center;
        margin-bottom: 50px;
    }

.fleet-card {
    width: 100%;
    background: var(--white-color);
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

    .fleet-card .fleet-1 {
        width: 100%;
        height: 230px;
        object-fit: contain;
        border-radius: 25px;
    }

.fleet-contentD {
    padding: 10px 0;
}

.fleet-card h3 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 32px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--primary-color2);
}

.fleet-card .fleet-para {
    color: var(--black-color);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--primary-color2);
}

.fleet-features {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

    .fleet-features i {
        padding-right: 5px;
        color: var(--primary-color);
    }

    .fleet-features p {
        margin-bottom: 0px !important;
    }

.fleet_btn {
    width: 100%;
    text-align: center;
    border: none;
    padding: 10px 40px !important;
    background: var(--primary-color);
    color: var(--white-color) !important;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .fleet_btn:hover {
        background: var(--primary-color2);
        color: var(--white-color);
        box-shadow: 0 0px 5px 0 var(--primary-color);
    }
/* our fleets section */
/* contact section */
.contact-section {
    width: 100%;
    height: 100%;
    padding: 40px 0px;
}

.contact-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.contact-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white-color);
    background: var(--primary-color);
    width: fit-content;
    margin: 0 auto;
    padding: 10px 40px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.contact-section h2 {
    font-size: 54px;
    font-weight: 700;
    color: var(--black-color);
    text-align: center;
}

.main-contact {
    width: 100%;
    height: 100%;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
}

.contact-info {
    width: 100%;
    height: 100%;
    padding: 40px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background: var(--primary-color);
}

    .contact-info h3 {
        font-size: 42px;
        font-weight: 600;
        margin-bottom: 20px;
        color: var(--white-color);
    }

    .contact-info p {
        color: var(--white-color);
        margin-bottom: 10px !important;
        margin-top: 5px;
    }

.sicial-contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.in-con {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--secondary-color);
}

    .in-con i {
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #fff;
        color: #cf810c;
        border-radius: 5px;
    }

    .in-con a {
        color: var(--white-color);
        transition: all 0.3s ease-in-out;
        margin-top: 5px;
    }

        .in-con a:hover {
            color: var(--primary-color2);
        }

.contact-form {
    width: 100%;
    height: 100%;
    padding: 50px;
}

.con_inp {
    width: 100%;
    height: 100%;
}

.contact-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--secondary-color);
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease-in-out;
}

    .contact-input::placeholder {
        color: var(--black-color);
    }

    .contact-input:focus {
        outline: none;
        border: 2px solid var(--primary-color);
    }
/* contact section */
/* footer section css */
.footer {
    width: 100%;
    height: 100%;
    padding: 40px 0;
    background: var(--primary-color);
}

    .footer .footer-logo {
        width: 300px;
        background-color: #fff;
        padding: 20px;
        border-radius: 15px;
    }

.center-footer-content {
    width: 100%;
    height: 100%;
    margin-left: 20px;
}

    .center-footer-content h2 {
        font-weight: 600;
        color: #fff;
        font-size: 24px;
    }

.footer_ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 6px;
    margin-top: 10px;
}

    .footer_ul .footer_li a {
        color: var(--white-color);
        transform: translateX(0px);
        transition: all 0.3s ease-in-out;
        font-size: 17px;
    }

        .footer_ul .footer_li a:hover {
            transform: translateX(10px);
        }

        .footer_ul .footer_li a i {
            padding-right: 5px;
        }

.right-footer-content h2 {
    font-weight: 600;
    color: var(--white-color);
    font-size: 24px;
}

.right-footer-content .getin_touch {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-top: 10px;
}

.getin_touch a {
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
    font-size: 17px;
}

    .getin_touch a:hover {
        color: var(--primary-color2);
    }

    .getin_touch a i {
        padding-right: 5px;
    }

.getin_touch p {
    color: var(--white-color);
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

    .getin_touch p i {
        padding-right: 5px;
        margin-top: 3px;
    }

.last-footer-content h2 {
    font-weight: 600;
    color: var(--white-color);
    font-size: 24px;
}

.social-icons {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}

    .social-icons .icon {
        background: var(--white-color);
        padding: 10px 15px;
        color: var(--primary-color);
        transition: all 0.3s ease-in-out;
        border-radius: 5px;
    }

        .social-icons .icon:hover {
            background: var(--primary-color2);
            color: var(--white-color);
        }

.bootom-footer-section {
    width: 100%;
    background: var(--secondary-color);
    padding: 20px;
    color: var(--black-color);
    text-align: center;
}

    .bootom-footer-section .bottom-footer-content p {
        margin-bottom: 0px !important;
    }

    .bootom-footer-section .bottom-footer-content a {
        color: var(--black-color);
        transition: all 0.3s ease-in-out;
    }

        .bootom-footer-section .bottom-footer-content a:hover {
            color: var(--primary-color);
        }
/* footer section css */
/* inner pages banner css */
.banner-section {
    width: 100%;
    padding: 80px;
    background: var(--primary-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .banner-section h2 {
        font-size: 52px;
        font-weight: 600;
        color: var(--white-color);
    }

.breadcrumb {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.breadcrumb-item a {
    color: var(--white-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white-color);
}

.breadcrumb-item.active {
    color: var(--white-color);
    font-weight: 700;
}
/* inner pages banner css */
/* inner services css */
.inner-services {
    width: 100%;
    height: 100%;
    padding: 40px 0;
}

.main-ner-image {
    width: 100%;
    padding: 20px;
}

    .main-ner-image img {
        border: 10px solid var(--primary-color);
    }

.main-ner-content {
    width: 100%;
    padding: 50px;
}

    .main-ner-content h1 {
        font-size: 36px;
        font-weight: 700;
        color: var(--black-color);
        margin-bottom: 10px;
    }

    .main-ner-content p {
        font-size: 18px;
        margin-bottom: 10px !important;
    }
/* inner services css */

.sec-result {
    padding: 60px 0;
}

    .sec-result .upper-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 7px 16px;
        background: #ebebeb;
    }

        .sec-result .upper-list li {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .sec-result .upper-list li .icon-box {
            }

                .sec-result .upper-list li .icon-box .img-icon {
                    width: 60px;
                    height: 100%;
                    object-fit: contain;
                }

            .sec-result .upper-list li .text-box {
                padding: 0 10px;
            }

                .sec-result .upper-list li .text-box h6 {
                    font-size: 16px;
                    font-weight: 600;
                    color: #000;
                }

                .sec-result .upper-list li .text-box p {
                    font-size: 14px;
                }

    .sec-result .number-box {
        padding: 30px 40px;
    }

        .sec-result .number-box ul {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .sec-result .number-box ul li {
                width: 24%;
                position: relative;
            }

                .sec-result .number-box ul li .num-circle {
                    text-align: center;
                }

                    .sec-result .number-box ul li .num-circle h6 {
                        background-color: #ebebeb;
                        width: 50px;
                        height: 50px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 50%;
                        font-size: 20px;
                        margin: 0 auto;
                        color: #000;
                        font-weight: 600;
                    }

                    .sec-result .number-box ul li .num-circle p {
                        font-size: 14px;
                        margin-top: 15px;
                        text-transform: uppercase;
                        color: #000;
                    }

    .sec-result .completed {
        background-color: #000000 !important;
        color: #ffffff !important;
    }

    .sec-result .for-line {
        position: relative
    }

        .sec-result .for-line::before {
            content: '';
            background-color: #cf810c;
            position: absolute;
            width: 67%;
            height: 4px;
            top: 30%;
            border-radius: 10px;
            left: 70%;
        }

    .sec-result .cancellation-box {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 20px;
        background-color: #000000bd;
    }

        .sec-result .cancellation-box .img-box {
            background-color: #fff;
            padding: 10px;
            border-radius: 10px;
        }

            .sec-result .cancellation-box .img-box .shield-img {
                width: 50px;
            }

        .sec-result .cancellation-box .text-box {
            padding-left: 10px;
        }

            .sec-result .cancellation-box .text-box p {
                line-height: 23px;
                color: #fff;
                font-size: 18px;
            }


.update-fleet-box {
    background: #ebebeb;
    margin: 20px 0;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .update-fleet-box .img-box {
        margin-bottom: 10px;
    }

        .update-fleet-box .img-box img {
            width: 100%;
            height: 120px;
            object-fit: contain;
        }

    .update-fleet-box .car-text {
        text-align: center;
        font-size: 14px;
        line-height: 18px;
        padding-bottom: 10px;
        font-weight: 700;
    }

    .update-fleet-box .private-text {
        font-size: 14px;
    }

    .update-fleet-box .star-list {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 7px 0 0;
    }

        .update-fleet-box .star-list li {
            padding: 0 1px;
        }

            .update-fleet-box .star-list li i {
                color: #ffffff;
                background-color: #cf810c;
                padding: 4px;
                border-radius: 5px;
            }

    .update-fleet-box .fleet-detail {
        padding: 0px 13px;
        border-right: 1px solid #bbbbbb;
        border-left: 1px solid #bbbbbb;
    }

        .update-fleet-box .fleet-detail h4 {
            font-size: 22px;
            font-weight: 600;
            padding-bottom: 5px;
            color: #000000;
        }

        .update-fleet-box .fleet-detail .passenger-list {
            display: flex;
            align-items: center;
        }

            .update-fleet-box .fleet-detail .passenger-list li {
                font-size: 13px;
                padding: 0 8px 0 0;
                font-weight: 600;
            }

                .update-fleet-box .fleet-detail .passenger-list li i {
                    font-size: 16px;
                }

        .update-fleet-box .fleet-detail .passenger-list-2 {
            padding: 10px 0;
        }

            .update-fleet-box .fleet-detail .passenger-list-2 li {
                font-size: 15px;
                padding: 3px 10px;
                border: 1px solid #000000;
                margin: 3px 0;
                border-radius: 6px;
                font-size: 12px;
                background-color: #000000;
                width: fit-content;
                color: #ffffff;
            }

                .update-fleet-box .fleet-detail .passenger-list-2 li i {
                    font-size: 16px;
                    padding-right: 5px;
                }

        .update-fleet-box .fleet-detail .info-btn {
            color: #f9b442;
            text-decoration: underline;
            font-weight: 500;
        }

    .update-fleet-box .rate-box {
        margin-top: 30%;
    }

        .update-fleet-box .rate-box h6 {
            font-size: 15px;
            margin-top: 4px;
        }

        .update-fleet-box .rate-box .prize-box {
            text-align: center;
            padding: 4px 0;
            font-size: 20px;
            line-height: 29px;
            color: #000;
            font-weight: 600;
        }

        .update-fleet-box .rate-box .done-btn {
            padding: 0px;
            border-radius: 5px;
            text-align: center;
            color: #000000;
            font-weight: 600;
        }

.right-card {
    background-color: #ebebeb;
    padding: 20px;
    margin-top: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .right-card .top-heading {
        display: flex;
        align-items: center;
        padding: 10px 0 15px;
    }

        .right-card .top-heading i {
            font-size: 24px;
            padding-right: 10px;
            color: #000000;
        }

        .right-card .top-heading h5 {
            font-size: 22px;
            color: #000000;
        }

    .right-card .distance-box {
        padding: 20px 0;
        border-top: 1px solid #000000;
        border-bottom: 1px solid #000000;
    }

        .right-card .distance-box h6 {
            color: #000;
        }

        .right-card .distance-box ul {
            padding: 10px 0 0;
        }

            .right-card .distance-box ul li {
                font-size: 14px;
                padding: 5px 0px;
                color: #000;
            }

                .right-card .distance-box ul li i {
                    font-size: 16px;
                    color: #000000;
                    padding-right: 5px;
                }

    .right-card .cal-mile {
        padding: 10px 0 0;
    }

        .right-card .cal-mile li {
            font-size: 16px;
            padding: 5px 0;
            color: #000;
        }

            .right-card .cal-mile li i {
                padding-right: 5px;
                color: #000000;
            }

    .right-card .distance-box-2 ul li {
        font-size: 14px;
        padding: 5px 0;
        color: #000;
    }

        .right-card .distance-box-2 ul li i {
            font-size: 15px;
            color: #000000;
            padding-right: 3px;
        }

.ui-menu {
    height: 250px !important;
    overflow-y: scroll;
}

.Passenger-Information {
    background: #ebebeb;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .Passenger-Information h3 {
        font-size: 22px;
        font-weight: 600;
        padding-bottom: 5px;
        color: #000000;
    }

    .Passenger-Information .input-box {
        padding-bottom: 10px;
    }

        .Passenger-Information .input-box label {
            text-align: center;
            padding: 4px 0;
            font-size: 16px;
            font-weight: 600;
            line-height: 18px;
            color: #000;
            margin: 0;
        }

        .Passenger-Information .input-box .b-field {
            width: 100%;
            border: 1px solid #ccc !important;
        }

        .Passenger-Information .input-box p {
            font-size: 13px;
            padding: 4px 0;
        }

    .Passenger-Information .input-box-extra {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .Passenger-Information .input-box-extra input {
            margin: 0 !important;
        }

        .Passenger-Information .input-box-extra label {
            padding-left: 10px;
        }

.ui-dialog .ui-dialog-content {
    overflow-y: hidden !important;
}

.ui-dialog .ui-dialog-buttonpane button {
    background: #000 !important;
    padding: 7px 10px !important;
    text-align: center !important;
    color: #ffffff !important;
    border-radius: 7px !important;
}

.ui-menu .ui-menu-item {
    width: 350px !important;
}

.loadingDiv {
    text-align: center;
    background: rgba(0,0,0,0.5) url(images/ajax-loader.gif) no-repeat right center;
    position: fixed;
    display: none;
    z-index: 99999999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}


/************************** All Main Css End **************************/
.sec-inner-services {
    padding: 60px 0;
}

    .sec-inner-services .content-box {
    }

        .sec-inner-services .content-box h3 {
            font-size: 24px;
            color: #cf810c;
            padding: 7px 0 7px;
            letter-spacing: 1px;
            line-height: 20px;
            font-weight: 700;
        }

        .sec-inner-services .content-box h2 {
            font-size: 38px;
            color: #000;
            line-height: 44px;
            padding-bottom: 10px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .sec-inner-services .content-box .para {
            font-size: 16px;
            font-weight: 300;
            color: #000;
            padding-bottom: 10px;
        }

.rs_top-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
/************************** media-query **************************/
@media only screen and (min-width: 1921px) and (max-width: 7368px) {
}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    html {
        overflow-x: hidden;
    }

    .navbar-expand-lg .navbar-nav {
        gap: 15px;
    }

    .padDiv {
        padding: 5px;
    }

        .padDiv h2 {
            font-size: 20px;
        }

    .main-hero .heading-section h1 {
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    html {
        overflow-x: hidden;
    }

    .navbar-expand-lg .navbar-nav {
        gap: 15px;
    }

    .padDiv {
        padding: 5px;
    }

        .padDiv h2 {
            font-size: 20px;
            margin: 0;
        }

    .main-hero .heading-section h1 {
        font-size: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    html {
        overflow-x: hidden;
    }

    .navbar-expand-lg .logo {
        width: 130px;
    }

    .hero-section {
        padding: 30px 0;
    }

    .main-hero .heading-section {
        padding: 20px 0 0;
    }

        .main-hero .heading-section h1 {
            font-size: 30px;
        }

    .rent-details-box {
        border-radius: 15px;
        padding: 25px 15px;
    }

    .about-image {
        margin-right: 0;
        padding-left: 0;
    }

    .about-img-1 {
        width: 100%;
    }

    .section-title {
        margin-top: 20px;
    }

        .section-title h2 {
            font-size: 40px;
        }

    .mainSer {
        height: unset;
    }

    .contact-section h2 {
        font-size: 34px;
    }

    .contact-info {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .center-footer-content {
        margin-left: 0;
    }

    .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

    .banner-section {
        padding: 40px 0;
    }

        .banner-section h2 {
            font-size: 40px;
        }

    .breadcrumb {
        margin-top: 10px;
    }

    .main-ner-image {
        padding: 0px;
        margin: 0 0 10px 0;
    }

    .main-ner-content {
        padding: 10px;
    }

    .sec-result .upper-list {
    }

        .sec-result .upper-list li {
            padding: 7px 0;
        }

            .sec-result .upper-list li .icon-box .img-icon {
                width: 60px;
            }

    .sec-result .number-box {
    }

    .sec-result .for-line::before {
    }

    .sec-result .cancellation-box {
        align-items: center;
        flex-direction: column;
    }

        .sec-result .cancellation-box .text-box {
            padding: 10px;
            text-align: center;
        }

    .update-fleet-box .fleet-detail {
    }

    .update-fleet-box .rate-box {
        margin-top: 0%;
    }

    .sec-result {
        padding: 30px 0;
    }

    .loginlist {
        padding: 1% 20% 0 20% !important;
    }

    .left-footer-content {
        margin-bottom: 20px;
    }

    .paymentbox-vehicle {
        float: unset !important;
        margin: 0 !important;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    html {
        overflow-x: hidden;
    }

    .navbar-expand-lg .logo {
        width: 100px;
    }

    .hero-section {
        padding: 30px 0;
    }

    .main-hero .heading-section {
        padding: 20px 0 0;
    }

        .main-hero .heading-section h1 {
            font-size: 30px;
        }

    .rent-details-box {
        border-radius: 15px;
        padding: 25px 15px;
    }

    .about-image {
        margin-right: 0;
        padding-left: 0;
    }

    .about-img-1 {
        width: 100%;
    }

    .section-title {
        margin-top: 20px;
    }

        .section-title h2 {
            font-size: 40px;
        }

    .mainSer {
        height: unset;
    }

    .contact-section h2 {
        font-size: 34px;
    }

    .contact-info {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .center-footer-content {
        margin-left: 0;
    }

    .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

    .banner-section {
        padding: 40px 0;
    }

        .banner-section h2 {
            font-size: 40px;
        }

    .breadcrumb {
        margin-top: 10px;
    }

    .main-ner-image {
        padding: 0px;
        margin: 0 0 10px 0;
    }

    .main-ner-content {
        padding: 10px;
    }

    .sec-result .upper-list {
        display: none;
    }

        .sec-result .upper-list li {
            padding: 7px 0;
        }

            .sec-result .upper-list li .icon-box .img-icon {
                width: 60px;
            }

    .sec-result .number-box {
        padding: 20px 10px;
    }

    .sec-result .for-line::before {
        left: 82%;
    }

    .sec-result .cancellation-box {
        align-items: center;
        flex-direction: column;
    }

        .sec-result .cancellation-box .text-box {
            padding: 10px;
            text-align: center;
        }

    .update-fleet-box .fleet-detail {
        padding: 10px 0px;
        border-right: unset;
        border-left: unset;
    }

    .update-fleet-box .rate-box {
        margin-top: 0%;
    }

    .sec-result {
        padding: 30px 0;
    }

    .loginlist {
        padding: 1% 0% 0 0% !important;
    }

    .infocont {
        gap: 8px;
        flex-wrap: wrap;
    }

    .welcome {
        height: 400px !important;
        background-size: cover !important;
    }

    .WelComeText {
        margin-top: 232px !important;
        margin-left: 60px !important;
        line-height: 28px !important;
    }

    .WelComeText1 {
        font-size: 30px !important;
    }

    .WelComeText2 {
        font-size: 20px !important;
    }

    .setfield {
        width: unset !important;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    html {
        overflow-x: hidden;
    }

    .navbar-expand-lg .logo {
        width: 100px;
    }

    .hero-section {
        padding: 30px 0;
    }

    .main-hero .heading-section {
        padding: 20px 0 0;
    }

        .main-hero .heading-section h1 {
            font-size: 30px;
        }

    .rent-details-box {
        border-radius: 15px;
        padding: 25px 15px;
    }

    .about-image {
        margin-right: 0;
        padding-left: 0;
    }

    .about-img-1 {
        width: 100%;
    }

    .section-title {
        margin-top: 20px;
    }

        .section-title h2 {
            font-size: 40px;
        }

    .mainSer {
        height: unset;
    }

    .contact-section h2 {
        font-size: 34px;
    }

    .contact-info {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .center-footer-content {
        margin-left: 0;
    }

    .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

    .banner-section {
        padding: 40px 0;
    }

        .banner-section h2 {
            font-size: 40px;
        }

    .breadcrumb {
        margin-top: 10px;
    }

    .main-ner-image {
        padding: 0px;
        margin: 0 0 10px 0;
    }

    .main-ner-content {
        padding: 10px;
    }

    .sec-result .upper-list {
        display: none;
    }

        .sec-result .upper-list li {
            padding: 7px 0;
        }

            .sec-result .upper-list li .icon-box .img-icon {
                width: 60px;
            }

    .sec-result .number-box {
        padding: 20px 10px;
    }

    .sec-result .for-line::before {
        left: 82%;
    }

    .sec-result .cancellation-box {
        align-items: center;
        flex-direction: column;
    }

        .sec-result .cancellation-box .text-box {
            padding: 10px;
            text-align: center;
        }

    .update-fleet-box .fleet-detail {
        padding: 10px 0px;
        border-right: unset;
        border-left: unset;
    }

    .update-fleet-box .rate-box {
        margin-top: 0%;
    }

    .sec-result {
        padding: 30px 0;
    }

    .loginlist {
        padding: 1% 0% 0 0% !important;
    }

    .infocont {
        gap: 8px;
        flex-wrap: wrap;
    }

    .welcome {
        height: 400px !important;
        background-size: cover !important;
    }

    .WelComeText {
        margin-top: 232px !important;
        margin-left: 60px !important;
        line-height: 28px !important;
    }

    .WelComeText1 {
        font-size: 30px !important;
    }

    .WelComeText2 {
        font-size: 20px !important;
    }

    .setfield {
        width: unset !important;
    }
}
