/*IMPORT FONTS*/
@import url('https://fonts.googleapis.com/css?family=Merriweather:300,300i,700|Open+Sans:700,800');
* {
    box-sizing: border-box;
}
html {
    height: 100%;
    font-family: "Merriweather", "Times New Roman", serif;
    font-size: 10pt;
    font-weight: 300;
    text-align: left;
    line-height: 1.3rem;
    color: #1f5775;
}

/*
HEADERS
*/
h1, h2, h3, h4 {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: 700;
    text-align: left;
}
h1 {
    font-weight: 800;
    text-transform: uppercase;
    color: #f2f3fb;
    margin-top: 0;
    font-size: 2rem;
    line-height: 2.6rem;
}
/*Modifications for H1 links, given that the only H1 in the site will do double-duty as a home link. Since the "a" tag has unfavorable traits more geared towards standard text usage, it will be modified to inherit H1's text properties.*/
h1 a {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
}
h2 {
    font-size: 1.5rem;
    line-height: 2rem;
}

/*
LINKS
*/
a {
    color: #ff6000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
a:visited {
    color: #a13d00;
}

/*FIGURES*/
figure {
    margin: 0 auto;
	width: 66%;
}
figure img {
	margin: auto;
	max-width: 100%;
}
figcaption {
    font-style: italic;
}

/*
IMAGES
*/
.logoimg {
    padding: 0 1rem 0 0;
    height: 5rem;
}
.headeruse {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

/*
LISTS
*/
li {
    margin-bottom: 1rem;
}
/*NUMBERED LIST*/
ol {
    list-style: none;
    counter-reset: li;
}
ol li::before {
    display: inline-block;
    margin-left: -1.75rem;
    margin-right: 0.5rem;
    width: 1rem;
    text-align: right;
    counter-increment: li;
    content: counter(li) ". ";
    font-weight: 700;
}
/*
TABLES
*/
table, tfoot {
    border: hidden;
}
table {
	border-collapse: collapse;
}
th, td {
	padding: 0.5rem;
	border: 1px solid #1f5775;
}
th {
	color: #f2f3fb;
	background-color: #1f5775;
}
table th:nth-child(2n-1) {
	width: 25%;
}
tfoot td {
	text-align: center;
}

/*
ACCENTED SEPERATORS
*/
.accentedseperator {
    background-color: #ff6000;
}
.vertical {
    width: 0.33rem;
    margin-right: 1rem;
}
.horizontal {
	height: 0.33rem;
	margin: 1rem 0;
}

/*
CONTAINERS, HEADER/FOOTER and NAV
*/
header, footer {
    padding: 1rem;
    display: flex;
    justify-content: center;
    background: #31323b;
}

header {
    position: relative;
    z-index: 1;
    top: 0;
    width: 100%;
}
.headercontainer {
    display: flex;
    flex-direction: row;
    margin: auto;
    max-width: 11in;
    width: 90%;
    justify-content: center;
}


/*NAV*/
nav {
    margin-bottom: 0;
}
nav ul {
    padding: 0;
    list-style: none;
}
nav ul * {
    color: inherit;
}

/*nav-menu links*/
nav ul a {
    margin-bottom: 0.33rem;
    max-width: 15rem;
    width: 90%;
    padding: 0.5rem;
    background-color: #404f6a;
    color: #f2f3fb;
}

/*nav-menu links, on hover*/
nav ul a:hover {
    background-color: #608bcb;
    color: #f2f3fb;
}
/*nav-menu links, color ovveride on visit*/
nav a:visited{
    color: #f2f3fb;
}

/*nav-menu links, on page*/
#home .home-pg,
#objects .objects-pg,
#wildlife .wildlife-pg,
#future .future-pg {
    background-color: #f2f3fb;
    color: #1f5775;
}

/*Intended to modify the text within the footer*/
footer p, footer li, footer a {
    font-size: 0.66rem;
    line-height: 1rem;
}
footer p, footer li {
    color: #9999a4;
}

.footercontainer {
    display: flex;
    flex-direction: column;
    max-width: 11in;
}
.footerlogocontainer {
    margin: auto;
}
/*To maintain the sought after shadow effect, an extra div is added to cover the bottom shadow. The footer's bottom padding is removed to compensate for this. A footerwrap class is used to keep*/
footer {
    padding-bottom: 0;
}
.footershadowfix {
    position: relative;
    width: 100%;
    height: 1rem;
    background-color: #31323b;
}



/*DROP-SHADOWS*/
header, footer, article, .splash {
    box-shadow: 0 0 1rem rgba(0, 0, 0, 1);
}
/*
header {
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.3);
}
footer {
    box-shadow: 0 -1rem 1rem rgba(0, 0, 0, 0.3);
}

/*
SPLASH
*/
.splash {
    position: relative;
    height: 100%;
    padding: 1rem;
    background: #888888 url(../images/splash.jpg) no-repeat scroll center;
    background-size: cover;
    display: flex;
    flex-direction: column-reverse;
}
/*
MAIN CONTENT AND BODY
*/
body {
    margin: 0;
    height: 100%;
    background: #31323b;
}
main {
    background: #31323b url("../images/ripple.png") repeat fixed center;
}
article {
    margin: auto;
    max-width: 8.5in;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
}

/*PULLQUOTES*/
.splash .pullquote {
    margin: 0 auto 4rem;
    width: 100%;
    max-width: 8.5in;
    padding: 2rem;
    background-color: #31323B;
}

.pullquote p:first-child {
    font-size: 4rem;
    border-bottom: 0.33rem solid #ff6000;
    margin-bottom: 1rem;
}

.pullquote p {
    margin: 0;
    color: #f2f3fb;
    font-size: 2rem;
    line-height: 2.6rem;
    text-align: left;
}


/*
DESKTOP BASED MODIFICATIONS
*/
@media only screen and (min-width: 800px) {
nav ul li {
    display: inline;
}
.footercontainer {
    flex-direction: row;
}
.footerlogocontainer {
    margin: auto 0;
    vertical-align:baseline;
    white-space: nowrap;
}
.footeruse {
    position: relative;
    top: 50%;
}
    
.pullquote p {
    font-size: 3rem;
    line-height: 3.9rem;
}
}

/*
STRICTLY HEADER BASED MODIFICATIONS
*/