.blog{
     padding-bottom: 20px;
  .blog_content{
    .section_heading{
        text-align: center;
        i{
            font-size: 38px;
            color: $primaryColor;
        }
        h4{
            font-size: 28px;
            font-weight: 500;
            color: $black;
            text-transform: uppercase;
            padding: 15px 0 0 0;
            span{
                color: $primaryColor;
            }
        }
        p{
         text-align: center;
         font-size: 15px;
         font-weight: 400; 
         line-height: 24px;
         color: $text;
         padding: 20px 120px;
     }
    }
    .blog_wrapper{
         .blog_card_overly{
            height: 280px;
            border-radius: 5px;
            position: relative;
            margin-bottom: 12px;
            img{
                height: 100%;
                width: 100%;
                object-fit: cover;
                 border-radius: 5px;
            }
            .overly{
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
                background-color: rgba(0,0,0,0.5);
                display: flex;
                justify-content: center;
                align-items: center;
                padding-left: 20px;
             .overly_item{

                h4{
                    font-size: 16px;
                    font-weight: 400;
                    color: $primaryColor;
                }
                h5{
                    font-size: 20px;
                    font-weight: 500;
                    color: $white;
                }
                ul{
                    li{
                        display: inline-block;
                        padding-right: 15px;
                        color: $white;
                        font-weight: 400;
                        font-size: 14px;
                    }
                }
               }

            }
         }
         .blog_card{
              margin-bottom: 12px;
             .blog_img{
                  height: 200px;
                  width: 100%;
                  img{
                    height: 100%;
                    width: 100%;
                    object-fit: cover;
                  }
             }
             .blog_text{
                 padding:5px 10px 10px 10px ;
                h4{
                    font-size: 16px;
                    font-weight: 400;
                    color: $primaryColor;
                }
                h5{
                    font-size: 20px;
                    font-weight: 500;
                    color: $black;
                    line-height: 15px;
                }
                ul{
                    li{
                        display: inline-block;
                        padding-right: 15px;
                        color: $text;
                        font-weight: 400;
                        font-size: 14px;
                    }
                }
             }
         }
    }
  }
}