.banner-section {
  background: url(../assets/blog-banner.jpg) no-repeat center/cover;
  height: 270px;
}
/* Blog section */
.blog-section{
    padding: 50px 0;
}
.blog-cart{
    box-shadow: 0 4px 5px gray;
    border-radius: 12px;
    margin-bottom: 30px;
}

.blog-content{
    padding: 10px 15px;
}
.blog-img{
    height: 200px;
    max-width: 100%;
}
.blog-img img{
    height: 100%;
    width: 100%;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    /*object-fit: contain;*/
}
.blog-title{
    font-size: 20px;
    color: #25801d;
    margin-bottom: 14px;
}
.blog-para{
    max-width: 100%;
    font-size: 14px;
    color: black;
    margin-bottom:14px;
}
.blog-link{
    color: #ff9500;
    margin-bottom: 10px;
}
.blog-link:hover{
    transform:scale(1.1)
}

@media screen and (max-width:576px) {
    .banner-section{
        height: 70px;
    }
}