@import url("fontawesome-all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Source+Sans+Pro:ital,wght@0,400;0,600;0,700;1,400&display=swap");

/*
	Murray-Calloway Cycling Team Website
	murcalcycling.org
	
	Based on TXT by HTML5 UP
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

/* Reset */
html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	-webkit-text-size-adjust: none;
}

mark {
	background-color: transparent;
	color: inherit;
}

input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input, select, textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

/* Basic */
html {
	box-sizing: border-box;
}

*, *:before, *:after {
	box-sizing: inherit;
}

body {
	background: #f8f9fa;
}

body.is-preload *, body.is-preload *:before, body.is-preload *:after {
	-moz-animation: none !important;
	-webkit-animation: none !important;
	-ms-animation: none !important;
	animation: none !important;
	-moz-transition: none !important;
	-webkit-transition: none !important;
	-ms-transition: none !important;
	transition: none !important;
}

body, input, textarea, select {
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	color: #2d3436;
	font-size: 14pt;
	line-height: 1.8em;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: #2d3436;
	margin: 0 0 0.5em 0;
	line-height: 1.3;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	text-decoration: none;
	color: inherit;
}

h2 {
	font-size: 1.75em;
}

h2.major {
	position: relative;
	font-size: 1.75em;
	text-align: left;
	margin: 0 0 2em 0;
	padding-bottom: 0.5em;
}

h2.major:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 4px;
	background: #92c83e;
	border-radius: 2px;
}

h2.major span {
	display: inline-block;
}

h3, h4 {
	font-size: 1.35em;
}

a {
	color: #0d9b6f;
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: #92c83e;
}

b, strong {
	font-weight: 700;
	color: #2d3436;
}

i, em {
	font-style: italic;
}

br.clear {
	clear: both;
}

sub {
	position: relative;
	top: 0.5em;
	font-size: 0.8em;
}

sup {
	position: relative;
	top: -0.5em;
	font-size: 0.8em;
}

hr {
	border: 0;
	border-top: solid 2px #dfe6e9;
	margin: 0 0 2em 0;
}

blockquote {
	border-left: solid 4px #92c83e;
	padding: 1em 0 1em 1.5em;
	font-style: italic;
	background: #fff;
	margin: 0 0 2em 0;
}

p, ul, ol, dl, table {
	margin-bottom: 2em;
}

/* Section/Article */
section, article {
	margin-bottom: 4em;
}

section > :last-child, section:last-child, article > :last-child, article:last-child {
	margin-bottom: 0;
}

header > p {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: #636e72;
}

/* Container */
.container {
	margin: 0 auto;
	max-width: 100%;
	width: 68em;
}

@media screen and (max-width: 1680px) {
	.container {
		width: 75em;
	}
}

@media screen and (max-width: 1280px) {
	.container {
		width: calc(100% - 80px);
	}
}

@media screen and (max-width: 980px) {
	.container {
		width: calc(100% - 60px);
	}
}

@media screen and (max-width: 736px) {
	.container {
		width: calc(100% - 40px);
	}
}

@media screen and (max-width: 360px) {
	.container {
		width: calc(100% - 30px);
	}
}

/* Row */
.row {
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	align-items: stretch;
}

.row > * {
	box-sizing: border-box;
}

.row.gtr-uniform > * > :last-child {
	margin-bottom: 0;
}

.row.aln-left {
	justify-content: flex-start;
}

.row.aln-center {
	justify-content: center;
}

.row.aln-right {
	justify-content: flex-end;
}

.row.aln-top {
	align-items: flex-start;
}

.row.aln-middle {
	align-items: center;
}

.row.aln-bottom {
	align-items: flex-end;
}

.row > .imp {
	order: -1;
}

.row > .col-1 { width: 8.33333%; }
.row > .off-1 { margin-left: 8.33333%; }
.row > .col-2 { width: 16.66667%; }
.row > .off-2 { margin-left: 16.66667%; }
.row > .col-3 { width: 25%; }
.row > .off-3 { margin-left: 25%; }
.row > .col-4 { width: 33.33333%; }
.row > .off-4 { margin-left: 33.33333%; }
.row > .col-5 { width: 41.66667%; }
.row > .off-5 { margin-left: 41.66667%; }
.row > .col-6 { width: 50%; }
.row > .off-6 { margin-left: 50%; }
.row > .col-7 { width: 58.33333%; }
.row > .off-7 { margin-left: 58.33333%; }
.row > .col-8 { width: 66.66667%; }
.row > .off-8 { margin-left: 66.66667%; }
.row > .col-9 { width: 75%; }
.row > .off-9 { margin-left: 75%; }
.row > .col-10 { width: 83.33333%; }
.row > .off-10 { margin-left: 83.33333%; }
.row > .col-11 { width: 91.66667%; }
.row > .off-11 { margin-left: 91.66667%; }
.row > .col-12 { width: 100%; }
.row > .off-12 { margin-left: 100%; }

.row.gtr-0 { margin-top: 0px; margin-left: 0px; }
.row.gtr-0 > * { padding: 0px 0 0 0px; }
.row.gtr-25 { margin-top: -12.5px; margin-left: -12.5px; }
.row.gtr-25 > * { padding: 12.5px 0 0 12.5px; }
.row.gtr-50 { margin-top: -25px; margin-left: -25px; }
.row.gtr-50 > * { padding: 25px 0 0 25px; }
.row { margin-top: -40px; margin-left: -40px; }
.row > * { padding: 40px 0 0 40px; }
.row.gtr-150 { margin-top: -60px; margin-left: -60px; }
.row.gtr-150 > * { padding: 60px 0 0 60px; }
.row.gtr-200 { margin-top: -80px; margin-left: -80px; }
.row.gtr-200 > * { padding: 80px 0 0 80px; }

@media screen and (max-width: 980px) {
	.row > .col-6-medium { width: 50%; }
	.row > .col-12-medium { width: 100%; }
}

@media screen and (max-width: 736px) {
	.row { margin-top: -20px; margin-left: -20px; }
	.row > * { padding: 20px 0 0 20px; }
	.row > .col-12-small { width: 100%; }
}

/* Image */
.image {
	position: relative;
	display: inline-block;
	border-radius: 8px;
	overflow: hidden;
}

.image img {
	display: block;
	width: 100%;
	border-radius: 8px;
}

.image.fit {
	display: block;
	width: 100%;
}

.image.featured {
	display: block;
	width: 100%;
	margin: 0 0 2em 0;
}

.image.left {
	float: left;
	margin: 0 2em 2em 0;
}

.image.centered {
	display: block;
	margin: 0 0 2em 0;
}

.image.centered img {
	margin: 0 auto;
	width: auto;
}

/* Button */
input[type="button"],
input[type="submit"],
input[type="reset"],
button,
.button {
	-webkit-appearance: none;
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-decoration: none;
	background: #92c83e;
	color: #fff;
	border: 0;
	line-height: 1em;
	border-radius: 4px;
	outline: 0;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 1em;
	padding: 1em 2em;
	text-align: center;
	box-shadow: 0 2px 8px rgba(146, 200, 62, 0.3);
}

input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover,
.button:hover {
	background: #0d9b6f;
	box-shadow: 0 4px 12px rgba(13, 155, 111, 0.3);
	transform: translateY(-2px);
}

input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active,
button:active,
.button:active {
	background: #0a7d5a;
	transform: translateY(0);
}

input[type="button"].alt,
input[type="submit"].alt,
input[type="reset"].alt,
button.alt,
.button.alt {
	background: transparent;
	color: #0d9b6f;
	border: 2px solid #0d9b6f;
	box-shadow: none;
}

input[type="button"].alt:hover,
input[type="submit"].alt:hover,
input[type="reset"].alt:hover,
button.alt:hover,
.button.alt:hover {
	background: #0d9b6f;
	color: #fff;
}

input[type="button"].large,
input[type="submit"].large,
input[type="reset"].large,
button.large,
.button.large {
	font-size: 1.25em;
	padding: 1.1em 2.5em;
}

/* List */
ul {
	list-style: disc;
	padding-left: 1.5em;
}

ul li {
	padding-left: 0.5em;
	margin-bottom: 0.5em;
}

ol {
	list-style: decimal;
	padding-left: 1.5em;
}

ol li {
	padding-left: 0.25em;
	margin-bottom: 0.5em;
}

/* Divided */
ul.divided {
	list-style: none;
	padding-left: 0;
}

ul.divided > li {
	border-top: solid 1px #dfe6e9;
	padding-top: 1.5em;
	margin-top: 1.5em;
	padding-left: 0;
}

ul.divided > li:first-child {
	border-top: 0;
	padding-top: 0;
	margin-top: 0;
}

/* Actions */
ul.actions {
	list-style: none;
	padding-left: 0;
	margin: 2em 0 0 0;
}

ul.actions li {
	display: inline-block;
	margin: 0 0.5em 0.5em 0;
	padding-left: 0;
}

ul.actions li:first-child {
	margin-left: 0;
}

ul.actions.centered {
	text-align: center;
}

/* Contact */
ul.contact {
	list-style: none;
	padding-left: 0;
	cursor: default;
}

ul.contact li {
	transition: transform 0.2s ease;
	position: relative;
	display: inline-block;
	margin: 0 0.5em;
	padding-left: 0;
}

ul.contact li a {
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	outline: 0;
	background: #0d9b6f;
	color: #fff;
}

ul.contact li a:before {
	font-size: 20px;
}

ul.contact li:hover {
	transform: translateY(-4px);
}

ul.contact li:hover a {
	background: #92c83e;
}

/* Quick Links Cards */
.quick-links {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5em;
	margin-bottom: 3em;
}

.quick-links .card {
	background: #fff;
	border-radius: 8px;
	padding: 2em 1.5em;
	text-align: center;
	box-shadow: 0 2px 15px rgba(0,0,0,0.06);
	transition: all 0.3s ease;
	text-decoration: none;
	display: block;
}

.quick-links .card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.quick-links .card .icon {
	font-size: 2.5em;
	color: #92c83e;
	margin-bottom: 0.5em;
}

.quick-links .card h3 {
	font-size: 1.1em;
	margin-bottom: 0.25em;
	color: #2d3436;
}

.quick-links .card p {
	font-size: 0.9em;
	color: #636e72;
	margin: 0;
}

@media screen and (max-width: 980px) {
	.quick-links {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 480px) {
	.quick-links {
		grid-template-columns: 1fr;
	}
}

/* FAQ Accordion */
.faq-section {
	margin-bottom: 1em;
}

.faq-question {
	background: #fff;
	border: 1px solid #dfe6e9;
	border-radius: 8px;
	padding: 1.25em 1.5em;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.2s ease;
	margin-bottom: 0.5em;
}

.faq-question:hover {
	border-color: #92c83e;
}

.faq-question h3 {
	margin: 0;
	font-size: 1.1em;
	font-weight: 600;
}

.faq-question .toggle-icon {
	font-size: 1.5em;
	color: #92c83e;
	transition: transform 0.3s ease;
}

.faq-question.active {
	border-color: #92c83e;
	background: linear-gradient(135deg, #92c83e 0%, #0d9b6f 100%);
	color: #fff;
}

.faq-question.active h3 {
	color: #fff;
}

.faq-question.active .toggle-icon {
	color: #fff;
	transform: rotate(45deg);
}

.faq-answer {
	display: none;
	background: #fff;
	border: 1px solid #dfe6e9;
	border-top: 0;
	border-radius: 0 0 8px 8px;
	padding: 1.5em;
	margin-top: -0.5em;
	margin-bottom: 0.5em;
}

.faq-answer.active {
	display: block;
}

.faq-answer p:last-child {
	margin-bottom: 0;
}

/* Leadership Cards */
.leadership-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2em;
	margin: 2em 0;
}

.leader-card {
	background: #fff;
	border-radius: 8px;
	padding: 2em;
	text-align: center;
	box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.leader-card h4 {
	margin: 0 0 0.25em 0;
	color: #2d3436;
}

.leader-card .role {
	color: #0d9b6f;
	font-weight: 600;
	font-size: 0.9em;
}

/* External Links */
.external-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	margin: 2em 0;
}

.external-links a {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	padding: 0.75em 1.25em;
	background: #fff;
	border: 1px solid #dfe6e9;
	border-radius: 6px;
	color: #2d3436;
	text-decoration: none;
	transition: all 0.2s ease;
	font-weight: 500;
}

.external-links .resource-logo {
	height: 28px;
	width: auto;
	object-fit: contain;
	vertical-align: middle;
}

.external-links a:hover {
	border-color: #92c83e;
	background: #92c83e;
	color: #fff;
}

.external-links a i {
	color: #0d9b6f;
}

.external-links a:hover i {
	color: #fff;
}

/* Meta */
ul.meta {
	font-size: 0.9em;
	color: #636e72;
	list-style: none;
	padding-left: 0;
}

ul.meta li {
	position: relative;
	display: inline-block;
	margin-left: 1em;
	padding-left: 0;
}

ul.meta li a {
	color: inherit;
	outline: 0;
}

ul.meta li:first-child {
	margin-left: 0;
}

ul.meta li:before {
	opacity: 0.5;
	cursor: default;
	margin-right: 0.5em;
}

/* Menu */
ul.menu {
	list-style: none;
	padding-left: 0;
}

ul.menu li {
	border-left: solid 1px #dfe6e9;
	display: inline-block;
	padding: 0 0 0 0.75em;
	margin: 0 0 0 0.75em;
}

ul.menu li:first-child {
	border-left: 0;
	margin-left: 0;
	padding-left: 0;
}

/* Forms */
form label {
	display: block;
	margin: 0 0 0.5em 0;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: #2d3436;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form select,
form textarea {
	-webkit-appearance: none;
	display: block;
	width: 100%;
	border-radius: 6px;
	border: solid 2px #dfe6e9;
	background: #fff;
	transition: border-color 0.2s ease;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus,
form select:focus,
form textarea:focus {
	border-color: #92c83e;
	outline: none;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form select {
	line-height: 3em;
	padding: 0 1em;
}

form textarea {
	min-height: 9em;
	padding: 1em;
}

form ::-webkit-input-placeholder { color: #636e72 !important; }
form :-moz-placeholder { color: #636e72 !important; }
form ::-moz-placeholder { color: #636e72 !important; }
form :-ms-input-placeholder { color: #636e72 !important; }
form ::-moz-focus-inner { border: 0; }

/* Tables */
table {
	width: 100%;
}

table.default {
	width: 100%;
}

table.default tr {
	border-top: solid 1px #dfe6e9;
}

table.default tr:first-child {
	border-top: 0;
}

table.default td {
	padding: 0.75em 1em;
}

table.default th {
	text-align: left;
	padding: 0.75em 1em;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: #2d3436;
	background: #f8f9fa;
}

table.default thead {
	background: #0d9b6f;
	color: #fff;
}

table.default thead th {
	color: #fff;
	background: transparent;
}

/* Box */
.box {
	background: #fff;
	border-radius: 8px;
	padding: 2em;
	box-shadow: 0 2px 15px rgba(0,0,0,0.06);
	margin-bottom: 2em;
}

.box.highlight {
	text-align: center;
	padding: 3em 2em;
}

.box.highlight h2 {
	font-size: 2.5em;
	margin: 0 0 0.25em 0;
}

.box.highlight h2:after {
	display: none;
}

.box.highlight header > p {
	font-size: 1.35em;
	margin: 0 0 1.5em 0;
}

.box.feature {
	text-align: center;
}

.box.post header {
	margin: 0 0 2em 0;
}

.box.post h3 {
	font-size: 2em;
	margin: 0 0 0.25em 0;
}

.box.post header > p {
	font-size: 1.25em;
	margin: 0 0 0.5em 0;
}

.box.post ul.meta {
	margin: 0 0 0.5em 0;
}

.box.post-summary h3 {
	line-height: 1.3em;
	margin: 0 0 0.5em 0;
}

.box.post-summary .meta {
	margin: 0;
	line-height: 1em;
}

.box.page-content header {
	margin: 0 0 2em 0;
}

.box.page-content h2 {
	font-size: 2.5em;
	margin: 0 0 0.5em 0;
}

.box.page-content h2:after {
	display: none;
}

.box.page-content header > p {
	font-size: 1.35em;
	margin: 0 0 0.5em 0;
}

.box.page-content ul.meta {
	margin: 0 0 0.5em 0;
}

/* Mission Box */
.mission-box {
	background: linear-gradient(135deg, #0d9b6f 0%, #92c83e 100%);
	color: #fff;
	padding: 3em;
	border-radius: 8px;
	margin: 2em 0;
}

.mission-box h2 {
	color: #fff;
}

.mission-box h2:after {
	background: rgba(255,255,255,0.5);
}

.mission-box p {
	font-size: 1.1em;
	line-height: 1.9em;
}

/* Icons */
.icon {
	text-decoration: none;
	position: relative;
}

.icon:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	text-transform: none !important;
	font-family: 'Font Awesome 5 Free';
	font-weight: 400;
}

.icon:before {
	line-height: inherit;
}

.icon > .label {
	display: none;
}

.icon.solid:before {
	font-weight: 900;
}

.icon.brands:before {
	font-family: 'Font Awesome 5 Brands';
}

/* Page Wrapper */
#page-wrapper > section {
	margin-bottom: 0;
}

/* Header */
#header {
	text-align: center;
	padding: 2.5em 0;
	background: #fff;
	margin: 0 auto;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

#header .logo {
	position: relative;
	text-align: center;
}

#header .logo div {
	display: inline-block;
}

#header .logo h1 {
	display: inline;
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 2em;
	color: #0d9b6f;
}

#header .logo h1 span {
	color: #92c83e;
}

#header .logo p {
	display: block;
	color: #636e72;
	font-size: 0.9em;
	margin-top: 0.25em;
}

#header .header-logo {
	display: block;
	max-height: 200px;
	height: auto;
	margin: 0 auto 0.5em;
}

/* Nav */
body {
	padding-top: 60px;
}

#nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	background: #0d9b6f;
	width: 100%;
	height: 60px;
	line-height: 60px;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	cursor: default;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#nav ul {
	position: relative;
	z-index: 1001;
	padding: 0;
	margin: 0;
}

#nav li {
	display: inline-block;
	margin: 0 0.25em;
	position: relative;
	list-style: none;
}

#nav li > ul {
	display: none;
}

#nav li a, #nav li span {
	transition: all 0.2s ease;
	position: relative;
	display: block;
	text-decoration: none;
	color: rgba(255,255,255,0.85);
	padding: 0 1.25em;
	border-radius: 4px;
	outline: 0;
	font-size: 0.9em;
}


#nav li:hover a, #nav li:hover span {
	color: #fff;
	background: rgba(255,255,255,0.15);
}

#nav li.current a {
	background: #92c83e;
	color: #fff;
}

#nav .nav-logo {
	margin-top: 8px;
	padding: 0 0.75em;
	line-height: 0;
	border-radius: 4px;
}

#nav .nav-logo img {
	max-height: 44px;
	height: auto;
	width: auto;
	vertical-align: middle;
}

.dropotron {
	list-style: none;
	background: #fff;
	border-radius: 6px;
	line-height: 2.5em;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	padding: 0.75em 0;
	text-align: left;
	min-width: 14em;
	margin-top: 0;
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.dropotron li {
	padding-left: 0;
}

.dropotron li > a, .dropotron li > span {
	display: block;
	color: #2d3436;
	text-decoration: none;
	padding: 0.25em 1.25em;
	font-size: 0.9em;
}

.dropotron li:hover > a, .dropotron li:hover > span {
	color: #fff;
	background: #92c83e;
}

.dropotron li.active > a, .dropotron li.active > span {
	color: #fff;
	background: #0d9b6f;
}

.dropotron li:first-child {
	border-top: 0;
}

.dropotron.level-0 {
	margin-top: 0.5em;
	font-size: 0.95em;
}

.dropotron.level-0:before {
	content: '';
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: -8px;
	border-bottom: solid 8px #fff;
	border-left: solid 8px transparent;
	border-right: solid 8px transparent;
}

/* Banner */
#banner {
	position: relative;
	background: linear-gradient(135deg, rgba(13, 155, 111, 0.9) 0%, rgba(146, 200, 62, 0.85) 100%),
				url("../../images/banner.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 1;
	padding: 10em 0;
}

#banner .content {
	position: relative;
	text-align: center;
	margin: 0 auto;
	padding: 0 2em;
	max-width: 800px;
}

#banner .content h2 {
	color: #fff;
	font-size: 3em;
	margin: 0 0 0.3em 0;
	text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

#banner .content p {
	display: block;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	color: rgba(255,255,255,0.9);
	font-size: 1.35em;
	margin: 0 0 1.5em 0;
	line-height: 1.6em;
}

#banner .content .button {
	background: #fff;
	color: #0d9b6f;
	font-size: 1.1em;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#banner .content .button:hover {
	background: #92c83e;
	color: #fff;
}

/* Main */
#main {
	background: #f8f9fa;
	padding: 3em 0;
}

/* Sidebar + Content */
.sidebar h2.major {
	text-align: left;
	margin: 0 0 1.5em 0;
}

.sidebar h2.major span {
	padding-left: 0;
}

/* Footer */
#footer {
	background: #2d3436;
	color: #b2bec3;
	text-align: center;
	padding: 1.25em 0;
}

#footer a {
	color: #92c83e;
}

#footer a:hover {
	color: #fff;
}

#footer h2.major {
	margin: 0 0 1.5em 0;
	color: #fff;
}

#footer h2.major:after {
	background: #92c83e;
}

#footer .contact-info {
	margin-bottom: 2em;
}

#footer .contact-info p {
	margin: 0.5em 0;
	font-size: 1.1em;
}

#footer ul.contact li a {
	background: rgba(255,255,255,0.1);
}

#footer ul.contact li:hover a {
	background: #92c83e;
}

/* Copyright */
#copyright {
	display: inline-block;
	background: rgba(255,255,255,0.05);
	padding: 0.75em 1.5em;
	border-radius: 6px;
	color: #636e72;
	margin: 0;
}

/* Design credit: hide ": HTML5 UP" until hover, question mark cursor */
.design-credit-link {
	cursor: help;
}

.design-credit-link .design-credit {
	opacity: 0;
	transition: opacity 0.2s ease;
}

.design-credit-link:hover .design-credit {
	opacity: 1;
}

#copyright a {
	color: inherit;
}

#copyright .menu {
	margin: 0;
}

#copyright .menu li {
	border-color: rgba(255,255,255,0.1);
	line-height: 1em;
}

/* Responsive: Large */
@media screen and (max-width: 1280px) {
	body, input, textarea, select {
		font-size: 12pt;
	}

	.box.highlight h2 {
		font-size: 2em;
	}

	.box.highlight header > p {
		font-size: 1.15em;
	}

	#header .logo h1 {
		font-size: 1.75em;
	}

	#banner {
		padding: 7em 0;
	}

	#banner .content h2 {
		font-size: 2.5em;
	}

	#banner .content p {
		font-size: 1.2em;
	}

	#footer {
		padding: 1.25em 0;
	}
}

/* Responsive: Medium (Tablet) */
#navPanel, #titleBar {
	display: none;
}

@media screen and (max-width: 980px) {
	html, body {
		overflow-x: hidden;
	}

	.box br {
		display: none;
	}

	#header {
		padding: 1em 0;
		margin-top: 40px;
	}

	#header .header-logo {
		max-height: 72px;
		margin-bottom: 0.25em;
	}

	#header .logo h1,
	#header .logo p {
		font-size: 0.85em;
	}

	#banner {
		padding: calc(10em + 44px) 0 10em 0;
	}

	#nav {
		display: none;
	}

	.sidebar {
		border-top: solid 2px #dfe6e9;
		padding-top: 40px;
	}

	body {
		padding-top: 44px;
	}

	body.homepage {
		padding-top: 0;
	}

	#page-wrapper {
		-moz-backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;
		-moz-transition: -moz-transform 0.5s ease;
		-webkit-transition: -webkit-transform 0.5s ease;
		-ms-transition: -ms-transform 0.5s ease;
		transition: transform 0.5s ease;
		padding-bottom: 1px;
	}

	#titleBar {
		-moz-backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;
		-moz-transition: -moz-transform 0.5s ease;
		-webkit-transition: -webkit-transform 0.5s ease;
		-ms-transition: -ms-transform 0.5s ease;
		transition: transform 0.5s ease;
		display: block;
		height: 44px;
		left: 0;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 10001;
		background: #0d9b6f;
	}

	#titleBar .title {
		display: block;
		position: relative;
		font-family: 'Montserrat', sans-serif;
		font-weight: 700;
		font-size: 1em;
		line-height: 44px;
		color: #fff;
		z-index: 1000;
		text-align: center;
	}

	#titleBar .title img {
		display: none;
	}

	#titleBar .toggle {
		text-decoration: none;
		position: absolute;
		left: 0;
		top: 0;
		width: 60px;
		height: 44px;
		z-index: 1001;
	}

	#titleBar .toggle:before {
		-moz-osx-font-smoothing: grayscale;
		-webkit-font-smoothing: antialiased;
		display: inline-block;
		font-style: normal;
		font-variant: normal;
		text-rendering: auto;
		line-height: 1;
		text-transform: none !important;
		font-family: 'Font Awesome 5 Free';
		font-weight: 900;
	}

	#titleBar .toggle:before {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		left: 0;
		top: 0;
		background: #92c83e;
		width: 44px;
		height: 44px;
		content: '\f0c9';
		color: #fff;
		font-size: 18px;
	}

	#titleBar .toggle:active:before {
		background-color: #7db332;
	}

	#navPanel {
		-moz-backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;
		-moz-transform: translateX(-275px);
		-webkit-transform: translateX(-275px);
		-ms-transform: translateX(-275px);
		transform: translateX(-275px);
		-moz-transition: -moz-transform 0.5s ease;
		-webkit-transition: -webkit-transform 0.5s ease;
		-ms-transition: -ms-transform 0.5s ease;
		transition: transform 0.5s ease;
		display: block;
		height: 100%;
		left: 0;
		overflow-y: auto;
		position: fixed;
		top: 0;
		width: 275px;
		z-index: 10002;
		background: #2d3436;
		font-family: 'Montserrat', sans-serif;
		font-weight: 600;
		font-size: 1em;
		box-shadow: 3px 0 15px rgba(0,0,0,0.2);
	}

	#navPanel nav {
		position: relative;
		z-index: 1000;
		padding-top: 0.5em;
	}

	#navPanel .link {
		display: block;
		color: inherit;
		text-decoration: none;
		height: 44px;
		line-height: 44px;
		padding: 0 1.25em;
		color: rgba(255, 255, 255, 0.65);
		border-top: solid 1px rgba(255,255,255,0.1);
		font-size: 0.9em;
	}

	#navPanel .link:first-child {
		border-top: 0;
	}

	#navPanel a.nav-logo img {
		display: none;
	}

	#navPanel a.nav-logo::after {
		content: 'Home';
	}

	#navPanel .link:hover {
		color: #fff;
		background: rgba(255,255,255,0.05);
	}

	#navPanel .indent-1 { display: inline-block; width: 1em; }
	#navPanel .indent-2 { display: inline-block; width: 2em; }
	#navPanel .indent-3 { display: inline-block; width: 3em; }
	#navPanel .indent-4 { display: inline-block; width: 4em; }
	#navPanel .indent-5 { display: inline-block; width: 5em; }

	#navPanel .depth-0 {
		color: #fff;
	}

	body.navPanel-visible #page-wrapper {
		-moz-transform: translateX(275px);
		-webkit-transform: translateX(275px);
		-ms-transform: translateX(275px);
		transform: translateX(275px);
	}

	body.navPanel-visible #titleBar {
		-moz-transform: translateX(275px);
		-webkit-transform: translateX(275px);
		-ms-transform: translateX(275px);
		transform: translateX(275px);
	}

	body.navPanel-visible #navPanel {
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

/* Responsive: Small (Mobile) */
@media screen and (max-width: 736px) {
	body, input, textarea, select {
		font-size: 11pt;
	}

	h2 {
		font-size: 1.35em;
	}

	h2.major {
		font-size: 1.35em;
		margin: 0 0 1.5em 0;
	}

	section, article {
		margin-bottom: 2em;
	}

	input[type="button"],
	input[type="submit"],
	input[type="reset"],
	button,
	.button {
		display: block;
		width: 100%;
	}

	input[type="button"].large,
	input[type="submit"].large,
	input[type="reset"].large,
	button.large,
	.button.large {
		font-size: 1.1em;
	}

	ul.actions li {
		display: block;
		margin: 0.75em 0 0 0;
	}

	ul.actions li:first-child {
		margin-top: 0;
	}

	.box {
		padding: 1.5em;
	}

	.box.highlight h2 {
		font-size: 1.75em;
	}

	.box.highlight header > p {
		font-size: 1.1em;
	}

	.box.page-content h2 {
		font-size: 1.75em;
	}

	.box.page-content header > p {
		font-size: 1.1em;
	}

	#banner {
		padding: calc(5em + 44px) 0 5em 0;
	}

	#banner .content {
		padding: 0 1.5em;
	}

	#banner .content h2 {
		font-size: 1.75em;
	}

	#banner .content p {
		font-size: 1.1em;
	}

	#main {
		padding: 3em 0;
	}

	.sidebar {
		border-top: solid 2px #dfe6e9;
		padding-top: 40px;
		margin-top: 20px;
	}

	#footer {
		padding: 1.25em 0;
	}

	#copyright .menu li {
		display: block;
		border-left: 0;
		padding-left: 0;
		line-height: 1.75em;
	}

	.mission-box {
		padding: 2em 1.5em;
	}
}

/* Extra Small */
@media screen and (max-width: 360px) {
	body, input, textarea, select {
		font-size: 10pt;
	}
}
