.item {
    float: left;
    position: relative;
    line-height: 1em;
	transition:all 0.4s ease;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	-o-transition:all 0.4s ease;
	-ms-transition:all 0.4s ease;
	}

.item a{
    color:#fff;
	text-align: left;
	font-size: 1em;
	transition:all 0.3s ease;
	}

.item a:hover{
    color:#fff;
	box-shadow: inset 0 0 0 6px #ff8200;
	}

.grid-sizer { width: 25%; }
.item { width: 25%; }


@media screen and (max-width: 1224px) {
  /* 10 columns for larger screens */
  .grid-sizer { width: 33.33%; }
  .item { width: 33.33%; }
}

@media screen and (max-width: 720px) {
  /* 10 columns for larger screens */
  .grid-sizer { width: 50%; }
  .item { width: 50%; }
}

@media screen and (max-width: 480px) {
  /* 10 columns for larger screens */
  .grid-sizer { width: 100%; }
  .item { width: 100%; }
}

.image{
    max-width: 98%;
    margin: 0;
    display: block;
	margin: 0 auto;
	margin-bottom: 12px;
}

.image:after {
    clear:both;
}

.overlay {
    width: 100%;
    height: 97%;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    text-decoration: none;
    color: #fff;
    display: none;
	margin: 0 auto;
}

.overlay .title {
    text-align: center;
    font-size: 30px;
}

.overlay .description {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
}


.overlay .description p {
    margin: 20px;
	text-align: right;
}

.item:hover .overlay {
    display: block;
}