body {
	background: #dddddd;
	padding: 0;
	margin: 0;
}
:after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.home-blog-main {
	padding-bottom: 15px;
	background: #ffffff;
	box-shadow: 0 6px 29px rgba(0,0,5,0.2);
}
.blog-image a {
	display: block;
    position: relative;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.blog-image {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.home-blog-main .blog-image a img {
    -webkit-transition: all .4s linear;
    transition: all .4s linear;
}
.home-blog-main:hover .blog-image a img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.blog-image img {
	width: 100%;
}
.home-blog-content {
	display: inline-block;
	width: 100%;
	padding: 15px;
}
.home-blog-content h3 {
	font-size: 20px;
	color: #666666;
	margin: 0 0 10px;
}
.home-blog-content p {
	font-size: 14px;
	color: #3a3550;
}
.home-blog-content .read-more {
	color: #000;
	text-decoration: none;
	float: left;
	border-bottom: 1px solid #000;
    transition: all 0.3s ease-in-out;
}
.home-blog-content .read-more:hover {
	color: #238121;
}

@media (max-width: 767px){
	.home-blog-main{
		margin-bottom: 30px;
	}
}