@font-face
{
	font-family: 'ProximaNova-Black';
	src:url('../fonts/ProximaNova-Black.otf') format('opentype');
}

.work-container{
	margin: 30px auto 30px auto;
}
.work-container label{
	font-family: 'ProximaNova-Black', Arial, sans-serif;
	width: 20%;
	height: 40px;
	cursor: pointer;
	color: #999;
	line-height: 40px;
	font-size: 18px;
	background: black;
	text-align:center;
	float:left;
}

.work-container input.work-selector-type-all:checked ~ label.work-label-type-all,
.work-container input.work-selector-type-1:checked ~ label.work-label-type-1,
.work-container input.work-selector-type-2:checked ~ label.work-label-type-2,
.work-container input.work-selector-type-3:checked ~ label.work-label-type-3,
.work-container input.work-selector-type-4:checked ~ label.work-label-type-4{
	background: #83d0c1;
	
	color: black;
	border: 0px 0px 0px 1px #40496e, 0 1px 2px rgba(0,0,0,0.1) inset;
}
.work-container input{
	display: none;
}
.work-items{
	position: relative;
	margin: 0px auto;
	padding-top: 20px;
}

.work-items a{
	display: block;
	position: relative;
	padding: 10px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	margin: 4px;
	max-width:264px;
}
.work-items a span{
	display: block;
	background: rgba(255,255,255, 0.9);
	font-family: 'ProximaNova-Black', Arial, sans-serif;
	font-size:18px;
	color: black;
	padding: 10px 20px;
	position: absolute;
	bottom: 10px;
	left: 10px;
	width:224px;
	height: 0px;
	text-transform: capitalize;
	overflow: hidden;
	opacity: 0;
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.work-items a:hover span{
	height: 10px;
	opacity: 1;
}
.work-items li img{
	display: block;
}

.work-items li{
	margin: 0px;
	float: left;
	max-width: 100%;
	-webkit-transition: opacity 0.6s ease-in-out;
	-moz-transition: opacity 0.6s ease-in-out;
	-o-transition: opacity 0.6s ease-in-out;
	-ms-transition: opacity 0.6s ease-in-out;
	transition: opacity 0.6s ease-in-out;
	list-style:none;
}
.work-container input.work-selector-type-all:checked ~ .work-items li,
.work-container input.work-selector-type-1:checked ~ .work-items .work-item-type-1,
.work-container input.work-selector-type-2:checked ~ .work-items .work-item-type-2,
.work-container input.work-selector-type-3:checked ~ .work-items .work-item-type-3,
.work-container input.work-selector-type-4:checked ~ .work-items .work-item-type-4{
	opacity: 1;
}

.work-container input.work-selector-type-1:checked ~ .work-items li:not(.work-item-type-1),
.work-container input.work-selector-type-2:checked ~ .work-items li:not(.work-item-type-2),
.work-container input.work-selector-type-3:checked ~ .work-items li:not(.work-item-type-3),
.work-container input.work-selector-type-4:checked ~ .work-items li:not(.work-item-type-4){
	opacity: 0.1;
}
.work-container input.work-selector-type-1:checked ~ .work-items li:not(.work-item-type-1) span,
.work-container input.work-selector-type-2:checked ~ .work-items li:not(.work-item-type-2) span,
.work-container input.work-selector-type-3:checked ~ .work-items li:not(.work-item-type-3) span,
.work-container input.work-selector-type-4:checked ~ .work-items li:not(.work-item-type-4) span{
	display:none;
}