.grid1 {
	position: relative;
	clear: both;
	margin: 0 auto;
	padding: 0px;
	list-style: none;
	text-align: center;
	width:1200px;
	height:313px;
	float:left;
    margin:auto;
    display:flex;
    flex-direction: row;
}

/* Common style */
.grid1 figure {
	position: relative;
	margin-left: 0px;
	margin-right: 0px;
	padding: 0px;
	float: left;
	overflow: hidden;
    width: 380px;
	height: 283px;
	flex:1;
	text-align:right;
	cursor: pointer;
}
.grid1>figure:not(:first-child){
margin-left:30px;
}
.grid1 figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 1;
}

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

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

.grid1 figure figcaption,
.grid1 figure figcaption > a {
}

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

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

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

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

.grid1 figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}

/* Individual effects */
/*-----------------*/
/***** Goliath *****/
/*-----------------*/

figure.effect-goliath1 {
	background:#ededed;
}

figure.effect-goliath1 img,
figure.effect-goliath1 h2 {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.effect-goliath1 img {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.effect-goliath1 h2,
figure.effect-goliath1 p {
	position: absolute;
	bottom: 0;
	right: 0;
	padding-bottom: 20px;
	padding-left: 45px;
	padding-right: 20px;
	padding-top: 45px;
	font-size:10pt;	font-family:"acumin-pro","Acumin Pro,Helvetica Neue","Helvetica","Arial","sans-serif";
	color:#333;
}

figure.effect-goliath1 p {
	text-transform: none;
	font-size: 90%;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,50px,0);
	transform: translate3d(0,50px,0);
}

figure.effect-goliath1:hover img {
	-webkit-transform: translate3d(0,-50px,0);
	transform: translate3d(0,-50px,0);
}

figure.effect-goliath1:hover h2 {
	-webkit-transform: translate3d(0,-100px,0);
	transform: translate3d(0,-100px,0);
}

figure.effect-goliath1:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
/* Media queries */
@media screen and (max-width : 100.437em ){
	.content {
		padding: 0 10px;
		text-align: center;
	}
	.grid1 figure {
		display: inline-block;
		float: none;
		margin: 10px auto;
		width: 100%;
	}
}
