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

/* Common style */
.grid figure {
	position: relative;
	z-index: 1;
	display: inline-block;
	overflow: hidden;
	margin: .5em;
	width: 47%;
	height: 300px;
	background: #EEEEEE;
	text-align: center;
	cursor: pointer;
}

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

.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;
	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 {
	font-weight: 300;
	font-family: "Source Sans Pro", sans-serif;
}

.grid figure h2,
.grid figure p {
	margin: 0;
	font-family: "Source Sans Pro", sans-serif;
}

.grid figure p {
	margin-top: .5em;
	letter-spacing: 1px;
	font-size: 69%;
	font-family: "Source Sans Pro", sans-serif;
}

/* Individual effects */

/*---------------*/
/***** Lily *****/
/*---------------*/

figure.effect-lily img {
	width: -webkit-calc(100% + 50px);
	width: calc(100% + 50px);
	opacity: 0.7;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-40px,0, 0);
	transform: translate3d(-40px,0,0);
}

figure.effect-lily figcaption {
	top: auto;
	bottom: 0;
	height: 50%;
	text-align: left;
}

figure.effect-lily h2,
figure.effect-lily p {
	-webkit-transform: translate3d(0,40px,0);
	transform: translate3d(0,40px,0);
}

figure.effect-lily h2 {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.effect-lily p {
	color: rgba(255,255,255,0.6);
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
	transition: opacity 0.2s, transform 0.35s;
}

figure.effect-lily:hover img,
figure.effect-lily:hover p {
	opacity: 1;
}

figure.effect-lily:hover img,
figure.effect-lily:hover h2,
figure.effect-lily:hover p {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-lily:hover p {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
	-webkit-transition-duration: 0.35s;
	transition-duration: 0.35s;
}



@media screen and (max-width: 69.5em) {
	.grid figure {
		width: 50%;
	}

	.grid figure figcaption {
		font-size: 90%;
	}
}


@media screen and (max-width: 41.5em) {

	.grid figure {
		width: 100%;
	}
}

.container {
  padding: 30px;
	margin: 17px 0px;
}

.tile-container {
  padding: 30px;
	margin: 17px 0px;
  display: flex;
  justify-content: center;
}

.content {
	display: flex;
  flex-direction: column;
  width: 450px;
  padding-left: 31px;
  margin: 10px;
}

.feature h3{
	font-size: 25px;
}

.feature.left {
	display: flex;
	justify-content: center;
  margin: 15px;
}

.feature.left img {
	width: 450px;
	float: left;
  box-shadow: grey 0px 10px 21px;
}

.img1 {
	display: block;
	width: 450px;
	height: 300px;
	float: left;
	box-shadow: grey 0px 10px 21px;
	background: url(../img/gif1.gif);
	background-size: cover;
}

.img1 img{
	width: 450px;
	height: 300px;
	opacity: 1;
	transition: opacity 0.5s ease-out;
}
.img1 img:hover {
	opacity: 0;
	transition: opacity 0.5s ease-out;
}

.img2 {
	display: block;
	width: 450px;
	height: 300px;
	float: left;
	box-shadow: grey 0px 10px 21px;
	background: url(../img/gif2.gif);
	background-size: cover;

}
.img2 img{
	width: 450px;
	height: 300px;
	opacity: 1;
	transition: opacity 0.5s ease-out;
}
.img2 img:hover {
	opacity: 0;
	transition: opacity 0.5s ease-out;
}


.img3 {
	display: block;
	width: 450px;
	height: 300px;
	float: left;
	box-shadow: grey 0px 10px 21px;
	background: url(../img/gif3.gif);
	background-size: cover;

}
.img3 img{
	width: 450px;
	height: 300px;
	opacity: 1;
	transition: opacity 0.5s ease-out;
}
.img3 img:hover {
	opacity: 0;
	transition: opacity 0.5s ease-out;
}

.feature.right img {
	height: 250px;
	float: right
}

/* Icon */

.icon {
	text-decoration: none;
	border-bottom: none;
	position: relative;
	color: black
}

.icon:hover{
	color: #2196F3;
	text-shadow: grey 1px 1px 4px;
	transition: color 0.1s
}

.icon:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-transform: none !important;
}

.icon > .label {
	display: none;
}

ul.icons li .icon {
	font-size: 3em;
}

.icons {
	display: flex;
	margin: 10px;
	width: 250px;
	justify-content: space-around;
	padding: 29px;
}

.inner {
	display: flex;
	align-items: center;
	flex-direction: column;
}

#small {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 85%;
}

.tile {
  padding: 0px 8px 0px 8px;
}

.tile p {
  text-align: center;
}

/* Shine */
figure {
	position: relative;
	overflow: hidden;
}
figure::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
figure:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
.red {
	transition: .7s ease-out .5s;
}

.red:hover{
	color: red;
	transition: .4s;
}

.yellow {
	transition: .7s ease-out .5s;
}

.yellow:hover{
	color: #ffd400;
	transition: .4s;
}

.green {
	transition: .7s ease-out .5s;
}

.green:hover{
	color: green;
	transition: .4s;
}


.blue {
	transition: .7s ease-out .5s;
}

.blue:hover{
	color: #4b62e4;
	transition: .4s;
}

.lightblue {
	transition: .7s ease-out .5s;
}

.lightblue:hover{
	color: #00c0ff;
	transition: .4s;
}

.purple {
	transition: .7s ease-out .5s;
}

.purple:hover{
	color: purple;
	transition: .4s;
}

.orange {
	transition: .7s ease-out .5s;
}

.orange:hover{
	color: orange;
	transition: .4s;
}

.pink {
	transition: .7s ease-out .5s;
}

.pink:hover{
	color: pink;
	transition: .4s;
}
.pomegranet {
	transition: .7s ease-out .5s;
}

.pomegranet:hover{
	color: #f05033;
	transition: .4s;
}

.resume {
	display: block;
	font-size: 35px;
	margin: 20px 0px 0px 0px;
	font-weight: 500;
}

body:after{
	display:none;
	content: url(../img/gif1.gif) url(../img/gif2.gif) url(../img/gif3.gif);
}
