
/* CAROUSEL CARD Y PAGINATION CARD*/
.content-card {
    background-color: var(--card);
    color: var(--text);
    margin-bottom: 20px;
    position: relative;
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: var(--text) 0 0 5px;
    border: none;
    background-position: center;

    min-height: var(--min-height-card);
}

.content-card .card-body .card-text {
    font-style: italic;
    text-align: justify;
    font-weight: 600;
}

.content-card h5 {
    color: var(--text);
    text-transform: uppercase;
    font-weight: bold;
}

.content-card .card-enlace {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.content-card:hover {
    box-shadow: var(--text) 0 0 10px;
    cursor: pointer;
    transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
    min-height: var(--min-height-card-hover);
}

.content-card:hover .card-img-overlay {
    min-height: var(--min-height-card-hover);
}

.numView {
    font-weight: bold;
    border-radius: 5px;
}

.content-card .card-footer {
    background: none;
    border-top: none;
}

.content-card .card-body {
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.content-card:hover .card-body {
    margin-top: 30px;
    transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

.content-card .card-img-overlay {
    transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
    background: linear-gradient(0deg, var(--card-translucide) 0%, var(--card) 100%);
    position: relative;

    min-height: var(--min-height-card);
}

@media (max-width: 768px) {
    .content-card h5 {
        font-size: 11pt;
    }

    .content-card p {
        font-size: 10pt;
    }
}
/* CAROUSEL CARD Y PAGINATION CARD*/
