.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}
/* Content */
.content {
	padding: 3em 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	position: relative;
}

.content:not(:first-child) {
	padding: 4em 0;
}

.content--c2 {
	background: rgba(212, 236, 255, 0.7);
}

/* Related demos */
.content--related {
	height: auto;
	text-align: center;
	font-weight: bold;
	min-height: 0;
	padding-bottom: 10em !important;
	background: #f1ebf0;
}

.content--related > p {
	width: 100%;
}

.media-item {
	display: inline-block;
	padding: 1em;
	vertical-align: top;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

.media-item__img {
	max-width: 100%;
	opacity: 0.3;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.media-item:hover .media-item__img,
.media-item:focus .media-item__img {
	opacity: 1;
}

.media-item__title {
	margin: 0;
	padding: 0.5em;
	font-size: 1em;
}

@media screen and (max-width: 55.625em) {
	.content {
		height: auto;
	}
}
