.cleared {
	clear:both;
}

.floatLeft {
	float:left;
}

.postCategory  {
	text-align: center;
}

.postCategoryContainer {
	display: flex;
	justify-content: space-between;
}

.postCategory .postCat {
	margin:2% 0;
	position: relative;
	text-align: center;
}

.postCategoryThree .postCat {
	width:31%;
}

.postCategoryFour .postCat {
	width:23%;
}

.postCatImage {
	position: relative;
}

.postCategory .postCat img {
	display: block;
	margin:auto;
}

.postCat h3 {
	font-size:1em;
	line-height: 1.3em;
  margin: 3% 0 0 0;
	padding:0 3%;
}

.postCatDate {
	font-size:0.825em;
}

.postCat a {
	text-decoration: none;
}

.postCatHover {
	align-items: center;
	background:rgba(0,0,0,0.7);
	color:#fff;
	display: flex;
	height: 100%;
	left: 0;
  margin: auto;
	opacity: 0;
	position: absolute;
  right: 0;
	top: 0;
	width:100%;
	transition: 0.3s all linear;
}

.postCatHover span {
	float:left;
	transform:scale(1.3);
	width:100%;
	transition: 0.3s all linear;
}

.postCategory .postCat:hover .postCatHover {
	opacity: 1;
	transition: 0.3s all linear;
}

.postCategory .postCat:hover .postCatHover span {
	transform:scale(1);
	transition: 0.6s all linear;
}

/* 960 - 1200px */
@media screen and (min-width: 960px) and (max-width: 1200px) {
	
}

/* 768 - 959px */
@media screen and (min-width: 768px) and (max-width: 959px) {

	.postCategoryContainer {
		display: block;
	}

	.postCategory .postCat {
		margin:2%;
		width:46%;
	}

}

/* 481 - 767px */
@media screen and (min-width: 481px) and (max-width: 767px) {
	
	.postCategoryContainer {
		display: block;
	}

	.postCategory .postCat {
		margin:2%;
		width:46%;
	}
	
}

/* max 480px */
@media screen and (max-width: 480px) {
	
	.postCategoryContainer {
		display: block;
	}
	
	.postCategory .postCat {
    float: none;
    margin: 8% auto;
		width: 90%;
	}
	
	.postCategory .postCat img,
	.postCatHover {
		width:100%;
	}
	
}