*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/*This changes the box model of everything in the website and can be overwriten per component if needed. To read more about box-sizing and why you'd want to overwrite it see https://css-tricks.com/international-box-sizing-awareness-day/ or https://www.w3schools.com/cssref/css3_pr_box-sizing.asp*/
/*--------------------------------------------------------
	FONT ASSIGNMENTS
--------------------------------------------------------*/
:root {
	overflow-x: clip;
	--header-height: 165px;
	--footer-height: 87px;
}

body {
	font-family: "Lato", sans-serif;
	font-size: 16px;
}

p {
	font-family: "Lato", sans-serif;
}

/*--------------------------------------------------------
	H1 - H6
--------------------------------------------------------*/
h1,
h2,
h3,
h4 {
	margin: 0px;
	padding: 0px;
	font-family: "Lato", sans-serif;
}

h1 {
	font-size: 35px;
	color: #006AB4;
	margin-top: 25px;
	margin-bottom: 10px;
	padding: 5px 0px;
}

h2 {
	font-size: 29px;
	background-color: #DFD3C0;
	color: #006AB4;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 10px 0px;
}

h3 {
	font-size: 22px;
}

h4 {
	font-size: 19px;
}

h1.title {}

h1.title:empty {
	display: none;
}

/*^^Hides the extra margin that is added on pages without a title*/
/*--------------------------------------------------------
	LINKS
--------------------------------------------------------*/
/*a {
	color: ;
}
a:hover, a:focus{
	color: ;
}
/*

/*--------------------------------------------------------
	IMAGES, Objects
--------------------------------------------------------*/
img {
	border: 0px;
}

@media (max-width: 990px) {
	.stack-order {
		display: flex;
		flex-direction: column;
	}

	.stack-order>.first {
		order: 2;
	}

	.stack-order>.second {
		order: 1;
	}

	.stack-order>.third {
		order: 3;
	}
}

/*--------------------------------------------------------
						HEADER
--------------------------------------------------------*/
#login-button a {
	color: #006AB4;
	text-decoration: none;
	font-family: "Lato", sans-serif;
	display: flex;
	align-items: center;
	line-height: 1;
}

/*#login-button:hover{
	background-color: white;
}*/

#login-button {
	background-color: #DFD3C0;
	border: 3px solid #007BC2;
	border-radius: 4px;
	padding: 5px 10px;
	display: inline-block;
	font-size: 18px;
	margin-top: 30px;
	text-align: center;
}

@media (max-width: 770px) {
	#logo-wrap {
		text-align: center;
	}
}

.logo-row {
	margin-bottom: 5px;
}

/*--------------------------------------------------------
					Login
--------------------------------------------------------*/
svg#login-icon {
	fill: #002FBA;
	height: auto;
	width: 30px;
	padding: 0px 5px 0px 0px;
}

.modal-dialog {
	width: 200px;
}

/*--------------------------------------------------------
					Desktop Navigation
--------------------------------------------------------*/

#nav_menu {
	padding-inline: 0;
}

#nav_menu>.nav {
	display: flex;
	width: 100%;
}

#nav_menu>.nav>li {
	flex-grow: 1;
	text-align: center;
}

.dropdown-menu {
	padding: 0px;
}

.dropdown-menu li {
	width: 100%;
	background-color: #002FBA;
	padding: 5px 0px;
}

.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover {
	color: white;
	text-decoration: none;
	background-color: #01299e;
}

.navbar-nav>li a {
	color: white;
	font-family: "Lato", sans-serif;
	font-size: 16px;
}

.nav>li>a:hover,
.nav>li>a:focus {
	color: white;
	text-decoration: none;
	background-color: #01299e;
}

#nav-wrap {
	position: relative;
	margin-top: 10px;
	margin-bottom: 0;
	background-color: #002FBA;
	/* -webkit-box-shadow: 0px -10px 10px 0px rgba(61,75,244,0.75); 
	box-shadow: 0px -10px 10px 0px rgba(61,75,244,0.75); */
}

#nav-wrap::before,
#footer-row::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: -999px;
	bottom: 0;
	left: -999px;
	background-color: #002FBA;
	z-index: -1;
}

.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
	color: white;
	text-decoration: none;
	background-color: #01299e;
}

/*#nav-wrap a{
	color: white;
}*/
/*----------------Mobile Navigation----------------*/

#mobile-toggle {
	margin-top: 10px;
	margin-bottom: 10px;
	background-color: #002FBA;
	/* -webkit-box-shadow: 0px -10px 10px 0px rgba(61, 75, 244, 0.75);
	box-shadow: 0px -10px 10px 0px rgba(61, 75, 244, 0.75); */
	color: white;
	text-align: center;
	display: inline-block;
	width: 100%;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
}

/*--------------------------------------------------------
					Index / Main Body
--------------------------------------------------------*/


/* Main */

main {
    --gap: 40px;
    min-height: calc(100vh - var(--header-height) - var(--footer-height));
}

main>.row:not(#slide-row) {
    position: relative;
    padding-block: var(--gap);
    /* padding-top: var(--gap); */
}

main:is(#subpage-main, #mms-main)>.row {
    padding-block: calc(var(--gap) / 2);
}

main:is(#subpage-main, #mms-main)>.row:first-child {
    padding-top: var(--gap);
}

main:is(#subpage-main, #mms-main)>.row:last-child {
    padding-bottom: var(--gap);
}

@media (max-width: 990px) {
    main:is(#homepage-main, #subpage-main)>.row>.column:not(:first-child) {
        margin-top: var(--gap);
    }
}

@media (max-width: 767px) {
    main {
        --gap: 35px;
    }
}

@media (max-width: 550px) {
    main {
        --gap: 30px;
    }
}



















/*----------------Slideshow----------------*/
#slide-row {
	margin-bottom: 10px;
}

.carousel-control.left,
.carousel-control.right,
.carousel-control:hover {
	display: none;
}

/*.carousel-control{
	top: ;
	width: ;
}
.carousel-caption { 
	position: absolute;
	z-index: 100;
	background-color: #002857;
	background: rgba(0, 0, 0, .6);
	padding: 10px 15px;
	left: inherit;
	bottom: 0px;
	right: 0px;
	top: inherit;
	width: 100%;
	text-align: left;
	text-shadow: none;
}

@media (max-width: 600px){
	.carousel-caption{
		padding: 0px 10px;
	}

}
.carousel-caption p.caption-text{
	font-size: 28px;
	font-weight: 600;
	line-height: 33px;
	display: block;
	color: white;
	margin-bottom: 10px;
}
.carousel-caption p.alt-text{
	font-size: 16px;
	font-family: serif;
	font-style: italic;
	color: white;
	margin-bottom: 10px;
}
*/
/*----------------End Slideshow----------------*/

#quick-links li {
	padding: 5px 0px;
}

#park-map img {
	display: inline-block;
	height: auto;
	max-width: 100%;
	margin: 0 auto;
}

/*--------------------------------------------------------
					News and Events Feeds
--------------------------------------------------------*/
.event-date-wrap {
	border: 3px solid #007BC2;
	font-weight: bold;
	min-width: 45px;
	max-width: 100%;
}

.event-month {
	font-size: 11px;
	color: white;
	background-color: #007BC2;
	letter-spacing: .5px;
	padding: 3px;
	text-align: center;
	text-transform: uppercase;
}

.event-date {
	line-height: 1.6;
	text-align: center;
}

.news-item {
	padding: 5px 0px;
}

.date {
	padding-bottom: 2px;
	font-weight: bold;
}

.description {
	display: none;
}

/*--------------------------------------------------------
				CSS Styles for Inner Pages
--------------------------------------------------------*/
/*----------Responsive Nivo*/
div[id^=slider-container-FD],
div[id^=slider_FD],
.nivoSlider img {
	max-width: 100% !important;
	height: auto !important;
}

/*----------Nivo Controls*/
.nivo-prevNav,
.nivo-nextNav {
	background-image: none !important;
	width: 25px !important;
	top: 25% !important;
	/*Fallback for browsers that don't support calc*/
	top: calc(50% - 50px) !important;
	text-decoration: none;
	color: white;
	font-weight: bold;
	font-size: 75px;
	font-family: Arial, sans-serif;
	text-shadow: 0px 0px 10px rgba(51, 51, 51, 0.4);
}

.nivo-prevNav:hover,
.nivo-nextNav:hover {
	text-decoration: none;
	color: #ae0e0d;
	text-shadow: none;
}

.nivo-prevNav {
	left: 10px !important;
}

.nivo-nextNav {
	right: 10px !important;
}

.nivo-prevNav:after {
	content: "‹";
}

.nivo-nextNav:after {
	content: "›";
}

/*--------------------------------------------------------
						Footer
--------------------------------------------------------*/
#footer-row {
	position: relative;
	background-color: #002FBA;
	color: white;
	text-align: center;
	/* -webkit-box-shadow: 0px -10px 10px 0px rgba(61,75,244,0.75); 
	box-shadow: 0px -10px 10px 0px rgba(61,75,244,0.75); */
	padding: 20px 0px;
	margin-top: 20px;
}

#footer-row a {
	color: white;
}

/*--------------------------------------------------------
						MMS Styling
--------------------------------------------------------*/

/* admin menu */

#admin_menu_wrap_5 .nav>li>a:hover,
#admin_menu_wrap_5 .nav>li>a:focus {
	background-color: rgba(255, 255, 255, .1);
	color: white;
}

#admin_menu_wrap_5 .nav .open>a,
#admin_menu_wrap_5 .nav .open>a:focus,
#admin_menu_wrap_5 .nav .open>a:hover {
	background-color: rgba(255, 255, 255, .1);
	color: white;
}

#admin_menu_wrap_5 .dropdown-menu>li>a:focus,
#admin_menu_wrap_5 .dropdown-menu>li>a:hover {
	background-color: rgba(255, 255, 255, .1);
	color: white;
}

/* members menu */

#member_menu_wrap_5 .dropdown-menu li {
	background-color: #f8f8f8;
	/* background-color: #e7e7e7; */
	color: #555;
}

#member_menu_wrap_5 .navbar-nav>li a {
	color: #555;
}