.col-md-4r{ float:left; width:24%; margin:0.5%}
.box{
	font-family: 'Merriweather Sans', sans-serif;
	overflow: hidden;
	position: relative;
	z-index: 1;
	transition: all .5s;
}
.box:before,
.box:after{
	content: "";
	background: radial-gradient(circle at 0% 30%,#990000 30%);
	opacity: 0;
	position: absolute;
	z-index: 1;
	transition: all 0.35s ease;
}

.box:hover:before{
	opacity: 1;
	right: -0%;
}
.box:hover:after{
	opacity: 1;
	top: -0;
}

.box img{
	width: 100%;
	height: auto;
	transition: all 0.5s ease;
	
}
.box:hover img{  }
.box .box-content{
	text-align: center;
	position: absolute;
	bottom:0px;
	height:80px;
	line-height:80px;
	margin:auto;
	width:100%;
	z-index: 2;
	background:#0d1c3b;opacity:0.6;filter(alpha=60)
	
}
 .box:hover .box-content {
text-align: center;
	position: absolute;
	bottom:0px;
	height:80px;
	line-height:80px;
	margin:auto;
	width:100%;
	z-index: 2;
	background:#0d1c3b;opacity:0.6;filter(alpha=60)
        }
/*
.box .box-content{
	text-align: center;
	transform: translateX(-50%);
	position: absolute;
	bottom:10px;
	margin:auto;
	width:100%;
	left:50%;
	right: 50%;
	z-index: 2;
	transition: all .5s;
}
*/
.box:hover .box-content{ height:100%; line-height:100%; padding-top:40%; padding-bottom:40%;transition: all 0.35s ease; }
.box:hover .boxtitle{ border-bottom:1px solid #FFFFFF;border-top:1px solid #FFFFFF; line-height:80px; width:65%; margin:auto;}
.box .title{
	color: #1e272e;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0 0 0px 0;
}
.box .post{
	font-size: 16px;
	text-transform: capitalize;
	margin: 0 0 0px;
	display: block;
}


@media only screen and (max-width:860px){
	.box .title{ font-size: 20px; }
	.col-md-4r{ width:49%; float:left;margin:0.5%}
	.row{ width:100%; margin:0;}
}