.blogs_cards .cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.blogs_cards .card {
    /* width: 350px; */
    margin: 20px 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease-in-out;
}

.blogs_cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}

.blogs_cards .card .top-card {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blogs_cards .top-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.blogs_cards .card:hover .top-card img {
    transform: scale(1.1);
}


.blogs_cards .bottom-card {
    text-align: center;
    position: relative;
    padding: 20px;
    padding-top: 30px;
}

.blogs_cards .top-btn {
    padding: 5px 10px;
    background-color: #23C4ED;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    font-size: 14px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.blogs_cards .bottom-card p {
    color: #999;
}

/* report css */
.report_img{
 object-fit: fill!important;
}
   
