.grid {
	overflow: hidden;
	margin: 0;
	padding: 0;
	width: 100%;
	list-style: none;
	text-align: center;
}

/* Common style */
.grid figure {
	position: relative;
	z-index: 1;
	display: inline-block;
	overflow: hidden;
	margin: 2px;
	width: 32.5%;
	height: 250px;
	background: #96AB1A;
	text-align: center;
	cursor: pointer;
}

.grid figure.green{
	cursor: inherit;
}

.grid figure.effect-itn-sotm {
	position: relative;
	z-index: 1;
	display: inline-block;
	overflow: hidden;
	margin: 2px;
	width: 65.55%;
	height: 250px;
	background: #96AB1A;
	text-align: center;
	cursor: pointer;
}

.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	opacity: 0.8;
}

.grid figure.effect-itn-sotm img {
	position: relative;
	display: block;
	min-height: 100%;
	opacity: 1;
	padding-bottom:0px;
}

.grid figure figcaption {
	padding: 1em;
	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;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid figure h2 {
	word-spacing: -0.15em;
	
	font-weight: 300;
}

.grid figure h2 span {
	font-weight: 800;
}

.grid figure h2,
.grid figure p {
	margin: 0;
}

.grid figure p {
	font-size: 68.5%;
}



/*---------------*/
/***** ITN *****/
/*---------------*/

figure.effect-itn {
	background: #96AB1A;
}

figure.effect-itn img {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.effect-itn:hover img {
	opacity: 0.2;
}

figure.effect-itn figcaption {
	text-align: left;
}

figure.effect-itn h2 {
	font-family:"Oswald";
	font-size:18px;
	font-weight:400;
	color:#fff;
	position: relative;
	overflow: hidden;
	padding: 0.5em 0;
	word-spacing:2px;
	text-shadow: 1px 1px 5px #000;
}

figure.effect-itn h2::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: #fff;
	content: '';
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(-100%,0,0);
	transform: translate3d(-100%,0,0);
}

figure.effect-itn:hover h2::after {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-itn p {
	padding: 1em 0;
	opacity: 0;
	color:#fff;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
}

figure.effect-itn:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

@media screen and (max-width: 1023px) {
	.grid figure {
		width: 100%;
	}	
	.grid figure.effect-itn-sotm {
		width: 100%;
	}	
}








/*-------------------------------------*/
/***** ITN : SECTOR OF THE MONTH *****/
/*----------------------------------*/

figure.effect-itn-sotm {
	background: #96AB1A;
}

figure.effect-itn-sotm img {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.effect-itn-sotm:hover img {
	opacity: 0.2;
}

figure.effect-itn-sotm figcaption {
	text-align: left;
}

figure.effect-itn-sotm h2 {
	font-family:"Oswald";
	font-size:25px;
	font-weight:400;
	color:#fff;
	position: relative;
	overflow: hidden;
	padding: 0.5em 0;
	word-spacing:2px;
	text-shadow: 1px 1px 5px #000;
}

figure.effect-itn-sotm h2::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: #fff;
	content: '';
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(-100%,0,0);
	transform: translate3d(-100%,0,0);
}

figure.effect-itn-sotm:hover h2::after {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-itn-sotm p {
	padding: 1em 0;
	opacity: 0;
	color:#fff;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
}

figure.effect-itn-sotm:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}


.sector-border{
	border:5px solid #A8BF17;
}