@import url("lib/basestyle/normalize.min.css");
@import url("lib/basestyle/semantic-typography.css");
@import url("lib/basestyle/block-design.css");


/* Default Box Sizing
--------------------------------------------- */

html,
input[type="search"] {
	box-sizing: border-box;
}

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

/* Default Focus
--------------------------------------------- */

:focus {
    outline-style: dotted;
    outline-width: 1px;
    outline-offset: 1px;
    outline-color: currentColor;
}

/* Default Page Fade-In
--------------------------------------------- */

body {
	animation: fadein 0.5s;
}

@keyframes fadein {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* Defaults Embed Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
}

figure {
	margin: 0;
}

/* Float Clearing
--------------------------------------------- */

.author-box::before,
.clearfix::before,
.entry::before,
.entry-content::before,
.footer-widgets::before,
.nav-primary::before,
.nav-secondary::before,
.pagination::before,
.site-container::before,
.site-footer::before,
.site-header::before,
.site-inner::before,
.widget::before,
.wrap::before {
	content: " ";
	display: table;
}

.author-box::after,
.clearfix::after,
.entry::after,
.entry-content::after,
.footer-widgets::after,
.nav-primary::after,
.nav-secondary::after,
.pagination::after,
.site-container::after,
.site-footer::after,
.site-header::after,
.site-inner::after,
.widget::after,
.wrap::after {
	clear: both;
	content: " ";
	display: table;
}

/* Comment Headings
--------------------------------------------- */

.comment-respond h3,
.entry-comments h3 {
	font-size: 2em;
	font-weight: bold;
	text-align: center;
}

.comment-respond h3::after,
.entry-comments h3::after {
	border-bottom: 1px solid #000;
	content: "";
	display: block;
	margin: 0 auto 40px;
	padding-bottom: 40px;
	width: 5%;
}

/* Reset Form Elements
--------------------------------------------- */

select {
    /* reset browser styling */
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    /* add cursor */
    cursor: pointer;
    /* add dropdown arrow */
    background-image: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 14\"><polyline fill=\"none\" stroke=\"%23000000\" stroke-width=\"3\" points=\"2 2 12 12 22 2\"/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.5em center;
    background-size: 1em auto;
    padding-right: 2em !important;
}
select option { background: inherit; color: inherit; } /* fix: options color in some desktop browser, like Firefox */
select::-ms-expand { display: none; } /* fix: remove dropdown arrow in IE */
select:focus::-ms-value {background-color: transparent; } /* fix: avoid color change in IE when value is selected */
select[disabled] { cursor: default; }

/* Default Form Elements Style
--------------------------------------------- */
input,
input[type="search"],
select,
textarea {
	background-color: transparent;
	border: 1px solid rgba(0,0,0,0.25);
	border-radius: 0;
	color: inherit;
	font-size: 1rem;
	font-weight: normal;
	line-height: 1.5;
	padding: 1em;
	width: 100%;
}

input[type="search"] {
	-webkit-appearance: none;
    appearance: none;
}

input:focus,
input[type="search"]:focus,
textarea:focus {
	border: 1px solid #999;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

::placeholder { color: inherit; opacity: 0.5; } /* Chrome, Firefox, Opera, Safari */
:-ms-input-placeholder { color: inherit; opacity: 0.5; } /* Internet Explorer 10-11 */
::-ms-input-placeholder { color: inherit; opacity: 0.5; } /* Microsoft Edge */


/* Default Button Style
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.site-container .wp-block-search__button,
.site-container div.wpforms-container-full .wpforms-form input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form button[type="submit"] {
    display: inline-block;
    width: auto;
    line-height: inherit;
    text-align: center;
    margin: 0;
    margin-right: 0.5em;
	margin-bottom: 0.5em;
    background-color: #39f;
	border: 2px solid transparent;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	font-family: inherit;
	font-size: 1em;
    line-height: 1.5;
	padding: 0.75em 1.5em;
	white-space: normal;
    font-weight: normal;
    transform-origin: center;
    transition: transform 0.2s;
}
.button.secondary {
    color: #39f;
    background-color: transparent;
	border-color: currentColor;
}

button.a,
button.a:focus,
button.a:hover {
    background: none;
    border-width: 0;
    border-radius: 0;
    transform: none;
    padding: 0;
    margin: 0;
    text-transform: none;
    letter-spacing: inherit;
    font-size: inherit;
    text-indent: 0;
    line-height: inherit;
    text-align: inherit;
}
a.button.small,
button.small,
input[type="button"].small,
input[type="reset"].small,
input[type="submit"].small {
	font-size: 0.8rem;
}
a.button.large,
button.large,
input[type="button"].large,
input[type="reset"].large,
input[type="submit"].large {
	font-size: 1.25rem;
}

button:hover,
button:focus,
input:hover[type="button"],
input:focus[type="button"],
input:hover[type="reset"],
input:focus[type="reset"],
input:hover[type="submit"],
input:focus[type="submit"],
.button:hover,
.button:focus,
.site-container .wp-block-search__button:focus,
.site-container div.wpforms-container-full .wpforms-form input[type="submit"]:focus,
.site-container div.wpforms-container-full .wpforms-form input[type="submit"]:hover,
.site-container div.wpforms-container-full .wpforms-form button[type="submit"]:focus,
.site-container div.wpforms-container-full .wpforms-form button[type="submit"]:hover {
    color: #fff;
}

.button.secondary:hover,
.button.secondary:focus {
    color: #39f;
}

.button.disabled,
.site-container button:disabled,
.site-container button:disabled:hover,
.site-container input:disabled,
.site-container input:disabled:hover,
.site-container input[type="button"]:disabled,
.site-container input[type="button"]:disabled:hover,
.site-container input[type="reset"]:disabled,
.site-container input[type="reset"]:disabled:hover,
.site-container input[type="submit"]:disabled,
.site-container input[type="submit"]:disabled:hover {
	opacity: 0.5;
    transform: none;
	cursor: not-allowed;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

.input-label {
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 40px;
	width: 100%;
	word-break: break-all;
}

tbody {
	border-bottom: 1px solid #eee;
}

td,
th {
	line-height: 2;
	text-align: left;
	vertical-align: top;
}

td {
	padding: 0.5em;
}

tr {
	border-top: 1px solid #eee;
}

th {
	font-weight: 600;
	padding: 0.5em;
}

/* Screen Reader Text
--------------------------------------------- */

.screen-reader-shortcut,
.screen-reader-text,
.screen-reader-text span {
	border: 0;
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.genesis-nav-menu .search input[type="submit"]:focus,
.screen-reader-shortcut:focus,
.screen-reader-text:focus,
.widget_search input[type="submit"]:focus {
	background-color: #fff;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	color: #000;
	display: block;
	font-size: 1em;
	font-weight: 600;
	height: auto;
	padding: 15px 23px 14px;
	text-decoration: none;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}



/* Structure and Layout
---------------------------------------------------------------------------- */

/* Site Container
--------------------------------------------- */

.site-container {
	background-color: #fff;
	z-index: 99;
}

.gmm-active .site-container {
	margin-bottom: 0 !important;
}

/* Site Panel
--------------------------------------------- */
.site-panel {
    position: fixed;
    background: #fff;
    opacity: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    overflow: auto;
}
.site-panel.is-active {
    display: block;
}
.site-panel.in-front {
    z-index: 9999999;
}
.site-panel:not(.in-front) {
    display: none !important;
}
body.site-panel-activated {
    overflow: hidden;
}
body.site-panel-activated > *:not(.site-panel) {
    display: none;
}
.site-panel > .site-panel-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}
.site-panel > .site-panel-header:after {
    content: '';
    display: block;
    clear: both;
}
.site-panel > .site-panel-header > * {
    position: absolute;
}
.site-panel-close {
    top: 1rem;
    right: 1rem;
}
.site-panel-title {
    padding: 1rem;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
}
.site-panel-title > *:first-child {
    margin-top: 0;
}
.site-panel-title > *:last-child {
    margin-bottom: 0;
}

/* site-panel: search-panel */

.search-panel-content-wrap {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.search-panel-content-wrap .search-form {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    font-size: 1.25rem;
    flex-wrap: nowrap;
}
.search-panel-content-wrap .search-form .search-form-input,
.search-panel-content-wrap .search-form .search-form-input:focus {
    border: 0;
    border-bottom: 3px solid #888;
    font-size: inherit;
    height: 3em;
    line-height: 1;
    flex-grow: 0;
    margin-bottom: 1rem;
}
.search-panel-content-wrap .search-form .search-form-submit {
    margin: 0;
    margin-left: 5%;
    flex-grow: 0;
    margin-bottom: 1rem;
}
@media only screen and (max-width: 600px) {
    .search-panel-content-wrap .search-form {
        justify-content: center;
        flex-wrap: wrap;
    }
    .search-panel-content-wrap .search-form .search-form-input {
        text-align: center;
    }
    .search-panel-content-wrap .search-form .search-form-submit {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Site Inner
--------------------------------------------- */

.site-inner,
.wrap {
	margin: 0 auto;
}

.site-inner {
	background-color: transparent;
	clear: both;
	margin-top: 2%;
    padding-top: 3%;
	margin-bottom: 5%;
	/*max-width: 1200px;*/
	position: relative;
	word-wrap: break-word;
	z-index: 999;
}

.archive .site-inner,
.page-template-page_blog .site-inner {
	/*margin-bottom: 100px;*/
}

.full-width-content.featured-image .site-inner {
	margin-top: -220px;
}

.full-width-content.landing-page .site-inner {
	margin-bottom: 5%;
	margin-top: 5%;
	max-width: 800px;
}

.genesis-title-hidden .site-inner {
	margin-top: 0;
}

/* Column Widths and Positions
--------------------------------------------- */

/* Content */

.content {
	float: right;
	position: relative;
	width: 70%;
}

.content-sidebar .content {
	float: left;
    padding-right: 2rem;
}

.full-width-content .content {
	float: none;
    width: 100%;
    max-width: 800px;
}

/* Sidebar */

.sidebar {
	float: right;
	width: 30%;
    padding-left: 2rem;
}

.sidebar-content .sidebar {
	float: left;
}

/* Content + Sidebar */

.content, .sidebar,
.content-sidebar-wrap {
    margin-left: auto;
	margin-right: auto;
}
.content-sidebar-wrap:after {
    content: '';
    clear: both;
    display: block;
}

.full-width-content .content-sidebar-wrap {
    max-width: 1400px; /* <= layout */
}
.content-sidebar-wrap {
    max-width: 1300px;
    padding-left: 3rem;
    padding-right: 3rem;
}


@media only screen and (max-width: 1000px) {
    .content-sidebar .content,
	.full-width-content .content,
    .sidebar {
        padding-left: 0;
        padding-right: 0;
		width: 100%;
        float: none !important;
        clear: both;
        max-width: 700px;
	}
    .content-sidebar-wrap {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
}
@media only screen and (max-width: 600px) {
    .content-sidebar-wrap {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* Gutenberg Full Width Groups (groups used as sections)
--------------------------------------------- */

.full-width-content .alignfull {
    max-width: none;
    width: 100vw;
    margin-left: 50%;
    margin-right: 0;
    position: relative;
    left: -50vw;
    padding-left: 3rem; /* = padding of .content-sidebar-wrap */
    padding-right: 3rem;
}
@media only screen and (max-width: 1000px) {
    .full-width-content .alignfull {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
@media only screen and (max-width: 600px) {
    .full-width-content .alignfull {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* Common Classes
---------------------------------------------------------------------------- */

/* Avatar
--------------------------------------------- */

.avatar {
	border-radius: 50%;
	float: left;
}

.author-box .avatar,
.alignleft .avatar {
	margin-right: 24px;
}

.alignright .avatar {
	margin-left: 24px;
}

.comment .avatar {
	margin: 0 16px 24px 0;
}

.entry-avatar .avatar {
	background-color: #fff;
	float: none;
	margin-bottom: 40px;
	margin-top: -60px;
	padding: 5px;
}

/* Genesis
--------------------------------------------- */

.breadcrumb {
	font-size: 14px;
	margin-bottom: 40px;
}

.full-width-content.single .breadcrumb {
	text-align: center;
}

.featured-image .breadcrumb {
	background-color: rgba(0, 0, 0, 0.6);
	margin-bottom: 0;
	position: absolute;
	top: -220px;
	width: 100%;
}

.featured-image .breadcrumb,
.featured-image .breadcrumb a {
	color: #fff;
}

.featured-image .breadcrumb a:hover,
.featured-image .breadcrumb a:focus {
	color: #ccc;
}

.genesis-title-hidden .breadcrumb {
	margin-top: 3rem;
}

.after-entry,
.archive-description,
.author-box {
	margin-bottom: 3rem;
}

.after-entry {
	box-shadow: 0 10px 80px rgba(0, 0, 0, 0.1);
	padding: 60px 80px;
}

.full-width-content .after-entry:last-child {
	margin-bottom: 180px;
}

.archive-description p:last-of-type,
.author-box p:last-of-type {
	margin-bottom: 0;
}

/* Search Form
--------------------------------------------- */
.header-search-wrap .search-form {
	overflow: hidden;
	position: relative;
}

.entry-content .search-form {
	margin-bottom: 40px;
	margin-top: 20px;
}

.error404 .entry-content .search-form input[type="search"] {
	margin-right: 10px;
	width: 50%;
}

.header-search-wrap input[type="submit"] {
    border: 0;
}

.post-password-form input[type="submit"],
.search-form input[type="submit"] {
	margin-top: 10px;
}

.widget_search input[type="submit"],
.header-search-wrap input[type="submit"] {
	border: 0;
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

.widget_search input[type="submit"] {
	right: 0;
	top: 0;
}

.widget_search input[type="submit"]:focus,
.header-search-wrap input[type="submit"]:focus {
	background-color: #000;
	box-shadow: none;
	color: #fff;
	height: auto;
	padding: 22px 20px;
	width: auto;
}


/* Titles
--------------------------------------------- */

.entry-title a,
.sidebar .widget-title a {
	color: inherit;
	text-decoration: none;
}

.entry-title a:focus {
	color: #39f;
}
@media(hover:hover){
    .entry-title a:hover{
        color: #39f;
    }
}

.widget-title {
	font-family: inherit;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: -0.5px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.sidebar .widget-title {
	margin-bottom: 20px;
}

/* WordPress
--------------------------------------------- */

a.aligncenter img {
	display: block;
	margin: 0 auto;
}

a.alignnone {
	display: inline-block;
}

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 24px;
}

img.alignnone,
.alignnone {
	margin-bottom: 12px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 20px 20px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 20px 20px;
}

figcaption,
.gallery-caption,
.wp-caption-text {
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	text-align: center;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}

.entry-content .wp-audio-shortcode,
.entry-content .wp-playlist,
.entry-content .wp-video {
	margin: 0 0 30px;
}


/* Widgets
---------------------------------------------------------------------------- */

.widget {
	margin-bottom: 1.5em;
	word-wrap: break-word;
}

.widget p:last-of-type,
.widget ul > li:last-of-type,
.widget-area .widget:last-of-type {
	margin-bottom: 0;
}

.widget ul > li {
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.widget ul > li:last-of-type {
	padding-bottom: 0;
}

.widget ol > li {
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 20px;
	text-indent: -20px;
}

.widget li li {
	border: 0;
	margin: 0 0 0 30px;
	padding: 0;
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}


/* Featured Content
--------------------------------------------- */

.featured-content .aligncenter,
.featured-content .aligncenter:hover,
.featured-content .alignleft,
.featured-content .alignleft:hover,
.featured-content .alignnone,
.featured-content .alignnone:hover,
.featured-content .alignright,
.featured-content .alignright:hover {
	border-width: 0;
}

.featured-content .entry {
	padding: 0;
}

.sidebar .featured-content .entry {
	margin-bottom: 1.5em;
}

.featured-content .entry:last-of-type {
	margin-bottom: 0;
}

.featured-content .entry-title {
	font-size: 1em;
}

.sidebar .featured-content .entry-title {
	font-size: 1em;
	margin-bottom: 0.25em;
	margin-top: 0.5em;
}

.sidebar .featured-content .entry-meta {
	margin-bottom: 0.25em;
}

.sidebar .featured-content a.alignleft,
.sidebar .featured-content a.alignright {
	margin-bottom: 0;
}


/* Plugins
---------------------------------------------------------------------------- */

/* Genesis eNews Extended
--------------------------------------------- */

.after-entry .enews-widget {
	text-align: center;
}

.after-entry .enews-widget form {
	margin-left: 40px;
	margin-right: 40px;
	margin-top: 30px;
}

.sidebar .enews-widget form {
	margin-top: 20px;
}

.enews-widget input {
	font-size: 16px;
	margin-bottom: 10px;
}

.enews-widget input[type="email"],
.enews-widget input[type="text"] {
	background-color: #f5f5f5;
}

.after-entry .enews-widget input {
	text-align: center;
}

.enews-widget input[type="submit"] {
	margin: 0;
	width: 100%;
}

.enews form + p {
	margin-top: 10px;
}

/* Jetpack
--------------------------------------------- */

#wpstats {
	display: none;
}

/* WPForms
--------------------------------------------- */

.site-container .wpforms-container {
	margin-bottom: 40px;
}

.site-container .wpforms-form .wpforms-field {
	clear: both;
	margin: 20px 0;
	overflow: hidden;
}

.site-container .wpforms-form .wpforms-field-hp {
	display: none !important;
	left: -9000px !important;
	position: absolute !important;
}

.site-container .wpforms-container .wpforms-form .wpforms-field input {
	border-radius: 0;
	height: auto;
	padding: 15px;
}

.site-container .entry-content .wpforms-form .wpforms-field-label {
	font-weight: 600;
}

.site-container .entry-content .wpforms-form .wpforms-field-sublabel {
	font-size: 14px;
	font-weight: 300;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-small {
	height: 120px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-medium {
	height: 200px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-large {
	height: 300px;
}


/* Skip Links
---------------------------------------------------------------------------- */

.genesis-skip-link {
	margin: 0;
}

.genesis-skip-link li {
	height: 0;
	width: 0;
	list-style: none;
}

/* Site Header
---------------------------------------------------------------------------- */

.site-header {
	background-color: #fff;
	border-bottom: 1px solid transparent;
	/*min-height: 80px;*/
	padding: 0;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 9999;
}
.site-header > .wrap > .menu-toggle {
    padding: 1.5em 0;
}

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

.site-header > .wrap > * {
	transition: all 0.4s ease-in-out;
}

.site-header.search-visible > .wrap > :not(.header-search-wrap) {
	opacity: 0;
}

.shadow .site-header,
.site-header.search-visible {
	box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
}

/* Title Area
--------------------------------------------- */

.title-area {
	float: left;
	padding-bottom: 1.5em;
	padding-top: 1.5em;
}

.wp-custom-logo .title-area {
	height: auto;
	margin: 10px auto;
	padding: 0;
	width: auto;
}

.site-title {
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 0;
	text-transform: uppercase;
}

.site-title a,
.site-title a:hover,
.site-title a:focus {
	color: inherit;
	text-decoration: none;
}

.wp-custom-logo .site-title > a {
	float: left;
	min-height: 50px;
	width: 100%;
}

.wp-custom-logo .site-title {
	border-width: 0;
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}


/* Site Header
---------------------------------------------------------------------------- */

.site-header {
    transition: box-shadow 1s;
}
.site-header h1 {
    margin: 0;
}
.site-header > .wrap {
    display: flex;
}
.site-header > .wrap > .header-bar {
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
}
.site-header > .wrap .title-area {
    margin-right: auto;
    margin-left: 0;
}
.site-header .custom-logo {
    display: block;
    width: auto;
    height: 6rem;
	max-width: 100%;
    max-height: 100%;
}
@media only screen and (max-width: 900px) {
    .site-header > .wrap > .header-bar {
        padding: 0 1rem
    }
}
.site-header .custom-logo-link,
.site-header .custom-logo-link:focus,
.site-header .custom-logo-link:hover {
    border: 0;
}
.site-header .custom-logo-link ~ .site-title {
    position: absolute;
    text-indent: 1em;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Site Navigation
---------------------------------------------------------------------------- */

.genesis-nav-menu {
	clear: both;
	line-height: 1;
	width: 100%;
    font-size: 0;
    white-space: nowrap;
}

.genesis-nav-menu li {
    font-size: 1rem;
	float: none;
	list-style-type: none;
}

.genesis-nav-menu li li {
	margin-left: 0;
}

.genesis-nav-menu .menu-item,
.genesis-nav-menu .toggle-header-search {
	display: inline-block;
	text-align: left;
}

.genesis-nav-menu .menu-item:focus,
.genesis-nav-menu .menu-item:hover {
	position: relative;
}

.genesis-nav-menu a,
.genesis-nav-menu .toggle-header-search {
	color: inherit;
	display: block;
	font-family: inherit;
	font-size: 0.8em;
    line-height: 1em;
	font-weight: 400;
    padding: 1rem 0.75rem;
}

.genesis-nav-menu a:focus,
.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item > a,
.genesis-nav-menu .toggle-header-search:focus,
.genesis-nav-menu .toggle-header-search:hover {
	color: #39f;
    border: 0;
}

.genesis-nav-menu .sub-menu {
	background: transparent;
	left: -9999px;
	opacity: 0;
	position: absolute;
	transition: opacity 0.5s ease-in-out;
	width: 160px;
	z-index: 99;
}

.genesis-nav-menu .sub-menu::before {
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid transparent;
    /**/ border-bottom-color: #e6e6e6;
	content: " ";
	height: 0;
	left: 15px;
	position: absolute;
	top: -7px;
	width: 0;
}

.genesis-nav-menu .sub-menu .sub-menu::before {
	display: none;
}

.genesis-nav-menu > .menu-item > .sub-menu > .menu-item:first-child {
	border-radius: 3px 3px 0 0;
}

.genesis-nav-menu > .menu-item .sub-menu > .menu-item:first-child,
.genesis-nav-menu > .menu-item > .sub-menu > .menu-item:last-child,
.genesis-nav-menu .sub-menu a {
	/**/ background-color: #e6e6e6;
}

.genesis-nav-menu > .menu-item .sub-menu > .menu-item:first-child {
	padding-top: 5px;
}

.genesis-nav-menu > .menu-item > .sub-menu > .menu-item:last-child {
	border-radius: 0 0 3px 3px;
}

.genesis-nav-menu > .menu-item .sub-menu > .menu-item:last-child {
	padding-bottom: 5px;
}

.genesis-nav-menu .sub-menu a {
	padding: 1em 1.5em;
	position: relative;
	width: 160px;
}

.genesis-nav-menu .sub-menu .sub-menu {
	margin: -42px 0 0 160px;
}

.genesis-nav-menu .menu-item:hover {
	position: static;
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
	left: auto;
	opacity: 1;
}

/* Header Menu
--------------------------------------------- */

.nav-primary .genesis-nav-menu .sub-menu {
	z-index: 9999;
}

.nav-primary .genesis-nav-menu .sub-menu a {
	color: inherit;
}

.nav-primary .genesis-nav-menu .sub-menu li:last-child a {
	border-bottom: none;
}

.nav-primary .genesis-nav-menu .sub-menu a:focus,
.nav-primary .genesis-nav-menu .sub-menu a:hover {
	/**/ background-color: #f6f6f6;
	color: inherit;
}

/* Header Search [eval]
--------------------------------------------- */

.header-search-wrap {
	display: none;
}

.js .header-search-wrap {
	height: 100%;
	left: 0;
	padding: 10px 40px;
	position: absolute;
	transform: translate3d(0, -100%, 0);
	transition: none;
	top: 0;
	width: 100%;
	z-index: 1001; /* Show above the menu toggle button */
}

.js .header-search-wrap .search-form,
.js .header-search-wrap input[type="search"] {
	height: 100%;
}

.search-visible .header-search-wrap {
	transform: translate3d(0, 0, 0);
}

.header-search-wrap:target {
	clear: both;
	display: block;
	position: relative;
}

.header-search-wrap input[type="search"] {
	border: 0;
	padding-right: 2em;
}

.header-search-wrap input[type="submit"]:focus {
	border-radius: 3px;
	margin-top: 1px;
	padding: 20px;
	right: 50px;
}

.toggle-header-search {
	background: transparent;
}

.toggle-header-search.close {
	color: inherit;
	height: 100%;
	padding: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: translate3d(-35px, 0, 0);
	transition: transform 0.2s ease-in-out;
	width: 30px;
	z-index: 100;
}

.header-search-wrap:target .toggle-header-search.close {
	transform: none;
}

.toggle-header-search .ionicons {
	font-size: 12px;
	transform: scale(2);
}

.toggle-header-search.close .ionicons {
	position: absolute;
	right: 50%;
	top: calc(50% - 5px);
	transform: scale(3);
}


/* Accessible Menu [eval]
--------------------------------------------- */

.menu .menu-item:focus,
.menu .menu-item.sfHover {
	position: static;
}

.menu .menu-item > a:focus + ul.sub-menu,
.menu .menu-item.sfHover > ul.sub-menu {
	left: auto;
	opacity: 1;
}

.genesis-nav-menu .menu-item.sfHover > .sub-menu > .menu-item.sfHover > .sub-menu {
	left: 160px;
	margin-left: 0;
}


/* Responsive Menu Button
--------------------------------------------- */

button.menu-toggle {
    position: relative;
}
button.menu-toggle,
button.menu-toggle:focus,
button.menu-toggle:hover {
    background: transparent;
    color: currentColor;
    text-indent: 0;
    white-space: nowrap;
    line-height: 1;
    width: 40px;
    height: 40px;
    margin: 0;
    display: block;
    padding: 0;
    border: none;
    border-radius: 0;
    flex-shrink: 0;
    flex-grow: 0;
}
button.menu-toggle:before,
button.menu-toggle:after {
    content: '';
    display: block;
    position: absolute;
    margin: 0;
    transition: all 0.2s;
}
button.menu-toggle:before {
    top: 8px;
    height: 13px;
    border-top: 2px solid;
    border-bottom: 2px solid;
    left: 6px;
    right: 6px;
}
button.menu-toggle:after {
    bottom: 8px;
    border-bottom: 2px solid;
    left: 6px;
    right: 6px;
}
button.menu-toggle > span {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: absolute;
    display: block;
    top: 50%;
    right: 100%;
    font-size: 0.8em;
    overflow: hidden;
    white-space: nowrap;
    transform: translate(0, -50%);
    max-width: 0;
    margin-right: 0;
    transition: all 0.2s ease-out;
}
button.menu-toggle:focus > span,
button.menu-toggle:hover > span {
    max-width: 10em;
    margin-right: 0.5em;
}
@media (hover: none) {
}


button.menu-toggle.activated {
    border-bottom-color: transparent;
}
button.menu-toggle.activated:before,
button.menu-toggle.activated:after {
    height: 0;
    top: 19px;
}
button.menu-toggle.activated:before {
    left: 4px;
    right: 4px;
    border-bottom: 0;
    transform: rotate(45deg);
}
button.menu-toggle.activated:after {
    left: 4px;
    right: 4px;
    transform: rotate(-45deg);
}

/* Content Area
---------------------------------------------------------------------------- */

/* Entries [eval]
--------------------------------------------- */

.entry {
    margin-bottom: 3em;
}

.entry-title {
    margin-bottom: 1rem;
}

.entry-background {
	background-position: center;
	background-size: cover;
	display: block;
	height: 460px;
	position: relative;
	width: 100%;
}

.full-width-content.landing-page .entry {
	margin-bottom: 0;
}

.entry-content ol,
.entry-content ul {
	margin-bottom: 30px;
	padding-left: 40px;
}

.entry-content ol > li {
	list-style-type: decimal;
}

.entry-content ul > li {
	list-style-type: disc;
}

.entry-content ol ul > li,
.entry-content ul ul > li {
	list-style-type: circle;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}

.entry-content code {
	background-color: #000;
	color: #eee;
}

.entry-content .intro {
	font-size: 19px;
	font-style: italic;
	font-weight: 600;
}

p.center {
	text-align: center;
}

/* Entry Messages [eval]
--------------------------------------------- */

.message {
	padding: 25px 30px;
}

.message,
.message a {
	color: #fff;
}

.message a {
	border-bottom: 1px solid #fff;
}

.message a:hover,
.message a:focus {
	border-bottom: none;
}

.message.green {
	background-color: #00a86d;
}

.message.orange {
	background-color: #cc4b00;
}

.message.red {
	background-color: #be0040;
}

/* Entry Meta
--------------------------------------------- */

.entry-meta {
	font-size: 0.8em;
    margin-bottom: 1rem;
}

.entry-footer {
	margin-top: 2em;
}

.entry-categories::before,
.entry-tags::before {
	display: inline-block;
	font: normal 16px/1 "ionicons"; /* stylelint-disable-line */
	margin-right: 8px;
	margin-top: -5px;
	vertical-align: middle;
	-webkit-font-smoothing: antialiased;
}

.entry-categories::before {
	content: "\f3ca";
}

.entry-tags::before {
	content: "\f48d";
}

.entry-categories,
.entry-tags {
	display: block;
}

/* Pagination
--------------------------------------------- */

.pagination {
	clear: both;
}

.archive-pagination a {
	background-color: #000;
	border-radius: 3px;
	color: #fff;
	font-family: inherit;
	font-size: 12px;
	letter-spacing: 1px;
	line-height: 1;
	padding: 10px 15px;
	text-transform: uppercase;
}

.archive-pagination a:hover,
.archive-pagination a:focus,
.archive-pagination li.active a {
	background-color: #39f;
	box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.2);
	transform: translateY(-1px);
}

.adjacent-entry-pagination {
	margin-bottom: 0;
}

.archive-pagination li {
	display: inline-block;
	margin-bottom: 10px;
}

/* Comments
--------------------------------------------- */

.comment-respond,
.entry-comments,
.entry-pings {
	font-size: 17px;
}

.entry-comments,
.entry-pings {
	margin-bottom: 100px;
}

.comment-notes {
	text-align: center;
}

.wp-block-latest-comments li.wp-block-latest-comments__comment,
.comment-list li {
	padding: 0;
    list-style: none;
    text-indent: 0;
}

.wp-block-latest-comments__comment-meta {
    line-height: inherit;
}
.wp-block-latest-comments__comment-link {
    display: block;
    margin-top: 0.5em;
}

.comment-list .depth-1 {
	padding-left: 0;
}

.comment-header {
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 30px;
}

.comment-content {
	clear: both;
}

.comment-content p {
	margin-bottom: 20px;
}

.comment-content ul > li {
	list-style-type: disc;
}

.comment-respond {
	margin-bottom: 100px;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 100%;
}

.comment-respond label {
	display: block;
	margin-right: 12px;
}

.comment-header p {
	margin-bottom: 0;
}

.comment-form-cookies-consent label {
	display: inline;
	padding-left: 10px;
}

.entry-pings .reply {
	display: none;
}

/* custom - keep footer on bottom
---------------------------------------------------------------------------- */

html {
    width: 100%;
    height: 100%;
}
body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
body > .site-container {
    flex-grow: 1;
}
body > * {
    flex-shrink: 0;
}

/* Site Footer
---------------------------------------------------------------------------- */

.site-footer {
    bottom: 0;
    font-size: 1rem;
    padding: 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.site-footer > .wrap > * {
    padding: 1.5rem;
}
.site-footer > .wrap > p {
    font-size: 0.8em;
}
.site-footer > .wrap > p:empty {
    display: none;
}
.site-footer > .wrap > p:only-child {
    margin: 0;
}
.site-footer .footer-widgets {
    margin: -2rem;
    margin-top: 0;
}
.site-footer .footer-widgets > .wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.site-footer .footer-widgets > .wrap > .widget {
    margin: 2rem;
    margin-top: 0;
}
.site-footer .wrap a.footer-logo-link {
	border-bottom-width: 0;
	display: inline-block;
	height: 50px;
	margin-bottom: 10px;
	padding: 0;
}
.site-footer .footer-logo {
	height: 50px;
	width: auto;
}


/* Media Queries
---------------------------------------------------------------------------- */

@media only screen and (min-width: 901px) {
    .site-header .responsive-show-900 { display: none !important; }
}
@media only screen and (max-width: 900px) {
    .site-header .responsive-hide-900 { display: none !important; }
}
@media only screen and (min-width: 801px) {
    .site-header .responsive-show-800 { display: none !important; }
}
@media only screen and (max-width: 800px) {
    .site-header .responsive-hide-800 { display: none !important; }
}
@media only screen and (max-width: 782px) {
    .admin-bar .site-header { top: 46px; }
}
@media only screen and (max-width: 600px) {
	.admin-bar .site-header { top: 0; }
}

/* Site Header - Auto Resonsive
---------------------------------------------------------------------------- */

html.responsive-header .site-header .responsive-header-hide,
html:not(.responsive-header) .site-header .responsive-header-show {
	display: none !important;
}

/* custom content placeholder
---------------------------------------------------------------------------- */

.placeholder-for-content {
    color: #BBB;
    font-size: 16px;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: 0;
    text-decoration: none;
    padding: 5% 0.5em;
    text-align: center;
    font-weight: normal;
    border: 2px dashed currentColor;
}

