@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #b31d1d;
    --hover-color: #b31d1d;
    --secondary-color: #4E930C;
    --white-color: #ffffff;
    --black-color: #000000;
    --border-color: #d80706;
}

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: "Poppins", sans-serif;
}

p,
span {
    padding: 0;
    margin-bottom: 0;
    font-family: "Poppins", 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: #000000;
}

.infocont {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
}

    .infocont a {
        color: var(--white-color);
        font-weight: 500;
        transition: all 0.3s ease-in-out;
    }

        .infocont a:hover {
            color: #b31d1d;
        }

        .infocont a i {
            padding-right: 5px;
        }

.social_icons {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    margin-top: 0px;
}

    .social_icons i {
        color: var(--white-color);
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

        .social_icons i:hover {
            color: #b31d1d;
        }

/* mini header css */
/* header css */


.callFixedBtn {
    background: #b31d1d;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 15px;
    left: 15px;
    transition: all .3s ease-in-out;
    animation: pulse-animation 2s infinite;
    z-index: 3;
}

    .callFixedBtn:hover {
        background-color: #000;
        color: white;
    }

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px #b31d1d79;
    }

    100% {
        box-shadow: 0 0 0 20px #ffffff44;
    }
}

.header {
    width: 100%;
    position: relative;
    background: var(--black-color);
    transition: all 0.3s ease;
    z-index: 10;
}

    .header .header_stick {
        width: 100%;
        position: relative;
        background: var(--black-color);
        transition: all 0.3s ease;
        z-index: 10;
    }

        .header .header_stick.sticky {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: #ffffff;
            box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
            animation: fadeInDown 0.5s ease;
        }

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#scrollBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    transition: background-color 0.3s;
}

    #scrollBtn:hover {
        background-color: #000000;
    }

.header .navbar-expand-lg {
    padding: 10px 0;
    background: var(--bs-white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .header .navbar-expand-lg .navbar-collapse {
        justify-content: flex-end;
        align-items: center;
        gap: 20px;
    }

    .header .navbar-expand-lg .navbar-nav {
        align-items: center;
        gap: 40px;
    }

.header .navbar-light .navbar-nav .nav-link.active {
    border: none;
    padding: 10px 20px !important;
    /* background: #000000; */
    color: var(--primary-color);
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .header .navbar-light .navbar-nav .nav-link.active:hover {
        color: var(--hover-color);
        /* background: var(--secondary-color); */
    }

        .header .navbar-light .navbar-nav .nav-link.active:hover:before {
            display: none;
        }

.header .header-Btn {
    border: none;
    padding: 10px 40px !important;
    background: var(--primary-color);
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    animation: buttonanimation 2s ease infinite;
    border: none;
}

    .header .header-Btn:hover {
        background: #000000;
        color: var(--white-color);
    }

.header .navbar-light .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    padding: 0;
    font-family: "Poppins", sans-serif;
    color: var(--black-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* .header .navbar-nav .nav-item:hover .nav-link{
color: var(--white-color) !important;
} */
.header .navbar-nav .nav-item:hover .inactive {
    color: var(--hover-color) !important;
}

.header .navbar-nav .nav-item .inactive::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--hover-color);
    transition: all 0.3s ease;
}

.header .navbar-nav .nav-item .inactive:hover::before {
    width: 100%;
}

.header .navbar-brand .logo {
    width: 125px;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
}

.appletaxi-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .appletaxi-logo h1 {
        font-size: 24px;
        font-weight: 700;
        color: var(--white-color);
        text-transform: uppercase;
    }

        .appletaxi-logo h1 span {
            color: #d80706;
            margin-left: 3px;
        }

/* header css */
/* hero section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero h1 {
        position: relative;
        z-index: 3;
        color: var(--white-color);
        text-align: center;
        font-size: 18px;
        font-weight: 600;
        background: var(--primary-color);
        width: fit-content;
        margin: 0 auto;
        padding: 10px 20px;
        margin-bottom: 10px;
        border-radius: 5px;
    }

    .hero h2 {
        position: relative;
        z-index: 3;
        color: #f5f5f5;
        font-size: 50px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .hero .comout {
        position: relative;
        z-index: 3;
    }

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1s ease, transform 5s ease;
}

    .slide.active {
        opacity: 1;
        transform: scale(1.1);
        z-index: 1;
    }

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.main-heroo {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-head {
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bokking-eginer-main {
    width: 100%;
    background: #1c1c1c8a;
    padding: 30px;
    border-radius: 10px;
    border: 5px solid #f5f5f5;
}

.booking {
    width: 100%;
    position: relative;
    overflow: hidden;
}

    .booking .custom-input {
        width: 100%;
        padding: 10px 48px 10px 10px;
        background: transparent;
        border: 2px solid var(--white-color);
        color: var(--white-color);
        margin-bottom: 20px;
        font-family: "Poppins", sans-serif;
        position: relative;
        z-index: 1;
    }

        .booking .custom-input::placeholder {
            color: var(--white-color);
        }

        .booking .custom-input option {
            color: var(--black-color);
        }

    .booking i {
        color: var(--primary-color);
        position: absolute;
        top: 6px;
        right: 10px;
        width: 35px;
        height: 35px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        z-index: 0;
    }

    .booking .bookingFrom-Btn {
        border: none;
        padding: 10px 40px !important;
        background: var(--primary-color);
        color: var(--white-color);
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        border-radius: 5px;
        transition: all 0.3s ease-in-out;
        animation: buttonanimation 2s ease infinite;
    }

        .booking .bookingFrom-Btn:hover {
            background: #ffffff;
            color: #000000;
        }

/* hero section */
/* about section */
.about-us {
    padding: 40px 0;
}

.about-image {
    position: relative;
    background: url(../images/about-image-bg.svg) no-repeat;
    background-position: bottom 25px right 50px;
    background-size: auto;
    padding-bottom: 100px;
    margin-right: 40px;
    padding-left: 10px;
}

.about-img-1 {
    width: 414px;
    position: relative;
}

    .about-img-1::before {
        content: '';
        position: absolute;
        top: -10px;
        bottom: 0;
        left: -10px;
        right: 0;
        width: 100%;
        height: 100%;
        border: 3px solid var(--primary-color);
        border-radius: 35px;
        z-index: 1;
    }

    .about-img-1 img {
        width: 100%;
        aspect-ratio: 1 / 1.37;
        object-fit: cover;
        border-radius: 35px;
    }

.about-img-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
}

    .about-img-2::before {
        content: '';
        position: absolute;
        top: -8px;
        bottom: 0;
        left: -8px;
        right: 0;
        width: 100%;
        height: 100%;
        border: 3px solid var(--primary-color);
        border-radius: 35px;
        z-index: 1;
    }

    .about-img-2 img {
        width: 350px;
        aspect-ratio: 1 / 1.37;
        object-fit: cover;
        border-radius: 35px;
    }

.aboutRowSecondcontent {
    padding-top: 4rem;
}

.AboutSecondContent strong {
    font-size: 17px;
    font-family: "Poppins", sans-serif;
}

.aboutRowSecondcontent .col-xxl-4 {
    margin: 12px 0;
}

.AboutSecondContent {
    background: #f2f2f2;
    padding: 20px;
    border-radius: 25px;
    border: 2px solid #e5e5e5;
    transition: all .3s ease-in-out;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    min-height: 412px;
}

    .AboutSecondContent:hover {
        transform: translateY(-10px);
    }



.section-title {
    margin-bottom: 20px;
}

    .section-title h3 {
        font-size: 18px;
        font-weight: 600;
        text-transform: capitalize;
        color: var(--primary-color);
        margin-bottom: 10px;
        width: fit-content;
        border-bottom: 2px solid var(--primary-color);
    }

    .section-title h2 {
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 0;
    }

    .section-title p {
        margin-top: 10px;
        margin-bottom: 0;
    }

.about-btn {
    border: none;
    padding: 10px 40px !important;
    background: var(--primary-color);
    color: var(--white-color);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    animation: buttonanimation 2s ease infinite;
}

    .about-btn:hover {
        background: #000000;
        color: var(--white-color);
    }

/* about section */
/* services section */
.sec-tours {
    padding: 40px 0;
    background: #f2f2f2;
}

    .sec-tours .sec-title .box-1 h2 {
        font-size: 18px;
        font-weight: 600;
        color: var(--white-color);
        width: fit-content;
        margin: 0 auto;
        background: var(--primary-color);
        margin-bottom: 10px;
        padding: 10px 40px;
        border-radius: 5px;
    }

    .sec-tours .sec-title .box-1 p {
        font-size: 16px;
        text-align: center;
        margin-bottom: 40px;
    }

    .sec-tours .sec-title .box-1 .para {
        color: #6b6b6b;
        padding: 5px 0 10px;
    }

    .sec-tours .sec-title .box-2 {
        text-align: right;
    }

        .sec-tours .sec-title .box-2 .services-btn {
            font-weight: 600;
            background-color: #f8b347;
            border: 1px solid #f8b347;
            border-radius: 7px;
            padding: 11px 26px;
            color: #ffffff !important;
            transition: 0.5s;
            font-size: 16px;
        }

    .sec-tours .industries-box {
        background-color: #fff;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 15px;
        padding: 0;
    }

        .sec-tours .industries-box .img-box {
            position: relative;
            box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        }

            .sec-tours .industries-box .img-box img {
                height: 350px;
                width: 100%;
                object-fit: cover;
                border-radius: 10px;
            }

            .sec-tours .industries-box .img-box::before {
                content: "";
                background-color: #000;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                opacity: 0.5;
                border-radius: 10px;
            }

        .sec-tours .industries-box .icon-box {
            background-color: #ededed;
            width: fit-content;
            margin: 0 auto;
            padding: 18px;
            border-radius: 10px;
        }

        .sec-tours .industries-box .for-abs {
            position: absolute;
            text-align: center;
            padding: 0 0px;
            top: 145px;
            margin: 0 auto;
            left: 0;
            right: 0;
        }

.positionset {
    top: 113px !important;
}

.sec-tours .industries-box .day-count {
    position: absolute;
    top: 6%;
    right: 3%;
    background: var(--primary-color);
    padding: 6px 15px;
    border-radius: 3px;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease-in-out;
}

    .sec-tours .industries-box .day-count:hover {
        background: #ffffff;
        color: #000000;
    }

.sec-tours .industries-box .detail-table table {
    margin-bottom: 0;
}

.sec-tours .industries-box .detail-table {
    position: absolute;
    top: 180px;
    left: 0;
    right: 0;
    color: var(--white-color);
    text-align: center;
    padding: 0 14px;
}

    .sec-tours .industries-box .detail-table tr {
        border-bottom: 1px solid var(--white-color);
    }

    .sec-tours .industries-box .detail-table td {
        padding: 1px 0px;
        font-weight: 500;
        font-size: 14px;
    }

.sec-tours .industries-box .for-abs h3 {
    color: var(--white-color);
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
}

.sec-tours .industries-box .for-abs .para {
    color: var(--white-color);
    font-size: 18px;
    line-height: 23px;
}

/* services section */
/* our fleets section */
.our-fleet-section {
    width: 100%;
    height: 100%;
    padding: 40px 0px;
    background: #ffffff;
}

    .our-fleet-section h2 {
        font-size: 18px;
        font-weight: 600;
        color: var(--white-color);
        width: fit-content;
        margin: 0 auto;
        background: var(--primary-color);
        margin-bottom: 10px;
        padding: 10px 40px;
        border-radius: 5px;
    }

    .our-fleet-section .heading-p {
        font-size: 16px;
        text-align: center;
        margin-bottom: 40px;
        margin-bottom: 40px;
    }

.fleet-card {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    padding: 30px;
    background: var(--white-color);
    border: 3px solid #000000;
    border-radius: 20px;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
}

    .fleet-card .fleet-1 {
        width: 100%;
        height: 180px;
        border-radius: 15px;
        object-fit: cover;
        margin-bottom: 20px;
        background: #f2f2f2;
    }

    .fleet-card h3 {
        font-weight: 700;
        color: var(--black-color);
        margin-bottom: 10px;
        font-size: 24px;
        padding-bottom: 10px;
        border-bottom: 1px solid #000000;
    }

    .fleet-card .fleet-img {
        width: 100%;
        height: 180px;
        border-radius: 15px;
        object-fit: cover;
        margin-bottom: 20px;
        background: #f2f2f2;
    }

    .fleet-card .fleet-para {
        color: var(--black-color);
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #000000;
    }

.fleet-features {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #000000;
    padding-bottom: 10px;
}

    .fleet-features i {
        padding-right: 5px;
        color: var(--primary-color);
    }

.fleet_btn {
    width: 100%;
    border: none;
    padding: 10px 40px !important;
    text-align: center;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .fleet_btn:hover {
        color: var(--white-color);
        background: #000000;
    }

/* our fleets section */
/* contact us css */
.contact-us {
    width: 100%;
    height: 100%;
    padding: 40px 0;
    background: #f2f2f2;
}

    .contact-us .topcontact-sec h2 {
        font-size: 18px;
        font-weight: 600;
        color: var(--white-color);
        width: fit-content;
        margin: 0 auto;
        background: var(--primary-color);
        margin-bottom: 40px;
        padding: 10px 40px;
        border-radius: 5px;
    }

    .contact-us .contact-info-box {
        background: #000000;
        border-radius: 10px;
        padding: 50px 40px;
        position: relative;
        z-index: 1;
    }

        .contact-us .contact-info-box h4 {
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--white-color);
        }

        .contact-us .contact-info-box .cont-inner-box {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 10px 0;
        }

            .contact-us .contact-info-box .cont-inner-box .icon-box i {
                width: 40px;
                height: 40px;
                background: var(--white-color);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--black-color);
            }

            .contact-us .contact-info-box .cont-inner-box .text-box {
                padding-left: 20px;
            }

                .contact-us .contact-info-box .cont-inner-box .text-box h6 {
                    color: var(--white-color);
                    font-weight: 700;
                }

                .contact-us .contact-info-box .cont-inner-box .text-box .para a {
                    color: var(--white-color);
                    word-break: break-all;
                }

                .contact-us .contact-info-box .cont-inner-box .text-box .para {
                    color: var(--white-color);
                }

    .contact-us .main-Contact {
        width: 100%;
        height: auto;
        padding: 20px 50px;
        border: 5px solid #000000;
        border-radius: 10px;
    }

        .contact-us .main-Contact h3 {
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--black-color);
        }

    .contact-us .CfotmInp {
        width: 100%;
    }

        .contact-us .CfotmInp .ininput {
            width: 100%;
            padding: 8px 15px 8px 0px;
            border-top: none;
            border-left: none;
            border-right: none;
            border-bottom: 2px solid #000000;
            background: transparent;
            border-radius: 0;
            margin-bottom: 20px;
            font-family: "Poppins", sans-serif;
            font-size: 16px;
            color: var(--black-color);
        }

            .contact-us .CfotmInp .ininput::placeholder {
                color: var(--black-color);
                font-weight: 500;
            }

            .contact-us .CfotmInp .ininput:focus {
                outline: none;
                border-top: none;
                border-left: none;
                border-right: none;
                border-bottom: 2px solid var(--primary-color);
            }

.contact-Btn {
    width: fit-content;
    border: none;
    padding: 10px 40px !important;
    text-align: center;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .contact-Btn:hover {
        color: var(--white-color);
        background: #000000;
    }

/* contact us css */
/* footer section css */
.footer {
    width: 100%;
    height: 100%;
    padding: 40px 0;
    background: var(--black-color);
}

.left-footer-content {
    width: 100%;
    height: 100%;
}

    .left-footer-content a {
        color: var(--white-color);
        margin-bottom: 10px;
    }

        .left-footer-content a h1 {
            font-weight: 600;
        }

.center-footer-content {
    width: 100%;
}

    .center-footer-content h2 {
        font-weight: 600;
        font-size: 24px;
        color: var(--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);
        font-family: "Poppins", sans-serif;
        transition: all 0.3s ease-in-out;
    }

        .footer_ul .footer_li a:hover {
            transform: translateX(10px);
        }

        .footer_ul .footer_li a i {
            padding-right: 25px;
        }

.right-footer-content h2 {
    font-weight: 600;
    font-size: 24px;
    color: var(--white-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(--white-color);
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease-in-out;
    display: flex;
    word-break: break-all;
}

    .getin_touch a:hover {
        color: var(--primary-color);
    }

    .getin_touch a i {
        padding-right: 25px;
        margin-top: 2px;
    }

.getin_touch p {
    color: var(--white-color);
}

.last-footer-content h2 {
    font-weight: 600;
    font-size: 24px;
    color: var(--white-color);
}

.social-icons {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}

    .social-icons .icon {
        background: var(--white-color);
        padding: 10px 15px;
        color: var(--black-color);
        border-radius: 5px;
        transition: all 0.3s ease-in-out;
    }

        .social-icons .icon:hover {
            background: var(--primary-color);
            color: var(--white-color);
        }

.bootom-footer-section {
    width: 100%;
    background: var(--primary-color);
    padding: 10px;
    color: var(--white-color);
    text-align: center;
}

    .bootom-footer-section a {
        color: var(--white-color);
        transition: all 0.3s ease-in-out;
    }

        .bootom-footer-section a:hover {
            color: #000000;
        }

.footer-logo {
    width: 232px;
    border-radius: 10px;
}

/* footer section css */
/* inner pages banner css */
.banner-section {
    width: 100%;
    padding: 80px;
    background: #000000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .banner-section h2 {
        font-size: 52px;
        font-weight: 600;
        color: var(--white-color);
    }

.breadcrumb {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.breadcrumb-item a {
    color: var(--white-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white-color);
}

.breadcrumb-item.active {
    color: #b31d1d;
    font-weight: 600;
}

/* inner pages banner css */
/* inner services css */
.inner-services {
    width: 100%;
    height: 100%;
    padding: 40px 0;
}

.main-ner-image {
    width: 100%;
    padding: 20px;
}

    .main-ner-image img {
        border-radius: 20px;
        border: 5px solid var(--primary-color);
    }

.main-ner-content {
    width: 100%;
    padding: 50px;
}

    .main-ner-content h1 {
        font-size: 36px;
        font-weight: 700;
        color: var(--black-color);
        margin-bottom: 10px;
    }

    .main-ner-content p {
        font-size: 18px;
        margin-bottom: 10px !important;
    }

/* inner services css */
.industries-box .detail-table .para {
    font-size: 14px;
}
/* become a driver */
.sec-driver {
    padding: 70px 0;
}

    .sec-driver .form-box {
        padding: 30px;
        background-color: #ffffff;
        border-radius: 20px;
        border: 5px solid #b31d1d;
    }

        .sec-driver .form-box .sec-title {
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

            .sec-driver .form-box .sec-title h5 {
                font-size: 26px;
                font-weight: 600;
                color: #000000;
            }

            .sec-driver .form-box .sec-title .para {
                padding: 0 8px;
                color: #000000;
            }

        .sec-driver .form-box .field-box {
            padding: 10px 0;
        }

            .sec-driver .form-box .field-box label {
                padding: 0 0 5px;
                color: #000;
                font-weight: 600;
                font-size: 15px;
            }

            .sec-driver .form-box .field-box .driver-input {
                padding: 8px 15px;
                background-color: #fff;
                border: 2px solid #000;
                color: #000;
            }

            .sec-driver .form-box .field-box .submit-btn {
                background-color: #b31d1d;
                border: none;
                padding: 10px 40px;
                color: #fff !important;
                transition: 0.5s;
                font-size: 16px;
                font-weight: 600;
                border-radius: 5px;
                border-bottom-right-radius: 5px;
                transition: all 0.3s ease-in-out;
            }

                .sec-driver .form-box .field-box .submit-btn:hover {
                    background-color: #000000;
                    color: #ffffff !important;
                }
/* become a driver */
.sec-result {
    padding: 60px 0;
}

    .sec-result .upper-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 7px 16px;
        background: #edf2fa;
        border: 2px solid #000;
        border-radius: 10px;
    }

        .sec-result .upper-list li {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .sec-result .upper-list li .icon-box {
            }

                .sec-result .upper-list li .icon-box .img-icon {
                    width: 60px;
                    height: 100%;
                    object-fit: contain;
                }

            .sec-result .upper-list li .text-box {
                padding: 0 10px;
            }

                .sec-result .upper-list li .text-box h6 {
                    font-size: 16px;
                    font-weight: 600;
                    color: #000;
                }

                .sec-result .upper-list li .text-box p {
                    font-size: 14px;
                }

    .sec-result .number-box {
        padding: 20px 0px;
    }

        .sec-result .number-box ul {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .sec-result .number-box ul li {
                width: 24%;
                position: relative;
            }

                .sec-result .number-box ul li .num-circle {
                    text-align: center;
                }

                    .sec-result .number-box ul li .num-circle h6 {
                        background-color: #edf2fa;
                        width: 50px;
                        height: 50px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 50%;
                        font-size: 20px;
                        margin: 0 auto;
                        color: #000;
                        font-weight: 600;
                    }

                    .sec-result .number-box ul li .num-circle p {
                        font-size: 14px;
                        margin-top: 15px;
                        text-transform: uppercase;
                        color: #000;
                    }

    .sec-result .completed {
        background-color: #b31d1d !important;
        color: #ffffff !important;
    }

    .sec-result .for-line {
        position: relative
    }

        .sec-result .for-line::before {
            content: '';
            background-color: #b31d1d;
            position: absolute;
            width: 67%;
            height: 4px;
            top: 30%;
            border-radius: 10px;
            left: 70%;
        }

    .sec-result .cancellation-box {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 20px;
        background-color: #000000bd;
    }

        .sec-result .cancellation-box .img-box {
            background-color: #fff;
            padding: 10px;
            border-radius: 10px;
        }

            .sec-result .cancellation-box .img-box .shield-img {
                width: 50px;
            }

        .sec-result .cancellation-box .text-box {
            padding-left: 10px;
        }

            .sec-result .cancellation-box .text-box p {
                line-height: 23px;
                color: #fff;
                font-size: 18px;
            }


.update-fleet-box {
    background: #edf2fa;
    margin: 20px 0;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 2px solid #000;
    border-radius: 10px;
}

    .update-fleet-box .img-box {
        margin-bottom: 10px;
    }

        .update-fleet-box .img-box img {
            width: 100%;
            height: 120px;
            object-fit: contain;
        }

    .update-fleet-box .car-text {
        text-align: center;
        font-size: 14px;
        line-height: 18px;
        padding-bottom: 10px;
        font-weight: 700;
    }

    .update-fleet-box .private-text {
        font-size: 14px;
    }

    .update-fleet-box .star-list {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 7px 0 0;
    }

        .update-fleet-box .star-list li {
            padding: 0 1px;
        }

            .update-fleet-box .star-list li i {
                color: #000000;
                background-color: #ffc107;
                padding: 4px;
                border-radius: 5px;
                width: 25px;
                height: 25px;
                font-size: 13px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

    .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 #b31d1d;
                margin: 6px 0;
                border-radius: 6px;
                font-size: 12px;
                background-color: #b31d1d;
                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;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 2px solid #000;
    border-radius: 10px;
}

    .right-card .top-heading {
        display: flex;
        align-items: center;
        padding: 10px 0 15px;
    }

        .right-card .top-heading i {
            font-size: 24px;
            padding-right: 10px;
            color: #000000;
        }

        .right-card .top-heading h5 {
            font-size: 22px;
            color: #000000;
        }

    .right-card .distance-box {
        padding: 20px 0;
        border-top: 1px solid #000000;
        border-bottom: 1px solid #000000;
    }

        .right-card .distance-box h6 {
            color: #000;
        }

        .right-card .distance-box ul {
            padding: 10px 0 0;
        }

            .right-card .distance-box ul li {
                font-size: 14px;
                padding: 5px 0px;
                color: #000;
            }

                .right-card .distance-box ul li i {
                    font-size: 16px;
                    color: #000000;
                    padding-right: 5px;
                }

    .right-card .cal-mile {
        padding: 10px 0 0;
    }

        .right-card .cal-mile li {
            font-size: 16px;
            padding: 5px 0;
            color: #000;
        }

            .right-card .cal-mile li i {
                padding-right: 5px;
                color: #000000;
            }

    .right-card .distance-box-2 ul li {
        font-size: 14px;
        padding: 5px 0;
        color: #000;
    }

        .right-card .distance-box-2 ul li i {
            font-size: 15px;
            color: #000000;
            padding-right: 3px;
        }

.ui-menu {
    height: 250px !important;
    overflow-y: scroll;
}

.Passenger-Information {
    background: #edf2fa;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 2px solid #000;
    border-radius: 10px;
}

    .Passenger-Information h3 {
        font-size: 22px;
        font-weight: 600;
        padding-bottom: 5px;
        color: #000000;
    }

    .Passenger-Information .input-box {
        padding-bottom: 10px;
    }

        .Passenger-Information .input-box label {
            text-align: center;
            padding: 4px 0;
            font-size: 16px;
            font-weight: 600;
            line-height: 18px;
            color: #000;
            margin: 0;
        }

        .Passenger-Information .input-box .b-field {
            width: 100%;
            border: 1px solid #ccc !important;
        }

        .Passenger-Information .input-box p {
            font-size: 13px;
            padding: 4px 0;
        }

    .Passenger-Information .input-box-extra {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .Passenger-Information .input-box-extra input {
            margin: 0 !important;
        }

        .Passenger-Information .input-box-extra label {
            padding-left: 10px;
        }

.ui-dialog .ui-dialog-content {
    overflow-y: hidden !important;
}

.ui-dialog .ui-dialog-buttonpane button {
    background: #000 !important;
    padding: 7px 10px !important;
    text-align: center !important;
    color: #ffffff !important;
    border-radius: 7px !important;
}

.ui-menu .ui-menu-item {
    width: 350px !important;
}

.loadingDiv {
    text-align: center;
    background: rgba(0,0,0,0.5) url(images/ajax-loader.gif) no-repeat right center;
    position: fixed;
    display: none;
    z-index: 99999999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}

.extra-sec-padding {
    margin-top: 150px;
}

#lkbtn_lgout {
    padding: 0;
}

.navbuttons {
    display: flex;
    align-items: center;
    gap: 10px;
}
/************************** 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) {
    .header .navbar-light .navbar-nav .nav-link.active {
        padding: 10px 10px !important;
    }

    .header .navbar-expand-lg .navbar-nav {
        gap: 25px;
    }

    .AboutSecondContent {
        min-height: 350px;
    }
}

@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 {
        gap: 15px;
    }

        .social_icons i {
            font-size: 14px;
        }

    .header .navbar-expand-lg {
        padding: 0px 0;
    }

    .header .navbar-brand .logo {
        width: 100px;
    }

    .header .navbar-expand-lg .navbar-nav {
        gap: 25px;
    }

    .header .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
    }

    .header .header-Btn {
        padding: 8px 16px !important;
        font-size: 14px;
    }

    .AboutSecondContent {
        min-height: 301px;
    }

        .AboutSecondContent p {
            font-size: 14px;
        }

    .hero {
        height: 70vh !important;
    }

        .hero h1 {
            font-size: 14px;
            padding: 8px 16px;
            margin-bottom: 5px;
        }

        .hero h2 {
            font-size: 32px;
            margin-bottom: 10px;
        }

    .bokking-eginer-main {
        padding: 15px;
    }

    .booking .custom-input {
        padding: 8px 48px 8px 8px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .booking i {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .booking .bookingFrom-Btn {
        padding: 8px 16px !important;
        font-size: 14px;
    }

    .about-img-2 img {
        width: 250px;
    }

    .about-img-1 {
        width: 300px;
    }

    .section-title h3 {
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .section-title p {
        margin-top: 5px;
        font-size: 14px;
    }

    .section-title {
        margin-bottom: 10px;
    }

    .about-btn {
        padding: 8px 16px !important;
        font-size: 14px;
    }

    .sec-tours .sec-title .box-1 h2 {
        margin-bottom: 7px;
        padding: 8px 16px;
    }

    .sec-tours .sec-title .box-1 p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .positionset {
        top: 73px !important;
    }

    .sec-tours .industries-box .img-box img {
        height: 280px;
    }

    .sec-tours .industries-box .for-abs {
        top: 95px;
    }

    .sec-tours .industries-box .detail-table {
        top: 140px;
    }

    .our-fleet-section h2 {
        font-size: 14px;
        margin-bottom: 5px;
        padding: 8px 16px;
    }

    .fleet-card {
        padding: 15px;
    }

        .fleet-card .fleet-img {
            height: 220px;
            margin-bottom: 10px;
        }

        .fleet-card h3 {
            padding-bottom: 5px;
        }

        .fleet-card .fleet-para {
            font-size: 14px;
        }

    .fleet-features {
        gap: 5px;
    }

        .fleet-features p {
            font-size: 14px;
        }

        .fleet-features i {
            font-size: 14px;
        }

    .fleet_btn {
        padding: 8px 40px !important;
        font-size: 14px;
    }

    .contact-us .topcontact-sec h2 {
        font-size: 14px;
        margin-bottom: 20px;
        padding: 8px 16px;
    }

    .contact-us .contact-info-box h4 {
        margin-bottom: 10px;
    }

    .contact-us .contact-info-box {
        padding: 30px;
    }

        .contact-us .contact-info-box .cont-inner-box .text-box {
            padding-left: 10px;
        }

        .contact-us .contact-info-box .cont-inner-box .icon-box i {
            width: 35px;
            height: 35px;
            font-size: 14px;
        }

        .contact-us .contact-info-box .cont-inner-box .text-box .para {
            font-size: 14px;
        }

    .contact-us .main-Contact {
        padding: 20px;
    }

        .contact-us .main-Contact h3 {
            margin-bottom: 10px;
            font-size: 24px;
        }

    .contact-us .CfotmInp span {
        display: none;
    }

    .contact-us .CfotmInp .ininput {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .contact-Btn {
        padding: 8px 16px !important;
        font-size: 14px;
    }

    .footer-logo {
        width: 150px;
    }

    .social-icons .icon {
        padding: 5px 7px;
        font-size: 14px;
    }

    .center-footer-content h2 {
        font-size: 20px;
    }

    .last-footer-content h2 {
        font-size: 20px;
    }

    .right-footer-content h2 {
        font-size: 20px;
    }

    .footer_ul {
        gap: 5px;
        padding: 3px;
        margin-top: 5px;
        font-size: 14px;
    }

    .getin_touch a {
        font-size: 14px;
    }

    .right-footer-content .getin_touch {
        gap: 5px;
        margin-top: 5px;
    }

    .bootom-footer-section {
        padding: 5px;
    }

    .bottom-footer-content p {
        font-size: 14px;
    }

    .banner-section {
        padding: 40px 0;
    }

        .banner-section h2 {
            font-size: 42px;
        }

    .breadcrumb {
        margin-top: 5px;
    }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .main-ner-content {
        padding: 0px;
    }

        .main-ner-content h1 {
            font-size: 24px;
            margin-bottom: 5px;
        }

        .main-ner-content p {
            font-size: 14px;
        }

    .fleet-card .fleet-1 {
        height: 220px;
        margin-bottom: 10px;
    }

    hr {
        margin: 10px 0 !important;
    }

    .desc {
        font-size: 14px;
        margin: 5px 0;
    }

    .main-title {
        font-size: 32px !important;
        margin-bottom: 0px !important;
    }
}

@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 {
        gap: 15px;
        justify-content: center;
        margin-top: 10px;
    }

        .social_icons i {
            font-size: 14px;
        }

    .header .navbar-expand-lg {
        padding: 0px 0;
    }

    .header .navbar-brand .logo {
        width: 100px;
    }

    .header .navbar-expand-lg .navbar-nav {
        gap: 10px;
        align-items: flex-start;
    }

    .navbuttons {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .header .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
    }

    .header .header-Btn {
        padding: 8px 16px !important;
        font-size: 14px;
    }

    .AboutSecondContent {
        min-height: min-content;
    }

        .AboutSecondContent p {
            font-size: 14px;
        }

    .hero {
        height: 70vh !important;
    }

        .hero h1 {
            font-size: 14px;
            padding: 8px 16px;
            margin-bottom: 5px;
        }

        .hero h2 {
            font-size: 32px;
            margin-bottom: 10px;
        }

    .bokking-eginer-main {
        padding: 15px;
    }

    .booking .custom-input {
        padding: 8px 48px 8px 8px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .booking i {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .booking .bookingFrom-Btn {
        padding: 8px 16px !important;
        font-size: 14px;
    }

    .about-img-2 img {
        width: 250px;
    }

    .about-img-1 {
        width: 300px;
    }

    .section-title h3 {
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .section-title p {
        margin-top: 5px;
        font-size: 14px;
    }

    .section-title {
        margin-bottom: 10px;
    }

    .about-btn {
        padding: 8px 16px !important;
        font-size: 14px;
    }

    .sec-tours .sec-title .box-1 h2 {
        margin-bottom: 7px;
        padding: 8px 16px;
    }

    .sec-tours .sec-title .box-1 p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .positionset {
        top: 73px !important;
    }

    .sec-tours .industries-box .img-box img {
        height: 280px;
    }

    .sec-tours .industries-box .for-abs {
        top: 95px;
    }

    .sec-tours .industries-box .detail-table {
        top: 140px;
    }

    .our-fleet-section h2 {
        font-size: 14px;
        margin-bottom: 5px;
        padding: 8px 16px;
    }

    .fleet-card {
        padding: 15px;
    }

        .fleet-card .fleet-img {
            height: auto;
            margin-bottom: 10px;
        }

        .fleet-card h3 {
            padding-bottom: 5px;
        }

        .fleet-card .fleet-para {
            font-size: 14px;
        }

    .fleet-features {
        gap: 5px;
    }

        .fleet-features p {
            font-size: 14px;
        }

        .fleet-features i {
            font-size: 14px;
        }

    .fleet_btn {
        padding: 8px 40px !important;
        font-size: 14px;
    }

    .contact-us .topcontact-sec h2 {
        font-size: 14px;
        margin-bottom: 20px;
        padding: 8px 16px;
    }

    .contact-us .contact-info-box h4 {
        margin-bottom: 10px;
    }

    .contact-us .contact-info-box {
        padding: 30px;
    }

        .contact-us .contact-info-box .cont-inner-box .text-box {
            padding-left: 10px;
        }

        .contact-us .contact-info-box .cont-inner-box .icon-box i {
            width: 35px;
            height: 35px;
            font-size: 14px;
        }

        .contact-us .contact-info-box .cont-inner-box .text-box .para {
            font-size: 14px;
        }

    .contact-us .main-Contact {
        padding: 20px;
        margin-top: 20px;
    }

        .contact-us .main-Contact h3 {
            margin-bottom: 10px;
            font-size: 24px;
        }

    .contact-us .CfotmInp span {
        display: none;
    }

    .contact-us .CfotmInp .ininput {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .contact-Btn {
        padding: 8px 16px !important;
        font-size: 14px;
    }

    .footer-logo {
        width: 150px;
    }

    .social-icons .icon {
        padding: 5px 7px;
        font-size: 14px;
    }

    .center-footer-content h2 {
        font-size: 20px;
        margin-top: 20px;
    }

    .last-footer-content h2 {
        font-size: 20px;
        margin-top: 20px;
    }

    .right-footer-content h2 {
        font-size: 20px;
        margin-top: 20px;
    }

    .footer_ul {
        gap: 5px;
        padding: 3px;
        margin-top: 5px;
        font-size: 14px;
    }

    .getin_touch a {
        font-size: 14px;
    }

    .right-footer-content .getin_touch {
        gap: 5px;
        margin-top: 5px;
    }

    .bootom-footer-section {
        padding: 5px;
    }

    .bottom-footer-content p {
        font-size: 14px;
    }

    .banner-section {
        padding: 40px 0;
    }

        .banner-section h2 {
            font-size: 42px;
        }

    .breadcrumb {
        margin-top: 5px;
    }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .main-ner-content {
        padding: 0px;
    }

        .main-ner-content h1 {
            font-size: 24px;
            margin-bottom: 5px;
        }

        .main-ner-content p {
            font-size: 14px;
        }

    .fleet-card .fleet-1 {
        height: auto;
        margin-bottom: 10px;
    }

    hr {
        margin: 10px 0 !important;
    }

    .desc {
        font-size: 14px;
        margin: 5px 0;
    }

    .main-title {
        font-size: 32px !important;
        margin-bottom: 0px !important;
    }

    .header .navbar-expand-lg .navbar-collapse {
        padding: 20px;
    }

    .main-ner-image {
        padding: 20px 0;
    }

    .sec-result .upper-list {
        display: none;
    }

    .sec-result .number-box {
        padding: 10px 0px;
    }

    .sec-result {
        padding: 30px 0;
    }

    .infocont {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@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 {
        gap: 15px;
        justify-content: center;
        margin-top: 10px;
    }

        .social_icons i {
            font-size: 14px;
        }

    .header .navbar-expand-lg {
        padding: 0px 0;
    }

    .header .navbar-brand .logo {
        width: 100px;
    }

    .header .navbar-expand-lg .navbar-nav {
        gap: 10px;
        align-items: flex-start;
    }

    .navbuttons {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .header .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
    }

    .header .header-Btn {
        padding: 8px 16px !important;
        font-size: 14px;
    }

    .AboutSecondContent {
        min-height: min-content;
    }

        .AboutSecondContent p {
            font-size: 14px;
        }

    .hero {
        height: 70vh !important;
    }

        .hero h1 {
            font-size: 14px;
            padding: 8px 16px;
            margin-bottom: 5px;
        }

        .hero h2 {
            font-size: 32px;
            margin-bottom: 10px;
        }

    .bokking-eginer-main {
        padding: 15px;
    }

    .booking .custom-input {
        padding: 8px 48px 8px 8px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .booking i {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .booking .bookingFrom-Btn {
        padding: 8px 16px !important;
        font-size: 14px;
    }

    .about-img-2 img {
        width: 250px;
    }

    .about-img-1 {
        width: 300px;
    }

    .section-title h3 {
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .section-title p {
        margin-top: 5px;
        font-size: 14px;
    }

    .section-title {
        margin-bottom: 10px;
    }

    .about-btn {
        padding: 8px 16px !important;
        font-size: 14px;
    }

    .sec-tours .sec-title .box-1 h2 {
        margin-bottom: 7px;
        padding: 8px 16px;
    }

    .sec-tours .sec-title .box-1 p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .positionset {
        top: 73px !important;
    }

    .sec-tours .industries-box .img-box img {
        height: 280px;
    }

    .sec-tours .industries-box .for-abs {
        top: 95px;
    }

    .sec-tours .industries-box .detail-table {
        top: 140px;
    }

    .our-fleet-section h2 {
        font-size: 14px;
        margin-bottom: 5px;
        padding: 8px 16px;
    }

    .fleet-card {
        padding: 15px;
    }

        .fleet-card .fleet-img {
            height: auto;
            margin-bottom: 10px;
        }

        .fleet-card h3 {
            padding-bottom: 5px;
        }

        .fleet-card .fleet-para {
            font-size: 14px;
        }

    .fleet-features {
        gap: 5px;
    }

        .fleet-features p {
            font-size: 14px;
        }

        .fleet-features i {
            font-size: 14px;
        }

    .fleet_btn {
        padding: 8px 40px !important;
        font-size: 14px;
    }

    .contact-us .topcontact-sec h2 {
        font-size: 14px;
        margin-bottom: 20px;
        padding: 8px 16px;
    }

    .contact-us .contact-info-box h4 {
        margin-bottom: 10px;
    }

    .contact-us .contact-info-box {
        padding: 30px;
    }

        .contact-us .contact-info-box .cont-inner-box .text-box {
            padding-left: 10px;
        }

        .contact-us .contact-info-box .cont-inner-box .icon-box i {
            width: 35px;
            height: 35px;
            font-size: 14px;
        }

        .contact-us .contact-info-box .cont-inner-box .text-box .para {
            font-size: 14px;
        }

    .contact-us .main-Contact {
        padding: 20px;
        margin-top: 20px;
    }

        .contact-us .main-Contact h3 {
            margin-bottom: 10px;
            font-size: 24px;
        }

    .contact-us .CfotmInp span {
        display: none;
    }

    .contact-us .CfotmInp .ininput {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .contact-Btn {
        padding: 8px 16px !important;
        font-size: 14px;
    }

    .footer-logo {
        width: 150px;
    }

    .social-icons .icon {
        padding: 5px 7px;
        font-size: 14px;
    }

    .center-footer-content h2 {
        font-size: 20px;
        margin-top: 20px;
    }

    .last-footer-content h2 {
        font-size: 20px;
        margin-top: 20px;
    }

    .right-footer-content h2 {
        font-size: 20px;
        margin-top: 20px;
    }

    .footer_ul {
        gap: 5px;
        padding: 3px;
        margin-top: 5px;
        font-size: 14px;
    }

    .getin_touch a {
        font-size: 14px;
    }

    .right-footer-content .getin_touch {
        gap: 5px;
        margin-top: 5px;
    }

    .bootom-footer-section {
        padding: 5px;
    }

    .bottom-footer-content p {
        font-size: 14px;
    }

    .banner-section {
        padding: 40px 0;
    }

        .banner-section h2 {
            font-size: 42px;
        }

    .breadcrumb {
        margin-top: 5px;
    }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .main-ner-content {
        padding: 0px;
    }

        .main-ner-content h1 {
            font-size: 24px;
            margin-bottom: 5px;
        }

        .main-ner-content p {
            font-size: 14px;
        }

    .fleet-card .fleet-1 {
        height: auto;
        margin-bottom: 10px;
    }

    hr {
        margin: 10px 0 !important;
    }

    .desc {
        font-size: 14px;
        margin: 5px 0;
    }

    .main-title {
        font-size: 32px !important;
        margin-bottom: 0px !important;
    }

    .header .navbar-expand-lg .navbar-collapse {
        padding: 20px;
    }

    .main-ner-image {
        padding: 20px 0;
    }

    .sec-result .upper-list {
        display: none;
    }

    .sec-result .number-box {
        padding: 10px 0px;
    }

    .sec-result {
        padding: 30px 0;
    }

    .infocont {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@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 {
        gap: 15px;
        justify-content: center;
        margin-top: 10px;
    }

        .social_icons i {
            font-size: 14px;
        }

    .header .navbar-expand-lg {
        padding: 0px 0;
    }

    .header .navbar-brand .logo {
        width: 100px;
    }

    .header .navbar-expand-lg .navbar-nav {
        gap: 10px;
        align-items: flex-start;
    }

    .navbuttons {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .header .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
    }

    .header .header-Btn {
        padding: 8px 16px !important;
        font-size: 14px;
    }

    .AboutSecondContent {
        min-height: min-content;
    }

        .AboutSecondContent p {
            font-size: 14px;
        }

    .hero {
        height: 70vh !important;
    }

        .hero h1 {
            font-size: 14px;
            padding: 8px 16px;
            margin-bottom: 5px;
        }

        .hero h2 {
            font-size: 32px;
            margin-bottom: 10px;
            text-align: center;
        }

    .bokking-eginer-main {
        padding: 15px;
    }

    .booking .custom-input {
        padding: 8px 48px 8px 8px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .booking i {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .booking .bookingFrom-Btn {
        padding: 8px 16px !important;
        font-size: 14px;
    }

    .about-img-2 img {
        width: 250px;
    }

    .about-img-1 {
        width: 300px;
    }

    .section-title h3 {
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .section-title p {
        margin-top: 5px;
        font-size: 14px;
    }

    .section-title {
        margin-bottom: 10px;
    }

    .about-btn {
        padding: 8px 16px !important;
        font-size: 14px;
    }

    .sec-tours .sec-title .box-1 h2 {
        margin-bottom: 7px;
        padding: 8px 16px;
    }

    .sec-tours .sec-title .box-1 p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .positionset {
        top: 73px !important;
    }

    .sec-tours .industries-box .img-box img {
        height: 280px;
    }

    .sec-tours .industries-box .for-abs {
        top: 95px;
    }

    .sec-tours .industries-box .detail-table {
        top: 140px;
    }

    .our-fleet-section h2 {
        font-size: 14px;
        margin-bottom: 5px;
        padding: 8px 16px;
    }

    .fleet-card {
        padding: 15px;
    }

        .fleet-card .fleet-img {
            height: auto;
            margin-bottom: 10px;
        }

        .fleet-card h3 {
            padding-bottom: 5px;
        }

        .fleet-card .fleet-para {
            font-size: 14px;
        }

    .fleet-features {
        gap: 5px;
    }

        .fleet-features p {
            font-size: 14px;
        }

        .fleet-features i {
            font-size: 14px;
        }

    .fleet_btn {
        padding: 8px 40px !important;
        font-size: 14px;
    }

    .contact-us .topcontact-sec h2 {
        font-size: 14px;
        margin-bottom: 20px;
        padding: 8px 16px;
    }

    .contact-us .contact-info-box h4 {
        margin-bottom: 10px;
    }

    .contact-us .contact-info-box {
        padding: 30px;
    }

        .contact-us .contact-info-box .cont-inner-box .text-box {
            padding-left: 10px;
        }

        .contact-us .contact-info-box .cont-inner-box .icon-box i {
            width: 35px;
            height: 35px;
            font-size: 14px;
        }

        .contact-us .contact-info-box .cont-inner-box .text-box .para {
            font-size: 14px;
        }

    .contact-us .main-Contact {
        padding: 20px;
        margin-top: 20px;
    }

        .contact-us .main-Contact h3 {
            margin-bottom: 10px;
            font-size: 24px;
        }

    .contact-us .CfotmInp span {
        display: none;
    }

    .contact-us .CfotmInp .ininput {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .contact-Btn {
        padding: 8px 16px !important;
        font-size: 14px;
    }

    .footer-logo {
        width: 150px;
    }

    .social-icons .icon {
        padding: 5px 7px;
        font-size: 14px;
    }

    .center-footer-content h2 {
        font-size: 20px;
        margin-top: 20px;
    }

    .last-footer-content h2 {
        font-size: 20px;
        margin-top: 20px;
    }

    .right-footer-content h2 {
        font-size: 20px;
        margin-top: 20px;
    }

    .footer_ul {
        gap: 5px;
        padding: 3px;
        margin-top: 5px;
        font-size: 14px;
    }

    .getin_touch a {
        font-size: 14px;
    }

    .right-footer-content .getin_touch {
        gap: 5px;
        margin-top: 5px;
    }

    .bootom-footer-section {
        padding: 5px;
    }

    .bottom-footer-content p {
        font-size: 14px;
    }

    .banner-section {
        padding: 40px 0;
    }

        .banner-section h2 {
            font-size: 42px;
        }

    .breadcrumb {
        margin-top: 5px;
    }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .main-ner-content {
        padding: 0px;
    }

        .main-ner-content h1 {
            font-size: 24px;
            margin-bottom: 5px;
        }

        .main-ner-content p {
            font-size: 14px;
        }

    .fleet-card .fleet-1 {
        height: auto;
        margin-bottom: 10px;
    }

    hr {
        margin: 10px 0 !important;
    }

    .desc {
        font-size: 14px;
        margin: 5px 0;
    }

    .main-title {
        font-size: 32px !important;
        margin-bottom: 0px !important;
    }

    .header .navbar-expand-lg .navbar-collapse {
        padding: 20px;
    }

    .main-ner-image {
        padding: 20px 0;
    }

    .sec-result .upper-list {
        display: none;
    }

    .sec-result .number-box {
        padding: 10px 0px;
    }

    .sec-result {
        padding: 30px 0;
    }

    .infocont {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0px;
    }
    .aboutRowSecondcontent {
        padding-top: 0rem;
    }
    .fare-section {
        padding: 30px 10px;
    }
    .sec-result .number-box ul li .num-circle {
        position: relative;
    }
    .update-fleet-box .fleet-detail{
        border: none;
    }
    .ui-menu .ui-menu-item {
        width: 310px !important;
    }
}
