#blog-header {
    background: url('media/banner/b19.jpg') center center/cover;
    height: 40vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 14px;
}

#blog-header h2,
#blog-header p {
    color: white;
}

#blog {
    padding: 150px 150px 0 150px;
}

#blog .blog-box {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding-bottom:90px;
}

#blog .blog-img {
    width: 50%;
    margin-right: 40px;
}

#blog img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

#blog .blog-details {
    width: 50%;
}

#blog .blog-details a {
    text-decoration: none;
    font-size: 11px;
    color: black;
    font-weight: 700;
    position: relative;
    transition: .3s;
}

#blog .blog-details a::after {
    content: "";
    width: 50px;
    height: 1px;
    background-color: black;
    position: absolute;
    top: 6px;
    right: -58px;
}

#blog .blog-details a:hover {
    color: #088178;

}

#blog .blog-details a:hover::after {
    background-color: #088178;
}
#blog .blog-box h1{
    position: absolute;
    top: -52px;
    left: 0;
    font-size:70px ;
    font-weight: 700;
    color: rgb(170, 170, 170);
    z-index: -1;
}
@media (max-width:590px){
    #blog .blog-box {
       flex-direction: column;
       align-items: flex-start;
    }
    #blog{
        padding: 100px 20px 0px 20px;
    }
    #blog .blog-img {
        width: 100%;
        margin-right: 0px;
    }
    #blog .blog-details {
        width: 100%;
        margin-top: 10px;
    }
}