body {
	text-align: center;
	color: #383838;
}

h1 {
	margin-bottom: 0px;
	line-height: 30px;
}

.lead {
	opacity: 0.8;
	margin-bottom: 0.5rem;
}

@media screen and (min-width: 1280px) {
	body {
		font-size: 1.5em;
	}

	h1 {
		line-height: 50px;
	}

	.lead {
		margin-bottom: 1rem;
	}
}
@media screen and (min-width: 1920px) {
	body {
		font-size: 2em;
	}
}

.vertical-center {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 80%;
	transform: translate(-50%, -50%);
}

#home {
	position: relative;

	height: 100vh;

	background-image: url(/assets/img/background-home.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#home .vertical-center {
	width: 40%;
}

#home article {
	display: inline-block;
	margin: 0 10px;
}

#home article p {
	margin-bottom: 0px;
}

@media screen and (max-width: 39.9375em) {
	#home {
		background-position: 50% -100px;
	}

	#home .vertical-center {
		width: 80%;
	}
}

#home .arrow-button-right img {
	position: absolute;
	transform: translate(40px, -20px) rotate(220deg);
	width: 30px;
}
#home .arrow-button-left img {
	position: absolute;
	transform: translate(-80px, -20px) scaleX(-1) rotate(-140deg);
	width: 30px;
}

#home .button {
	position: relative;
}

@media screen and (min-width: 40em) {
	#home h1 {
		font-size: 2em;
	}

	#home .lead {
		line-height: 1.2;
	}

	#home .button {
		font-size: 1em;
	}

	#mc_embed_signup {
		max-width: 500px;
		margin: auto;
	}
}
@media screen and (min-width: 1280px) {
	#home .arrow-button-left img, #home .arrow-button-right img {
		width: 40px;
	}
}

#contact {
	position: relative;
	height: 80vh;

	background-image: url(/assets/img/background-contact-2.jpg);
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: bottom center;

	padding-left: 10%;
	padding-right: 10%;
}

@media screen and (max-width: 39.9375em) {
	#contact {
		background-size: 200% auto;
	}
}

#contact .arrow-links {
	position: relative;
}

#contact .arrow-links > img {
	position: absolute;
	transform: scaleX(-1) translateX(90px) translateY(-40px);

}

#contact a img {
	width: 50px;
	margin: 10px;
}

.email.button.success {
	font-size: 1.2em;
	color: white;
	cursor: initial;
}

.email.button.success:hover {
	background-color: #23ac9b;
}

.next-page-arrow {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: rotate(180deg) translateX(50%);

	animation-name: scrollme;
	animation-duration: 0.5s;
	animation-direction: alternate;
	animation-iteration-count: infinite;
}

@keyframes scrollme {
    from {bottom: 30px;}
    to {bottom: 40px;}
}