.pixNav { text-align: justify; }

.pixNav .item {
	display: inline-block;
	vertical-align: top;
	transition: 0.2s;
	width: 23.5%;
	margin-bottom: 2%;
	position: relative;
	overflow: hidden;
}
.pixNav .item:hover {
}

.pixNav .item * { max-width: 100%; }

@media all and (max-width: 600px) { .pixNav .item { width: 47%; } }
@media all and (max-width: 300px) { .pixNav .item { width: 100%; } }

.pixNav .text {
	position: absolute;
	bottom: 5%;
	right: 10%;
	text-align: center;
	transform: scale(1.5,-1.5);
	transition: all 800ms;
	opacity: 0;
	background-color: #fff;
	width: 80%;
	padding: 10px 0;
}
.pixNav .item:hover .text {
	transition: all 200ms;
	transform: scale(1,1);
	opacity: 1;
}
.pixNav .text h1 {
	margin: 0;
	text-transform: uppercase;
}


.pixNav .icon {
	content: '';
	display: block;
	position: absolute;
	width: 74px;
	height: 74px;
	border-radius: 37px;
	top: -21px;
	left: 11px;
	background-color: #fff;
	transition: all 50ms;
}
.pixNav .icon img {
	position: absolute;
	left: 5px;
	top: 5px;
	width: 64px;
	height: 64px;
	border-radius: 32px;
	background-color: #fff;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5) inset;
	transition: all 250ms;
}

.pixNav .item:hover .icon img {
	box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.25) inset;
	/*-ms-transform: scale(1.1,1.1);
	-webkit-transform: scale(1.1,1.1);
	transform: scale(1.1,1.1);*/
}

.pixNav .item:hover .icon {
	box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.5) inset;
}
