#content .exam-box {
	display: flex;
	justify-content: space-between;
}
#content .exam-box .before,
#content .exam-box .after {
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	align-items: center;
}
@media only screen and (min-width: 481px) {
	#content .exam-box .before,
	#content .exam-box .after {
		padding: 3em 2em 2em;
	}
}
@media only screen and (max-width: 480px) {
	#content .exam-box .before,
	#content .exam-box .after {
		padding: 2em 1em 1em;
	}
}
#content .exam-box .before {
	background: linear-gradient(110deg, #ff9973 0%, #ff9973 25%, #ff4500 25%, #ff4500 75%, #ff9973 75%, #ff9973 100%);
}
#content .exam-box .after {
	background: linear-gradient(110deg, #d58686 0%, #d58686 25%, #b22222 25%, #b22222 75%, #d58686 75%, #d58686 100%);
}
#content .exam-box .before::before,
#content .exam-box .after::before {
	display: block;
	position: absolute;
	left: 0; top: 0;
	color: white;
	font-weight: bold;
}
@media only screen and (min-width: 481px) {
	#content .exam-box .before::before,
	#content .exam-box .after::before {
		font-size: 300%;
	}
}
@media only screen and (max-width: 480px) {
	#content .exam-box .before::before,
	#content .exam-box .after::before {
		font-size: 8vw;
	}
}
#content .exam-box .before:before {
	content: 'BEFORE';
}
#content .exam-box .after::before {
	content: 'AFTER';
}

#content .exam-box img {
	max-width: 100%;
}
#content .exam-box .img {
	width: 100%;
	text-align: center;
	padding: 0;
}
#content .result-box {
	background-color: white;
	display: flex;
}
@media only screen and (min-width: 481px) {
	#content .result-box {
		justify-content: space-around;
	}
}
@media only screen and (max-width: 480px) {
	#content .result-box {
		justify-content: space-between;
	}
}
#content .result-box .result {
	padding: 1em;
}
#content .result-box p {
	padding: 0;
	text-align: center;
}
#content .result-box p:first-of-type {
	font-weight: bold;
	font-size: 120%;
}
@media only screen and (min-width: 481px) {
	#content .result-box p:first-of-type {
		font-size: 120%;
	}
}
@media only screen and (max-width: 480px) {
	#content .result-box p:first-of-type {
		font-size: 4vw;
	}
}
#content .result p.txt {
	font-weight: bold;
}
@media only screen and (min-width: 481px) {
	#content .result p.txt {
		font-size: 200%;
	}
}
@media only screen and (max-width: 480px) {
	#content .result p.txt {
		font-size: 8vw;
	}
}