@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&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: #FEC200;
    --secondary-color: #012C57;
    --white-color: #ffffff;
    --black-color: #000000;
}

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;
    font-family: "Open Sans", sans-serif;
}

p, span {
    margin: 0;
    padding: 0;
    font-family: "Google Sans Flex", sans-serif;
}

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 Content Css Strat **************************/
/* mini header css start */
.top-bar {
    width: 100%;
    background: var(--secondary-color);
    padding: 5px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.left-top-bar {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
}

    .left-top-bar a {
        display: flex;
        align-items: center;
        gap: 5px;
        color: var(--white-color);
        font-family: "Google Sans Flex", sans-serif;
        transition: all 0.3s ease-in-out;
    }

        .left-top-bar a i {
            width: 25px;
            height: 25px;
            background: var(--primary-color);
            color: var(--black-color);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            border-radius: 5px;
        }

        .left-top-bar a:hover {
            color: var(--primary-color);
        }

.right-top-bar {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

    .right-top-bar a {
        width: 25px;
        height: 25px;
        background: var(--primary-color);
        color: var(--black-color);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        border-radius: 5px;
        transition: all 0.3s ease-in-out;
    }

        .right-top-bar a:hover {
            background: var(--white-color);
        }
/* mini header css start */
/* header css start */
.main-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    top: 10px;
}

    .main-header .logo {
        width: 130px;
    }

    .main-header .navbar-expand-lg {
        width: 100%;
        background: var(--primary-color);
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
        padding: 5px 0;
    }

        .main-header .navbar-expand-lg .navbar-nav {
            gap: 40px;
            justify-content: flex-end;
            width: 100%;
        }

    .main-header .navbar-light .navbar-nav .nav-link {
        font-size: 16px;
        font-weight: 500;
        color: var(--black-color);
        font-family: "Google Sans Flex", sans-serif;
        transition: all 0.3s ease-in-out;
    }

        .main-header .navbar-light .navbar-nav .nav-link:hover {
            color: var(--white-color);
        }

        .main-header .navbar-light .navbar-nav .nav-link.active {
            color: var(--black-color);
            background: var(--white-color);
            border-radius: 5px;
            padding: 10px 20px;
        }

.header-btns-div {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .header-btns-div .header-btn-1 {
        padding: 8px 25px;
        background: var(--black-color);
        color: var(--white-color);
        font-size: 16px;
        font-weight: 500;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
    }

        .header-btns-div .header-btn-1:hover {
            background: var(--white-color);
            color: var(--black-color);
        }

    .header-btns-div .header-btn-2 {
        padding: 8px 25px;
        background: var(--primary-color);
        color: var(--black-color);
        font-size: 16px;
        font-weight: 500;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
    }

        .header-btns-div .header-btn-2:hover {
            background: var(--black-color);
            color: var(--white-color);
        }

.header-sticky {
    width: 100%;
    position: relative;
    background: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 10;
}

    .header-sticky.sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        animation: fadeInDown 0.5s ease;
    }

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-sticky.sticky {
    padding: 0px 0;
    border-radius: 0;
}

    .header-sticky.sticky .logo {
        width: 130px;
    }

    .header-sticky.sticky .navbar-nav .nav-link {
        color: var(--black-color);
    }
/* header css start */
/* hero section css start */
.hero-section {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.3)), url(../images/hero-image.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10% 0 0%;
}

.hero-content-box {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

    .hero-content-box h1 {
        font-size: 16px;
        font-weight: 700;
        color: var(--white-color);
        margin-bottom: 20px;
        border-radius: 5px;
        letter-spacing: 6px;
        line-height: 1.2em;
        text-transform: uppercase;
    }

    .hero-content-box h2 {
        text-transform: uppercase;
        font-size: 82px;
        letter-spacing: .1em;
        line-height: 1.2em;
        font-weight: 500;
        color: var(--white-color);
        margin-bottom: 20px;
    }

    .hero-content-box p {
        font-size: 16px;
        color: var(--white-color);
        padding: 0 40px;
    }
/* hero section css start */
/* about us section css start */
.about-section {
    width: 100%;
    padding: 40px 0;
    height: 858px;
    position: relative;
    overflow: hidden;
}

.about-image-box {
    width: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.about-image {
    width: 100%;
    height: 858px;
    object-fit: cover;
}

.about-content-box {
    width: 100%;
    padding: 0 30px;
}

    .about-content-box h2 {
        text-transform: uppercase;
        font-size: 40px;
        letter-spacing: .1em;
        line-height: 1.2em;
        margin-bottom: 10px;
        color: var(--black-color);
        font-weight: 600;
    }

    .about-content-box p {
        font-size: 16px;
        color: var(--black-color);
        margin-bottom: 10px;
    }

    .about-content-box h3 {
        text-transform: uppercase;
        font-size: 24px;
        letter-spacing: .1em;
        line-height: 1.2em;
        margin-bottom: 10px;
        color: var(--black-color);
        font-weight: 600;
    }

.about-btn {
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 500;
    background: var(--primary-color);
    color: var(--black-color);
    border-radius: 5px;
    text-align: center;
    font-family: "Google Sans Flex", sans-serif;
    transition: all 0.3s ease-in-out;
}

    .about-btn:hover {
        background: var(--black-color);
        color: var(--white-color);
    }

.about-section-height-adjust {
    height: 62vh;
}

.about-image-height-adjust {
    height: 62vh;
}
/* about us section css start */
/* rates section css start */
.rates-section {
    width: 100%;
    padding: 40px 0;
    background: var(--black-color);
}

    .rates-section .rates-heading h2 {
        text-transform: uppercase;
        font-size: 40px;
        letter-spacing: .1em;
        line-height: 1.2em;
        margin-bottom: 20px;
        color: var(--white-color);
        font-weight: 600;
    }

    .rates-section .rates-heading p {
        color: var(--white-color);
        font-size: 16px;
    }

.rates-card-box {
    width: 100%;
    background: var(--white-color);
    margin-top: 20px;
    height: 780px;
}

.rates-image-box {
    width: 100%;
}

.rates-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.rates-content-box {
    width: 100%;
    padding: 30px;
}

    .rates-content-box h2 {
        text-transform: uppercase;
        font-size: 20px;
        margin-bottom: 20px;
        color: var(--black-color);
        font-weight: 600;
        text-align: center;
    }

.rates-detail-box {
    width: 100%;
    padding: 25px;
    border: 2px solid var(--primary-color);
    margin-bottom: 20px;
}

    .rates-detail-box p {
        text-align: center;
        font-size: 16px;
        color: var(--black-color);
    }

.rates-detail-box-2 {
    width: 100%;
    padding: 25px;
    border: 2px solid var(--black-color);
    margin-bottom: 20px;
}

    .rates-detail-box-2 p {
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        color: var(--primary-color);
    }

    .rates-detail-box-2 ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        justify-content: center;
        text-align: start;
        margin-top: 10px;
    }

        .rates-detail-box-2 ul li {
            list-style: disc;
            margin-left: 20px;
        }

.rates-below-content-box {
    width: 100%;
    margin-top: 40px;
    text-align: center;
}

    .rates-below-content-box h2 {
        text-transform: uppercase;
        font-size: 28px;
        letter-spacing: .1em;
        line-height: 1.2em;
        margin-bottom: 20px;
        color: var(--primary-color);
        font-weight: 600;
    }

    .rates-below-content-box p {
        font-size: 16px;
        color: var(--white-color);
        margin-bottom: 10px;
    }

        .rates-below-content-box p span {
            color: var(--primary-color);
        }

.rate-about-ifo {
    width: 100%;
    padding: 10px 0;
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 10px;
}

    .rate-about-ifo ul li {
        list-style: disc;
        margin-left: 20px;
        color: var(--white-color);
    }

        .rate-about-ifo ul li::marker {
            color: var(--primary-color);
        }

.rates-content-box-new {
    width: 100%;
}

    .rates-content-box-new p {
        font-size: 16px;
        color: var(--white-color);
        margin-bottom: 10px;
    }

    .rates-content-box-new h3 {
        text-transform: uppercase;
        font-size: 24px;
        letter-spacing: .1em;
        line-height: 1.2em;
        margin-bottom: 10px;
        color: var(--white-color);
        font-weight: 600;
    }

    .rates-content-box-new h1 {
        text-transform: uppercase;
        font-size: 42px;
        letter-spacing: .1em;
        line-height: 1.2em;
        margin-bottom: 10px;
        color: var(--primary-color);
        font-weight: 600;
    }

.main-cards-section {
    width: 100%;
    margin-top: 60px;
}
/* rates section css start */
/* app section start */
.app-section {
    width: 100%;
    padding: 40px 0;
    background: #000;
}

    .app-section .app-heading {
        width: 100%;
    }

        .app-section .app-heading h2 {
            font-size: 32px;
            font-weight: 700;
            width: fit-content;
            margin: 0 auto;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
            color: #fff;
        }

        .app-section .app-heading h3 {
            font-size: 52px;
            font-weight: 700;
            margin-top: 80px;
            margin-left: 10px;
            color: #fff;
        }

.main-app-content {
    width: 100%;
    background: #fec200;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 60px;
    border-radius: 15px;
    margin-top: 40px;
    border-radius: 20px;
    position: relative;
}

    .main-app-content .app-text-content {
        width: 100%;
    }

        .main-app-content .app-text-content .app-papr {
            font-size: 16px;
            margin-bottom: 20px;
            color: #000000;
        }

.download-app-buttons {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
}

    .download-app-buttons .app-btn {
        width: 50px;
        height: 50px;
        background: #000000;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 50%;
        transition: all 0.3s ease-in-out;
    }

        .download-app-buttons .app-btn:hover {
            background: var(--white-color);
        }

        .download-app-buttons .app-btn i {
            font-size: 22px;
            color: var(--white-color);
            transition: all 0.3s ease-in-out;
        }

        .download-app-buttons .app-btn:hover i {
            color: var(--primary-color);
        }

    .download-app-buttons p {
        color: #000000;
        font-size: 16px;
    }

.app-screen-image {
    position: absolute;
    top: -290px;
    right: 50px;
}

    .app-screen-image .app-screen {
        width: 100%;
        height: 650px;
        object-fit: contain;
    }
/* app section start */
/* booking form section css start */
.booking-form-section {
    width: 100%;
    padding: 40px 0;
}

.booking-heading {
    width: 100%;
    text-align: center;
}

    .booking-heading h2 {
        text-transform: uppercase;
        font-size: 50px;
        letter-spacing: .1em;
        line-height: 1.2em;
        color: var(--black-color);
        margin-bottom: 10px;
        margin-bottom: 20px;
    }

.hero-form-box {
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    background: #ffffff24;
    border: 3px solid var(--primary-color);
}

.form-input-div {
    width: 100%;
    padding: 0px 10px;
    display: flex;
    align-items: center;
    gap: 0px;
    border: 2px solid var(--black-color);
    border-radius: 5px;
    margin-bottom: 15px;
}

    .form-input-div i {
        width: 33px;
        height: 30px;
        background: var(--primary-color);
        color: var(--black-color);
        font-size: 14px;
        border-radius: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.form-input-style {
    width: 100%;
    border: none;
    padding: 10px;
    font-size: 16px;
    color: var(--black-color);
    background: transparent;
    font-family: "Google Sans Flex", sans-serif;
}

    .form-input-style option {
        color: var(--black-color);
    }

    .form-input-style:focus {
        border: none;
        outline: none;
        box-shadow: none;
    }

    .form-input-style::placeholder {
        color: var(--black-color);
    }

.form-btn {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    background: var(--primary-color);
    color: var(--black-color);
    border-radius: 5px;
    text-align: center;
    font-family: "Google Sans Flex", sans-serif;
    transition: all 0.3s ease-in-out;
}

    .form-btn:hover {
        background: var(--black-color);
        color: var(--white-color);
    }

.flatpickr-day.today {
    border-color: #fec200 !important;
}

.flatpickr-day.selected {
    background: #fec200 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #000000 !important;
    border-color: #fec200 !important;
}

.flatpickr-day:hover {
    background: #fec200 !important;
    border-color: #fec200 !important;
}
/* booking form section css start */
/* contact section css start */
.contact-section {
    width: 100%;
    padding: 40px 0;
    background: #f5f4f4;
}

.contact-heading {
    width: 100%;
    text-align: start;
    margin-bottom: 40px;
}

    .contact-heading h2 {
        font-size: 42px;
        font-weight: 700;
        color: var(--black-color);
        letter-spacing: .1em;
        line-height: 1.2em;
        text-transform: uppercase;
    }

.main-contact-info-box {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
}

.top-content-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content-icon-box {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

    .content-icon-box i {
        font-size: 18px;
        color: var(--black-color);
    }

.content-info-box a {
    font-size: 18px;
    color: var(--black-color);
    transition: all 0.3s ease-in-out;
}

    .content-info-box a:hover {
        color: var(--primary-color);
    }

.content-info-box p {
    font-size: 18px;
    color: var(--black-color);
}

.main-contactus-form {
    width: 100%;
    padding: 60px 0 0 0;
}

    .main-contactus-form h2 {
        font-size: 32px;
        font-weight: 700;
        color: var(--black-color);
        letter-spacing: .1em;
        line-height: 1.2em;
        text-transform: uppercase;
    }

.main-form {
    width: 100%;
    margin-top: 40px;
}

.contact-form-input-box {
    width: 100%;
    background: var(--white-color);
    padding: 0 0 0 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.contact-form-input-box-textarea {
    width: 100%;
    background: #ffffff;
    padding: 0 0 0 10px;
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.contact-form-input-box i {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(--black-color);
}

.contact-form-input-box-textarea i {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(--black-color);
    margin-top: 10px;
}

.contact-form-input-box .contact-form-input {
    width: 100%;
    padding: 12px 15px 12px 5px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--black-color);
    font-size: 16px;
}

.contact-form-input-box-textarea .contact-form-input {
    width: 100%;
    padding: 12px 15px 12px 5px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--black-color);
    font-size: 16px;
}

.contact-form-input-box .contact-form-input:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.contact-form-input-box-textarea .contact-form-input:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.contact-form-input-box .contact-form-input::placeholder {
    color: var(--black-color);
}

.contact-form-input-box-textarea .contact-form-input::placeholder {
    color: var(--black-color);
}

.contact-form-btn {
    padding: 8px 25px;
    font-size: 16px;
    font-weight: 500;
    background: var(--primary-color);
    color: #000000;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

    .contact-form-btn:hover {
        background: var(--black-color);
        color: var(--white-color);
    }

    .contact-form-btn i {
        color: var(--white-color);
        margin-left: 10px;
    }

.main-contactus-form-padding-adjust {
    padding: 0;
}
/* contact section css start */
/* services section css start */
.services-section {
    width: 100%;
    padding: 40px 0;
}

.service-content-box {
    width: 100%;
}

    .service-content-box h2 {
        font-size: 32px;
        font-weight: 700;
        color: var(--black-color);
        letter-spacing: .1em;
        line-height: 1.2em;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .service-content-box p {
        font-size: 16px;
        color: var(--black-color);
        margin-bottom: 10px;
    }

.service-info {
    width: 100%;
    padding: 10px 0;
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 10px;
}

    .service-info ul li {
        list-style: disc;
        margin-left: 20px;
        color: var(--black-color);
    }
/* services section css start */
/* footer section css */
.footer {
    width: 100%;
    height: 100%;
    padding: 40px 0;
    background: var(--primary-color);
}

    .footer .footer-logo {
        width: 180px;
        padding: 10px;
        background: #fff;
        border-radius: 10px;
    }

.left-footer-content {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

    .left-footer-content a {
        color: var(--white-color);
        margin-bottom: 10px;
    }

        .left-footer-content a h1 {
            font-weight: 600;
        }

.center-footer-content {
    width: 100%;
}

    .center-footer-content h2 {
        font-weight: 600;
        font-size: 24px;
        color: var(--black-color);
    }

.footer_ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 6px;
    margin-top: 10px;
}

    .footer_ul .footer_li {
        list-style: disc;
        color: var(--black-color);
        margin-left: 20px;
    }

        .footer_ul .footer_li a {
            color: var(--black-color);
            transform: translateX(0px);
            font-size: 17px;
            font-weight: 500;
            font-family: "Google Sans Flex", sans-serif;
            transition: all 0.3s ease-in-out;
        }

            .footer_ul .footer_li a:hover {
                transform: translateX(10px);
            }

            .footer_ul .footer_li a i {
                padding-right: 7px;
            }

.right-footer-content h2 {
    font-weight: 600;
    font-size: 24px;
    color: var(--black-color);
}

.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(--black-color);
    font-weight: 500;
    font-size: 17px;
    font-family: "Google Sans Flex", sans-serif;
    transition: all 0.3s ease-in-out;
}

    .getin_touch a:hover {
        color: var(--white-color);
    }

    .getin_touch a i {
        padding-right: 7px;
    }

.getin_touch p {
    color: var(--primary-color);
}

.last-footer-content h2 {
    font-weight: 600;
    font-size: 24px;
    color: var(--black-color);
}

.social-icons {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}

.bootom-footer-section {
    width: 100%;
    background: var(--white-color);
    padding: 10px;
    color: var(--black-color);
    text-align: center;
}

    .bootom-footer-section a {
        color: var(--black-color);
        transition: all 0.3s ease-in-out;
    }

        .bootom-footer-section a:hover {
            color: var(--primary-color);
        }

.social-media-icons {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 7px;
}

    .social-media-icons .social-links {
        width: 40px;
        height: 40px;
        background: var(--black-color);
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--white-color);
        border-radius: 5px;
        transition: all 0.3s ease-in-out;
    }

        .social-media-icons .social-links:hover {
            background: var(--white-color);
            color: var(--black-color);
        }

        .social-media-icons .social-links i {
            color: var(--white-color);
            font-size: 16px;
            transition: all 0.3s ease-in-out;
        }

        .social-media-icons .social-links:hover i {
            color: var(--black-color);
        }
/* footer section css */
/* Result Pages Css Start */
.sec-result {
    padding: 60px 0;
    /*margin-top: 140px;*/
}

    .sec-result .upper-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 7px 16px;
        background: #edf2fa;
        border: 2px solid #000;
        border-radius: 10px;
    }

        .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: #edf2fa;
                        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: #fec200 !important;
        color: #000000 !important;
    }

    .sec-result .for-line {
        position: relative
    }

        .sec-result .for-line::before {
            content: '';
            background-color: #000000;
            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: #edf2fa;
    margin: 20px 0;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 2px solid #000;
    border-radius: 10px;
}

    .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: #000000;
                background-color: #fec200;
                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 #fec200;
                margin: 6px 0;
                border-radius: 6px;
                font-size: 12px;
                background-color: #fec200;
                width: fit-content;
                color: #000000;
            }

                .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: 10%;
    }

        .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: #edf2fa;
    padding: 20px;
    margin-top: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 2px solid #000;
    border-radius: 10px;
}

    .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 {
    width: 350px !important;
    height: 250px !important;
    overflow-y: scroll;
}

.Passenger-Information {
    background: #edf2fa;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 2px solid #000;
    border-radius: 10px;
}

    .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%;
}

.extra-sec-padding {
    margin-top: 150px;
}

#lkbtn_lgout {
    padding: 0;
}
/* Result Pages Css Start */
/* inner pages banner css */
.banner-section {
    width: 100%;
    padding: 0px 0;
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../images/rates-bg-image.jpg);
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    bottom: 0;
}

    .banner-section h2 {
        font-size: 52px;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: .1em;
        line-height: 1.2em;
        text-transform: uppercase;
        margin-top: 170px;
    }

.breadcrumb {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.breadcrumb-item a {
    color: #ffffff;
    font-family: "Google Sans Flex", sans-serif;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #ffffff;
    font-family: "Google Sans Flex", sans-serif;
}

.breadcrumb-item.active {
    color: #fec200;
    font-weight: 700;
    font-family: "Google Sans Flex", sans-serif;
}
/* inner pages banner css */
/* Popup Button Style */
.swal2-confirm {
    background-color: var(--primary-color) !important;
    color: var(--black-color) !important;
}

.swal2-title {
    color: var(--black-color) !important;
}
/* Popup Button Style */
/*sec-privacy*/
.sec-privacy {
    padding: 60px 0 60px;
}

    .sec-privacy .content-box {
    }

        .sec-privacy .content-box h1 {
            text-transform: capitalize;
            position: relative;
            line-height: 25px;
            color: var(--black-color);
            font-weight: 700;
            font-size: 22px;
            padding: 10px 20px;
            margin: 0 auto 20px;
            text-align: center;
            background-color: var(--primary-color);
            width: fit-content;
            border-radius: 10px;
        }

        .sec-privacy .content-box h2 {
            text-transform: capitalize;
            position: relative;
            line-height: 25px;
            color: var(--black-color);
            font-weight: 700;
            font-size: 22px;
            padding: 10px 0;
            margin: 0;
        }

        .sec-privacy .content-box h3 {
            text-transform: capitalize;
            position: relative;
            padding-bottom: 0px;
            color: var(--black-color);
            font-weight: 700;
            font-size: 18px;
            margin: 0;
        }

        .sec-privacy .content-box ul {
            padding-left: 30px;
            padding-bottom: 10px;
            list-style: none;
        }

            .sec-privacy .content-box ul li {
                padding: 3px 0;
                font-size: 16px;
            }

                .sec-privacy .content-box ul li i {
                    color: var(--primary-color);
                    font-size: 16px;
                    padding-right: 7px;
                }

                .sec-privacy .content-box ul li span {
                }

        .sec-privacy .content-box .para {
            color: var(--black-color);
            padding: 5px 0;
            margin: 0;
            font-size: 15px;
        }

        .sec-privacy .content-box h6 a {
            font-size: 16px;
            color: var(--primary-color);
            text-decoration: underline;
        }

        .sec-privacy .content-box h6 span {
            font-weight: 700;
            font-size: 15px;
            color: var(--black-color);
            padding-right: 5px;
        }
/*sec-privacy*/
/************************** All Main Content Css 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) {
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .left-top-bar {
        gap: 10px;
    }

    .right-top-bar {
        gap: 10px;
    }

    .left-top-bar a {
        font-size: 14px !important;
    }

    .main-header .logo {
        width: 100px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        gap: 20px;
    }

    .main-header .navbar-light .navbar-nav .nav-link.active {
        padding: 8px 16px;
        font-size: 14px;
    }

    .main-header .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
    }

    .hero-section {
        height: auto;
        padding: 25% 0 15%;
    }

    .hero-content-box h1 {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .hero-content-box h2 {
        font-size: 60px;
        margin-bottom: 0px;
    }

    .about-content-box {
        padding: 0 10px;
    }

        .about-content-box p {
            font-size: 14px;
            margin-bottom: 5px;
        }

    .about-section {
        padding: 20px 0 40px;
    }

    .about-section-height-adjust {
        height: 64vh;
    }

    .about-image-height-adjust {
        height: 64vh;
    }

    .app-section .app-heading h2 {
        font-size: 24px;
        padding-bottom: 5px;
    }

    .app-section .app-heading h3 {
        font-size: 34px;
        margin-top: 40px;
    }

    .main-app-content {
        margin-top: 20px;
        border-radius: 10px;
        padding: 30px 20px;
    }

        .main-app-content .app-text-content .app-papr {
            font-size: 14px;
            margin-bottom: 10px;
        }

    .download-app-buttons {
        gap: 10px;
    }

        .download-app-buttons p {
            font-size: 14px;
        }

        .download-app-buttons .app-btn {
            width: 35px;
            height: 35px;
        }

            .download-app-buttons .app-btn i {
                font-size: 14px;
            }

    .app-screen-image {
        top: -210px;
        right: 20px;
    }

        .app-screen-image .app-screen {
            height: 400px;
        }

    .booking-heading h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .hero-form-box {
        padding: 15px;
    }

    .form-input-style {
        font-size: 14px;
    }

    .form-btn {
        font-size: 14px;
    }

    .contact-heading {
        margin-bottom: 10px;
    }

        .contact-heading h2 {
            font-size: 32px;
        }

    .content-icon-box {
        width: 35px;
        height: 35px;
    }

        .content-icon-box i {
            font-size: 14px;
        }

    .content-info-box a {
        font-size: 14px;
    }

    .content-info-box p {
        font-size: 14px;
    }

    .main-contactus-form {
        padding: 30px 0 0 0;
    }

        .main-contactus-form h2 {
            font-size: 24px;
        }

    .main-form {
        margin-top: 20px;
    }

    .contact-form-input-box {
        margin-bottom: 15px;
    }

        .contact-form-input-box .contact-form-input {
            padding: 12px 15px 12px 0px;
            font-size: 14px;
        }

        .contact-form-input-box i {
            width: 25px;
            height: 25px;
            font-size: 12px;
        }

    .contact-form-input-box-textarea .contact-form-input {
        font-size: 14px;
    }

    .contact-form-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .footer .footer-logo {
        width: 150px;
        padding: 5px;
    }

    .social-media-icons .social-links {
        width: 35px;
        height: 35px;
    }

        .social-media-icons .social-links i {
            font-size: 14px;
        }

    .center-footer-content h2 {
        font-size: 18px;
    }

    .last-footer-content h2 {
        font-size: 18px;
    }

    .right-footer-content h2 {
        font-size: 18px;
    }

    .footer_ul {
        gap: 5px;
        padding: 2px;
        margin-top: 5px;
    }

        .footer_ul .footer_li a {
            font-size: 14px;
        }

    .right-footer-content .getin_touch {
        gap: 5px;
        margin-top: 5px;
    }

    .getin_touch a {
        font-size: 14px;
    }

    .bottom-footer-content p {
        font-size: 14px;
    }

    .banner-section {
        height: 35vh;
    }

        .banner-section h2 {
            font-size: 32px;
        }

    .breadcrumb {
        margin-top: 5px;
    }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .rates-content-box-new h1 {
        font-size: 32px;
        margin-bottom: 5px;
    }

    .rates-content-box-new p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .rates-content-box-new h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .rate-about-ifo {
        padding: 5px 0;
        margin-bottom: 5px;
    }

        .rate-about-ifo ul li {
            font-size: 14px;
        }

    .main-cards-section {
        margin-top: 20px;
    }

    .rates-content-box {
        padding: 10px;
    }

        .rates-content-box h2 {
            font-size: 16px;
            margin-bottom: 10px;
        }

    .rates-detail-box {
        padding: 10px;
        margin-bottom: 10px;
    }

        .rates-detail-box p {
            font-size: 14px;
        }

    .rates-detail-box-2 {
        padding: 10px;
        margin-bottom: 10px;
    }

        .rates-detail-box-2 p {
            font-size: 14px;
        }

        .rates-detail-box-2 ul li {
            font-size: 14px;
        }

    .rates-card-box {
        height: 530px;
    }

    .rates-image {
        height: 200px;
    }

    .rates-below-content-box h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .rates-below-content-box p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .service-content-box h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .service-content-box p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .service-info {
        padding: 5px 0;
        margin-bottom: 5px;
    }

        .service-info ul li {
            font-size: 14px;
        }

    .ui-menu {
        width: 240px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .left-top-bar {
        gap: 10px;
    }

    .right-top-bar {
        gap: 10px;
    }

    .left-top-bar a {
        font-size: 14px !important;
    }

    .main-header .logo {
        width: 100px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        gap: 10px;
        justify-content: center;
        align-items: center;
        padding: 0px 0 10px 0;
    }

    .main-header .navbar-light .navbar-nav .nav-link.active {
        padding: 8px 16px;
        font-size: 14px;
    }

    .main-header .navbar-light .navbar-nav .nav-link {
        width: fit-content;
        font-size: 14px;
    }

    .hero-section {
        height: auto;
        padding: 28% 0 12%;
    }

    .hero-content-box h1 {
        font-size: 12px;
        margin-bottom: 10px;
        letter-spacing: 2px;
    }

    .hero-content-box h2 {
        font-size: 42px;
        margin-bottom: 0px;
    }

    .about-content-box {
        padding: 0 10px;
    }

        .about-content-box p {
            font-size: 14px;
            margin-bottom: 5px;
        }

    .about-section {
        padding: 20px 0 40px;
    }

    .about-section-height-adjust {
        height: auto;
    }

    .about-image-height-adjust {
        height: auto;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .app-section .app-heading h2 {
        font-size: 24px;
        padding-bottom: 5px;
    }

    .app-section .app-heading h3 {
        font-size: 34px;
        margin-top: 40px;
    }

    .main-app-content {
        margin-top: 20px;
        border-radius: 10px;
        padding: 30px 20px;
    }

        .main-app-content .app-text-content .app-papr {
            font-size: 14px;
            margin-bottom: 10px;
        }

    .download-app-buttons {
        gap: 10px;
    }

        .download-app-buttons p {
            font-size: 14px;
        }

        .download-app-buttons .app-btn {
            width: 35px;
            height: 35px;
        }

            .download-app-buttons .app-btn i {
                font-size: 14px;
            }

    .app-screen-image {
        top: -210px;
        right: 20px;
    }

        .app-screen-image .app-screen {
            height: 400px;
        }

    .booking-heading h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .hero-form-box {
        padding: 15px;
    }

    .form-input-style {
        font-size: 14px;
    }

    .form-btn {
        font-size: 14px;
    }

    .contact-heading {
        margin-bottom: 10px;
    }

        .contact-heading h2 {
            font-size: 32px;
        }

    .content-icon-box {
        width: 35px;
        height: 35px;
    }

        .content-icon-box i {
            font-size: 14px;
        }

    .content-info-box a {
        font-size: 14px;
    }

    .content-info-box p {
        font-size: 14px;
    }

    .main-contactus-form {
        padding: 30px 0 0 0;
    }

        .main-contactus-form h2 {
            font-size: 24px;
        }

    .main-form {
        margin-top: 20px;
    }

    .contact-form-input-box {
        margin-bottom: 15px;
    }

        .contact-form-input-box .contact-form-input {
            padding: 12px 15px 12px 0px;
            font-size: 14px;
        }

        .contact-form-input-box i {
            width: 25px;
            height: 25px;
            font-size: 12px;
        }

    .contact-form-input-box-textarea .contact-form-input {
        font-size: 14px;
    }

    .contact-form-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .footer .footer-logo {
        width: 150px;
        padding: 5px;
    }

    .social-media-icons .social-links {
        width: 35px;
        height: 35px;
    }

        .social-media-icons .social-links i {
            font-size: 14px;
        }

    .center-footer-content h2 {
        font-size: 18px;
        margin-top: 10px;
    }

    .last-footer-content h2 {
        font-size: 18px;
        margin-top: 10px;
    }

    .right-footer-content h2 {
        font-size: 18px;
        margin-top: 10px;
    }

    .footer_ul {
        gap: 5px;
        padding: 2px;
        margin-top: 5px;
    }

        .footer_ul .footer_li a {
            font-size: 14px;
        }

    .right-footer-content .getin_touch {
        gap: 5px;
        margin-top: 5px;
    }

    .getin_touch a {
        font-size: 14px;
    }

    .bottom-footer-content p {
        font-size: 14px;
    }

    .banner-section {
        height: 35vh;
    }

        .banner-section h2 {
            font-size: 32px;
        }

    .breadcrumb {
        margin-top: 5px;
    }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .rates-content-box-new h1 {
        font-size: 26px;
        margin-bottom: 5px;
    }

    .rates-content-box-new p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .rates-content-box-new h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .rate-about-ifo {
        padding: 5px 0;
        margin-bottom: 5px;
    }

        .rate-about-ifo ul li {
            font-size: 14px;
        }

    .main-cards-section {
        margin-top: 20px;
    }

    .rates-content-box {
        padding: 30px;
    }

        .rates-content-box h2 {
            font-size: 16px;
            margin-bottom: 10px;
        }

    .rates-detail-box {
        padding: 10px;
        margin-bottom: 10px;
    }

        .rates-detail-box p {
            font-size: 14px;
        }

    .rates-detail-box-2 {
        padding: 10px;
        margin-bottom: 10px;
    }

        .rates-detail-box-2 p {
            font-size: 14px;
        }

        .rates-detail-box-2 ul li {
            font-size: 14px;
        }

    .rates-card-box {
        height: auto;
    }

    .rates-image {
        height: 200px;
    }

    .rates-below-content-box h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .rates-below-content-box p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .service-content-box h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .service-content-box p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .service-info {
        padding: 5px 0;
        margin-bottom: 5px;
    }

        .service-info ul li {
            font-size: 14px;
        }

    .ui-menu {
        width: 80% !important;
    }

    .about-image-box {
        width: 100%;
        position: relative;
    }

    .header-sticky.sticky .logo {
        width: 100px;
    }

    .sec-result .upper-list {
        display: none;
    }

    .sec-result .number-box {
        padding: 10px 0px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .left-top-bar {
        gap: 10px;
    }

    .right-top-bar {
        gap: 10px;
    }

    .left-top-bar a {
        font-size: 14px !important;
    }

    .main-header .logo {
        width: 100px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        gap: 10px;
        justify-content: center;
        align-items: center;
        padding: 0px 0 10px 0;
    }

    .main-header .navbar-light .navbar-nav .nav-link.active {
        padding: 8px 16px;
        font-size: 14px;
    }

    .main-header .navbar-light .navbar-nav .nav-link {
        width: fit-content;
        font-size: 14px;
    }

    .hero-section {
        height: auto;
        padding: 28% 0 12%;
    }

    .hero-content-box h1 {
        font-size: 12px;
        margin-bottom: 10px;
        letter-spacing: 2px;
    }

    .hero-content-box h2 {
        font-size: 42px;
        margin-bottom: 0px;
    }

    .about-content-box {
        padding: 0 10px;
    }

        .about-content-box p {
            font-size: 14px;
            margin-bottom: 5px;
        }

    .about-section {
        padding: 20px 0 40px;
    }

    .about-section-height-adjust {
        height: auto;
    }

    .about-image-height-adjust {
        height: auto;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .app-section .app-heading h2 {
        font-size: 24px;
        padding-bottom: 5px;
    }

    .app-section .app-heading h3 {
        font-size: 34px;
        margin-top: 40px;
    }

    .main-app-content {
        margin-top: 20px;
        border-radius: 10px;
        padding: 30px 20px;
    }

        .main-app-content .app-text-content .app-papr {
            font-size: 14px;
            margin-bottom: 10px;
        }

    .download-app-buttons {
        gap: 10px;
    }

        .download-app-buttons p {
            font-size: 14px;
        }

        .download-app-buttons .app-btn {
            width: 35px;
            height: 35px;
        }

            .download-app-buttons .app-btn i {
                font-size: 14px;
            }

    .app-screen-image {
        top: -210px;
        right: 20px;
    }

        .app-screen-image .app-screen {
            height: 400px;
        }

    .booking-heading h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .hero-form-box {
        padding: 15px;
    }

    .form-input-style {
        font-size: 14px;
    }

    .form-btn {
        font-size: 14px;
    }

    .contact-heading {
        margin-bottom: 10px;
    }

        .contact-heading h2 {
            font-size: 32px;
        }

    .content-icon-box {
        width: 35px;
        height: 35px;
    }

        .content-icon-box i {
            font-size: 14px;
        }

    .content-info-box a {
        font-size: 14px;
    }

    .content-info-box p {
        font-size: 14px;
    }

    .main-contactus-form {
        padding: 30px 0 0 0;
    }

        .main-contactus-form h2 {
            font-size: 24px;
        }

    .main-form {
        margin-top: 20px;
    }

    .contact-form-input-box {
        margin-bottom: 15px;
    }

        .contact-form-input-box .contact-form-input {
            padding: 12px 15px 12px 0px;
            font-size: 14px;
        }

        .contact-form-input-box i {
            width: 25px;
            height: 25px;
            font-size: 12px;
        }

    .contact-form-input-box-textarea .contact-form-input {
        font-size: 14px;
    }

    .contact-form-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .footer .footer-logo {
        width: 150px;
        padding: 5px;
    }

    .social-media-icons .social-links {
        width: 35px;
        height: 35px;
    }

        .social-media-icons .social-links i {
            font-size: 14px;
        }

    .center-footer-content h2 {
        font-size: 18px;
        margin-top: 10px;
    }

    .last-footer-content h2 {
        font-size: 18px;
        margin-top: 10px;
    }

    .right-footer-content h2 {
        font-size: 18px;
        margin-top: 10px;
    }

    .footer_ul {
        gap: 5px;
        padding: 2px;
        margin-top: 5px;
    }

        .footer_ul .footer_li a {
            font-size: 14px;
        }

    .right-footer-content .getin_touch {
        gap: 5px;
        margin-top: 5px;
    }

    .getin_touch a {
        font-size: 14px;
    }

    .bottom-footer-content p {
        font-size: 14px;
    }

    .banner-section {
        height: 35vh;
    }

        .banner-section h2 {
            font-size: 32px;
        }

    .breadcrumb {
        margin-top: 5px;
    }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .rates-content-box-new h1 {
        font-size: 26px;
        margin-bottom: 5px;
    }

    .rates-content-box-new p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .rates-content-box-new h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .rate-about-ifo {
        padding: 5px 0;
        margin-bottom: 5px;
    }

        .rate-about-ifo ul li {
            font-size: 14px;
        }

    .main-cards-section {
        margin-top: 20px;
    }

    .rates-content-box {
        padding: 30px;
    }

        .rates-content-box h2 {
            font-size: 16px;
            margin-bottom: 10px;
        }

    .rates-detail-box {
        padding: 10px;
        margin-bottom: 10px;
    }

        .rates-detail-box p {
            font-size: 14px;
        }

    .rates-detail-box-2 {
        padding: 10px;
        margin-bottom: 10px;
    }

        .rates-detail-box-2 p {
            font-size: 14px;
        }

        .rates-detail-box-2 ul li {
            font-size: 14px;
        }

    .rates-card-box {
        height: auto;
    }

    .rates-image {
        height: 200px;
    }

    .rates-below-content-box h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .rates-below-content-box p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .service-content-box h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .service-content-box p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .service-info {
        padding: 5px 0;
        margin-bottom: 5px;
    }

        .service-info ul li {
            font-size: 14px;
        }

    .ui-menu {
        width: 80% !important;
    }

    .about-image-box {
        width: 100%;
        position: relative;
    }

    .header-sticky.sticky .logo {
        width: 100px;
    }

    .sec-result .upper-list {
        display: none;
    }

    .sec-result .number-box {
        padding: 10px 0px;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .left-top-bar {
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .right-top-bar {
        gap: 10px;
        justify-content: center;
        margin-top: 8px;
    }

    .left-top-bar a {
        font-size: 14px !important;
    }

    .main-header .logo {
        width: 100px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        gap: 10px;
        justify-content: center;
        align-items: center;
        padding: 0px 0 10px 0;
    }

    .main-header .navbar-light .navbar-nav .nav-link.active {
        padding: 8px 16px;
        font-size: 14px;
    }

    .main-header .navbar-light .navbar-nav .nav-link {
        width: fit-content;
        font-size: 14px;
    }

    .hero-section {
        height: 45vh;
        padding: 30% 0 0;
    }

    .hero-content-box h1 {
        font-size: 12px;
        margin-bottom: 10px;
        letter-spacing: 2px;
    }

    .hero-content-box h2 {
        font-size: 24px;
        margin-bottom: 0px;
    }

    .about-content-box {
        padding: 0 10px;
    }

        .about-content-box p {
            font-size: 14px;
            margin-bottom: 5px;
        }

    .about-section {
        padding: 20px 0 40px;
    }

    .about-section-height-adjust {
        height: auto;
    }

    .about-image-height-adjust {
        height: auto;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .app-section .app-heading h2 {
        font-size: 24px;
        padding-bottom: 5px;
    }

    .app-section .app-heading h3 {
        font-size: 34px;
        margin-top: 40px;
    }

    .main-app-content {
        margin-top: 20px;
        border-radius: 10px;
        padding: 30px 20px;
    }

        .main-app-content .app-text-content .app-papr {
            font-size: 14px;
            margin-bottom: 10px;
        }

    .download-app-buttons {
        gap: 10px;
    }

        .download-app-buttons p {
            font-size: 14px;
        }

        .download-app-buttons .app-btn {
            width: 35px;
            height: 35px;
        }

            .download-app-buttons .app-btn i {
                font-size: 14px;
            }

    .app-screen-image {
        top: 0;
        right: 0;
        position: relative;
    }

        .app-screen-image .app-screen {
            height: 400px;
        }

    .booking-heading h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .hero-form-box {
        padding: 15px;
    }

    .form-input-style {
        font-size: 14px;
    }

    .form-btn {
        font-size: 14px;
    }

    .contact-heading {
        margin-bottom: 10px;
    }

        .contact-heading h2 {
            font-size: 32px;
        }

    .content-icon-box {
        width: 35px;
        height: 35px;
    }

        .content-icon-box i {
            font-size: 14px;
        }

    .content-info-box a {
        font-size: 14px;
    }

    .content-info-box p {
        font-size: 14px;
    }

    .main-contactus-form {
        padding: 30px 0 0 0;
    }

        .main-contactus-form h2 {
            font-size: 24px;
        }

    .main-form {
        margin-top: 20px;
    }

    .contact-form-input-box {
        margin-bottom: 15px;
    }

        .contact-form-input-box .contact-form-input {
            padding: 12px 15px 12px 0px;
            font-size: 14px;
        }

        .contact-form-input-box i {
            width: 25px;
            height: 25px;
            font-size: 12px;
        }

    .contact-form-input-box-textarea .contact-form-input {
        font-size: 14px;
    }

    .contact-form-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .footer .footer-logo {
        width: 150px;
        padding: 5px;
    }

    .social-media-icons .social-links {
        width: 35px;
        height: 35px;
    }

        .social-media-icons .social-links i {
            font-size: 14px;
        }

    .center-footer-content h2 {
        font-size: 18px;
        margin-top: 10px;
    }

    .last-footer-content h2 {
        font-size: 18px;
        margin-top: 10px;
    }

    .right-footer-content h2 {
        font-size: 18px;
        margin-top: 10px;
    }

    .footer_ul {
        gap: 5px;
        padding: 2px;
        margin-top: 5px;
    }

        .footer_ul .footer_li a {
            font-size: 14px;
        }

    .right-footer-content .getin_touch {
        gap: 5px;
        margin-top: 5px;
    }

    .getin_touch a {
        font-size: 14px;
    }

    .bottom-footer-content p {
        font-size: 14px;
    }

    .banner-section {
        height: 35vh;
    }

        .banner-section h2 {
            font-size: 24px;
        }

    .breadcrumb {
        margin-top: 5px;
    }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .rates-content-box-new h1 {
        font-size: 26px;
        margin-bottom: 5px;
    }

    .rates-content-box-new p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .rates-content-box-new h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .rate-about-ifo {
        padding: 5px 0;
        margin-bottom: 5px;
    }

        .rate-about-ifo ul li {
            font-size: 14px;
        }

    .main-cards-section {
        margin-top: 20px;
    }

    .rates-content-box {
        padding: 30px;
    }

        .rates-content-box h2 {
            font-size: 16px;
            margin-bottom: 10px;
        }

    .rates-detail-box {
        padding: 10px;
        margin-bottom: 10px;
    }

        .rates-detail-box p {
            font-size: 14px;
        }

    .rates-detail-box-2 {
        padding: 10px;
        margin-bottom: 10px;
    }

        .rates-detail-box-2 p {
            font-size: 14px;
        }

        .rates-detail-box-2 ul li {
            font-size: 14px;
        }

    .rates-card-box {
        height: auto;
    }

    .rates-image {
        height: 200px;
    }

    .rates-below-content-box h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .rates-below-content-box p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .service-content-box h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .service-content-box p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .service-info {
        padding: 5px 0;
        margin-bottom: 5px;
    }

        .service-info ul li {
            font-size: 14px;
        }

    .ui-menu {
        width: 75% !important;
    }

    .about-image-box {
        width: 100%;
        position: relative;
    }

    .header-sticky.sticky .logo {
        width: 100px;
    }

    .sec-result .upper-list {
        display: none;
    }

    .sec-result .number-box {
        padding: 10px 0px;
    }

    .hero-content-box {
        margin-bottom: 0px;
    }
    .update-fleet-box .fleet-detail{
        border: none;
    }
    .sec-result .number-box ul li .num-circle {
        position: relative;
    }
}
