.blog{
    background-color: #f0aa8f2a;
    padding: 40px 0 40px 0;
    margin-top: 40px;
    .blog_wrapper{
        .section_heading{
            text-align: center;
            h6{
                font-size: 30px;
                color: $black;
                font-weight: 500; 
                display: inline-block;
                border-bottom: 2px solid #eb815bb4;
                padding: 12px 0;
            }
        }

        .blog_wrap{
             padding-top: 40px;
            .blog_card{
                 position: relative;
                .blog_img{
                     height: 240px;
                     width: 85%;
                    img{
                        height: 100%;
                        width: 100%;
                        object-fit: cover;
                    }
                }
                .blog_text{
                    position: relative;
                    z-index: 2;
                    padding: 15px;
                    background-color: $white;
                    border-radius: 5px;
                    width: 90%;
                    margin-top: -90px;
                    margin-left: 50px;
                    h5{
                        font-size: 15px;
                        color: $primaryColor;
                        font-weight: 400;
                        line-height: 18px;
                    }
                    h6{
                        font-size: 20px;
                        color: $black;
                        font-weight: 500;   
                        line-height: 28px;
                    }
                    p{
                        font-size: 15px;
                        color: $text;
                        font-weight: 400;
                        line-height: 22px;
                    }
                    .blog_btn{
                        a{
                            font-size: 16px;
                            color: #dd511e;
                            font-weight: 400;
                            line-height: 18px;  
                        }
                    }
                }
            }
        }
    }
}