@charset "UTF-8";
/*
Theme Name: Wagman Twenty Nineteen
Theme URI: https://www.wagman.com/themes/wagman_twentynineteen
Author: Wagman Marketing Team
Author URI: https://www.wagman.com/
Description: The 2019 theme for the Wagman website.
Requires at least: WordPress 4.9.6
Version: 1.3
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: wagman_twentynineteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Normalize
2.0 Accessibility
3.0 Alignments
4.0 Clearings
5.0 Typography
6.0 Forms
7.0 Formatting
8.0 Lists
9.0 Tables
10.0 Linkssw
11.0 Featured Image Hover
12.0 Navigation
13.0 Layout
   13.1 Header
   13.2 Front Page
   13.3 Regular Content
   13.4 Posts
   13.5 Pages
   13.6 Footer
14.0 Comments
15.0 Widgets
16.0 Media
   16.1 Galleries
17.0 Customizer
18.0 SVGs Fallbacks
19.0 Media Queries
20.0 Print
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Normalize
Styles based on Normalize v5.0.0 @link https://github.com/necolas/normalize.css
--------------------------------------------------------------*/

html {
	font-family: franklin-gothic-urw, sans-serif;
    font-weight: 400;
	line-height: 1.15;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
    background-color: #005492;
	margin: 0;
    padding: 0;
}

article,
aside,
footer,
header,
nav,
section {
	display: block;
}

figcaption,
figure,
main {
	display: block;
}

figure {
	margin: 0 0 1em;
	max-width:100%;
}

hr {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

a {
	background-color: transparent;
	-webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
	outline-width: 0;
}

abbr[title] {
	border-bottom: 1px #767676 dotted;
	text-decoration: none;
}

b,
strong {
	font-weight: inherit;
}

b,
strong {
	font-weight: 700;
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

dfn {
	font-style: italic;
}

mark {
	background-color: #eee;
	color: #222;
}

small {
	font-size: 85%;
}

sub,
sup {
	font-size: 0.625rem;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

h1 sub, h2 sub, h3 sub,
h1 sup, h2 sup, h3 sup {
	font-size: 0.875rem;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

h1 sup, h2 sup {
	top: -1em;
}


.wp-caption img {
	margin-bottom:0.25em;
}

.wp-caption-text {
	font-size:0.875rem;
	line-height:1.25rem;
	font-style:italic;
}

audio,
video {
	display: inline-block;
}

.videoContainer {
	position:relative;
	margin:0 auto 1em;
	padding-bottom: 56.25%;
	height: 0;
	max-width:100%;
	height:auto;
}
.videoContainer iframe,
.videoContainer object,
.videoContainer embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

img {
	border-style: none;
	max-width:100%;
	height:auto;
}

svg:not(:root) {
	overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
	font-family: sans-serif;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

select {
	-webkit-appearance:none;
	-moz-appearance: none;
	max-width: 100%;
	background: #f1f1f1 url("ui/angle-down.png") right no-repeat;
	background-size: 12px;
	background-position: right 15px top 13px;
	border: solid 1px #ccc;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	border: 1px solid #bbb;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

progress {
	display: inline-block;
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type="checkbox"],
[type="radio"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

details,
menu {
	display: block;
}

summary {
	display: list-item;
}

canvas {
	display: inline-block;
}

template {
	display: none;
}

[hidden] {
	display: none;
}

/*--------------------------------------------------------------
2.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/*--------------------------------------------------------------
3.0 Alignments
--------------------------------------------------------------*/

.alignleft {
	display: block;
	margin:0 auto 0.5em
}

.alignright {
	display: block;
	margin:0 auto 0.5em
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom:0.5em;
}

.page-width	{
	position:relative;
	max-width:1200px;
	margin:0 4%;
	padding:0;
}

.center {
	text-align:center;
}

@media screen and ( min-width: 600px ) {
.alignleft {
	display: inline;
	float: left;
	margin:0 2% 1em 0;
	max-width: 48%;
}

.alignright {
	display: inline;
	float: right;
	margin:0 0 1em 2%;
	max-width:48%;
}
}

@media screen and ( min-width: 650px ) {
.block-width {
	width: 84%;
	padding-left: 2em;
    padding-right: 2em;
    margin: 2em 8%;
}
}

@media screen and ( min-width: 750px ) {
.page-width	{
	margin:0 2%;
}
.block-width {
	width: 90%;
	padding-left: 3em;
    padding-right: 3em;
    margin: 3em 5%;
}
}

@media screen and ( min-width: 1250px ) {
.page-width	{
	margin:0 auto;
}
.block-width {
	width: auto;
	padding-left: 3em;
    padding-right: 3em;
    margin: 3em auto;
	max-width: 1200px;
}
}

/*--------------------------------------------------------------
4.0 Clearings
--------------------------------------------------------------*/

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.entry-footer:before,
.entry-footer:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after,
.nav-links:before,
.nav-links:after,
.pagination:before,
.pagination:after,
.comment-author:before,
.comment-author:after,
.widget-area:before,
.widget-area:after,
.widget:before,
.widget:after,
.comment-meta:before,
.comment-meta:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.entry-footer:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after,
.nav-links:after,
.pagination:after,
.comment-author:after,
.widget-area:after,
.widget:after,
.comment-meta:after {
	clear: both;
}


/*--------------------------------------------------------------
5.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #222;
	font-family: franklin-gothic-urw, sans-serif;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	/*clear: both;*/
	color:#222;
}

h1 {
	font-family: franklin-gothic-urw-cond, sans-serif;
    font-size: 28px;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 2rem;
    margin: 0;
}

h2 {
	font-family: franklin-gothic-urw-cond, sans-serif;
	font-size: 28px;
	font-size: 1.75rem;
	font-weight:400;
	line-height:2rem;
	margin:0;
	padding:0 0 0.25em 0;
    color: #005492;
}

h3 {
	font-family: franklin-gothic-urw-cond, sans-serif;
	font-size: 22px;
	font-size: 1.375rem;
	line-height:1.5rem;
	font-weight:500;
	margin:0;
	padding:0 0 0.5em 0;
	color: #005492;
}

h4 {
	font-size: 20px;
	font-size: 1.25rem;
	line-height:1.625rem;
	font-weight:300;
	margin:0;
	padding:0 0 0.25em 0;
}

h5, h6 {
	font-size: 16px;
	font-size: 1rem;
	font-weight:700;
	line-height:1.5rem;
	margin:0;
	padding:0 0 0.25em 0;
}

h5 {
	font-weight:400;
}

p {
	margin: 0 0 1.25em;
	padding: 0;
}

#content p, #content li {
	line-height:24px;
	line-height:1.5rem;
}

#content p a, #content li a {
	text-decoration:underline;
}

#content p.caption {
	font-size: 0.875rem;
	line-height: 1.125rem;
	font-style: italic;
}

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

@media screen and (min-width: 660px) {
h1 {
	font-size:33px;
	font-size: 2.125rem;
	line-height:2.5rem;
}

h2 {
	font-size: 33px;
	font-size: 2.125rem;
	line-height: 2.25rem;
}

h3 {
	font-size: 24px;
	font-size: 1.5rem;
	line-height: 1.625rem;
}

h4 {
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 1.375rem;
}
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
    font-family: 'Merriweather', serif;
	margin: 0;
	padding: 0 0 1em;
}

blockquote p {
    margin-bottom: 0;
}

blockquote.dark-blue a {
    color: #fff;
}

blockquote cite {
	display: block;
	font-style: normal;
	font-weight: 600;
	margin-top: 0.5em;
}

blockquote.testimonial {
	border-top: solid 4px #8abf56;
    border-bottom: solid 4px #8abf56;
	background-color: #f0f0f0;
	padding: 1.5em 2em;
	margin: 1.5em 0;
	
}

blockquote.testimonial small {
    font-family: franklin-gothic-urw, sans-serif;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #eee;
	text-decoration: none;
}

big {
	font-size: 125%;
}

blockquote {
	quotes: "" "";
}

q {
	quotes: "â€œ" "â€" "â€˜" "â€™";
}

blockquote:before,
blockquote:after {
	content: "";
}

:focus {
	outline: solid 2px #ccc;
}

/*--------------------------------------------------------------
BUTTONS
--------------------------------------------------------------*/
.btn, button, input[type="button"], input[type="submit"] {
	position:relative;
	-webkit-appearance: none;
	-moz-appearance:none;
	display:inline-block;
	font-family: franklin-gothic-urw-cond, sans-serif;
	font-weight:700;
	font-size: .9375rem;
	line-height:1.2;
	text-decoration:none !important;
	text-transform: uppercase;
	cursor:pointer;
	padding:0.688em 1.5em 0.625em;
	text-align:center;
	margin:0 auto !important;
	clear:both;
	color:#fff;
	background:#005492;
	-moz-border-radius: 22px;
    -webkit-border-radius: 22px;
	 border-radius: 22px;
	border: 1px solid #005492;
	-webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}

.btn:hover, button:hover, input[type="button"]:hover, input[type="submit"]:hover {
	color:#005492;
	background:#fff;
	border-color:#005492;
}

.white-btn {
	color:#005492;
	background: #fff;
	border-color:#fff;
}

.white-btn:hover {
	color: #fff;
	background:#005492;
	border-color:#fff;
}

@media screen and (min-width: 730px) {

}



/*--------------------------------------------------------------
7.0 Formatting
--------------------------------------------------------------*/

hr {
	background-color: #bbb;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

/*--------------------------------------------------------------
8.0 Lists
--------------------------------------------------------------*/

ul,
ol {
	margin: 0 0 1.5em 2.5em;
	padding: 0;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}


/*--------------------------------------------------------------
10.0 Links
--------------------------------------------------------------*/

a {
	color: #222;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	color: #aaa;
	outline: 0;
}


/*--------------------------------------------------------------
Layout
--------------------------------------------------------------*/

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

#page {
	position: relative;
	word-wrap: break-word;
}

/*--------------------------------------------------------------
SITE ALERTS
--------------------------------------------------------------*/
.site-alert {
	display: block;
	padding: 0.25em 1.5em 0.5em;
	text-align: center;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

/*.site-alert:hover {
    opacity: .7;
}*/

.site-alert a {
	display: block;
}

.site-alert a:hover {
	opacity: .7;
}

.site-alert h3 {
    /*display: inline-block;*/
	font-size: 1.125rem;
    text-transform: uppercase;
    padding-bottom: 0;
    margin-right: 0.5em;
	/*color: #ba0c2f;*/
}

.site-alert .alert-text {
	font-size: 0.9375rem;
	line-height: 1.125rem;
	margin-bottom: 0;
}



/*--------------------------------------------------------------
Header
--------------------------------------------------------------*/
/*.site-header {
    position: fixed;
    top: 0;
    left: 0;
	width:100%;
	background:#fff;
    border-bottom: solid 2px #8abf56;
	z-index:999;
}*/

.site-header {
    /*position: fixed;
    top: 0;
    left: 0;
	position: relative;*/
	position: fixed;
	width:100%;
	/*background:#fff;*/
	background-color: #005492;
    /*border-bottom: solid 2px #8abf56;*/
	z-index:999;
}
.site-header.blue-background {
	background-color: #005492;
}
.site-header.blue-grad-background {
	background: none;
}
.site-header.blue-grad-background:before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 215px;
	background-image: url("ui/site-header-blue-grad.png");
	background-size: contain;
}
.site-header.comp-header {
	position: fixed;
    top: 0;
    left: 0;
	background-color: #005492;
}
.site-header.comp-header:before {
	background: none;
}

.admin-bar .site-header.comp-header {
    top: 46px;
}

/*.site-header .page-width {
	margin: 0;
}

@media screen and (min-width: 730px) {
.site-header .page-width {
	margin: 0 2%;
}
}

@media screen and (min-width: 1250px) {
.site-header .page-width {
	margin: 0 auto;
}
}*/

@media screen and (min-width: 783px) {
.admin-bar .site-header.comp-header {
    top: 32px;
}
}

/* Logo */
.site-branding {
	position:relative;
	z-index:9;
	float:left;
	/*margin-right:3%;
	margin-left:4%;*/
	padding:0.75em 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.header-nav-container {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: center;
	float: right;
	width: calc(100% - 210px);
	padding-left: 3%;
	margin-top: 1.65em;
}
.comp-header .header-nav-container {
	margin-top: 0.25em;
}

.custom-logo-link {
	position:relative;
	display:block;
    margin: 0;
	padding:0;
	vertical-align:middle;
	width:210px;
    height: 73px;
	background:none;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    overflow: hidden;
	z-index:999;
}

.custom-logo-link img {
	display:block;
	width:100%;
	height:auto;
	margin:0 auto;
}

.custom-logo-link a {
	display:block;
	line-height:100%;
}

.comp-header .site-branding {
    padding:0.375em 0 0.25em;
}

.comp-header .custom-logo-link {
    width: 146px;
    height: 40px;
}

/*@media screen and (min-width: 730px) {
.site-branding {
	margin-left:0;
}
}*/


/* =========== Top Nav Bar ============ */
.top-header-bar {
	position: absolute;
    top: 0;
    right: 0;
    transition: all 0.2s;
}

.comp-header .top-header-bar {
    display: none;
}

/* Site Search */
.site-search {
    position: relative;
    float: left;
    /*border: solid 1px #ccc;
    border-top: 0;*/
    height: 30px;
	margin-left: 1em;
	margin-right: 0;
    -webkit-transition:all 0.2s ease;
	transition:all 0.2s ease;
}

.site-search a {
    position: relative;
    display:block;
	/*color:#222;*/
	color: #fff;
	width: 29px;
    height: 29px;
}

.site-search::before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    /*color: #666;*/
	color: #fff;
    /*font-size: 0.9375rem;*/
	font-size: 1.375rem;
}

.site-search:hover::before {
    /*color: #ccc;*/
	opacity: .7;
}

@media screen and (min-width: 500px) {
	.site-search {
		margin-right: .5em;
	}
}

/* Skip Link Override */
a.skip-link {
    color: #fff;
}

/* Top Menu */
.top-navigation {
   display: none;
}
.top-menu {
	list-style:none;
	margin:0;
	padding:0;
	white-space:nowrap;
    border-bottom: solid 1px #ccc;
}

.top-menu li {
	display:inline-block;
    vertical-align: top;
    border-right: solid 1px #ccc;
}

.top-menu li a {
	display:block;
	font-size:0.8125rem;
	color:#666;
	padding: 0.5em 1em;
    text-transform: uppercase;
    height: 29px;
	-webkit-transition:all 0.2s ease;
	transition:all 0.2s ease;
}

.top-menu li a:hover {
	color:#cccc;
}

.top-menu li.mobile-hide {
    display: none;
}

@media screen and (min-width: 650px) {
.top-navigation {
	display: block;
    float: right;
}
}

/*@media screen and (min-width: 900px) {*/
@media screen and (min-width: 1070px) {
.top-menu li.mobile-hide {
    display: inline-block;
}
}


/* Social Menu */
.social-navigation {
	display: none;
    float: left;
	border-right: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
}

.social-navigation ul {
	list-style: none;
	margin-bottom: 0;
	margin-left: 0;
}

.social-links-menu li {
    position: relative;
	display: block;
    float: left;
    text-align: center;
    width: 29px;
    height:29px;-webkit-transition:all 0.2s ease;
	transition:all 0.2s ease;
}

.social-links-menu li::before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    color: #666;
    font-size: 0.9375rem;
}

.social-links-menu li:hover::before {
    color: #ccc;
}

.social-links-menu a {
    position: relative;
	display: block;
	height: 100%;
	width: 100%;
	
}

.social-links-menu a:hover,
.social-links-menu a:focus {
	color: #ccc;
}

.social-links-menu .svg-icon {
	display: none;
}


@media screen and (min-width: 550px) {
.social-navigation {
	display: block;
}
}


/* =========== Main Nav ============ */
.main-navigation {
	display: none;
}

.comp-header .main-navigation {
    /*margin-top: 0.25em;*/
}

.main-menu {
	margin:0;
	padding:0;
	list-style:none;
}

.main-menu li {
	position:relative;
	display:inline-block;
	clear:none;
	padding:0;
	margin:0 0 0 1em;
	cursor:pointer !important;
}

.main-menu li:first-child {
    margin-left: 0;
}

.main-menu a,
.main-navigation a {
	display:block;
    font-family: franklin-gothic-urw-cond, sans-serif;
	font-size:1.25rem;
	font-weight:500;
	line-height:100%;
	color:#005492;
	text-decoration:none;
    text-transform: uppercase;
	padding:0.5625em 0.5em;
    -webkit-transition:all 0.2s ease;
	transition:all 0.2s ease;
}

.main-menu li:first-child a,
.main-navigation li:first-child a {
    padding-left: 0;
}

.main-menu li:last-child a,
.main-navigation li:last-child a {
    padding-right: 0;
}

.main-menu a:hover,
.main-menu > li.current-menu-item > a,
.main-menu li.current-hover a,
.main-menu > li.current_page_parent > a {
	color:#8ABF56;
}

.main-mobile-navigation {
	display: none;
}

/*@media screen and (min-width: 900px) {*/
@media screen and (min-width: 1070px) {
/* =========== Main Nav ============ */
.main-navigation {
	display: block;
	position:relative;
	white-space:nowrap;
    float: right;
    /*margin-top: 3.375em;*/
	-webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.main-menu li.desktop-hide,
.main-navigation li.desktop-hide {
	display: none!important;
}
}

@media screen and (min-width: 940px) {
.main-menu li,
.main-navigation li {
	margin-left:1.5em;
}
.main-menu li:first-child,
.main-navigation li:first-child {
    margin-left: 0;
}
}

/*@media screen and (min-width: 1070px) {
	.site-header.comp-header #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
		color: #fff;
	}
}*/

/* Sub Menu Dropdowns - First Tier */
.main-menu ul {
	list-style:none;
	margin:0;
	padding:0;
}

.main-menu ul.sub-menu {
	clear:left;
	/*display:none;*/
	float:left;
	list-style:none;
	position:absolute;
	left:-0.5em;
	top:43px;
	text-align:left;
	z-index:999;
	background-color:#fff;
	border: solid 1px #ccc;
	border-top: 0;
	border-bottom:solid 2px #8ABF56;
	/*width:316px;*/
	visibility: hidden;
  	opacity: 0;
  	transition: visibility 0s, opacity 0.5s linear;
}

.site-header.comp-header .main-menu ul.sub-menu {
	top: 46px;
}

.main-menu ul.sub-menu ul.sub-menu {
	background: none;
}

.main-menu li:hover ul.sub-menu {
	/*display:block;*/
	visibility: visible;
	opacity: 1;
}

.main-menu ul.sub-menu li {
	display:block;
	margin:0;
	padding:0 1em;
	width:100%;
	height:auto;
	white-space: nowrap;
}

.main-menu ul.sub-menu li a {
	padding:0.5em 0;
	font-size:1rem;
	line-height:1.25rem;
	color: #222;
	text-transform: none;
	border-top:solid 1px #ccc;
}

.main-menu ul.sub-menu li:first-child a {
	padding-top:0.75em;
	border-top:0;
}

.main-menu ul.sub-menu li:last-child a {
	padding-bottom:0.75em;
}

.main-menu ul.sub-menu .current-menu-item > a,
.main-menu ul.sub-menu li a:hover {
	color:#005492;
}

/* Drop down - Second Tier Flyouts */
.main-menu ul.sub-menu ul.sub-menu {
	display:none;
	float:left;
	top:0;
	left:100%;
	/*border-bottom:solid 1px #8b660d;*/
}

.main-menu ul.sub-menu ul.sub-menu li:last-child {
	/*padding-bottom:0.75em;*/
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
}

.main-menu li:hover ul.sub-menu li:hover ul.sub-menu {
	display:block;
}

/* WORK MAIN NAV */
.main-menu li.nav-work > ul.sub-menu {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
}

.main-menu li.nav-work > ul.sub-menu li {
    display: inline-block;
    width: auto;
    vertical-align: top;
}

.main-menu li.nav-work > ul.sub-menu li a {
    border: none;
    text-transform: uppercase;
    padding: 0;
}

.main-menu li.nav-work > ul.sub-menu li > ul.sub-menu,
.main-menu li.nav-work > ul.sub-menu li > ul.sub-menu li {
    display: block;
}

.main-menu li.nav-work > ul.sub-menu li > ul.sub-menu {
    position: relative;
    top: auto;
    left: auto;
    border: 0;
    float: none;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.main-menu li.nav-work > ul.sub-menu li > ul.sub-menu li {
    padding: 0 0 0.25em 0;
}

.main-menu li.nav-work > ul.sub-menu li > ul.sub-menu li a {
    font-weight: 300;
    text-transform: none;
    padding: 0;
}

.main-menu li.nav-work > ul.sub-menu li > ul.sub-menu li.work-nav-services-title {
	background: #f1f1f1;
	vertical-align: top;
    margin: 0.5em -1em;
    padding: 0.5em 1em;
}

.main-menu li.nav-work > ul.sub-menu li > ul.sub-menu li.work-nav-services-title > a {
	font-weight: 700;
}


/* ============= LANGUAGE TRANSLATE ============== */
.language-translate {
    display: none;
}

@media screen and (min-width: 500px) {
	.language-translate {
		display: inline-block;
		position: relative;
		width: 116px;
		height: 46px;
	}
	.language-translate .gtranslate_wrapper {
		position: absolute;
		top: 0;
	}
}


/* ============= MOBILE MENU ============== */
/* Mobile MMenu */
.navbar-toggle {
	/*position:absolute;*/
	/*right:4%;*/
    right: calc(4% - 1em);
	/*top:2em;*/
	display:block;
	float:right;
	padding:0.75em 1em 0.75em 0;
	margin: 0!important;
	border:0;
	border-radius: 0;
	background:none;
    color: #111;
	cursor:pointer;
	-webkit-transition: all 0.2s;
    transition: all 0.2s;
	z-index:9 !important;
	clear:none;
}

.comp-header .navbar-toggle {
	top: 0;
}

@media screen and (min-width: 360px) {
	.navbar-toggle {
		padding-left: 1em;
	}
}
@media screen and (min-width: 730px) {
	.navbar-toggle {
		right: calc(0px - 1em);
	}
}

.navbar-toggle:hover {
	background:none;
}

.navbar-toggle .fal {
	font-size:1.75rem;
	/*color:#005492;*/
	color: #fff;
}

.navbar-toggle:hover .fal {
	/*color:#ccc;*/
	opacity: .7;
	background:none;
}

html.mm-wrapper_opened .navbar-toggle .fal:before {
	content:'\f00d';
}

.mm-listitem a:hover {
	color:#005492;
}

.mm-listitem .mm-btn_next:hover {
	color:#005492;
}

.mm-menu .mm-navbar a, .mm-menu .mm-navbar>* {
	color:#222;
	text-transform:uppercase;
}


/*@media screen and (min-width: 900px) {*/
@media screen and (min-width: 1070px) {
.navbar-toggle {
	display:none;
}
}


/* Search Menu */
.search-menu {
	display:none;
	position:absolute;
	right:0;
	top:34px;
	background-color:#f1f1f1;
	padding:0.5em 1em;
	white-space:nowrap;
	/*-webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;*/
}

.search-slideout {
	position:absolute;
	right:0;
	top:2px;
    vertical-align: top;
	/*z-index:99;
	-webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;*/
}

.search-slideout.search-open {
	z-index: 99;
}

.search-slideout .search-btn {
	position:absolute;
	top:0;
	right:1em;
	padding:0.5em 0;
	cursor:pointer;
}

.search-slideout .search-field {
	font-size: 0.875rem;
    padding: 0.25em;
    min-width: 170px;
}

.search-slideout .search-submit {
	background: none;
    border: 0;
    padding: 0.25em 0 0.25em 0.5em;
}

.search-slideout .search-submit:hover {
	color:#222;
}

/*.search-slideout.search-open {
	padding-top:1.75em;	
}

.search-slideout.search-open .search-menu {
	background-color:#f1f1f1;
}*/

.search-menu .fas {
	font-size:1.125rem;
}

.search-slideout .search-btn .fa-times {
	display:none;
}

.search-slideout.search-open .search-btn .fa-search {
	display:none;
}

.search-slideout.search-open .search-btn .fa-times {
	display:inline-block;
}

.search-menu a {
	color: #252525;
	-webkit-transition:all 0.2s ease;
	transition:all 0.2s ease;
}

.search-menu a:hover {
	color: #666;
}

@media screen and (min-width: 750px) {

}


/*--------------------------------------------------------------
Content Region
--------------------------------------------------------------*/
.site-content {
	position: relative;
	min-height:400px;
    /*padding-top: 52px;*/
	background-color:#fff;
	z-index: 98;
}
.site-header.comp-header .site-content {
	padding-top: 52px;
}

.page-header, .entry-header {
	position: relative;
	text-align:center;
	/*padding-top:4em;*/
	padding-top: calc(4em + 97px);
	padding-bottom:1.25em;
	/*background-color:#f1f1f1;*/
	background-color: #005492;
	margin-bottom: 3em;
    z-index: 2;
}
.site-header.comp-header .page-header, 
.site-header.comp-header .entry-header {
	padding-top: calc(4em + 50px);
}

.page-header:after, 
.entry-header:after,
.region-bottom-arrow {
	display: block;
	position: absolute;
	left: calc(50% - 15px);
	bottom: -15px;
	width: 30px;
	height: 30px;
	content: '';
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

.page-header:after, 
.entry-header:after {
	/*background-color:#f1f1f1;*/
	background-color: #005492;
} 

.page-header-eyebrow {
    font-family: franklin-gothic-urw-comp, sans-serif;
    text-transform: uppercase;
	font-size: 1rem;
    font-weight: 700;
    letter-spacing: .05em;
    /*color: #666;*/
	color: #fff;
    padding-bottom: .5em;
}

.page-header h1, .entry-header h1 {
	/*color:#005492;*/
	color: #fff;
	padding-left:4%;
	padding-right:4%;
}

.entry-header .entry-meta {
	font-family: franklin-gothic-urw-comp, sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .05em;
    /*color: #666;*/
	color: #fff;
	padding-top: 1em;
    padding-bottom: .5em;
}

.entry-header .entry-meta .author:after {
	content: '/';
	padding: 0 0.5em 0 0.75em;
}

.entry-header .entry-meta .posted-on > .updated {
	display: none;
}

.page-header-image {
    position: relative;
    margin-top: -3em;
    height: 200px;
    background-size: cover;
}

@media screen and (min-width: 660px) {
	.page-header, .entry-header {
		/*padding-top:5.75em;*/
		padding-top: calc(5.75em + 97px);
		padding-bottom:2.5em;
	}
	.site-header.comp .page-header, 
	.site-header.comp .entry-header {
		padding-top: calc(5.75em + 50px);
	}
}
@media screen and (min-width: 550px) {
	.page-header-image.medium {
    	height: 250px;
	}
	.page-header-image.tall {
    	height: 300px;
	}
}
@media screen and (min-width: 750px) {
	.page-header-image.medium {
    	height: 300px;
	}
	.page-header-image.tall {
    	height: 370px;
	}
}
@media screen and (min-width: 900px) {
	.page-header-image.medium {
    	height: 330px;
	}
	.page-header-image.tall {
    	height: 420px;
	}
}
@media screen and (min-width: 1100px) {
	.page-header-image.medium {
    	height: 350px;
	}
	.page-header-image.tall {
    	height: 500px;
	}
}

.entry-content p a {
	text-decoration:underline;
}

/* Post Navigation */
.post-navigation {
	text-align:center;
}

.post-nav-item {
	position:relative;
	display: inline-block;
    width: 34px;
    height: 34px;
    margin: 1em 5px;
	text-align: center;
    vertical-align: middle;
    background: #f1b434;
    border-radius: 50%;
	-moz-border-radius: 50%;
    -webkit-border-radius: 50%;
	-webkit-transition: background 0.2s ease;
	transition:background 0.2s ease-in-out;
}

.post-nav-item:hover {
	background-color:#58585a;
}

.post-nav-item a {
	display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.post-nav-item .fa:before {
    position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	color:#fff;
	font-size: 1.5rem;
}

.entry-footer {
	text-align:center;
}

@media screen and (min-width: 680px) {
.narrow-column {
	width:70%;
	margin:0 auto;
}
}


/*--------------------------------------------------------------
PAGE HEADER REGIONS
--------------------------------------------------------------*/
.hero-image {
	position:relative;
	background-color:#acacac;
	background-size:cover;
	background-position:center center;
	padding:24% 0;
}

.hero-image h1.entry-title {
	position:absolute;
	bottom:1.5em;
	left:50%;
	font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    display: inline-block;
    border: solid 1px #fff;
    line-height: 100%;
    padding: 0.5em 1.5em;
	-webkit-transform:translateX(-50%);
	transform:translateX(-50%);
}

.hero-image .hero-image-logo {
	position:absolute;
	top:50%;
	left:50%;
	max-width:600px;
	max-height:250px;
	-webkit-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
}

@media screen and (min-width: 1250px) {

}



/*--------------------------------------------------------------
PAGE REGIONS
--------------------------------------------------------------*/
.standard-content {
	position:relative;
	padding:0 0 1.5em;
	z-index:9;
}

.region {
	position:relative;
	padding:1.5em 0;
	z-index:9;
}

.site-main .region:last-child {
	padding-bottom: 3em;
}

.region-button {
	text-align:center;
	padding-bottom:1em;
	clear:both;
}

.region.white,
.white {
	background-color:#FFF;
}

.region.light-gray,
.light-gray {
	background-color:#f0f0f0;
}

.region.light-blue,
.light-blue {
	background-color:#d2e4f1;
}

.region.dark-gray,
.dark-gray {
	background-color:#707070;
	color:#fff;
}

.region.dark-blue,
.dark-blue {
	background-color:#005492;
	color:#fff;
}

.region-header {
	text-align:center;
	padding-bottom:1em;
}

.region.light-gray .region-button .btn,
.region.dark-gray .region-button .btn,
.region.light-blue .region-button .btn,
.region.image-background .region-button .btn {
	border-color:#fff;
}

.region.dark-gray .region-button .btn,
.region.image-background .region-button .btn {
	color:#005492;
}

.region.dark-gray .region-button .btn:hover,
.region.image-background .region-button .btn:hover {
	color:#fff;
	border-color:#005492;
}

.region.dark-gray h1,
.region.dark-gray h2,
.region.dark-gray h3,
.region.dark-gray h4,
.region.dark-gray h5,
.region.dark-gray h6,
.region.dark-gray a {
	color:#fff;
}

.region.dark-gray a:hover {
	color:#ccc;
}

.dark-blue h1,
.dark-blue h2,
.dark-blue h3,
.dark-blue h4,
.dark-blue h5,
.dark-blue h6,
.dark-blue a:not(.btn) {
	color:#fff;
}

.dark-blue a:not(.btn):hover {
	color:#ccc;
}

.region.image {
	background-size:cover;
	background-position:center center;
	background-repeat: no-repeat;
}

.region.image.light {
	color:#fff;
}

.region.image.light h1,
.region.image.light h2,
.region.image.light h3,
.region.image.light h4,
.region.image.light h5,
.region.image.light h6,
.region.image.light a {
	color:#fff;
}

.region.image.light a.btn {
	color:#005492;
}

.region.image.light a.btn:hover {
	color:#fff;
}

.region.image.light a:hover {
	color:#eee;
}

.light-gray-overlay {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.3);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.gray-overlay {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.5);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.dark-gray-overlay {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.7);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.white-overlay {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:rgba(255,255,255,0.6);
}

.region-header h1 {
	margin-bottom:0.25em;
}

.region-intro-text {
	padding-bottom:1em;
}

.region-header h2.region-subhead {
	font-size:1.5rem;
	line-height:1.75rem;
}

.region-header h3.region-subhead {
	font-size:1.375rem;
	line-height:1.5rem;
}

.region-header h4.region-subhead {
	font-size:1.25rem;
	line-height:1.375rem;
	font-weight:400;
}

.region-header p {
	font-size:1.125rem;
	line-height:1.75rem;
	padding-left:10%;
	padding-right:10%;
}

.text-btn {
	display:block;
	position:relative;
	font-size:1.125rem;
	line-height:1.375rem;
	color:#8b660d;
	padding-left:1.125em;
}

.text-btn:hover {
	text-decoration:underline;
	color:#aaa;
}

.text-btn::before {
	display:block;
	position:absolute;
	left:0;
	top:0;
	content:" ";
	width:10px;
	height:18px;
	background-image:url('/wp-content/themes/questbh_twentyseventeen/assets/ui/right-arrow.png');
	background-size:cover;
}

.region.dark-gray .text-btn::before {
	background-image:url('/wp-content/themes/questbh_twentyseventeen/assets/ui/right-arrow-white.png');
}

@media only screen and (min-width : 660px) {
.region-header h2.region-subhead {
	font-size:1.75rem;
	line-height:2rem;
}

.region-header h3.region-subhead {
	font-size:1.5rem;
	line-height:1.75rem;
}

.region-header h4.region-subhead {
	font-size:1.375rem;
	line-height:1.5rem;
}
}


@media only screen and (min-width : 700px) {
.standard-content {
	padding-bottom:2em;
}
.region {
	padding:2em 0;
}
}

@media only screen and (min-width : 1000px) {
.standard-content {
	padding-bottom:2.5em;
}
.region {
	padding:2.5em 0;
}
}

@media only screen and (min-width : 1000px) {
.region-header-left .region-header {
	position: absolute;
	left: 0;
	top: 50%;
	width: 47%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.region-header-left .region-content {
	float: right;
	width: 47%;
}
}


/* ==================  Text Columns ================== */
.column {
    position: relative;
	margin-bottom: 1em;
}

@media only screen and (min-width : 700px) {
.column {
	margin-bottom: 0;
}

/* 2 column format - 50/50 */
.two-column .column {
	width:47%;
	float:left;
}
.two-column .column-two,
.two-column .column:nth-child(2n+2) {
	float:right;
}
	
.two-column .column:nth-child(2n+3) {
	clear:both;
}

/* 2 column format - 30/70 */
.two-column .thirty-seventy .column-one {
	width:37%;
}
.two-column .thirty-seventy .column-two {
	width:57%;
}

/* 2 column format - 70/30 */
.two-column .seventy-thirty .column-one {
	width:57%;
}
.two-column .seventy-thirty .column-two {
	width:37%;
}

/* 4 column format */
.four-column .column {
	width:47%;
	float:left;
}

.four-column .column-two,
.four-column .column-four,
.four-column .column:nth-child(2n+2) {
	float:right;
}

.four-column .column-three,
.four-column .column:nth-child(2n+3) {
	clear: both;
}
}

@media only screen and (min-width : 800px) {
/* 3 column format */
.three-column .column {
	width:30.6666%;
	float:left;
}

.three-column .column-two,
.three-column .column:nth-child(3n+2) {
	margin-left:4%;
}

.three-column .column-three,
.three-column .column:nth-child(3n+3) {
	float:right;
}

/* 2 column format - 30/70 */
.two-column .thirty-seventy .column-one {
	width:27%;
}
.two-column .thirty-seventy .column-two {
	width:67%;
}

/* 2 column format - 70/30 */
.two-column .seventy-thirty .column-one {
	width:67%;
}
.two-column .seventy-thirty .column-two {
	width:27%;
}
}

@media only screen and (min-width : 1020px) {
/* 4 column format */
.four-column .column {
	width:22%;
	margin-right: 4%;
}

.four-column .column-two,
.four-column .column:nth-child(2n+2) {
	float:left;
}
	
.four-column .column:nth-child(2n+3) {
	clear:none;
}
	
.four-column .column:nth-child(4n+5) {
	clear:both;
}

.four-column .column-four,
.four-column .column:nth-child(4n+4) {
	margin-right: 0;
}

.four-column .column-three {
	clear: none;
}
}

.sidebar-inner {
    padding: 2em 2em 1em;
}

.sidebar img {
    display: block;
    width: 100%;
}

.testimonial-sidebar {
	border-top: solid 4px #8abf56;
	border-bottom: solid 4px #8abf56;
}



/* ==================  Promotion Banner ================== */
.promotion-banner {
	text-align: center;
}
.promotion-banner .banner-inner {
    position: relative;
    /*padding: 0 1.5em;*/
}

.promotion-banner .banner-text {
	padding: 0 5% 1em;
}

.promotion-banner .region-button {
    padding-top: 0.5em;
    padding-bottom: 0;
}

.promotion-banner .banner-inner-float-image {
    max-width: 120px;
    margin: 0 auto;
}

@media only screen and (min-width : 600px) {
.promotion-banner .banner-text {
	padding: 0 10% 1em;
}
}

@media only screen and (min-width : 900px) {
    .promotion-banner .banner-inner.align-left,
    .promotion-banner .banner-inner.align-left .region-button {
        text-align: left;
    }

    .promotion-banner .banner-inner.align-right,
    .promotion-banner .banner-inner.align-right .region-button {
        text-align: right;
    }

    .promotion-banner .banner-inner.align-left .banner-inner-inner {
        float: left;
        width: 100%;
        padding-right: 150px;
    }

    .promotion-banner .banner-inner.align-right .banner-inner-inner {
        float: right;
        width: 100%;
        padding-left: 150px;
    }
    
    .promotion-banner .banner-inner.align-left .banner-inner-float-image,
    .promotion-banner .banner-inner.align-right .banner-inner-float-image {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .promotion-banner .banner-inner.align-left .banner-inner-float-image {
        right: 0;
    }

    .promotion-banner .banner-inner.align-right .banner-inner-float-image {
        left: 0;
    }
}


/* ==================  Promotion Blocks ================== */
.promotion-blocks .region-button {
	padding-top: 2em;
}

.promotion-block {
	text-align: center;
	background-color: #f0f0f0;
    margin-top: 1em;
	margin-bottom: 1em;
}

.promotion-blocks.light-gray .promotion-block {
	background-color: #fff;
}

.promotion-block img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.promotion-block a img:hover {
	opacity: .7;
}

.promotion-block .block-inner {
	padding: 1em 1.5em 2em;
}

.promotion-block h2 {
	font-size: 1.75rem;
	line-height: 1.75rem;
	color: #005492;
	padding-bottom: 0.5em;
}

.promotion-block p {
	color: #222;
}

@media only screen and (min-width : 1000px) {

}

@media only screen and (min-width : 1200px) {

}


/* ==================  Insert Form ================== */
.insert-form {
	
}

.insert-form .region-header {
	text-align:center;
}

.insert-form .region-intro-text {
	/*padding: 0 5%;*/
}

.insert-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    padding: 10px 8px;
}

.insert-form .gform_multi_column_wrapper .gform_body, 
.insert-form .gform_page_multi_column .gform_page_fields {
	margin:0;
}

.insert-form .gform_wrapper .gform_footer {
	text-align:center;
}

.insert-form .gform_wrapper {
	margin:0 auto;
}

.insert-form .gform_wrapper .gsection {
	border:0;
	margin-bottom:0;
	padding-bottom:0;
}

.insert-form .gform_wrapper h2.gsection_title {
	font-weight:400;
}

@media only screen and (min-width : 600px) {
/*.insert-form .region-intro-text {
	padding: 0 10%;
}*/
}

@media only screen and (min-width:900px) {
.insert-form .gform_wrapper {
	width:70%;
}
}


/* ==================  Image Slideshow ================== */
.image-slideshow {
	padding:0;	
}
.image-slideshow .swiper-button-next,
.image-slideshow .swiper-button-prev {
	width: 25px;
	height: 25px;
	top: auto;
	bottom: 20px;
}
.image-slideshow .swiper-button-next {
	right: 20px;
}
.image-slideshow .swiper-button-prev {
	left: auto;
	right: 50px;
}
.image-slideshow .slideshow-wrapper .swiper-slide:after {
	display: block;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	min-height:250px;
	height: 35%;
	z-index: 9;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.88+100 */
background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.88) 100%); /* FF3.6-15 */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.88))); /* Chrome4-9,Safari4-5 */
background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.88) 100%); /* Chrome10-25,Safari5.1-6 */
background: -o-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.88) 100%); /* Opera 11.10-11.50 */
background: -ms-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.88) 100%); /* IE10 preview */
background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.88) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#e0000000',GradientType=0 ); /* IE6-9 */

}

.slideshow-wrapper {
	position:relative;
    height: 100%;
	margin:0 auto;
}
	
.swiper-container {
	width: 100%;
	z-index:1;
}

.swiper-wrapper {
	position:relative;
}

.image-slideshow .swiper-slide .slide-inner {
	padding: 1em 1.25em;
    /*background-color: #005492;*/
}
.image-slideshow .swiper-slide .slide-text {
	/*position:relative;*/
	position: absolute;
	left: 0;
	bottom: 10px;
	width: calc(100% - 95px);
	z-index: 10;
}

@media only screen and (min-width : 760px) {
	.image-slideshow .swiper-button-next,
	.image-slideshow .swiper-button-prev {
		bottom: 45px;
	}
	.image-slideshow .swiper-button-next {
		right: 40px;
	}
	.image-slideshow .swiper-button-prev {
		right: 70px;
	}
	.swiper-slide {
		position: relative;
		/*background-size:cover !important;*/
    	background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		background-color: #000;
		height:172px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;
	}
	.project-gallery .swiper-slide {
		background-size: auto 100%;
	}
	.image-slideshow .swiper-slide .slide-text {
		bottom: auto;
		top:0;
		width: 100%;
		height: 100%;
	}
	.image-slideshow .swiper-slide .slide-inner {
		position: absolute;
		left: 0;
		bottom: 4em;
		padding: 1.5em 2em 1.5em 5%;
    	/*padding: 1.5em 2em 1.5em 2.5em;
    	background-color: rgba(0,0,0,.65);*/
	}
}

.swiper-slide img {
	max-height: 100%;
    display: block;
}

.image-slideshow .swiper-slide h2 {
    font-size: 1.75rem;
    /*line-height: 1.75rem;*/
	line-height: 1.15;
	color: #fff;
}

#content .swiper-slide p {
	font-size: 1rem;
    line-height: 1.4;
	color:#fff;
	margin-bottom: 0;
}

@media only screen and (min-width : 760px) {
	#content .swiper-slide p {
		font-size: 1.125rem;
	}
}

#content .swiper-slide p a {
	color:#fff;
	text-decoration:none;
}
#content .swiper-slide p a > span {
	border-bottom: solid 1px;
	padding-bottom: 1px;
}

#content .swiper-slide p a .far {
	display: none;
}

#content .swiper-slide p a:hover {
	/*text-decoration:underline;*/
	opacity: .7;
}

.swiper-button-next, .swiper-button-prev {
	top:40%;
}

.swiper-pagination {
	position: relative;
	width: 100%;
    padding-top: 0.25em;
    padding-bottom: 0.75em;
}

@media only screen and (min-width : 760px) {
	.swiper-pagination {
    	position: absolute;
		bottom: 1.5em;
    	padding-top: 0;
    	padding-bottom: 0;
	}
	#content .swiper-slide p a .far {
		display: inline-block;
		margin-left: .5em;
    	vertical-align: middle;
	}
}

.swiper-pagination-bullet {
    background-color: #FFF;
    opacity: 1;
    width: 14px;
    height: 14px;
    border: solid 2px #fff;
    margin-left: 5px;
    margin-right: 5px;
}

.swiper-pagination-bullet-active {
    background: none;
}

.swiper-button-next, .swiper-button-prev {
	top:50%;
}

.swiper-slide.mobile-center-center {background-position: center center;}
.swiper-slide.mobile-center-top {background-position: center top;}
.swiper-slide.mobile-center-bottom {background-position: center bottom;}
.swiper-slide.mobile-left-center {background-position: left center;}
.swiper-slide.mobile-left-top {background-position: left top;}
.swiper-slide.mobile-left-bottom {background-position: left bottom;}
.swiper-slide.mobile-right-center {background-position: right center;}
.swiper-slide.mobile-right-top {background-position: right top;}
.swiper-slide.mobile-right-bottom {background-position: right bottom;}

.gallery-thumbs {
    display: none;
}

.gallery-thumbs .swiper-slide {
    height: 100%;
    opacity: 0.4;
	cursor: pointer;
    background-position: center center;
    background-size: cover;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}


@media only screen and (min-width : 500px) {
/*.swiper-slide {
	height:266px;
}*/

.gallery-thumbs {
    display: block;
    height: 90px;
    box-sizing: border-box;
    padding: 10px 0;
}
}

@media only screen and (min-width : 600px) {
/*.swiper-slide {
	height:320px;
}*/
}

@media only screen and (min-width : 700px) {
.gallery-thumbs {
    height: 120px;
}
}


@media only screen and (min-width : 760px) {
.swiper-slide {
	height:500px;
}
}

@media only screen and (min-width : 800px) {
.swiper-slide.desktop-center-center {background-position: center center;}
.swiper-slide.desktop-center-top {background-position: center top;}
.swiper-slide.desktop-center-bottom {background-position: center bottom;}
}

@media only screen and (min-width : 1000px) {
.swiper-slide {
	height:600px;
}
}

@media only screen and (min-width : 1100px) {
	.image-slideshow .swiper-slide h2 {
		font-size: 2.75rem;
		/*font-size: 2.125rem;
		line-height: 2.25rem;*/
	}
}

@media only screen and (min-width : 1250px) {
.swiper-slide {
	height:695px;
}
}


@media only screen and (max-width : 759px) {
	.project-slide {
    	background: none!important;
    	height: auto!important;
	}
	.image-slideshow .swiper-slide {
		padding-bottom: 60px;
		height: 300px;
		background-size: cover;
	}
}

.swiper-slide img.mobile-slide-image {
	display: none;
}

@media only screen and (min-width : 760px) {
	.swiper-slide .mobile-slide-image,
	.image-slideshow .swiper-slide .mobile-slide-image {
    	display: none;
	}
}


/*--------------------------------------------------------------
VIDEO EMBED
--------------------------------------------------------------*/
.region.video-embed video {
	width: 100%;
	margin-bottom: 1em;
}

@media only screen and (min-width : 700px) {
	.region.video-embed .video-right .column-two {
		float: left;
	}
	.region.video-embed .video-right .column-one {
		float: right;
	}
	.region.video-embed .region-button {
		text-align: left;
	}
	.region.video-embed .video-only .column-one {
		float: none;
		width: 70%;
		margin-left: auto;
		margin-right: auto;
	}
}



/*--------------------------------------------------------------
VIDEO BACKGROUND / HERO
--------------------------------------------------------------*/
.region.video-background {
    padding: 0;
}

.hero-video {
	display:block;
	width: 100%;
	z-index: 1;
}

.region.video-background .column-two {
    position: relative;
    background-color: #fff;
    padding: 2em;
	z-index: 9;
}

.region.video-background .text-left .column-two {
	float: left;
	margin-right: 0;
	margin-left: 10%;
}

.region.video-background .no-content-holder {
	background: none;
}

.region.video-background .region-header {
	padding-bottom: 0;
}

.region.video-background .region-button {
	padding-top: 0;
	padding-bottom: 0;
}

.vimeo-wrapper iframe {
	width: 100vw;
   height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
   min-height: 100vh;
   min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
   position: absolute;
   top: 50%;
   left: 50%;
   -webkit-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
}

@media only screen and (min-width : 700px) {
.hero-video {
	/*width: auto;
	min-width: 100%;
	min-height: 100%;*/
	width: 100%;
	background-size: cover;
	object-fit:cover;
	position:absolute;
	top:50%;
	left:50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform:translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.region.video-background .column-one {
	/*position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;*/
	width: 100vw;
	height: 75vh;
    overflow: hidden;
}
.region.video-background .column-two {
    margin-top: 5em;
    margin-bottom: 5em;
    margin-right: 5%;
    background-color: rgba(255,255,255,.8);
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
    border-radius: 12px;
}
.region.video-background .no-content-holder {
	background: none;
	padding-top: 5em;
	padding-bottom: 5em;
}
.region.video-background .region-header {
	text-align: left;
}
.region.video-background .region-button {
	text-align: left;
}
}

@media only screen and (min-width : 1000px) {
.region.video-background .column-two {
    margin-top: 6em;
    margin-bottom: 6em;
    margin-right: 7%;
    width: 38%;
}
.region.video-background .no-content-holder {
	padding-top: 8em;
	padding-bottom: 8em;
}
}

@media only screen and (min-width : 1200px) {
.region.video-background .column-two {
    margin-top: 8em;
    margin-bottom: 8em;
    margin-right: 10%;
    width: 32%;
}
.region.video-background .no-content-holder {
	padding-top: 14em;
	padding-bottom: 14em;
}
}


/* Video Controls - if we use them */
.video-controls-wrapper {
	display:none;
	position: absolute;
	left: 20px;
	bottom: 10px;
	z-index: 100;
}

.video-controls {
	text-decoration: none;
	font-size: 20px;
	color: rgba(255,255,255,.4);
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}
.video-controls:hover {
	color: rgba(255,255,255,.7);
}
.video-controls.active {
	color: rgba(255,255,255,.75);
}
.play {
	display: none;
}
.play.visible {
	display: inline-block;
}

.icon-pause:before,
.icon-play:before {
	font-family: FontAwesome;
	font-size: 1.25rem;
    color: #999;
	cursor:pointer;
}

.icon-pause:before {
	content: "\f04c";
}
.icon-play:before {
	content: "\f04b";
}

.white-overlay {
	position: absolute;
	top: 0;
	left:0;
	background:rgba(0,0,0,0.2);
	height: 100%;
	width: 100%;
}
.white-overlay.scrolled {
	opacity: 0;
}

@media only screen and (min-width : 767px) {

}


/*--------------------------------------------------------------
FAMILY PROMOTION
--------------------------------------------------------------*/
.family-block {
    background-position: center top;
    background-size: cover;
    background-color: #555555;
}

.family-block .family-inner {
    position: relative;
    padding: 4em 1.5em;
    text-align: center;
}

#content .family-block .family-inner p {
    font-family: franklin-gothic-urw-cond, sans-serif;
    font-size: 1.75rem;
    line-height: 2rem;
    color: #fff;
}



/*--------------------------------------------------------------
PEOPLE MODULE
--------------------------------------------------------------*/
.region.people-promotion {
    padding-top:1em;
    padding-bottom: 0!important;
}
.region.people-promotion .page-header-eyebrow {
	color: #666;
}
.people-module {
    position: relative;
	/*max-width: 840px;*/
	margin: 0 auto;
}

.people-wrapper {
    margin: 0 auto;
}

.people-module .people-image {
    position: relative;
}

.people-module img {
    display: block;
	margin: 0 auto;
	max-width: 90%;
    z-index: 10;
}

.people-module .people-outer {
	position: relative;
	text-align: center;
	background-color: #f1f1f1;
}

.people-module .people-inner {
	padding: 2em 2em 3em;
}

.people-module h2 {
    font-size: 1.75rem;
    line-height: 2rem;
    padding-bottom: .5em;
}

@media only screen and (min-width : 450px) {
.people-module img {
	max-width: 400px;
}
}

@media only screen and (min-width : 750px) {
.people-module {
	/*display: flex;*/
    background-color: #f0f0f0;
    border-top: solid 40px #fff;
	/*align-content: center;
	align-items: center;*/
}

.people-module .people-image {
	float: left;
    width: 50%;
	max-width: 400px;
	margin-top: -40px;
}

.people-module img {
    width: 99%;
	margin-left: 1%;
	margin-right: 0;
	max-width: none;
}

.people-module .people-outer {
    float: left;
	width: 46%;
	margin-left: 2%;
    margin-right: 2%;
	text-align: left;
	background: none;
}

.people-module .people-inner {
	/*position: absolute;
	top: 50%;
	left: 0;*/
	width: 100%;
	padding: 1.5em 0 0;
	/*-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);*/
}
}


@media only screen and (min-width : 1000px) {
.people-wrapper {
    max-width: 1000px;
}
}


/*--------------------------------------------------------------
PROJECT LISTINGS REGION
--------------------------------------------------------------*/
.project-listings .region-header {
    text-align: left;
    border-bottom: solid 1px #444;
    padding-bottom: 0;
    margin-bottom: 1em;
}


/*--------------------------------------------------------------
ASSOCIATION LOGOS
--------------------------------------------------------------*/
img.association {
    max-width: 160px;
	width: auto;
    max-height: 60px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: .7;
    padding: 0 .75em 1em;
    vertical-align: middle;
}

.associations {
    padding-top: 1em;
    text-align: center;
}

.associations::before {
	display: block;
	content: '';
	width: 140px;
	height: 3px;
	margin: 0 auto 1em;
	background-color: #8abf56;
}


.associations h3 {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 20px;
    padding-bottom: .5em;
}

.associations ul {
    list-style: none;
    margin: 0;
    text-align: center;
}

.associations ul li {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
	padding: 0.75em;
}

.associations ul li a {
    display: block;
    margin: 0 1.5em;
}

.associations ul li img {
    max-width: 160px;
    max-height: 60px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: .7;
	-webkit-transition: all ease 0.2s;
	transition: all ease 0.2s;
}

.associations ul li:hover img {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}


/*--------------------------------------------------------------
FEATURED NEWS REGION
--------------------------------------------------------------*/
.feature-news img {
	margin-bottom: 1em;
}

.feature-news.extra-padding {
	padding-bottom: 5em;
}
.feature-news .page-header-eyebrow {
	color: #666;
}

.feature-news a.text-link {
    float: right;
    padding: 0.675em 0;
}

.linkedin-bar {
	position: relative;
    text-align: center;
    padding: 0;
    margin: 0 0 -1.5em 0;
    width: 100%;
}

.linkedin-bar .bar-inner {
    padding: 0.5em 0;
}

.linkedin-bar .fab {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    border: solid 1px #fff;
    -webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    margin-right: .75em;
}

.linkedin-bar .fab:before {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
	font-size: 1.25rem;
}

.linkedin-bar a {
	display: inline-block;
    font-family: franklin-gothic-urw-cond, sans-serif;
    font-size: 1.125rem;
    line-height: 1.25rem;
    padding: .5em 0;
    vertical-align: middle;
}


@media only screen and (min-width : 700px) {
.feature-news img {
	float: right;
	width: 48%;
	margin-left: 2%;
}

.includes-image {
	float: left;
	width: 48%;
}
    
.linkedin-bar {
    margin-bottom: -2em;
}

.linkedin-bar a {
    font-size: 1.5rem;
    line-height: 1.625rem;
}
}

@media only screen and (min-width : 1000px) {
.linkedin-bar {
    margin-bottom: -2.5em;
}
}

@media only screen and (min-width : 1200px) {
.feature-news img {
	width: 65%;
}

.includes-image {
	width: 30%;
}
}


/*--------------------------------------------------------------
TEAM MEMBER LISTINGS REGION
--------------------------------------------------------------*/
.team-member-listings .team-members {
	text-align: center;
}

.team-member-listings .team-members .team-member {
	margin: 0 0 2em;
}

.team-member-listings .team-member .team-member-image img {
	display:block;
}

.team-member-listings .team-member .team-member-titles {
	text-align: center;
	padding: 1em 1em 1.125em;
}

#content .team-member-listings .team-member .team-member-titles h3 {
	padding-bottom: 0.125em;
}

#content .team-member-listings .team-member .team-member-titles p {
	margin-bottom: 0;
	line-height: 1.25rem;
}

#content .team-member-listings .team-member .team-member-titles p.years-of-service {
	padding-top: 0.75em;
	font-size: .875rem;
	color: #666;
	text-transform: uppercase;
}

@media only screen and (min-width : 400px) {
.team-member-listings .team-members .team-member {
	display: inline-block;
	width: 45%;
	margin: 0 2% 2em;
	vertical-align: top;
}
}

@media only screen and (min-width : 760px) {
.team-member-listings .team-members .team-member {
	width: 29%;
	margin: 0 1.5% 2em;
}
}



/*--------------------------------------------------------------
NEWS LISTINGS
--------------------------------------------------------------*/
/* News Menu */
ul.news-menu {
	list-style: none;
	margin: 0;
	text-align: center;
	padding-bottom: 1.75em;
}

#content ul.news-menu li {
	display: inline-block;
	margin:0 .125em .5em;
}

#content ul.news-menu li a {
	display: block;
	font-family: franklin-gothic-urw-cond, sans-serif;
	font-size: .875rem;
	font-weight: 500;
	line-height: 100%;
	color: #666;
	padding: 0.5em 1.25em;
	text-decoration: none;
	border: solid 1px #ccc;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

#content ul.news-menu li a:hover,
#content ul.news-menu li.current-menu-item a{
	color: #fff;
	background-color: #005492;
	border-color: #005492;
}


.news-listings .news-listing {
	position: relative;
	margin-bottom: 1.5em;
	color: #fff;
    background-color: #111;
}

.news-listing.fb-container {
    overflow: hidden;
}

.news-listings .fb_iframe_widget {
    width: 100%;
    max-height: 100%;
}


@media only screen and (min-width : 600px) {
.news-listings .news-listing {
    float: left;
	width: 49%;
	margin-left: 2%;
}

.news-listings .news-listing:first-child, 
.news-listings .news-listing:nth-child(2n+3) {
	margin-left: 0;
	clear: both;
}
}

@media only screen and (min-width : 950px) {
.news-listings .news-listing {
	width: 32%;
}

.news-listings .news-listing:nth-child(2n+3) {
	margin-left: 2%;
	clear: none;
}
    
.news-listings .news-listing:nth-child(3n+4) {
	margin-left: 0;
	clear: both;
}
}

.news-listings .news-listing .entry-header {
	padding: 0;
	background: none;
	margin-bottom: 0;
}

.news-listings .news-listing .entry-header:after {
	display: none;
}

.news-listings .news-listing .outer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.news-listings .news-listing .inner {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	width: 100%;
	padding: 0 2em;
}

.news-listings .news-listing img {
	display: block;
}

.news-listings .news-listing h2 {
	font-size: 1.625rem;
	line-height: 1.875rem;
	color: #fff;
	margin-bottom: 1em;
}

.news-listings .news-listing .listing-eyebrow {
	display: block;
	font-family: franklin-gothic-urw-cond, sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.25em;
}

.news-listings .news-listing a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	background: none;
    color: #fff;
}

/*.news-listings .news-listing a:hover {
	background: rgba(255,255,255,0.3);
}*/

.news-listings .news-listing:hover .gray-overlay {
	background: rgba(0,0,0,0.2);
}


/*--------------------------------------------------------------
NEWS DETAILS
--------------------------------------------------------------*/
.news-detail .featured-image img {
	margin-bottom: 0.75em;
}

.news-pdf-button {
	padding: 1em 0;
	text-align: center;
}


/*--------------------------------------------------------------
PROJECTS
--------------------------------------------------------------*/
.under-construction {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: solid 10px;
	border-image: url(/wp-content/themes/wagman_twentynineteen/ui/projects-listings-uc.png) 20 / 10px round;
}

.green-build-project {
	position: absolute;
	top: 0;
	right: 0;
	width: 74px;
	height: 74px;
	background-image: url(/wp-content/themes/wagman_twentynineteen/ui/snipe-green-build.png);
	z-index: 2;
}

.under-construction-snipe {
	position: absolute;
	top: 0;
	right: 0;
	width: 59px;
	height: 59px;
	background-image: url(/wp-content/themes/wagman_twentynineteen/ui/snipe-construction.png);
	z-index: 2;
}

.green-build-under-construction {
	position: absolute;
	top: 0;
	right: 0;
	width: 107px;
	height: 59px;
	background-image: url(/wp-content/themes/wagman_twentynineteen/ui/snipe-green-construction.png);
	z-index: 2;
}

.project-detail {
    margin-top: -3em;
}

/* Project Gallery */
/*.project-gallery {
    height: 570px;
}*/

.project-caption,
.video-caption {
    padding: 1em 0;
    font-size: .875rem;
    font-style: italic;
}

.project-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(255,255,255,.8);
    padding: 0.75em 1em;
}

.project-caption .caption-year:after {
    display: inline-block;
    content: '-';
    padding: 0 .25em 0 .5em;
}

/* Detail Spec Boxes */
.project-spec-boxes {
	list-style: none;
	margin: 0 0 2em 0;
}

.partnership-logo {
    text-align: center;
    margin-bottom: 2em;
}

.partnership-logo img {
    max-width: 300px;
}

#content .project-spec-boxes li {
	/*border: solid 1px #ccc;
	border-top: 0;
	text-align: center;*/
	padding: 1em 1em .875em;
	border-bottom: solid 1px #CCC;
}

#content .project-spec-boxes li:first-child {
	border-top: solid 1px #ccc;
}

#content .project-spec-boxes li p {
	margin-bottom: 0;
}

#content .project-spec-boxes li p.spec-title,
#content .partnership-logo p.spec-title {
    font-family: franklin-gothic-urw-comp, sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .05em;
}

@media screen and (min-width: 700px) {
.partnership-logo img {
    max-width:100%;
}
}

@media screen and (min-width: 900px) {
/*#content .project-spec-boxes li {
	float: left;
	width:50%;
	border: solid 1px #ccc;
}
#content .project-spec-boxes li:nth-child(2),
#content .project-spec-boxes li:nth-child(4) {
	border-left: 0;
}

#content .project-spec-boxes li:nth-child(3),
#content .project-spec-boxes li:nth-child(4) {
	border-top: 0;
}*/
}

/* Key details */
.key-details h2 {
	font-size: 1.75rem;
	line-height: 2rem;
	text-align: center;
	color: #005492;
}

.key-details ul {
	margin-left: 1.125em;
}

.key-details ul li {
	margin-bottom: 0.5em;
}

.key-details ul li img {
	display: inline;
	vertical-align: middle;
}

/* Fun Facts */
.project-fun-facts {
	text-align: center;
	margin: 2em 0;
	background-color: #f1f1f1;
	padding: 2em 8% 1em;
}

ul.fun-facts {
	list-style: none;
	margin: 0;
}

ul.fun-facts li {
	color: #005492;
	font-weight: 700;
}

ul.fun-facts li:before {
	display: block;
	content: '';
	width: 60px;
	height: 2px;
	background-color: #8ABF56;
	margin: 0.5em auto 1em;
}

ul.fun-facts .news-article-thumbnail {
	display: inline-block;
	max-width: 160px;
	margin-bottom: 0.5em;
}

ul.fun-facts .news-article-thumbnail img {
	max-height: 160px;
}

@media screen and (min-width: 630px) {
ul.fun-facts li.includes-thumbnail {
	text-align: left;
}

ul.fun-facts .news-article-thumbnail {
	float: left;
	max-width: none;
	width: 22%;
	margin-right: 3%;
	margin-bottom: 0;
}

ul.fun-facts .news-article-thumbnail img {
	max-height: none;
}

ul.fun-facts li.includes-thumbnail p {
	float: left;
	width: 75%;
	padding-top: 2em;
}
}

@media screen and (min-width: 1100px) {
ul.fun-facts li.includes-thumbnail p {
	padding-top: 3em;
}
}

@media screen and (min-width: 1280px) {
ul.fun-facts li.includes-thumbnail p {
	padding-top: 4em;
}
}


/* Project Nav */
.project-nav {
    position: relative;
	max-width: 1200px;
	margin: -2em auto 0;
	padding-bottom: 4em;
	z-index: 99;
}

.project-nav .nav-previous {
    float: left;
	width:50%;
}

.project-nav .nav-next {
    float: right;
	width: 50%;
}

.project-nav .nav-previous a,
.project-nav .nav-next a {
    display: block;
    padding: 0.5em 1em;
	margin: 0 auto;
    background-color: #eee;
    text-transform: uppercase;
    font-size: .75rem;
    width: 134px;
    text-align: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
	-webkit-transition: all ease 0.2s;
	transition: all ease 0.2s;
}

@media screen and (min-width: 680px) {
.project-nav {
    width: 50%;
}
}

@media screen and (min-width: 1260px) {
.project-nav {
    position: fixed;
	width: 100%;
	max-width: none;
    top: calc(50% + 67px);
    left: 0;
	margin: 0;
	padding-bottom: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.project-nav .nav-previous {
    float: left;
	width: auto;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transform-origin: left top;
}

.project-nav .nav-next {
    float: right;
	width: auto;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
    transform-origin: right top;
}

.project-nav .nav-previous a,
.project-nav .nav-next a {
	margin: 0;
    -webkit-border-radius: 0 0 10px 10px;
    -moz-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
}

.project-nav .nav-previous:hover a,
.project-nav .nav-next:hover a {
	padding-top: 1.5em;
}
}


/*--------------------------------------------------------------
PASSWORD PROTECTED PAGES
--------------------------------------------------------------*/
form.post-password-form {
	text-align:center;
}

form.post-password-form label {
	display:block;
	font-size:0;
}

form.post-password-form input[type=submit] {
	margin-top:0.75em !important;
}


/*--------------------------------------------------------------
SEARCH
--------------------------------------------------------------*/
.taxonomy-description {
	text-align:center;
}

/* Search Page */
.region.search-page {
	text-align: center;
	padding-top: 0;
}

.region.search-page .search-form {
	padding-bottom: 3em;
}

.region.search-page .search-field {
	width: 100%;
	max-width: 500px;
	margin-top: 1em;
	margin-bottom: 0.5em;
}

.region.search-page input[type="submit"] {
	display: block;
}

/* Search Results */
.region.search-results {
	padding-top: 0;
}

/*body.search #content .search-form,
body.error404 #content .search-form {
	text-align:center;
	padding-bottom:3em;
}

body.search #content .search-field,
body.error404 #content .search-field {
	display:block;
	margin:0 auto 1em;
	background-color:#eaeaea;
	border:0;
	padding:10px;
	width:90%;
}*/

body.search #content article {
	padding:1em 0 0;
	border-bottom:dotted 2px #ccc;
}

body.search #content article .entry-header {
	text-align:left;
	background:none;
	padding:0;
	margin-bottom: 0;
}

body.search #content article .entry-header::after {
	display: none;
}

body.search #content article h2 {
	padding-bottom:0.25em;
	font-size:1.75rem;
	line-height:2rem;
}

body.search #content article h2 a {
	color:#222;
}

body.search #content article h2 a:hover {
	color:#ccc;
}

/*body.search #content article p {
	margin-bottom:0;
}*/

body.search #content article p a {
	text-decoration:underline;
}

.read-more {
	margin-top:0.25em;
}

.read-more a {
	text-decoration:underline;
}

body.search #content article .link-more {
	display:none;
	text-decoration:underline;
}

/* Pagination */
.navigation.pagination {
	padding:2em 0 3em;
	clear: both;
}

.pagination {
	clear: both;
}

.page-numbers {
	display: block;
    float: left;
    background-color: #999;
    text-align: center;
    padding: 0.75em 1em;
    margin-right: 0.5em;
    color: #fff;
    font-size: .875rem;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.page-numbers:hover {
	color: #fff;
	background-color:#666;
}

.page-numbers.current {
	background-color:#8ABF56;
}

.page-numbers.prev,
.page-numbers.next {
	display: none;
}

.nav-links svg {
	display:none;
}

/*@media screen and (min-width: 750px) {
body.search #content .search-field,
body.error404 #content .search-field {
	width:50%;
	display: inline-block;
    padding: 15px 10px;
}
}*/


/*--------------------------------------------------------------
SITEMAP
--------------------------------------------------------------*/
.wsp-container ul {
	list-style:none;
	margin:0;
}

.wsp-container h2 {
	padding-bottom:0.25em;
}

.wsp-container ul li {
	padding:0.5em 1em;
}

.wsp-container a:hover {
	text-decoration:underline;
}

.wsp-container.wsp-portfolio-archive + .wsp-container {
	margin-left: 2em;
}



/*--------------------------------------------------------------
FORM FIELD OVERRIDES
--------------------------------------------------------------*/
/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
	color: #999;
	font-family: 'Muli', sans-serif;
}

:-moz-placeholder {
	color: #999;
	font-family: 'Muli', sans-serif;
}

::-moz-placeholder {
	color: #999;
	font-family: 'Muli', sans-serif;
	opacity: 1;
	/* Since FF19 lowers the opacity of the placeholder by default */
}

:-ms-input-placeholder {
	color: #999;
	font-family: 'Muli', sans-serif;
}

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=search],
form input[type=number],
form textarea,
input[type=text],
input[type=email],
input[type=password],
input[type=search],
input[type=number] {
	border:solid 1px #ccc;
	background-color:#f1f1f1;
	padding:0.5em 1em;
}

.region.light-gray form input[type=text],
.region.light-gray form input[type=email],
.region.light-gray form input[type=password],
.region.light-gray form input[type=search],
.region.light-gray form input[type=number],
.region.light-gray form textarea,
.region.light-gray input[type=text],
.region.light-gray input[type=email],
.region.light-gray input[type=password],
.region.light-gray input[type=search],
.region.light-gray input[type=number] {
	background-color: #fff;	
}

.region.light-gray select {
	background-color: #fff;
}

.insert-form .gform_wrapper .gsection {
	border:0;
	margin-bottom:0;
	padding-bottom:0;
}

.insert-form .gform_wrapper h2.gsection_title {
	font-weight:400;
}


/*--------------------------------------------------------------
Footer
--------------------------------------------------------------*/
.site-footer {
	position: relative;
	padding:0;
	color: #fff;
	text-align: center;
	z-index: 99;
}

/* Footer  Widgets */
.site-footer .widget-area {
    position: relative;
	/*margin-top: -1.5em;
    margin-top: 0.5em;*/
	text-align: center;
	/*vertical-align: top;*/
    min-height: 60px;
}

.site-footer .widget {
    position: absolute;
	display: inline-block;
    top: -1.5em;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
	/*max-width: 22%;
	min-width: 220px;*/
	background-color: #005492;
	/*padding: 1em 1.5em 0;*/
	margin: 0 0.5%;
	/*-webkit-border-radius: 10px 10px 0 0;
	-moz-border-radius: 10px 10px 0 0;
	border-radius: 10px 10px 0 0;*/
    max-width: 100px;
    padding: 12px;
    -webkit-border-radius: 200px;
	-moz-border-radius: 200px;
	border-radius: 200px;
    margin-bottom: -12px;
}

.site-footer .widget .wp-block-image {
    margin: 0;
}

/* Footer  Nav */
.footer-menu {
	list-style: none;
	margin: 0;
	padding:2em 0 1em;
}

/*.footer-menu:after {
	display: block;
	width: 140px;
	height: 3px;
	background-color: #8abf56;
	content: '';
	margin: 1em auto;
}*/

.footer-menu li {
	display:block;
}

.footer-menu li a {
	display:block;
	font-size:1rem;
	font-weight:700;
	padding:0 1.25em 1em 1.25em;
	color:#fff;
}

.footer-menu li a:hover {
	color:#8abf56;
	text-decoration:underline;
}

/*@media screen and (min-width: 550px) {
.footer-menu li {
	display:inline-block;
}
}*/
.footer {
	padding-bottom: 2em;
}
.footer-right {
	padding-bottom: 1em;
}
.social-nav-footer {
	float: none;
	border: 0;
}
.social-nav-footer ul.social-links-menu {

}
.social-nav-footer ul.social-links-menu li {
	display: inline-block;
	float: none;
	width: 36px;
	height: 36px;
}
.social-nav-footer ul.social-links-menu li:before {
	font-size: 1.5rem;
	color: #fff;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.social-nav-footer ul.social-links-menu li:hover:before {
	opacity: .7;
}
.social-nav-footer ul.social-links-menu li a {
	color: #fff;
}

/* Copyright */
.copyright {
	font-size:0.8125rem;
	line-height:1.3;
	margin-top: 1.5em;
}
.copyright p {
	margin-bottom: 0;
}
.subfooter-navigation {
	margin-top: .5em;
}
.subfooter-navigation ul {
	list-style: none;
	margin: 0;
}
.subfooter-navigation ul li {
	
}
.subfooter-navigation ul li a {
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	border-bottom: solid 1px #fff;
}
.subfooter-navigation ul li a:hover {
	opacity: .7;
}

@media screen and (min-width: 768px) {
	.footer {
		display: flex;
		justify-content: space-between;
	}
	.site-footer {
		text-align: left;
	}
	.site-info {
		width: 50%;
	}
	.footer-menu li a {
		padding-left:0;
	}
	.footer-right {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 50%;
		text-align: right;
		padding-top: 2em;
	}
	.copyright {
		display: flex;
		justify-content: flex-end;
		margin-top: 0;
	}
	.subfooter-navigation {
		margin-top: 0;
		margin-left: 1em;
	}
}

/* Google reCaptcha Badge */
.grecaptcha-badge {
	z-index: 999;
}

/*--------------------------------------------------------------
Login / Logout / Password Form
--------------------------------------------------------------*/
.tml {
    margin: 0 auto;
}

ul.tml-links {
    list-style: none;
    margin: 0;
    font-size: 0.875rem;
}

@media screen and (min-width: 550px) {
.tml {
    max-width: 50%;
}
}



/*--------------------------------------------------------------
Clearfix
--------------------------------------------------------------*/
.clearfix:before,
.clearfix:after {
    content: " "; 
    display: table; 
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}
