body { padding-top: 55px; }

/*..............................*/

.title { flex-direction: unset !important; }
.title > h1 {
	font-size: 50px !important;
	text-transform: uppercase;
	max-width: 100% !important;
	padding: 25px 0;
}


.expose > article > h2 { text-decoration: underline; }
.simpleContainer > .expose > article { max-width: 500px; margin-bottom: 25px; }


.cardBox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	width: 100%;
}

.cardBox > article {
	border-radius: 15px;
	box-shadow: 0 0 10px gray;
	display: flex;
	margin: 0 10px;
	margin-bottom: 35px;
	width: 100%;
} .cardBox > article:nth-child(even) { flex-direction: row-reverse; }


.cardBox .coverpage {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: table;
	height: 450px;
	width: 450px;
}


.cardBox > article > div {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}

.cardBox > article > div > h2 {
	display: block;
	font-family: 'Spartan', sans-serif;
	font-size: 3em;
	text-align: center;
	padding: 0 25px;
}
.cardBox > article > div > p {
	display: table;
	font-family: 'Quicksand', sans-serif;
	font-size: 18px;
	text-align: center;
	max-width: 500px;
	padding: 0 20px;
}

/*..............................*/

@media screen and (max-width: 1200px) {
	.title > h1 {
		font-size: 30px !important;
		width: 100% !important;
	}


	.simpleContainer > .expose { flex-direction: column; padding-top: 15px; }

	.cardBox > article {
		border-radius: 0;
		flex-direction: column !important;
		max-width: 500px;
	}

	.cardBox .coverpage {
		box-shadow: 0 0 10px #BDBDBD;
		height: 350px;
		width: 100%;
	}

	.cardBox > article > div > h2 {
		font-size: 2em;
		padding-top: 20px;
	}

	.cardBox > article > div > p { padding-bottom: 25px; }
}

@media screen and (max-width: 500px) {
	.simpleContainer .title { width: 100% !important; font-size: 2em !important; }
	.simpleContainer .title > h1 {
		align-items: center;
		display: flex;
		font-size: 20px !important;
		justify-content: center;
	}
	
	.simpleContainer > .expose > article {
		font-size: 20px;
	}
}