@charset "UTF-8";

* {
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

body {
	font-family: 'Montserrat', sans-serif;
	margin: auto;
	font-style: normal;
	font-weight: 400;
	background-color: #f0f2f5;
}

h1,h2,h3,h4,h5,h6 {
	text-transform: uppercase;
}



header {
    background-color: rgba(255,255,255, 1);
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
		width: 100%;
}

img.site-logo {
	width: 150px;
}

.site-navigation {
	display: flex;
  align-items: center;
	flex-grow: 1;
  justify-content: flex-end;
}

nav.site-navigation a {
	color: #212f64;
  text-align: center;
  padding: 14px 10px;
  text-decoration: none;
  font-size: 1em;
	text-transform: uppercase;
	font-weight: 600;
	text-decoration: none;
	padding: 8px;
}

.site-navigation a:hover {
	background-color: #c02032;
	color: #ffffff;
	border-radius: 5px;
}

nav.donate-navigation {
	width: 135px;
	overflow: hidden;
	border-radius: 5px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transition: .5s;
	margin-left: 5px;
}

.donate-nav {
    display: flex;
    text-align: center;
    justify-content: flex-end;
    align-items: center;
    background-color: #c02032;
		text-transform: uppercase;
		font-weight: 600;
}

.donate-nav a {
    padding: 10px;
		color: #ffffff;
		text-decoration: none;
}

.donate-nav a:hover {
    background-color: #212f64;
    color: #ffffff;
}

.donate-button {
    width: 100%;
    transition: .5s;
}

.mobile-nav-menu {
    display: none;
    width: 35px;
}

div.site-social-nav {
	display: flex;
	justify-content: flex-end;
}

div.site-social-nav a {
	font-size: 1.5em;
}

main {
	margin-top: 100px;
	z-index: 0;
}


.content-page {
	width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
	padding: 0 20px 5em;
}

.page-title {
	color:#212f64;
	font-size: 3em;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
}

.page-content {
	color: #525252;
	max-width: 800px;
	width: 100%;
}

footer {
	background: rgb(33,47,100);
	background: linear-gradient(90deg, rgba(33,47,100,1) 0%, rgba(54,76,159,1) 100%);
    padding: 10px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

footer > * {
    margin: 10px;
}

.footer_social_menu a {
	color: #ffffff;
	text-decoration: none;
	font-size: 2em;
	padding: 8px;
}

.disclaimer {
	color: #ffffff;
	border: 2px solid #ffffff;
	padding: 8px;
	width: fit-content;
	font-weight: 600;
	text-transform: uppercase;
}

.mailing-address {
	text-transform: uppercase;
	font-size: 12px;
}

.mailing-address p {
	margin: 0;
}

.footer_email {
	width: 100%;
}

.footer_email p:first-child {
	margin: 0;
	text-transform: uppercase;
	font-size:2em;
}

a.backtotop {
	width: fit-content;
	margin: 10px auto;
  display: flex;
	color: #212f64;
  background-color: #ffffff;
  padding: 8px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  text-decoration: none;
	border-radius: 5px;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

a.backtotop:hover {
	background-color: #212f64;
	color: #ffffff;
}

a.blue-button {
  background-color: #212f64;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  padding: 12px 24px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

a.blue-button:hover {
	background-color: #c02032;
}

.donate-section {
	padding: 50px;
}

.donate-section-title {
	color: #ffffff;
}

.donate-section-description {
	color: #ffffff;
}

.donate-section-wrapper {

}

.donate-section-list {
	flex-wrap: wrap;
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
}

.donate-section-item {
	background-color: #ffffff;
	border-radius: 5px;
	margin: 5px;
	width: 150px;
	height: 75px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.donate-section-item a {
	text-decoration: none;
	color: #212f64;
	font-weight: 600;
	font-size: 2em;
}

.donate-section-item:hover {
	background-color: #c02032;
}

.donate-section-item:hover > a {
	color: #ffffff;
}
