@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

@charset "utf-8";
/* CSS Document */

/***** colors / fonts*****

red: e02b20
yellow: e09900
gray: 4a4a4a

font-family: 'Open Sans', sans-serif; - body copy
*/

.grid {
	position: relative;
	clear: both;
	margin: 0 auto;
	list-style: none;
	text-align: center;
	width: 95%;
	float: none;
	padding:50px 0 5% 0;
}
.grid h2 {padding: 10px 0;}
/* Common style */
.grid figure {
	position: relative;
	float: none;
	display: inline-block;
	overflow: hidden;
	margin: 10px 5px;
	min-width: 320px;
	max-width: 480px;
	max-height: 360px;
	width: 22%;
	height: auto;
	background: #eee;
	text-align: center;
	cursor: pointer;
}

.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 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 figcaption > 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 figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid figure h2 {
}



.grid figure h2,
.grid figure p {
	margin: 0;
}

.grid figure p {
}



/*-----------------*/
/***** Apollo *****/
/*-----------------*/

figure.effect-apollo {
	background: #212121;
}

figure.effect-apollo img {
	opacity: 0.95;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale3d(1.05,1.05,1);
	transform: scale3d(1.05,1.05,1);
}

figure.effect-apollo figcaption::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.5);
	content: '';
	-webkit-transition: -webkit-transform 0.6s;
	transition: transform 0.6s;
	-webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
	transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,22deg) translate3d(0,-100%,0);
	
	
}

figure.effect-apollo p {
	position: absolute;
	right: 0;
	bottom: 0;
	margin: 2em;
	letter-spacing: 2px;
	padding: 0 20px;
	max-width: 150px;
	border-right: 6px solid #4a5d66;
	text-align: right;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	font-size: 16px;
	opacity: 0;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.effect-apollo h2 {
	text-align: left;
	margin: 20px;
}

figure.effect-apollo:hover img {
	opacity: 0.6;
	-webkit-transform: scale3d(1,1,1);
	transform: scale3d(1,1,1);
}

figure.effect-apollo:hover figcaption::before {
	-webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);
	transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);
}

figure.effect-apollo:hover p {
	opacity: 1;
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}





/*--responsive ------------------------------------*/

@media screen and (max-width:1400px) {
		.grid figure {min-width: 250px;}
}
@media screen and (max-width:900px) {
	.ql-container {width: 90%;}
	.grid {padding: 15px 0;}
	.grid figure {min-width: 280px;	}
	figure.effect-apollo h2{margin: 14px;}
	figure.effect-apollo p{display: none}
	figure.effect-apollo h2{font-size: 18px;}
	.grid {padding: 25px 0;}
}



@media screen and (max-width:700px) {
		.grid figure {min-width: 200px;	}
}
@media screen and (max-width:520px) {
	.grid {padding: 80px 0 5% 0;}
	.grid figure {width: 95%; min-width: 90%;}
		.grid figure {min-width: 280px;width: 100%;	}
}

	
