@charset "UTF-8";
/*=================================
    TILE STYLES
 ===============================*/
.item {
    float: left;
    position: relative;
    line-height: 1em;
}


.grid-sizer { width: 25%; }
.item { width: 25%; }


@media screen and (max-width: 980px) {
  /* 10 columns for larger screens */
  .grid-sizer { width: 50%; }
  .item { width: 50%; }
}

div.box {
	width: 100%;
	height: 100%;
	float: left;
	position: relative;
}

div.box img {
	width: 100%;
	height: auto;
}


/* center text horizontally/vertically */

div.box div.details h3 {
	top: 33%;
	position: absolute;
	text-align: center;
	width: 100%;
	z-index: 110;
	display: block;
}

div.box div.details a {
	display: block;
	height: 100%;
	width: 100%;
}

div.box .details {
position:absolute;
cursor: pointer;
top:0;
left:0;
width: 100%;
height: 100%;
background: rgb(0, 0, 0);
background: rgba(0, 0, 0, .85);
color: #fff;
opacity: 0;


/* Fade out */
transition: opacity;
transition-timing-function: ease-out;
transition-duration: 250ms;

-ms-transition: opacity;
-ms-transition-timing-function: ease-out;
-ms-transition-duration: 250ms;

-moz-transition: opacity;
-moz-transition-timing-function: ease-out;
-moz-transition-duration: 250ms;

-webkit-transition: opacity;
-webkit-transition-timing-function: ease-out;
-webkit-transition-duration: 250ms;
}



div.box .details:hover {
opacity: 1;

/* Fade in */
transition: opacity;
transition-timing-function: ease-out;
transition-duration: 250ms;

-ms-transition:opacity;
-ms-transition-timing-function: ease-out;
-ms-transition-duration: 250ms;

-moz-transition:opacity;
-moz-transition-timing-function: ease-out;
-moz-transition-duration: 250ms;

-webkit-transition: opacity;
-webkit-transition-timing-function: ease-out;
-webkit-transition-duration: 250ms;
}

.description {
    position: absolute;
    bottom: 0;
    left: 0;
	color: rgba(254,254,254,1.00);
    background-color: rgba(0,0,0,0.50);
    width: 100%;
    margin: 0;
	display:block;
}

.description p {
    margin: 20px;
}

@media screen and (max-width: 480px) {
  /* 10 columns for larger screens */
  .grid-sizer { width: 50%; }
  .item { width: 50%; }
  
div.box div.details h3 {
	display: none;
}
div.box .description {
	display: none;
}  

}

/*=================================
    GRID STYLES
 ===============================*/
.grid {
	width: 100%;
	max-width: 1280px;
	min-width: 755px;
	margin: 0 auto;
	overflow: hidden;
}
.grid:after {
  content: "";
  display: table;
  clear: both;
}
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
[class*='col-'] {
  float: left;
}
.col-1-3 {
  width: 33.33%;
}
.col-footer {
  width: 33.33%;
}
.col-1-2 {
  width: 50%;
}
.col-1-4 {
  width: 25%;
}
[class*='col-'] {
  padding-right: 20px;
}
[class*='col-']:last-of-type {
  padding-right: 0;
}
@media screen and (min-width: 768px) and (max-width: 1220px) {
.grid {
	width: 90%;
	padding: 0 5% 0 5%;
}
.col-footer {
  width: 50%;
}
}

@media handheld, only screen and (max-width: 767px) {
[class*='col-'] {
	width: auto;
	float: none;
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 0px;
	margin-bottom: 10px;
	padding-left: 0px;
	padding-right: 0px; /* column-space */
}
	
	/* Mobile Layout */
.grid {
	width: 98%;
	padding: 0% 0% 0% 2%;
	min-width: 0;
	margin-left: 0px;
	margin-right: 0px;
}	
	[class*='mobile-col-'] {
		float: left;
		margin-left: 0px;
		margin-right: 0px;
		margin-top: 0px;
		margin-bottom: 0px;
		padding-left: 0px;
		padding-right: 10px; /* column-space */
		padding-bottom: 0px;
	}
	
	.mobile-col-1-1 {
		width: 100%;
	}
	.mobile-col-1-2 {
		width: 50%;
	}

	.mobile-col-1-3 {
		width: 33.33%;
	}

	.mobile-col-1-4 {
		width: 25%;
	}

	.hide-on-mobile {
		display: none !important;
		width: 0;
		height: 0;
	}
}
