html {
	height: 100%;
}

:root {
	--primary-color: #154993;
	--secondary-color: #efc509;
	--text-color: #000;
	--light-color: #a6a9a9;
	--white-color: #fff;
	--light-blue-color: #2e60ad;
}

body {
	height: 100%;
	margin: 0;
	padding: 0;
	background: #fff;
	overflow-x: hidden;
	overflow-y: scroll;
	font-size: 10px;
	font-family: 'roboto_regular';
	color: var(--text-color);
}

* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

header, footer, article, section, nav, menu, a, figure, img, h1, h2, h3, h4, h5, h6, form, input, select, textarea, ul, ol, p, video {
	display: block;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

img {
	border: none;
}
img.fullWidth {
	width: 100%;
}
img.cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

h1, h2, h3, h4, h5, h6, article strong {
	font-family: 'roboto_bold';
	font-weight: normal;
}

ul {
	list-style: none;
}

article {
	font-size: 2em;
}
article p:not(:first-child), article ul:not(:first-child), article ol:not(:first-child), article h1:not(:first-child), article h2:not(:first-child), article h3:not(:first-child), article h4:not(:first-child), article h5:not(:first-child), article h6:not(:first-child) {
	margin-top: 1.5em;
}
article a {
	display: inline-block;
	color: var(--primary-color);
	text-decoration: underline;
}
article a:hover {
	text-decoration: none;
}
article ul li, article ol li {
	margin-left: 2.5em;
}
article ul li {
	list-style: disc;
}
article img, article iframe {
	max-width: 100%;
}
article h1 {
	font-size: 2em;
}
article h2 {
	font-size: 1.4em;
}
article h3 {
	font-size: 1.2em;
}
article h4, article h5, article h6 {
	font-size: 1.1em;
}
article blockquote {
	margin-top: 0;
	margin-bottom: 0;
}

input, select, textarea {
	border: none;
	outline: none;
	background: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
input[type=submit], input[type=button] {
	cursor: pointer;
}
textarea {
	resize: none;
}

.smoothTransition {
	transition-property: all;
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
}
.smoothTransition.hover {
	transition-duration: .3s;
	-webkit-transition-duration: .3s;
	-moz-transition-duration: .3s;
	-o-transition-duration: .3s;
}
.smoothTransition.onLoad {
	transition-duration: .75s;
	-webkit-transition-duration: .75s;
	-moz-transition-duration: .75s;
	-o-transition-duration: .75s;
}

img.smoothTransition {
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
a:hover img.smoothTransition.hover {
	opacity: .8;
	-webkit-opacity: .8;
	-moz-opacity: .8;
}

.hidden {
	visibility: hidden;
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
}

.translatedDown {
	transform: translate(0,50px);
	-webkit-transform: translate(0,50px);
	-moz-transform: translate(0,50px);
	-ms-transform: translate(0,50px);
	-o-transform: translate(0,50px);
}

.translatedUp {
	transform: translate(0,-50px);
	-webkit-transform: translate(0,-50px);
	-moz-transform: translate(0,-50px);
	-ms-transform: translate(0,-50px);
	-o-transform: translate(0,-50px);
}

.translatedLeft {
	transform: translate(-20px,0);
	-webkit-transform: translate(-20px,0);
	-moz-transform: translate(-20px,0);
	-ms-transform: translate(-20px,0);
	-o-transform: translate(-20px,0);
}

.translatedRight {
	transform: translate(20px,0);
	-webkit-transform: translate(20px,0);
	-moz-transform: translate(20px,0);
	-ms-transform: translate(20px,0);
	-o-transform: translate(20px,0);
}

.scaledUp {
	transform: scale(1.1,1.1);
	-webkit-transform: scale(1.1,1.1);
	-moz-transform: scale(1.1,1.1);
	-ms-transform: scale(1.1,1.1);
	-o-transform: scale(1.1,1.1);
}

.scaledDown {
	transform: scale(.9,.9);
	-webkit-transform: scale(.9,.9);
	-moz-transform: scale(.9,.9);
	-ms-transform: scale(.9,.9);
	-o-transform: scale(.9,.9);
}

.table, .tableCell {
	width: 100%;
	height: 100%;
}
.table {
	display: table;
}
.tableCell {
	display: table-cell;
	vertical-align: middle;
}

.container {
	position: relative;
	width: 90%;
	max-width: 1170px;
	margin: 0 auto;
}

#master {
	height: 100%;
	overflow: hidden;
	position: relative;
}
#master.loaded {
	height: auto;
}

#navContainer {
	position: fixed;
	width: 15%;
	height: 100%;
	z-index: 1000;
	background: var(--primary-color);
}
#navContainer .navContainer {
	height: 100%;
	padding: 3.5em 0;
	text-align: center;
	overflow-y: auto;
}
#navContainer .navContainer::-webkit-scrollbar {
	width: 5px;
}
#navContainer .navContainer::-webkit-scrollbar-track {
	background: var(--primary-color);
}
#navContainer .navContainer::-webkit-scrollbar-thumb {
	background: #c1c1c1;
}
#navContainer a.mobileMenu {
	position: absolute;
	width: 25px;
	height: 25px;
	right: -35px;
	top: 10px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	display: none;
}
#navContainer a.mobileMenu.open {
	background-image: url(../images/mobilemenu_open_icon.png);
}
#navContainer a.mobileMenu.close {
	background-image: url(../images/mobilemenu_close_icon.png);
}
#navContainer::-webkit-scrollbar-thumb:hover {
	background: #a8a8a8;
}
#navContainer a.logo {
	width: 50%;
	max-width: 249px;
	margin: 0 auto;
}
#navContainer nav {
	margin-top: 2.5em;
}
#navContainer nav a {
	font-size: 1.7em;
	color: var(--white-color);
}
#navContainer nav a:not(:last-child) {
	margin-bottom: 1.1em;
}
#navContainer nav a:hover, #navContainer nav a.active {
	color: var(--secondary-color);
}
#navContainer .socialIcons {
	margin-top: 3em;
}
#navContainer .socialIcons a {
	margin: 0 auto;
}
.socialIcons a {
	width: 3.7em;
}
#navContainer .socialIcons a:not(:last-child) {
	margin-bottom: 1.5em;
}
#navContainer form {
	margin-top: 3em;
	position: relative;
}
#navContainer form input[type=text] {
	width: 100%;
	background: var(--light-blue-color);
	font: 12px 'roboto_regular';
	color: var(--white-color);
	padding: .8em 1.1em;
	padding-right: 3.5em;
}
#navContainer form input[type=text]::placeholder {
	color: var(--light-color);
}
#navContainer form input[type=submit] {
	position: absolute;
	top: 0;
	right: 0;
	width: 3.5em;
	height: 100%;
	background: url(../images/search_icon.png) center no-repeat;
	background-size: 42% auto;
}
#navContainer form input[type=submit]:hover {
	opacity: .6;
	-webkit-opacity: .6;
	-moz-opacity: .6;
}

#body {
	padding-left: 15%;
}

#mobileHeader {
	height: 45px;
	background: var(--secondary-color);
	position: relative;
	z-index: 500;
	display: none;
}
#mobileHeader a.logo {
	position: absolute;
	right: 13px;
	top: 5px;
	width: 70px;
}

header {
	min-height: 500px;
	position: relative;
	overflow-y: hidden;
}
header .strip, header h1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
/* header .strip {
	height: 18.8em;
	opacity: .19;
	-webkit-opacity: .19;
	-moz-opacity: .19;
	transform: skew(0,-5deg);
	-webkit-transform: skew(0,-5deg);
	-moz-transform: skew(0,-5deg);
	-ms-transform: skew(0,-5deg);
	-o-transform: skew(0,-5deg);
	transform-origin: left bottom;
	-webkit-transform-origin: left bottom;
	-moz-transform-origin: left bottom;
	-ms-transform-origin: left bottom;
	-o-transform-origin: left bottom;
} */
header .strip {
	height: 100%;
	opacity: .19;
	-webkit-opacity: .19;
	-moz-opacity: .19;
	display: none;
}
/* header h1 {
	text-align: center;
	color: var(--white-color);
	font: 3.6em 'whitney_blacksc';
	padding: .6em;
	text-transform: uppercase;
	line-height: 1.2em;
} */
header h1 {
	color: var(--white-color);
	font: 3.6em 'whitney_blacksc';
	text-transform: uppercase;
	top: 25%;
	right: 0;
	padding-left: 55%;
	padding-right: 5%;
	text-align: right;
}


ul.boxes li {
	float: left;
	position: relative;
	margin-bottom: 2em;
}
ul.boxes.three li {
	width: 32%;
	margin-right: 2%;
}
ul.boxes.four li {
	width: 23.5%;
	margin-right: 2%;
}
ul.boxes.three li:nth-child(3n) {
	margin-right: 0;
}
ul.boxes.four li:nth-child(4n) {
	margin-right: 0;
}
ul.boxes.rounded, ul.boxes li figure.rounded {
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
ul.boxes li figure {
	background: var(--light-color);
	overflow: hidden;
	height: 23em;
}
ul.boxes li a:hover figure img {
	transform: scale(1.05,1.05);
	-webkit-transform: scale(1.05,1.05);
	-moz-transform: scale(1.05,1.05);
	-ms-transform: scale(1.05,1.05);
	-o-transform: scale(1.05,1.05);
}
ul.boxes .info {
	padding: 3em 2.5em;
}
ul.boxes .info.white {
	background: var(--white-color);
}

.marginNegative {
	margin-top: -23em;
}

#homepageBoxes {
	padding-bottom: 7.5em;	
}

#homepageVideo article, #homepageVideo2 article, #ourMission article.left {
	float: left;
	width: 50%;
}
#homepageVideo video, #homepageVideo iframe, #homepageVideo2 video, #homepageVideo2 iframe {
	margin: 0 auto;
	width: 100%;
	max-width: 600px;
}
#homepageVideo video.right, #homepageVideo iframe.right, #homepageVideo2 video.right, #homepageVideo2 iframe.right, #ourMission img.right {
	float: right;
	width: 40%;
	margin: 0;
}
#ourMission img.right {
	margin-top: 7em;
}

#homepageTexts article {
	width: 50%;
	padding: 1.5em 1.1em;
}
#homepageTexts article:first-child {
	float: left;
}
#homepageTexts article:nth-child(2) {
	float: right;
}

.sectionTitle {
	font-size: 2.6em;
	margin-bottom: 1.7em;
	text-align: center;
}

#homepageEvents {
	padding-bottom: 10em;
}
#homepageEvents .marginNegative {
	margin-top: -30.7em;
}

.eventDate, .eventLocation {
	float: left;
	font-size: 12px;
	color: var(--light-color);
	padding-left: 30px;
	min-height: 21px;
	background-position: left center;
	background-repeat: no-repeat;
	margin-top: 2px;
	margin-bottom: 2px;
}
.eventDate {
	background-image: url(../images/date_icon.png);
	margin-right: 20px;
}
.eventLocation {
	background-image: url(../images/location_icon.png);
}
.eventCalendar {
	margin-right: 1.5em;
	background: url(../images/calendar_icon.png) left center no-repeat;
	font-size: 1.8em;
	background-size: auto 1.6em;
	padding-left: 2em;
}

.empty {
	position: relative;
	height: 38em;
	background: var(--white-color);
}

.moreBtnContainer {
	margin-top: 4em;
	text-align: center;
}
.moreBtnContainer a {
	display: inline-block;
	font-size: 1.4em;
	color: var(--white-color);
	background: var(--primary-color);
	border-radius: .33em;
	-webkit-border-radius: .33em;
	-moz-border-radius: .33em;
	padding: .77em 1.77em;
}
.moreBtnContainer a:hover {
	color: var(--secondary-color);
}

footer {
	padding: 10em 0 2.6em;
	background: var(--primary-color);
	color: var(--white-color);
}
footer ul:first-child {
	border-bottom: 1px solid var(--light-color);
	padding-bottom: 1.8em;
	margin-bottom: 3em;
}
footer ul li {
	float: left;
	width: 16.6%;
}
footer ul li a {
	color: var(--white-color);
}
footer ul li a:hover {
	color: var(--secondary-color);
}
footer ul li a.regular {
	font-size: 1.4em;
	margin-bottom: 1.2em;
}
footer ul li a.bold {
	font: 1.6em 'roboto_bold';
	margin-bottom: 2em;
}
footer li.socialIcons {
	width: 83.4%;
}
footer li.socialIcons a, #contact .socialIcons a {
	display: inline-block;
}
footer li.socialIcons a:first-child, #contact .socialIcons a:first-child {
	margin-right: 2.5em;
}
#contact .socialIcons a {
	width: 5em;
}

section.aboutText {
	padding: 5em 0;
}
section.aboutText:nth-child(even) {
	background: var(--secondary-color);
}
section.aboutText article {
	float: left;
	width: 68%;
	color: var(--primary-color);
	padding-right: 1.5%;
}
section.aboutText figure {
	width: 32%;
	float: right;
}
section.aboutText:nth-child(even) article {
	float: right;
	padding-right: 0;
	padding-left: 1.5%;
}
section.aboutText:nth-child(even) figure {
	float: left;
}

form.border {
	border: 2px solid var(--secondary-color);
	padding: 1.5em;
}
form.inner .inputContainer {
	margin-bottom: 1.5em;
}
form.inner .half {
	width: 49.5%;
}
form.inner .half:first-child {
	float: left;
}
form.inner .half:nth-child(2) {
	float: right;
}
form.inner input:not([type=submit]):not([type=checkbox]):not([type=radio]), form.inner select, form.inner textarea {
	background-color: #fff;
	width: 100%;
	border: 1px solid var(--primary-color);
	font: 2em 'roboto_regular';
	height: 2.6em;
	color: var(--primary-color);
	padding: .6em .8em;
}
form.inner select {
	background-image: url(../images/dropdown_arrow.png);
	background-position: right 10px center;
	background-repeat: no-repeat;
}
form.inner textarea {
	height: 11em;
}
form.inner input::placeholder, form.inner textarea::placeholder {
	color: var(--light-color);
}
form.inner input[type=checkbox] {
	border: 1px solid var(--primary-color);
	appearance: checkbox;
	-webkit-appearance: checkbox;
	background: #fff;
	width: 2.5em;
	height: 2.5em;
}
form.inner .submitContainer {
	position: relative;
}
form.inner input[type=submit] {
	float: right;
	background: var(--primary-color);
	color: #fff;
	width: 12.5em;
	text-transform: uppercase;
	position: relative;
	z-index: 10;
}
form.inner input[type=submit], form.inner .outputMsg {
	font: 1.9em 'roboto_bold';
	padding: .6em 0;
}
form.inner input[type=submit]:hover {
	background: var(--light-blue-color);
}
form.inner .outputMsg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	color: var(--light-blue-color);
}
form.inner h3 {
	font-size: 3em;
	color: var(--primary-color);
}

a.donate {
	display: inline-block;
	font: 4em 'roboto_bold';
	background: var(--secondary-color);
	color: #fff;
	width: 6em;
	text-transform: uppercase;
}
a.donate:hover {
	background: var(--primary-color);
}

.paging {
	margin-top: 3em;
	text-align: center;
}
.paging a {
	width: 5em;
	height: 5em;
	margin: 0 .5em;
	text-align: center;
	display: inline-block;
	border: 2px solid var(--light-color);
}
.paging a .number {
	height: 100%;
	font: 1.6em 'roboto_bold';
	color: var(--text-color);
}
.paging a .number:hover, .paging a .number.active {
	color: var(--white-color);
	background: var(--primary-color);
}

ul.list li, ul.list a {
	background: #fff;
	padding: 2em;
	border: 1px solid var(--secondary-color);
	box-shadow: 0 3px 5px rgba(0,0,0,.4);
	-webkit-box-shadow: 0 3px 5px rgba(0,0,0,.4);
	-moz-box-shadow: 0 3px 5px rgba(0,0,0,.4);
}
ul.list a:hover {
	background: rgb(250, 250, 250);
}
ul.list li:not(:last-child), ul.list a:not(:last-child) {
	margin-bottom: 2em;
}
ul.list a iframe, ul.list a video {
	width: 100%;
	max-width: 600px;
}

a.donatedFixedBtn {
	font: 2em 'roboto_bold';
	color: #fff;
	border-radius: 2em;
	padding: .4em 1em;
	padding-left: 3em;
	background: var(--primary-color) url(../images/donate_icon.png) left .8em center no-repeat;
	background-size: 1.7em auto;
	position: fixed;
	bottom: 1em;
	right: 1em;
	z-index: 1000;
	box-shadow: 1px 1px 5px rgba(0,0,0,.4);
}
a.donatedFixedBtn:hover {
	color: var(--secondary-color);
}


@media screen and (min-width:1500px) {
	body {
		font-size: 11px;
	}
}

@media screen and (max-width:1024px) {
	body {
		font-size: 9px;
	}
}

@media screen and (max-width:768px) {
	body {
		font-size: 8px;
	}
	#body {
		padding-left: 0;
	}
	#mobileHeader {
		display: block;
	}
	#navContainer a.mobileMenu {
		display: block;
	}
	#navContainer {
		width: 20em;
		transform: translate(-100%,0);
		-webkit-transform: translate(-100%,0);
		-moz-transform: translate(-100%,0);
		-ms-transform: translate(-100%,0);
		-o-transform: translate(-100%,0);
	}
	#navContainer.active {
		box-shadow: 3px 0 5px rgba(0,0,0,.4);
		-webkit-box-shadow: 3px 0 5px rgba(0,0,0,.4);
		-moz-box-shadow: 3px 0 5px rgba(0,0,0,.4);
		transform: translate(0,0);
		-webkit-transform: translate(0,0);
		-moz-transform: translate(0,0);
		-ms-transform: translate(0,0);
		-o-transform: translate(0,0);
	}
	#navContainer a.logo {
		display: none;
	}
	#navContainer nav {
		margin-top: 0;
	}
	#homepageBoxes {
		padding: 4em 0;
	}
	header {
		min-height: 300px;
	}
	header h1 {
		top: auto;
		bottom: 1em;
		padding-left: 45%;
		padding-right: 13px;
	}

	#homepageBoxes .marginNegative {
		margin-top: 0;
	}
}

@media screen and (max-width:640px) {
	article {
		text-align: justify;
	}
	.marginNegative, #homepageEvents .marginNegative {
		margin-top: 0;
	}
	ul.boxes li {
		float: none;
		margin-left: auto;
		margin-right: auto;
		max-width: 450px;
		margin-bottom: 4em;
	}
	ul.boxes li:nth-last-child(2) {
		margin-bottom: 0;
	}
	ul.boxes li figure {
		height: auto;
	}
	ul.boxes.three li, ul.boxes.four li {
		width: auto;
		margin-right: auto;
	}
	ul.boxes.three li:nth-child(3n), ul.boxes.four li:nth-child(4n) {
		margin-right: auto;
	}
	ul.boxes li:nth-last-child(2) {
		margin-bottom: 0;
	}
	#homepageBoardMembers ul.boxes.four li, #board.boxes.four li {
		float: left;
		width: 49%;
		margin-right: 2%;
	}
	#homepageBoardMembers ul.boxes.four li:nth-child(2n), #board.boxes.four li:nth-child(2n) {
		margin-right: 0;
	}
	#homepageBoardMembers ul.boxes.four li figure, #board.boxes.four li figure {
		height: 23em;
	}
	#homepageTexts article {
		width: auto;
		text-align: justify;
	}
	#homepageTexts article:first-child, #homepageTexts article:nth-child(2) {
		float: none;
	}
	#homepageEvents {
		padding: 5em 0;
	}
	.empty {
		display: none;
	}
	footer ul li {
		float: none;
		width: auto;
		text-align: center;
	}
	footer ul li.socialIcons {
		width: auto;
	}
	footer ul li:not(:last-child) {
		margin-bottom: 4.5em;
	}
	section.aboutText article {
		float: none;
		width: auto;
		text-align: justify;
		padding-right: 0;
	}
	section.aboutText figure {
		width: auto;
		float: none;
		max-width: 300px;
		margin: 0 auto;
		margin-top: 2.5em;
	}
	section.aboutText:nth-child(even) article {
		float: none;
		padding-left: 0;
	}
	section.aboutText:nth-child(even) figure {
		float: none;
	}
	form.inner .inputContainer, form.inner .half:first-child {
		margin-bottom: 10px;
	}
	form.inner .half {
		width: auto;
	}
	form.inner .half:first-child, form.inner .half:nth-child(2), form.inner input[type=submit] {
		float: none;
	}
	form.inner input[type=submit] {
		width: 100%;
	}
	form.inner .outputMsg {
		position: static;
		margin-top: 10px;
		text-align: center;
	}
	a.donate {
		display: block;
		width: auto;
	}
	#homepageVideo article, #homepageVideo2 article, #ourMission article.left {
		float: none;
		width: auto;
		text-align: justify;
	}
	#homepageVideo video.right, #homepageVideo iframe.right, #homepageVideo2 video.right, #homepageVideo2 iframe.right, #ourMission img.right {
		float: none;
		width: 100%;
		margin-top: 2em;
	}
}

@media screen and (max-width:425px) {
	header h1 {
		font-size: 3.1em;
		padding-left: 35%;
	}
}