#blog-con{
    width: 100%;
    height: 50vh;
    background: linear-gradient(rgba(4, 9, 30, 0.7),rgba(4, 9, 30, 0.7)),url('background.jpg') ;
    background-position: center;
    background-size: cover;
    position: relative;
}
#blog-con header nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2% 6%;
}
#blog-con header img{
    width: 150px;
    
}
.heading{
    color: white;
    font-size: 33px;
    font-weight: 600;
    text-align: center;
    margin-top: 36px;
}

/* content  */
.blogContent{
    width: 80%;
    margin: auto;
    padding-top: 60px 0px;
    margin-bottom: 40px;
    display: flex;
}
.blogItemLift{
    flex-basis: 60%;
    margin-top: 12px;
}
.blogItemLift img{
    width: 100%;
}
.blogItemLift h2{
    color: #222;
    font-weight: 600;
    margin: 30px 0px;
} 
.blogItemRight{
    margin: 40vh 0vw 0vh 18vw;
    /* padding: 200px; */
    flex-basis: 32%;
}
.categories h3{
background-color: #f44336;
color: white;
padding: 7px 0px;
margin-bottom: 12px;
text-align: center;
font-size: 15px;
}
.categories div{
display: flex;
align-items: center;
justify-content: space-between;
padding: 9px;
}
.comment-sec{
    border: 1px solid #ccc;
    padding: 10px 20px;
    margin: 50px 12px;
    width: 80%;

}
.comment-sec h3{
    text-align: left;
}
.commentInput input[type="text"],.commentInput input[type="email"], .commentInput textarea{
width: 100%;
padding: 10px;
margin: 15px 0;
border: none;
outline: none;
background-color: #f0f0f0;
}
#commentButton{
    width:162px;
}
@media (max-width:700px){
    .blogItemRight{
        margin: 6vh 0vw 0vh 0vw;
    }
}