html {
	box-sizing: border-box;
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

body {
	background: #ffffff;
	margin: 0;
}

@font-face {
	font-family: "canada-type-gibson";
	src: url("https://use.typekit.net/af/af6121/0000000000000000774d5006/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/af6121/0000000000000000774d5006/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"), url("https://use.typekit.net/af/af6121/0000000000000000774d5006/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
	font-display: swap;
	font-style: normal;
	font-weight: 400;
	font-stretch: normal;
}

@font-face {
	font-family: 'monument-extended-regular';
	font-style: normal;
	font-weight: 400;
	src: url("fonts/PPMonumentExtended-Regular.woff") format("woff");
	font-display: swap;
}

h1, h2 {
	font: inherit;
	font-family: "monument-extended-regular", Helvetica, sans-serif;
	font-size: 100%;
	vertical-align: baseline;
	margin: 0;
	text-rendering: optimizeLegibility;
}

p {
	font: inherit;
	font-family: "canada-type-gibson", Arial, sans-serif;
	font-size: 100%;
	vertical-align: baseline;
	margin: 0;
}

h1 {
	color: #ffffff;
	font-size: 48px;
	grid-column: 1 / 12;
	letter-spacing: 0.32px;
	line-height: 110%;
	margin-bottom: 2rem;
}

h2 {
	color: #172734;
	font-size: 32px;
	letter-spacing: 0.32px;
	margin-bottom: 2.5rem;
	max-width: 750px;
}

p {
	color: #172734;
	font-weight: normal;
	font-style: normal;
	font-size: 18px;
	margin-bottom: 2rem;
	line-height: 180%;
}

.show-for-sr {
	position: absolute !important;
	left: -10000px;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
	opacity: 0;
}

.header {
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mon-row {
	margin: 0 auto;
	max-width: 1025px;
	padding: 0 1rem;
}

.hero {
	align-items: end;
	background-image: linear-gradient(0deg, rgba(23, 39, 52, 0.24) 54.82%, rgba(23, 39, 52, 0.00) 80.55%), url('images/hero.jpg');
	background-position: center right 38%;
	background-repeat: no-repeat;
	background-size: cover;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-gap: 1rem;
	margin-bottom: 5rem;
	min-height: 625px;
	padding: 0 1rem 2rem 1rem;
}

.hero__grid {
	padding: 0 1rem 10rem 0;
}

main {
	margin-bottom: 5rem;
}

.button-container {
	margin-top: 3.5rem;
}

.button {
	background-color: #E74B55;
	border-radius: 8px;
	color: #ffffff;
	display: block;
	font-family: "canada-type-gibson", Arial, sans-serif;
	font-weight: 600;
	font-size: 20px;
	padding: 1.4rem 0;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.3s ease-in-out;
	width: auto;
}

.button:hover,
.button:focus {
	background-color: #172734;
	color: #ffffff;
}

.footer {
	background-color: #172734;
	padding: 4rem 0 3rem;
}

.footer__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2.5rem;
}

.footer__social {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.8rem;
}

.footer__button {
	background-color: transparent;
	border: 0;
}

.footer__button:hover,
.footer__button:focus {
	cursor: pointer;
}

.footer__legal {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	max-width: 700px;
}

.footer__legal p {
	color: #ffffff;
	font-size: 14px;
	text-align: center;
	margin-bottom: 0;
}

/* medium */
@media only screen and (min-width: 768px) and (max-width: 1023px) {

	main {
		margin-bottom: 5rem;
	}

	h1 {
		font-size: 60px;
		grid-column: 1 / 11;
	}

	.hero {
		/*background-position: center center;*/
		padding: 5.5rem 1rem 2rem 1rem;
	}

	.button-container {
		display: flex;
		justify-content: center;
	}

	.button {
		max-width: 224px;
		width: 100%;
	}
}

/* large */
@media only screen and (min-width: 1024px) {

	main {
		margin-bottom: 7.5rem;
	}

	h1 {
		font-size: 76px;
		grid-column: 1 / -1;
		text-align: center;
	}

	h2 {
		font-size: 48px;
		text-align: center;
		margin: 0 auto 2rem;
		letter-spacing: 0.48px;
		line-height: 130%;
	}

	p {
		margin-left: auto;
		margin-right: auto;
		max-width: 522px;
	}

	.hero {
		background-position: top center;
		padding: 0 1rem 3rem 1rem;
		margin-bottom: 7rem;
	}

	.button-container {
		display: flex;
		justify-content: center;
	}

	.button {
		max-width: 224px;
		width: 100%;
	}
}

/* xlarge */
@media only screen and (min-width: 1200px) {
	h1 {
		line-height: 110%;
		max-width: 1075px;
		margin-left: auto;
		margin-right: auto;
	}

	h2 {
		margin-bottom: 2.5rem;
	}

	.hero {
		display: flex;
		min-height: 760px;
	}
}

@media only screen and (min-width: 1400px) {
	h1 {
		font-size: 96px;
	}
}
