img {
	display: block;
	max-width: 100%;
}

@media only screen and (min-width: 1300px) {
	.grid-item, .grid-sizer {
		max-width: 25%;
	}
}

@media only screen and (max-width: 1300px) {
	.grid-item, .grid-sizer {
		max-width: 25%;
	}
}

@media only screen and (max-width: 1024px) {
	.grid-item, .grid-sizer {
        max-width: 25%;
    }
}

@media only screen and (max-width: 767px) {
	.grid-item, .grid-sizer {
		max-width: 33.3%;
	}
}

@media only screen and (max-width: 479px) {
	.grid-item, .grid-sizer {
        max-width: 100%;
    }
}

.grid {
  background: transparent;
}

.grid-item, .grid-sizer {
  float: left;
}

.grid:after {
  content: '';
  display: block;
  clear: both;
}

.isotope, .isotope .isotope-item {
	-webkit-transition-duration: 0.8s;
	-moz-transition-duration: 0.8s;
	-o-transition-duration: 0.8s;
	transition-duration: 0.8s;
}

.isotope {
	-webkit-transition-property: height, width;
	-moz-transition-property: height, width;
	-o-transition-property: height, width;
	transition-property: height, width;
}

.isotope .isotope-item {
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform, opacity;
	-o-transition-property: -o-transform, opacity;
	transition-property: transform, opacity;
}

.isotope.no-transition, .isotope.no-transition .isotope-item, .isotope .isotope-item.no-transition  {
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
}

a {
	color: #999999;
}

a {
	outline: 0;
}

a, i {
	text-decoration: none;
	cursor: pointer;
	transition: background-color .3s ease, border .3s ease, color .3s ease, opacity .3s ease-in-out, outline .3s ease;
}

.grid-item:hover .project-overlay {
	opacity:1;
	transition:all 0.4s ease 0s;
	-moz-transition:all 0.4s ease 0s;
	-webkit-transition:all 0.4s ease 0s;
	-o-transition:all 0.4s ease 0s;
}

.grid-item:hover .project-name {
	opacity:2;
	-webkit-transition: opacity .4s .5s;
	-moz-transition: opacity .4s .5s;
	-o-transition: opacity .4s .5s;
	transition: opacity .3s .5s;
}

.grid-item:hover .project-categories {
	opacity: 0.5;
	-webkit-transition: opacity .4s .8s;
	-moz-transition: opacity .4s .8s;
	-o-transition: opacity .3s .8s;
	transition: opacity .3s .8s;
}

.grid-item:hover .zoom-icon {
	opacity:1;
	margin-top: 0px;
	-webkit-transition: opacity .3s .2s, margin-top .3s .2s;
	-moz-transition: opacity .3s .2s, margin-top .3s .2s;
	-o-transition: opacity .3s .2s, margin-top .3s .2s;
	transition: opacity .3s .2s, margin-top .3s .2s;
}

.project-overlay {
	background-color: black;
	border: 1px solid white;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	cursor: pointer;
}

.project-overlay h4 {
	padding-left: 3%;
	padding-right: 3%;
}

.project-name {
	color: #139ed5;;
	text-transform: uppercase;
	margin-top: 50px;
	opacity: 0;
	transition: all 0.2s ease 0s;
	-moz-transition: all 0.2s ease 0s;
	-webkit-transition: all 0.2s ease 0s;
	-o-transition: all 0.2s ease 0s;
}

.album-info {
	position: absolute;
	height: 100px;
	width: 100%;
	top: 50%;
	margin-top: -50px;
	text-align: center;
}

.zoom-icon {
	left: 50%;
	margin-left: -20px;
	position: inherit;
	width: 40px;
	height: 40px;
	margin-top: 40px;
	opacity: 0;
	background: url("../img/zoom.png");
	background-size: 40px 40px;
	transition: all 0.3s, ease 0.1s;
	-moz-transition: all 0.3s ease 0.2s;
	-webkit-transition: all 0.3s ease 0.2s;
	-o-transition: all 0.3s ease 0.2s;
}

.project-categories {
	font-size: 13px;
	color: #139ed5;
	opacity: 0;
	margin-top: 13px;
	transition: all 0.2s ease 0s;
	-moz-transition: all 0.2s ease 0s;
	-webkit-transition: all 0.2s ease 0s;
	-o-transition: all 0.2s ease 0s;
}