@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;
}

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:20%;
	top: 15%;
	height: 70%;
	width: auto;
	max-height: 70vh;
}

header #logo {
	position: absolute;
	left:5%;
	top: 5%;
	height: 25%;
	width: auto;
}

header #mobile_menu {
	display: none;
}

header nav {
	position: absolute;
	top:2%;
	right: 5%;
	height: 4vh;
	min-height: 25px;
	width: 35%;
	min-width: 576px;
	font-size: 0.9em;
}

header nav ul {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-end;
	width: 100%;
	height:100%;
}

header nav ul li {
	display: inline-block;
	color: white;
	width: 20%;
	margin-left:5%;
	height: 100%;
	text-align: center;
	cursor: pointer;
	line-height: 4vh;
}

header nav ul li:hover {
	color: #9DC88D;
	transition: all 200ms;
}

header nav ul li.btn_distinct {
	display: inline-block;
	color: black;
	background-color: #9DC88D ;
	width: 25%;
	text-align: center;
	cursor: pointer;
	line-height: 4vh;

}

header nav ul li.btn_distinct:hover {
	background-color: #aad999;
	transition: all 200ms;
}

header #hero_text {
	position: absolute;
	left:5%;
	bottom: 30%;
	color: white;
}

header #hero_text p.large {
	font-size: 2.2em;
	margin-bottom: 1%;
	font-weight: 500;
}

header #hero_text p {
	font-size: 1.1em;
	font-weight: 400;
}

main {
	width:100vw;
	padding: 2% 5%;
	background-color: white;
}

h1 {
	padding-left:1%;
	border-left: solid thick #9DC88D;
	color: black;
	font-size: 2.2em;
	margin-bottom: 1%;
}

h1.centered {
	width: 100%;
	text-align: center;
	color: black;
	font-size: 2.2em;
	margin-bottom: 1%;
	border: none;
}

.subtle_emphasis {
	color: #9DC88D;
}