*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	min-height: 100vh;
	font-family: sans-serif;
}

html {
	scroll-behavior: smooth;
}


p { 
	font-size: 1.125rem;
	font-weight: normal;
	line-height: 1.375em;
	display: block;
    margin-block-start: 1rem;
    margin-block-end: 1rem;
    margin-inline-start: 0;
    margin-inline-end: 0;
    unicode-bidi: isolate;
}

img {
	margin: auto;
	display: block;
	max-width: 100%;

}

h1 {
	font-size: 2rem;
}

h2 {
	text-align: left;
	font-size: 1.5rem;
}

h3 {
	text-align: center;
	font-size: 1.375rem;
	font-weight: 600;
}

ol {
	margin-top: .5rem;
	list-style: decimal;
}

ul {
	margin-top: .5rem;
	margin-bottom: .375rem;
	padding: left 1.5rem;
}

li {
	padding-left: 1rem;
	font-size: 1.125rem;
	margin-left: 40px;
	line-height: 1.25;
}

button {
	font-size: 1rem;
	font-weight: bold;
	background-color: #D97C0B;
	Color:  #ffffff;
	float: left;
	padding: .625em;
	width: auto;
  	height: auto;
	display: block;
	margin: auto;
	border-color: #ccc;
	border-radius: 0px;
	border: none;
	cursor: pointer;
}

button:hover {
	background-color: #a86009;
}

a {
	text-decoration: none;
	background-color: transparent;
	color: #62853A;
	cursor: pointer;
	font-size: 1.125rem;
	font-weight: 600;
}

a:hover{
	color: #D97C0B;
}

em {
	color: #0559a6;
	font-size: 1.125em;
	font-weight: bold;
	font-style: normal;
}



/*Main Header & Nav Section*/

.menu_bar {
	background-color: white;
	position: sticky;
	top: 0;
	padding: 1.25rem 7%;
	box-shadow: 0px 5px 3px 0px #f1f1f1;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	font-size: 1.875rem;
	font-weight: 600;
}

.menu_bar ul {
	list-style: none;
	display: flex;
}

.menu_bar ul li {
/*	padding: .625rem;*/
	position: relative;
	margin-left: 1rem;
}

.menu_bar ul li a {
	color: #62853A;
	text-decoration: none;
	font-size: 1.125rem;
	transition: all 0.0s
}

.menu_bar ul li a:hover {
	color: #D97C0B;
}

.dropdown_menu {
	display: none;
}

.menu_bar ul li:hover .dropdown_menu {
	display: block;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: #f0f0f0;
	padding: .875rem;
}

.menu_bar ul li:hover .dropdown_menu ul {
	display: block;
	margin: 0;
}

.menu_bar ul li:hover .dropdown_menu ul li {
	width: 6.5rem;
	padding: .5rem 0;
	margin-left: 0;
}

.menu_bar img {
	height: 2.875rem;
	width: auto;
}



/*Menu Sidebar*/

.menu_sidebar {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	width: 15.625rem;
	z-index: 999;
	background-color: white;
	box-shadow: 0px 5px 10px 3px #f1f1f1;
	display: none;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.menu_sidebar ul {
	width: 100%;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	padding: .625rem;
}

.menu_sidebar li, .menu_sidebar a {
	width: 100%;
	padding: .625rem;
}

.menu_sidebar_button {
	display: none;
}

.menu_sidebar_dropdown {
	margin-bottom: -.625rem;
	padding-bottom: 0;
}



/*Indent main body content excuding header & footer*/

.body_content {
	padding-left: 7%;
	padding-right: 7%;
}

.body_content_bios {
	padding-left: 8%;
	padding-right: 8%;
	background-image: url(background_bios.png);
	background-repeat: repeat;
}

.body_content_solutions {
	padding-left: 7%;
	padding-right: 7%;
	background-image: url(background_solutions.png);
	background-size: 100%;
	background-repeat: repeat;
	background-position: center;
}

.body_content_contact {
	padding-left: 8%;
	padding-right: 8%;
	background-color: #c0e0fd;
}


/*Main Landing Section*/

.landing_page {
	position: relative;
	text-align: left;
}

.lp_title_verbiage {
	position: absolute;
	top: 4%;
	left: 7%;
	max-width: 32rem;
	padding: 1.375rem;
	background-color: rgb(255,255,255, 0.6);
}

.lp_title_verbiage p {
	font-size: 1.25rem;
}

.lp_title_alt {
	display: none;
}

.lp_verbiage_alt {
	display: none;
}

.contact_button {
	color: white;
	font-size: 1.25rem;
}



/*Solution Section - Main Page*/

.solution_row_mp {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
	margin-top: 2rem;
}

.solution_column_mp {
	flex: 1;
	flex-direction: column;
}

.solution_box_mp_title {
	flex: 1;
	margin-bottom: 1.5rem;
	height: 3.75rem;
	vertical-align: baseline;
	align-content: flex-end;
}

.solution_box_mp_title h3 {
	font-weight: 500;
}

.solution_box_mp {
	flex: 1;
/*	margin-bottom: 2rem;*/
}

.solution_box_mp img {
	width: 325px;
	margin: auto;
	justify-content: center;
	box-shadow: 12px 12px 10px 0px #B0B0B0;
}

.solution_box_mp button {
	padding: .5rem;
	float: none;
}

.solution_box_mp a {
	color: white;
	font-size: 1rem;
}



/*Solution Section - Individual Pages*/

.solution {
	padding-top: 3rem;
	padding-bottom: 2rem;
}

.solution_button_row {
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	margin-top: 4rem;
}

.solution_row_text_left {
	display: flex;
	flex-wrap: wrap;
}

/*.solution_row_text_right {
	display: flex;
	flex-wrap: wrap;
}*/

.solution_box {
	flex: 1;
	padding-top: 2.125rem;
	/*padding-left: 1.5rem;
	padding-right: 1.5rem;*/
	color: black;
	font-weight: bold;
}

.solution_box ul {
/*	list-style-type:'\2713';*/
	list-style-image:url("espulicon.svg");
	font-weight: normal;
}

.solution_box li {
	padding-left: .25rem;
}

.solution_box p {
	margin: 0;
}

.solution_button_left button {
	margin-right: 1.25rem;
}

.solution button {
	padding: .5rem;
	cursor: pointer;
}

.solution a {
	color: white;
	font-size: 1rem;
}

.solution_endorsement {
	margin-top: 3rem;
	text-align: center;
	padding: 2rem;
	background-color: #043e74;
	box-shadow: 0 50px 50px rgba(0, 0, 0, 0.3);
}

.solution_endorsement h3 {
	color: white;
	font-weight: 500;
}

.solution_endorsement p {
	color: white;
	font-style: italic;
	margin-bottom: 0;
}

.solution_top_5 {
	margin-top: 6rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
	text-align: center;
}

.solution_top_5 h1 {
	font-size: 40px;
	font-weight: 800;
	color: #05a6a3;
	margin-bottom: 3rem;
}

.solution_top_5 ul {
	list-style-image:url("espulicon.svg");
}

.solution_top_5 li {
	display: list-item;
	font-size: 1.125rem;
	text-align: left;
	padding-left: .25rem;
}

.solution_top_5 li::marker {
	font-size: 24px;
	font-weight: bold;
	color: #043e74;
}

.solution_top_5 li:last-child {
	margin-bottom: .875rem;
}

.solution_top_5 span {
	font-size: 24px;
	font-weight: bold;
	color: #043e74;
}



/*Section Haeders*/

.section {
	margin-top: 6rem;
	scroll-margin-top: 7rem;
	position: relative;
}

.section p {
	font-size: 1.25rem;
}

.section span {
	color: #0559a6;
}



/*Team Bios Main Page*/

.team_row_mp {
	display: flex;
	flex-wrap: wrap;
	margin-top: 3rem;
	gap: 3rem;
	justify-content: center;
}

.team_row_inner_mp {
	display: flex;
	flex-direction: column;
	max-width: 325px;
	border: 1px solid #E0E0E0;
	box-shadow: 12px 12px 10px 0px #D0D0D0;
	background-color: #FAFCFF;
}

.team_box_mp {
	text-align: left;
	padding: 1rem;
}

.team_box_mp img {
	width: 200px;
	margin: 0;
}

.team_row_mp h3 {
	text-align: left;
}

.team_row_mp p {
	margin-top: 0;
	margin-bottom: 1.25rem;
	font-size: 1.125rem;
}

#linkedin_mp {
	max-width: 21px;
	margin-bottom: 1rem;
	align-items: left;
	background-color: white;
}



/*Team Bios Individual Pages*/

.bio_row {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
}

.bio_row_left {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
}

.bio_box_text {
	flex: 1;
	justify-content: center;
	align-items: center;
	padding-left: 3rem;
	padding-right: 3rem;
	margin-top: 3rem;
	margin-bottom: 3rem;
}

.bio_box_text span {
	font-style: italic;
}

.bio_box_headshot {
	flex: 1;
	justify-content: center;
	align-items: center;
	padding-left: 3rem;
	padding-right: 3rem;
	margin-top: 3rem;
	margin-bottom: 3rem;
}

.bio_box_headshot img {
	max-width: 435px;
}

#linkedin_bio {
	display: inline;
	background-color: white;
}

.bio_box_text h3 {
	text-align: left;
	font-size: 1.5rem;
}

.bio_box_text button {
	padding: .5em;
	margin-right: .875rem;
	height: 34px;
}



/*Partner Bios*/

.partner_row {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	margin-top: 3.625rem;
	margin-bottom: 4rem;
	gap: 4rem;
}

.partner_column {
	flex: 1;
	flex-direction: column;
	padding: 1.25rem;
	box-shadow: 12px 12px 25px 0px #e0e0e0, -12px -12px 25px 0px #e0e0e0;
}

.partner_box_top {
	flex: 1;
	text-align: center;
	/*padding-left: 1.25rem;
	padding-right: 1.25rem;*/
	margin-top: 1.625rem;
}

.partner_box_bottom {
	flex: 1;
	text-align: center;
	/*padding-left: 1.25rem;
	padding-right: 1.25rem;
	padding-bottom: 1.25rem;*/
}

.partner_logos {
	height: 3.75rem;
	width: auto;
}

.partner_bios_row p {
	text-align: center;
}



/*Endorsements*/

.endorsement_row {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 2rem;
	margin-top: 3rem;
	margin-bottom: 2rem;
	overflow: hidden;
}

.endorsement_column {
	flex: 1;
	flex-direction: column;

}

.endorsement_box_top {
	text-align: center;
	align-content: center;
	color: white;
	padding: 1.5rem 1.5rem .5rem 1.5rem;
	background-color: #A65205;
	position: relative;
}

.endorsement_box_bottom {
	text-align: center;
	color: white;
	padding: .1rem 1.5rem 1rem 1.5rem;
	background-color: #A65205;
	height: 100%;
}

.endorsement_person p {
	font-style: italic;
	font-weight: 700;
}

.endorsement_box_top img {
	max-width: 200px;
}

.endorsement_box_top h3 {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}


/*Contact Us Section*/


.contact {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 4rem 0;
}

.contact_esp_info {
	flex: 1;
	max-width: 450px;
	margin: auto 0 auto 0;
	background-color: #03315c;
	color: #fff;
	padding: 2rem 2rem 2rem 3rem;
	box-shadow: 0 50px 50px rgba(0, 0, 0, 0.5);
	z-index: 1000;
}

.contact_esp_info img {
	margin: 0;
}

.contact_esp_info a {
	color: #fff;
	font-weight: 500;
}

.contact_esp_info a:hover {
	color: #D97C0B;
}

.contact_form {
	flex: 1;
	position: relative;
	left: -8%;
	max-width: 600px;
	margin: auto;
	background-color: #fff;
	padding: 2rem 3rem 2rem 7rem;
	box-shadow: 0 50px 50px rgba(0, 0, 0, 0.5);
}

.contact_form h2 {
	margin-bottom: 2rem;
	padding-left: 10px;
}

.contact_box {
	position: relative;
	padding: 10px;
}

.contact_box input {
	width: 100%;
	padding: 5px 0;
	border: none;
	border-bottom: 1px solid black;
	outline: none;
	font-family: sans-serif;
	font-size: 18px;
}

.contact_box textarea {
	width: 100%;
	min-height: 60px;
	padding: 5px 0;
	border: none;
	border-bottom: 1px solid black;
	outline: none;
	font-family: sans-serif;
	font-size: 18px;
}

.contact_box span {
	position: absolute;
	left: 10px;
	font-size: 1rem;
	font-weight: 300;
	transition: 0.5s;
	pointer-events: none;
}

.contact_box input:focus ~ span,
.contact_box textarea:focus ~ span,
.contact_box input:valid ~ span,
.contact_box textarea:valid ~ span {
	transform: translateY(-15px);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 1px;
	color: red;
}

.contact_box input[type="submit"] {
	position: relative;
	cursor: pointer;
	background-color: #D97C0B;
	color: #fff;
	border: none;
	max-width: 67px;
	padding: 12px;
}

.contact_box input[type="submit"]:hover {
	background-color: #a86009;
}	

.contact_button_row {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 1;
}

/*.contact_back button {
	border-radius: 3;
	margin-right: 1rem;
	height: 45px;
	font-size: 18px;
	font-weight: 500;
}*/

.contact_back a {
	font-size: 1.125rem;
	font-weight: 500;
	color: #ffffff;
	height: 45px;
	background-color: #D97C0B;
	padding: 12px;
	margin-right: 1rem;
}

.contact_back a:hover {
	background-color: #a86009;
}

.contact_success {
	margin-top: 1rem;
	color: green;
}



/*Main Footer Section*/

.footer {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
/*	margin-top: 2rem;*/
	color: white;
	background-color: #222223;
	padding: 1.625rem 7%;
	column-gap: 2rem
/*	width: 100%;*/
}

.footer_box {
	flex: 1 1 30%;
}

.footer_box_social {
	flex: 1 1 10%;
}


.footer_box_social img {
	margin: 0;
}

.footer_box a {
	font-weight: normal;
	word-break: break-word;
	color: white;
}

.footer_box a:hover {
	color: #D97C0B;
}


/*Testing*/




/*Media Tags*/

/*Laptops Small 769px - 1100px*/

@media (max-width: 68.75rem) {
	.solution_row_text_left, .solution_row_text_right, .footer, .partner_row, .endorsement_row, .bio_row, .bio_row_left, .solution_row_mp, .contact  {
		flex-direction: column;
	}
	.solution_row_text_left, .bio_row_left {
		flex-direction: column-reverse;
	}
	.section {
		margin-top: 3.75rem;
	}
	.lp_title_alt {
		display: flex;
		position: absolute;
		top: 4%;
		left: 7%;
		background-color: rgb(255,255,255, 0.6);
		padding: 1.375rem;
	}
	.lp_verbiage_alt {
/*		display: inline-block;*/
		position: relative;
		top: auto;
		left: auto;
		margin-top: 1.625rem;
		padding-left: 7%;
		padding-right: 7%;
	}
	.lp_verbiage_alt p {
		font-size: 1.25rem;
	}

	.lp_title_verbiage {
		display: none;
	}
	.endorsement_column, .partner_column {
		width: 70%;
		margin: auto;
	}
	.bio_box_headshot img{
		width: 334.5px;
	}
	.bio_box_headshot {
		margin-bottom: 0;
		padding: 0;
	}
	.bio_box_text {
		padding: 0;
	}
	.solution_row_mp {
		margin: 0;
		gap: 0;
	}
	.solution_box_mp img {
		width: 500px;
		margin: auto;
	}
	.contact_esp_info {
		box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
		padding: 2rem 2rem 2rem 2rem;
/*		margin: auto;*/
		max-width: 600px;
		width: 100%;
		z-index: 0;
	}
	.contact_form {
		left: 0;
		padding: 2rem;
		box-shadow: 0 50px 50px rgba(0, 0, 0, 0.5);
		margin: auto;
		width: 100%;
	}
}


/*Tablets 531px - 768px*/

@media (max-width: 48rem) {
	.hide_mobile {
		display: none;	
	}
	.menu_sidebar_button {
		display: block;
	}
	.section {
		scroll-margin-top: 7rem;
	}
	.menu_bar {
		position: sticky;
		top: 0;
	}
	.main_footer {
		width: 100%;
		top: auto;
	}
	.lp_title_alt {
/*		display: none;*/
		display: flex;
		position: absolute;
		top: 4%;
		left: 7%;
	}
	.endorsement_column, .partner_column {
		width: 85%;
		margin: auto;
	}
}


/*Small Screens 320px - 530px*/

@media (max-width: 33.125rem) {
	.lp_title_alt {
		display: none;
	}
	.lp_verbiage_alt {
		display: none;
	}
	.lp_title_verbiage {
		display: inline-block;
		position: relative;
		max-width: 100%;
		top: auto;
		left: auto;
		margin-top: 1.625rem;
		padding-left: 7%;
		padding-right: 7%;
	}
	.endorsement_column, .partner_column {
		width: 100%;
	}
	.bio_box_headshot img{
		width: 200px;
	}
	.solution_column_mp {
		margin-bottom: 1.5rem;
	}
	.contact_esp_info {
		word-break: break-word;
		box-shadow: none;
	}
	.contact_form {
		box-shadow: none;
	}
}



/*For Deletion*/



/*.card {
	width:400px;
	height: 200px;
	background-image: url(background_symbol.png);
	background-repeat: no-repeat;
	background-position: center center;
	box-shadow: 15px 15px 0px 0px #D97C0B, -12px -12px 30px -10px #949494;
	margin: auto;
	margin-top: 6rem;
	text-align: center;
	padding: 1rem;
}*/
