@import url('../fonts/Steagal/stylesheet.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #51b7ff;
    --white-color: #fff;
    --black-color: #000;
}

body {
    overflow-x: hidden;
    background: var(--black-color);
}

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: 'Steagal', sans-serif;
}

p, span {
    margin: 0;
    padding: 0;
    font-family: 'Steagal', 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 Css Start **************************/
/* main-header css */
.main-header {
    width: 100%;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

    .main-header.scroll {
        width: 100%;
        position: relative;
        background: var(--black-color);
        transition: all 0.3s ease;
        z-index: 10;
    }

    .main-header.scroll {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: var(--black-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);
    }
}

.mainheader {
    border-bottom: 2px solid var(--white-color);
    width: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}

    .mainheader.removeBorder {
        border-bottom: none;
    }

.logo {
    width: 150px;
}

.custom-header-Btn {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 10px 30px;
    font-family: 'Steagal', sans-serif;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

    .custom-header-Btn:hover {
        background: var(--white-color);
        color: var(--primary-color);
    }

#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);
    }

.custom-menu-style {
    background: transparent;
    border: none;
    color: var(--white-color);
    font-size: 22px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: 'Steagal', sans-serif;
}

.main-header .navbar .navbar-expand-lg .navbar-light .collapse .navbar-collapse {
    justify-content: space-between;
    align-items: center;
}

.offcanvas {
    background: var(--black-color);
}

.offcanvas-start {
    padding: 20px;
}

.offcanvas-main-header .offcanvas-title {
    color: var(--white-color);
    font-size: 24px;
    padding-top: 20px;
}

.custom-btn-close {
    background: #ffffff1c;
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 10px;
    margin-top: 15px;
    border: none;
    font-size: 20px;
}

.offcanvas-navbar {
    width: 100%;
}

.offcanvas-navbar-ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.offcanvas-navbar-li {
    list-style: none;
}

.offcanvas-navbar-a {
    color: var(--white-color);
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}

    .offcanvas-navbar-a:hover {
        color: var(--primary-color);
    }
/* main-header css */
/* hero section */
.hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.main-video {
    width: 100%;
    position: relative;
    overflow: hidden;
}

    .main-video::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0) 75.94%, rgb(0, 0, 0)), linear-gradient(rgba(0, 0, 0, 0) 72.83%, rgb(0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0) 40.8%, rgba(0, 0, 0, 0.3) 62.67%, rgba(0, 0, 0, 0.6));
    }

    .main-video .custom-video {
        width: 100%;
    }

.main-content {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 100%;
}

.text-content {
    width: 100%;
    padding: 20px;
}

    .text-content h1 {
        font-size: 18px;
        font-weight: 700;
        font-family: 'Steagal', sans-serif;
        background: #51b7ffb5;
        padding: 10px 40px;
        color: var(--white-color);
        width: fit-content;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .text-content h2 {
        font-size: 72px;
        font-weight: 700;
        font-family: 'Steagal', sans-serif;
        color: var(--white-color);
    }

        .text-content h2 span {
            color: var(--primary-color);
        }

.booking-form {
    width: 100%;
    padding: 40px 30px;
    background: #000000ad;
    border-radius: 25px;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    padding-right: 20px;
}

.main-booking {
    width: 100%;
    padding: 13px;
    background: #0000007e;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px solid #51b7ff;
}

    .main-booking i {
        position: absolute;
        top: 18px;
        right: 30px;
        font-size: 20px;
        color: #51b7ff;
    }

.main-input {
    width: 100%;
    border: none;
    color: var(--white-color);
    padding-left: 20px;
    font-size: 20px;
    background: transparent;
    font-family: 'Steagal', sans-serif;
}

    .main-input:focus {
        outline: none;
        border: none;
    }

    .main-input::placeholder {
        color: var(--white-color);
    }

    .main-input option {
        color: var(--black-color);
    }

.booking-Btn {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 12px 40px;
    margin-left: 10px;
    font-family: 'Steagal', sans-serif;
    border-radius: 10px;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

    .booking-Btn:hover {
        background: var(--white-color);
        color: var(--primary-color);
    }
/* hero section */
/* about us css */
.about-section {
    width: 100%;
    padding: 70px 0;
}

.about-heading {
    width: 100%;
}

    .about-heading h2 {
        font-size: 52px;
        font-weight: 700;
        color: var(--white-color);
        margin-bottom: 70px;
    }

        .about-heading h2 span {
            color: var(--primary-color);
        }

.about-content {
    width: 100%;
    padding: 20px 40px;
}

    .about-content h2 {
        width: fit-content;
        padding: 10px 40px;
        background: #51b7ffb5;
        font-size: 18px;
        font-weight: 700;
        border-radius: 10px;
        color: var(--white-color);
        margin-bottom: 10px;
    }

    .about-content h3 {
        font-size: 52px;
        font-weight: 700;
        color: var(--white-color);
        margin-bottom: 10px;
    }

    .about-content p {
        color: var(--white-color);
        margin-bottom: 10px;
    }

.about-Btn {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 10px 40px;
    font-family: 'Steagal', sans-serif;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

    .about-Btn:hover {
        background: var(--white-color);
        color: var(--primary-color);
    }
/* about us css */
/* services css */
.services-section-one {
    width: 100%;
    height: 100vh;
    background: linear-gradient(90deg,rgba(0, 0, 0, 0.8) 0%, rgba(255, 255, 255, 0) 100%), url(../images/airport-transger.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-section-two {
    width: 100%;
    height: 100vh;
    background: linear-gradient(-90deg,rgba(0, 0, 0, 0.8) 0%, rgba(255, 255, 255, 0) 100%), url(../images/Rugby_station-image.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-section-three {
    width: 100%;
    height: 100vh;
    background: linear-gradient(90deg,rgba(0, 0, 0, 0.8) 0%, rgba(255, 255, 255, 0) 100%), url(../images/taxi-picture.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-one-content {
    width: 100%;
}

    .services-one-content h2 {
        width: fit-content;
        padding: 10px 40px;
        background: #51b7ffb5;
        font-size: 18px;
        font-weight: 700;
        border-radius: 10px;
        color: var(--white-color);
        margin-bottom: 10px;
    }

    .services-one-content h3 {
        font-size: 52px;
        font-weight: 700;
        color: var(--white-color);
        margin-bottom: 10px;
    }

        .services-one-content h3 span {
            color: var(--primary-color);
        }

    .services-one-content ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

        .services-one-content ul li {
            display: flex;
            gap: 10px;
            align-items: center;
            color: var(--white-color);
            font-size: 18px;
            font-family: 'Steagal', sans-serif;
        }

            .services-one-content ul li i {
                color: var(--primary-color);
            }

.services-Btn {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 10px 40px;
    margin-top: 20px;
    font-family: 'Steagal', sans-serif;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

    .services-Btn:hover {
        background: var(--white-color);
        color: var(--primary-color);
    }
/* services css */
/* fleets css */
.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

    .slick-dots li {
        margin-top: 50px;
    }

        .slick-dots li button {
            font-size: 0;
            border: none;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--primary-color);
        }

.our-fleet-section {
    width: 100%;
    padding: 70px 0;
}

.fleets-heading {
    width: 100%;
}

    .fleets-heading h2 {
        font-size: 52px;
        font-weight: 700;
        color: var(--white-color);
        margin-bottom: 70px;
    }

        .fleets-heading h2 span {
            color: var(--primary-color);
        }

.items {
    padding: 0 20px;
}

.card-box {
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

    .card-box .img-box {
        width: 100%;
        height: 280px;
        overflow: hidden;
    }

.slide-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
    background-color: #fff;
    padding: 10px;
}

.card-box:hover .slide-img {
    transform: scale(1.1);
}

.content-box {
    width: 100%;
    padding: 30px 0;
}

    .content-box h4 {
        font-size: 32px;
        font-weight: 700;
        color: var(--white-color);
        margin-bottom: 10px;
    }

    .content-box p {
        color: var(--white-color);
        margin-bottom: 10px;
    }

.fleet-Btn {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 10px 40px;
    font-family: 'Steagal', sans-serif;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

    .fleet-Btn:hover {
        background: var(--white-color);
        color: var(--primary-color);
    }
/* fleets css */
/* contact section css */
.contact-section {
    width: 100%;
    height: 100vh;
    background: linear-gradient(-90deg,rgba(0, 0, 0, 0.8) 0%, rgba(255, 255, 255, 0) 100%), url(../images/contact-image.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.contact-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 70px;
}

.contact-form h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2em;
    text-transform: capitalize;
    color: var(--white-color);
    padding: 10px 40px;
    border-radius: 10px;
    margin-bottom: 10px;
    width: fit-content;
    background: #51b7ffb5;
}

.contact-form h3 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2em;
    text-transform: capitalize;
    color: var(--black-color);
    margin-bottom: 10px;
}

.main-contact {
    width: 100%;
}

.contact-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.contact-social-icons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

    .contact-social-icons a {
        color: var(--white-color);
        font-size: 18px;
        font-weight: 600;
        padding: 10px 20px;
        background: var(--primary-color);
        border-radius: 7px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
    }

        .contact-social-icons a:hover {
            background: var(--black-color);
            box-shadow: 0 2px 5px var(--black-color);
        }

.contact-form {
    width: 100%;
    padding: 50px;
    background: #00000073;
    border-radius: 25px;
}

    .contact-form h3 {
        font-size: 32px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 20px;
    }

.main-form-input {
    width: 100%;
    gap: 10px;
    background: #0000008c;
    margin-bottom: 20px;
    padding: 15px 25px;
    border-radius: 35px;
    position: relative;
    overflow: hidden;
    border: 2px solid #51b7ff;
}

    .main-form-input i {
        color: var(--primary-color);
        margin-top: 5px;
    }

    .main-form-input .custom-input {
        width: 100%;
        background: transparent;
        color: #ffffff;
        border: none;
        font-family: 'Steagal', sans-serif;
    }

        .main-form-input .custom-input:focus {
            border: none;
            outline: none;
        }

        .main-form-input .custom-input::placeholder {
            font-weight: 500;
            color: var(--white-color);
        }

.main-form-input-2 {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    background: #0000008c;
    margin-bottom: 20px;
    padding: 15px 25px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    border: 2px solid #51b7ff;
}

    .main-form-input-2 i {
        color: var(--primary-color);
        margin-top: 5px;
    }

    .main-form-input-2 .custom-input-2 {
        width: 100%;
        background: transparent;
        color: var(--white-color);
        border: none;
        font-family: 'Steagal', sans-serif;
    }

        .main-form-input-2 .custom-input-2:focus {
            border: none;
            outline: none;
        }

        .main-form-input-2 .custom-input-2::placeholder {
            font-weight: 500;
            color: var(--white-color);
        }

.contact-button-div {
    width: 100%;
}

    .contact-button-div .contact-btn {
        color: var(--white-color);
        font-size: 18px;
        font-weight: 600;
        padding: 10px 40px;
        background: var(--primary-color);
        border-radius: 7px;
        border: none;
        font-family: 'Steagal', sans-serif;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
    }

        .contact-button-div .contact-btn:hover {
            background: var(--black-color);
            box-shadow: 0 2px 5px var(--black-color);
        }
/* contact section css */
/* footer section css */
.footer {
    width: 100%;
    height: 100%;
    padding: 40px 0;
}

.left-footer-content {
    width: 100%;
    height: 100%;
}

    .left-footer-content .logo {
        width: 200px;
    }

    .left-footer-content .card {
        width: 250px;
    }

    .left-footer-content h2 {
        color: var(--white-color);
    }

    .left-footer-content p {
        font-size: 16px;
        color: var(--white-color);
    }

.center-footer-content {
    width: 100%;
    height: 100%;
    margin-left: 20px;
}

    .center-footer-content h2 {
        font-weight: 600;
        color: var(--white-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 a {
        color: var(--white-color);
        transform: translateX(0px);
        transition: all 0.3s ease-in-out;
        display: flex;
        align-items: flex-start;
        gap: 5px;
    }

        .footer_ul .footer_li a:hover {
            transform: translateX(10px);
        }

        .footer_ul .footer_li a i {
            padding-right: 5px;
            margin-top: 4px;
            color: #51b7ffb5;
        }

.info-contact {
    width: 100%;
    margin: 20px 0;
}

    .info-contact p a {
        color: var(--white-color);
        display: flex;
        align-items: flex-start;
        gap: 5px;
        transition: all 0.3s ease-in-out;
    }

        .info-contact p a:hover {
            color: var(--primary-color);
        }

        .info-contact p a i {
            padding-right: 5px;
            color: #51b7ffb5;
        }

    .info-contact p {
        margin-bottom: 10px;
        display: flex;
        align-items: flex-start;
        gap: 5px;
    }

        .info-contact p i {
            padding-right: 5px;
            margin-top: 3px;
            color: #51b7ffb5;
        }

.last-footer-content h2 {
    font-weight: 600;
    color: var(--white-color);
}

.social-icons {
    width: 100%;
}

.card2 {
    width: 250px;
}

.fotter-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.social-links {
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
}

    .social-links a {
        color: var(--white-color);
        background: var(--primary-color);
        padding: 10px 20px;
        border-radius: 10px;
        transition: all 0.3s ease-in-out;
    }

        .social-links a:hover {
            background: var(--white-color);
            color: var(--primary-color);
        }

.bootom-footer-section {
    width: 100%;
    background: var(--black-color);
    padding: 20px;
    color: var(--white-color);
    text-align: center;
    border-top: 1px solid #fff;
}

.bottom-footer-content a {
    color: var(--white-color);
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}

    .bottom-footer-content a:hover {
        color: var(--primary-color);
    }
/* footer section css */
.mobile-logo {
    display: none;
}

.inner-banner {
    background: url(../images/inner-banner.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 570px;
    display: flex;
    align-items: flex-end;
    margin-top: 0;
    padding-bottom: 8%;
}

    .inner-banner::before {
        content: '';
        background: #000;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.2;
    }

    .inner-banner .content-box {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .inner-banner .content-box h2 {
            color: #ffffff;
            font-size: 54px;
            font-weight: 700;
        }

        .inner-banner .content-box ul {
            display: flex;
            align-items: center;
            justify-content: center;
            list-style: none;
        }

            .inner-banner .content-box ul li {
                padding: 0 5px;
            }

                .inner-banner .content-box ul li a {
                    color: #ffffff;
                    font-weight: 500;
                    font-size: 20px;
                }

.sec-inner-services {
    padding: 40px 0;
}

    .sec-inner-services .inner-box {
        padding: 20px 0;
    }

        .sec-inner-services .inner-box .content-box {
        }

            .sec-inner-services .inner-box .content-box h3 {
                width: fit-content;
                padding: 10px 40px;
                background: #51b7ffb5;
                font-size: 18px;
                font-weight: 700;
                border-radius: 10px;
                color: var(--white-color);
                margin-bottom: 10px;
            }

            .sec-inner-services .inner-box .content-box h2 {
                font-size: 52px;
                font-weight: 700;
                color: var(--white-color);
                margin-bottom: 10px;
            }

            .sec-inner-services .inner-box .content-box .para {
                color: var(--white-color);
                margin-bottom: 10px;
                font-size: 18px;
            }

        .sec-inner-services .inner-box .img-box {
        }

            .sec-inner-services .inner-box .img-box img {
                border-radius: 15px;
                border: 2px solid #4b4b4b;
            }

.sec-privacy {
    padding: 60px 0 60px;
}

    .sec-privacy .content-box {
    }

        .sec-privacy .content-box h1 {
            text-transform: capitalize;
            position: relative;
            line-height: 25px;
            color: #ffffff;
            font-weight: 700;
            font-size: 22px;
            padding: 10px 20px;
            margin: 0 auto 20px;
            text-align: center;
            background-color: #51b7ff;
            width: fit-content;
            border-radius: 10px;
        }

        .sec-privacy .content-box h2 {
            text-transform: capitalize;
            position: relative;
            line-height: 25px;
            color: #ffffff;
            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: #51b7ff;
            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;
                color: #fff;
            }

                .sec-privacy .content-box ul li i {
                    color: #ffffff;
                    font-size: 16px;
                    padding-right: 7px;
                }

                .sec-privacy .content-box ul li span {
                }

        .sec-privacy .content-box .para {
            color: #ffffff;
            padding: 5px 0;
            font-weight: 600;
            margin: 0;
        }

        .sec-privacy .content-box h6 a {
            font-size: 16px;
            color: #0089bf;
            text-decoration: underline;
        }

        .sec-privacy .content-box h6 span {
            font-weight: 700;
            font-size: 15px;
            color: #ffffff;
            padding-right: 5px;
        }

.sec-faqs {
    padding: 50px 0 60px;
}

    .sec-faqs .sec-title {
        text-align: center;
        padding-bottom: 30px;
    }

        .sec-faqs .sec-title h2 {
            font-size: 30px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 0px;
            text-transform: uppercase;
        }

    .sec-faqs .faqs-box {
    }

        .sec-faqs .faqs-box .heading-button {
            font-size: 18px;
            font-weight: 600 !important;
            color: #ffffff !important;
            padding: 14px 20px 14px 15px;
            position: relative;
            border-bottom: 1px solid #ccc;
            width: 100%;
            margin: 5px 0 0;
            background: linear-gradient(180deg, rgba(33, 187, 255, 1) 0%, rgba(53, 180, 221, 1) 100%);
        }

            .sec-faqs .faqs-box .heading-button::before {
                content: '\f107';
                font-family: "Font Awesome 6 Pro";
                position: absolute;
                font-size: 20px;
                right: 3%;
                top: 50%;
                transform: translateY(-50%);
            }

            .sec-faqs .faqs-box .heading-button:not(.collapsed)::before {
                content: '\f106';
            }

        .sec-faqs .faqs-box .drop-box {
            padding: 10px 20px;
            background-color: #ffffff;
        }

            .sec-faqs .faqs-box .drop-box .para {
                padding: 5px 0;
                font-size: 15px;
            }

.fot-inner-sec {
    padding: 70px 0;
}

    .fot-inner-sec .content-box {
    }

        .fot-inner-sec .content-box h2 {
            font-size: 40px;
            color: #fff;
            padding-bottom: 20px;
        }

        .fot-inner-sec .content-box h3 {
            font-size: 24px;
            color: #fff;
            padding: 8px 0;
        }

        .fot-inner-sec .content-box .para {
        }

    .fot-inner-sec .img-box {
    }

        .fot-inner-sec .img-box img {
            border-radius: 10px;
        }

.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: #c1e5ff;
    }

        .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: #ffffff;
                    }

    .sec-result .completed {
        background-color: #51b7ff !important;
        color: #ffffff !important;
    }

    .sec-result .for-line {
        position: relative
    }

        .sec-result .for-line::before {
            content: '';
            background-color: #ffffff;
            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: #c1e5ff;
    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: #51b7ff;
                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: 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: #c1e5ff;
    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: #c1e5ff;
    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;
}

/************************** All Main Css Start **************************/
/************************** 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) {
    html {
        overflow-x: hidden;
    }

    .hero-section {
        height: 850px;
    }

    .text-content h2 {
        font-size: 50px;
    }

    .about-section {
        padding: 30px 0;
    }

    .inner-banner .content-box {
        flex-direction: column;
        text-align: center;
    }

    .inner-banner {
        height: 430px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    html {
        overflow-x: hidden;
    }

    .hero-section {
        height: 850px;
    }

    .text-content h2 {
        font-size: 50px;
    }

    .about-section {
        padding: 30px 0;
    }

    .inner-banner .content-box {
        flex-direction: column;
        text-align: center;
    }

    .inner-banner {
        height: 430px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    html {
        overflow-x:hidden;
    }
    .hero-section {
        height: 850px;
    }
    .text-content h2 {
        font-size: 50px;
    }
    .about-section {
        padding: 30px 0;
    }
    .inner-banner .content-box {
        flex-direction: column;
        text-align: center;
    }
    .inner-banner {
        height: 430px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    html {
        overflow-x:hidden;
    }
    .inner-banner .content-box {
        flex-direction: column;
        text-align: center;
    }
    .inner-banner {
        height: 430px;
        align-items: center;
        padding-bottom: 0;
    }
    .hero-section {
        height: auto;
    }
    .main-content {
        position: relative;
    }
    .contact-section {
        height: auto;
        padding: 60px 0;
    }
    .center-footer-content {
        margin-left: 0px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    html {
        overflow-x: hidden;
    }

    .main-header {
        background-color: #000;
    }

    .mainheader {
        padding-bottom: 10px;
    }

    .hero-section {
        height: auto;
        margin-top: 50px;
    }

    .main-content {
        position: relative;
        bottom: 0;
    }

    .text-content {
        padding: 0px;
    }

        .text-content h1 {
            font-size: 16px;
            padding: 10px 15px;
            margin-bottom: 10px;
        }

        .text-content h2 {
            font-size: 34px;
        }

    .booking-form {
        padding: 10px 0px;
    }

    .about-section {
        padding: 30px 0;
    }

    .about-heading h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .about-content {
        padding: 10px 0px;
    }

        .about-content h3 {
            font-size: 30px;
        }

    .services-section-one {
        height: auto;
        padding: 30px 0;
    }

    .services-one-content h3 {
        font-size: 30px;
    }

    .services-section-two {
        height: auto;
        padding: 30px 0;
    }

    .services-section-three {
        height: auto;
        padding: 30px 0;
    }

    .our-fleet-section {
        padding: 30px 0;
    }

    .fleets-heading h2 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .items {
        padding: 0 0px;
    }

    .slick-dots li {
        margin-top: 10px;
    }

    .contact-section {
        height: auto;
        padding: 30px 0;
    }

    .contact-form {
        padding: 20px 15px;
        border-radius: 10px;
    }

        .contact-form h3 {
            font-size: 26px;
        }

    .footer {
        padding: 20px 0;
    }

    .center-footer-content {
        margin-left: 0;
    }

    .fotter-bottom {
        margin-top: 10px;
        flex-direction: column;
    }

    .card2 {
        width: 100%;
    }

    .social-icons {
        padding: 10px 0;
    }

    .left-footer-content .logo {
        width: 150px;
    }

    .mobile-logo {
        display: block;
    }

    .inner-banner {
        height: 300px;
        align-items: center;
        margin-top: 50px;
        padding-bottom: 0;
    }

        .inner-banner .content-box {
            flex-direction: column;
            text-align: center;
        }

            .inner-banner .content-box h2 {
                font-size: 36px;
            }

    .sec-inner-services .inner-box .content-box h2 {
        font-size: 36px;
    }

    .main-input {
        padding-left: 10px;
        font-size: 15px;
    }

    .main-booking i {
        right: 16px;
        font-size: 16px;
    }

    .sec-result {
        padding: 30px 0;
        margin-top: 30px;
    }

        .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: 80%;
        }

        .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%;
    }

    .payfield {
        width: 100% !important;
    }

    .welcome {
        height: 380px !important;
        background-size: cover !important;
    }

    .WelComeText {
        margin-top: 225px !important;
        margin-left: 50px !important;
        line-height: 23px !important;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    html {
        overflow-x: hidden;
    }

    .main-header {
        background-color: #000;
    }

    .mainheader {
        padding-bottom: 10px;
    }

    .hero-section {
        height: auto;
        margin-top: 50px;
    }

    .main-content {
        position: relative;
        bottom: 0;
    }

    .text-content {
        padding: 0px;
    }

        .text-content h1 {
            font-size: 16px;
            padding: 10px 15px;
            margin-bottom: 10px;
        }

        .text-content h2 {
            font-size: 34px;
        }

    .booking-form {
        padding: 10px 0px;
    }

    .about-section {
        padding: 30px 0;
    }

    .about-heading h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .about-content {
        padding: 10px 0px;
    }

        .about-content h3 {
            font-size: 30px;
        }

    .services-section-one {
        height: auto;
        padding: 30px 0;
    }

    .services-one-content h3 {
        font-size: 30px;
    }

    .services-section-two {
        height: auto;
        padding: 30px 0;
    }

    .services-section-three {
        height: auto;
        padding: 30px 0;
    }

    .our-fleet-section {
        padding: 30px 0;
    }

    .fleets-heading h2 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .items {
        padding: 0 0px;
    }

    .slick-dots li {
        margin-top: 10px;
    }

    .contact-section {
        height: auto;
        padding: 30px 0;
    }

    .contact-form {
        padding: 20px 15px;
        border-radius: 10px;
    }

        .contact-form h3 {
            font-size: 26px;
        }

    .footer {
        padding: 20px 0;
    }

    .center-footer-content {
        margin-left: 0;
    }

    .fotter-bottom {
        margin-top: 10px;
        flex-direction: column;
    }

    .card2 {
        width: 100%;
    }

    .social-icons {
        padding: 10px 0;
    }

    .left-footer-content .logo {
        width: 150px;
    }

    .mobile-logo {
        display: block;
    }

    .inner-banner {
        height: 300px;
        align-items: center;
        margin-top: 50px;
        padding-bottom: 0;
    }

        .inner-banner .content-box {
            flex-direction: column;
            text-align: center;
        }

            .inner-banner .content-box h2 {
                font-size: 36px;
            }

    .sec-inner-services .inner-box .content-box h2 {
        font-size: 36px;
    }

    .main-input {
        padding-left: 10px;
        font-size: 15px;
    }

    .main-booking i {
        right: 16px;
        font-size: 16px;
    }

    .sec-result {
        padding: 30px 0;
        margin-top: 30px;
    }

        .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: 80%;
        }

        .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%;
    }

    .payfield {
        width: 100% !important;
    }

    .welcome {
        height: 380px !important;
        background-size: cover !important;
    }

    .WelComeText {
        margin-top: 225px !important;
        margin-left: 50px !important;
        line-height: 23px !important;
    }
    .inner-banner .content-box ul li a {
        font-size: 16px;
    }
    br {
        display:none;
    }
    .fot-inner-sec {
        padding: 30px 0;
    }
}
