@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500&display=swap');

* {
	padding:0;
	margin:0;
	font-family: 'IBM Plex Sans', sans-serif;
	box-sizing: border-box;
}

html {
	width:100%;
}

header {
	position: relative;
	width:100vw;
	height:70vh;
	background-image: url("/images/hero.webp");
	background-size: cover;
	background-repeat: no-repeat;
}

header #hero {
	position: absolute;
	right:5%;
	bottom: 5%;
	height: 30%;
	width: auto;
	max-height: 70vh;
}

header #logo {
	position: absolute;
	left:5%;
	top: 5%;
	height: 12%;
	width: auto;
	display: inline-block;
}

header nav {
	display: none;
}

header #mobile_menu {
	position: absolute;
	right:5%;
	top: 5%;
	height: 12%;
	width: auto;
	display: inline-block;
	cursor: pointer;
}

header #hero_text {
	position: absolute;
	left:5%;
	top: 25%;
	color: white;
	width:80%;
}

header #hero_text p.large {
	font-size: 2.2em;
	margin-bottom: 5%;
	font-weight: 500;
	line-height: 100%;
}

header #hero_text p {
	font-size: 1.1em;
	font-weight: 400;
	line-height: 150%;
}

main {
	width:100vw;
	padding: 2% 5%;
	background-color: white;
}

h1 {
	padding-left:1%;
	border-left: solid thick #9DC88D;
	color: black;
	font-size: 1.5em;
	margin-bottom: 5%;
}

h1.centered {
	width: 100%;
	text-align: center;
	color: black;
	font-size: 1.5em;
	margin-bottom: 5%;
	border: none;
}

.subtle_emphasis {
	color: #11544a;
	font-weight: 500;
}