*, ::before, ::after {
	box-sizing: border-box;
	border-width: 0;
	border-style: solid;
}

:root {
	--main-bg-color: #fff;
	--main-color: #112C3A;
	--green: #e0feb7;
	--gray: #4c4c4e;
	--button-green: #bff848;
	--button-green-hover: #91d208;
	--button-blue: #4e6d99;
	--button-blue-hover: #344966;
}

html {
	line-height: 2.4em;
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
	font-synthesis: none; /* Optional hardening: avoid faux bold/italic */
}

body   {
	margin: 0;
	padding: 0;
	font-size: 120%;
	line-height: 2.1rem;
	color: var(--main-color);
	text-align: left;
	font-family: Roboto, Verdana, sans-serif; /*system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;*/
	font-weight: 300;
	background-color: var(--main-bg-color);
	
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-variant-ligatures: none;
	-webkit-font-variant-ligatures: none;
	font-feature-settings: "liga" 0;
	-webkit-font-feature-settings: "liga" 0;
}

body.is-phone {
	font-size: 108%;
	line-height: 1.8rem;
}

h1, h2, h3, h4, h5, p, form {
	margin: 0;
	padding: 0;
}

h1,
.like-h1 {
	font-weight: 600;
	font-size: clamp(30px, 4vw, 36px);
	line-height: 1.15em;
	padding-bottom: 8px;
}

h2 {
	font-size: clamp(1.3rem, 2vw, 1.5rem);
	font-weight: 600;
	padding-bottom: 10px;
}

h3 {
	font-size: 1.5rem;
	font-weight: 600;
	padding-bottom: 23px;
}

h4 {
	font-weight: 600;
}

b,
strong {
	font-weight: 600;
}

i,
em {
	font-style: italic;
}

p {
	padding-bottom: 1.1em;
}

a:link,
a:visited,
a:active {
	text-decoration: none;
	transition: color .2s ease-in-out;
	position: relative;
	display: inline-block;
}

a:hover {
	color: var(--pink);
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	margin: 0;
}

img,
a img {
	border-style: none;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	border-radius: 4px;
}

.button,
a.button,
body.is-mobile .button:link,
body.is-mobile .button:visited,
body.is-mobile .button:hover,
body.is-mobile .button:active,
body.is-mobile a.button:hover {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: var(--button-green);
	color: var(--white);
	text-transform: uppercase;
	font-size: 1rem;
	margin: 0 auto;
	border-radius: 6px;
	padding: 16px 40px;
	min-width: 200px;
	font-weight: 600;
	cursor: pointer;
	position: relative;
	line-height: 1.3rem;
	letter-spacing: .5px;
	transition: background-color .3s ease;
}

.button:hover {
	background-color: var(--button-green-hover);
}

.button.blue,
a.button.blue,
body.is-mobile .button.blue:link,
body.is-mobile .button.blue:visited,
body.is-mobile .button.blue:hover,
body.is-mobile .button.blue:active,
body.is-mobile a.button.blue:hover {
	background-color: var(--button-blue);
	color: var(--main-bg-color);
}

.button.blue:hover {
	background-color: var(--button-blue-hover);
}

/* Prevent "auto zoom" in iOS when an input is "focused" */
@supports (-webkit-overflow-scrolling: touch) {
	input {
		font-size: 16px;
	}
}

/* ===== MAIN WRAPS ===== */

#wrap-outer {
	text-align: left;
	background-color: var(--main-bg-color);
}

#wrap {
	margin: 0 auto;
}

/* ===== HEADER ===== */

#header-wrap {
	/*padding-top: 30px;*/
	text-align: center;
}

#header-outer {
	background-color: var(--green);	
	/*margin-top: 30px;*/
}

#header {
	padding: 0;
	max-width: 1500px;
	margin: 0 auto;
	justify-content: space-between;
	align-items: center;
}

#header a:link,
#header a:visited,
#header a:active {
	padding: 1.25rem 1.5rem;
	background-color: #b5df7e;
	color: var(--main-color);
}

#header a:hover {
	background-color: #b5df7e;
}

/* ===== NAVIGATION ===== */

#header nav {
	display: flex;
	justify-content: center;
	gap: 40px;
/*	padding: 20px 20px 17px;*/
	font-size: 1.3rem;
	line-height: 1.5rem;
}

/* ===== MAIN ===== */

#main {
	padding: clamp(35px, 3vw, 50px) 0 70px;
/*	background-color: var(--main-bg-color);*/
}

#main > section {
	margin-bottom: 80px;
	position: relative;
}

#main > section.sec-green {
	background-color: var(--green);
}

#main > section:last-child {
	margin-bottom: 0;
}

#main > section > p:last-child {
	padding-bottom: 0;
}

#main > section > div,
#footer-wrap section > div {
	padding: 0 100px;
	max-width: 1500px;
	margin: 0 auto;
}

/* ===== FOOTER ===== */

#footer-wrap {
	background-color: var(--gray);
	padding-top: 40px;
	/*font-size: .75em;*/
}

#footer-upper,
#footer-lower {
	color: var(--main-bg-color);
	text-align: center;
}

#footer-upper h3 {
	font-size: 2rem;
}

#contact-info {
	padding-bottom: 40px;
}

#contact-info > div:first-of-type {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-bottom: 30px;
}

#contact-info a {
	font-weight: 600;
	white-space: nowrap;
}

#contact-info a:link,
#contact-info a:visited,
#contact-info a:active {
	color: var(--button-green);
}

#contact-info a:hover {
	text-decoration: underline;
}

#contact-address {
	position: relative;
}

#contact-address::before {
	position: absolute;
	content: '';
	width: 100%;
	max-width: 200px;
	height: 1px;
	background-color: var(--green);
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	opacity: .5;
}

#footer-lower {
	background-color: #333334;
	padding: 40px 0;
}

#fine-print {
	font-size: .9rem;
	line-height: 1.6;
	opacity: .6;
}

#copyright {
	background-color: #0d0d0d;
	padding: 20px 0;
}

#copyright > div {
	font-size: .9rem;
	opacity: .45;
	text-align: center;
	color: var(--main-bg-color);
}

/* ===== MEDIA QUERIES ===== */

@media screen and (max-width: 900px) {
	#main > section > div,
	#footer-wrap section > div {
		padding: 0 30px;
	}
	
	#main #sec-4 > div > div > div {
		padding-left: 0;
	}

	#main #sec-6 img {
		float: none;
		margin: 0 auto 20px;
		display: block;
	}
}

@media screen and (max-width: 500px) {
	h1 {
		display: flex;
		flex-direction: column;
		gap: 8px;
		margin-bottom: 22px;
	}
	
	h1 span > span {
		display: none;
	}
	
	#main #sec-4 > div > div {
		padding: 20px;
	}
	
	#contact-info > div:first-of-type {
		flex-direction: column;
		gap: 0;
	}
}