 .blog-card{
    border-radius:16px;
    overflow:hidden;
    transition:.35s;
}

.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15)!important;
}

.blog-card img{
    height:220px;
    width:100%;
    object-fit:cover;
}

.blog-card .card-title{
    font-size:20px;
    font-weight:700;
    line-height:1.4;
}

.blog-card .card-title a{
    color:#222;
    text-decoration:none;
}

.blog-card .card-title a:hover{
    color:#00bfa5;
}

.blog-card .card-text{
    color:#666;
    font-size:15px;
    line-height:1.7;
}

.blog-card .btn{
    border-radius:30px;
    padding:8px 22px;
}

@media (max-width:991px){
    .blog-card img{
        height:210px;
    }
}

@media (max-width:767px){
    .blog-card{
        margin-bottom:10px;
    }

    .blog-card img{
        height:220px;
    }
}