* {
	box-sizing: border-box;
}

html {
	font-size: 16px;
}
body {
	margin: 0;
	padding: 0;
	font-family: 'Montserrat', sans-serif;
}
a {
	text-decoration: none;
}
img, video {
	max-width: 100%;
}
.text-center {
	text-align: center;
}

body > header {
	position: relative;
	z-index: 999;
}
#socialMediaLinks {
	margin: 0;
	padding: 0;
	text-align: right;
	margin-right: 205px;
	margin-bottom: -4px;
	list-style-type: none;
}
#socialMediaLinks li {
	display: inline-block;
}
#socialMediaLinks li + li {
	margin-left: 0.8em;
}
#socialMediaLinks a {
	font-size: 24px;
	color: #3781B0;
	transition: all 0.3s ease-out;
}
#socialMediaLinks a:hover {
	color: #EDAA00;
}

#menuWrapper {
	background-color: #2D4099;
	color: #FFF;
	display: flex;
	justify-content: space-between;
}
#logoWrapper {
	width: 150px;
	margin-left: 50px;
	margin-top: 13px;
}
#mainMenu {
	margin: 3.5em 50px 1em 0;
	padding: 0;
	list-style-type: none;
}
#mainMenu li {
	display: inline-block;
}
#mainMenu li + li {
	margin-left: 1em;
}
#mainMenu li:last-child {
	background-color: #EDAA00;
	margin-top: -90px;
	padding-top: 90px;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 17px;
	margin-bottom: -17px;
	position: relative;
}
#mainMenu li a {
	display: inline-block;
	font-size: 1.3rem;
	font-weight: 500;
	text-transform: uppercase;
	padding: 0.3em;
	color: #FFF;
	border-bottom: 3px solid transparent;
	transition: all 0.3s ease-out;
}
#mainMenu li a:hover, #mainMenu li a.active {
	border-bottom-color: #EDAA00;
}
#mainMenu li:last-child a {
	font-weight: 600;
	color: #2D4099;
	text-transform: none;
}
#mainMenu li:last-child a:hover {
	border-bottom-color: #2D4099;
}
#mainMenu li:last-child:after {
	content: "";
	display: block;
	line-height: 0;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	border-top: 20px solid #EDAA00;
	border-left: 65px solid transparent;
	border-right: 65px solid transparent;
}

#hero {
	position: relative;
	height: 200px;
}
#hero h1 {
	color: #FFF;
	position: absolute;
	bottom: 40px;
	left: 128px;
	text-transform: uppercase;
	font-size: 2.5rem;
	margin: 0;
}

body > footer {
	background-color: #2D4099;
	padding: 0.6em 0;
	margin-bottom: 2em;
	display: flex;
	justify-content: space-between;
	color: #FFF;
	position: relative;
	z-index: 2;
}
body > footer h3 {
	font-size: 1rem;
}
body > footer p {
	font-size: 0.8rem;
	margin: 0.3em 0;
}
body > footer > div {
	flex: 0 0 15%;
}
body > footer > div:first-child {
	flex: 0 0 46%;
	padding-left: 80px;
	font-size: 0.8rem;
}
body > footer > div:last-child {
	flex: 0 0 18%;
	display: flex;
	align-items: center;
	justify-content: center;
}
body > footer > div:first-child div,
body > footer > div:first-child p {
	max-width: 265px;
}
body > footer > div:first-child img {
	max-width: 85px;
	display: block;
	margin: 0 auto;
}
body > footer > div:last-child a {
	font-size: 1.7rem;
	background-color: #EDAA00;
	border-radius: 30px;
	padding: 0.4em 1em;
	color: #FFF;
	transition: all 0.3s ease-out;
}
body > footer > div:last-child a:hover {
	color: #2D4099;
}
body > footer > div:last-child a i {
	margin-left: 0.5em;
}
body > footer > div:nth-child(3) span {
	font-weight: bold;
	margin-right: 0.5em;
	font-size: 1rem;
}

body > footer .contact-wrapper a {
	color: #FFF;
}

#sideDonate {
	position: fixed;
	left: -5px;
	top: 50%;
	height: 200px;
	transform: translate(0, -50%);
	transition: all 0.3s ease-out;
	box-shadow: 2px 2px 16px rgba(42, 42, 42, 0.25);
	z-index: 999;
}
#sideDonate:hover {
	left: 0;
}
#sideDonate img {
	max-height: 100%;
}

