@charset "UTF-8";
/* CSS Document */

body {
	font-family: helvetica, sans-serif;
	background-color: white;
	font-size: 20px;
	margin: 0;
}

p {
	line-height: 150%;
}

.super {
	vertical-align: super;
	font-size: .7em;
}

.content {
	max-width: 894px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 4%;
}

#header {
	max-width: 1200px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto 8%;
}

#logo {
	width: 12%;
}

#logo img {
	width: 100%;
	margin: 0;
}

.nav {
	display: flex;
	transition-duration: 0.3s;
}

.nav li {
	display: block;
	padding: 1em 1.5em;
	list-style-type: none;
	font-size: .65em;
	color: #535353;
	text-align: center;
	white-space: nowrap;
}

.nav a {
	color: #535353;
	text-decoration: none;
}

.nav a:hover {
	color: #1571B0;
	border-bottom: solid .2em;
	padding: 8px 0;
}

#nav-contact {
	transition-duration: 0.3s;
}

#nav-contact a {
	color: #545454;
	background-color: #D9D9D9;
	padding: 1em 1.5em;
}

#nav-contact a:hover {
	text-decoration: none;
	border-bottom: none;
	color: white;
	background-color: #3D3D3D;
}

.button a {
	background-color: white;
	color: #1571B0;
	text-decoration: none;
	font-size: .7em;
	border: 2px solid #1571B0;
	padding: 8px 12px;
	transition-duration: 0.3s;
}

.button a:hover {
	background-color: #1571B0;
	color: white;
	border: 2px solid white;
}

.material-symbols-outlined {
	vertical-align: middle;
	margin-bottom: 4px;
}

/* Headings */

h1 {
	font-weight: 400;
	font-size: 2.5em;
	color: #1571B0;
}

h2 {

}

h3 {
	font-weight: bold;
	text-transform: uppercase;
	font-size: .6em;
	letter-spacing: .1em;
}

h4 {
	font-weight: 400;
	text-transform: uppercase;
	font-size: .6em;
	letter-spacing: .1em;
}

h5 {
	text-align: center;
	margin: 4% 3% 0;
}

/* title section */

.author {
	font-size: .65em;
	font-weight: 400;
	line-height: 140%;
}

#whitepaper {
	background-color: #1571B0;
	color: white;
	display: inline-block;
	padding: 10px 8px;
	font-weight: 500;
	text-align: center;
}

.flexbox {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}


.flexbox>* {
	/* margin-right: 10px; */
}

.left {
	width: 47%;
	padding-right: 3%;
}

.right {
	width: 47%;
	padding-left: 3%;
}

.right-title {
	padding-top: 50px;
}

#commission {
	color: #878787;
	font-size: .6em;
	font-style: italic;
}

/* Introduction Section */

#intro {
	background-color: #D9D9D966;
	padding: 3% 0% 1px;
	margin: 0;
}

.blue {
	color: #1571B0;
}

.quote-right {
	background-image: url("../media/USA-map.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	padding: 7% 0% 0% 2%;
}

.intro-quote {
	color: #1571B0;
	font-size: .8em;
}

.intro-right {
	margin: 40px 0px;
	vertical-align: bottom;
	font-size: 1em;
}

#quote-large {
	font-weight: 700;
	font-size: 3em;
}


/* Findings Section */

#findings {
	padding: 3% 0% .5%;
}

.care-programs {
	display: flex;
	justify-content: space-around;
	flex-flow: row wrap;
	padding: 0;
	margin: 0;
}

.care-programs li {
	list-style-type: none;
	display: block;
	font-size: .75em;
	text-align: center;
	margin: 13px .3%;
	padding: 0;
	line-height: 1.1em;
}

.care-programs img {
	width: 100px;
	margin: 0 0 -10px;
}

.care2 img {
	width: 55px;
	margin: 8px 30%;
}

.care-narrow {
	width: 28%;
}

.care-wide {
	width: 40%;
}

/*  Case Studies Section */

#case-studies {
	background-color: #1571B0;
	color: white;
	padding: 3% 0% .5%;
}

#case-studies ul {
	font-size: .8em;
}

#case-studies li {
	margin-bottom: 12px;
}

/* Responsive layout */
@media screen and (max-width: 800px ){
	
	#header {
		width: 100%;
		flex-direction: column;
	}	
	
	.nav {
		flex-direction: row;
		flex-wrap: wrap;
		padding: 0;
		justify-content: center
	}
	
	.nav li{
		padding: 1em .5em;
		font-size: .7em;
	}
	
	.flexbox {
		flex-direction: column;
	}
	
	.content {
		width: 94%;
		padding: 0 2%;
		margin: 0 0;
	}
	
	
	#logo {
		width: 30%;
	}
	
	.button {
		margin: 10% auto;
		text-align: center;
	}
	
	.button a {
		font-size: .8em;
	}
	
	.flexbox {
		flex-direction: column;
	}
	
	.left {
		width: 100%;
		padding: 0;
	}
	
	.right {
		width: 100%;
		padding: 0;
	}
	
	#commission {
		text-align: center;
	}
	
	.quote-right {
		text-align: center;
	}
	
	.intro-quote {
		font-size: .7em;
	}
	
	#quote-large {
		font-size: 3em;
	}
}

footer {
	font-size: .6em;
	color: #222222;
	max-width: 894px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 4%;
}

footer a {
	color: #222222;
	transition: 0.2s ease;
}

footer a:hover {
	text-decoration: none;
}

#footer-logo {
	margin-top: 4%;
	margin-bottom: 2%;
}