@media screen and (min-width:960px)
{
.grid {
	overflow: hidden;
	padding: 0;
	width: 98%;
	height: auto;
	list-style: none;
	text-align: center;
	border: 2px solid #016C93;
	margin-right: auto;
	margin-left: auto;
}
}

@media screen and (min-width:600px) and (max-width:960px)
{
.grid {
	overflow: hidden;
	padding: 0;
	width: 95%;
	height: auto;
	list-style: none;
	text-align: center;
	border: 2px solid #016C93;
	margin-right: auto;
	margin-left: auto;
}
}

@media screen and (max-width:600px)
{
.grid {
	overflow: hidden;
	padding: 0;
	width: 90%;
	height: auto;
	list-style: none;
	text-align: center;
	border: 2px solid #016C93;
	margin-right: auto;
	margin-left: auto;
}
}


.grid figure {
	position: relative;
	display: inline-block;
	overflow: hidden;
	margin: -0.135em;
	width: 100%;
	height: auto;
	background: #3085a3;
	text-align: center;
	cursor: pointer;
}

.grid figure img {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
}

.grid figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}

.grid figure figcaption,
.grid figure a {
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	top: 0px;
}









figure.effect-chico img {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.effect-chico:hover img {
	opacity: 0.5;
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}

figure.effect-chico figcaption {
	padding: 3em;
}

figure.effect-chico figcaption::before {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	border: 1px solid #fff;
	content: '';
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

figure.effect-chico figcaption::before,
figure.effect-chico p {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}


figure.effect-chico p {
	padding: 40% 0 20px 0;
	margin: 0 auto;
	max-width: 200px;
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
	font-size: 1.5rem;
}

figure.effect-chico:hover figcaption::before,
figure.effect-chico:hover p {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}