body {
    background: #f1f1f1;
}

.main_blog_div {
    margin: 20px 0px;
}

.web_blog_title {
    width: 60%;
    margin: auto;
    background: white;
    padding: 6px 25px;
}

.blog_card {
    border-bottom: 2px solid;
}


.web_blog_title > h2 {
    font-size: 34px;
    font-family: system-ui;
}

.list_of_blog_card_main_div {
    width: 60%;
    margin: 14px auto 30px auto;
    background: #ffffff;
    padding: 25px 25px;
}

.b_title{
    font-size: 26px;
    font-weight: bold;
    color: black;
    font-family: system-ui;
    margin: 8px 0px;
}

.b_date{
    color: #4c4c4c;
}

.blog_post_img_div > img {
    width: 100%;
    object-fit: cover;
}

.blog_short_decs > p {
    color: #3e3e3e;
    margin: 10px 0px;
    font-family: sans-serif;
    font-size: 16px;
}



/* blog article page css start  */

.blog_article_main_div {
    background: white;
    padding: 22px 20px;
    margin: 16px 0px;
}

.blog_arrticle_post_and_content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.article_contents_div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width:100%;
}


.article_title > p {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 11px;
}

.article_disc > p {
    font-size: 19px;
    color: #686868;
}


.article_post_div > img {
    width: 100%;
}

.article_post_div {
    width: 100%;
}

.article_contents {
    margin: 10px auto 0px auto;
    width: 60%;
    background: white;
    padding: 23px;
}


.article_contents img{
    width:100%;
    height: 100%;
}


.article_contents p {
    margin: 6px 0px;
}


.article_contents a {
    color: #0c8338;
    font-weight: bold;
    text-decoration: revert;
}


/* blog article page css end  */



@media screen and (max-width:700px){
    .web_blog_title {
        width: auto;
        margin: auto;
        background: white;
        padding: 6px 10px;
    }

    .list_of_blog_card_main_div {
        width: auto;
        margin: 14px auto 30px auto;
        background: #ffffff;
        padding: 15px 15px;
    }

    .b_title {
        font-size: 16px;
        font-weight: bold;
        color: black;
        font-family: system-ui;
        margin: 8px 0px;
    }

    .blog_short_decs > p {
        color: #3e3e3e;
        margin: 10px 0px;
        font-family: sans-serif;
        font-size: 14px;
    }

    .article_contents{
        width: auto !important;
    }
    .blog_arrticle_post_and_content{
        display: block !important;
    }

    .article_title > p {
        font-size: 28px !important;
    }

}