main {
    position: relative;
    padding-top: 100px;
    margin-bottom: 100px;
} 
.Heads{ 
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 20%;
}
.Heads img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.Heads::before{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 2;
    content: '';
    background-image: url('../img/Head-Bj/z.png');
}
.Box {
    display: flex;
    justify-content: center;
}
.blog-post-item {
    padding: 40px 40px 30px;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;  
    color: #616161;
    margin-bottom: 30px;
} 
.blog-post-item .entry-content {
    position: relative;
    padding-left: 85px;
}
.blog-post-item .entry-content .user-thumb {
    position: absolute;
    top: 0;
    left: 0;
    border: 7px solid #e8ebee;
    width: 65px;
    height: 65px;
    border-radius: 50%;
}
.blog-post-item .entry-content .user-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.blog-post-item .entry-content .post-meta ul {
    padding-left: 0;
}
.blog-post-item .entry-content .post-meta ul li {
    margin-right: 25px;
}
.blog-post-item .entry-content .post-meta ul li i{
    margin-right: 5px;
}
.post-meta ul li {
    display: inline-block;
    margin-bottom: 5px;
    color: #616161 !important;
}  
.blog-post-item .entry-content h3.title  a{
    color: black;
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 15px;
    margin-top: 15px;
    font-weight: bold;

    display: -webkit-box;
    -webkit-box-orient: vertical; 
    -webkit-line-clamp: 2; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    line-height: 1.5; 
}
.blog-post-item .entry-content p {
    margin-bottom: 15px;
    display: -webkit-box; 
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis; 
    line-height: 1.5; 
}
.btn-link {
    font-family: var(--rajdhani);
    text-transform: uppercase; 
    font-weight: 700;
    color: var(--text-color);
}

.blog-post-item:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: url('../img/New/bj.png') no-repeat center;
    background-size: cover;
    z-index: -1;
}
.blog-post-item:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #F7F8F9;
    z-index: -1;
    /* transition: all .3s; */
}
.blog-post-item:hover:after {
    background: linear-gradient(-180deg, rgb(255 113 0 / 90%) 0%, rgba(255, 177, 112, 0.95) 80%);
}
.blog-post-item .entry-content h3.title a{
    transition: 0.3s;
}
.blog-post-item:hover  .entry-content h3.title a{
    color: white;
}
.blog-post-item .entry-content a,
.blog-post-item .entry-content span,
.blog-post-item .entry-content p
{
    transition: 0.3s;
}
.blog-post-item:hover  .entry-content a,
.blog-post-item:hover  .entry-content span,
.blog-post-item:hover  .entry-content p
{
    color: white;
}
@media screen and (max-width:991px) {
    .sidebar{
        margin-top: 50px;
    }
}