
.card-category {
    transition-duration: 300ms;
    cursor: pointer;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.card-category .image-category {
    position: relative;
}

.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%;
}

.card-category:hover {
    box-shadow: 0 6px 8px 1px rgba(34, 60, 80, 0.2);
}