/* Table of Contents
- HTML5 Reset
	- Baseline Normalize
	- Box Sizing
- Defaults
	- Typographical Elements
	- Headings
	- Objects
	- Gallery
	- Forms
	- Tables
	- Screen Reader Text
- Common Classes
	- Avatar
	- Genesis
	- Search Form
	- Titles
	- WordPress
- Widgets
	- Featured Content
- Plugins
	- Genesis eNews Extended
	- Genesis Simple FAQ
- Skip Links
- Structure and Layout
	- Site Inner
- Site Header
	- Title Area
- Site Navigation
	- Responsive Menu
	- Header Menu
	- Footer Menu
- Hero Section
- Content Area
    - Front Page
	- Entry Content
	- Entry Meta
	- Pagination
	- Entry Comments
- Sidebar
- Footer Widgets
- Site Footer
- Media Queries
	- Min-width: 1080px
		- Site Header
		- Genesis Menu
		- Responsive Menu
		- Header Menu
		- Site Inner
		- Content
		- Sidebar
		- Front Page
		- Author Box
		- After Entry
		- Column Classes
		- Entry Misc.
		- Footer Widgets
- Print Styles
*/


/* HTML5 Reset
---------------------------------------------------------------------------------------------------- */

/* Baseline Normalize
--------------------------------------------- */
/* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
button,hr,input{overflow:visible}progress,sub,sup{vertical-align:baseline}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{padding:.35em .75em .625em}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[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-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}


/* Box Sizing
--------------------------------------------- */

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit; 
}


/* Defaults
---------------------------------------------------------------------------- */

/* Typographical Elements
--------------------------------------------- */

html {
    font-size: 62.5%; /* 1rem = 10px for theme sizing consistency */
    overflow-y: scroll; /* Prevent sideways jump when no content on page.*/
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: #fff;
    color: #333;
    font-family: "Mulish", sans-serif;
    font-size: 1.7rem;    
    font-weight: 400;
    line-height: 1.625;
    margin: 0;
}

a,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea,
.button {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

a {
    color: #5057e6;
    text-decoration: underline;
}

a:hover,
a:focus {
    color: #333;
}

p {
    margin: 0 0 3rem;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

hr {
    border: 0;
    border-bottom: 1px solid currentColor;
    clear: both;
    color: #eee;
    margin: 1.65em auto;
}

b,
strong {
    font-weight: 600;
}

blockquote,
cite,
em,
i {
    font-style: italic;
}

mark {
    background: #eee;
    color: #333;
}

blockquote {
    margin: 3rem;
}

/* Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Mulish", sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 2rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.7rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.8rem;
}

h6 {
    font-size: 1.6rem;
}

/* Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video {
    max-width: 100%;
}

img {
    height: auto;
    vertical-align: top;
}

figure {
    margin: 0;
}

/* Gallery
--------------------------------------------- */


/* Forms
--------------------------------------------- */

input,
select,
textarea {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: .3rem;
	color: #333;
	font-size: 1.6rem;
	font-weight: 400;
	padding: 1.5rem;
	width: 100%;
}

input:focus,
textarea:focus {
	border: 1px solid #999;
	outline: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

:-ms-input-placeholder {
	color: #333;
	opacity: 1;
}

::placeholder {
	color: #333;
	opacity: 1;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button {
	background-color: #333;
	border: 0;
	color: #fff;
	border-radius: .3rem;
	cursor: pointer;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1;
	padding: 1.5rem 3rem;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	width: auto;
}

button:focus,
button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
.button:focus,
.button:hover {
	background-color: #5057e6;
	border-width: 0;
	color: #fff;
}

.entry-content .button:focus,
.entry-content .button:hover {
	color: #fff;
}

.button {
	display: inline-block;
}

.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 {
	background-color: #eee;
	border-width: 0;
	color: #777;
	cursor: not-allowed;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}


/* Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 4rem;
	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;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus,
.widget_search input[type="submit"]:focus {
	background: #fff;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #333;
	display: block;
	font-size: 1em;
	font-weight: 700;
	height: auto;
	padding: 15px 23px 14px;
	text-decoration: none;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

.more-link {
	display: inline-block;
	position: relative;
	margin-bottom: 3rem;
}


/* Common Classes
---------------------------------------------------------------------------- */

/* Avatar
--------------------------------------------- */

.avatar {
	border-radius: 50%;
}

.author-box .avatar,
.alignleft .avatar {
	margin-right: 2rem;
}

.alignright .avatar {
	margin-left: 2rem;
}

.comment .avatar {
	margin: 0 1.5rem 2rem 0;
	float: left;
}

/* Genesis
--------------------------------------------- */

.after-entry,
.archive-description,
.author-box {
	margin-bottom: 4rem;
}

.author-box {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
}

.author-box .avatar {
	grid-row: span 2;
}

.after-entry {
	border-bottom: 1px solid #eee;
	padding: 2rem 0;
}

.after-entry .widget:last-of-type {
	margin-bottom: 0;
}

.breadcrumb {
	border-bottom: 1px solid #eee;
	font-size: 1.6rem;
	margin-bottom: 4rem;
	padding-bottom: 1rem;
}

.genesis-title-hidden .breadcrumb {
	margin-top: 4rem;
}

.archive-description p:last-child,
.author-box p:last-child {
	margin-bottom: 0;
}

/* Search Form
--------------------------------------------- */

.search-form {
	overflow: hidden;
}

.entry-content .search-form {
	margin-bottom: 4rem;
	width: 50%;
}

.post-password-form input[type="submit"],
.search-form input[type="submit"] {
	margin-top: 1rem;
}

.widget_search input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* Titles
--------------------------------------------- */

.archive-description .entry-title,
.archive-title,
.author-box-title {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.entry-title {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.entry-title a,
.sidebar .widget-title a {
	color: #333;
	text-decoration: none;
}

.entry-title a:focus,
.entry-title a:hover {
	color: #5057e6;
}

.widget-title {
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 2rem;
}


/* 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;
}

.clear {
	clear: both;
}

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

img.centered,
.aligncenter,
.singular-image {
	display: block;
	margin: 0 auto 3rem;
}

img.alignnone,
.alignnone {
	margin-bottom: 1.5rem;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 2rem 2rem 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 2rem 2rem;
}

p > img:last-child {
	margin-bottom: 0;
}

figcaption,
.gallery-caption,
.wp-caption-text {
	font-size: 1.4rem;
	font-weight: 600;
	margin-top: 0.5em;
	margin-bottom: 1em;
	padding-left: 1rem;
	padding-right: 1rem;
	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 3rem;
}


/* Widgets
---------------------------------------------------------------------------- */

.widget {
	display: flow-root;
	margin-bottom: 4rem;
}

.widget p:last-child,
.widget ul > li:last-of-type {
	margin-bottom: 0;
}

.widget ul > li {
	margin-bottom: 1rem;
}

.widget ul > li:last-of-type {
	padding-bottom: 0;
}

.widget ol > li {
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 2rem;
	text-indent: -2rem;
}

.widget li li {
	border: 0;
	margin: 0 0 0 3rem;
	padding: 0;
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}

/* Featured Content
--------------------------------------------- */

.featured-content .entry {
	border-bottom: 1px solid #eee;
	margin-bottom: 2rem;
}

.featured-content .entry:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
}

.featured-content .entry-title {
	font-size: 1.6rem;
	margin-bottom: .5rem;
	margin-top: 1rem;
}


/* Plugins
---------------------------------------------------------------------------- */

/* Genesis eNews Extended
--------------------------------------------- */

.after-entry .enews {
	text-align: center;
	padding: 1rem;
}

.sidebar .enews {
	background-color: #f5f5f5;
	padding: 3rem;
}

.enews-widget input {
	font-size: 1.6rem;
	margin-bottom: 1rem;
}

.after-entry .enews-widget input {
	text-align: center;
}

.enews-widget input[type="submit"] {
	margin: 0;
	width: 100%;
}

.enews form + p {
	margin-top: 2rem;
}

/* Genesis Simple FAQ
--------------------------------------------- */


/* Skip Links
---------------------------------------------------------------------------- */

.genesis-skip-link {
	margin: 0;
}

.genesis-skip-link .skip-link-hidden {
	display: none;
	visibility: hidden;
}

.genesis-skip-link li {
	height: 0;
	list-style: none;
	width: 0;
}

/* Display outline on focus */
:focus {
	color: #333;
	outline: #ccc solid 1px;
}


/* Structure and Layout
---------------------------------------------------------------------------- */

.wrap,
.content-sidebar-wrap {
	width: calc(100% - 6rem);
	margin: 0 auto;
	max-width: 65rem;
}

/* Site Inner
--------------------------------------------- */

.site-inner:not(.full) {
	padding: 6rem 0 0;
}


/* Site Header
---------------------------------------------------------------------------- */

.site-header {
	background-color: #fff;
	box-shadow: 0 0 2rem rgba(0, 0, 0, 0.05);
}

.site-header .wrap {
	max-width: 100%;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
}

/* Title Area
--------------------------------------------- */

.title-area {
	padding-bottom: 2.5rem;
	padding-top: 2.5rem;
}

.wp-custom-logo .title-area {
	max-width: 35rem;
	padding-bottom: .5rem;
	padding-top: .5rem;
	width: 100%;
}

.wp-custom-logo .custom-logo-link {
	display: block;
}

.wp-custom-logo .title-area img {
	width: auto;
}

.site-title {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 0;
}

.site-title a,
.site-title a:focus,
.site-title a:hover {
	color: #333;
	text-decoration: none;
}

.site-description,
.wp-custom-logo .site-title {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}


/* Site Navigation
---------------------------------------------------------------------------- */

.genesis-nav-menu {
	line-height: 1;
	width: 100%;
}

.genesis-nav-menu .menu-item {
	display: block;
	position: relative;
}

.genesis-nav-menu a {
	color: #333;
	display: block;
	font-size: 1.6rem;
	font-weight: 400;
	outline-offset: -1px;
	padding-bottom: 1.2rem;
	padding-top: 1.2rem;
	text-decoration: none;
}

.genesis-nav-menu a:focus,
.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item > a,
.genesis-nav-menu .sub-menu .current-menu-item > a:focus,
.genesis-nav-menu .sub-menu .current-menu-item > a:hover {
	color: #5057e6;
	text-decoration: none;
}

.genesis-nav-menu .sub-menu,
.genesis-nav-menu .sub-menu a {
	width: 100%;
}

.genesis-nav-menu .sub-menu {
	clear: both;
	display: none;
	left: -9999px;
	margin: 0;
	opacity: 1;
	padding-left: 1.5rem;
	position: static;
	z-index: 99;
}

.genesis-nav-menu .sub-menu a {
	background-color: #fff;
	font-size: 1.4rem;
	position: relative;
	word-wrap: break-word;
}

.genesis-nav-menu .menu-item:focus,
.genesis-nav-menu .menu-item:hover {
	position: relative;
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
	display: block;
	left: auto;
	opacity: 1;
}

/* Responsive Menu
--------------------------------------------- */

.menu .menu-item:focus {
	position: static;
}

.menu .menu-item > a:focus + ul.sub-menu,
.menu .menu-item.sfHover > ul.sub-menu {
	left: auto;
	opacity: 1;
}

.js .nav-primary {
	display: none;
	position: relative;
}

.js .genesis-nav-menu .menu-item:hover > .sub-menu {
	display: none;
}

.menu-toggle,
.sub-menu-toggle {
	background-color: transparent;
	border: 0 none;
	border-radius: 0;
	color: #333;
	display: block;
	padding: 0;
	margin: 0;
	overflow: hidden;
	text-align: center;
	visibility: visible;
}

.menu-toggle:focus,
.menu-toggle:hover,
.sub-menu-toggle:focus,
.sub-menu-toggle:hover {
	background-color: transparent;
	border-width: 0;
	color: #5057e6;
}

.menu-toggle {
	display: block;
	cursor: pointer;
	position: relative;
	width: 2.4rem;
	height: 2.4rem;
	z-index: 1000;
	grid-column: 3;
	outline: none;
}

.menu-toggle .burger {
	position: relative;
	display: block;
	transition: background 0s 0.2s;
}

.menu-toggle .burger,
.menu-toggle .burger::before,
.menu-toggle .burger::after {
	width: 2.4rem;
	height: .2rem;
	background: #333;
	border-radius: 0.4rem;
	will-change: transform
}

.menu-toggle .burger::before,
.menu-toggle .burger::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	transition: top 0.2s 0.2s, bottom 0.2s 0.2s, transform 0.2s 0s;
}

.menu-toggle .burger::before { 
	top: -0.7rem; 
}

.menu-toggle .burger::after { 
	bottom: -0.7rem; 
}

.menu-toggle.activated .burger {
	background: transparent;
}

.menu-toggle.activated .burger::before,
.menu-toggle.activated .burger::after {
	transition: top 0.2s 0s, bottom 0.2s 0s, transform 0.2s 0.2s;
}

.menu-toggle.activated .burger::before {
	top: 0;
	transform: rotate(45deg);
}

.menu-toggle.activated .burger::after {
	bottom: 0;
	transform: rotate(-45deg);
}

.sub-menu-toggle {
	position: absolute;
	right: 0;
	top: 1rem;
	z-index: 100;
	width: 2.4rem;
	height: 2.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.sub-menu-toggle::before {
	content: "";
	width: .8rem;
	height: .75rem;
	border-right: 1px solid #333;
	border-bottom: 1px solid #333;
	display: block;
	transform: translateY(-25%) rotate(45deg);
}

.sub-menu-toggle.activated::before {
	transform: translateY(25%) rotate(-135deg);
}

.sub-menu .sub-menu-toggle {
	padding: 1.2rem 1rem;
}

/* Header Menu
--------------------------------------------- */

.nav-primary {
	padding-bottom: 1.6rem;
	padding-top: 1.6rem;
	grid-column: 1 / -1;
}

/* Footer Menu
--------------------------------------------- */

.nav-secondary {
	margin-top: 1rem;
}

.nav-secondary .genesis-nav-menu {
	line-height: 1.5;
}

.nav-secondary .menu-item {
	display: inline-block;
}

.nav-secondary a {
	margin-left: 1rem;
	margin-right: 1rem;
	padding: 0;
}


/* Hero Section
---------------------------------------------------------------------------- */

.hero-section {
	position: relative;	
	width: 100%;	
	background-color: #f5f5f5;
	background-position: 50%;
	background-size: cover;	
	border-bottom: 1px solid #eee;	
	padding: 6rem 0;
}

.hero-section h1 {
	font-size: 4rem;
	margin-bottom: 0;
}

.hero-section p {
	margin: 2rem 0 0;
}


/* Content Area
---------------------------------------------------------------------------- */

/* Front Page
--------------------------------------------- */

.front-page-1,
.front-page-2,
.front-page-3,
.front-page-4,
.front-page-5,
.front-page-6 {
	padding: 6rem 0 2rem;
}

/* Entry Content
--------------------------------------------- */

.entry {
	margin-bottom: 4rem;
}

.entry-content {
	display: flow-root;
}

.entry-content h4 {
	margin-top: 4rem;
}

.entry-content p:last-child {
	margin-bottom: 0;
}

.entry-content ol,
.entry-content ul {
	margin-bottom: 3rem;
	padding-left: 4rem;
}

.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: #f5f5f5;
}

.content .sticky {
	background-color: #f5f5f5;
	padding: 3rem;
}

/* Entry Meta
--------------------------------------------- */

p.entry-meta {
	font-size: 1.6rem;
	margin-bottom: 0;
}

.entry-header .entry-meta {
	margin-bottom: 2rem;
}

.entry-footer {
	margin-top: 3rem;
}

.entry-footer .entry-meta {
	border-top: 1px solid #eee;
	padding-top: 2rem;
}

.entry-categories,
.entry-tags {
	display: block;
}

.entry-comments-link::before {
	content: "\2014";
	margin: 0 .6rem 0 .2rem;
}

/* Pagination
--------------------------------------------- */

.pagination {
	margin: 6rem 0;
}

.adjacent-entry-pagination {
	margin-bottom: 0;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	background-color: #f5f5f5;
	color: #333;
	cursor: pointer;
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 400;
	margin-bottom: .4rem;
	padding: .8rem 1.2rem;
	text-decoration: none;
}

.archive-pagination li a:focus,
.archive-pagination li a:hover,
.archive-pagination li.active a {
	background-color: #333;
	color: #fff;
}

/* Entry Comments
--------------------------------------------- */

.comment-respond,
.entry-comments,
.entry-pings {
	margin-bottom: 4rem;
}

.comment-list li {
	padding: 4rem 0 0 3rem;
}

.comment-list .depth-1 {
	padding-left: 0;
}

.comment-header {
	margin-bottom: 3rem;
}

.comment-content {
	clear: both;
}

.comment-content ul > li {
	list-style-type: disc;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 50%;
}

.comment-respond label {
	display: block;
	margin-right: 1.2rem;
}

.comment-header p {
	margin-bottom: 0;
}

.entry-pings .reply {
	display: none;
}

.comment-form-cookies-consent label {
	display: inline;
	padding-left: 1rem;
}


/* Sidebar
---------------------------------------------------------------------------- */

.sidebar {
	font-size: 1.6rem;
	line-height: 1.5;
}

.sidebar .widget {
	margin-bottom: 4rem;
}

.sidebar p {
	margin-bottom: 2rem;
}


/* Footer Widgets
---------------------------------------------------------------------------- */

.footer-widgets {
	border-top: 1px solid #eee;
	background-color: #fff;
	padding: 6rem 0;
}

.footer-widget-area {
	margin-bottom: 4rem;
}

.footer-widget-area:last-child,
.footer-widgets .widget:last-child {
	margin-bottom: 0;
}


/* Site Footer
---------------------------------------------------------------------------- */

.site-footer {
	background-color: #fff;
	border-top: 1px solid #eee;
	font-size: 1.6rem;
	line-height: 1.5;
	padding: 3rem 0;
	text-align: center;
}

.site-footer p {
	margin-bottom: 0;
}


/* Media Queries
---------------------------------------------------------------------------- */

@media only screen and (min-width: 480px) {

	table {
		table-layout: auto;
		word-break: normal;
	}

}


@media only screen and (min-width: 1080px) {


	/* Structure
	--------------------------------------------- */

	.wrap,
	.content-sidebar-wrap {
		max-width: 108rem;
	}

	/* Site Header
	--------------------------------------------- */

	.site-header {
		position: sticky;
		top: 0;
		z-index: 9999;
	}

	.admin-bar .site-header {
		top: 32px;
	}

	/* Genesis Menu
	--------------------------------------------- */

	.genesis-nav-menu .menu-item {
		display: inline-block;
	}

	.genesis-nav-menu .menu-item:focus,
	.genesis-nav-menu .menu-item:hover {
		position: relative;
	}

	.genesis-nav-menu a {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.genesis-nav-menu > .menu-bold > a {
		font-weight: 600;
	}

	.genesis-nav-menu > .menu-highlight > a {
		background-color: #333;
		color: #fff;
		border-radius: .3rem;
		margin-left: 1.5rem;
		padding-left: 2rem;
		padding-right: 2rem;
	}

	.genesis-nav-menu > .menu-highlight > a:focus,
	.genesis-nav-menu > .menu-highlight > a:hover {
		background-color: #5057e6;
	}

	.genesis-nav-menu .sub-menu,
	.genesis-nav-menu .sub-menu a {
		width: 18rem;
	}

	.genesis-nav-menu .sub-menu {
		border-top: 1px solid #eee;
		opacity: 0;
		padding-left: 0;
		position: absolute;
		transition: opacity 0.4s ease-in-out;
	}

	.genesis-nav-menu .sub-menu a {
		border: 1px solid #eee;
		border-top: 0;
		padding-bottom: 1.5rem;
		padding-top: 1.5rem;
	}

	.genesis-nav-menu .sub-menu .sub-menu {
		margin: -4.6rem 0 0 17.9rem;
	}

	/* Responsive Menu
	--------------------------------------------- */

	.js .nav-primary {
		display: block;
	}

	.js .genesis-nav-menu .menu-item:hover > .sub-menu {
		display: block;
	}

	.menu-toggle,
	.sub-menu-toggle {
		display: none;
		visibility: hidden;
	}

	/* Header Menu
	--------------------------------------------- */

	.nav-primary {
		grid-column: 2 / 4;
		justify-self: end;
	}

	/* Site-Inner
	--------------------------------------------- */

	.content-sidebar-wrap {
		display: grid;
		grid-template-columns: 65%;
		gap: 5%;
		justify-content: center;
	}

	.content-sidebar .content-sidebar-wrap {
		grid-template-columns: 65% 1fr;
	}

	.sidebar-content .content-sidebar-wrap {
		grid-template-columns: 1fr 65%;
	}	

	.full-width-content .content-sidebar-wrap {
		grid-template-columns: 100%;
	}

	/* Content
	--------------------------------------------- */

	.sidebar-content .content {
		order: 2;
	}

	/* Sidebar
	--------------------------------------------- */

	.sidebar-content .sidebar {
		order: 1;
	}	

	/* Front Page
	--------------------------------------------- */

	.flexible-widgets {
		display: grid;
  		column-gap: 4rem;
	}

	.flexible-widgets.widget-full {
		grid-template-columns: 1fr;
	}

	.flexible-widgets.widget-halves {
		grid-template-columns: repeat(2, 1fr);
	}

	.flexible-widgets.widget-thirds {
		grid-template-columns: repeat(3, 1fr);
	}

	.flexible-widgets.widget-fourths {
		grid-template-columns: repeat(4, 1fr);
	}

	/* Author Box
	--------------------------------------------- */

	.author-box {
		background-color: #f5f5f5;
		padding: 3rem;
	}

	/* After Entry
	--------------------------------------------- */

	.after-entry {
		padding: 4rem 6rem;
	}

	.after-entry .enews {
		padding-left: 3rem;
		padding-right: 3rem;
	}

	/* After Entry
	--------------------------------------------- */

	.after-entry {
		padding: 4rem 6rem;
	}

	.after-entry .enews {
		padding-left: 3rem;
		padding-right: 3rem;
	}

	/* Column Classes
	--------------------------------------------- */

	.columns-wrap {
		display: grid;
		grid-template-columns: repeat(12, 1fr);
		column-gap: 4rem;
		row-gap: 4rem;
	}

	.one-sixth { 
		grid-column: span 2; 
	}

	.one-fourth { 
		grid-column: span 3; 
	}

	.one-third, 
	.two-sixths { 
		grid-column: span 4; 
	}

	.one-half, 
	.three-sixths, 
	.two-fourths { 
		grid-column: span 6; 
	}

	.four-sixths,
	.two-thirds { 
		grid-column: span 8; 
	}

	.three-fourths { 
		grid-column: span 9; 
	}

	.five-sixths { 
		grid-column: span 10; 
	}

	.full-width {
		grid-column: span 12;
	}

	.first {
		grid-column-start: 1;
	}

	/* Entry Misc.
	--------------------------------------------- */

	.after-entry,
	.archive-description,
	.author-box,
	.comment-respond,
	.entry,
	.entry-comments,
	.entry-pings {
		margin-bottom: 6rem;
	}

	/* Footer Widgets
	--------------------------------------------- */

	.footer-widgets > .wrap {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 4rem;
	}

	.footer-widget-area {
		margin-bottom: 0;
	}

}


/* Print Styles
---------------------------------------------------------------------------- */

@media print {

	*,
	*::before,
	*::after {
		background: transparent !important;
		box-shadow: none !important;
		color: #333 !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]::after {
		content: " (" attr(href) ")";
	}

	abbr[title]::after {
		content: " (" attr(title) ")";
	}

	a[href^="javascript:"]::after,
	a[href^="#"]::after,
	.site-title > a::after {
		content: "";
	}

	thead {
		display: table-header-group;
	}

	img,
	tr {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	@page {
		margin: 2cm 0.5cm;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	blockquote,
	pre {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	.content,
	.content-sidebar {
		width: 100%;
	}

	button,
	input,
	select,
	textarea,
	.breadcrumb,
	.comment-edit-link,
	.comment-form,
	.comment-list .reply a,
	.comment-reply-title,
	.edit-link,
	.entry-comments-link,
	.entry-footer,
	.genesis-box,
	.header-widget-area,
	.hidden-print,
	.home-top,
	.nav-primary,
	.nav-secondary,
	.post-edit-link,
	.sidebar {
		display: none !important;
	}

	.title-area {
		text-align: center;
		width: 100%;
	}

	.site-title > a {
		margin: 0;
		text-decoration: none;
		text-indent: 0;
	}

	.site-inner {
		padding-top: 0;
		position: relative;
	}

	.author-box {
		margin-bottom: 0;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		orphans: 3;
		page-break-after: avoid;
		page-break-inside: avoid;
		widows: 3;
	}


	img {
		page-break-after: avoid;
		page-break-inside: avoid;
	}

	blockquote,
	pre,
	table {
		page-break-inside: avoid;
	}

	dl,
	ol,
	ul {
		page-break-before: avoid;
	}

}