.pagination .page-item .page-link {
    cursor: pointer;
}

.pagination .page-item.active {
    pointer-events: none;
}

.vehicles-list.has-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.home-page .carousel-home .carousel-inner .carousel-item{
    background-size: cover;
}

.text-transform-none{
    text-transform: none !important;
}

.banner img {
    width: 100%;
}

.brand-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.brand-item a{
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1000px) {
    .vehicles-list.has-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .vehicles-list.has-list {
        grid-template-columns: 1fr;
    }

    .home-page .carousel-home .carousel-inner{
        height: 125px;
    }

    .brand-item a{
        min-height: 100px;
    }

    /* .home-page .carousel-home .carousel-inner .carousel-item {
        background-size: contain;
    } */
}