.home-content {
	margin-top: -1px;
	padding-top: 1px;
	padding-bottom: 65px;
	background-color: #c8eff8;
}
.home-content .page-content {
	max-width: 960px;
	padding-top: 15px;
	margin-bottom: 60px;
}
.home-content p,
.home-content li,
.home-content a {
	color: #707070;
	font-size: 24px;
	line-height: 36px;
}

.home-content .button {
	color: #3E3F44;
	font-size: 20px;
	line-height: 1.4;

	cursor: pointer;
	display: inline-block;
	border: 1px solid #3e3f44;
	padding: 13px 70px 14px 65px;
	background-color: transparent;
}
.home-content .button:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background-color: #0092c6;
	transition: .2s;
}
.home-content .button:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(/static/img/arrow-right-black.svg);
	background-repeat: no-repeat;
	background-position: center right 20px;
	transition-duration: .2s;
}
.home-content .button span {
	position: relative;
}
.home-content .button:hover {
	color: #FFF;
	border-color: #0092c6;
	transition: .2s;
}
.home-content .button:hover:before {
	width: 100%;
}
.home-content .button:hover:after {
	background-image: url(/static/img/arrow-right-white.svg);
}

.home-content .video-container {
	max-width: 1235px;
	margin-bottom: 40px;
}
.home-content .video-container iframe {
	width: 100%;
	max-height: 50vw;
	height: 694.6875px;
}
@media screen and (max-width: 767px) {
	.home-content {
		padding-bottom: 30px;
	}
	.home-content .page-content {
		padding-top: 50px;
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 500px) {
	.home-content .button {
		font-size: 16px;
	}
	.home-content p,
	.home-content li,
	.home-content a {
		font-size: 17px;
		line-height: 1.8;
	}
}
