@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&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: #2D7CC1;
    --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: "Space Grotesk", sans-serif;
}

p, span {
    margin: 0;
    padding: 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 **************************/
/* Header Section Css Start */
.main-header {
    width: 100%;
    background: var(--primary-color);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;
}

    .main-header .mini-header {
        width: 100%;
        border-bottom: 1px solid var(--white-color);
        padding: 10px 0;
    }

        .main-header .mini-header .mini-contact-info ul {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 30px;
        }

            .main-header .mini-header .mini-contact-info ul li a {
                color: var(--white-color);
                font-size: 16px;
                font-weight: 500;
                display: flex;
                align-items: center;
                gap: 8px;
            }

            .main-header .mini-header .mini-contact-info ul li .hightlighted {
                background: #ffffff47;
                color: var(--white-color);
                padding: 4px 8px;
                border-radius: 4px;
                font-weight: 600;
                transition: all 0.3s ease;
            }

                .main-header .mini-header .mini-contact-info ul li .hightlighted:hover {
                    background: var(--white-color);
                    color: var(--black-color);
                }

                .main-header .mini-header .mini-contact-info ul li .hightlighted i {
                    width: 25px;
                    height: 25px;
                    font-size: 12px;
                    border-radius: 50%;
                    background: var(--black-color);
                    color: var(--white-color);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: all 0.3s ease;
                }

                .main-header .mini-header .mini-contact-info ul li .hightlighted:hover i {
                    background: var(--primary-color);
                    color: var(--white-color);
                }

        .main-header .mini-header .social-contact-info {
            width: 100%;
            display: flex;
            align-items: center;
        }

            .main-header .mini-header .social-contact-info ul {
                width: 100%;
                display: flex;
                align-items: center;
                gap: 20px;
                justify-content: flex-end;
            }

                .main-header .mini-header .social-contact-info ul li p {
                    color: var(--white-color);
                    font-size: 16px;
                    font-weight: 500;
                }

                .main-header .mini-header .social-contact-info ul li a {
                    width: 30px;
                    height: 30px;
                    background: #ffffff47;
                    color: var(--white-color);
                    font-size: 14px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: all 0.3s ease;
                }

                    .main-header .mini-header .social-contact-info ul li a:hover {
                        background: var(--black-color);
                        color: var(--white-color);
                    }

.header-sticky {
    width: 100%;
    position: relative;
    background: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 10;
}

    .header-sticky.sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        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(--black-color);
        color: var(--white-color);
    }

.navbar-expand-lg {
    padding: 10px 0;
    background: var(--primary-color);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .navbar-expand-lg .eco-miles-cars-logo {
        width: 100px;
    }

    .navbar-expand-lg .navbar-nav {
        gap: 30px;
    }

        .navbar-expand-lg .navbar-nav .nav-item .nav-link {
            font-size: 16px;
            font-weight: 500;
            color: var(--white-color);
            font-family: "Poppins", sans-serif;
            transition: all 0.3s ease;
        }

            .navbar-expand-lg .navbar-nav .nav-item .nav-link:hover {
                color: var(--black-color);
            }

            .navbar-expand-lg .navbar-nav .nav-item .nav-link.active {
                color: var(--black-color);
                font-weight: 600;
            }

    .navbar-expand-lg .custom-header-btn {
        color: var(--white-color);
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
        background: #ffffff47;
        padding: 10px 25px;
        border-radius: 4px;
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        transition: all 0.3s ease;
    }

        .navbar-expand-lg .custom-header-btn:hover {
            background: var(--white-color);
            color: var(--black-color);
        }

        .navbar-expand-lg .custom-header-btn i {
            width: 25px;
            height: 25px;
            font-size: 12px;
            border-radius: 50%;
            background: var(--black-color);
            color: var(--white-color);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .navbar-expand-lg .custom-header-btn:hover i {
            background: var(--primary-color);
            color: var(--white-color);
        }
/* Header Section Css Start */
/* Hero Section Css Start */
.hero-section {
    width: 100%;
    height: 89vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.8)), url(../images/hero-banner-image.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero-section .hero-content {
        width: 100%;
        padding-top: 0;
        height: 100%;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }

        .hero-section .hero-content h1 {
            font-size: 58px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--white-color);
        }

            .hero-section .hero-content h1 span {
                color: var(--primary-color);
            }

        .hero-section .hero-content p {
            font-size: 18px;
            color: var(--white-color);
            margin-top: 10px;
        }

    .hero-section .hero-form {
        width: 100%;
        padding: 40px;
        border-radius: 15px;
        background: #00000073;
    }

        .hero-section .hero-form h2 {
            font-size: 42px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--white-color);
            margin-bottom: 20px;
        }

            .hero-section .hero-form h2 span {
                color: var(--primary-color);
            }

        .hero-section .hero-form .custom-divinput {
            width: 100%;
            position: relative;
            margin-bottom: 25px;
        }

            .hero-section .hero-form .custom-divinput .custom-input {
                width: 100%;
                padding: 12px 55px 12px 5px;
                border: none;
                border-bottom: 2px solid var(--white-color);
                font-size: 16px;
                color: var(--white-color);
                background: transparent;
                font-family: "Poppins", sans-serif;
                transition: all 0.3s ease;
            }

                .hero-section .hero-form .custom-divinput .custom-input:focus {
                    border: none;
                    border-bottom: 2px solid var(--primary-color);
                    box-shadow: none;
                    outline: none;
                }

                .hero-section .hero-form .custom-divinput .custom-input::placeholder {
                    color: var(--white-color);
                }

                .hero-section .hero-form .custom-divinput .custom-input option {
                    color: var(--black-color);
                }

            .hero-section .hero-form .custom-divinput i {
                width: 40px;
                height: 40px;
                position: absolute;
                top: 50%;
                right: 10px;
                transform: translateY(-50%);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 16px;
                pointer-events: none;
                transition: all 0.3s ease;
                background: #ffffff47;
                color: var(--white-color);
                border-radius: 50%;
            }

        .hero-section .hero-form .heroform-btn {
            width: fit-content;
            color: var(--white-color);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            background: #ffffff47;
            padding: 10px 25px;
            border-radius: 4px;
            font-family: "Poppins", sans-serif;
            font-size: 16px;
            transition: all 0.3s ease;
        }

            .hero-section .hero-form .heroform-btn:hover {
                background: var(--white-color);
                color: var(--black-color);
            }

            .hero-section .hero-form .heroform-btn i {
                width: 25px;
                height: 25px;
                font-size: 12px;
                border-radius: 50%;
                background: var(--black-color);
                color: var(--white-color);
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
            }

            .hero-section .hero-form .heroform-btn:hover i {
                background: var(--primary-color);
                color: var(--white-color);
            }

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
}
/* Hero Section Css Start */
/* about section css start */
.about-section {
    width: 100%;
    padding: 40px 0;
}

    .about-section h2 {
        font-size: 42px;
        font-weight: 700;
        color: var(--black-color);
        margin-bottom: 10px;
        text-transform: uppercase;
    }

        .about-section h2 span {
            color: var(--primary-color);
        }

.left-content-acout p {
    color: var(--black-color);
    margin-bottom: 10px;
}

.left-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 18px;
}

.left-content .second-p {
    margin-bottom: 10px;
}

.right-content img {
    border-radius: 20px;
    border: 5px solid var(--primary-color);
}

.about-Btn {
    width: fit-content;
    color: var(--white-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    padding: 10px 25px;
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .about-Btn:hover {
        background: var(--black-color);
        color: var(--white-color);
    }

    .about-Btn i {
        width: 25px;
        height: 25px;
        font-size: 12px;
        border-radius: 50%;
        background: var(--white-color);
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .about-Btn:hover i {
        background: var(--primary-color);
        color: var(--white-color);
    }
/* about section css end */
/* services section css start */
.services-section {
    width: 100%;
    padding: 60px 0;
    background: var(--black-color);
    position: relative;
    top: 0px;
}

.service-main {
    background: var(--white-color);
}

.services-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

    .services-section .section-title h2 {
        font-size: 42px;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--white-color);
    }

        .services-section .section-title h2 span {
            color: var(--primary-color);
        }

.service-box {
    background: var(--white-color);
    padding: 25px;
    height: auto;
    border-radius: 20px;
    text-align: center;
    border: 5px solid var(--primary-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(--white-color);
}

.service-box .service-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    margin: 0 auto 20px auto;
}

.service-box h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 15px;
}

.service-box p {
    color: var(--black-color);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.services-btn {
    width: fit-content;
    color: var(--white-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    padding: 10px 25px;
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

    .services-btn:hover {
        background: var(--black-color);
        color: var(--white-color);
    }

    .services-btn i {
        width: 25px;
        height: 25px;
        font-size: 12px;
        border-radius: 50%;
        background: var(--white-color);
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .services-btn:hover i {
        background: var(--primary-color);
        color: var(--white-color);
    }
/* services section css end */
/* Fleets section css start */
.fleets-section {
    width: 100%;
    padding: 40px 0;
}

    .fleets-section h2 {
        font-size: 42px;
        font-weight: 700; /* font-family: "Poppins", sans-serif; */
        text-transform: uppercase;
        margin-bottom: 40px;
        text-align: center;
        color: var(--black-color);
    }

        .fleets-section h2 span {
            color: var(--primary-color);
        }

    .fleets-section .fleets-card-main {
        background: var(--white-color);
        padding: 30px;
        border-radius: 15px;
        margin-top: 130px;
        background: var(--black-color);
        position: relative;
    }

        .fleets-section .fleets-card-main .fleet-top {
            width: 370px;
            height: 220px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 15px;
            position: absolute;
            top: 0%;
            left: 50%;
            transform: translate(-50%, -50%);
            overflow: hidden;
        }

            .fleets-section .fleets-card-main .fleet-top img {
                object-fit: cover;
                border-radius: 15px;
                transform: scale(1);
                transition: all 0.3s ease-in-out;
            }

        .fleets-section .fleets-card-main:hover .fleet-top img {
            transform: scale(1.1);
        }

        .fleets-section .fleets-card-main .fleet-bottom {
            width: 100%;
            margin-top: 100px;
        }

            .fleets-section .fleets-card-main .fleet-bottom h3 {
                font-size: 30px;
                font-weight: 700;
                font-family: "Poppins", sans-serif;
                margin-bottom: 10px;
                color: var(--white-color);
            }

            .fleets-section .fleets-card-main .fleet-bottom .fleet-para {
                font-size: 16px;
                font-family: "Poppins", sans-serif;
                margin-bottom: 10px;
                color: var(--white-color);
            }

            .fleets-section .fleets-card-main .fleet-bottom .fleet-features {
                width: 100%;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                margin-bottom: 20px;
            }

                .fleets-section .fleets-card-main .fleet-bottom .fleet-features .fleet-item i {
                    width: 30px;
                    height: 30px;
                    background: var(--primary-color);
                    border-radius: 5px;
                    color: var(--white-color);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size: 14px;
                }

                .fleets-section .fleets-card-main .fleet-bottom .fleet-features .fleet-item {
                    color: var(--white-color);
                    display: flex;
                    gap: 10px;
                    align-items: center;
                    font-size: 14px;
                }

            .fleets-section .fleets-card-main .fleet-bottom .fleet-btn {
                width: 100%;
                color: var(--white-color);
                font-weight: 600;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                background: var(--primary-color);
                padding: 10px 25px;
                border-radius: 4px;
                font-family: "Poppins", sans-serif;
                font-size: 16px;
                margin: 0 auto;
                transition: all 0.3s ease;
            }

                .fleets-section .fleets-card-main .fleet-bottom .fleet-btn:hover {
                    background: var(--white-color);
                    color: var(--black-color);
                }

                .fleets-section .fleets-card-main .fleet-bottom .fleet-btn i {
                    width: 25px;
                    height: 25px;
                    font-size: 12px;
                    border-radius: 50%;
                    background: var(--white-color);
                    color: var(--primary-color);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: all 0.3s ease;
                }

                .fleets-section .fleets-card-main .fleet-bottom .fleet-btn:hover i {
                    background: var(--primary-color);
                    color: var(--white-color);
                }
/* Fleets section css start */
/* App section css start */
.sec-app {
    padding: 60px 0 80px;
    background-color: var(--black-color);
}

    .sec-app .sec-title {
        padding: 0 0 50px;
    }

        .sec-app .sec-title h3 {
            font-size: 20px;
            color: var(--white-color);
            padding: 7px 20px;
            background-color: var(--primary-color);
            width: fit-content;
            text-transform: uppercase;
            font-weight: 600;
        }

        .sec-app .sec-title h2 {
            font-size: 30px;
            color: var(--white-color);
            padding: 7px 0 0;
            font-weight: 700;
            line-height: 40px;
        }

        .sec-app .sec-title .para {
            color: var(--white-color);
            font-size: 16px;
            padding: 7px 0 0;
        }

    .sec-app .content-box {
        position: relative;
    }

        .sec-app .content-box .img-box {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

            .sec-app .content-box .img-box .img-fluid {
                height: 650px;
                object-fit: contain;
            }

        .sec-app .content-box .app-detail-box {
            position: relative;
            background: var(--primary-color);
            padding: 8% 10%;
            border-radius: 20px;
            box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
            margin-bottom: 25px;
        }

            .sec-app .content-box .app-detail-box h4 {
                font-size: 34px;
                color: var(--white-color);
                font-weight: 700;
                padding-bottom: 7px;
            }

            .sec-app .content-box .app-detail-box h6 {
                font-size: 22px;
                color: var(--white-color);
                font-weight: 600;
                font-family: "Poppins", sans-serif;
            }

    .sec-app .app-link h4 {
        font-size: 20px;
        color: var(--primary-color);
        font-weight: 700;
        text-transform: uppercase;
    }

    .sec-app .app-link ul {
        display: flex;
        padding-top: 12px;
    }

        .sec-app .app-link ul li {
            border-radius: 11px;
            margin: 0 5px 0 0;
        }
/* App section css start */
/* contact section */
.contact-section {
    width: 100%;
    height: 100%;
    padding: 40px 0px;
}

.contact-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.contact-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--black-color);
    text-align: center;
    text-transform: uppercase;
}

    .contact-section h2 span {
        color: var(--primary-color);
    }

.main-contact {
    width: 100%;
    height: 100%;
    background: var(--white-color);
    border-radius: 10px;
    border: 5px solid var(--black-color);
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
}

.contact-info {
    width: 100%;
    height: 100%;
    padding: 40px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    background: var(--black-color);
}

    .contact-info h3 {
        font-size: 42px;
        font-weight: 600;
        margin-bottom: 20px;
        color: var(--black-color);
    }

    .contact-info p {
        color: var(--white-color);
        margin-bottom: 10px !important;
        margin-top: 5px;
    }

.sicial-contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.in-con {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--black-color);
}

    .in-con i {
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--primary-color);
        color: var(--white-color);
        border-radius: 5px;
    }

    .in-con a {
        color: var(--white-color);
        transition: all 0.3s ease-in-out;
        margin-top: 5px;
        font-family: "Poppins", sans-serif;
    }

        .in-con a:hover {
            color: var(--primary-color);
        }

.contact-form {
    width: 100%;
    height: 100%;
    padding: 50px;
}

.con_inp {
    width: 100%;
    height: 100%;
}

.contact-input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--primary-color);
    border-radius: 7px;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease-in-out;
}

    .contact-input::placeholder {
        color: var(--black-color);
    }

    .contact-input:focus {
        outline: none;
        border: 2px solid var(--primary-color);
    }

.contact-btn {
    width: fit-content;
    color: var(--white-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-color);
    padding: 10px 25px;
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .contact-btn:hover {
        background: var(--black-color);
        color: var(--white-color);
    }

    .contact-btn i {
        width: 25px;
        height: 25px;
        font-size: 12px;
        border-radius: 50%;
        background: var(--white-color);
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .contact-btn:hover i {
        background: var(--primary-color);
        color: var(--white-color);
    }
/* contact section */
/* footer section css */
.footer {
    width: 100%;
    height: 100%;
    padding: 40px 0;
    background: var(--black-color);
}

    .footer .footer-logo {
        width: 250px;
    }

.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: #2d7cc1;
    }

.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-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: #2d7cc1;
}

.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-weight: 500;
    font-size: 17px;
    font-family: "Poppins";
    transition: all 0.3s ease-in-out;
}

    .getin_touch a:hover {
        color: var(--primary-color);
    }

    .getin_touch a i {
        padding-right: 7px;
    }

.getin_touch p {
    color: var(--primary-color);
}

.last-footer-content h2 {
    font-weight: 600;
    font-size: 24px;
    color: #2d7cc1;
}

.social-icons {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}

.bootom-footer-section {
    width: 100%;
    background: var(--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: var(--black-color);
        }
/* footer section css */
/* inner pages banner css */
.banner-section {
    width: 100%;
    padding: 150px 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url(../images/innerbannerimage.jpg);
    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: 700;
        color: var(--white-color);
    }

.breadcrumb {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.breadcrumb-item a {
    font-family: "Poppins", sans-serif;
    color: var(--white-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white-color);
}

.breadcrumb-item.active {
    font-family: "Poppins", sans-serif;
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrum_main_div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* inner pages banner css */
.sec-result {
    padding: 60px 0;
    /* margin-top: 140px; */
}

    .sec-result .upper-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 7px 16px;
        background: #edf2fa00;
        border: 3px solid #000000;
        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 #2d7cc1;
                    object-fit: contain;
                    border-radius: 5px;
                    padding: 7px;
                }

            .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: #000000;
                        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;
                        position: relative;
                    }

                    .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: #2d7cc1 !important;
        color: #ffffff !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: #edf2fa00;
    margin: 20px 0;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 3px solid #000;
    border-radius: 15px;
}

    .update-fleet-box .img-box {
        margin-bottom: 10px;
    }

        .update-fleet-box .img-box img {
            width: 100%;
            height: 120px;
            background: #2d7cc1;
            border-radius: 10px;
            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: #fff000;
                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: #edf2fa00;
    padding: 20px;
    margin-top: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 3px 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: #edf2fa00;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 3px solid #000;
    border-radius: 15px;
    margin-bottom: 40px;
}

    .Passenger-Information h3 {
        font-size: 22px;
        font-weight: 600;
        padding-bottom: 5px;
        color: #000000;
    }

    .Passenger-Information .input-box {
        padding-bottom: 10px;
    }

        .Passenger-Information .input-box label {
            text-align: center;
            padding: 4px 0;
            font-size: 16px;
            font-weight: 600;
            line-height: 18px;
            color: #000;
            margin: 0;
        }

        .Passenger-Information .input-box .b-field {
            width: 100%;
            border: 1px solid #ccc !important;
        }

        .Passenger-Information .input-box p {
            font-size: 13px;
            padding: 4px 0;
        }

    .Passenger-Information .input-box-extra {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .Passenger-Information .input-box-extra input {
            margin: 0 !important;
        }

        .Passenger-Information .input-box-extra label {
            padding-left: 10px;
        }

.ui-dialog .ui-dialog-content {
    overflow-y: hidden !important;
}

.ui-dialog .ui-dialog-buttonpane button {
    background: #000 !important;
    padding: 7px 10px !important;
    text-align: center !important;
    color: #ffffff !important;
    border-radius: 7px !important;
}
/************************** All Main Css 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;
    }

    .main-header .mini-header {
        padding: 5px 0;
    }

        .main-header .mini-header .mini-contact-info ul li a {
            font-size: 14px;
            gap: 4px;
        }

        .main-header .mini-header .social-contact-info ul {
            gap: 10px;
        }

            .main-header .mini-header .social-contact-info ul li p {
                font-size: 14px;
            }

            .main-header .mini-header .social-contact-info ul li a {
                width: 25px;
                height: 25px;
                font-size: 12px;
            }

    .navbar-expand-lg {
        padding: 5px 0;
    }

        .navbar-expand-lg .eco-miles-cars-logo {
            width: 80px;
        }

        .navbar-expand-lg .navbar-nav {
            gap: 10px;
        }

            .navbar-expand-lg .navbar-nav .nav-item .nav-link {
                font-size: 14px;
            }

        .navbar-expand-lg .custom-header-btn {
            gap: 4px;
            padding: 8px 16px;
            font-size: 14px;
        }

            .navbar-expand-lg .custom-header-btn i {
                width: 20px;
                height: 20px;
                font-size: 10px;
            }

    .hero-section {
        height: 80vh;
    }

        .hero-section .hero-content h1 {
            font-size: 32px;
        }

        .hero-section .hero-content p {
            font-size: 14px;
        }

        .hero-section .hero-form {
            padding: 25px;
        }

            .hero-section .hero-form h2 {
                font-size: 32px;
                margin-bottom: 10px;
            }

            .hero-section .hero-form .custom-divinput .custom-input {
                padding: 10px 55px 10px 5px;
                font-size: 14px;
            }

            .hero-section .hero-form .custom-divinput i {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }

            .hero-section .hero-form .heroform-btn {
                padding: 8px 16px;
                font-size: 14px;
            }

    .about-section h2 {
        font-size: 32px;
        margin-bottom: 5px;
    }

    .left-content-acout p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .about-Btn {
        padding: 8px 16px;
        font-size: 14px;
        gap: 4px;
    }

        .about-Btn i {
            width: 20px;
            height: 20px;
            font-size: 10px;
        }

    .services-section .section-title h2 {
        font-size: 32px;
    }

    .service-box {
        padding: 15px;
        margin-bottom: 25px;
    }

        .service-box .service-icon {
            width: 40px;
            height: 40px;
            font-size: 16px;
            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 {
        gap: 4px;
        padding: 8px 16px;
        font-size: 14px;
    }

        .services-btn i {
            width: 20px;
            height: 20px;
            font-size: 10px;
        }

    .fleets-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .fleets-section .fleets-card-main .fleet-bottom h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .fleets-section .fleets-card-main .fleet-bottom .fleet-para {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .fleets-section .fleets-card-main .fleet-bottom .fleet-features .fleet-item {
        gap: 6px;
    }

        .fleets-section .fleets-card-main .fleet-bottom .fleet-features .fleet-item i {
            width: 25px;
            height: 25px;
            font-size: 12px;
        }

    .fleets-section .fleets-card-main .fleet-bottom .fleet-features {
        gap: 10px;
        margin-bottom: 10px;
    }

    .fleets-section .fleets-card-main .fleet-bottom .fleet-btn {
        gap: 4px;
        padding: 8px 16px;
        font-size: 14px;
    }

        .fleets-section .fleets-card-main .fleet-bottom .fleet-btn i {
            width: 20px;
            height: 20px;
            font-size: 10px;
        }

    .sec-app .sec-title {
        padding: 0 0 20px;
    }

        .sec-app .sec-title h3 {
            font-size: 16px;
            padding: 7px 14px;
        }

        .sec-app .sec-title h2 {
            font-size: 32px;
        }

        .sec-app .sec-title .para {
            font-size: 14px;
        }

    .sec-app .app-link h4 {
        font-size: 16px;
    }

    .sec-app .content-box .img-box {
        justify-content: flex-end;
    }

    .sec-app .content-box .app-detail-box {
        padding: 6% 8%;
        border-radius: 10px;
    }

        .sec-app .content-box .app-detail-box h4 {
            font-size: 24px;
        }

        .sec-app .content-box .app-detail-box h6 {
            font-size: 16px;
        }

    .sec-app .content-box .img-box .img-fluid {
        height: 450px;
    }

    .contact-heading {
        margin-bottom: 20px;
    }

    .contact-section h2 {
        font-size: 32px;
    }

    .contact-info {
        padding: 20px;
    }

        .contact-info p {
            font-size: 14px;
        }

    .in-con {
        gap: 5px;
    }

        .in-con a {
            font-size: 14px;
        }

    .contact-form {
        padding: 20px;
    }

    .contact-input {
        padding: 8px 12px;
        margin-bottom: 0px;
        font-size: 14px;
    }

    .contact-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .footer .footer-logo {
        width: 150px;
    }

    .footer_ul {
        gap: 5px;
        padding: 3px;
        margin-top: 3px;
    }

        .footer_ul .footer_li a {
            font-size: 14px;
        }

    .right-footer-content .getin_touch {
        gap: 5px;
        margin-top: 5px;
    }

    .getin_touch a i {
        padding-right: 2px;
        margin-top: 3px;
    }

    .getin_touch a {
        font-size: 14px;
        display: flex;
        gap: 2px;
        align-items: flex-start;
    }

    .bootom-footer-section {
        padding: 5px;
    }

    .bottom-footer-content p {
        font-size: 14px;
    }

    .banner-section {
        padding: 100px 0;
    }

    .main-contact {
        border: 3px solid var(--black-color);
    }

    .banner-section h2 {
        font-size: 42px;
    }

    .main-header .mini-header .mini-contact-info ul {
        gap: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .main-header .mini-header {
        padding: 5px 0;
    }

        .main-header .mini-header .mini-contact-info ul li a {
            font-size: 14px;
            gap: 4px;
        }

        .main-header .mini-header .social-contact-info ul {
            gap: 10px;
        }

            .main-header .mini-header .social-contact-info ul li p {
                font-size: 14px;
            }

            .main-header .mini-header .social-contact-info ul li a {
                width: 25px;
                height: 25px;
                font-size: 12px;
            }

    .navbar-expand-lg {
        padding: 5px 0;
    }

        .navbar-expand-lg .eco-miles-cars-logo {
            width: 80px;
        }

        .navbar-expand-lg .navbar-nav {
            gap: 5px;
            justify-content: center;
            align-items: center;
        }

            .navbar-expand-lg .navbar-nav .nav-item .nav-link {
                font-size: 14px;
            }

        .navbar-expand-lg .custom-header-btn {
            gap: 4px;
            padding: 8px 16px;
            font-size: 14px;
            margin: 0 auto;
        }

            .navbar-expand-lg .custom-header-btn i {
                width: 20px;
                height: 20px;
                font-size: 10px;
            }

    .hero-section {
        height: 80vh;
    }

        .hero-section .hero-content h1 {
            font-size: 32px;
        }

        .hero-section .hero-content p {
            font-size: 14px;
        }

        .hero-section .hero-form {
            padding: 25px;
        }

            .hero-section .hero-form h2 {
                font-size: 32px;
                margin-bottom: 10px;
            }

            .hero-section .hero-form .custom-divinput .custom-input {
                padding: 10px 55px 10px 5px;
                font-size: 14px;
            }

            .hero-section .hero-form .custom-divinput i {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }

            .hero-section .hero-form .heroform-btn {
                padding: 8px 16px;
                font-size: 14px;
            }

    .about-section h2 {
        font-size: 32px;
        margin-bottom: 5px;
    }

    .left-content-acout p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .about-Btn {
        padding: 8px 16px;
        font-size: 14px;
        gap: 4px;
    }

        .about-Btn i {
            width: 20px;
            height: 20px;
            font-size: 10px;
        }

    .services-section .section-title h2 {
        font-size: 32px;
    }

    .service-box {
        padding: 15px;
        margin-bottom: 25px;
    }

        .service-box .service-icon {
            width: 40px;
            height: 40px;
            font-size: 16px;
            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 {
        gap: 4px;
        padding: 8px 16px;
        font-size: 14px;
    }

        .services-btn i {
            width: 20px;
            height: 20px;
            font-size: 10px;
        }

    .fleets-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .fleets-section .fleets-card-main .fleet-bottom h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .fleets-section .fleets-card-main .fleet-bottom .fleet-para {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .fleets-section .fleets-card-main .fleet-bottom .fleet-features .fleet-item {
        gap: 6px;
    }

        .fleets-section .fleets-card-main .fleet-bottom .fleet-features .fleet-item i {
            width: 25px;
            height: 25px;
            font-size: 12px;
        }

    .fleets-section .fleets-card-main .fleet-bottom .fleet-features {
        gap: 10px;
        margin-bottom: 10px;
    }

    .fleets-section .fleets-card-main .fleet-bottom .fleet-btn {
        gap: 4px;
        padding: 8px 16px;
        font-size: 14px;
    }

        .fleets-section .fleets-card-main .fleet-bottom .fleet-btn i {
            width: 20px;
            height: 20px;
            font-size: 10px;
        }

    .sec-app .sec-title {
        padding: 0 0 20px;
    }

        .sec-app .sec-title h3 {
            font-size: 16px;
            padding: 7px 14px;
        }

        .sec-app .sec-title h2 {
            font-size: 32px;
        }

        .sec-app .sec-title .para {
            font-size: 14px;
        }

    .sec-app .app-link h4 {
        font-size: 16px;
    }

    .sec-app .content-box .img-box {
        justify-content: center;
    }

    .sec-app .content-box .app-detail-box {
        padding: 6% 8%;
        border-radius: 10px;
    }

        .sec-app .content-box .app-detail-box h4 {
            font-size: 24px;
        }

        .sec-app .content-box .app-detail-box h6 {
            font-size: 16px;
        }

    .sec-app .content-box .img-box .img-fluid {
        height: 450px;
    }

    .contact-heading {
        margin-bottom: 20px;
    }

    .contact-section h2 {
        font-size: 32px;
    }

    .contact-info {
        padding: 20px;
    }

        .contact-info p {
            font-size: 14px;
        }

    .in-con {
        gap: 5px;
    }

        .in-con a {
            font-size: 14px;
        }

    .contact-form {
        padding: 20px;
    }

    .contact-input {
        padding: 8px 12px;
        margin-bottom: 0px;
        font-size: 14px;
    }

    .contact-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .footer .footer-logo {
        width: 150px;
    }

    .footer_ul {
        gap: 5px;
        padding: 3px;
        margin-top: 3px;
    }

        .footer_ul .footer_li a {
            font-size: 14px;
        }

    .right-footer-content .getin_touch {
        gap: 5px;
        margin-top: 5px;
    }

    .getin_touch a i {
        padding-right: 2px;
        margin-top: 3px;
    }

    .getin_touch a {
        font-size: 14px;
        display: flex;
        gap: 2px;
        align-items: flex-start;
    }

    .bootom-footer-section {
        padding: 5px;
    }

    .bottom-footer-content p {
        font-size: 14px;
    }

    .banner-section {
        padding: 100px 0;
    }

    .main-contact {
        border: 3px solid var(--black-color);
    }

    .banner-section h2 {
        font-size: 42px;
    }

    .main-header .mini-header .mini-contact-info ul {
        gap: 10px;
    }

    .navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(1053%) hue-rotate(251deg) brightness(118%) contrast(100%);
    }

    .navbar-light .navbar-toggler {
        color: rgb(255 255 255);
        border-color: rgb(255 255 255);
    }
    .navbar-light .navbar-collapse{
        padding: 20px;
    }
    .hero-section .hero-content{
        margin-bottom: 20px;
        text-align: center;
    }
    .left-content-acout{
        margin-top: 20px;
    }
    .fleets-section .fleets-card-main .fleet-top {
        width: 90%;
    }
    .app-link{
        margin-bottom: 20px;
    }
    .app-link ul li a img {
        width: 150px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .main-header .mini-header {
        padding: 5px 0;
    }

        .main-header .mini-header .mini-contact-info ul li a {
            font-size: 12px;
            gap: 4px;
        }

        .main-header .mini-header .social-contact-info ul {
            gap: 7px;
            justify-content: center;
            margin-top: 5px;
        }

            .main-header .mini-header .social-contact-info ul li p {
                font-size: 14px;
            }

            .main-header .mini-header .social-contact-info ul li a {
                width: 20px;
                height: 20px;
                font-size: 10px;
            }

    .navbar-expand-lg {
        padding: 5px 0;
    }

        .navbar-expand-lg .eco-miles-cars-logo {
            width: 80px;
        }

        .navbar-expand-lg .navbar-nav {
            gap: 5px;
            justify-content: center;
            align-items: center;
        }

            .navbar-expand-lg .navbar-nav .nav-item .nav-link {
                font-size: 14px;
            }

        .navbar-expand-lg .custom-header-btn {
            gap: 4px;
            padding: 8px 16px;
            font-size: 14px;
            margin: 0 auto;
        }

            .navbar-expand-lg .custom-header-btn i {
                width: 20px;
                height: 20px;
                font-size: 10px;
            }

    .hero-section {
        height: auto;
        padding: 30px 0;
    }

        .hero-section .hero-content h1 {
            font-size: 32px;
        }

        .hero-section .hero-content p {
            font-size: 14px;
        }

        .hero-section .hero-form {
            padding: 25px;
        }

            .hero-section .hero-form h2 {
                font-size: 32px;
                margin-bottom: 10px;
                text-align: center;
            }

            .hero-section .hero-form .custom-divinput .custom-input {
                padding: 10px 55px 10px 5px;
                font-size: 14px;
            }

            .hero-section .hero-form .custom-divinput i {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }

            .hero-section .hero-form .heroform-btn {
                padding: 8px 16px;
                font-size: 14px;
            }

    .about-section h2 {
        font-size: 32px;
        margin-bottom: 5px;
    }

    .left-content-acout p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .about-Btn {
        padding: 8px 16px;
        font-size: 14px;
        gap: 4px;
    }

        .about-Btn i {
            width: 20px;
            height: 20px;
            font-size: 10px;
        }

    .services-section .section-title h2 {
        font-size: 32px;
    }

    .service-box {
        padding: 15px;
        margin-bottom: 25px;
    }

        .service-box .service-icon {
            width: 40px;
            height: 40px;
            font-size: 16px;
            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 {
        gap: 4px;
        padding: 8px 16px;
        font-size: 14px;
    }

        .services-btn i {
            width: 20px;
            height: 20px;
            font-size: 10px;
        }

    .fleets-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .fleets-section .fleets-card-main .fleet-bottom h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .fleets-section .fleets-card-main .fleet-bottom .fleet-para {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .fleets-section .fleets-card-main .fleet-bottom .fleet-features .fleet-item {
        gap: 6px;
    }

        .fleets-section .fleets-card-main .fleet-bottom .fleet-features .fleet-item i {
            width: 25px;
            height: 25px;
            font-size: 12px;
        }

    .fleets-section .fleets-card-main .fleet-bottom .fleet-features {
        gap: 10px;
        margin-bottom: 10px;
    }

    .fleets-section .fleets-card-main .fleet-bottom .fleet-btn {
        gap: 4px;
        padding: 8px 16px;
        font-size: 14px;
    }

        .fleets-section .fleets-card-main .fleet-bottom .fleet-btn i {
            width: 20px;
            height: 20px;
            font-size: 10px;
        }

    .sec-app .sec-title {
        padding: 0 0 20px;
    }

        .sec-app .sec-title h3 {
            font-size: 16px;
            padding: 7px 14px;
        }

        .sec-app .sec-title h2 {
            font-size: 32px;
        }

        .sec-app .sec-title .para {
            font-size: 14px;
        }

    .sec-app .app-link h4 {
        font-size: 16px;
    }

    .sec-app .content-box .img-box {
        justify-content: center;
    }

    .sec-app .content-box .app-detail-box {
        padding: 6% 8%;
        border-radius: 10px;
    }

        .sec-app .content-box .app-detail-box h4 {
            font-size: 24px;
        }

        .sec-app .content-box .app-detail-box h6 {
            font-size: 16px;
        }

    .sec-app .content-box .img-box .img-fluid {
        height: 450px;
    }

    .contact-heading {
        margin-bottom: 20px;
    }

    .contact-section h2 {
        font-size: 32px;
    }

    .contact-info {
        padding: 20px;
    }

        .contact-info p {
            font-size: 14px;
        }

    .in-con {
        gap: 5px;
    }

        .in-con a {
            font-size: 14px;
        }

    .contact-form {
        padding: 20px;
    }

    .contact-input {
        padding: 8px 12px;
        margin-bottom: 0px;
        font-size: 14px;
    }

    .contact-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .footer .footer-logo {
        width: 150px;
    }

    .footer_ul {
        gap: 5px;
        padding: 3px;
        margin-top: 3px;
    }

        .footer_ul .footer_li a {
            font-size: 14px;
        }

    .right-footer-content .getin_touch {
        gap: 5px;
        margin-top: 5px;
    }

    .getin_touch a i {
        padding-right: 2px;
        margin-top: 3px;
    }

    .getin_touch a {
        font-size: 14px;
        display: flex;
        gap: 2px;
        align-items: flex-start;
    }

    .bootom-footer-section {
        padding: 5px;
    }

    .bottom-footer-content p {
        font-size: 14px;
    }

    .banner-section {
        padding: 100px 0;
    }

    .main-contact {
        border: 3px solid var(--black-color);
    }

    .banner-section h2 {
        font-size: 42px;
    }

    .main-header .mini-header .mini-contact-info ul {
        gap: 5px;
        justify-content: center;
        flex-wrap: wrap;
    }

        .main-header .mini-header .mini-contact-info ul li .hightlighted i {
            width: 20px;
            height: 20px;
            font-size: 10px;
        }

        .main-header .mini-header .mini-contact-info ul li .hightlighted {
            padding: 3px 5px;
        }

    .navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(1053%) hue-rotate(251deg) brightness(118%) contrast(100%);
    }

    .navbar-light .navbar-toggler {
        color: rgb(255 255 255);
        border-color: rgb(255 255 255);
    }

    .navbar-light .navbar-collapse {
        padding: 20px;
    }

    .hero-section .hero-content {
        margin-bottom: 20px;
        text-align: center;
    }

    .left-content-acout {
        margin-top: 20px;
    }

    .fleets-section .fleets-card-main .fleet-top {
        width: 90%;
    }

    .app-link {
        margin-bottom: 20px;
    }

        .app-link ul li a img {
            width: 150px;
        }

    .sec-result .upper-list {
        display: none;
    }

    .update-fleet-box .img-box img {
        background: none;
    }

    .update-fleet-box .fleet-detail {
        border: none;
    }

    .breadcrum_main_div {
        justify-content: center;
        flex-direction: column;
    }

    .breadcrumb {
        margin-top: 5px;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .main-header .mini-header {
        padding: 5px 0;
    }

        .main-header .mini-header .mini-contact-info ul li a {
            font-size: 12px;
            gap: 4px;
        }

        .main-header .mini-header .social-contact-info ul {
            gap: 7px;
            justify-content: center;
            margin-top: 5px;
        }

            .main-header .mini-header .social-contact-info ul li p {
                font-size: 14px;
            }

            .main-header .mini-header .social-contact-info ul li a {
                width: 20px;
                height: 20px;
                font-size: 10px;
            }

    .navbar-expand-lg {
        padding: 5px 0;
    }

        .navbar-expand-lg .eco-miles-cars-logo {
            width: 80px;
        }

        .navbar-expand-lg .navbar-nav {
            gap: 5px;
            justify-content: center;
            align-items: center;
        }

            .navbar-expand-lg .navbar-nav .nav-item .nav-link {
                font-size: 14px;
            }

        .navbar-expand-lg .custom-header-btn {
            gap: 4px;
            padding: 8px 16px;
            font-size: 14px;
            margin: 0 auto;
        }

            .navbar-expand-lg .custom-header-btn i {
                width: 20px;
                height: 20px;
                font-size: 10px;
            }

    .hero-section {
        height: auto;
        padding: 30px 0;
    }

        .hero-section .hero-content h1 {
            font-size: 32px;
        }

        .hero-section .hero-content p {
            font-size: 14px;
        }

        .hero-section .hero-form {
            padding: 25px;
        }

            .hero-section .hero-form h2 {
                font-size: 32px;
                margin-bottom: 10px;
                text-align: center;
            }

            .hero-section .hero-form .custom-divinput .custom-input {
                padding: 10px 55px 10px 5px;
                font-size: 14px;
            }

            .hero-section .hero-form .custom-divinput i {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }

            .hero-section .hero-form .heroform-btn {
                padding: 8px 16px;
                font-size: 14px;
            }

    .about-section h2 {
        font-size: 32px;
        margin-bottom: 5px;
    }

    .left-content-acout p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .about-Btn {
        padding: 8px 16px;
        font-size: 14px;
        gap: 4px;
    }

        .about-Btn i {
            width: 20px;
            height: 20px;
            font-size: 10px;
        }

    .services-section .section-title h2 {
        font-size: 32px;
    }

    .service-box {
        padding: 15px;
        margin-bottom: 25px;
    }

        .service-box .service-icon {
            width: 40px;
            height: 40px;
            font-size: 16px;
            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 {
        gap: 4px;
        padding: 8px 16px;
        font-size: 14px;
    }

        .services-btn i {
            width: 20px;
            height: 20px;
            font-size: 10px;
        }

    .fleets-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .fleets-section .fleets-card-main .fleet-bottom h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .fleets-section .fleets-card-main .fleet-bottom .fleet-para {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .fleets-section .fleets-card-main .fleet-bottom .fleet-features .fleet-item {
        gap: 6px;
    }

        .fleets-section .fleets-card-main .fleet-bottom .fleet-features .fleet-item i {
            width: 25px;
            height: 25px;
            font-size: 12px;
        }

    .fleets-section .fleets-card-main .fleet-bottom .fleet-features {
        gap: 10px;
        margin-bottom: 10px;
    }

    .fleets-section .fleets-card-main .fleet-bottom .fleet-btn {
        gap: 4px;
        padding: 8px 16px;
        font-size: 14px;
    }

        .fleets-section .fleets-card-main .fleet-bottom .fleet-btn i {
            width: 20px;
            height: 20px;
            font-size: 10px;
        }

    .sec-app .sec-title {
        padding: 0 0 20px;
    }

        .sec-app .sec-title h3 {
            font-size: 16px;
            padding: 7px 14px;
        }

        .sec-app .sec-title h2 {
            font-size: 32px;
        }

        .sec-app .sec-title .para {
            font-size: 14px;
        }

    .sec-app .app-link h4 {
        font-size: 16px;
    }

    .sec-app .content-box .img-box {
        justify-content: center;
    }

    .sec-app .content-box .app-detail-box {
        padding: 6% 8%;
        border-radius: 10px;
    }

        .sec-app .content-box .app-detail-box h4 {
            font-size: 24px;
        }

        .sec-app .content-box .app-detail-box h6 {
            font-size: 16px;
        }

    .sec-app .content-box .img-box .img-fluid {
        height: 450px;
    }

    .contact-heading {
        margin-bottom: 20px;
    }

    .contact-section h2 {
        font-size: 32px;
    }

    .contact-info {
        padding: 20px;
    }

        .contact-info p {
            font-size: 14px;
        }

    .in-con {
        gap: 5px;
    }

        .in-con a {
            font-size: 14px;
        }

    .contact-form {
        padding: 20px;
    }

    .contact-input {
        padding: 8px 12px;
        margin-bottom: 0px;
        font-size: 14px;
    }

    .contact-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .footer .footer-logo {
        width: 150px;
    }

    .footer_ul {
        gap: 5px;
        padding: 3px;
        margin-top: 3px;
    }

        .footer_ul .footer_li a {
            font-size: 14px;
        }

    .right-footer-content .getin_touch {
        gap: 5px;
        margin-top: 5px;
    }

    .getin_touch a i {
        padding-right: 2px;
        margin-top: 3px;
    }

    .getin_touch a {
        font-size: 14px;
        display: flex;
        gap: 2px;
        align-items: flex-start;
    }

    .bootom-footer-section {
        padding: 5px;
    }

    .bottom-footer-content p {
        font-size: 14px;
    }

    .banner-section {
        padding: 100px 0;
    }

    .main-contact {
        border: 3px solid var(--black-color);
    }

    .banner-section h2 {
        font-size: 42px;
    }

    .main-header .mini-header .mini-contact-info ul {
        gap: 5px;
        justify-content: center;
        flex-wrap: wrap;
    }
        .main-header .mini-header .mini-contact-info ul li .hightlighted i {
            width: 20px;
            height: 20px;
            font-size: 10px;
        }
        .main-header .mini-header .mini-contact-info ul li .hightlighted {
            padding: 3px 5px;
        }

        .navbar-light .navbar-toggler-icon {
            filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(1053%) hue-rotate(251deg) brightness(118%) contrast(100%);
        }

    .navbar-light .navbar-toggler {
        color: rgb(255 255 255);
        border-color: rgb(255 255 255);
    }

    .navbar-light .navbar-collapse {
        padding: 20px;
    }

    .hero-section .hero-content {
        margin-bottom: 20px;
        text-align: center;
    }

    .left-content-acout {
        margin-top: 20px;
    }

    .fleets-section .fleets-card-main .fleet-top {
        width: 90%;
    }

    .app-link {
        margin-bottom: 20px;
    }

        .app-link ul li a img {
            width: 150px;
        }
    .sec-result .upper-list{
        display: none;
    }
    .update-fleet-box .img-box img{
        background: none;
    }
    .update-fleet-box .fleet-detail{
        border: none;
    }
    .breadcrum_main_div {
        justify-content: center;
        flex-direction: column;
    }
    .breadcrumb {
        margin-top: 5px;
    }
}
