/*  pre defined classes */
.flex{
    display:flex;
}

.product-blog{
    padding: 0 40px;
}
.blog_content{
   /* border: 2px solid; */
   padding-right: 20px;
}
.blog_header_div{
    /* width: 80%; */
    /* border: 2px solid red; */
    padding: 5px 80px 0 0 ;
}
.blog_subheading{
    font-weight: 600;
}
.blog_section p{
    font-size: 16px;
    line-height: 28px;
}

.product_img {
    /* border: 2px solid black; */
    /* background-color: #6559ef; */
    /* margin-left: 200px; */
    padding:  0px 60px 0 0;
    /* border: 2px solid; */

}
.product_img img{
    /* margin-top: 200px; */
    height: 300px;
    width: 500px;
}
.blog_para ol , .blog_para ul{
    font-size: 16px;
}

@media (min-width: 300px) and (max-width:767px ) {
    .flex{
        display:flex;
        flex-direction: column;
    }
    .product_img {
         display: flex;
         justify-content: center;
         align-items: center;
    }
    .product_img img{
        /* margin-top: 200px; */
        height: 300px;
        width: 500px;
    }
}