/* 
#section-5 {
    margin-top: 100px;
} */

#section-5 .container-category {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin-top: 50px;
}

#section-5 .item-card-category {
    position: relative;
}

#section-5 .image-category {
    width: 375px;
    max-width: 100%;
    height: 375px;
    object-fit: cover;
    border-radius: var(--border-radius-30);
}

#section-5 .number-of-category {
    width: 70px;
    position: absolute;
    bottom: 0px;
    height: 70px;
    background: var(--primary-color-rent-car);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

#section-5 .number-of-category p {

    font-family: Outfit;
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color-rent-car);
}
#section-5 .category-link {
    width: 70px;
    position: absolute;
    bottom: 0px;
    height: 70px;
    background: var(--primary-color-rent-car);
    display: flex
;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
#section-5 .details-category {
    position: relative;
}

#section-5 .name-category {
    font-family: Outfit;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    position: absolute;
    top: 35px;
    left: 30px;
    z-index: 1;
    transform: none;
}

@media (max-width :768px) {
    #section-5 .container-category {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width :578px) {
    #section-5 .image-category {
        width: 100%;
    }

    #section-5 .container-category {
        grid-template-columns: repeat(1, 1fr);
        ;
   
    }
}

