.card-catalog {
    padding: 15px;
    transition-duration: 300ms;
    display: inline-block;
    cursor: pointer;
    width: 12rem;
}

.card-catalog .image-catalog {
    width: 100%;
    height: 200px;
}

.card-catalog .image-catalog img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.card-catalog .header-catalog {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    overflow: auto;
    height: 66px;
}

.card-catalog:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-category {
    transition-duration: 300ms;
    cursor: pointer;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    height: 200px;
}

.card-category .header-category {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    overflow: hidden;
    height: 70px;
    background: #0b76ef;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 13px;
    transition-duration: 500ms;
    position: absolute;
    bottom: 0;
    opacity: 0.8;
    width: 100%;
}