.card.explore {
    max-width: 310px;
    height: 400px;
    margin: 10px;
}

.card {
    transition: transform ease 0.3s;
    line-height: 1.2;
}

.card:hover {
    box-shadow: 3px 3px 15px -2px #929292;
    -webkit-transform: translate(0px, -5px);
    -ms-transform: translate(0px, -5px);
    transform: translate(0px, -5px);
}

.card.explore>img::after {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    background-color: transparent;
    background-image: linear-gradient(180deg, rgba(40, 2, 110, 0.65))
}

.gradientwrap {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    background-color: transparent;
    background-image: linear-gradient(180deg, rgba(40, 2, 110, 0.65), hsla(0, 0%, 100%, 0) 50%);
}

.card.newshome {
    max-width: 240px;
    margin-top: 1rem;
    min-height: 380px;
    margin-left: 12px;
    margin-right: 12px;
    /* margin: 0 auto; */
}

.newshome .card-img-top {
    max-height: 165px;
    object-fit: cover;
}

@media screen and (max-width: 479px){
    .card.newshome {
        max-width: 100%;
        min-height: 300px;
        margin-left: 20px;
        margin-right: 20px;

    }
}
