*{
    margin: 0;
    padding: 0;
}

.fleet-banner-wrapper {
    padding: 1.5rem 0.5rem 1.5rem 0.5rem;
}

.fleet-banner-wrapper .inline-head {
    font-weight: bold;
}

.text-yellow {
    color: var(--blue);
    font-weight: bold;
    padding-left: 5px;
    padding-right: 10px;
    border-radius: 10px;
    background-color: var(--yellow);
}

.services-list {
    gap: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: left;
    margin-bottom: 4rem;
}

.services-list .slist-card {
    font-size: 25px;
}

.services-list .slist-card {
    color: var(--yellow);
    border-radius: 15px;
    padding: 5px 1rem 5px 1rem;
    background-color: var(--blue);
}


.fleet-car-wrapper {
    gap: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.fleet-car-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}


.fleet-head {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-head h1 {
    margin-bottom: 1rem;
    color: var(--blue);
    font-weight: bold;
}

.fleet-head hr {
    width: 5%;
    height: 4px;
    margin-left: 5px;
    margin-right: 5px;
    color: var(--yellow);
}

.fleet-car-wrapper .car-card {
    padding: 1rem 0.5rem;
    border-radius: 5px;
    text-align: center;
    background-color: var(--hover);
}

.car-card h4 {
    color: var(--blue);
    border-radius: 5px;
    padding: 3px 5px 3px 5px;
    text-transform: uppercase;
    background-color: #20578b23;
}


@media  (max-width: 961px) {

    .fleet-banner-wrapper {
        padding: 1rem 0.5rem 1rem 0.5rem;
    }

    .services-list {
        gap: 0.5rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: left;
        margin-bottom: 3rem;
    }
    
    .services-list .slist-card {
        font-size: 20px;
    }
    
    .services-list .slist-card {
        color: var(--yellow);
        border-radius: 10px;
        padding: 5px 0.5rem 5px 0.5rem;
        background-color: var(--blue);
    }

    

    .fleet-head h1 {
        margin-bottom: 1rem;
        color: var(--blue);
        font-weight: bold;
    }
    
    .fleet-head hr {
        width: 5%;
        height: 4px;
        margin-left: 5px;
        margin-right: 5px;
        color: var(--yellow);
    }



    .fleet-car-wrapper {
        gap: 1rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-car-wrapper img {
        width: 100%;
        height: 200px;
        object-fit: contain;
    }

    .fleet-car-wrapper .car-card {
        padding: 1rem 0.5rem;
        border-radius: 5px;
        text-align: center;
        background-color: var(--hover);
    }

}


@media  (max-width: 500px) {

    .fleet-banner-wrapper {
        padding: 1rem 0.5rem 1rem 0.5rem;
    }

    .services-list {
        gap: 0.5rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: left;
        margin-bottom: 2rem;
    }
    
    .services-list .slist-card {
        font-size: 15px;
    }
    
    .services-list .slist-card {
        color: var(--yellow);
        border-radius: 10px;
        padding: 5px 0.2rem 5px 0.2rem;
        background-color: var(--blue);
    }

    

    .fleet-head h1 {
        margin-bottom: 1rem;
        color: var(--blue);
        font-weight: bold;
    }
    
    .fleet-head hr {
        width: 5%;
        height: 4px;
        margin-left: 5px;
        margin-right: 5px;
        color: var(--yellow);
    }



    .fleet-car-wrapper {
        gap: 0;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .fleet-car-wrapper img {
        width: 100%;
        height: 200px;
        object-fit: contain;
    }

    .fleet-car-wrapper .car-card {
        border-radius: 5px;
        text-align: center;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        padding: 1rem 0.5rem;
        background-color: var(--hover);
    }

}