.newshomehide {
    display: none;
    position: absolute;
    bottom: 20px;
    transform: translateY(50px);
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    width: 100%;
    box-shadow: 0 0.375rem 1.5rem 0 rgb(140 152 164 / 13%) 
}

.link-show-tdnoticia .row {
    transition: flex .7s ease-in-out;
    transition-delay: .5s;
}

.link-show-tdnoticia .link-hid-tdnoticia {
    display: none;
    transition: flex .7s ease-in-out;
    transition-delay: .5s;
}

.link-show-tdnoticia:hover .link-hid-tdnoticia {
    display: block;
    transition: flex .7s ease-in-out;
    transition-delay: .5s;
}

.card {
    border: none !important;
}

@media (max-width: 991px) {
    .link-show-tdnoticia:hover .link-hid-tdnoticia {
        display: none;
        transition: flex .7s ease-in-out;
        transition-delay: .5s;
    }
}