@import url("https://fonts.googleapis.com/css?family=Montserrat:400,400i,700");
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Montserrat", sans-serif;
}
html {
	--blur: 0;
}
.hero-container {
	overflow: hidden;
}
.hero-container .hero-image {
	width: 100%;
	height: 90vh;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}
.hero-container .hero-image img {
	width: 100vw;
	height: 100vh;
	transform: translateX(-1rem);
	object-fit: cover;
	object-position: center;
	filter: blur(var(--blur));
}
@media(max-width: 960px) {
	.hero-container .hero-image img {
		width: 100vw;
		height: 100vh;
		transform: translateX(-1rem);
		object-fit: cover;
		object-position: 40% 0;
		filter: blur(var(--blur));
	}
}
.hero-container .hero-overlay {
	min-height: 90vh;
	background-color: rgba(0, 0, 0, 0.1);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex-direction: column;
}
.hero-container .hero-overlay h1 {
	font-size: 4rem;
	color: #fff;
}
.hero-container .hero-overlay h1 span {
	font-size: 50%;
	position: relative;
	bottom: 10px;
}
@media(max-width: 960px) {
	.hero-container .hero-overlay h1 {
		font-size: 2rem;
	}
	.hero-container .hero-overlay h1 span {
		font-size: 50%;
		bottom: 5px;
	}
}
main {
	max-width: 1100px;
	margin: .5rem auto;
}
@media(min-width: 768px) {
	main {
		margin: 5rem auto;
	}
}
main {
	scroll-snap-type: mandatory;
}
main h1, main h2 {
	margin-bottom: 1.125rem;
}
main p {
	line-height: 1.6;
	font-size: 1.125rem;
	margin-bottom: 1.125rem;
}
main li {
	font-size: 1.125rem;
	margin-bottom: 1.125rem;
}
.row {
	padding: 20px;
	scroll-snap-align: start;
}
@media(min-width: 960px) {
	.row {
		display: flex;
		align-items: center;
		transition: .2s all linear;
	}
}
.row.reverse {
	flex-direction: row-reverse;
	background: #f2f2f2;
	border-radius: 10px;
	margin: 0 20px;
	transition: .2s all linear;
}
.image-column {
	margin-bottom: 20px;
}
@media(min-width: 960px) {
	.image-column {
		width: 50%;
		padding-right: 20px;
		margin-bottom: 0;
	}
}
.image-column img {
	width: 100%;
	max-width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 10px;
}
.text-column {
	padding: 20px;
}
@media(min-width: 960px) {
	.text-column {
		width: 50%;
		padding-left: 20px;
	}
}
.column-fw {
	width: 100%;
	padding-left: 0;
}
.cta-button {
	padding: 10px 20px;
	background-color: #ff007f;
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
	text-decoration: none;
}
