:root {
	--defaultFont: beiruti, sans-serif;
	--headerFont: almaq-refined, sans-serif;
	--darkBlue: #09287e;
	--medBlue: #2358a8;
	--lightBlue: #407fbe;
	--orange: #f68a3d;
	--bgGray: #1a171b;
	--lightGray: #f6f6f6;
}

* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	font-family: var(--defaultFont);
	font-size: 20px;
	color: var(--darkBlue);
	overflow-x: hidden;
	line-height: 1.25;
	word-spacing: 3px;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--headerFont);
	word-spacing: 5px;
}

a:link,
a:visited {
	color: var(--darkBlue);
	text-decoration: underline;
}
nav {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	background-color: rgba(9, 40, 126, 0.75);
	padding: 30px;
	width: 100%;
	height: 85px;
	overflow: visible;
	z-index: 100;
	position: fixed;
}
nav a:link,
nav a:visited {
	font-family: var(--headerFont);
	text-decoration: none;
	font-weight: 500;
	text-transform: uppercase;
	color: #fff;
	font-size: 25px;
}
nav a.active {
	color: var(--orange);
}
.navLinks {
	display: flex;
	justify-content: right;
	align-items: center;
	width: fit-content;
	gap: 3vw;
}
#burgerBTN {
	display: none;
	width: 40px;
	height: 40px;
	background-color: transparent;
	position: relative;
	border: 0px;
}
#burgerBTN:hover {
	cursor: pointer;
	opacity: .8;
}
#burgerIcon,
#closeIcon {
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#burgerIcon {
	opacity: 1;
	transition: .3s;
}
#closeIcon {
	opacity: 0;
	transition: .3s;
}
#headerLogo {
	width: 125px;
	height: 125px;
	margin-left: 15px;
	transform: translateY(-10px);
}
.orange {
	color: var(--orange);
}
.allCaps {
	text-transform: uppercase;
}
.alignLeft {
	text-align: left;
}
.alignCenter {
	text-align: center;
}
.alignRight {
	text-align: right;
}
.headerSplash {
	position: relative;
	background-color: var(--bgGray);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50vw;
	background-position: center;
	background-size: cover;
	color: #fff;
	font-weight: 900;
	font-family: var(--headerFont);
	font-size: 6vw;
	letter-spacing: .2vw;
	text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}
.bgVideo {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: auto;
	object-fit: cover;
	transform: translate(-50%, -50%);
	z-index: 0;
	opacity: 1;
}
#homeOverlay {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: auto;
	object-fit: cover;
	transform: translate(-50%, -50%);
	z-index: 1;
	opacity: 0;
}
.headerSplash p {
	display: block;
	width: fit-content;
	height: fit-content;
	line-height: 1;
	margin: 0px;
	z-index: 2;
}
.splashClip {
	z-index: 2;
}
.contactSplash {
	background-color: var(--bgGray);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 35vw;
	background-position: center;
	background-size: cover;
	color: #fff;
	font-weight: 900;
	font-family: var(--headerFont);
	font-size: 6vw;
	letter-spacing: .2vw;
	text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}
.contactFlex {
	display: flex;
	align-items: center;
	justify-content: right;
	gap: 15px;
	max-width: 1100px;
	width: 90%;
	margin: auto;
}
#nextDoorBlue a {
	display: block;
	background-color: var(--darkBlue);
	padding: 10px;
	padding-left: 15px;
	padding-right: 15px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
}
.quoteBlock {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1200px;
	width: 90%;
	
	margin: auto;
	margin-top: -100px;
	margin-bottom: -50px;
	z-index: 1;
}
.quoteBlock img {
	width: 30%;
	max-width: 400px;
	height: auto;
}
.quoteBlock div {
	width: 70%;
	padding: 20px;
}
.quoteBlock div p:first-of-type {
	font-size: 35px;
	font-weight: 500;
	font-family: var(--headerFont);
	text-transform: uppercase;
	margin-bottom: 10px;
}
.quoteBlock div p:first-of-type::before {
	content: '“';
	margin-left: -25px;
	margin-right: 0px;
}
.quoteBlock div p:first-of-type::after {
	content: '”';
	margin-left: -10px;
}
.quoteBlock div p:last-of-type {
	font-size: 20px;
	font-weight: 300;
	margin-left: 15px;
	line-height: 1;
}
.quoteBlock div p:last-of-type::before {
	content: '— ';
	margin-left: -15px;
}

@media screen and (max-width: 992px) {
    .quoteBlock {
        margin-top: -50px;
        margin-bottom: -25px;
    }
    .quoteBlock div p:first-of-type {
	    font-size: 30px;
	    line-height: 1;
    }
    .quoteBlock div p:last-of-type {
	    font-size: 20px;
	    line-height: 1;
    }
    .quoteBlock div p:first-of-type::before {
    	content: '“';
    	margin-left: -20px;
    	margin-right: 0px;
    }
}
.lightGreyTextBlock {
	background-color: var(--lightGray);
	padding-top: 7vw;
	padding-bottom: 7vw;
}
.lightGreyTextBlock h1,
.lightGreyTextBlock p,
.lightGreyTextBlock ul,
.lightGreyTextBlock h2 {
	max-width: 1100px;
	width: 90%;
	margin: auto;
	margin-bottom: 25px;
}
.whiteTextBlock {
	background-color: var(--lightGray);
	padding-top: 7vw;
	padding-bottom: 7vw;
}
.whiteTextBlock h1,
.whiteTextBlock p,
.whiteTextBlock form {
	max-width: 1100px;
	width: 90%;
	margin: auto;
	margin-bottom: 25px;
}
.whiteTextBlock input,
.whiteTextBlock textarea {
	width: 100%;
	padding: 15px;
	margin-bottom: 15px;
	border: 1px solid var(--lightBlue);
	font-family: var(--defaultFont);
	color: var(--lightBlue);
	font-size: 18px;
}
.whiteTextBlock textarea {
	height: 150px;
}
.orangeBTN {
	padding: 15px;
	background-color: var(--orange);
	color: #fff !important;
	font-size: 20px;
	font-weight: 500;
	text-decoration: none !important;
	text-transform: uppercase;
	font-family: var(--headerFont);
	transition: .5s;
	border: 0px;
}
.orangeBTN:hover {
	cursor: pointer;
	letter-spacing: 3px;
	transition: .5s;
}
footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 100px;
	height: fit-content;
	background-color: var(--darkBlue);
	color: #fff;
	padding: 25px;
	font-family: var(--headerFont);
	font-weight: 700;
	overflow: visible;
}
footer > div {
	width: 33%;
}
#footerLogo {
	width: 33%;
	height: auto;
	transform: translateY(-50px);
}
#socialFooter {
	width: 33%;
	text-align: right;
}
.socialLink:hover {
	opacity: .8;
}
.fullWidthImage {
	display: block;
	width: 100vw;
	height: auto;
}
.successMessage {
	color: #009900;
	font-weight: 500;
	text-align: center;
}
.dashlogo {
	max-width: 50px !important;
	max-height: 50px !important;
}
/*
*
*  Home Page
*
*/
#homeVisionCallout {
	background-image: url('/img/home/salamander.png');
	background-color: var(--bgGray);
	background-position: center;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 5vw;
	padding-bottom: 7vw;
	color: #fff;
	position: relative;
	width: 100%;
	height: fit-content;
	letter-spacing: .1vw;
}
#homeVisionInner {
	width: 90%;
	max-width: 1100px;
}
#homeTwoCol {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 5vw;
	width: 100%;
	padding: 5vw;
	background-image: url('/img/home/underwaterRocks.png');
	background-color: var(--bgGray);
	background-position: center;
	background-size: cover;
}
#homeTwoCol div {
	width: 40%;
	max-width: 550px;
	height: auto;
	padding: 25px;
	padding-bottom: calc(25px + 2.5vw);
	background-color: rgba(255,255,255,.75);
}

/*
*
*  partners page
*
*/
.logoGrid {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 5vw;
	padding-top: 7vw;
	padding-bottom: 7vw;
	padding-left: 5vw;
	padding-right: 5vw;
}
.logoGrid img {
	width: auto;
	height: auto;
	max-width: 15%;
	max-height: 75px;
}
#partnersCallout {
	width: 100%;
	background-image: url('/img/partners/grassy.png');
	background-color: var(--bgGray);
	background-position: center;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 5vw;
	padding-bottom: 5vw;
}
.partnersInner {
	width: 90%;
	max-width: 1100px;
	padding: 5vw;
	padding-bottom: 7vw;
	background-color: rgba(255,255,255,.75);
}

/*
*
*  Resources Page
*
*/

.loading-info {
	display: none !important;
}
#pressList ul {
    padding-left: 0px;
}
#pressList li {
	margin-left: -25px;
}

/*
*
*  Events Page
*
*/
.eventFlex {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 45px;
	padding-top: 7vw;
	padding-bottom: 7vw;
	max-width: 1100px;
	margin: auto;
}
.event {
	width: calc(33% - 2vw);
}
.event img {
	width: 100%;
	height: auto;
}
.event h2 {
	font-size: 2vw;
	font-weight: 500;
	margin-top: 10px;
}
.event p {
	margin: 0px;
	margin-bottom: 2.5vw;
}
.eventImageWrapper {
	width: 100%;
	height: 0;
	padding-top: 60%;
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center;
}
.event .descWrapper {
	overflow: hidden;
	height: fit-content;
	max-height: 75px;
	margin-bottom: 45px;
	transition: .2s;
}
.event .descWrapper p {
    margin-bottom: 0px;
}

/***********************************
*
*  Mailing List Form/button
*
**********************************/
.signUpButton {
	border: 0px;
	border-radius: 0px;
	color: var(--lightGray);
	background-color: var(--orange);
	text-align: center;
	padding: 15px;
	transition: .2s;
	margin-top: 0px;
}
.signUpButton:hover {
	cursor: pointer;
	filter: brightness(1.2);
	transition: .2s;
}
.signupModal {
	display: none;
	align-items: center;
	justify-content: center;
	position: fixed;
	z-index: 100;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.6);
}
.signupModalContent {
	background-color: #fefefe;
	margin: 15% auto;
	padding: 25px;
	border: 1px solid #888;
	border-radius: 5px;
	width: fit-content;
	height: fit-content;
	max-width: 90%;
	text-align: center;
}
.signUpModalContentInner{
	max-width: 500px;
	text-align: justify;
	margin: auto;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
}
.signUpModalContentInner h2 {
	margin-top: 0px;
	text-transform: uppercase;
	text-align: left;
}
.signupModalContent input[type="text"],
.signupModalContent input[type="email"] {
	display: inline-block;
	width: 50%;
	margin-bottom: 10px;
	border: 1px solid var(--darkBlue);
	padding: 10px;
}
.signupModalContent input[type="submit"] {
	display: block;
	margin-left: auto;
	margin-right: 0px;
	width: 100%;
}
.close {
	color: var(--orange);
	width: fit-content;
	margin-left: auto;
	margin-right: 0;
	margin-bottom: 0px;
	font-size: 45px;
	font-weight: bold;
	cursor: pointer;
}
.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}
.submitSignUp {
	background-color: var(--orange);
	color: white;
	border: none;
	padding: 10px 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
}
.signUpFlex {
	display: flex;
	justify-content: space-between;
	gap: 15px;
}

/*
*
* Mobile
*
*
*************/

@media screen and (max-width: 850px) {
	nav {
		padding: 15px;
		padding-left: 5px;
		height: 65px;
	}
	#burgerBTN {
		display: block;
	}
	.navLinks {
		flex-flow: column;
		justify-content: right;
		align-items: flex-end;
		position: absolute;
		top: 65px;
		right: -100%;
		width: fit-content;
		height: calc(100vh - 65px);
		background-color: rgba(9, 40, 126, 0.75);
		text-align: right;
		padding: 15px;
		padding-right: 35px;
		transition: .3s;
	}
	.navLinks a {
		display: block;
		text-align: right;
	}
	.orangeBTN {
		font-size: 20px;
	}
	#headerLogo {
		width: 75px;
		height: 75px;
		transform: translateY(-10px);
	}
	.headerSplash {
		height: 75vw;
		font-size: 10vw;
	}
	.bgVideo, #homeOverlay {
		width: auto;
		height: 75vw;
	}
	.headerSplash p,
	.contactSplash p {
		transform: translateY(8vw);
	}
	.contactSplash {
		height: 50vw;
		font-size: 10vw;
	}
	footer {
		flex-flow: column-reverse;
		position: relative;
		height: fit-content;
		padding: 25px;
		gap: 15px;
	}
	footer > div {
		width: 100%;
		text-align: center !important;
	}
	#footerLogo {
		width: 100px;
		transform: translateY(0px);
	}
	#socialFooter {
		justify-content: center;
	}
	#footerLeft {
		margin: auto;
	}
	.signUpflex {
		flex-wrap: wrap;
	}
	.signupModalContent input[type="email"],
	.signupModalContent input[type="text"] {
		width: 100% !important;
	}
	h1 {
		font-size: 30px;
	}
	#homeQuote {
		flex-flow: column;
	}
	#homeQuote img {
		width: 125px;
		height: auto;
	}
	.quoteBlock {
		margin-top: 0px;
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.quoteBlock div {
		width: 100%;
		padding: 10px;
	}
	.quoteBlock div p:first-of-type {
		font-size: 25px !important;
		width: 100%;
		text-align: center;
	}
	.quoteBlock div p:last-of-type {
		font-size: 15px !important;
		width: 100%;
		text-align: center;
	}
	#homeVisionCallout {
		padding-top: 10vw;
		padding-bottom: 20vw;
	}
	#homeTwoCol {
		flex-flow: column;
	}
	#homeTwoCol div {
		width: 100%;
	}
	#visionQuote {
		flex-flow: column-reverse;
	}
	.logoGrid {
		justify-content: space-evenly;
		gap: 15px;
	}
	.logoGrid img {
		width: auto;
		height: auto;
		max-width: 40%;
		max-height: 55px;
		margin-bottom: 25px;
	}
	#PDFF {
		width: 90%;
		margin: auto;
		margin-bottom: 25px;
	}
	.eventFlex {
		flex-wrap: wrap;
	}
	.event {
		width: 90%;
		margin: auto;
		margin-bottom: 35px;
	}
	.eventFlex h2 {
		font-size: 30px;
		margin-bottom: 0px;
	}
	.eventFlex h3 {
		margin-top: 5px;
		font-size: 20px;
	}
	
}