.demo{
    background: linear-gradient(to right,#ffcccc,#d3d3d3);
}

.post-slide{
    margin: 0 15px;
    height: 475px;
}

.post-slide .post-img {
    overflow: hidden;
    height: auto;
}

.post-slide .post-img img{
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: all 1s ease-in-out 0s;
}

.post-slide:hover .post-img img{
    transform: scale(1.08);
}

.post-slide .post-content{
    background: #fff;
    padding: 20px;
    height: 270px;    
}

.post-slide .post-title{
    font-size: 17px;
    font-weight: 600;
    margin-top: 0;
    text-transform: capitalize;
}

.post-slide .post-title a{
    display: inline-block;
    color: #808080;
    transition: all 0.3s ease 0s;
}

.post-slide .post-title a:hover{
    color: #3d3030;
    text-decoration: none;
}

.post-slide .post-description{
    font-size: 15px;
    color: #676767;
    line-height: 24px;
    margin-bottom: 14px;
}

.post-slide .post-bar{
    padding: 0;
    margin-bottom: 15px;
    list-style: none;
    margin-top: 10px;
}

.post-slide .post-footer {
    position: absolute;
    bottom: 10px;
    width: 90%;
    padding: 10px;
}

.post-slide .post-bar li{
    color: #676767;
    padding: 2px 0;
}

.post-slide .post-bar li i{
    margin-right: 5px;
}

.post-slide .post-bar li a{
    display: inline-block;
    font-size: 12px;
    color: #808080;
    transition: all 0.3s ease 0s;
}

.post-slide .post-bar li a:after{
    content: ",";
}

.post-slide .post-bar li a:last-child:after{
    content: "";
}

.post-slide .post-bar li a:hover{
    color: #3d3030;
    text-decoration: none;
}

    .post-slide .read-more {
        width: 48%;
        display: inline-block;
        padding: 10px 12%;
        font-size: 13px;
        font-weight: bold;
        color: #fff;
        background: #b40000;
        text-transform: capitalize;
        transition: all 0.30s linear;
    }

    .post-slide .post-learn {
        width: 48%;
        display: inline-block;
        padding: 10px 12%;
        font-size: 13px;
        font-weight: bold;
        color: #fff;
        background: #017b11;
        text-transform: capitalize;
        transition: all 0.30s linear;
        float: right;
    }

.post-slide .read-more:hover{
    background: #333;
    text-decoration: none;
}

.post-slide .post-learn:hover {
    background: #333;
    text-decoration: none;
}