html,
body {
	background-color: #ffffff;
	font-family: 'Asap', sans-serif;
}

.page {
	position: relative;
}
.page__home {}


.page__home .container,
.page__home .row,
.page__home .column {
	position: relative;
}

.content__block__focus {
	display: table;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	cursor: pointer;
	z-index: 100;
	opacity: 1;

	-webkit-transition: all .33s cubic-bezier(0.755, 0.05, 0.855, 0.06);
	transition: all .33s cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
.content__block__focus.hidden {
	opacity: 0;
	pointer-events: none;
}
.content__block__focus > div {
	width: 100%;
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}
.content__block__focus img {
	display: block;
	width: 95%;
	max-width: 1024px;
	margin: auto;
}

.page__title {
	clear: both;
	display: block;
	width: 100%;
	color: black;
	font-size: 24px;
	text-align: center;
	line-height: 1.6;
	padding: 7vh 0;
}
.page__title a,
.page__title a:hover {
	color: black;
	text-decoration: none;
}
.page__title span {
	background: white;
}
.page__background {}

.content__block {
	clear: both;
	display: block;
	position: relative;
	width: 100%;
	margin-bottom: 7vh;
}
.content__block::after {
	content: '';
	clear: both;
	display: block;
}
.content__block:last-child {
	margin-bottom: 11vh;
}


.content__block__title {
	clear: both;
	display: block;
	width: 100%;
	color: black;
	font-size: 18px;
	text-align: center;
	text-transform: uppercase;
	line-height: 1;
	padding: 3vh 0;
	background: white;
}

.content__block__image {
	overflow: hidden;
	display: block;
	float: left;
	width: 50%;
	max-height: 33vh;
	background: white;
	box-sizing: border-box;
	border: 11px solid white;

	-webkit-transition: border .33s cubic-bezier(0.23, 1, 0.32, 1);
	transition: border .33s cubic-bezier(0.23, 1, 0.32, 1);
}
.content__block__image:hover {
	background-color: #b3b3b3;
	border: 11px solid black;
	cursor: pointer;
}
.content__block__image img {
	float: left;
	width: 100%;
	padding: 0;
	margin: 0;
}
@media (max-width: 550px) {
	.content__block__image {
		clear: both;
		width: 100%;
	}
}



