/*!
Theme Name: CNE
Theme URI: http://grupocne.org/
Author: CMH Technology Consulting, Inc.
Author URI: http://www.cmhtechnology.com/
Description: Center for a New Economy theme.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cne
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

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.

CNE is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
	margin: 1em 0;
}

pre {
	padding: 1.6em;
	background: #f8f9fa;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
* {
	cursor: url("assets/images/cursor.png"), auto !important;
}

ul {
	list-style-type: disc;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	padding: 0.375rem 0.75rem;
	border-radius: 0;
	-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	color: #fff;
	background-color: #FF5800;
	border: 1px solid #FF5800;
}

@media screen and (prefers-reduced-motion: reduce) {
	button,
	input[type="button"],
	input[type="reset"],
	input[type="submit"] {
		-webkit-transition: none;
		transition: none;
	}
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	color: #fff;
	background-color: #d94b00;
	border: 1px solid #cc4600;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
	-webkit-box-shadow: 0 0 0 0.2rem rgba(255, 88, 0, 0.5);
	box-shadow: 0 0 0 0.2rem rgba(255, 88, 0, 0.5);
	outline: 0;
}

button:disabled,
input[type="button"]:disabled,
input[type="reset"]:disabled,
input[type="submit"]:disabled {
	color: #fff;
	background-color: #FF5800;
	border: 1px solid #FF5800;
	opacity: 0.65;
}

button:not(:disabled),
input[type="button"]:not(:disabled),
input[type="reset"]:not(:disabled),
input[type="submit"]:not(:disabled) {
	cursor: pointer;
}

button:not(:disabled):not(.disabled):active,
input[type="button"]:not(:disabled):not(.disabled):active,
input[type="reset"]:not(:disabled):not(.disabled):active,
input[type="submit"]:not(:disabled):not(.disabled):active {
	color: #fff;
	background-color: #cc4600;
	border: 1px solid #bf4200;
}

.widget-area button,
.widget-area input[type="button"],
.widget-area input[type="reset"],
.widget-area input[type="submit"] {
	color: #fff;
	background-color: #003C69;
	border: 1px solid #003C69;
}

.widget-area button:hover,
.widget-area input[type="button"]:hover,
.widget-area input[type="reset"]:hover,
.widget-area input[type="submit"]:hover {
	color: #fff;
	background-color: #002643;
	border: 1px solid #001f36;
}

.widget-area button:focus,
.widget-area input[type="button"]:focus,
.widget-area input[type="reset"]:focus,
.widget-area input[type="submit"]:focus {
	-webkit-box-shadow: 0 0 0 0.2rem rgba(0, 60, 105, 0.5);
	box-shadow: 0 0 0 0.2rem rgba(0, 60, 105, 0.5);
}

.widget-area button:disabled,
.widget-area input[type="button"]:disabled,
.widget-area input[type="reset"]:disabled,
.widget-area input[type="submit"]:disabled {
	color: #fff;
	background-color: #003C69;
	border: 1px solid #003C69;
}

.widget-area button:not(:disabled):not(.disabled):active,
.widget-area input[type="button"]:not(:disabled):not(.disabled):active,
.widget-area input[type="reset"]:not(:disabled):not(.disabled):active,
.widget-area input[type="submit"]:not(:disabled):not(.disabled):active {
	color: #fff;
	background-color: #001f36;
	border: 1px solid #001829;
}

input:not([type]),
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
input[type="file"],
textarea,
select {
	-webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	display: block;
	width: 100%;
	padding: 0.375rem 0.75rem;
	color: #495057;
	background-color: #fff;
	border: 1px solid #ced4da;
}

@media screen and (prefers-reduced-motion: reduce) {
	input:not([type]),
	input[type="text"],
	input[type="email"],
	input[type="url"],
	input[type="password"],
	input[type="search"],
	input[type="number"],
	input[type="tel"],
	input[type="range"],
	input[type="date"],
	input[type="month"],
	input[type="week"],
	input[type="time"],
	input[type="datetime"],
	input[type="datetime-local"],
	input[type="color"],
	input[type="file"],
	textarea,
	select {
		-webkit-transition: none;
		transition: none;
	}
}

input:not([type]):focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
input[type="file"]:focus,
textarea:focus,
select:focus {
	background-color: #fff;
	-webkit-box-shadow: 0 0 0 0.2rem rgba(255, 88, 0, 0.25);
	box-shadow: 0 0 0 0.2rem rgba(255, 88, 0, 0.25);
	border-color: #FF5800;
}

input:not([type])::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="range"]::-webkit-input-placeholder,
input[type="date"]::-webkit-input-placeholder,
input[type="month"]::-webkit-input-placeholder,
input[type="week"]::-webkit-input-placeholder,
input[type="time"]::-webkit-input-placeholder,
input[type="datetime"]::-webkit-input-placeholder,
input[type="datetime-local"]::-webkit-input-placeholder,
input[type="color"]::-webkit-input-placeholder,
input[type="file"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
	color: #6c757d;
	opacity: 1;
}

input:not([type]):-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="range"]:-ms-input-placeholder,
input[type="date"]:-ms-input-placeholder,
input[type="month"]:-ms-input-placeholder,
input[type="week"]:-ms-input-placeholder,
input[type="time"]:-ms-input-placeholder,
input[type="datetime"]:-ms-input-placeholder,
input[type="datetime-local"]:-ms-input-placeholder,
input[type="color"]:-ms-input-placeholder,
input[type="file"]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
	color: #6c757d;
	opacity: 1;
}

input:not([type])::-ms-input-placeholder,
input[type="text"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
input[type="url"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="range"]::-ms-input-placeholder,
input[type="date"]::-ms-input-placeholder,
input[type="month"]::-ms-input-placeholder,
input[type="week"]::-ms-input-placeholder,
input[type="time"]::-ms-input-placeholder,
input[type="datetime"]::-ms-input-placeholder,
input[type="datetime-local"]::-ms-input-placeholder,
input[type="color"]::-ms-input-placeholder,
input[type="file"]::-ms-input-placeholder,
textarea::-ms-input-placeholder,
select::-ms-input-placeholder {
	color: #6c757d;
	opacity: 1;
}

input:not([type])::placeholder,
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="number"]::placeholder,
input[type="tel"]::placeholder,
input[type="range"]::placeholder,
input[type="date"]::placeholder,
input[type="month"]::placeholder,
input[type="week"]::placeholder,
input[type="time"]::placeholder,
input[type="datetime"]::placeholder,
input[type="datetime-local"]::placeholder,
input[type="color"]::placeholder,
input[type="file"]::placeholder,
textarea::placeholder,
select::placeholder {
	color: #6c757d;
	opacity: 1;
}

input:not([type]):disabled, input:not([type])[readonly],
input[type="text"]:disabled,
input[type="text"][readonly],
input[type="email"]:disabled,
input[type="email"][readonly],
input[type="url"]:disabled,
input[type="url"][readonly],
input[type="password"]:disabled,
input[type="password"][readonly],
input[type="search"]:disabled,
input[type="search"][readonly],
input[type="number"]:disabled,
input[type="number"][readonly],
input[type="tel"]:disabled,
input[type="tel"][readonly],
input[type="range"]:disabled,
input[type="range"][readonly],
input[type="date"]:disabled,
input[type="date"][readonly],
input[type="month"]:disabled,
input[type="month"][readonly],
input[type="week"]:disabled,
input[type="week"][readonly],
input[type="time"]:disabled,
input[type="time"][readonly],
input[type="datetime"]:disabled,
input[type="datetime"][readonly],
input[type="datetime-local"]:disabled,
input[type="datetime-local"][readonly],
input[type="color"]:disabled,
input[type="color"][readonly],
input[type="file"]:disabled,
input[type="file"][readonly],
textarea:disabled,
textarea[readonly],
select:disabled,
select[readonly] {
	background-color: #e9ecef;
	opacity: 1;
}

input[type="color"] {
	padding: 2px;
}

progress,
meter {
	width: 100%;
}

.widget-area input:not([type]),
.widget-area input[type="text"],
.widget-area input[type="email"],
.widget-area input[type="url"],
.widget-area input[type="password"],
.widget-area input[type="search"],
.widget-area input[type="number"],
.widget-area input[type="tel"],
.widget-area input[type="range"],
.widget-area input[type="date"],
.widget-area input[type="month"],
.widget-area input[type="week"],
.widget-area input[type="time"],
.widget-area input[type="datetime"],
.widget-area input[type="datetime-local"],
.widget-area input[type="color"],
.widget-area input[type="file"],
.widget-area textarea,
.widget-area select {
	border: 1px solid #003C69;
}

.widget-area input:not([type]):focus,
.widget-area input[type="text"]:focus,
.widget-area input[type="email"]:focus,
.widget-area input[type="url"]:focus,
.widget-area input[type="password"]:focus,
.widget-area input[type="search"]:focus,
.widget-area input[type="number"]:focus,
.widget-area input[type="tel"]:focus,
.widget-area input[type="range"]:focus,
.widget-area input[type="date"]:focus,
.widget-area input[type="month"]:focus,
.widget-area input[type="week"]:focus,
.widget-area input[type="time"]:focus,
.widget-area input[type="datetime"]:focus,
.widget-area input[type="datetime-local"]:focus,
.widget-area input[type="color"]:focus,
.widget-area input[type="file"]:focus,
.widget-area textarea:focus,
.widget-area select:focus {
	background-color: #fff;
	-webkit-box-shadow: 0 0 0 0.2rem rgba(0, 60, 105, 0.25);
	box-shadow: 0 0 0 0.2rem rgba(0, 60, 105, 0.25);
	border-color: #003C69;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Content Navigation
--------------------------------------------------------------*/
.comment-navigation,
.post-navigation,
.paging-navigation {
	margin: 2em 0;
}

.comment-navigation a,
.post-navigation a,
.paging-navigation a {
	display: block;
	width: 100%;
	padding: 1em;
	text-decoration: none;
	word-wrap: break-word;
	border: 1px solid #dee2e6;
}

.comment-navigation a:hover, .comment-navigation a:focus,
.post-navigation a:hover,
.post-navigation a:focus,
.paging-navigation a:hover,
.paging-navigation a:focus {
	color: white;
	background: #FF5800;
	border-color: #FF5800;
}

.post-navigation .meta-nav {
	display: block;
}

.post-navigation .post-title {
	font-weight: 700;
}

.pagination {
	margin: 2em 0;
}

.pagination .nav-links .page-numbers {
	padding: .2em .6em;
	color: #003C69;
	text-decoration: none;
	border: 2px solid transparent;
}

.pagination .nav-links .page-numbers:not(.current):not(.dots):hover {
	color: #FF5800;
	background-color: #f8f9fa;
}

.pagination .nav-links .current {
	border-color: #003C69;
	cursor: default;
}

.page-links {
	clear: both;
	margin-top: 3em;
}

.page-links a {
	color: #212529;
	font-weight: 700;
	text-decoration: none;
}

.page-links a:hover {
	color: #FF5800;
}

@media (min-width: 768px) {
	.comment-navigation .nav-links,
	.post-navigation .nav-links {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.comment-navigation .nav-previous,
	.comment-navigation .nav-next,
	.post-navigation .nav-previous,
	.post-navigation .nav-next {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 48%;
	}
	.comment-navigation .nav-next,
	.post-navigation .nav-next {
		text-align: right;
	}
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	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;
	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;
	-webkit-clip-path: none;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.absolute-all {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.absolute-top {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
}

.absolute-bottom {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
}

@media (min-width: 576px) {
	.absolute-sm-all {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}
	.alignleft {
		display: inline;
		float: left;
		margin-right: 1.5em;
	}
	.alignright {
		display: inline;
		float: right;
		margin-left: 1.5em;
	}
	.aligncenter {
		display: block;
		margin-left: auto;
		margin-right: auto;
		clear: both;
	}
	.absolute-sm-top {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
	}
	.absolute-sm-bottom {
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
	}
}

@media (min-width: 768px) {
	.absolute-md-all {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}
	.absolute-md-top {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
	}
	.absolute-md-bottom {
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
	}
}

@media (min-width: 992px) {
	.absolute-lg-all {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}
	.absolute-lg-top {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
	}
	.absolute-lg-bottom {
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
	}
}

@media (min-width: 1200px) {
	.absolute-xl-all {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}
	.absolute-xl-top {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
	}
	.absolute-xl-bottom {
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
	}
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear::before,
.clear::after,
.entry-content::before,
.entry-content::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,
.content-area::before,
.content-area::after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear::after,
.entry-content::after,
.comment-content::after,
.site-header::after,
.site-content::after,
.site-footer::after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 2em;
	/* Make sure select elements fit in widgets. */
}

.widget ul,
.widget ol {
	padding-left: 0;
	margin-bottom: 0;
	list-style-type: none;
}

.widget a {
	color: #212529;
}

.widget a:hover, .widget a:focus {
	color: #FF5800;
}

.widget select {
	max-width: 100%;
}

.widget-title {
	font-size: 22.4px;
	font-size: 1.4rem;
	padding: .4em 0;
	margin: 0 0 .5em;
	text-transform: uppercase;
	border-top: 2px solid #003C69;
}

/* Archive and Categories widgets */
.widget_archive li,
.widget_categories li {
	margin-bottom: .5em;
	color: #adb5bd;
}

.widget_archive select,
.widget_categories select {
	width: 100%;
}

/* Calendar widget */
.widget_calendar table {
	text-align: center;
}

.widget_calendar td {
	font-size: 12.8px;
	font-size: 0.8rem;
	padding: .2em;
	background: white;
	border: 1px solid #adb5bd;
}

.widget_calendar .pad {
	background: #f8f9fa;
}

.widget_calendar a {
	font-weight: 700;
	text-decoration: none;
}

.widget_calendar caption {
	padding-bottom: 0;
}

/* Pages and Menu widgets */
.widget_pages li,
.widget_nav_menu li {
	position: relative;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.widget_pages > ul > li:last-child,
.widget_nav_menu > ul > li:last-child {
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.widget_pages a,
.widget_nav_menu a {
	display: block;
	padding: .6em;
	text-decoration: none;
	text-transform: uppercase;
}

.widget_pages .current_page_item a,
.widget_nav_menu .current_page_item a {
	color: #FF5800;
}

.widget_pages ul ul,
.widget_nav_menu ul ul {
	margin-left: .5em;
	border-left: 1px solid rgba(0, 0, 0, 0.05);
}

/* Recent comments */
.widget_recent_comments .recentcomments {
	font-size: 14.4px;
	font-size: 0.9rem;
}

.widget_recent_comments .recentcomments > a {
	display: block !important;
	font-weight: 700;
}

.widget_recent_comments li {
	margin-bottom: .5em;
}

/* Recent posts */
.widget_recent_entries li {
	font-size: 14.4px;
	font-size: 0.9rem;
	margin-bottom: .5em;
}

/* RSS widget */
.widget_rss ul {
	font-size: 14.4px;
	font-size: 0.9rem;
}

.widget_rss li {
	margin-bottom: 1em;
}

.widget_rss a {
	display: block;
	font-weight: 700;
}

.widget_rss .rss-date,
.widget_rss cite {
	color: #6c757d;
}

.widget_rss .rssSummary {
	margin: .5em 0;
}

.widget_rss .widget-title a {
	display: inline-block;
}

/* Search widget */
.widget_search label {
	width: 100%;
	max-width: 81.9%;
}

/* Tag cloud widget */
.widget_tag_cloud .tagcloud {
	text-align: center;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
.header-top .email-link {
	color: #212529;
}

.header-top .email-link:hover {
	color: #FF5800;
}

.header-top .search-field {
	background-color: #f8f9fa;
	border-color: transparent;
}

.header-top .search-field:focus {
	background-color: #fff;
}

.header-top .search-submit {
	display: none;
}

.header-top .search-form label {
	margin-bottom: 0;
	width: 100%;
}

.header-main-wrap {
	position: relative;
}

.no-js .header-main-wrap {
	margin-bottom: 1em;
}

.toggle-container {
	position: absolute;
	top: 0;
	left: 0;
}

.site-branding {
	text-align: center;
}

.custom-logo-link {
	display: inline-block;
}

.custom-logo-link img {
	display: block;
	width: auto;
	height: 55px;
}

.site-title {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 2em;
	line-height: 1;
}

.site-title a {
	text-decoration: none;
}

.site-description {
	margin-bottom: 0;
}

.site-header .social-navigation a {
	font-size: 1.3rem;
}

.featured-image-header {
	height: 150px;
	overflow: hidden;
	background-color: #343a40;
}

.featured-image-header img {
	position: relative;
	top: 50%;
	width: 100%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media (min-width: 768px) {
	.featured-image-header {
		height: 40vh;
	}
}

@media (min-width: 992px) {
	.header-top {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.header-main {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.header-main-wrap {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-flex: 1;
		-ms-flex: 1 0 auto;
		flex: 1 0 auto;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.toggle-container {
		position: relative;
	}
	.site-branding {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-flex: 1;
		-ms-flex: 1 0 auto;
		flex: 1 0 auto;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-right: 1em;
		text-align: left;
	}
	.custom-logo-link {
		margin-right: 1em;
	}
	.site-header.fixed-top .custom-logo-link img {
		display: block;
		width: auto;
		height: 25px;
	}
	.featured-image-header {
		height: 50vh;
	}
}

@media (min-width: 1200px) {
	.header-top {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
}

/*--------------------------------------------------------------
## Navigation Menus
--------------------------------------------------------------*/
/* Navigation menu deafaults */
.main-navigation ul,
.secondary-navigation ul,
.top-navigation ul,
.footer-navigation ul {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}

.main-navigation li,
.secondary-navigation li,
.top-navigation li,
.footer-navigation li {
	position: relative;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.main-navigation .menu > li:last-child,
.secondary-navigation .menu > li:last-child,
.top-navigation .menu > li:last-child,
.footer-navigation .menu > li:last-child {
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-navigation a,
.secondary-navigation a,
.top-navigation a,
.footer-navigation a {
	display: block;
	padding: .6em;
	color: #212529;
	text-decoration: none;
	text-transform: uppercase;
}

.main-navigation ul ul,
.secondary-navigation ul ul,
.top-navigation ul ul,
.footer-navigation ul ul {
	margin-left: .5em;
	background-color: rgba(0, 0, 0, 0.03);
	border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.main-navigation .current-menu-item > a,
.secondary-navigation .current-menu-item > a,
.top-navigation .current-menu-item > a,
.footer-navigation .current-menu-item > a {
	color: #FF5800;
	background-color: white;
}

/* Menu toggles */
.menu-toggle,
.mega-toggle {
	padding: .8em;
	color: #FF5800;
	background-color: transparent;
	border: 1px solid transparent;
}

.menu-toggle:focus,
.mega-toggle:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.menu-toggle i,
.mega-toggle i {
	display: block;
	width: 1em;
}

.menu-toggle .fa-times,
.mega-toggle .fa-times {
	display: none;
}

.menu-toggle[aria-expanded="true"] .fa-times,
.mega-toggle[aria-expanded="true"] .fa-times {
	display: block;
}

.menu-toggle[aria-expanded="true"] .fa-bars,
.mega-toggle[aria-expanded="true"] .fa-bars {
	display: none;
}

/* Make sure the toggle does not overlap with menu item text */
.js .main-navigation .menu-item-has-children > a {
	margin-right: 2.8em;
}

.no-js .menu-toggle,
.no-js .mega-toggle {
	display: none;
}

.mega-toggle {
	display: none;
}

/* Main navigation */
.main-navigation .dropdown-icon {
	display: none;
}

.main-navigation .dropdown-icon::after {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 0.34em;
	vertical-align: 0.34em;
	content: "";
	border-top: 0.4em solid;
	border-right: 0.4em solid transparent;
	border-bottom: 0;
	border-left: 0.4em solid transparent;
}

.main-navigation .dropdown-icon:empty::after {
	margin-left: 0;
}

.js .main-navigation {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1020;
	overflow-y: auto;
	background-color: #fff;
	-webkit-transform: translateY(20%);
	transform: translateY(20%);
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	opacity: 0;
	visibility: hidden;
}

.js .main-navigation .sub-menu:not(.collapsing):not(.show) {
	display: none;
}

.js .main-navigation.toggled-on {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

/* Dropdown toggle */
.main-navigation .dropdown-toggle {
	position: absolute;
	top: 0;
	right: 0;
	padding: .54em 1em;
	color: #FF5800;
	background-color: #f8f9fa;
	border-color: transparent;
	border-right-color: rgba(0, 0, 0, 0.05);
	border-left-color: rgba(0, 0, 0, 0.05);
}

.main-navigation .dropdown-toggle::after {
	margin-left: 0;
}

.main-navigation .dropdown-toggle:focus {
	color: #fff;
	background-color: #003C69;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.main-navigation .dropdown-toggle.toggled-on::after {
	border-top: 0;
	border-right: 0.4em solid transparent;
	border-bottom: 0.4em solid;
	border-left: 0.4em solid transparent;
}

/* Mega menu */
.secondary-navigation {
	display: none;
}

/* Social media navigation */
.social-navigation ul {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}

.social-navigation li {
	display: inline-block;
}

.social-navigation a {
	display: block;
	padding: .4em;
	line-height: 1;
}

.social-navigation a .fab::before {
	display: block;
	width: 1em;
	text-align: center;
}

.social-navigation a:hover {
	color: #003C69;
}

/* Medium screens */
@media (max-width: 991.98px) {
	.nav-menu-active {
		overflow-y: hidden;
	}
}

@media (min-width: 768px) {
	.main-navigation .menu > .current-page-ancestor > a {
		color: #FF5800;
	}
}

/* Large screens */
@media (min-width: 992px) {
	.js .main-navigation {
		position: relative;
		display: block;
		overflow: visible;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}
	.js .main-navigation .sub-menu:not(.collapsing):not(.show) {
		display: block;
	}
	.main-navigation {
		/* On hover */
	}
	.main-navigation .menu > li {
		border-top: none;
	}
	.main-navigation .menu > li:last-child {
		border-bottom: none;
	}
	.main-navigation li {
		font-size: 15px;
		font-size: 0.9375rem;
		display: inline-block;
	}
	.main-navigation .dropdown-icon {
		display: inline-block;
	}
	.main-navigation ul ul {
		position: absolute;
		z-index: 1000;
		margin-left: 0;
		background-color: white;
		-webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
		box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
		-webkit-transform: translate(5%, 20%);
		transform: translate(5%, 20%);
		-webkit-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
		opacity: 0;
		visibility: hidden;
	}
	.main-navigation ul ul li > ul {
		top: 0;
		left: 100%;
	}
	.main-navigation ul ul .dropdown-icon {
		position: absolute;
		top: 50%;
		right: .6em;
		margin-top: -.4em;
	}
	.main-navigation ul ul .dropdown-icon::after {
		display: inline-block;
		width: 0;
		height: 0;
		margin-left: 0.34em;
		vertical-align: 0.34em;
		content: "";
		border-top: 0.4em solid transparent;
		border-right: 0;
		border-bottom: 0.4em solid transparent;
		border-left: 0.4em solid;
	}
	.main-navigation ul ul .dropdown-icon:empty::after {
		margin-left: 0;
	}
	.main-navigation ul ul a {
		width: 15em;
	}
	.main-navigation li:hover > ul {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
		opacity: 1;
		visibility: visible;
	}
	.main-navigation li:hover > a {
		color: #FF5800;
		background-color: transparent;
	}
	.secondary-navigation .menu > li,
	.footer-navigation .menu > li {
		position: relative;
		width: 100%;
		min-height: 1px;
		padding-right: 15px;
		padding-left: 15px;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.66667%;
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
		padding-right: 0;
		padding-left: 0;
	}
	.secondary-navigation .menu > li:last-child,
	.footer-navigation .menu > li:last-child {
		border-bottom: none;
	}
	.secondary-navigation .menu > li > a,
	.secondary-navigation .menu > li .lvl-1 > a,
	.footer-navigation .menu > li > a,
	.footer-navigation .menu > li .lvl-1 > a {
		font-weight: 700;
	}
	.secondary-navigation .menu > li > ul > li:first-child:not(.lvl-1) *,
	.footer-navigation .menu > li > ul > li:first-child:not(.lvl-1) * {
		margin-top: 1em;
	}
	.secondary-navigation .menu li,
	.footer-navigation .menu li {
		border-top: 0;
	}
	.secondary-navigation .menu a,
	.footer-navigation .menu a {
		padding: .2em .6em;
	}
	.secondary-navigation ul ul,
	.footer-navigation ul ul {
		margin-left: 0;
		background-color: transparent;
		border-left: 0;
	}
	.secondary-navigation ul ul ul,
	.footer-navigation ul ul ul {
		margin-left: 1em;
	}
	.secondary-navigation a:hover,
	.footer-navigation a:hover {
		color: #FF5800;
	}
	.secondary-navigation {
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
		z-index: 1030;
		display: block;
		padding: 1em 1em 1em 3em;
		background-color: #fff;
		-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
		box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
		-webkit-transform: translateY(-20%);
		transform: translateY(-20%);
		-webkit-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
		opacity: 0;
		visibility: hidden;
	}
	.secondary-navigation .mega-toggle {
		position: absolute;
		top: 1em;
		left: 1em;
		display: block;
	}
	.secondary-navigation.toggled-on {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}
	.top-navigation .menu > li {
		border-top: none;
		font-size: 15px;
		font-size: 0.9375rem;
	}
	.top-navigation .menu > li:last-child {
		border-bottom: none;
	}
	.top-navigation a {
		padding: .4em .6em;
	}
	.menu-toggle,
	.main-navigation .dropdown-toggle {
		display: none;
	}
	.js .main-navigation .menu-item-has-children > a {
		margin-right: 0;
	}
	.mega-toggle {
		display: block;
	}
	.mega-menu-active {
		overflow-y: hidden;
		/* Blur background if menu is active */
	}
	.mega-menu-active .navigation-top {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1030;
		background-color: rgba(0, 0, 0, 0.6);
	}
	.mega-menu-active .secondary-navigation {
		overflow-y: auto;
	}
	.mega-menu-active .featured-image-header,
	.mega-menu-active .site-breadcrumb,
	.mega-menu-active .site-content,
	.mega-menu-active .site-footer {
		-webkit-filter: blur(2px);
		filter: blur(2px);
	}
}

@media screen and (max-width: 782px) {
	.admin-bar .main-navigation,
	.admin-bar .secondary-navigation {
		margin-top: 46px;
	}
}

@media (max-width: 991.98px) {
	.admin-bar .main-navigation {
		margin-top: 32px;
	}
}

@media (min-width: 768px) {
	.admin-bar .secondary-navigation {
		margin-top: 32px;
	}
}

.menu-btn a {
	color: #fff;
	background-color: #FF5800;
	border: 1px solid #FF5800;
}

.menu-btn a:hover, .menu-btn a:focus {
	text-decoration: none;
}

.menu-btn a:hover {
	color: #fff;
	background-color: #d94b00;
	border: 1px solid #cc4600;
}

.menu-btn a:focus {
	-webkit-box-shadow: 0 0 0 0.2rem rgba(255, 88, 0, 0.5);
	box-shadow: 0 0 0 0.2rem rgba(255, 88, 0, 0.5);
	outline: 0;
}

.menu-btn a:disabled {
	color: #fff;
	background-color: #FF5800;
	border: 1px solid #FF5800;
	opacity: 0.65;
}

.menu-btn a:not(:disabled) {
	cursor: pointer;
}

.menu-btn a:not(:disabled):not(.disabled):active {
	color: #fff;
	background-color: #cc4600;
	border: 1px solid #bf4200;
}

/*--------------------------------------------------------------
## Archives
--------------------------------------------------------------*/
.archive-view .entry-header,
.archive-view .entry-summary,
.current-event-view .entry-header,
.current-event-view .entry-summary {
	margin-bottom: .5rem !important;
	word-wrap: break-word;
}

.archive-view .entry-header,
.archive-view .entry-summary,
.current-event-view .entry-header,
.current-event-view .entry-summary {
	margin-top: .5rem !important;
}

.archive-view .entry-footer,
.current-event-view .entry-footer {
	margin-top: auto !important;
	margin-bottom: .5rem;
}

.archive-view .entry-header,
.archive-view .entry-summary,
.archive-view .entry-footer,
.current-event-view .entry-header,
.current-event-view .entry-summary,
.current-event-view .entry-footer {
	padding-right: .5em;
	padding-left: .5em;
}

.archive-view .entry-title,
.current-event-view .entry-title {
	font-size: 1.25rem;
}

.archive-view .entry-title a,
.current-event-view .entry-title a {
	color: #212529;
	text-decoration: none;
}

.archive-view .entry-title a:hover,
.current-event-view .entry-title a:hover {
	color: #FF5800;
}

.archive-view .entry-meta,
.current-event-view .entry-meta {
	margin-top: .5rem !important;
	color: #003C69;
	font-size: .8em;
}

.archive-view .entry-meta a,
.current-event-view .entry-meta a {
	color: #003C69;
	font-weight: normal;
	text-transform: none;
}

.archive-view .entry-summary,
.current-event-view .entry-summary {
	font-size: .9em;
}

.archive-view .entry-summary p,
.current-event-view .entry-summary p {
	margin-bottom: 1em;
}

.category-current-event .entry-title,
.tag .entry-title {
	font-size: 2.5rem;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.site-breadcrumb {
	color: #003C69;
	font-size: .95rem;
}

.site-breadcrumb a {
	color: #212529;
}

.cat-links a {
	color: #FF5800;
	text-transform: uppercase;
}

.entry-title,
.page-title {
	margin: 0;
	word-wrap: break-word;
}

.entry-title a,
.page-title a {
	font-weight: 400;
}

.entry-meta {
	color: #495057;
}

.entry-meta span + span::before {
	margin: 0 .5em;
	content: "|";
}

.entry-meta a {
	color: #212529;
	font-weight: 700;
	text-decoration: none;
}

.entry-meta a:hover {
	color: #FF5800;
}

.updated:not(.published) {
	display: none;
}

.contributor-posts .cat-links a {
	color: #fff;
}

.single-job .entry-meta {
	color: #495057;
}

.single-job .entry-meta span + span::before {
	margin: 0;
	content: "";
}

.single-job .entry-meta a {
	color: #212529;
	font-weight: 700;
	text-decoration: none;
}

.single-job .entry-meta a:hover {
	color: #FF5800;
}

/*--------------------------------------------------------------
## Page templates
--------------------------------------------------------------*/
.slide-content .container {
	height: 100%;
}

.cne-slider a {
	text-decoration: none;
	color: #fff;
}

.ytplayer {
	background-color: #000;
}

.ytplayer::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	content: "";
}

#home-section-1 {
	min-height: 400px;
	height: 65vh;
}

#home-section-1 .video {
	top: 50%;
	text-align: center;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

#home-section-1 .excerpt {
	border-bottom-width: .3em !important;
}

#home-section-1 .text-overlay {
	z-index: 1;
	background-color: rgba(0, 60, 105, 0.8);
}

#home-section-3 ol,
#home-section-3 ul {
	overflow: hidden;
}

#home-section-5 .excerpt {
	min-height: 200px;
	border-bottom-width: .3em !important;
}

#home-section-5 a {
	text-decoration: none;
}

#home-section-1 .excerpt,
#home-section-5 .excerpt,
#home-section-5 .blurb,
#home-section-6 .excerpt {
	background-position: center;
	background-size: cover;
}

@media (min-width: 768px) {
	.slide-wrap {
		max-height: 60vh;
		overflow: hidden;
	}
	.slide-image {
		top: 30vh;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}

@media (min-width: 992px) {
	#home-section-1 .excerpt {
		min-height: 20vh;
	}
	#home-section-6 .excerpt:nth-of-type(2n+2) {
		border-right: 5px solid;
		border-left: 5px solid;
	}
}

#publications-section-1 .excerpt a {
	text-decoration: none;
	border: 1px solid transparent;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

#publications-section-1 .excerpt a:hover {
	background-color: #f8f9fa;
	-webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
	border-color: #fff;
}

#media-section-1 .excerpt a {
	text-decoration: none;
	border: 1px solid transparent;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

#media-section-1 .excerpt a:hover {
	background-color: #f8f9fa;
	-webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
	border-color: #fff;
}

.ajax-load-more-wrap .excerpt .entry-meta {
	font-size: 1rem;
	margin-top: 1rem !important;
}

.ajax-load-more-wrap .excerpt .entry-meta a {
	color: #fff;
	text-transform: uppercase;
}

.ajax-load-more-wrap .excerpt .entry-meta a:hover {
	color: #FF5800;
}

.ajax-load-more-wrap .excerpt .entry-title a {
	color: #fff;
	text-decoration: none;
}

.ajax-load-more-wrap .excerpt .entry-title a:hover {
	color: #FF5800;
}

.page-template-jobs .site-breadcrumb,
.page-template-jobs .site-breadcrumb a {
	color: #fff;
}

.dataTables_length,
.dataTables_filter,
.dataTables_paginate {
	padding-top: .25em;
	padding-right: .25em;
}

.data-table tbody tr:hover {
	cursor: pointer;
}

.data-table a {
	color: #212529;
	text-decoration: none;
}

.single-staff .entry-header .featured-image img {
	-webkit-box-shadow: -0.8em 0.8em #FF5800;
	box-shadow: -0.8em 0.8em #FF5800;
}

.single-board .entry-header .featured-image img {
	-webkit-box-shadow: -0.8em 0.8em #FF5800;
	box-shadow: -0.8em 0.8em #FF5800;
}

.event-date time + time::before {
	content: " - ";
}

.page-template-events .event .entry-title {
	font-size: 1.25rem;
}

.page-template-events .event .entry-title a {
	color: #003C69;
	text-decoration: none;
}

.page-template-events .event .entry-title a:hover {
	color: #FF5800;
}

.page-template-events .event .event-date {
	font-size: .8em;
}

.location-toggle.active .map-toggle {
	margin-left: 1em;
}

.location-toggle.active .title {
	font-size: 2em;
}

.cne-locations .loc-nav li.active {
	display: none;
}

.cne-locations .loc-content .loc-toggle {
	cursor: pointer;
}

.cne-locations .loc-content.active .thumbnail {
	margin-bottom: 1em;
}

.cne-locations .loc-content.active .caption {
	display: none;
}

.cne-locations .loc-content.active .loc-address,
.cne-locations .loc-content.active .loc-map {
	display: block;
}

.cne-locations .loc-content .loc-address,
.cne-locations .loc-content .loc-map {
	display: none;
}

@media (min-width: 992px) {
	.cne-locations {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-right: -15px;
		margin-left: -15px;
	}
	.cne-locations .loc-nav {
		position: relative;
		width: 100%;
		min-height: 1px;
		padding-right: 15px;
		padding-left: 15px;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		text-align: right;
	}
	.cne-locations .loc-content {
		position: relative;
		width: 100%;
		min-height: 1px;
		padding-right: 15px;
		padding-left: 15px;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.cne-locations .loc-content.active {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.cne-locations .loc-content.active .content-wrap {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-right: -15px;
		margin-left: -15px;
	}
	.cne-locations .loc-content.active .loc-toggle,
	.cne-locations .loc-content.active .loc-address {
		position: relative;
		width: 100%;
		min-height: 1px;
		padding-right: 15px;
		padding-left: 15px;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.cne-locations .loc-content.active .loc-map {
		position: relative;
		width: 100%;
		min-height: 1px;
		padding-right: 15px;
		padding-left: 15px;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.cne-locations .loc-content.active .loc-address {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}
}

[class*="ratio-"] {
	position: relative;
	overflow: hidden;
}

[class*="ratio-"]:after {
	display: block;
	content: "";
}

.ratio-4-3:after {
	padding-top: 75%;
}

.ratio-16-9:after {
	padding-top: 56.25%;
}

.ratio-21-9:after {
	padding-top: 42.857142857142854%;
}

[class*="ratio-"] .wrap {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

[class*="ratio-"] img {
	width: 100%;
}

.excerpt a {
	text-decoration: none;
}

.excerpt .entry-title {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comments-area {
	width: 100%;
	padding: 1.5em 0;
	margin: 3em 0;
	border-top: 1px solid #cccccc;
}

.comments-title {
	margin-bottom: 2em;
	font-size: 2.5em;
}

.comment-list {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.comment-list ol {
	list-style-type: none;
}

.comment-body {
	margin-bottom: 3em;
	border-bottom: 1px solid #c3c3c3;
}

.comment-meta {
	position: relative;
	margin-left: 70px;
	font-size: 80%;
}

.comment-meta a,
.comment-form a {
	text-decoration: none;
	border: none;
}

.comment-meta a:hover, .comment-meta a:focus,
.comment-form a:hover,
.comment-form a:focus {
	text-decoration: underline;
}

.comment .avatar {
	position: absolute;
	top: -5px;
	left: -70px;
	width: 50px;
	height: 50px;
	border-radius: 50px;
}

.children {
	padding-left: 0;
	margin-left: 1em;
}

@media (min-width: 768px) {
	.children {
		margin-left: 2em;
	}
}

@media (min-width: 992px) {
	.no-sidebar .children {
		margin-left: 3em;
	}
	.no-sidebar .comment-meta {
		margin-left: 90px;
	}
	.no-sidebar .comment .avatar {
		top: -8px;
		left: -90px;
		width: 70px;
		height: 70px;
	}
	.no-sidebar .comment-content {
		margin-left: 90px;
	}
}

@media (min-width: 768px) {
	.no-sidebar .children {
		margin-left: 2em;
	}
	.no-sidebar .children .comment-meta {
		margin-left: 80px;
		font-size: 90%;
	}
	.no-sidebar .children .comment .avatar {
		top: -7px;
		left: -80px;
		width: 60px;
		height: 60px;
	}
	.no-sidebar .children .comment-content {
		margin-left: 80px;
	}
}

.comment-metadata {
	padding-bottom: .5em;
	margin-top: .2em;
	font-size: .8em;
	line-height: 1em;
}

.comment-metadata a {
	color: #7d7d7d;
}

.comment-metadata a:hover, .comment-metadata a:focus {
	border-color: #c3c3c3;
}

.comment-author {
	font-size: 1.4em;
	line-height: 1.3em;
}

.says {
	font-size: 80%;
}

.reply {
	margin-bottom: 1.5em;
	text-align: right;
}

.comment-content ol {
	list-style-type: decimal;
}

.comment-content a {
	word-wrap: break-word;
}

.bypostauthor .comment-body,
.bypostauthor .avatar {
	border-bottom: 3px solid #FF5800;
}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
.footer-section-1 {
	background-position: center;
	background-size: cover;
}

.site-footer .social-navigation a {
	font-size: 1.6rem;
}

/*--------------------------------------------------------------
## Admin bar fix
--------------------------------------------------------------*/
@media (max-width: 600px) {
	.admin-bar.menu-active .site-header:not(.fixed-top) {
		top: 46px;
	}
}

@media (min-width: 601px) and (max-width: 782px) {
	.admin-bar.menu-active .site-header,
	.admin-bar .site-header.fixed-top {
		top: 46px;
	}
}

@media (min-width: 783px) {
	.admin-bar.menu-active .site-header,
	.admin-bar .site-header.fixed-top {
		top: 32px;
	}
}

.admin-bar .navigation-top {
	top: 32px;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

.featuredimage {
	margin-bottom: 0;
}

.featuredimage img {
	width: 100%;
}

@media (min-width: 768px) {
	.featuredimage {
		height: 100%;
		max-height: 150px;
		overflow: hidden;
		background-color: #343a40;
	}
	.featuredimage a {
		display: block;
		height: 100%;
	}
	.featuredimage img {
		position: relative;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}

@media (min-width: 992px) {
	.featuredimage {
		max-height: 250px;
	}
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugin Overide
--------------------------------------------------------------*/
.nf-form-hp {
	bottom: 0;
}

.nf-field .nf-field-label label {
	font-weight: 400;
}

.alm-btn-wrap {
	text-align: center;
	margin: 3rem 0 2em;
}

.alm-load-more-btn {
	padding: .5rem 3rem;
	font-size: 1.25rem;
	line-height: 1.5;
}

.alm-load-more-btn.done {
	display: none;
}

.slick-arrow {
	z-index: 100;
}

.slick-arrow:hover {
	border: none;
}

.slick-arrow:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.slick-arrow:active {
	background-color: transparent !important;
	border: none !important;
}

.slick-prev {
	width: 40px;
	height: 67px;
	left: 25px;
}

.slick-prev:before {
	content: '\f053';
}

.slick-next {
	width: 40px;
	height: 67px;
	right: 25px;
}

.slick-next:before {
	content: '\f054';
}

.slick-prev::before,
.slick-next::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #FF5800;
}

#home-section-4 .slick-prev::before,
#home-section-4 .slick-next::before {
	font-size: 4rem;
}

#home-section-1 .slick-prev::before,
#home-section-1 .slick-next::before {
	font-size: 2rem;
}

.searchandfilter ul {
	padding-left: 0;
}

/*# sourceMappingURL=style.css.map */


