.blogs{
    padding-top: 200px;
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 5px;
}
.blog-header {
    margin-bottom: 30px;
}
.blog-image {
    width: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
}
.blog-title {
    font-weight: bold;
    margin-top: 20px;
    color: #000000;
}
.blog-details{
    max-width:67%;
}
.blog-details p{
    font-size: 15px;
    color: #3a3a3a;
}
h3 {
   margin-top: 25px;
   color: #000000;
   font-weight: bold;
   color: #3a3a3a !important;
}

@media (max-width: 768px){
    .blogs{
        padding-top: 75px;
        display: flex;
    }
    .blog-header img{
        max-width: 100%;
    }
    .blog-details{
        max-width: 100%;
    }
    /* .blog-content p{
      text-align: justify;
    } */
    
}