/* intro grid */
.trg-grid {
	/*margin: -2px;*/
	position: relative;
}
.trg-grid:after {
	content: '';
	display: block;
	clear: both;
}
.trg-grid .item {
	float: left;
	width: 33.26%;
	padding: 2px;
	height: 157px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.trg-grid .item.big {height: 314px;}
.trg-grid .item.small {width: 16.6%;}
/*.trg-grid .item.small:last-child {
	padding-right: 0;
}*/
.trg-grid .item a {
	display: block;
	overflow: hidden;
	height: 100%;
	background-position: 50% 0;
	background-size: cover;
	position: relative;
	text-decoration: none;
	-webkit-transition: all 700ms;
	transition: all 700ms;
}
.trg-grid .item img {
	width: 100%;
	height: auto;
	display: block;
	display: none;
}
.trg-grid .item h2 {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	padding: 14px 8px;
	color: #fff;
	margin: 0;
	text-transform: uppercase;
	font: 22px/26px 'Roboto Condensed', Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.01) 1%, rgba(0,0,0,0.5) 53%, rgba(0,0,0,0.8) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(1%,rgba(0,0,0,0.01)), color-stop(53%,rgba(0,0,0,0.5)), color-stop(100%,rgba(0,0,0,0.8))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.01) 1%,rgba(0,0,0,0.5) 53%,rgba(0,0,0,0.8) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.01) 1%,rgba(0,0,0,0.5) 53%,rgba(0,0,0,0.8) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.01) 1%,rgba(0,0,0,0.5) 53%,rgba(0,0,0,0.8) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.01) 1%,rgba(0,0,0,0.5) 53%,rgba(0,0,0,0.8) 100%); /* W3C */
	/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#b3000000',GradientType=0 );*/ /* IE6-9 */
}
.trg-grid .item .description {
	display: block;
	opacity: 0;
	filter: alpha(opacity=0);
	overflow: hidden;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #016eae;
	transition: opacity 0.5s ease-in;
}
.trg-grid .item a:hover .description,
.trg-grid .item a.always-show .description {
	opacity: 1;
	filter: alpha(opacity=100);
}
.trg-grid .item .holder {
	display: table;
	width: 100%;
	height: 100%;
}
.trg-grid .item .frame {
	display: table-cell;
	vertical-align: middle;
	padding: 14px 15px;
	font-weight: bold;
	color: #fff;
	font: 300 17px/22px 'Roboto Condensed', Arial, Helvetica, sans-serif;
}
.trg-grid .item p {margin: 0 0 25px;}
.trg-grid .item p span {
	font-size: 14px;
	font-weight: normal;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
}
.trg-grid .item p span:hover {
	color: #74c3f1;
	-webkit-transition: all 700ms;
	transition: all 700ms;
}

@media only screen and (max-width: 1399px) {
	.trg-grid .item {height: 157px;}
	.trg-grid .item.big {height: 314px;}
}
@media only screen and (max-width: 1279px) {
	.trg-grid .item .frame {padding: 14px 15px;}
}

@media only screen and (max-width: 959px) {
	.trg-grid .item {
		height: 157px;
		width: 49.89%;
	}
	.trg-grid .item.big {
		height: 314px;
		width: 99.9%;
	}
	.trg-grid .item.small {width: 24.98%;}
}

@media only screen and (max-width: 767px) {
	.trg-grid .item.big,
	.trg-grid .item,
	.trg-grid .item.small {width: 100%;}
}

