/*
Theme Name: Genesis Sample
Theme URI: https://demo.studiopress.com/
Description: This is the sample theme created for the Genesis Framework.
Author: StudioPress
Author URI: https://www.studiopress.com/

Version: 3.3.1

Tags: accessibility-ready, block-styles, custom-colors, custom-logo, custom-menu, editor-style, 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, wide-blocks

Template: genesis

License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Text Domain: genesis-sample
Requires at least: 5.4
Requires PHP: 5.6
*/

/* 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
	- WPForms
- 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: 960px
		- 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
---------------------------------------------------------------------------- */

/* normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css
---------------------------------------------------------------------------- */
/* stylelint-disable */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{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}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup, .tablepress em{font-size:75%;line-height:0;position:relative;vertical-align:baseline;font-style: normal;}sub{bottom:-.25em}sup,.tablepress em{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}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:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}
/* stylelint-enable */

/* 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 {
	background-color: #fff;
	color: #333;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	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: none;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

a.breadcrumb-link span.dashicons {
    font-size: 26px;
    width: 26px;
    height: 26px;
    vertical-align: text-bottom;
}

a:focus,
a:hover {
	color: #333;
	text-decoration: none;
	outline: none;
}

.entry-content a {
	font-weight: 700;
}

.entry-content a.button {
	font-weight: 400;
}

p {
	margin: 0 0 16px;
	padding: 0;
}


ol,
ul {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
	margin-bottom: 10px;
}

hr {
	border: 0;
	border-collapse: collapse;
	border-bottom: 1px solid currentColor;
	clear: both;
	color: #eee;
	margin: 1.65em auto;
}

b,
strong {
	font-weight: 700;
}

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

mark {
	background: #ddd;
	color: #333;
}

blockquote {
	margin: 30px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Merriweather', serif;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 20px;
}

h1 {
	font-size: 30px;
}

h2 {
	font-size: 27px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

/* 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: 1px solid #eee;
	height: auto;
	padding: 4px;
}

.gallery img:focus,
.gallery img:hover {
	border: 1px 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 30px;
	text-align: center;
}

/* Forms
--------------------------------------------- */

input,
select,
textarea {
    background-color: #fff;
    border: 2px solid #ddd;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 10px;
	width: 100%;
	transition: 0.5s ease all;
}

input:focus,
select:focus,
textarea:focus {
	border: 2px solid #c23982;
	outline: none;
}

select:hover {
    cursor: pointer;
}

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;
}


input[type="button"],
input[type="reset"],
input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form button[type="submit"],
.button,
.flexible-layout-slider div#n2-ss-3 .n2-ss-button-container a {
	background-color: #4966A8;
    border: 0;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 25px;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    width: auto;
	line-height: 1;
	transition: 0.5s ease all;
}

input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
.site-container div.wpforms-container-full .wpforms-form input[type="submit"]:focus,
.site-container div.wpforms-container-full .wpforms-form input[type="submit"]:hover,
.site-container div.wpforms-container-full .wpforms-form button[type="submit"]:focus,
.site-container div.wpforms-container-full .wpforms-form button[type="submit"]:hover,
.button:focus,
.button:hover,
.flexible-layout-slider div#n2-ss-3 .n2-ss-button-container a:hover,
.flexible-layout-slider div#n2-ss-3 .n2-ss-button-container a:focus {
	background-color: #3a5084;
	border-width: 0;
	color: #fff;
	outline: none;
	cursor: pointer;
}

.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;
}

.site-container .gform_wrapper {
	margin: 0;
}
.site-container .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.site-container .gform_wrapper textarea,
.site-container .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield div.ginput_complex span.ginput_left select, 
.site-container .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield div.ginput_complex span.ginput_right select, 
.site-container .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield select  {
    padding: 15px;
    margin: 0;
    line-height: 1;
}
.site-container .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield div.ginput_complex span.ginput_left select, 
.site-container .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield div.ginput_complex span.ginput_right select, 
.site-container .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield select {
	margin-top: 16px;
}
.site-container .gform_wrapper .gform_footer {
	padding: 0;
}
.site-container .gform_wrapper.gf_browser_chrome .gfield_checkbox li input, 
.site-container .gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox], 
.site-container .gform_wrapper.gf_browser_chrome .gfield_radio li input[type=radio] {
	margin-top: 0;
}
.site-container .gform_wrapper ul.gfield_checkbox li label, 
.site-container .gform_wrapper ul.gfield_radio li label {
	font-size: 16px;
}
body .site-container .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html {
	font-size: 14px;

}
.site-container .gform_wrapper .ginput_complex .ginput_left, 
.site-container .gform_wrapper .ginput_complex .ginput_right {
	width: 100%;
}
.site-container .gform_wrapper .ginput_complex.ginput_container_address .ginput_right {
	padding-right: 0;
}

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

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

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

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

td {
	padding: 0.5em;
}

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

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

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

.screen-reader-shortcut,
.screen-reader-text,
.screen-reader-text span {
	border: 0;
	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: 30px;
}


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

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

.site-container {
	animation: fadein 1s;
	word-wrap: break-word;
	background-color: #f4f4f4;
}

.europe-page .site-container {
    background-color: lightgray;
}

@keyframes fadein {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}

}

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

.site-inner {
	clear: both;
	margin: 0 auto;
	padding: 40px 0;
}


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

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

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

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

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

.comment .avatar {
	margin: 0 15px 20px 0;
}

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

.after-entry,
.archive-description,
.author-box {
	margin-bottom: 40px;
}

.after-entry {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	padding: 20px 30px;
}

.after-entry .widget:last-of-type {
	margin-bottom: 0;
}

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

.genesis-title-hidden .breadcrumb {
	margin-top: 40px;
}

.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: 40px;
	width: 50%;
}

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

.widget_search input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

.search-content h3{
	line-height: 1.5;
}
/* Titles
--------------------------------------------- */

.archive-description .entry-title,
.archive-title,
.author-box-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

.entry-title {
	font-size: 30px;
	margin-bottom: 10px;
}

.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-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

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

/* 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,
.singular-image {
	display: block;
	margin: 0 auto 30px;
}

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

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

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

figcaption,
.gallery-caption,
.wp-caption-text {
	font-size: 12px;
	font-weight: 500;
	text-align: left;
	margin-top: 10px;
}

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

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

.entry-content figure {
    display: block;
    margin: 0 0 30px;
    width: 100% !important;
}
.entry-content figure img {
    display: block;
    margin: 0 auto 0 0;
}

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

.widget {
	margin-bottom: 40px;
}

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

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

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

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

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

.widget_calendar table {
	width: 100%;
}

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

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

.featured-content .entry {
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
}

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

.featured-content .entry-title {
	font-size: 16px;
	margin-bottom: 5px;
	margin-top: 10px;
}


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

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

.after-entry .enews {
	text-align: center;
	padding: 10px;
}

.sidebar .enews {
	background-color: #f5f5f5;
	padding: 30px;
}

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

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

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

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

/* Genesis Simple FAQ
--------------------------------------------- */

.gs-faq__question {
	background: transparent;
	border-bottom: 1px 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";
}

/* WP Forms
--------------------------------------------- */

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

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

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

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

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

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

.site-container .entry-content .wpforms-form textarea {
	padding: 15px;
}

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

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

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


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

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

.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;
}

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

.title-area {
	float: left;
	padding-bottom: 25px;
	padding-top: 25px;
}

.wp-custom-logo .title-area {
	max-width: 350px;
	padding-bottom: 5px;
	padding-top: 5px;
	width: 100%;
}

.wp-custom-logo .title-area img {
	width: auto;
}

.site-title {
	font-size: 20px;
	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 {
	clear: both;
	line-height: 1;
	width: 100%;
}

.genesis-nav-menu .menu-item {
	display: block;
	float: none;
	position: relative;
	margin: 0;
}

.genesis-nav-menu a {
    color: #333;
    display: block;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    padding-bottom: 12px;
    padding-top: 12px;
    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: -9999px;
	margin: 0;
	opacity: 1;
	padding-left: 15px;
	position: static;
	z-index: 99;
}

.genesis-nav-menu .sub-menu a {
	background-color: #fff;
	font-size: 14px;
	position: relative;
	word-wrap: break-word;
	text-transform: none;
}

.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;
}

.genesis-nav-menu .menu-item:last-of-type>.sub-menu {
    right: 0;
}

.site-header .wrap .header-widget-area ul > li {
    margin: 0;
    padding: 0;
    line-height: 1;
    order: 2;
}
li.astm-search-menu.is-menu.sliding.menu-item {
    order: 1;
}
.site-header .wrap .header-widget-area ul > li a {
    line-height: 1;
    display: block;
    padding: 15px;
    font-size: 14px;
}

/* 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: #894168;
    border-width: 0;
    color: #fff;
    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: #894168;
	border-width: 0;
	color: #fff !important;
	outline: none;
}

.menu-toggle {
    padding: 15px 5%;
    position: relative;
    z-index: 1000;
    text-align: right;
    width: 100%;
}

.menu-toggle.activated::before {
	content: "\f335";
}

.site-header .dashicons-before::before {
	transition: none;
}

.site-header .menu-toggle::before {
	float: left;
	margin-right: 5px;
	position: relative;
	text-rendering: auto;
	top: 1px;
}

.sub-menu-toggle {
    padding: 10px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100;
    color: #333;
    background-color: transparent;
    width: 100%;
    text-align: right;
}

.sub-menu-toggle:focus,
.sub-menu-toggle:hover {
	background-color: transparent;
	border-width: 0;
	color: #894168 !important;
	outline: none;
}

.sub-menu .sub-menu-toggle {
	padding: 12px 10px;
}

.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;
	width: 100%;
}

/* Footer Menu
--------------------------------------------- */

.nav-secondary {
	margin-top: 10px;
}

.nav-secondary .genesis-nav-menu {
	line-height: 1;
}

.nav-secondary .menu-item {
	display: inline-block;
}

.nav-secondary a {
    margin-left: 8px;
    margin-right: 8px;
    padding: 0;
	font-size: 14px;
	color: white;
}


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

/* Entry Content
--------------------------------------------- */

.entry {
    background-color: white;
	padding: 20px;
	border-top: 1px solid #ccc;
}

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

.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: 30px;
}

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

p.entry-meta {
	font-size: 16px;
	margin-bottom: 0;
}

.entry-header .entry-meta {
	margin-bottom: 20px;
}

.entry-footer .entry-meta {
	border-top: 1px solid #eee;
	padding-top: 20px;
}

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

.entry-comments-link::before {
	content: "\2014";
	margin: 0 6px 0 2px;
}

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

.pagination {
    margin: 60px 0 0;
    display: block;
    width: 100%;
}

.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: 16px;
	font-weight: 600;
	margin-bottom: 4px;
	padding: 8px 12px;
	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: 40px;
}

.comment-list li {
	padding: 40px 0 0 30px;
}

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

.comment-header {
	margin-bottom: 30px;
}

.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: 12px;
}

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

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

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

/* Sidebar
---------------------------------------------------------------------------- */

.sidebar {
	font-size: 15px;
}

.sidebar .widget {
	margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.15);
    border-radius: 10px;
}
.sidebar .widget ul > li {
    line-height: 1.4;
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 5px;
}
.sidebar .widget a {
	color: #333;
}

.sidebar .contact-info ul > li {
    list-style-type: none;
}
.state-list.widget ul > li a {
    font-weight: 400;
    color: #333;
}

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

.footer-widgets {
	background-color: #262626;
	clear: both;
	padding: 40px 0;
}

.footer-widgets .wrap {
	margin-left: auto;
	margin-right: auto;
}

.footer-widget-area {
	margin-bottom: 40px;
	padding-left: 30px;
	padding-right: 30px;
}

.footer-widget-area:last-child,
.footer-widgets .widget:last-child {
	margin-bottom: 0;
}


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

.site-footer {
	font-size: 14px;
    line-height: 1;
    padding: 20px 0;
    text-align: center;
    background-color: #222;
    color: white;
}

.site-footer p {
	margin-bottom: 0;
    line-height: 1;
}

.site-footer .jsmt-shortcode ul.social-links {
    margin-top: 10px;
    line-height: 1;
}
.site-footer .jsmt-shortcode ul.social-links a svg {
    color: #fff;
    margin: 0 8px;
}

.footer-disclaimer {
    text-align: left;
    font-size: 12px;
    color: #eee;
    line-height: 1.4;
    margin-top: 30px;
}

.footer-disclaimer .widget {
	margin: 0;
}
.footer-disclaimer p {
	line-height: 1.4;
}

/* JSMT Shortcode
---------------------------------------------------------------------------- */
.jsmt-shortcode {
    display: flex;
    align-items: baseline;
    justify-content: center;
}
.jsmt-shortcode svg {
    margin-right: 10px;
}
.jsmt-shortcode ul.social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.jsmt-shortcode ul.social-links > li {
    margin: 0;
    padding: 0;
    line-height: 1;
}
.jsmt-shortcode ul.social-links > li svg {
    margin: 0 10px;
    font-size: 20px;
}
.sidebar .jsmt-shortcode {
    text-align: center;
    display: block;
}
.sidebar .contact-info {
	text-align: center;
}
div#last-search-term{
	display:none;
}
mark{
    background: #894168;
    color: white;
    padding: 5px;
}
/* Front Page
---------------------------------------------------------------------------- */
.flexible-layout {
	padding: 80px 0;
}
.flexible-layout-slider {
	padding: 0;
}
.flexible-layout .widget-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
}
.flexible-layout-slider .n2-ss-layer.n2-ow {
	text-align: left;
}
.flexible-layout:nth-of-type(even) {
    background-color: white;
}
.flexible-layout-quote 	{
	text-align: center;
}
.flexible-layout-featured-pages .flexcol, 
.child-pages .flexcol {
    text-align: center;
    margin: 0 0 30px 0;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
	box-shadow: 0px 2px 5px rgba(0,0,0,0.25);
	background-color: white;
}
.flexible-layout-quote blockquote {
	margin: 0;
    font-size: 24px;
    font-weight: 700;
    font-style: normal;
    font-family: 'Merriweather', serif;
}
/*.flexible-layout-quote blockquote p {
    display: inline-block;
    vertical-align: top;
}
.flexible-layout-quote blockquote::before {
	content: "\f122";
    display: inline-block;
    vertical-align: top;
    margin: 0 10px 10px 0;
	line-height: 1;
	font: normal 40px/1 'dashicons';
}*/
.flexible-layout-featured-pages .flexcol,
.flexible-layout-squares .flexcol,
.flexible-layout-blog .flexcol {
	background-color: white;
	border-radius: 15px;
	box-shadow: 0px 2px 5px rgba(0,0,0,0.25);
	margin: 20px 0;
}
.flexible-layout-squares .flexcol,
.flexible-layout-blog .flexcol .post-info {
	padding: 20px;
}
.flexible-layout-blog .flexcol img {
	border-radius: 15px 15px 0 0;
}
.flexible-layout-squares .flexcol ul {
	margin-left: 30px;
}
.flexible-layout-squares .flexcol ul > li {
	list-style-type: disc;
}
.flexible-layout-squares .flexcol img {
    margin-bottom: 0;
}
.flexible-layout-blog .flexcol .post-title a {
	color: #333;
}
.flexible-layout-blog .flexcol a.button {
	margin-top: 15px;
}
.featured-page-info {
	padding: 20px;
	text-align: center;
}

.flexible-layout-featured-pages .flexcol img {
    border-radius: 15px 15px 0 0;
}
.flexible-layout-featured-pages a.learn-more {
    font-weight: 700;
    margin-top: 20px;
	display: block;
}
.flexible-layout-featured-pages a.learn-more svg {
	transition: 0.5s ease all;
}
.flexible-layout-featured-pages a.learn-more:hover svg {
	transform: translateX(10px);
}

/* Child Pages
---------------------------------------------------------------------------- */
div.child-pages {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #333;
}
.child-pages h2 {
    font-weight: 400;
    text-align: center;
    font-size: 36px;
}
.child-pages .flexcol {
	padding: 0;
}
.child-pages .flexcol h3.child-page-title {
    margin: 0;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
}
.child-pages .flexcol h3.child-page-title a {
	color: #333;
}
.child-pages .flexcol a.button {
    display: block;
    border-radius: 15px;
    font-weight: 800;
    line-height: 1.4;
}
.page-id-323 .entry .entry-content {
    text-align: center;
    font-size: 20px;
    max-width: 960px;
    margin: 0 auto;
}

/* Resource Pages
---------------------------------------------------------------------------- */
.resource-page .site-inner .entry .flexbox:not(:last-of-type),
.single-resources .site-inner .entry .flexbox:not(:last-of-type) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}
.resource-page .site-inner .entry .flexbox,
.single-resources .site-inner .entry .flexbox {
    align-items: center;
}
.resource-page .site-inner .entry .flexcol strong,
.single-resources .site-inner .entry .flexcol strong {
    font-size: 20px;
    font-weight: 500;
}

/* Table Pages
---------------------------------------------------------------------------- */
.table,
.site-container .tablepress {
    font-size: 15px;
	border: 1px solid #ccc;
}
.table .flexcol:not(:last-of-type),
.site-container .tablepress td:not(:last-of-type) {
    border-right: 1px solid #ccc;
}
.table .flexbox:not(.table-header) .flexcol,
.site-container tbody td {
	border-top: 1px solid #ccc;
}
.table .flexcol,
.site-container .tablepress td {
	padding: 10px;
}
.table .flexbox.table-header .flexcol,
.site-container .tablepress th {
	background-color: #eee;
	font-weight: 700;
	cursor: pointer;
	transition: 0.5s ease all;
}
.site-container .tablepress th:hover {
	background-color: #ccc;
}

/*.table-page .table .flexbox,
.site-container .tablepress tr {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}*/
.site-container .tablepress th,
.site-container .tablepress td {
	/*flex: 1;*/
	line-height: 1.4;
}
.dataTables_wrapper {
    overflow-x: scroll;
}
table.tablepress th {
	border-right: 1px solid #ddd;
}
table.tablepress th, 
table.tablepress td,
table td {
    min-width: 200px;
}


.site-container .dataTables_wrapper label input, 
.site-container .dataTables_wrapper label select {
    display: block;
    margin: 0;
    width: 100%;
}
.dataTables_filter {
    width: 100%;
    position: sticky;
    left: 0;
}
div#table-nav #prev svg, 
div#table-nav #next svg {
    font-size: 40px;
    width: 40px;
    height: 40px;
    line-height: 1;
    padding: 10px;
    background-color: white;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.15);
    color: #894168;
    cursor: pointer;
    border: 2px solid #894168;
    vertical-align: middle;
}

div#table-nav #prev {
    float: left;
}
div#table-nav #next {
    float: right;
}

/* Tab Pages
---------------------------------------------------------------------------- */

.ui-tabs-vertical .ui-tabs-nav { 
	padding: 0;
	margin: 0;
}
.ui-tabs-vertical .ui-tabs-panel {
	padding: 20px;
	border: 1px solid #ccc;
}
.ui-tabs-vertical .ui-tabs-nav li {
	list-style-type: none;
	margin: 0;
}
.ui-tabs-vertical .ui-tabs-nav li a { 
	display:block;
	color: #333;
	background-color: #eee;
	border: 1px solid #ccc;
	border-right: none;
	padding: 20px;
	line-height: 1;
	transition: 0.5s ease all;
}
.ui-tabs-vertical .ui-tabs-nav li a:hover,
.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active a {
	background-color: #894168;
	color: white;
}
.ui-tabs-vertical .ui-tabs-nav li:not(:last-of-type) a {
	border-bottom: none;
}


/* FAQ Single
---------------------------------------------------------------------------- */
.entry .entry-title {
    margin-bottom: 30px;
    font-weight: 400;
    text-align: center;
    font-size: 36px;
}
.faq-page .entry h2.faq-section-title {
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    line-height: 1;
}
.ui-accordion-header {
    background-color: #eee;
    color: #333;
    border: 1px solid #ccc;
    padding: 20px 60px 20px 20px;
    margin: 10px 0 0 0;
    font-weight: 500;
    font-size: 18px;
    transition: 0.5s ease all;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}
.ui-accordion-header::after {
    content: "\f347";
    font: normal 16px/1 'dashicons';
    position: absolute;
    right: 20px;
    top: 50%;
	transform: translate(0, -50%);
	transition: 0.5s ease all;
}
.ui-accordion-header-active::after {
	transform: translate(0, -50%) rotate(180deg);
}
.ui-accordion-header:hover,
.ui-accordion-header-active {
	background-color: #e1e1e1;
	cursor: pointer;
}
.ui-accordion-header:focus {
	outline: none;
}
.ui-accordion-content {
	background-color: #fafafa;
	padding: 20px;
}

.ui-accordion-content img {
	display: block;
	margin: 0 auto;
}

/* Education Videos Pages
---------------------------------------------------------------------------- */
.video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
}
.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.educational-videos-section .flexbox:not(:last-of-type) {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}
.educational-videos-section .flexcol:first-of-type {
	padding: 0 0 20px 0;
}

.article-page .entry-content h2.section-title {
    font-size: 24px;
    margin-bottom: 10px;
}
.references,
.Smallertxt {
	font-size: 14px;
	font-weight: 400;
}
.references a {
	font-weight: 400;
}
.references-cited strong,
.references strong {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}
.sidebar .widget.resource-languages ul,
.map-page .state-list ul {
    column-count: 2;
    column-gap: 15px;
}
.resource-page .site-inner .entry {
    margin-bottom: 30px;
}

/* Our Team Archive
---------------------------------------------------------------------------- */
.post-type-archive-our_team .site-inner h1.archive-title {
    background-color: #4966A8;
    color: white;
    text-align: center;
    padding: 30px;
    font-size: 26px;
}
.post-type-archive-our_team .site-inner .archive-description p {
    text-align: center;
    font-weight: 700;
}
.post-type-archive-our_team .site-inner .entry {
    margin-bottom: 30px;
}
.post-type-archive-our_team .site-inner .entry ul > li {
    margin-bottom: 10px;
}
.post-type-archive-our_team .archive-title {
    text-align: center;
    font-size: 36px;
}
.post-type-archive-our_team .archive-description {
    margin: 0;
    text-align: center;
}
.site-header .wrap .header-widget-area .widget {
    margin: 0;
    display: inline-block;
    vertical-align: top;
}
.site-header .wrap .header-widget-area .widget:last-of-type a {
    padding: 15px;
    font-weight: 700;
    background-color: #298889;
    border: 2px solid #298889;
    border-radius: 5px;
    line-height: 1;
    font-size: 14px;
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    transition: 0.5s ease all;
    border-radius: 5px;
    margin: 0 5px;
    display: block;
}

.site-header .wrap .header-widget-area .widget:last-of-type a:hover {
	background-color: #1d6162;
}

.co-founders .flexbox:not(:last-of-type) {
    margin-bottom: 30px;
}
.co-founders .flexcol:last-of-type {
    padding: 20px 0 0 0;
}

div#myPopup {
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,0.5);
    height: 100%;
    width: 100%;
	opacity: 0;
	transition: 0.3s ease all;
	z-index: -1;
}
div#myPopup.show {
	opacity: 1;
	z-index: 9999;
}
div#myPopup .text {
    background-color: white;
    padding: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    max-width: 960px;
}
.popup-button button {
	cursor: pointer;
}
div#close {
	position: absolute;
	right: -15px;
	top: -15px;
	cursor: pointer;
}
div#close svg {
    font-size: 30px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    padding: 3px;
    border: 2px solid;
}
.popup-button.button {
    margin-top: 20px;
}

/* Corporate Associate Page
---------------------------------------------------------------------------- */

.corporate-associate-page .site-inner .entry .flexbox {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
	align-items: center;
}
.corporate-associate-page .site-inner .entry .flexcol {
	flex-basis: calc(50% - 10px);
	max-width: calc(50% - 10px);
	margin: 5px;
	text-align: center;
}
.corporate-associate-page .site-inner .entry h2.section-title {
    padding-bottom: 5px;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
}
.corporate-associate-page .site-inner .entry-content ul {
	margin: 0;
	padding: 0;
}
.corporate-associate-page .site-inner .entry-content ul > li {
	list-style-type: none;
}
.corporate-associate-page .site-inner .entry-content ul ul {
	margin-left: 20px;
}

.corporate-associate-page .site-inner .entry-content ul > li::before {
    content: '\f345';
    font: normal 18px/1 'dashicons';
    color: #894168;
    display: inline-block;
    font-weight: 700;
	vertical-align: text-top;
	margin-right: 5px;
}
.europe-page.corporate-associate-page .site-inner .entry-content ul > li::before {
	color: #298889;
}

/* Blog Archive
---------------------------------------------------------------------------- */
.blog .site-inner .content .entry,
.news-page .blog-roll .flexcol {
	padding: 0;
	position: relative;
	border-radius: 10px;
	margin: 0 0 20px 0;
}
.news-page .post-date,
.blog .post-date {
	margin-bottom:5px;
}
.news-page .post-date span,
.blog .post-date span{
	font-weight:bold;
}
.news-page .blog-roll .flexcol {
	box-shadow: 0px 2px 5px rgba(0,0,0,0.15);
}
.blog .site-inner .content .entry img,
.news-page .blog-roll .flexcol img {
    border-radius: 10px 10px 0 0;
}
.blog .site-inner .content .entry-content,
.news-page .blog-roll .flexcol .post-info {
	padding: 20px;;
}
.blog .site-inner .content .entry-content .post-excerpt,
.news-page .blog-roll .flexcol .post-excerpt {
    font-size: 15px;
}
.blog .site-inner .content .entry h2.post-title,
.news-page .blog-roll .flexcol h2.post-title {
    font-size: 24px;
    margin-bottom: 10px;
}
.blog .site-inner .content .entry h2.post-title a,
.news-page .blog-roll .flexcol h2.post-title a {
	color: #333;
}

.single-post .site-inner {
    max-width: 960px;
}
.single-post .site-inner .entry {
	padding: 0;
}
.single-post .site-inner .entry-header img {
    width: 100%;
}
.single-post .site-inner .entry-content {
	padding: 20px;
}
.single-post .entry .entry-title {
    text-align: left;
    margin-bottom: 0;
}
.single-post .entry .entry-meta {
    margin-bottom: 20px;
}
.news-page .site-inner .press-releases ul > li,
.news-page .site-inner .featured-articles ul > li {
    margin-bottom: 10px;
}


.bottom-pop-up {
	position: fixed;
    max-width: 960px;
    width: 90%;
    bottom: -150%;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: #3a5084;
    padding: 20px;
    font-size: 14px;
    border-radius: 10px;
    transition: 1s ease all;
    color: white;
    font-weight: 500;
    z-index: 999;
	text-align: center;
	box-shadow: 0 0 20px rgba(51,51,51,0.25);
}
.bottom-pop-up .widget {
    margin: 0;
}
.bottom-pop-up a {
	font-weight: 700;
	color: white;
}
.bottom-pop-up.clicked{
	display:none;
}
.bottom-pop-up a.button {
	background-color: #894168;
	font-weight: 400;
}

.europe-page .newsletter {
    background-color: #298889;
}
.europe-page .bottom-pop-up {
    background-color: #298889;
}
.europe-page .bottom-pop-up a.button {
	background-color: #4966A8;
}

/* Newaletter
---------------------------------------------------------------------------- */
.newsletter {
	background-color: #894168;
    color: white;
    padding: 40px 0;
    text-align: center;
}
.newsletter .widget {
    margin: 0;
}
.newsletter .widget-title {
    font-size: 26px;
    margin-bottom: 20px;
}
.newsletter .gform_wrapper form.gf_simple_horizontal {
	width: 660px;
	margin: 0 auto;
	display: flex;
}
.newsletter .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    padding: 16px;
    margin: 0;
    line-height: 1;
}
.newsletter .gform_wrapper form.gf_simple_horizontal div.gform_body ul.top_label li.gfield {
	padding: 0;
}
.newsletter .gform_wrapper form.gf_simple_horizontal div.gform_body {
    max-width: 100%;
    flex-basis: 80%;
}
.newsletter .gform_wrapper form.gf_simple_horizontal div.gform_footer {
    flex-basis: 20%;
    padding: 0;
}
.newsletter .gform_wrapper form.gf_simple_horizontal .button {
    padding: 20px 40px;
	border-radius: 0;
	width: 100%;
}
/* Search Results Page
---------------------------------------------------------------------------- */
body.search .site-inner .entry {
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.15);
    border-top: none;
	margin: 20px 0;
	padding: 40px;
}
body.search .site-inner .entry h2.entry-title {
    font-size: 24px;
	margin-bottom: 10px;
	text-align: left;
}

.button-section .flexcol a.button {
    display: block;
    border-radius: 10px;
    font-weight: 800;
    line-height: 1.4;
    padding: 25px;
	width: 100%;
	background-color: transparent;
}
.button-section .flexcol {
    margin: 10px 0;
    background-color: #4966a8;
    border-radius: 10px;
    min-height: 94px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	justify-content: center;
	transition: 0.5s ease all;
}
.button-section .flexcol:hover {
	background-color: #3a5084;
}

.site-container .is-highlight {
    color: #fff;
}

.post-type-archive-press_releases .group-year ul,
.post-type-archive-featured_articles .group-year ul,
.post-type-archive-review_articles .group-year ul {
	margin-left: 40px;
}
.post-type-archive-press_releases .group-year ul > li,
.post-type-archive-featured_articles .group-year ul > li,
.post-type-archive-review_articles .group-year ul > li {
	list-style-type: disc;
}
.post-type-archive-press_releases .group-year ul > li a,
.post-type-archive-featured_articles .group-year ul > li a,
.post-type-archive-review_articles .group-year ul > li a {
	font-weight: 700;
}
.group-year:not(:last-of-type) {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
}

.search-form-submit {
	display: none;
}
.head-custom-search {
    transition: 0.5s ease all;
    display: inline-block;
	vertical-align: middle;
	width: 0;
}
.header-icon {
    display: inline-block;
    vertical-align: middle;
}
.header-icon::before {
    content: "\f179";
    font: normal 20px/1 'dashicons';
}

.single-our_team .site-inner .entry .entry-title {
	text-align: left;
	margin-bottom: 20px;
}

/* Slideshow
---------------------------------------------------------------------------- */
.slick-slide {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.slick-slide .image-section {
    min-height: 75vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
}
h2.slide-title {
    text-align: center;
    font-weight: 400;
    font-size: 40px;
    font-family: 'Playfair Display';
}
.slide-content h1,
.slide-content h2,
.slide-content h3,
.slide-content h4 {
    font-weight: 400;
    font-family: 'Playfair Display';
}
.slide-content h3 {
	font-size: 36px;
}
.slick-slide img {
    max-height: 380px;
    width: auto;
    margin: 0 auto;
}

.single-duplicated_pages .entry-header .entry-meta {
    display: none;
}
/* FAQ Button
---------------------------------------------------------------------------- */
.entry-content a.button.faq-button{
	font-weight:700;
}
/* Media Queries
---------------------------------------------------------------------------- */

@media only screen and (max-width: 1340px) {
	.wrap {
		padding: 0 5%;
	}
}
@media only screen and (min-width: 480px) {

	table {
		table-layout: auto;
		word-break: normal;
	}

}
@media only screen and (min-width: 660px) {
	.child-pages .flexbox,
	.ui-tabs-vertical,
	.flexible-layout-quote .flexbox,
	.blog .site-inner .content,
	.news-page .blog-roll .flexbox,
	.resource-page .site-inner .entry .flexbox,
	.button-section .flexbox {
		display: -webkit-box;
		display: -moz-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
	}
	/*.button-section .flexbox,
	.child-pages .flexbox {
		justify-content: center;
	}*/
	.child-pages .flexcol {
		flex-basis: calc(25% - 20px);
		max-width: calc(25% - 20px);
		margin: 10px;
	}

	body:not(.page-id-323) .child-pages .flexcol,
	.blog .site-inner .content .entry,
	.news-page .blog-roll .flexcol {
		flex-basis: calc(50% - 20px);
		max-width: calc(50% - 20px);
		margin: 10px;
	}
	.blog .archive-description {
		flex-basis: 100%;
		max-width: 100%;
	}
	.resource-page .site-inner .entry .flexbox,
	.single-resources .site-inner .entry .flexbox  {
		align-items: center;
	}
	.resource-page .site-inner .entry .flexcol:first-of-type,
	.single-resources .site-inner .entry .flexcol:first-of-type {
		flex: 2;
		padding: 0 20px 0 0;
	}
	.resource-page .site-inner .entry .flexcol:last-of-type,
	.single-resources .site-inner .entry .flexcol:last-of-type {
		text-align: right;
	}
	.corporate-associate-page .site-inner .entry .flexcol {
		flex-basis: calc(33.3% - 10px);
		max-width: calc(33.3% - 10px);
	}
	.ui-tabs-vertical .ui-tabs-nav { 
		flex-basis: 25%;
	}
	.ui-tabs-vertical .ui-tabs-panel {
		flex-basis: 75%;
	}
	div#table-nav {
		position: sticky;
		width: 100%;
		top: 200px;
		z-index: 999;
	}
	.news-page .site-inner .press-releases ul,
	.news-page .site-inner .featured-articles ul  {
		column-count: 2;
		column-gap: 30px;
	}
	.child-pages .flexcol a.button {
		height: 100px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
	}
	.button-section .flexcol {
		flex-basis: calc(50% - 10px);
		margin: 5px;
	}
	
	.corporate-associate-page .site-inner .entry-content ul {
		column-count: 2;
		column-gap: 30px;
	}
	.corporate-associate-page .site-inner .entry-content ul ul {
		column-count: auto;
		column-gap: 0;
	}
	.news-page .site-inner .blog-roll h3,
	.news-page .site-inner .press-releases h3,
	.news-page .site-inner .review-articles h3 {
		display: inline-block;
	}
	.news-page .site-inner .blog-roll a.more-posts,
	.news-page .site-inner .press-releases a.more-posts,
	.news-page .site-inner .review-articles a.more-posts {
		text-transform: uppercase;
		float: right;
	}
}

@media only screen and (min-width: 960px) and (max-width: 1340px) {
	.site-inner {
		padding: 40px 5%;
	}
}

@media only screen and (min-width: 660px) and (max-width: 960px) {
	.child-pages .flexcol:nth-of-type(odd),
	body.search .site-inner .entry:nth-of-type(odd) {
		margin-left: 0;
	}
	.child-pages .flexcol:nth-of-type(even),
	body.search .site-inner .entry:nth-of-type(even){
		margin-right: 0;
	}
}

@media only screen and (max-width: 960px) {
	.site-inner {
		padding: 0;
	}
	.blog .site-inner {
		padding: 20px 5%;
	}
	.archive-description {
		padding: 20px 5%;
		margin: 0;
	}
	.table,
	.table-section {
		overflow-x: scroll;
	}
	.table-page .table .flexcol {
		min-width: 300px;
	}
	.breadcrumb {
		margin: 30px 0;
		padding: 0 5%;
		text-align: center;
	}
	/*body.content-sidebar .content-sidebar-wrap {
		display: flex;
		flex-wrap: wrap;
	}
	body.content-sidebar .content-sidebar-wrap .content {
		float: none;
		width: 100%;
		flex-basis: 100%;
		order: 2;
	}
	body.content-sidebar .content-sidebar-wrap .sidebar {
		flex-basis: 100%;
		float: none;
		width: auto;
		order: 1;
	}*/
	.sidebar .widget {
		margin: 0;
		box-shadow: none;
		border-radius: 0;
		border-top: 1px solid #ccc;
	}
	.entry .entry-title {
		font-size: 30px;
		margin-bottom: 20px;
	}
	.entry-content ol, .entry-content ul {
		padding-left: 5%;
	}

	body {
		margin: 52px 0 44px;
	}
	.site-header .widget-area.header-widget-area {
		float: right;
		margin-top: 15px;
	}
	.site-header .wrap .header-widget-area .widget:nth-of-type(2) ul > li:first-of-type {
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 99;
		width: 100%;
		text-align: center;
		max-width: 50%;
	}
	.site-header .wrap .header-widget-area .widget:first-of-type ul {
		display: flex;
		flex-wrap: wrap;
	}
	.site-header .wrap .header-widget-area .widget:first-of-type ul > li:last-of-type {
		flex-basis: 100%;
		max-width: 100%;
		float: left;
		text-align: left;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 999;
	}
	.admin-bar .site-header .wrap .header-widget-area .widget:first-of-type ul > li:last-of-type {
		top: 46px;
	}
	.site-header .wrap .header-widget-area .widget:first-of-type ul > li:last-of-type svg.search-icon {
		background: #4966A8;
		padding: 10px;
		border-radius: 50%;
		width: 40px;
		height: 40px;
		font-size: 40px;
	}
	.site-header .wrap .header-widget-area .widget:first-of-type ul > li:last-of-type svg.search-icon path.search-icon-path {
		fill: #fff;
	}
	.site-header .wrap .header-widget-area ul > li a {
		background-color: #894168;
		color: white;
		font-weight: 700;
		text-transform: uppercase;
		font-size: 12px;
	}
	.site-header .wrap .header-widget-area ul > li:first-of-type a {
		border-right: 1px solid white;
	}
	.site-header .wrap .header-widget-area .widget:first-of-type ul > li:last-of-type a {
		padding: 0;
	}
	.site-header .wrap .header-widget-area .widget:first-of-type ul > li:last-of-type form {
		display: block;
		top: 0 !important;
		bottom: 0;
		left: 0;
		right: 0;
		min-width: 100% !important;
	}
	.site-header .wrap .header-widget-area .widget:last-of-type a {
		position: fixed;
		bottom: 0;
		right: 0;
		width: 50%;
		border-radius: 0;
		padding: 15px 0;
		margin: 0;
		z-index: 999;
		border: none;
		font-size: 12px
	}
	.europe-page .site-header .wrap .header-widget-area ul > li a,
	.europe-page .site-header .wrap .header-widget-area .widget:last-of-type a {
		background-color: #298889;
	}
	.site-header .wrap .header-widget-area .widget:first-of-type ul > li:last-of-type .is-form-style button.is-search-submit {
		height: 44px;
	}
	.site-header .wrap .header-widget-area .widget:first-of-type ul > li:last-of-type form .is-search-icon {
		height: 44px;
		padding: 0 !important;
	}
	.site-header .wrap .header-widget-area .widget:first-of-type ul > li:last-of-type form .is-search-icon svg {
		width: 36px;
		height: 44px;
		padding: 5px;
	}
	.site-header .wrap .header-widget-area .widget:first-of-type ul > li:last-of-type form input {
		padding: 21px;
	}
	.site-header .wrap .header-widget-area .widget:last-of-type {
		float: right;
		padding: 20px 0;
	}
	.site-header {
		background-color: white;
		padding: 10px 0;
	}
	.nav-primary {
		background-color: white;
		border-bottom: 1px solid #ccc;
	}
	.nav-primary .wrap,
	.nav-europe .wrap  {
		padding: 0 5%;
	}

	.flexible-layout-quote .flexcol h2.page-title a, 
	.child-pages .flexcol .child-page-title a {
		font-size: 20px;
	}
	
	.flexible-layout .widget-title {
		font-size: 26px;
	}
	.flexible-layout-slider h2 {
		font-size: 26px !important;
		line-height: 1 !important;
		margin-bottom: 20px !important;
	}
	.flexible-layout-slider p {
		font-size: 16px !important;
	}
	h2 {
		font-size: 24px;
	}
	.flexible-layout {
		padding: 40px 0;
	}
	.flexible-layout-slider {
		padding: 0;
	}
	.europe-page .menu-toggle,
	.europe-page .site-header .wrap .header-widget-area ul > li a {
		background-color: #298889;
	}
	.dekstop-states {
		display: none;
	}
	.site-header .wrap .header-widget-area .widget.search-bar {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 9999;
	}
	.admin-bar .site-header .wrap .header-widget-area .widget.search-bar {
		top: 46px;
	}
	.header-icon {
		position: absolute;
		right: 5%;
		top: 50%;
		transform: translate(0, -50%);
	}
	.head-custom-search {
		width: 100% !important;
	}
	div#myPopup .text {
		top: 15vh;
		left: 5%;
		width: 90%;
		height: 70vh;
		transform: translate(0);
		overflow-y: scroll;
	}
	
}
@media only screen and (max-width: 480px) {
	.entry .entry-title {
		font-size: 24px;
	}
	.faq-page .entry h2.faq-section-title {
		font-size: 20px;
	}
	.ui-accordion-header {
		font-size: 16px;
		padding: 15px 5%;
	}
	.ui-accordion-content {
		padding: 10px 5%;
		font-size: 15px;
	}
	table {
		width: auto;
		overflow-x: scroll;
		display: block;
	}
}

@media only screen and (max-width: 660px) {
	.ui-tabs-vertical .ui-tabs-nav li {
		border-right: 1px solid #ccc;
	}
	.ui-tabs-vertical .ui-tabs-panel {
		border-top: none;
	}

	div#table-nav {
		position: sticky;
		left: 0;
		top: 50%;
		z-index: 9;
	}
	.site-footer {
		font-size: 12px;
	}
	.flexible-layout-quote blockquote {
		display: flex;
		align-items: flex-start;
		font-size: 24px;
		font-weight: 700;
		line-height: 1.4;
		font-style: normal;
	}
	.flexible-layout-quote blockquote {
		font-size: 20px;
	}
	.resource-page .site-inner .entry .flexcol,
	.single-resources .site-inner .entry .flexcol {
		text-align: center;
	}
	body.search .site-inner {
		padding: 0 5%;
	}
	.child-pages .flexcol a.button {
		padding: 30px;
	}
	.entry-content a.button {
		display: block;
		margin: 5px 0;
	}
}

@media only screen and (min-width: 960px) {
	.flexbox,
	.single-our_team .site-inner .entry{
		display: -webkit-box;
		display: -moz-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
	}
	.flexcol {
		flex: 1;
	}
	.single-our_team .site-inner .entry-header {
		flex: 1;
	}
	.single-our_team .site-inner .entry-header .headshot {
		padding-right: 30px;
	}
	.single-our_team .site-inner .entry-content {
		flex: 3;
	}
	.header-icon.close::before {
		content: "";
	}

	.co-founders .flexbox {
		align-items: center;
	}
	.post-type-archive-press_releases .group-year ul {
		column-count: 2;
		column-gap: 30px;
	}

	.flexible-layout-featured-pages .flexcol,
	.flexible-layout-squares .flexcol,
	.flexible-layout-blog .flexcol {
		flex-basis: calc(50% - 20px);
		max-width: calc(50% - 20px);
		margin: 20px;
	}
	.flexible-layout-featured-pages .flexcol:nth-of-type(odd),
	.flexible-layout-squares .flexcol:nth-of-type(odd),
	.flexible-layout-blog .flexcol:nth-of-type(odd) {
		margin-left: 0;
	}
	.flexible-layout-featured-pages .flexcol:nth-of-type(even),
	.flexible-layout-squares .flexcol:nth-of-type(even),
	.flexible-layout-blog .flexcol:nth-of-type(even) {
		margin-right: 0;
	}	
	
	.educational-videos-section .flexbox {
		align-items: center;
	}
	.educational-videos-section .flexcol:first-of-type {
		padding: 0 20px 0 0;
	}
	.educational-videos-section .flexcol:last-of-type {
		padding: 0 0 0 20px;
	}

	.corporate-associate-page .site-inner .entry .flexcol {
		flex-basis: calc(25% - 10px);
		max-width: calc(25% - 10px);
	}

	table.tablepress th.column-1, 
	table.tablepress td.column-1 {
		position: sticky;
		top: 0;
		left: 0;
		flex: 0.5;
	}

	.blog .site-inner .content .entry,
	.news-page .blog-roll .flexcol {
		flex-basis: calc(33.3% - 20px);
		max-width: calc(33.3% - 20px);
	}
	body:not(.page-id-323) .child-pages .flexcol {
		flex-basis: calc(33.3% - 15px);
		max-width: calc(33.3% - 15px);
	}
	body:not(.page-id-323) .child-pages .flexcol:nth-of-type(3n+1) {
		margin-left: 0;
	}
	body:not(.page-id-323) .child-pages .flexcol:nth-of-type(3n) {
		margin-right: 0;
	}

	.entry {
		box-shadow: 0px 2px 5px rgba(0,0,0,0.15);
		border-radius: 10px;
		border-top: none;
	}
	.co-founders .flexcol:last-of-type {
		flex: 5;
		padding: 0 0 0 20px;
	}
	.sidebar .contact-info {
		margin-top: 64px;
	}
	.single-post .site-inner .entry-header img {
		width: 100%;
		border-radius: 10px 10px 0 0;
	}
	.site-header .wrap .header-widget-area ul {
		display: flex;
	}
	/*.button-section .flexcol {
		flex-basis: calc(33.3% - 10px);
	}*/
	.mobile-states {
		display: none;
	}

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

	.site-header {
		position: sticky;
		top: 0;
		z-index: 9999;
		width: 100%;
		transition: 0.5s ease all;
	}

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

	.site-header.shrink {
		box-shadow: 0 0px 15px rgba(51,51,51,0.15);
	}

	/*.jsmt-fixed-header.shrink {
		transform: translateY(-100%);
	}

	.jsmt-fixed-header.shrink.appear {
		transform: translateY(0);
	}*/

	.site-header {
		background-color: #fff;
	}
	.site-header .wrap {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.site-header .wrap .title-area, 
	.site-header .wrap .header-widget-area {
		flex: 1;
	}
	.site-header .wrap .header-widget-area {
		text-align: right;
	}
	/* 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: 3px;
		color: #fff;
		font-weight: 600;
		margin-left: 15px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.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: 315px;
	}

	.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 .sub-menu {
		margin: -46px 0 0 179px;
	}

	.genesis-nav-menu .menu-item.menu-button a {
		background-color: #4966A8;
		color: white;
		width: 150px;
		text-align: center;
		text-transform: uppercase;
		font-weight: 700;
		transition: 0.5s ease all;
		border-radius: 5px;
		margin: 0 5px;
		border: 2px solid #4966A8;
	}
	.genesis-nav-menu .menu-item.menu-button.border a {
		background-color: white;
		color: #4966A8;
		border: 2px solid #4966A8;
	}
	.genesis-nav-menu .menu-item.menu-button:hover a {
		opacity: 1;
		background-color: #3a5084;
		border-color: #3a5084;
		color: white;
	}

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

	.genesis-responsive-menu {
		display: block;
	}

	.menu-toggle,
	.sub-menu-toggle {
		display: none;
		visibility: hidden;
	}

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

	.nav-primary,
	.nav-europe {
		text-align: center;
		background-color: #894168;
		color: white;
	}

	.nav-europe {
		background-color: #298889;
	}

	.nav-primary .genesis-nav-menu a,
	.nav-primary .genesis-nav-menu a:focus, 
	.nav-primary .genesis-nav-menu a:hover, 
	.nav-primary .genesis-nav-menu .current-menu-item > a,
	.nav-europe .genesis-nav-menu a,
	.nav-europe .genesis-nav-menu a:focus, 
	.nav-europe .genesis-nav-menu a:hover, 
	.nav-europe .genesis-nav-menu .current-menu-item > a {
		padding: 20px 15px;
		color: white;
		transition: 0.5s ease all;
		position: relative;
	}
	.nav-primary .genesis-nav-menu .menu-item:not(:last-of-type) > a::after,
	.nav-europe .genesis-nav-menu .menu-item:not(:last-of-type) > a::after {
		content: '';
		position: absolute;
		height: 60%;
		width: 1px;
		right: 0;
		top: 20%;
		background-color: #ac5182;
	}
	.nav-europe .genesis-nav-menu a:focus, 
	.nav-europe .genesis-nav-menu a:hover, 
	.nav-europe .genesis-nav-menu .current-menu-item > a,
	.nav-europe .genesis-nav-menu .menu-item:not(:last-of-type) > a::after {
		background-color: #529892;
	}
	
	.nav-primary .genesis-nav-menu a:focus, 
	.nav-primary .genesis-nav-menu a:hover, 
	.nav-primary .genesis-nav-menu .current-menu-item > a {
		background-color: #894168;
	}

	.nav-primary .genesis-nav-menu .sub-menu a,
	.nav-primary .genesis-nav-menu .sub-menu a:hover,
	.nav-primary .genesis-nav-menu .sub-menu .current-menu-item > a:focus, 
	.nav-primary .genesis-nav-menu .sub-menu .current-menu-item > a:hover,
	.nav-europe .genesis-nav-menu .sub-menu a,
	.nav-europe .genesis-nav-menu .sub-menu a:hover,
	.nav-europe .genesis-nav-menu .sub-menu .current-menu-item > a:focus, 
	.nav-europe .genesis-nav-menu .sub-menu .current-menu-item > a:hover {
		border: 1px solid #eee;
		border-top: 0;
		padding: 15px;
		color: #894168;
		text-align: left;
		background-color: white;
		font-weight: 500;
	}
	.nav-europe .genesis-nav-menu .sub-menu a,
	.nav-europe .genesis-nav-menu .sub-menu a:hover,
	.nav-europe .genesis-nav-menu .sub-menu .current-menu-item > a:focus, 
	.nav-europe .genesis-nav-menu .sub-menu .current-menu-item > a:hover {
		color: #298889;
	}
	.nav-primary .genesis-nav-menu .sub-menu a::after,
	.nav-europe .genesis-nav-menu .sub-menu a::after {
		display: none;
	}

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

	.site-inner,
	.wrap  {
		max-width: 1280px;
		margin: 0 auto;
	}

	.flexible-layout-slider .n2-ss-slider .n2-ss-layer-content .n2-ss-layer-col {
		max-width: 1280px;
		display: block;
		margin: 0 auto !important;
		width: 100%;
	}

	.site-header .wrap {
		max-width: 1280px;
	}

	.nav-primary .wrap,
	.nav-europe .wrap {
		max-width: 100%;
	}

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

	.content {
		float: left;
		width: 65%;
	}

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

	.full-width-content .content {
		float: none;
		margin-left: auto;
		margin-right: auto;
		width: 100%;
	}

	body.content-sidebar .content-sidebar-wrap {
		display: -webkit-box;
		display: -moz-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
	}
	body.content-sidebar .content-sidebar-wrap .content {
		float: none;
		width: 100%;
		flex-basis: 70%;
		max-width: 70%;
		padding-right: 30px;
	}
	body.content-sidebar .content-sidebar-wrap .sidebar {
		flex-basis: 30%;
		max-width: 30%;
		float: none;
		width: 100%;
	}
	.sticky-sidebar {
		position: sticky;
		top: 90px;
	}
	.admin-bar .sticky-sidebar {
		top: 122px;
	}

	/* Sidebar
	--------------------------------------------- */

	.sidebar {
		float: right;
		width: 30%;
	}

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

	/* Author Box
	--------------------------------------------- */

	.author-box {
		background-color: #f5f5f5;
		padding: 30px;
	}

	/* After Entry
	--------------------------------------------- */

	.after-entry {
		padding: 40px 60px;
	}

	.after-entry .enews {
		padding-left: 30px;
		padding-right: 30px;
	}

	/* 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-comments,
	.entry-pings {
		margin-bottom: 30px;
	}

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

	.footer-widgets .wrap {
		max-width: 1280px;
	}

	.footer-widget-area {
		float: left;
		margin-bottom: 0;
		width: calc(100% / 3);
	}

}

/*@media only screen and (min-width: 1280px) {
	.button-section .flexcol {
		flex-basis: calc(25% - 10px);
	}
}*/

/* 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% ;
	}

	@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;
	}

}
