.demo{
    background: linear-gradient(to right,#ffcccc,#d3d3d3);
}
.post-slide{
	width:370px;
	border: 1px solid #C8C8C8;
}
.post-slide .post-img{
	background:#FFF;
    overflow: hidden;
    padding: 8px 8px 0 8px;
}
.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;
}
.post-slide .post-title{
    font-size:20px;
	color:#3c3c3c;
    /*font-weight: 600;
    margin-top: 0;
    text-transform: capitalize;*/
}
.post-slide .post-title a{
    display: inline-block;
    color: #3c3c3c;
    transition: all 0.3s ease 0s;
}
.post-slide .post-title a:hover{
    color: #006ecf;;
    text-decoration: none;
}
.post-slide .post-description{
    font-size: 15px;
    color: #646464;
    line-height: 10px;
}

.post-slide .post-description a{
    display: inline-block;
    color: #646464;
    transition: all 0.3s ease 0s;
}

.post-slide .post-description a:hover{
    color: #006ecf;;
    text-decoration: none;
}

.post-slide .post-bar{
    padding: 0;
    margin-bottom: 15px;
    list-style: none;
}
.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{
    display: inline-block;
    padding: 6px 8px;
    font-size: 14px;
    /*font-weight: bold;
	margin-top:15px;*/
    color: #fff;
    background: #006ecf;
    /*border-bottom-right-radius: 10px;*/
    text-transform: capitalize;
    transition: all 0.30s linear;
}
.post-slide .read-more:hover{
    background:#002a4f;
    text-decoration: none;
}

