* {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

body {
	margin:0;
	padding:0;
	background:#ffffff;
	font-family:"Open Sans",sans-serif;
	font-size:16px;
	color:#000000;
}
body:before {
	content:"";
	display:block;
	height:115px;
}

h1, h2, h3, h4, h5, h6 {
	margin:0;
	font-family:"Open Sans Condensed",sans-serif;
	font-weight:bold;
	line-height:1.1;
}

p {
	margin:0 0 1em 0;
}

a {
	color:inherit;
	text-decoration:none;
}

img {
	width:auto;
	max-width:100%;
}

.container {
	display:flex;
	flex-direction:row;
	width:100%;
	max-width:1343px;
	margin:0 auto;
}

header {
	position:fixed;
	left:0;
	top:0;
	z-index:10;
	background-color:#3d7c94;
	background-image:url(../images/header-bg.png);
	background-position:50% 100%;
	background-repeat:no-repeat;
	background-size:auto 100%;
	width:100%;
	padding:21px 2rem;
}
header:before {
	content:"";
	display:block;
	position:absolute;
	left:0;
	bottom:0;
	background-image:url(../images/header-bg-line.png);
	background-position:0 0;
	background-repeat:repeat;
	width:100%;
	height:7px;
}
header .container {
	align-items:center;
	gap:20px;
}
header .logo {
	flex:0 0 212px;
}
header .menu {
	display:flex;
	justify-content:flex-end;
	flex:1 1 auto;
}
header .menu ul {
	display:flex;
	gap:14px;
	margin:0;
	padding:0;
	list-style-type:none;
}
header .menu ul li {
	position:relative;
	margin:0;
	padding:0;
	font-family:"Open Sans Condensed",sans-serif;
	font-weight:bold;
	font-size:17px;
	color:#ffffff;
	text-transform:uppercase;
	letter-spacing:1px;
}
header .menu > ul > li:after {
	content:"";
	display:block;
	position:absolute;
	left:0;
	top:100%;
	z-index:1;
	width:100%;
	height:10px;
}
header .menu ul ul {
	display:none;
	flex-direction:column;
	gap:0;
	position:absolute;
	left:0;
	top:calc(100% + 10px);
	z-index:1;
	background:#ffffff;
	width:200px;
	
	-webkit-box-shadow:0 3px 5px rgba(0,0,0,.1);
	-moz-box-shadow:0 3px 5px rgba(0,0,0,.1);
	box-shadow:0 3px 5px rgba(0,0,0,.1);
}
header .menu ul li:last-child ul {
	left:auto;
	right:0;
}
header .menu ul li:hover ul {
	display:flex;
}
header .menu ul ul li {
	color:#397b92;
	line-height:1;
}
header .menu ul ul li:not(:last-child) {
	border-bottom:1px solid #424242;
}
header .menu ul ul li:hover {
	background:#397b92;
	color:#ffffff;
}
header .menu ul ul li a {
	display:block;
	padding:.5rem 1rem;
}

footer {
	background:#14171b;
}

section {
	padding:0 2rem;
}

.footer-top {
	background:#25272a;
	padding-top:4.9375rem;
	padding-bottom:5.5rem;
}
.footer-top .container {
	align-items:center;
	gap:20px;
}
.footer-top .links {
	display:flex;
	flex-direction:column;
	flex:1 1 auto;
	gap:35px;
}
.footer-top .logo {
	flex:0 0 212px;
}
.footer-top ul.menu {
	display:flex;
	flex-wrap:wrap;
	gap:0 12px;
	margin:0;
	padding:0;
	list-style-type:none;
}
.footer-top ul.menu li {
	margin:0;
	padding:0;
	font-family:"Open Sans Condensed",sans-serif;
	font-weight:bold;
	font-size:17px;
	color:#ffffff;
	text-transform:uppercase;
	letter-spacing:1px;
	white-space:nowrap;
}
.footer-top ul.social {
	display:flex;
	gap:8px;
	margin:0;
	padding:0;
	list-style-type:none;
}
.footer-top ul.social li {
	margin:0;
	padding:0;
}
.footer-top ul.social li:nth-child(4) {
	margin-left:7px;
}
.footer-top ul.social li a {
	display:block;
	background-image:url(../images/footer-social-icons.png);
	background-repeat:no-repeat;
	background-size:auto 100%;
	width:24px;
	height:24px;
	font-size:0;
}
.footer-top ul.social li:nth-child(1) a {
	background-position:0% 0%;
}
.footer-top ul.social li:nth-child(2) a {
	background-position:33.3333% 0%;
}
.footer-top ul.social li:nth-child(3) a {
	background-position:66.6667% 0%;
}
.footer-top ul.social li:nth-child(4) a {
	background-position:100% 0%;
}

.footer-copyright {
	padding-top:2.375rem;
	padding-bottom:2.375rem;
}
.footer-copyright .container {
	flex-direction:column;
}
.footer-copyright p {
	font-weight:600;
	font-size:14px;
	color:#808080;
}
.footer-copyright p:last-child {
	margin:0;
}

.home-banner {
	padding:0;
}
.home-banner img {
	width:100%;
	height:auto;
}

.home-intro {
	background:#ecf7f9;
	padding-top:6.25rem;
	padding-bottom:6.25rem;
}
.home-intro .container {
	flex-direction:column;
	align-items:center;
	gap:1rem;
	max-width:1146px;
}
.home-intro h2 {
	font-size:60px;
	color:#397b92;
	text-transform:uppercase;
	text-align:center;
}
.home-intro h3 {
	font-size:28px;
	color:#99b337;
	line-height:1.6;
	text-align:center;
}
.home-intro h3 b {
	font-weight:inherit;
	text-transform:uppercase;
}
.home-intro p {
	width:100%;
	max-width:930px;
	color:#424242;
	line-height:1.7;
	text-align:center;
}

.home-feature {
	padding-top:5.375rem;
	padding-bottom:5.75rem;
}
.home-feature .container {
	display:grid;
	grid-template-columns:repeat(2,1fr);
	grid-gap:40px;
}
.home-feature .feature {
	display:flex;
	flex-direction:column;
	background:#3d7b92;
}
.home-feature .image {
	position:relative;
	height:0;
	padding-bottom:54.64313124%;
}
.home-feature .image img {
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	object-fit:cover;
}
.home-feature .info {
	display:flex;
	flex:1 1 auto;
	justify-content:center;
	align-items:center;
	min-height:356px;
	padding:2rem;
}
.home-feature .info .box {
	display:flex;
	flex-direction:column;
	gap:1.5rem;
	width:100%;
	max-width:360px;
}
.home-feature h3 {
	font-size:40px;
	color:#ffffff;
	text-transform:uppercase;
	line-height:1;
	text-align:center;
}
.home-feature p {
	margin:0;
	color:#ffffff;
	line-height:1.7;
	text-align:center;
}
.home-feature p.btn a {
	display:inline-block;
	position:relative;
	z-index:0;
	width:100%;
	max-width:245px;
	padding:5px;
	font-family:"Open Sans Condensed",sans-serif;
	font-weight:bold;
	font-size:18px;
	color:#ffffff;
	text-transform:uppercase;
	letter-spacing:1px;
}
.home-feature p.btn a:before {
	content:"";
	display:block;
	position:absolute;
	left:0;
	top:0;
	z-index:-1;
	background:#99b437;
	width:100%;
	height:100%;
	
	-webkit-transform:skewY(-2deg);
	-moz-transform:skewY(-2deg);
	transform:skewY(-2deg);
}

.home-contact {
	padding-bottom:5.4375rem;
}
.home-contact .box {
	display:flex;
	justify-content:center;
	background:#e8f0f5;
	width:100%;
	padding:51px;
}
.home-contact p {
	position:relative;
	margin:0;
	font-family:"Open Sans Condensed",sans-serif;
	font-weight:bold;
	font-size:28px;
	color:#237e99;
	text-transform:uppercase;
	text-align:center;
}
.home-contact p:before {
	content:"";
	display:block;
	position:absolute;
	left:-130px;
	top:50%;
	background-image:url(../images/home-contact-icon.png);
	background-position:50% 50%;
	background-repeat:no-repeat;
	background-size:contain;
	width:92px;
	height:92px;
	
	-webkit-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	transform:translateY(-50%);
}

.page-top {
	padding:0;
}
.page-top img {
	width:100%;
	height:auto;
}

.home-intro.legacy {
	background:none;
}
.home-intro.legacy .container {
	max-width:870px;
}

.legacy-about {
	position:relative;
	z-index:0;
	background:#ecf7f9;
	padding-top:5.75rem;
	padding-bottom:5.75rem;
}
.legacy-about:before {
	content:"";
	display:block;
	position:absolute;
	right:0;
	top:0;
	z-index:-1;
	background:#3e7b94;
	width:calc(50vw - 463px);
	height:100%;
}
.legacy-about .container {
	max-width:1190px;
	gap:2rem;
}
.legacy-about .image {
	flex:0 0 53.6%;
	order:2;
}
.legacy-about .image img {
	-webkit-box-shadow:0 3px 5px rgba(0,0,0,.14);
	-moz-box-shadow:0 3px 5px rgba(0,0,0,.14);
	box-shadow:0 3px 5px rgba(0,0,0,.14);
}
.legacy-about .info {
	display:flex;
	justify-content:flex-start;
	align-items:center;
	flex:1 1 auto;
}
.legacy-about .info .box {
	display:flex;
	flex-direction:column;
	gap:1rem;
	width:100%;
	max-width:480px;
}
.legacy-about .info .box:before {
	content:"";
	display:block;
	align-self:center;
	background-image:url(../images/legacy-about-icon.png);
	background-position:0 0;
	background-repeat:no-repeat;
	background-size:contain;
	width:57px;
	height:50px;
	margin-bottom:5px;
}
.legacy-about h3 {
	align-self:center;
	max-width:350px;
	font-size:40px;
	color:#204450;
	text-transform:uppercase;
	line-height:1;
	text-align:center;
}
.legacy-about p {
	margin:0;
	color:#204450;
	line-height:1.7;
	text-align:center;
}
.legacy-about p.btn {
	padding-top:2rem;
}
.legacy-about p.btn a {
	display:inline-block;
	position:relative;
	z-index:0;
	width:100%;
	max-width:190px;
	padding:5px;
	font-family:"Open Sans Condensed",sans-serif;
	font-weight:bold;
	font-size:20px;
	color:#ffffff;
	text-transform:uppercase;
	letter-spacing:1px;
}
.legacy-about p.btn a:before {
	content:"";
	display:block;
	position:absolute;
	left:0;
	top:0;
	z-index:-1;
	background:#99b437;
	width:100%;
	height:100%;
	
	-webkit-transform:skewY(-2deg);
	-moz-transform:skewY(-2deg);
	transform:skewY(-2deg);
}

.legacy-about.sharing {
	background:none;
	padding-top:7.375rem;
	padding-bottom:5.875rem;
}
.legacy-about.sharing:before {
	right:auto;
	left:0;
	height:calc(100% + 20px);
}
.legacy-about.sharing .image {
	order:0;
}
.legacy-about.sharing .info {
	justify-content:flex-end;
}
.legacy-about.sharing p.btn a {
	max-width:244px;
}

.archives-about {
	padding-top:6.25rem;
	padding-bottom:8.5rem;
}
.archives-about .description {
	display:flex;
	flex-direction:column;
	gap:2.5rem;
	flex:1 1 auto;
	padding-right:5.78rem;
}
.archives-about h2 {
	font-size:60px;
	color:#397b92;
	text-transform:uppercase;
	line-height:1;
}
.archives-about h3 {
	border-width:0 0 0 1px ;
	border-style:solid;
	border-color:#99b337;
	margin-left:38px;
	padding-left:48px;
	font-size:28px;
	color:#99b337;
	line-height:1.36;
}
.archives-about p {
	color:#424242;
	line-height:1.7;
}
.archives-about .links {
	display:flex;
	flex-direction:column;
	gap:20px;
	flex:0 0 431px;
}
.archives-about .link {
	display:flex;
	flex-direction:column;
	background:#3d7a92;
}
.archives-about .image {
	position:relative;
	height:0;
	padding-bottom:57.65661253%;
}
.archives-about .image img {
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	object-fit:cover;
}
.archives-about .info {
	display:flex;
	flex-direction:column;
	justify-content:center;
	gap:15px;
	min-height:127px;
	padding:1.5rem 2rem;
}
.archives-about h4 {
	font-size:20px;
	color:#ffffff;
	text-transform:uppercase;
	line-height:1;
	letter-spacing:1px;
	text-align:center;
}
.archives-about p.btn {
	margin:0;
	text-align:center;
}
.archives-about p.btn a {
	display:inline-block;
	position:relative;
	z-index:0;
	width:100%;
	max-width:223px;
	padding:5px;
	font-family:"Open Sans Condensed",sans-serif;
	font-weight:bold;
	font-size:16px;
	color:#ffffff;
	text-transform:uppercase;
	letter-spacing:1px;
}
.archives-about p.btn a:before {
	content:"";
	display:block;
	position:absolute;
	left:0;
	top:0;
	z-index:-1;
	background:#99b437;
	width:100%;
	height:100%;
	
	-webkit-transform:skewY(-2deg);
	-moz-transform:skewY(-2deg);
	transform:skewY(-2deg);
}

.archives-reports {
	background:#edf6f9;
	padding-top:5.75rem;
	padding-bottom:13.125rem;
}
.archives-reports .container {
	flex-direction:column;
	gap:4rem;
}
.archives-reports h2 {
	font-size:60px;
	color:#397b92;
	text-transform:uppercase;
}
.archives-reports .items {
	display:grid;
	grid-template-columns:repeat(2,1fr);
	grid-gap:35px 39px;
}
.archives-reports .item {
	display:flex;
	flex-direction:column;
	background:#3c7a93;
}
.archives-reports .image {
	position:relative;
	height:0;
	padding-bottom:42.44052187%;
}
.archives-reports .image img {
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	object-fit:cover;
}
.archives-reports .info {
	display:flex;
	align-items:center;
	gap:15px 20px;
	min-height:84px;
	padding:1.5rem 2.9375rem;
}
.archives-reports p.year {
	flex:1 1 auto;
	margin:0;
	font-family:"Open Sans Condensed",sans-serif;
	font-weight:bold;
	font-size:23px;
	color:#ffffff;
	text-transform:uppercase;
	line-height:1;
	letter-spacing:1px;
}
.archives-reports p.btn {
	flex:0 0 86px;
	margin:0;
	text-align:center;
}
.archives-reports p.btn.soon {
	flex:0 0 130px;
}
.archives-reports p.btn a {
	display:inline-block;
	position:relative;
	z-index:0;
	width:100%;
	padding:5px;
	font-family:"Open Sans Condensed",sans-serif;
	font-weight:bold;
	font-size:15px;
	color:#ffffff;
	text-transform:uppercase;
	letter-spacing:1px;
}
.archives-reports p.btn a:before {
	content:"";
	display:block;
	position:absolute;
	left:0;
	top:0;
	z-index:-1;
	background:#99b437;
	width:100%;
	height:100%;
	
	-webkit-transform:skewY(-2deg);
	-moz-transform:skewY(-2deg);
	transform:skewY(-2deg);
}

.home-intro.impact p {
	text-align:left;
}
.home-intro.impact ul {
	max-width:930px;
	margin:0 0 1em 0;
	color:#424242;
	line-height:1.7;
}
.home-intro.impact a:hover {
	color:#a0ce4e;
}

.home-intro.error404 p.btn {
	padding-top:1rem;
}
.home-intro.error404 p.btn a {
	display:inline-block;
	position:relative;
	z-index:0;
	width:100%;
	max-width:190px;
	padding:5px;
	font-family:"Open Sans Condensed",sans-serif;
	font-weight:bold;
	font-size:20px;
	color:#ffffff;
	text-transform:uppercase;
	letter-spacing:1px;
}
.home-intro.error404 p.btn a:before {
	content:"";
	display:block;
	position:absolute;
	left:0;
	top:0;
	z-index:-1;
	background:#99b437;
	width:100%;
	height:100%;
	
	-webkit-transform:skewY(-2deg);
	-moz-transform:skewY(-2deg);
	transform:skewY(-2deg);
}

@media (max-width:1279px) {
	.legacy-about:before {
		width:21vw;
	}
}

@media (max-width:1023px) {
	body:before {
		height:94px;
	}
	header .logo {
		flex:0 0 150px;
	}
	.footer-top .logo {
		flex:0 0 150px;
	}
	.home-intro h2 {
		font-size:48px;
	}
	.home-feature .container {
		grid-gap:2rem;
	}
	.home-feature h3 {
		font-size:36px;
	}
	.home-contact p {
		max-width:350px;
	}
	.legacy-about h3 {
		font-size:36px;
	}
	.archives-about h2 {
		font-size:48px;
	}
	.archives-about h3 {
		margin-left:1rem;
		padding-left:1rem;
	}
	.archives-about .description {
		flex:0 0 50%;
		padding-right:2rem;
	}
	.archives-about .links {
		flex:0 0 50%;
	}
	.archives-reports .items {
		grid-gap:1rem;
	}
	.archives-reports h2 {
		font-size:48px;
	}
	.archives-reports .info {
		flex-direction:column;
		align-items:stretch;
	}
	.archives-reports p.year {
		text-align:center;
	}
	.archives-reports p.btn {
		flex:1 1 auto;
		text-align:center;
	}
	.archives-reports p.btn a {
		width:100%;
		max-width:86px;
	}
}

@media (max-width:767px) {
	body:before {
		height:56px;
	}
	.container {
		flex-direction:column;
	}
	header {
		padding-top:10px;
		padding-bottom:10px;
	}
	header .container {
		flex-direction:row;
	}
	header .logo {
		flex:0 0 80px;
	}
	header .menu {
		flex-direction:column;
	}
	header .menu ul {
		flex-direction:column;
		align-items:flex-end;
		gap:0;
	}
	header .menu ul li {
		font-size:13px;
	}
	header .menu ul li:nth-child(even) {
		display:none;
	}
	header .menu > ul > li:after {
		height:3px;
	}
	header .menu ul ul {
		align-items:stretch;
		top:calc(100% + 3px);
		left:auto;
		right:0;
	}
	header .menu ul ul li:nth-child(even) {
		display:block;
	}
	.footer-top {
		padding-top:4rem;
		padding-bottom:4rem;
	}
	.footer-top .container {
		gap:2rem;
	}
	.footer-top .links {
		gap:2rem;
		align-items:center;
	}
	.footer-top .logo {
		flex:1 1 auto;
		order:-1;
		max-width:150px;
	}
	.footer-top ul.menu {
		flex-direction:column;
	}
	.footer-top ul.menu li {
		text-align:center;
	}
	.footer-top ul.menu li:nth-child(even) {
		display:none;
	}
	.footer-copyright p {
		text-align:center;
	}
	.home-intro {
		padding-top:4rem;
		padding-bottom:3rem;
	}
	.home-intro h2 {
		font-size:36px;
	}
	.home-intro h3 {
		font-size:20px;
	}
	.home-feature {
		padding-top:4rem;
		padding-bottom:4rem;
	}
	.home-feature .container {
		grid-template-columns:1fr;
		max-width:650px;
	}
	.home-feature .info {
		min-height:0;
	}
	.home-feature h3 {
		font-size:32px;
	}
	.home-contact {
		padding-bottom:4rem;
	}
	.home-contact .box {
		padding:2rem;
	}
	.home-contact p {
		font-size:20px;
	}
	.home-contact p:before {
		position:relative;
		left:auto;
		top:auto;
		width:64px;
		height:64px;
		margin:0 auto 1rem auto;
		
		-webkit-transform:none;
		-moz-transform:none;
		transform:none;
	}
	.legacy-about {
		padding-top:4rem;
		padding-bottom:4rem;
	}
	.legacy-about:before {
		display:none;
	}
	.legacy-about .container {
		max-width:637px;
	}
	.legacy-about .image {
		order:0;
	}
	.legacy-about .info {
		justify-content:center;
	}
	.legacy-about h3 {
		font-size:32px;
	}
	.legacy-about.sharing {
		padding-top:4rem;
		padding-bottom:4rem;
	}
	.legacy-about.sharing .info {
		justify-content:center;
	}
	.archives-about {
		padding-top:4rem;
		padding-bottom:4rem;
	}
	.archives-about .container {
		gap:3rem;
	}
	.archives-about h2 {
		font-size:36px;
	}
	.archives-about h3 {
		font-size:20px;
	}
	.archives-about .description {
		flex:1 1 auto;
		padding-right:0;
	}
	.archives-about .links {
		align-self:center;
		flex:1 1 auto;
		width:100%;
		max-width:431px;
	}
	.archives-reports {
		padding-top:4rem;
		padding-bottom:4rem;
	}
	.archives-reports .container {
		max-width:652px;
		gap:2rem;
	}
	.archives-reports .items {
		grid-template-columns:1fr;
	}
	.archives-reports h2 {
		font-size:36px;
		text-align:center;
	}
}