@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #FFD000;
    --secondary-color: #001432;
    --grey-shade: #A7C8CF;
    --white-color: #fff;
    --black-color: #000;
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

figure {
    margin: 0;
    padding: 0;
}

.btn:focus {
    outline: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-family: "Source Sans 3", sans-serif;
}

p, span {
    margin: 0;
    padding: 0;
    font-family: "Source Sans 3", 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 **************************/
/* mini header css */
.mini-header {
    width: 100%;
    padding: 5px;
    background: var(--secondary-color);
}

.miniheaderchange {
    display: flex;
    gap: 10px;
}

.infocont {
    display: flex;
    gap: 10px;
    align-items: center;
}

    .infocont a {
        color: var(--white-color);
        transition: all 0.3s ease-in-out;
    }

        .infocont a:hover {
            color: var(--primary-color);
        }

        .infocont a > i {
            padding-right: 5px;
        }


.social_icons i {
    color: var(--white-color);
    cursor: pointer;
    padding-right: 10px;
    transition: all 0.3s ease-in-out;
}

    .social_icons i:hover {
        color: var(--primary-color);
    }
/* mini header css */
/* header css */
.header {
    width: 100%;
    position: relative;
    background: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 10;
}

.header-sticky {
    width: 100%;
    position: relative;
    background: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 99;
}

    .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);
        animation: fadeInDown 0.5s ease;
    }

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#scrollBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 10px 18px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    transition: background-color 0.3s;
}

    #scrollBtn:hover {
        background: var(--secondary-color);
        color: var(--white-color);
    }

.navbar-expand-lg {
    padding: 0px 0;
    background: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .navbar-expand-lg .logo {
        width: 250px;
        border-radius: 10px;
        transition: all 0.5s ease-in-out;
    }

    .navbar-expand-lg .navbar-collapse {
        /* justify-content: flex-end; */
        align-items: center;
    }

    .navbar-expand-lg .navbar-nav {
        align-items: center;
        gap: 0px;
    }

.navbar-light .navbar-nav .nav-link.active {
    border: none;
    color: var(--white-color);
    border-radius: 0px;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header-Btn {
    border: none;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 40px !important;
    background: var(--secondary-color);
    color: var(--white-color);
    border-radius: 0;
    text-transform: uppercase;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
}

    .header-Btn:hover {
        color: var(--black-color);
        background: var(--white-color);
    }

.navbar-light .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 600;
    margin-top: 33px;
    font-family: "Source Sans 3", sans-serif;
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.navbar-collapse .navbar-nav .nav-item {
    border-right: 1px solid #fff;
    height: 100px;
    padding: 0 20px;
}

.navbar-nav .nav-item:hover .nav-link {
    color: var(--white-color);
}

.header-sticky.sticky .navbar-collapse .navbar-nav .nav-item {
    height: 70px;
}

.header-sticky.sticky .navbar-nav .nav-link {
    margin-top: 15px;
}

.header-sticky.sticky .header-Btn {
    height: 70px;
}

.header-sticky.sticky .logo {
    width: 200px;
}
/* .navbar-nav .nav-item .nav-link::before {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 0%;
height: 3px;
background: var(--secondary-color);
transition: all 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover::before {
width: 100%;
} */

/* .navbar-nav .nav-item .nav-link::after {
content: "";
position: absolute;
top: 0;
right: 0;
width: 0%;
height: 3px;
background: var(--secondary-color);
transition: all 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover::after {
width: 100%;
} */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
}
/* header css */
/* hero section */
.hero-section {
    width: 100%;
    height: 89vh;
    padding: 30px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../images/banner-image123.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-herocon {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
    z-index: 1;
}

    .left-herocon h1 {
        background: var(--primary-color);
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 700;
        color: var(--black-color);
    }

    .left-herocon h2 {
        font-size: 36px;
        font-weight: 700;
        color: var(--white-color);
    }

    .left-herocon p {
        color: var(--white-color);
        margin-bottom: 10px;
    }

.right-bg-con {
    width: 100%;
    height: 100%;
}

.BookingBTn {
    border: none;
    padding: 10px 40px !important;
    background: var(--primary-color);
    color: #000000;
    border-radius: 10px;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
}

    .BookingBTn i {
        padding-left: 5px;
    }

    .BookingBTn:hover {
        color: var(--white-color);
        background: var(--black-color);
    }

.form-list {
    width: 100%;
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 2px solid var(--primary-color);
}

    .form-list .form-list-h1 {
        width: 34%;
        background: var(--primary-color);
        color: #000;
        padding: 8px 0 8px 15px;
        font-size: 16px;
        font-weight: 500;
        font-family: 'Source Sans 3', sans-serif;
    }

    .form-list .form-list1 {
        width: 67%;
    }

        .form-list .form-list1 .field {
            width: 100%;
            border: none;
            color: var(--black-color);
            border-radius: 0;
            padding: 8px;
            font-family: 'Source Sans 3', sans-serif;
        }

            .form-list .form-list1 .field:focus {
                border: none;
                outline: none;
                box-shadow: none;
            }

            .form-list .form-list1 .field::placeholder {
                color: var(--black-color);
            }

.custom-head-Btn {
    text-align: center;
    border: none;
    padding: 10px 40px !important;
    background: var(--white-color);
    color: var(--black-color);
    border-radius: 5px;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
}

    .custom-head-Btn:hover {
        color: var(--black-color);
        background: var(--primary-color);
    }

.hero-btn {
    text-align: center;
    border: none;
    padding: 10px 40px !important;
    color: var(--black-color);
    background: var(--primary-color);
    border-radius: 5px;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
}

    .hero-btn:hover {
        background: var(--white-color);
        color: var(--black-color);
    }


/* hero section */
/* about section */
.sec-about {
    margin-top: 0;
    padding: 80px 0;
    /* position: relative; */
}

    .sec-about .img-box {
        position: relative;
    }

        .sec-about .img-box img {
            width: 100%;
            border: 5px solid #001432;
            border-radius: 10px;
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        }

    .sec-about .custom-head-Btn {
        width: fit-content;
    }

.content-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #001432;
    width: fit-content;
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 2px solid #001432;
}

.content-box h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #001432;
}

.content-box p {
    margin-bottom: 20px;
    color: #000000;
}

.about-Btn {
    text-align: center;
    border: none;
    padding: 10px 40px !important;
    background: var(--primary-color);
    color: var(--black-color);
    border-radius: 5px;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
}

    .about-Btn:hover {
        color: var(--white-color);
        background: var(--secondary-color);
    }
/* about section */
/* services section css start */
.services-section {
    width: 100%;
    padding: 60px 0;
}

.service-main {
    background: var(--white-color);
}

.services-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

    .services-section .section-title h2 {
        font-size: 36px;
        font-weight: 700;
        color: var(--black-color);
    }

.service-box {
    background: var(--white-color);
    padding: 25px;
    height: auto;
    margin-bottom: 25px;
    border-radius: 10px;
    text-align: center;
    border: 5px solid var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.service-box-in {
    height: auto;
}

.service-box:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 5px solid var(--primary-color);
}

.service-box .service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--black-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 24px;
    margin: 0 auto 20px auto;
}

.service-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-box p {
    color: var(--black-color);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.services-btn {
    border: none;
    padding: 10px 30px !important;
    text-align: center;
    background: var(--primary-color);
    color: var(--black-color);
    border-radius: 5px;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .services-btn:hover {
        color: var(--white-color);
        background: var(--secondary-color);
    }
/* services section css end */
/* newsletter section css start */
.newsletter-section {
    width: 100%;
    height: 40vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../images/newsletter-image.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

    .newsletter-section::after {
        content: "";
        width: 50%;
        height: 100%;
        background: var(--primary-color);
        opacity: 0.4;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
    }

    .newsletter-section .news-content {
        width: 100%;
        padding: 0 40px;
        position: relative;
        z-index: 1;
    }

        .newsletter-section .news-content h2 {
            color: var(--white-color);
            font-size: 34px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .newsletter-section .news-content p {
            color: var(--white-color);
            margin-bottom: 10px;
        }

        .newsletter-section .news-content .news-btns-div {
            width: 100%;
            display: flex;
            gap: 10px;
            align-items: center;
        }

            .newsletter-section .news-content .news-btns-div .btn-1 {
                border: none;
                padding: 10px 30px !important;
                text-align: center;
                background: var(--primary-color);
                color: var(--black-color);
                border-radius: 5px;
                font-family: "Source Sans 3", sans-serif;
                font-weight: 600;
                transition: all 0.3s ease;
            }

                .newsletter-section .news-content .news-btns-div .btn-1:hover {
                    color: var(--black-color);
                    background: var(--white-color);
                }

            .newsletter-section .news-content .news-btns-div .btn-2 {
                border: none;
                padding: 10px 30px !important;
                text-align: center;
                background: var(--secondary-color);
                color: var(--white-color);
                border-radius: 5px;
                font-family: "Source Sans 3", sans-serif;
                font-weight: 600;
                transition: all 0.3s ease;
            }

                .newsletter-section .news-content .news-btns-div .btn-2:hover {
                    color: var(--black-color);
                    background: var(--white-color);
                }
/* newsletter section css end */
/* our fleets section */
.our-fleet-section {
    width: 100%;
    height: 100%;
    padding: 40px 0px;
}

    .our-fleet-section h2 {
        font-size: 42px;
        font-weight: 700;
        color: var(--black-color);
        margin-bottom: 40px;
        text-align: center;
    }

    .our-fleet-section .fleetPara {
        text-align: center;
        margin-bottom: 50px;
    }

.fleet-card {
    width: 100%;
    height: 100%;
    padding: 20px;
    background: var(--white-color);
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
}

    .fleet-card .fleet-1 {
        width: 100%;
        height: 220px;
        border-radius: 10px;
        object-fit: cover;
        margin-bottom: 20px;
        background: var(--secondary-color);
    }

    .fleet-card h3 {
        font-weight: 700;
        color: var(--secondary-color);
        margin-bottom: 10px;
        font-size: 32px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--primary-color);
    }

    .fleet-card .fleet-para {
        color: var(--black-color);
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--primary-color);
    }

.fleet-features {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 10px;
}

    .fleet-features p {
        color: var(--black-color);
    }

    .fleet-features i {
        padding-right: 5px;
        color: var(--secondary-color);
    }

.fleet_btn {
    width: 100%;
    border: none;
    padding: 10px 40px !important;
    text-align: center;
    background: var(--primary-color);
    color: var(--black-color);
    border-radius: 5px;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .fleet_btn:hover {
        color: var(--white-color);
        background: var(--secondary-color);
    }
/* our fleets section */
/* contact section css start */
.contact-section {
    width: 100%;
    padding: 40px 0;
    background: #001432;
}

    .contact-section .contact-info {
        width: 100%;
    }

        .contact-section .contact-info h2 {
            font-size: 18px;
            font-weight: 700;
            border-bottom: 2px solid #ffffff;
            width: fit-content;
            padding-bottom: 5px;
            color: #ffffff;
            margin-bottom: 10px;
        }

        .contact-section .contact-info h3 {
            font-size: 42px;
            font-weight: 700;
            color: #ffd000;
            margin-bottom: 10px;
        }

        .contact-section .contact-info p {
            font-size: 16px;
            color: #ffffff;
            margin-bottom: 10px;
        }

        .contact-section .contact-info .contact-features-info {
            width: 100%;
            margin-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 20px;
        }

            .contact-section .contact-info .contact-features-info .info-item {
                width: fit-content;
                display: flex;
                gap: 10px;
                align-items: center;
            }

                .contact-section .contact-info .contact-features-info .info-item i {
                    width: 40px;
                    height: 40px;
                    background: #ffd000;
                    color: #000000;
                    border-radius: 5px;
                    font-size: 17px;
                    border: 2px solid #ffd000;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    margin-bottom: 10px;
                    transition: all 0.3s ease-in-out;
                }
                .contact-section .contact-info .contact-features-info .info-item span{
                    color: #fff;
                }

                .contact-section .contact-info .contact-features-info .info-item:hover i {
                    background: transparent;
                    color: var(--primary-color);
                }

                .contact-section .contact-info .contact-features-info .info-item a {
                    color: #ffffff;
                    font-size: 17px;
                    font-weight: 600;
                    font-family: 'Source Sans 3', sans-serif;
                    transition: all 0.3s ease-in-out;
                }

                    .contact-section .contact-info .contact-features-info .info-item a:hover {
                        text-decoration: underline;
                    }

    .contact-section .contactsocial-media-info {
        width: 100%;
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .contact-section .contactsocial-media-info h4 {
            font-size: 24px;
            font-weight: 700;
            color: #ffffff;
        }

        .contact-section .contactsocial-media-info .social-icons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

            .contact-section .contactsocial-media-info .social-icons a i {
                width: 35px;
                height: 35px;
                display: flex;
                justify-content: center;
                align-items: center;
                background: var(--primary-color);
                border-radius: 5px;
                border: 2px solid var(--primary-color);
                color: #000000;
                transition: all 0.3s ease-in-out;
            }

            .contact-section .contactsocial-media-info .social-icons a:hover i {
                background: transparent;
                color: var(--primary-color);
            }

    .contact-section .contact-form {
        width: 100%;
        padding: 40px;
        background: #d1d1d12e;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        border-radius: 10px;
    }

        .contact-section .contact-form h2 {
            font-size: 32px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
        }

        .contact-section .contact-form .contact-input-div {
            width: 100%;
            margin-bottom: 20px;
        }

            .contact-section .contact-form .contact-input-div .contact-custom-input {
                width: 100%;
                padding: 10px 10px;
                border-radius: 5px;
                border: 2px solid var(--primary-color);
                background: #ffffff00;
                font-family: "Source Sans 3", sans-serif;
                color: #ffffff;
            }

                .contact-section .contact-form .contact-input-div .contact-custom-input::placeholder {
                    font-weight: 500;
                    color: var(--white-color);
                }

                .contact-section .contact-form .contact-input-div .contact-custom-input:focus {
                    border: 2px solid var(--primary-color);
                    box-shadow: none;
                    outline: none;
                }

    .contact-section .contact-btn {
        padding: 10px 40px;
        color: #000000;
        background: var(--primary-color);
        text-align: center;
        font-weight: 600;
        font-family: "Source Sans 3", sans-serif;
        border-radius: 5px;
        /* border: 2px solid var(--primary-color); */
        transition: all 0.3s ease-in-out;
    }

        .contact-section .contact-btn:hover {
            color: #000000;
            background: var(--white-color);
        }
/* contact section css start */
/* footer section css */
.footer {
    width: 100%;
    height: 100%;
    padding: 40px 0;
    background: var(--primary-color);
}

    .footer .footer-logo {
        width: 280px;
    }

.left-footer-content {
    width: 100%;
    height: 100%;
}

    .left-footer-content a {
        color: var(--black-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 a {
        color: var(--black-color);
        transform: translateX(0px);
        font-size: 17px;
        font-weight: 500;
        font-family: "Poppins";
        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: "Poppins";
    transition: all 0.3s ease-in-out;
}

    .getin_touch a:hover {
        text-decoration: underline;
    }

    .getin_touch a i {
        padding-right: 7px;
    }


.last-footer-content h2 {
    font-weight: 600;
    font-size: 24px;
    color: var(--black-color);
}

.bootom-footer-section {
    width: 100%;
    background: var(--primary-color);
    border-top: 2px solid var(--secondary-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 {
            text-decoration: underline;
        }
/* footer section css */
/* inner pages banner css */
.banner-section {
    width: 100%;
    padding: 80px;
    background: var(--secondary-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .banner-section h2 {
        font-size: 52px;
        font-weight: 600;
        color: var(--white-color);
    }

.breadcrumb {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.breadcrumb-item a {
    color: var(--white-color);
    font-family: "Poppins", sans-serif;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white-color);
    font-family: "Poppins", sans-serif;
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}
/* inner pages banner css */
/* serviceboxin css */
.serviceboxin {
    height: auto;
}
/* serviceboxin css */
/* contactsectionin css */
.contactsectionin {
    background: var(--white-color);
}

    .contactsectionin .contact-info h2 {
        color: var(--black-color);
        border-bottom: 2px solid var(--black-color);
    }

    .contactsectionin .contact-info p {
        color: var(--black-color);
    }

    .contactsectionin .contact-info .contact-features-info .info-item a span{
        color: var(--black-color);
    }
    .contactsectionin .contact-info .contact-features-info .info-item span {
        color: var(--black-color);
    }

    .contactsectionin .contactsocial-media-info h4 {
        color: var(--black-color);
    }

    .contactsectionin .contact-form {
        background: var(--secondary-color);
    }
/* contactsectionin css */
.sec-result {
    padding: 60px 0;
}

    .sec-result .upper-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 7px 16px;
        border: 3px solid #001432;
        background: #edf2fa;
        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%;
                    border: 2px solid #ffd000;
                    padding: 7px;
                    border-radius: 5px;
                    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: #001432;
                        width: 50px;
                        height: 50px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 50%;
                        font-size: 20px;
                        margin: 0 auto;
                        color: #ffffff;
                        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: #ffd000 !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;
    border: 3px solid #001432;
    border-radius: 15px;
    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: #000000;
                background-color: #ffd000;
                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: #edf2fa;
    padding: 20px;
    margin-top: 15px;
    border: 3px solid #001432;
    border-radius: 10px;
    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: #edf2fa;
    padding: 20px;
    border: 3px solid #001432;
    border-radius: 15px;
    margin-bottom: 40px;
    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;
        }

#lkbtn_lgout {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    font-weight: 500;
    padding: 0;
}

    #lkbtn_lgout span {
        margin-right: 7px;
    }
/************************** All Main 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;
    }
    .infocont a {
        font-size: 14px
    }
    .social_icons i {
        font-size: 14px;
    }
    .navbar-expand-lg .logo {
        width: 150px;
    }
    .navbar-collapse .navbar-nav .nav-item {
        padding: 0 10px;
        height: 80px;
    }
    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
        margin-top: 23px;
    }
    .header-Btn {
        height: 80px;
        padding: 10px 20px !important;
        font-size: 14px;
    }
    .form-list .form-list-h1 {
        font-size: 14px
    }
    .form-list .form-list1 .field {
        font-size: 14px;
    }
    .custom-head-Btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }
    .left-herocon {
        gap: 5px;
    }
        .left-herocon h2 {
            font-size: 32px;
        }
    .hero-btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }
    .hero-section {
        height: 70vh;
    }
    .sec-about {
        padding: 40px 0;
    }
    .content-box h3 {
        font-size: 14px;
    }
    .content-box h2 {
        font-size: 32px;
        margin-bottom: 5px;
    }
    .content-box p {
        margin-bottom: 10px;
        font-size: 14px;
    }
    .about-Btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }
    .services-section {
        padding: 40px 0;
    }
        .services-section .section-title {
            margin-bottom: 20px;
        }
        .services-section .section-title h2 {
            font-size: 32px;
        }
    .service-box .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0 auto 10px auto;
    }
    .service-box h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }
    .service-box p {
        margin-bottom: 10px;
        font-size: 14px;
    }
    .services-btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }
    .newsletter-section .news-content h2 {
        font-size: 32px;
        margin-bottom: 5px;
    }
    .newsletter-section .news-content {
        padding: 0 20px;
    }
    .newsletter-section .news-content p {
        font-size: 14px;
    }
    .newsletter-section .news-content .news-btns-div .btn-1 {
        padding: 8px 20px !important;
        font-size: 14px;
    }
    .newsletter-section .news-content .news-btns-div .btn-2 {
        padding: 8px 20px !important;
        font-size: 14px;
    }
    .our-fleet-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .fleet-card .fleet-1 {
        margin-bottom: 10px;
    }
    .fleet-card h3 {
        font-size: 24px;
    }
    .fleet-card .fleet-para {
        font-size: 14px;
    }
    .fleet-features {
        gap: 5px;
    }
        .fleet-features p {
            font-size: 14px;
        }
    .fleet_btn {
        padding: 8px 40px !important;
        font-size: 14px;
    }
    .contact-section .contact-info h2 {
        font-size: 14px;
    }
    .contact-section .contact-info h3 {
        font-size: 32px;
    }
    .contact-section .contact-info p {
        font-size: 14px;
    }
    .contact-section .contact-form {
        padding: 20px;
    }
        .contact-section .contact-form .contact-input-div {
            margin-bottom: 10px;
        }
            .contact-section .contact-form .contact-input-div .contact-custom-input {
                padding: 6px 10px;
                font-size: 14px;
            }
    .contact-section .contact-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    .footer .footer-logo {
        width: 180px;
    }
    .footer_ul {
        gap: 5px;
        padding: 6px;
    }
        .footer_ul .footer_li a {
            font-size: 14px;
        }
    .right-footer-content .getin_touch {
        gap: 5px;
    }
    .getin_touch a {
        font-size: 14px;
    }
    .banner-section {
        padding: 60px 0;
    }
        .banner-section h2 {
            font-size: 42px;
        }
    .breadcrumb {
        margin-top: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .infocont a {
        font-size: 14px
    }

    .social_icons i {
        font-size: 14px;
    }

    .navbar-expand-lg .logo {
        width: 150px;
    }

    .navbar-collapse .navbar-nav .nav-item {
        padding: 0 10px;
        height: auto;
        border: none;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
        margin-top: 0;
    }

    .header-Btn {
        height: auto;
        padding: 10px 20px !important;
        font-size: 14px;
    }

    .form-list .form-list-h1 {
        font-size: 14px
    }

    .form-list .form-list1 .field {
        font-size: 14px;
        height: 100%;
    }

    .custom-head-Btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .left-herocon {
        gap: 5px;
    }

        .left-herocon h2 {
            font-size: 32px;
        }

    .hero-btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .hero-section {
        height: 70vh;
    }

    .sec-about {
        padding: 40px 0;
    }

    .content-box h3 {
        font-size: 14px;
    }

    .content-box h2 {
        font-size: 32px;
        margin-bottom: 5px;
    }

    .content-box p {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .about-Btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .services-section {
        padding: 40px 0;
    }

        .services-section .section-title {
            margin-bottom: 20px;
        }

            .services-section .section-title h2 {
                font-size: 32px;
            }

    .service-box .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0 auto 10px auto;
    }

    .service-box h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .service-box p {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .services-btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .newsletter-section .news-content h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .newsletter-section .news-content {
        padding: 0 20px;
    }

        .newsletter-section .news-content p {
            font-size: 14px;
        }

        .newsletter-section .news-content .news-btns-div .btn-1 {
            padding: 8px 20px !important;
            font-size: 14px;
        }

        .newsletter-section .news-content .news-btns-div .btn-2 {
            padding: 8px 20px !important;
            font-size: 14px;
        }

    .our-fleet-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .fleet-card .fleet-1 {
        margin-bottom: 10px;
    }

    .fleet-card h3 {
        font-size: 24px;
    }

    .fleet-card .fleet-para {
        font-size: 14px;
    }

    .fleet-features {
        gap: 5px;
    }

        .fleet-features p {
            font-size: 14px;
        }

    .fleet_btn {
        padding: 8px 40px !important;
        font-size: 14px;
    }

    .contact-section .contact-info h2 {
        font-size: 14px;
    }

    .contact-section .contact-info h3 {
        font-size: 32px;
    }

    .contact-section .contact-info p {
        font-size: 14px;
    }

    .contact-section .contact-form {
        padding: 20px;
        margin-top: 20px;
    }

        .contact-section .contact-form .contact-input-div {
            margin-bottom: 10px;
        }

            .contact-section .contact-form .contact-input-div .contact-custom-input {
                padding: 6px 10px;
                font-size: 14px;
            }

    .contact-section .contact-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .footer .footer-logo {
        width: 180px;
    }

    .footer_ul {
        gap: 5px;
        padding: 6px;
    }

        .footer_ul .footer_li a {
            font-size: 14px;
        }

    .right-footer-content .getin_touch {
        gap: 5px;
    }

    .getin_touch a {
        font-size: 14px;
    }

    .banner-section {
        padding: 60px 0;
    }

        .banner-section h2 {
            font-size: 42px;
        }

    .breadcrumb {
        margin-top: 10px;
    }
    .navbar-expand-lg .navbar-collapse {
        padding: 20px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .infocont a {
        font-size: 14px
    }

    .social_icons i {
        font-size: 14px;
    }

    .navbar-expand-lg .logo {
        width: 150px;
    }

    .navbar-collapse .navbar-nav .nav-item {
        padding: 0 10px;
        height: auto;
        border: none;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
        margin-top: 0;
    }

    .header-Btn {
        height: auto;
        padding: 10px 20px !important;
        font-size: 14px;
    }

    .form-list .form-list-h1 {
        font-size: 14px
    }

    .form-list .form-list1 .field {
        font-size: 14px;
        height: 100%;
    }

    .custom-head-Btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .left-herocon {
        gap: 5px;
    }

        .left-herocon h2 {
            font-size: 32px;
        }

    .hero-btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .hero-section {
        height: 70vh;
    }

    .sec-about {
        padding: 40px 0;
    }

    .content-box h3 {
        font-size: 14px;
    }

    .content-box h2 {
        font-size: 32px;
        margin-bottom: 5px;
    }

    .content-box p {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .about-Btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .services-section {
        padding: 40px 0;
    }

        .services-section .section-title {
            margin-bottom: 20px;
        }

            .services-section .section-title h2 {
                font-size: 32px;
            }

    .service-box .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0 auto 10px auto;
    }

    .service-box h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .service-box p {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .services-btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .newsletter-section .news-content h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .newsletter-section .news-content {
        padding: 0 20px;
    }

        .newsletter-section .news-content p {
            font-size: 14px;
        }

        .newsletter-section .news-content .news-btns-div .btn-1 {
            padding: 8px 20px !important;
            font-size: 14px;
        }

        .newsletter-section .news-content .news-btns-div .btn-2 {
            padding: 8px 20px !important;
            font-size: 14px;
        }

    .our-fleet-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .fleet-card .fleet-1 {
        margin-bottom: 10px;
    }

    .fleet-card h3 {
        font-size: 24px;
    }

    .fleet-card .fleet-para {
        font-size: 14px;
    }

    .fleet-features {
        gap: 5px;
    }

        .fleet-features p {
            font-size: 14px;
        }

    .fleet_btn {
        padding: 8px 40px !important;
        font-size: 14px;
    }

    .contact-section .contact-info h2 {
        font-size: 14px;
    }

    .contact-section .contact-info h3 {
        font-size: 32px;
    }

    .contact-section .contact-info p {
        font-size: 14px;
    }

    .contact-section .contact-form {
        padding: 20px;
        margin-top: 20px;
    }

        .contact-section .contact-form .contact-input-div {
            margin-bottom: 10px;
        }

            .contact-section .contact-form .contact-input-div .contact-custom-input {
                padding: 6px 10px;
                font-size: 14px;
            }

    .contact-section .contact-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .footer .footer-logo {
        width: 180px;
    }

    .footer_ul {
        gap: 5px;
        padding: 6px;
    }

        .footer_ul .footer_li a {
            font-size: 14px;
        }

    .right-footer-content .getin_touch {
        gap: 5px;
    }

    .getin_touch a {
        font-size: 14px;
    }

    .banner-section {
        padding: 60px 0;
    }

        .banner-section h2 {
            font-size: 42px;
        }

    .breadcrumb {
        margin-top: 10px;
    }

    .navbar-expand-lg .navbar-collapse {
        padding: 20px;
    }
    .sec-about .img-box {
        margin-top: 20px;
    }
    .miniheaderchange {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .sec-result .upper-list {
        display: none;
    }

    .sec-result .number-box ul li .num-circle h6 {
        position: relative;
    }

    .update-fleet-box .fleet-detail {
        border: none;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .infocont a {
        font-size: 14px
    }

    .social_icons i {
        font-size: 14px;
    }

    .navbar-expand-lg .logo {
        width: 150px;
    }

    .navbar-collapse .navbar-nav .nav-item {
        padding: 0 10px;
        height: auto;
        border: none;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
        margin-top: 0;
    }

    .header-Btn {
        height: auto;
        padding: 10px 20px !important;
        font-size: 14px;
    }

    .form-list .form-list-h1 {
        font-size: 14px
    }

    .form-list .form-list1 .field {
        font-size: 14px;
        height: 100%;
    }

    .custom-head-Btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .left-herocon {
        gap: 5px;
        margin-top: 20px;
    }

        .left-herocon h2 {
            font-size: 32px;
        }

    .hero-btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .hero-section {
        height: 70vh;
    }

    .sec-about {
        padding: 40px 0;
    }

    .content-box h3 {
        font-size: 14px;
    }

    .content-box h2 {
        font-size: 32px;
        margin-bottom: 5px;
    }

    .content-box p {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .about-Btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .services-section {
        padding: 40px 0;
    }

        .services-section .section-title {
            margin-bottom: 20px;
        }

            .services-section .section-title h2 {
                font-size: 32px;
            }

    .service-box .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0 auto 10px auto;
    }

    .service-box h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .service-box p {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .services-btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .newsletter-section .news-content h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .newsletter-section .news-content {
        padding: 0 20px;
    }

        .newsletter-section .news-content p {
            font-size: 14px;
        }

        .newsletter-section .news-content .news-btns-div .btn-1 {
            padding: 8px 20px !important;
            font-size: 14px;
        }

        .newsletter-section .news-content .news-btns-div .btn-2 {
            padding: 8px 20px !important;
            font-size: 14px;
        }

    .our-fleet-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .fleet-card .fleet-1 {
        margin-bottom: 10px;
    }

    .fleet-card h3 {
        font-size: 24px;
    }

    .fleet-card .fleet-para {
        font-size: 14px;
    }

    .fleet-features {
        gap: 5px;
    }

        .fleet-features p {
            font-size: 14px;
        }

    .fleet_btn {
        padding: 8px 40px !important;
        font-size: 14px;
    }

    .contact-section .contact-info h2 {
        font-size: 14px;
    }

    .contact-section .contact-info h3 {
        font-size: 32px;
    }

    .contact-section .contact-info p {
        font-size: 14px;
    }

    .contact-section .contact-form {
        padding: 20px;
        margin-top: 20px;
    }

        .contact-section .contact-form .contact-input-div {
            margin-bottom: 10px;
        }

            .contact-section .contact-form .contact-input-div .contact-custom-input {
                padding: 6px 10px;
                font-size: 14px;
            }

    .contact-section .contact-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .footer .footer-logo {
        width: 180px;
    }

    .footer_ul {
        gap: 5px;
        padding: 6px;
    }

        .footer_ul .footer_li a {
            font-size: 14px;
        }

    .right-footer-content .getin_touch {
        gap: 5px;
    }

    .getin_touch a {
        font-size: 14px;
    }

    .banner-section {
        padding: 60px 0;
    }

        .banner-section h2 {
            font-size: 42px;
        }

    .breadcrumb {
        margin-top: 10px;
    }

    .navbar-expand-lg .navbar-collapse {
        padding: 20px;
    }
    .sec-about .img-box {
        margin-top: 20px;
    }
    .miniheaderchange {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .sec-result .upper-list{
        display: none;
    }
    .sec-result .number-box ul li .num-circle h6 {
        position: relative;
    }
    .update-fleet-box .fleet-detail{
        border: none;
    }
}
