/*
Theme Name: Webforce Connect Genesis
Theme URI: https://alphasys.com.au/
Description: This theme is a child theme created for the Genesis Framework.
Author: AlphaSys Pty. Ltd.
Author URI: https://alphasys.com.au/

Version: 1.0.0.0

Tags: accessibility-ready, custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, left-sidebar, one-column, right-sidebar, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, two-columns

Template: genesis

License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Text Domain: genesis-sample
*/


/* Table of Contents
- HTML5 Reset
	- Baseline Normalize
	- Box Sizing
	- Float Clearing
- Defaults
	- Typographical Elements
	- Headings
	- Objects
	- Gallery
	- Forms
	- Tables
	- Screen Reader Text
- Structure and Layout
	- Site Container
	- Site Inner
- Common Classes
	- Avatar
	- Genesis
	- Search Form
	- Titles
	- WordPress
- Widgets
	- Featured Content
- Plugins
	- Genesis eNews Extended
	- Genesis Simple FAQ
- Skip Links
- Site Header
	- Title Area
- Site Navigation
	- Responsive Menu
	- Header Menu
	- Footer Menu
- Content Area
	- Entry Content
	- Entry Meta
	- Pagination
	- Entry Comments
- Sidebar
- Footer Widgets
- Site Footer
- Media Queries
	- Min-width: 1200px
		- Site Header
		- Genesis Menu
		- Responsive Menu
		- Header Menu
		- Site Inner
		- Content
		- Sidebar
		- Author Box
		- After Entry
		- Column Classes
		- Entry Misc.
		- Footer Widgets
- Print Styles
*/


/* HTML5 Reset
---------------------------------------------------------------------------- */

/* Box Sizing
--------------------------------------------- */

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

/* 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;
}


/* Defaults
---------------------------------------------------------------------------- */

/* Typographical Elements
--------------------------------------------- */

html {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

body {
    position: relative;
    background-color: #fff;
    color: #333;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.625;
    margin: 0;
    overflow-x: hidden;
}

button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button,
.gallery img {
    transition: all 0.2s ease-in-out;
}

a {
    color: #0073e5;
    text-decoration: underline;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

a:focus,
a:hover {
    color: #333;
    text-decoration: none;
}

p {
    margin: 0 0 1.875rem;
    padding: 0;
}

ol,
ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

hr {
    border: none;
    border-collapse: collapse;
    border-top: 0.0625rem solid #eee;
    clear: both;
    margin: 1.875rem 0;
}

b,
strong {
    font-weight: 700;
}

blockquote,
cite,
em,
i {
    font-style: italic;
}

mark {
    background: #ddd;
    color: #333;
}

blockquote {
    margin: 1.875rem;
}


/* Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
    max-width: 100%;
}

img {
    height: auto;
    vertical-align: top;
}

figure {
    margin: 0;
}

/* Gallery
--------------------------------------------- */

.gallery {
    overflow: hidden;
}

.gallery img {
    border: 0.0625rem solid #eee;
    height: auto;
    padding: 0.25rem;
}

.gallery img:focus,
.gallery img:hover {
    border: 0.0625rem solid #999;
    outline: none;
}

.gallery-columns-1 .gallery-item {
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    width: 50%;
}

.gallery-columns-3 .gallery-item {
    width: 33%;
}

.gallery-columns-4 .gallery-item {
    width: 25%;
}

.gallery-columns-5 .gallery-item {
    width: 20%;
}

.gallery-columns-6 .gallery-item {
    width: 16.6666%;
}

.gallery-columns-7 .gallery-item {
    width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
    width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    width: 11.1111%;
}

.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
    clear: left;
}

.gallery-item {
    float: left;
    margin: 0 0 1.875rem;
    text-align: center;
}

/* Forms
--------------------------------------------- */

input,
select,
textarea {
    background-color: #fff;
    border: 0.0625rem solid #ddd;
    color: #333;
    font-size: 1.125rem;
    font-weight: 400;
    padding: 0.9375rem;
    width: 100%;
}

input:focus,
textarea:focus {
    border: 0.0625rem solid #999;
    outline: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
    width: auto;
}

::-ms-input-placeholder {
    color: #333;
    opacity: 1;
}

:-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;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.9375rem 1.875rem;
    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: #0073e5;
    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;
    line-height: 2;
    margin-bottom: 2.5rem;
    width: 100%;
    word-break: break-all;
}

tbody {
    border-bottom: 0.0625rem solid #eee;
}

td,
th {
    text-align: left;
}

td {
    border-top: 0.0625rem solid #eee;
    padding: 0.375rem;
}

th {
    font-weight: 400;
    padding: 0 0.375rem;
}

td:first-child,
th:first-child {
    padding-left: 0;
}

/* Screen Reader Text
--------------------------------------------- */

.screen-reader-shortcut,
.screen-reader-text,
.screen-reader-text span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 0.0625rem;
    overflow: hidden;
    position: absolute !important;
    width: 0.0625rem;
    word-wrap: normal !important;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus,
.widget_search input[type="submit"]:focus {
    background: #fff;
    box-shadow: 0 0 0.125rem 0.125rem rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #333;
    display: block;
    font-size: 1em;
    font-weight: 700;
    height: auto;
    padding: 0.9375rem 1.4375rem 0.875rem;
    text-decoration: none;
    width: auto;
    z-index: 100000; /* Above WP toolbar. */
}

.more-link {
    display: inline-block;
    position: relative;
    margin-bottom: 1.875rem;
}


/* Structure and Layout
---------------------------------------------------------------------------- */

/* Site Container
--------------------------------------------- */

.site-container {
    overflow: hidden;
    animation: fadein 1s;
    word-wrap: break-word;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 1rem rgba(0,0,0,0.05);
}

@keyframes fadein {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}

/* Site Inner
--------------------------------------------- */

.site-inner {

}

.content-sidebar-wrap {
    padding: 3rem 0;
}


/* Common Classes
---------------------------------------------------------------------------- */

/* Avatar
--------------------------------------------- */

.avatar {
    border-radius: 50%;
    float: left;
}

.author-box .avatar,
.alignleft .avatar {
    margin-right: 1.25rem;
}

.alignright .avatar {
    margin-left: 1.25rem;
}

.comment .avatar {
    margin: 0 0.9375rem 1.25rem 0;
}

/* Genesis
--------------------------------------------- */

.after-entry,
.archive-description,
.author-box {
    margin-bottom: 2.5rem;
}

.after-entry {
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.05);
    padding: 1.25rem 1.875rem;
}

.after-entry .widget:last-of-type {
    margin-bottom: 0;
}

.breadcrumb {
    border-bottom: 0.0625rem solid #eee;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    padding-bottom: 0.625rem;
}

.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: 2.5rem;
    width: 50%;
}

.post-password-form input[type="submit"],
.search-form input[type="submit"] {
    margin-top: 0.625rem;
}

.widget_search input[type="submit"] {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 0.0625rem;
    margin: -0.0625rem;
    padding: 0;
    position: absolute;
    width: 0.0625rem;
}

/* Titles
--------------------------------------------- */

.archive-description .entry-title,
.archive-title,
.author-box-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.625rem;
}

.entry-title {
    margin-bottom: 0.625rem;
}

.entry-title a,
.sidebar .widget-title a {
    color: #333;
    text-decoration: none;
}

.entry-title a:focus,
.entry-title a:hover {
    color: #0073e5;
}

.widget-title {
    font-weight: 600;
    margin-bottom: 1.25rem;
}

/* 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 1.875rem;
}

img.alignnone,
.alignnone {
    margin-bottom: 0.9375rem;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
    margin: 0 1.25rem 1.25rem 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
    margin: 0 0 1.25rem 1.25rem;
}

.gallery-caption,
.wp-caption-text {
    font-size: 0.875rem;
    font-weight: 600;
    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 1.875rem;
}

/* Widgets
---------------------------------------------------------------------------- */

.widget {
    margin-bottom: 2.5rem;
}

.widget p:last-child,
.widget ul > li:last-of-type {
    margin-bottom: 0;
}

.widget ul > li {
    margin-bottom: 0.625rem;
}

.widget ul > li:last-of-type {
    padding-bottom: 0;
}

.widget ol > li {
    list-style-position: inside;
    list-style-type: decimal;
    padding-left: 1.25rem;
    text-indent: -1.25rem;
}

.widget li li {
    border: 0;
    margin: 0 0 0 1.875rem;
    padding: 0;
}

.widget_calendar table {
    width: 100%;
}

.widget_calendar td,
.widget_calendar th {
    text-align: center;
}

/* Featured Content
--------------------------------------------- */

.featured-content .entry {
    border-bottom: 0.0625rem solid #eee;
    margin-bottom: 1.25rem;
}

.featured-content .entry:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.featured-content .entry-title {
    margin-bottom: 0.3125rem;
    margin-top: 0.625rem;
}


/* Plugins
---------------------------------------------------------------------------- */

/* Genesis eNews Extended
--------------------------------------------- */

.after-entry .enews {
    text-align: center;
    padding: 0.625rem;
}

.sidebar .enews {
    background-color: #f5f5f5;
    padding: 1.875rem;
}

.enews-widget input {
    font-size: 1rem;
    margin-bottom: 0.625rem;
}

.after-entry .enews-widget input {
    text-align: center;
}

.enews-widget input[type="submit"] {
    margin: 0;
    width: 100%;
}

.enews form + p {
    margin-top: 1.25rem;
}

/* Genesis Simple FAQ
--------------------------------------------- */

.gs-faq__question {
    background: transparent;
    border-bottom: 0.0625rem solid #eee;
    color: #333;
    padding-left: 0;
    padding-right: 0;
}

.gs-faq__question:focus,
.gs-faq__question:hover {
    background: transparent;
    color: #0073e5;
}

.gs-faq__question::after {
    content: "\f132";
    font-family: dashicons; /* stylelint-disable-line font-family-no-missing-generic-family-keyword */
    float: right;
}

.gs-faq__question.gs-faq--expanded::after {
    content: "\f460";
}


/* 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 0.0625rem;
}


/* Site Header
---------------------------------------------------------------------------- */

.site-header {
    width: 100%;
    padding: 0 1.875rem;
}

/* Title Area
--------------------------------------------- */

.title-area {
    float: left;
    padding-bottom: 1.5625rem;
    padding-top: 1.5625rem;
}

.wp-custom-logo .title-area {
    max-width: 21.875rem;
    padding-bottom: 0.3125rem;
    padding-top: 0.3125rem;
    width: 100%;
}

.wp-custom-logo .title-area img {
    width: auto;
}

.site-title {
    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: 0.0625rem;
    overflow: hidden;
    position: absolute !important;
    width: 0.0625rem;
    word-wrap: normal !important;
}


.site-container > .title-area {
    display: none;
}


/* Site Navigation
---------------------------------------------------------------------------- */

.genesis-nav-menu {
    clear: both;
    line-height: 1;
    width: 100%;
}

.genesis-nav-menu .menu-item {
    display: block;
    float: none;
    position: relative;
}

.genesis-nav-menu a {
    color: #333;
    display: block;
    font-size: 0.9375rem;
    font-weight: 400;
    outline-offset: -0.0625rem;
    padding-bottom: 0.75rem;
    padding-top: 0.75rem;
    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: #0073e5;
    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: -100rem;
    margin: 0;
    opacity: 1;
    padding-left: 0.9375rem;
    position: static;
    z-index: 99;
}

.genesis-nav-menu .sub-menu a {
    background-color: #fff;
    font-size: 0.875rem;
    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;
}

.genesis-responsive-menu {
    display: none;
    position: relative;
}

.genesis-responsive-menu .genesis-nav-menu .menu-item:hover > .sub-menu {
    display: none;
}

.menu-toggle,
.sub-menu-toggle {
    background-color: transparent;
    border-width: 0;
    color: #333;
    display: block;
    margin: 0 auto;
    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: #0073e5;
}

.menu-toggle {
    float: right;
    line-height: 1.25rem;
    margin-bottom: 0.625rem;
    margin-top: 0.625rem;
    padding: 0.9375rem 0;
    position: relative;
    z-index: 1000;
}

.menu-toggle.activated::before {
    content: "\f335";
}

.site-header .menu-toggle::before {
    float: left;
    margin-right: 0.3125rem;
    position: relative;
    text-rendering: auto;
    top: 0.0625rem;
}

.sub-menu-toggle {
    float: right;
    padding: 0.5625rem 0.625rem;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100;
}

.sub-menu .sub-menu-toggle {
    padding: 0.75rem 0.625rem;
}

.sub-menu-toggle::before {
    display: inline-block;
    text-rendering: auto;
    transform: rotate(0);
    transition: transform 0.25s ease-in-out;
}

.sub-menu-toggle.activated::before {
    transform: rotate(180deg);
}

/* Header Menu
--------------------------------------------- */

.nav-primary {
    clear: left;
    padding-bottom: 0.9375rem;
    padding-top: 0.9375rem;
    width: 100%;
}

/* Footer Menu
--------------------------------------------- */

.nav-secondary {
    margin-top: 0.625rem;
}

.nav-secondary .genesis-nav-menu {
    line-height: 1.5;
}

.nav-secondary .menu-item {
    display: inline-block;
}

.nav-secondary a {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
    padding: 0;
}


/* Content Area
---------------------------------------------------------------------------- */

/* Entry Content
--------------------------------------------- */

.entry {
    margin-bottom: 2.5rem;
}

.entry-content ol,
.entry-content ul {
    margin-bottom: 1.875rem;
    padding-left: 2.5rem;
}

.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;
}


/* Entry Meta
--------------------------------------------- */

p.entry-meta {
    font-size: 1rem;
    margin-bottom: 0;
}

.entry-header .entry-meta {
    margin-bottom: 1.25rem;
}

.entry-footer .entry-meta {
    border-top: 0.0625rem solid #eee;
    padding-top: 1.25rem;
}

.entry-categories,
.entry-tags {
    display: block;
}

.entry-comments-link::before {
    content: "\2014";
    margin: 0 0.375rem 0 0.125rem;
}

/* Pagination
--------------------------------------------- */

.pagination {
    clear: both;
    margin: 3.75rem 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: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    padding: 0.5rem 0.75rem;
    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: 2.5rem;
}

.comment-list li {
    padding: 2.5rem 0 0 1.875rem;
}

.comment-list .depth-1 {
    padding-left: 0;
}

.comment-header {
    margin-bottom: 1.875rem;
}

.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: 0.75rem;
}

.comment-header p {
    margin-bottom: 0;
}

.entry-pings .reply {
    display: none;
}

.comment-form-cookies-consent label {
    display: inline;
    padding-left: 0.625rem;
}

/* Sidebar
---------------------------------------------------------------------------- */

.sidebar .widget {
    margin-bottom: 2.5rem;
}

.sidebar p {
    margin-bottom: 1.25rem;
}

/* Footer Widgets
---------------------------------------------------------------------------- */

.footer-widgets {
    border-top: 0.0625rem solid #eee;
    background-color: #fff;
    clear: both;
    padding: 3.75rem 0;
}

.footer-widgets .wrap {
    margin-left: auto;
    margin-right: auto;

    display: flex;
    flex-wrap: wrap;
}

.footer-widget-area {
    margin-bottom: 2.5rem;
    padding-left: 1.875rem;
    padding-right: 1.875rem;

    flex-grow: 1;
}

.footer-widget-area:last-child,
.footer-widgets .widget:last-child {
    margin-bottom: 0;
}

/* https://stackoverflow.com/questions/8720931/can-css-detect-the-number-of-children-an-element-has */
div[class*='footer-widgets-']:only-child {
    width: 100%;
}

div[class*='footer-widgets-']:first-child:nth-last-child(2),
div[class*='footer-widgets-']:first-child:nth-last-child(2) ~ div[class*='footer-widgets-'] {
    width: calc(100% / 2);
}

div[class*='footer-widgets-']:first-child:nth-last-child(3),
div[class*='footer-widgets-']:first-child:nth-last-child(3) ~ div[class*='footer-widgets-'] {
    width: calc(100% / 3);
}

div[class*='footer-widgets-']:first-child:nth-last-child(4),
div[class*='footer-widgets-']:first-child:nth-last-child(4) ~ div[class*='footer-widgets-'] {
    width: calc(100% / 4);
}

div[class*='footer-widgets-']:first-child:nth-last-child(5),
div[class*='footer-widgets-']:first-child:nth-last-child(5) ~ div[class*='footer-widgets-'] {
    width: calc(100% / 5);
}

div[class*='footer-widgets-']:first-child:nth-last-child(6),
div[class*='footer-widgets-']:first-child:nth-last-child(6) ~ div[class*='footer-widgets-'] {
    width: calc(100% / 6);
}

@media only screen and (max-width: 62rem) {
    div[class*='footer-widgets-']:first-child:nth-last-child(5),
    div[class*='footer-widgets-']:first-child:nth-last-child(5) ~ div[class*='footer-widgets-'] {
        width: calc(100% / 3);
    }

    div[class*='footer-widgets-']:first-child:nth-last-child(6),
    div[class*='footer-widgets-']:first-child:nth-last-child(6) ~ div[class*='footer-widgets-'] {
        width: calc(100% / 3);
    }
}

@media only screen and (max-width: 48rem) {
    div[class*='footer-widgets-']:first-child:nth-last-child(4),
    div[class*='footer-widgets-']:first-child:nth-last-child(4) ~ div[class*='footer-widgets-'] {
        width: calc(100% / 2);
    }

    div[class*='footer-widgets-']:first-child:nth-last-child(5),
    div[class*='footer-widgets-']:first-child:nth-last-child(5) ~ div[class*='footer-widgets-'] {
        width: calc(100% / 2);
    }

    div[class*='footer-widgets-']:first-child:nth-last-child(6),
    div[class*='footer-widgets-']:first-child:nth-last-child(6) ~ div[class*='footer-widgets-'] {
        width: calc(100% / 2);
    }
}

@media only screen and (max-width: 36rem) {
    div[class*='footer-widgets-']:first-child:nth-last-child(2),
    div[class*='footer-widgets-']:first-child:nth-last-child(2) ~ div[class*='footer-widgets-'] {
        width: calc(100% / 1);
    }

    div[class*='footer-widgets-']:first-child:nth-last-child(3),
    div[class*='footer-widgets-']:first-child:nth-last-child(3) ~ div[class*='footer-widgets-'] {
        width: calc(100% / 1);
    }

    div[class*='footer-widgets-']:first-child:nth-last-child(4),
    div[class*='footer-widgets-']:first-child:nth-last-child(4) ~ div[class*='footer-widgets-'] {
        width: calc(100% / 1);
    }

    div[class*='footer-widgets-']:first-child:nth-last-child(5),
    div[class*='footer-widgets-']:first-child:nth-last-child(5) ~ div[class*='footer-widgets-'] {
        width: calc(100% / 1);
    }

    div[class*='footer-widgets-']:first-child:nth-last-child(6),
    div[class*='footer-widgets-']:first-child:nth-last-child(6) ~ div[class*='footer-widgets-'] {
        width: calc(100% / 1);
    }
}

/* Site Footer
---------------------------------------------------------------------------- */

.site-footer {
    background-color: #fff;
    border-top: 0.0625rem solid #eee;
    font-size: 0.9375rem;
    line-height: 1.5;
    padding: 1.875rem;
    text-align: center;
}

.site-footer p {
    margin-bottom: 0;
}


/* Media Queries
---------------------------------------------------------------------------- */

.wfcg-site-header-container .site-header {
    position: relative;
}

/* Large devices (large desktops, 1200px and up) */
@media only screen and ( min-width: 75rem ) {

    /* 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 > .menu-bold > a {
        font-weight: 700;
    }

    .genesis-nav-menu > .menu-highlight > a {
        background-color: #333;
        border-radius: 0.1875rem;
        color: #fff;
        font-weight: 600;
        margin-left: 0.9375rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .genesis-nav-menu > .menu-highlight > a:focus,
    .genesis-nav-menu > .menu-highlight > a:hover {
        background-color: #0073e5;
    }

    .genesis-nav-menu .sub-menu,
    .genesis-nav-menu .sub-menu a {
        width: 11.25rem;
    }

    .genesis-nav-menu .sub-menu {
        border-top: 0.0625rem solid #eee;
        opacity: 0;
        padding-left: 0;
        position: absolute;
        transition: opacity 0.4s ease-in-out;
    }

    .genesis-nav-menu .sub-menu a {
        border: 0.0625rem solid #eee;
        border-top: 0;
        padding-bottom: 0.9375rem;
        padding-top: 0.9375rem;
    }

    .genesis-nav-menu .sub-menu .sub-menu {
        margin: -2.875rem 0 0 11.1875rem;
    }

    /* Responsive Menu
    --------------------------------------------- */

    .genesis-responsive-menu {
        display: block;
        padding-top: 0.9375rem;
    }

    .menu-toggle,
    .sub-menu-toggle {
        display: none;
        visibility: hidden;
    }

    /* Header Menu
    --------------------------------------------- */

    .nav-primary {
        clear: none;
        float: right;
        width: auto;
    }

    .nav-primary .genesis-nav-menu a {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
    }


    /* Author Box
    --------------------------------------------- */

    .author-box {
        background-color: #f5f5f5;
        padding: 1.875rem;
    }

    /* After Entry
    --------------------------------------------- */

    .after-entry {
        padding: 2.5rem 3.75rem;
    }

    .after-entry .enews {
        padding-left: 1.875rem;
        padding-right: 1.875rem;
    }

    /* Column Classes
    --------------------------------------------- */

    .five-sixths,
    .four-sixths,
    .one-fourth,
    .one-half,
    .one-sixth,
    .one-third,
    .three-fourths,
    .three-sixths,
    .two-fourths,
    .two-sixths,
    .two-thirds {
        float: left;
        margin-left: 2.564102564102564%;
    }

    .one-half,
    .three-sixths,
    .two-fourths {
        width: 48.717948717948715%;
    }

    .one-third,
    .two-sixths {
        width: 31.623931623931625%;
    }

    .four-sixths,
    .two-thirds {
        width: 65.81196581196582%;
    }

    .one-fourth {
        width: 23.076923076923077%;
    }

    .three-fourths {
        width: 74.35897435897436%;
    }

    .one-sixth {
        width: 14.52991452991453%;
    }

    .five-sixths {
        width: 82.90598290598291%;
    }

    .first {
        clear: both;
        margin-left: 0;
    }

    /* Entry Misc.
    --------------------------------------------- */

    .after-entry,
    .archive-description,
    .author-box,
    .comment-respond,
    .entry,
    .entry-comments,
    .entry-pings {
        margin-bottom: 3.75rem;
    }

    /* Footer Widgets
    --------------------------------------------- */

    .footer-widgets .wrap {
        max-width: 71.25rem;
    }

    .footer-widget-area {
        float: left;
        margin-bottom: 0;
        width: calc(100% / 3);
    }

}

.nav-primary {
    display: block;
}

.site-header button.menu-toggle {
    outline: none;
}

@media only screen and (max-width: 60rem) {
    .nav-primary {
        /* header fix without relying on js */
        display: none;
    }
}

/* 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: 0.0625rem solid #999;
        page-break-inside: avoid;
    }

    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;
    }

}


.cards {
    /*
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    */
    overflow: hidden;
}

.card {
    /*
    flex: 1 1 30%;
    flex-grow: 1;
    width: 33%;
    margin: 0.625rem;
    */
    /* float: left; */
    width: calc(33% - (0.625rem * 2));
    margin: 0.625rem;
    padding: 0 !important;
}

.card .card-header {
    padding: 0;
    overflow: hidden;
}

.card .card-header img {
    object-fit: cover;
    object-position: center;
    width: 100%;
}


/*----Header Classes for SEO----*/
.wfcg-h1 {
    display: block;
    font-size: 2em;
    margin-top: 0.67em;
    margin-bottom: 0.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

.wfcg-h2 {
    display: block;
    font-size: 1.5em;
    margin-top: 0.83em;
    margin-bottom: 0.83em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

.wfcg-h3 {
    display: block;
    font-size: 1.17em;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

.wfcg-h4 {
    display: block;
    font-size: 1em;
    margin-top: 1.33em;
    margin-bottom: 1.33em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

.wfcg-h5 {
    display: block;
    font-size: .83em;
    margin-top: 1.67em;
    margin-bottom: 1.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

.wfcg-h6 {
    display: block;
    font-size: .67em;
    margin-top: 2.33em;
    margin-bottom: 2.33em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}


/** Children as accordion TEMPLATE CSS **/
.wfcg-children-as-accordion-main-cont{
    margin: 1.25rem 0;
}

.wfcg-children-as-accordion-title-cont .ui-accordion-header-icon{
    display: none !important;
}

.wfcg-children-as-accordion-sub-cont {
    margin-bottom: 2.5rem;
}

.wfcg-children-as-accordion-active, .wfcg-children-as-accordion-title-cont:hover {
    background-color: #d9d9d9;
}

.wfcg-children-as-accordion-content-cont {
    background-color: #ffffff !important;
    border: 0 !important;
    border-radius: 0 !important;
}






/** Children as list TEMPLATE CSS **/
.wfcg-children-as-list-title-cont {
    background-color: #ebebeb;
    color: #444;
    cursor: pointer;
    padding-top: 0.625rem;
    padding-right: 1.25rem;
    padding-bottom: 0.0625rem;
    padding-left: 1.25rem;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 0.9375rem;
    transition: 0.4s;
}

.wfcg-children-as-list-child-cont {
    /* float: left; */
    display: inline-block !important;
    border: none !important;
    width: calc(33% - (0.625rem * 3));
    margin: 0.625rem;
    vertical-align: top;
    overflow: hidden;
}

.wfcg-children-as-list-content,
.wfcg-children-as-list-footer {
    padding: 0.9375rem;
}

.wfcg-children-as-list-footer {
    margin-top: 0.625rem;
}

.wfcg-children-as-list-img img {
    object-fit: cover;
    object-position: center;
    width: 100%;
}

@media only screen and (max-width: 36rem) {
    .wfcg-children-as-list-child-cont {
        width: calc(50% - (0.625rem * 3));
    }
}

@media only screen and (max-width: 30rem) {
    .wfcg-children-as-list-child-cont {
        width: calc(100% - (0.625rem * 1));
    }
}



/** static styles for header banner content **/
.wfcg-header-banner-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.wfcg-header-banner-container .wfcg-header-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.wfcg-header-banner-container .wfcg-header-featured-image.wfcg-hero-large {
    display: block;
}

.wfcg-header-banner-container .wfcg-header-featured-image.wfcg-hero-medium,
.wfcg-header-banner-container .wfcg-header-featured-image.wfcg-hero-small {
    display: none;
}

.wfcg-header-banner-container .wfcg-header-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 34.375rem;
    margin: 12.5rem auto auto 18.75rem;
}

.wfcg-header-banner-container .wfcg-header-banner-content * {
    color: white;
}

.wfcg-header-banner-container .wfcg-header-banner-content h1 {
    font-size: 3.75rem;
    margin-bottom: 3.75rem;
}

.wfcg-header-banner-container .wfcg-header-banner-content p {

}

@media only screen and (max-width: 64rem) {
    .wfcg-header-banner-container {
        height: auto;
    }

    .wfcg-header-banner-container .wfcg-header-banner-content {
        margin: 6.25rem auto auto 6.25rem;
    }
}

@media only screen and (max-width: 48rem) {
    .wfcg-header-banner-container .wfcg-header-banner-content {
        width: calc(100% - 6.25rem);
        margin-left: 3.125rem;
    }

    .wfcg-header-banner-container .wfcg-header-featured-image.wfcg-hero-large,
    .wfcg-header-banner-container .wfcg-header-featured-image.wfcg-hero-small {
        display: none;
    }

    .wfcg-header-banner-container .wfcg-header-featured-image.wfcg-hero-medium {
        display: block;
    }
}

@media only screen and (max-width: 36rem) {
    .wfcg-header-banner-container .wfcg-header-featured-image.wfcg-hero-large,
    .wfcg-header-banner-container .wfcg-header-featured-image.wfcg-hero-medium {
        display: none;
    }

    .wfcg-header-banner-container .wfcg-header-featured-image.wfcg-hero-small {
        display: block;
    }
}


/** static styles for footer banner content **/
.wfcg-footer-before-banner {
    position: relative;
    width: 62.5rem;
    margin: 1.25rem auto;
    overflow: hidden;
}

.wfcg-footer-before-banner .wfcg-footer-banner-content {
    position: absolute;
    background-color: black;
    float: left;
    top: 0;
    left: 0;
    width: 56.25rem;
    padding: 5rem;
}

.wfcg-footer-before-banner .wfcg-footer-banner-content * {
    color: white;
}

.wfcg-footer-before-banner .wfcg-footer-banner-content .wfcg-footer-banner-inner-container {
    width: calc(50% - 3.75rem);
}

.wfcg-footer-before-banner .wfcg-footer-banner-featured-image {
    position: relative;
    float: right;
    width: 31.25rem;
    margin-top: 5.625rem;
    object-position: center;
    z-index: 2;
}

@media only screen and (max-width: 64rem) {
    .wfcg-footer-before-banner {
        width: 100%;
    }

    .wfcg-footer-before-banner .wfcg-footer-before-banner-container {
        position: relative;
        margin: 1.875rem;
        overflow: hidden;
    }

    .wfcg-footer-before-banner .wfcg-footer-banner-content,
    .wfcg-footer-before-banner .wfcg-footer-banner-featured-image {

    }
}

@media only screen and (max-width: 48rem) {
    .wfcg-footer-before-banner .wfcg-footer-banner-content {
        width: 37.5rem;
        padding: 2.5rem;
    }

    .wfcg-footer-before-banner .wfcg-footer-banner-content .wfcg-footer-banner-inner-container {
        width: 60%;
    }

    .wfcg-footer-before-banner .wfcg-footer-banner-featured-image {
        width: 20rem;
    }
}

@media only screen and (max-width: 36rem) {
    .wfcg-footer-before-banner .wfcg-footer-before-banner-container {
        margin: 1.25rem;
    }

    .wfcg-footer-before-banner .wfcg-footer-banner-content {
        position: relative;
        width: 100%;
    }

    .wfcg-footer-before-banner .wfcg-footer-banner-content .wfcg-footer-banner-inner-container {
        width: 100%;
    }

    .wfcg-footer-before-banner .wfcg-footer-banner-featured-image {
        float: left;
        width: 100%;
        margin-top: 0;
    }
}

@media only screen and (max-width: 25rem) {
    .wfcg-footer-before-banner {
        width: auto;
    }

    .wfcg-footer-before-banner .wfcg-footer-banner-content {
        padding: 1.25rem;
    }
}


.wfcg-footer {
    background: linear-gradient(45deg, #0d75b2, #0f2976);
    padding: 5rem 0;
    overflow: hidden;
}

.wfcg-footer * {
    color: white;
}

.wfcg-footer .wfcg-footer-section-container {
    display: flex;
    width: 75rem;
    margin: auto;
}

.wfcg-footer .wfcg-footer-section-container .wfcg-footer-section {
    vertical-align: top;
    width: 25%;
}

.wfcg-footer .wfcg-footer-section-container .wfcg-footer-section h6 {
    font-size: 0.75rem;
    font-weight: normal;
    margin-bottom: 2.375rem;
    opacity: 0.5;
}

.wfcg-footer .wfcg-footer-section-container .wfcg-footer-section h6 svg {
    margin-right: 1.25rem;
}

.wfcg-footer .wfcg-footer-section-container .wfcg-footer-section ul li {
    font-size: 0.75rem;
}

.wfcg-footer .wfcg-footer-section-container .wfcg-footer-section small {
    opacity: 0.5;
}

@media only screen and (max-width: 64rem) {
    .wfcg-footer .wfcg-footer-section-container {
        width: 100%;
    }
}


/*
.site-header {
    width: 100%;
	transition: 300ms ease-out;
    z-index: 10000;
}

.site-header > .wrap {
	border-bottom-color: transparent;
	width: calc(100vw - 6.25rem);
	margin: 0 auto;
	transition: 300ms ease-out;
}

.site-header.is-sticky {
    position: fixed !important;
}

.site-header.is-transparent {
	background-color: transparent !important;
}

.site-header.is-top > .wrap {
	border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
	margin-top: 1.5625rem;
}

@media only screen and (max-width: 37.5rem) {
	.site-header > .wrap {
		width: 100%;
	}

	.site-header.is-top > .wrap {
		margin-top: 0;
	}
}
*/


/* children as template fullpage */
.fp-enabled .site-header {
    position: fixed;
}

#fullpage {
    position: fixed !important;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
}

#fullpage * {
    transition: 300ms ease-out;
}

#fullpage .wfcg-children-as-fullpage-content {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    bottom: 7.5rem;
    /* width: 50%; */
    padding: 2.5rem 2.5rem 2.5rem 5rem;
    z-index: 2;
}

#fullpage img {
    position: absolute;
    object-position: center;
    object-fit: cover;
    top: 0;
    width: 100%;
    height: 100vh;
}

#fullpage .wfcg-footer-before-banner {
    background-color: white;
    margin: auto;
}

#fullpage .wfcg-footer-before-banner .fp-tableCell {
    display: flex;
}

#fullpage .wfcg-footer-before-banner .wfcg-footer-before-banner-inner-container {
    position: relative;
    width: 67.5rem;
    margin: auto;
}

#fullpage .wfcg-footer-before-banner .wfcg-footer-before-banner-inner-container img {
    position: relative;
    width: 31.25rem;
    height: auto;
}

@media only screen and (max-width: 64rem) {
    #fullpage .wfcg-children-as-fullpage-content {
    }
}

@media only screen and (max-width: 62rem) {
    #fullpage .wfcg-children-as-fullpage-content {
    }
}

@media only screen and (max-width: 48rem) {
    #fullpage .wfcg-children-as-fullpage-content {
        bottom: 3.125rem;
    }
}

@media only screen and (max-width: 36rem) {
    #fullpage .wfcg-children-as-fullpage-content {
        bottom: 0;
        padding: 2.5rem;
    }
}

@media only screen and (max-width: 30rem) {
    #fullpage .wfcg-children-as-fullpage-content {
        padding: 1.875rem;
    }
}

