.blog{
     padding-bottom: 20px;
     padding-top: 40px;
  .blog_content{
    .section_header{
        text-align: center;
        h5{
            font-size: 30px;
            color: $black;
            font-weight: 600;
            display: inline-block;
            span{
                color: $primaryColor;
            }
        }
     }
    .blog_wrapper{
         padding-top: 30px;
         .blog_card{
              margin-bottom: 12px;
              background-color: #fff;
             .blog_img{
                  height: 200px;
                  width: 100%;
                  img{
                    height: 100%;
                    width: 100%;
                    object-fit: cover;
                  }
             }
             .blog_text{
                 padding:5px 15px 15px 15px;
                 width: 80%;
                 margin-top: -30px;
                 margin-left: 10px;
                 background-color: $white;
                 position: relative;
                 box-shadow: 0px 1px 1px 1px #00000021;
                h4{
                    font-size: 16px;
                    font-weight: 400;
                    color: $primaryColor;

                }
                h5{
                    font-size: 20px;
                    font-weight: 500;
                    color: $black;
                    line-height: 30px;
                }
              p{
                font-size: 14px;
                color: $text;
                line-height: 22px;
              }
               .blg_btn{
                a{
                  padding: 8px 20px;
                  background-color: $primaryColor;
                  color: $white;
                  font-weight: 400;
                  font-size: 14px; 
                }
               }
             }
         }
    }
  }
}