/*
Theme Name: eReserve 2021
Description: eReserve 2021
Author: NTech Media
Author URI: http://ntechmedia.com


	Base Theme Name: HTML5 Blank
	Base Theme URI: http://html5blank.com
	Base Description: HTML5 Blank WordPress Theme
	Base Version: 1.4.2
	Base Author: Todd Motto (@toddmotto)
	Base Author URI: http://toddmotto.com
	Base Tags: Blank, HTML5, CSS3
	
	Base License: MIT
	Base License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
/* Disabling due to issues, and because HTML5 Boilerplate made the same change */
/* for similar reasons 4 years ago and still hasn't added it back in yet */
/* https://github.com/h5bp/html5-boilerplate/commit/0d7f8d775ab4ab171c6372f992d506088ca5d3ed */
/* http://aestheticallyloyal.com/public/optimize-legibility/ */
/*	text-rendering:optimizeLegibility; */
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font: 400 16px/1.4 'Open Sans', Helvetica, Arial, sans-serif;
	color: #231f1f;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
	display: flex;
}
img {
	max-width:100%;
	height: auto;
	vertical-align:bottom;
}
a {
	color: #38852a;
	text-decoration: underline;
}
a:hover {
	color:#38852a;
	text-decoration: none;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	display: flex;
	margin: 0 auto;
	position: relative;
/*	max-width: 1280px;
	padding: 0px 20px;*/
	min-height: calc(100vh - 333px);
	flex-direction: column;
}
/* header */
.header_wrapper {
	position: relative;
}


.header_shadowbar {
	display: block;
	width: 100%;
	max-width: 1280px;
	margin: 0px auto;
	height: 0px;
	box-shadow: 0px 0px 100px 125px rgba(255,255,255,0.75);
	position: relative;
	z-index: 5;
}

.home .header_shadowbar {
	display: none;
}

.header_cover {
	overflow: unset;
}

.header_cover .wp-block-cover__inner-container {
	position: relative;
	z-index: 6;
}

.header_inset {
	position: relative;
	top: 70px;
}

.header {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0px auto;
	max-width: 1280px;
	width: 100%;
	padding: 20px 40px 0px;
	z-index: 11;
}

.home_banner {
	max-height: 600px;
}

.home_banner_wrap {
	padding: 100px 0px 40px;
	background-size: cover;
	background-position: center bottom;
	min-height: 600px;
}

.innner_banner_wrap {
	padding: 100px 0px 40px;
	background-size: cover;
	background-position: center top;
	min-height: 240px;
}

.home_banner_content {
	max-width: 1280px;
	margin: 0px auto;
	padding: 0px 40px;
	display: flex;
	position: relative;
}

.banner_content_wrap {
	position: relative;
	z-index: 10;
	font-size: 18px;
	width: 100%;
}

.banner_content_wrap h4 {
	font-size: 18px;
}

.banner_content_wrap .wp-block-columns {
	align-items: center;
}

/* logo */
.logo {
	
}
.logo-img {
	max-width: 300px;
}
/* nav */
.nav {
	margin-left: auto;
}

.nav ul {
	display: flex;
	list-style: none;
	padding: 10px;
	margin: 0px;
	justify-content: space-between;
	background: rgba(56,133,42,0.1);
	border-radius: 30px;
}

.nav ul > li {
	margin-right: 5px;
}

.nav ul > li:last-child {
	margin-right: 0px;
}

.nav li a {
	display: block;
	padding: 5px 20px;
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	color: #231f1f;
}

.nav li:hover a,
.nav li.current_page_item a {
	background: rgb(57,125,61);
	background: linear-gradient(180deg, rgba(57,125,61,1) 0%, rgba(39,106,43,1) 100%);
	color: #FFFFFF;
	border-radius: 30px;
/*	text-transform: lowercase;*/
}



.mobile_nav_bar {
	display: none;
	cursor: pointer;
}

.mobile_nav_bar .touchbar {
	flex: 1;
	position: relative;
	z-index: 3;
}

#mobile_nav_icon {
	width: 30px;
	height: 30px;
	position: relative;
	z-index: 3;
	margin: 20px 20px 10px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}

#mobile_nav_icon span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #333333;
	border-radius: 3px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

.mobile_nav_bar:hover #mobile_nav_icon span {
	background: #38852a;
}


#mobile_nav_icon span:nth-child(1) {
	top: 3px;
}

#mobile_nav_icon span:nth-child(2),#mobile_nav_icon span:nth-child(3) {
	top: 12px;
}

#mobile_nav_icon span:nth-child(4) {
	top: 21px;
}

#mobile_nav_icon.open span:nth-child(1) {
	top: 12px;
	width: 0%;
	left: 50%;
}

#mobile_nav_icon.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

#mobile_nav_icon.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#mobile_nav_icon.open span:nth-child(4) {
	top: 12px;
	width: 0%;
	left: 50%;
}

.mobilenav {
	display:none;
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	background: rgba(255,255,255,0.95);
	width: 100%;
	padding-top: 0px;
	z-index: 2;
	padding: 20px 40px 0px;
}

.mobilenav ul {
	margin: 0px auto;
	padding: 10px 0px 20px 0px;
}

.mobilenav ul li {
	position: relative;
}

.mobilenav ul li a {
	display: block;
	padding: 3px 0px 3px 10px;
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	color: #231f1f;	color: #333333;
	white-space: nowrap;
	text-decoration: none;
	border-left: 3px solid rgba(255,255,255,0);
}


.mobilenav ul li:hover a {
	text-decoration: none;
	border-left: 3px solid #38852a;
}

.mobilenav ul.sub-menu {
	display: none;
}

.touch {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

@media screen and (max-width:960px){
	.mobile_nav_bar {
		align-self: center;
		flex-grow: 1;
		display: flex;
		justify-content: flex-end;
	}
	
	.header {
		display: flex;
	}
	
	.nav {
		display: none;
	}
}


.header_overlap .menu {
	max-width: 1280px;
	margin: -70px auto 0px;
	padding: 0px 20px;
	position: relative;
	z-index: 10;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	column-gap: 14px;
	list-style: none;
/*	display: none;*/
}

.header_overlap .menu li a {
	height: 70px;
	display: flex;
	align-items: center;
	color: #FFFFFF;
	font-family: 'Raleway', sans-serif;
	font-weight: 700;
	font-size: 18px;
	text-decoration: none;
	padding: 0px 25px;
	transition: 0.5s all;
}
/*
.header_overlap .menu li:hover a {
	height: 90px;
	margin-top: -20px;
}
*/

.header_overlap .menu li a i {
	margin-left: auto;
	background: #231f1f;
	font-size: 10px;
	font-weight: 400;
	font-style: normal;
	color: #FFFFFF;
	display: inline-block;
	padding: 3px 5px;
	border-radius: 10px;
}

.header_overlap .menu li:hover a i {
	font-size: 0px;
}

.header_overlap .menu li:hover a i::after {
	content: '\f063';
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	font-size: 10px;
	padding: 0px 10px;
}

.header_overlap .menu li:nth-child(1) {
	background: rgba(56,133,42,0.8);
}

.header_overlap .menu li:nth-child(1):hover {
        background: rgba(56,133,42,1);
}

.header_overlap .menu li:nth-child(1) a::before {
	content: '\f0ca';
	font-family: "Font Awesome 5 Pro";
	padding-right: 10px;
}

.header_overlap .menu li:nth-child(2) {
	background: rgba(221,126,63,0.8);
}

.header_overlap .menu li:nth-child(2):hover {
        background: rgba(221,126,63,1);
}

.header_overlap .menu li:nth-child(2) a::before {
	content: '\f5db';
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	padding-right: 10px;
}

.header_overlap .menu li:nth-child(3) {
	background: rgba(35,31,31,0.8);
}

.header_overlap .menu li:nth-child(3):hover {
        background: rgba(35,31,31,1);
}

.header_overlap .menu li:nth-child(3) a::before {
	content: '\f390';
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	padding-right: 10px;
}

.header_overlap .menu li:nth-child(4) {
	background: rgba(102,102,102,0.8);
}

.header_overlap .menu li:nth-child(4):hover {
        background: rgba(102,102,102,1);
}


.header_overlap .menu li:nth-child(4) a::before {
	content: '\f1f9';
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	padding-right: 10px;
}

.widget_trial {
	background: #38852a url(img/green_overlay.png) center / cover;
}

.widget_trial .wp-block-columns {
	max-width: 1280px;
	margin: 0px auto;
	padding: 20px 20px;
	align-items: center;
	color: #FFFFFF;
}

/* main content */
section[role=main] {
	display: block;
	width: 100%
}
/* sidebar */
.sidebar {
	display: block;
}

.sidebar-widget {
	min-width: 350px;
}
/* footer */
.footer {
	display: block;
	margin: 0px auto;
}

.footer .header_overlap {
	display: none;
}

.footer_widgets {
	background: #1c1e20 url(img/footer_overlay.png) no-repeat center left / cover;
	color: #929597;
}

.footer_widgets a {
	color: #FFFFFF;
	text-decoration: none;
}

.footer_widgets a:hover {
	text-decoration: underline;
}


.footer_widgets h3 {
	border-bottom: 3px solid #929597;
}

.footer_widgets .sidebar-widget {
	max-width: 1280px;
	margin: 0px auto;
	padding: 40px 20px 30px;
	display: grid;
	column-gap: 100px;
	grid-template-columns: 25% 1fr 20% 15%;
}

.social_icon {
	font-size: 28px;
}

.footer .menu {
	list-style: none;
	padding: 0px;
}

.footer .copyright {
	background: #000000;
}

.footer .copyright > div {
	max-width: 1280px;
	margin: 0px auto;
	padding: 10px 20px;
	font-size: 12px;
	color: #89949d;
}

.footer .copyright a {
	color: #FFFFFF;
	text-decoration: none;
}

.footer .copyright a:hover {
	text-decoration: underline;
}

.post-edit-link,
.post-edit-link:hover {
	position: absolute;
    background: #231f1f;
	color: #FFFFFF;
    padding: 5px;
}

h1 {
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	font-size: 36px;
}

h1 strong {
	font-weight: 500;
}

h2 {
	font-size: 28px;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	margin-top: 0px;
}

h3 {
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
}


h4 {
	font-size: 24px;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	margin-top: 0px;
}

.montserrat {
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	font-size: 28px;
}

.montserrat strong {
	font-weight: 500;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/

.has-eresgreen-color { color: #38852a; }
.has-eresorange-color { color: #f78031; }
.has-eresred-color { color: #dd342b; }
.has-eresblack-color { color: #231f1f; }
.has-ereswhite-color { color: #FFFFFF; }
.has-eresgrey-color { color: #666666; }

.wp-block-button.is-style-black_button .wp-block-button__link { background: #231f1f; }
.wp-block-button.is-style-orange_button .wp-block-button__link { background: #f78031; }
.wp-block-button.is-style-green_button .wp-block-button__link { background: rgb(57,125,61);
background: linear-gradient(180deg, rgba(57,125,61,1) 0%, rgba(39,106,43,1) 100%); }
.wp-block-button.is-style-red_button .wp-block-button__link { background: rgb(221,52,43);
background: linear-gradient(0deg, rgba(221,52,43,1) 0%, rgba(248,74,49,1) 100%); }

.wp-block-button.is-style-green_button .wp-block-button__link:hover {
	color: #FFFFFF;
}

.wp-block-button.is-style-red_button:hover .wp-block-button__link,
.group_button_red .popupaoc-button:hover { background: rgb(221,52,43);
background: linear-gradient(180deg, rgba(221,52,43,1) 0%, rgba(248,74,49,1) 100%); }

.wp-block-button.is-style-green_button:hover .wp-block-button__link { background: rgb(57,125,61);
background: linear-gradient(0deg, rgba(57,125,61,1) 0%, rgba(39,106,43,1) 100%); }

.wp-block-button.is-style-black_button:hover .wp-block-button__link,
.group_button_black .popupaoc-button:hover { background: rgb(35,31,31);
background: linear-gradient(180deg, rgba(35,31,31,1) 0%, rgba(55,51,51,1) 100%); }

.wp-block-button.is-style-greentext_button  .wp-block-button__link { 
	color: #38852a;
	border: 1px solid #dddddd;
	background: rgb(229,226,226);
	background: linear-gradient(0deg, rgba(229,226,226,1) 0%, rgba(254,254,254,1) 100%);
}
.wp-block-button.is-style-greentext_button:hover  .wp-block-button__link {
	color: #FFFFFF;
	background: #38852a;
	border-color: #38852a;
}

.wp-block-button.is-style-orangetext_button  .wp-block-button__link { 
	color: #f78031;
	border: 1px solid #dddddd;
	background: rgb(229,226,226);
	background: linear-gradient(0deg, rgba(229,226,226,1) 0%, rgba(254,254,254,1) 100%);
}
.wp-block-button.is-style-orangetext_button:hover  .wp-block-button__link {
	color: #FFFFFF;
	background: #f78031;
	border-color: #f78031;
}

.wp-block-button.is-style-blacktext_button  .wp-block-button__link { 
	color: #231f1f;
	border: 1px solid #dddddd;
	background: rgb(229,226,226);
	background: linear-gradient(0deg, rgba(229,226,226,1) 0%, rgba(254,254,254,1) 100%);
}
.wp-block-button.is-style-blacktext_button:hover  .wp-block-button__link {
	color: #FFFFFF;
	background: #231f1f;
	border-color: #231f1f;
}

.wp-block-button.is-style-greytext_button  .wp-block-button__link { 
	color: #666666;
	border: 1px solid #dddddd;
	background: rgb(229,226,226);
	background: linear-gradient(0deg, rgba(229,226,226,1) 0%, rgba(254,254,254,1) 100%);
}
.wp-block-button.is-style-greytext_button:hover  .wp-block-button__link {
	color: #FFFFFF;
	background: #666666;
	border-color: #666666;
}

.wp-block-button.is-style-greentext_button,
.wp-block-button.is-style-orangetext_button,
.wp-block-button.is-style-blacktext_button,
.wp-block-button.is-style-greytext_button {
	font-size: 12px;
	font-family: 'Raleway', sans-serif;
	font-weight: 700px;
}

.wp-block-columns,
.wp-block-image.close {
	margin-bottom: 0px;
}

.icon_list a::after {
	content: '\f0ca';
	font-family: "Font Awesome 5 Pro";
	padding-left: 10px;
}

.icon_books a::after {
	content: '\f5db';
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	padding-left: 10px;
}

.icon_online a::after {
	content: '\f390';
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	padding-left: 10px;
}

.icon_copyright a::after {
	content: '\f1f9';
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	padding-left: 10px;
}


.wp-block-buttons.alignright,
.wp-block-buttons.alignright .wp-block-button {
	margin: 0px;
}

.wp-block-button.is-style-red_button,
.wp-block-button.is-style-green_button {
	font-size: 18px;
	font-family: 'Raleway', sans-serif;
	text-transform: lowercase;
	text-shadow: 5px 5px 5px rgba(0,0,0,0.13);
}

.wp-block-button.is-style-red_button:hover,
.wp-block-button.is-style-green_button:hover {
	text-shadow: 1px 1px 5px rgba(0,0,0,0.53);
}

.wp-block-button.icon_arrow a::after {
	content: '\f04b';
	font-family: "Font Awesome 5 Pro";
	font-size: 14px;
	font-weight: 900;
	border: 2px solid #FFFFFF;
	border-radius: 20px;
	margin-left: 15px;
	padding: 2px 6px;
	display: inline-block;
}

.wp-block-button.icon_download a::after {
	content: '\f019';
	font-family: "Font Awesome 5 Pro";
	font-size: 20px;
	font-weight: 400;
	margin-left: 15px;
	padding: 2px 6px;
	display: inline-block;
}

.wp-block-group.is-style-group_grid {
	background: #c5d0cf;
}

.wp-block-group.is-style-group_grid > .wp-block-group__inner-container {
	display: grid;
	row-gap: 20px;
}

.wp-block-group.is-style-group_grid .wp-block-group__inner-container .wp-block-group:nth-child(odd) {
	background: rgb(222,228,234);
	background: linear-gradient(90deg, rgba(222,228,234,1) 0%, rgba(255,255,255,1) 100%);
	padding: 40px 0px;
}

.wp-block-group.is-style-group_grid .wp-block-group__inner-container .wp-block-group:nth-child(even) {
	background: rgb(222,228,234);
	background: linear-gradient(270deg, rgba(222,228,234,1) 0%, rgba(255,255,255,1) 100%);
	padding: 40px 0px;
}

.wp-block-group.is-style-group_centered > .wp-block-group__inner-container {
	max-width: 1280px;
	margin: 0px auto;
	padding: 0px 40px;
}

.section_nav {
	margin-bottom: 50px;
}

.col_cover {
	margin-bottom: 0px;
	background: rgb(222,228,234);
	background: linear-gradient(90deg, rgba(222,228,234,1) 50%, rgba(255,255,255,1) 100%);
}

.col_cover .wp-block-cover {
	height: 100%;
}

ul.is-style-circle_list {
	list-style: none;
	padding: 0px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	column-gap: 10px;
}

ul.is-style-circle_list li {
	background: #FFFFFF;
	border: 1px solid #eeeeee;
	border-radius: 150px;
	height: 240px;
    display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 20px;
}

ul.is-style-circle_list.icon_list li::before {
	content: '\f0ca';
	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
	font-size: 36px;
	padding-bottom: 15px;
}

.wp-block-cover.is-style-cover_bottom {
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: auto;
}

.wp-block-cover.is-style-cover_bottom .wp-block-cover__inner-container {
	color: inherit;
}

.wp-block-quote.is-style-default p {
        color: #7a7d7f;
        font-family: 'Raleway', sans-serif;
        font-weight: 700;
        font-size: 18px;
        font-style: normal;
}

.wp-block-quote.is-style-default::before {
        content: '\201c';
        font-size: 160px;
        color: #38852a;
        font-family: 'Open Sans', sans-serif;
        line-height: 200px;
        margin-bottom: -120px;
        display: block;
}

.wp-block-quote.is-style-default cite {
        color: #38852a;
        font-family: 'Raleway', sans-serif;
        font-size: 20px;
        font-style: normal;
}

.wp-block-quote.is-style-default cite em {
        font-weight: 400;
}


.wp-block-quote.is-style-large p {
	color: #7a7d7f;
	font-family: 'Raleway', sans-serif;
	font-weight: 700;
	font-size: 28px;
	font-style: normal;
}

.wp-block-quote.is-style-large::before {
	content: '\201c';
	font-size: 200px;
	color: #38852a;
	font-family: 'Open Sans', sans-serif;
	line-height: 200px;
	margin-bottom: -120px;
	display: block;
}

.wp-block-quote.is-style-large cite {
	color: #38852a;
	font-family: 'Raleway', sans-serif;
	font-size: 28px;
	font-style: normal;
}

.wp-block-quote.is-style-large cite em {
	font-weight: 400;
}

.wp-block-cover.is-style-cover_right,
.wp-block-cover.is-style-cover_left {
	padding: 0px 0px 0px;
}

.wp-block-column.col_green .wp-block-group {
	background: rgba(56,133,42,1) url(img/green_overlay.png) center / cover;
	color: #FFFFFF;
}

.wp-block-column.col_black .wp-block-group {
	background: rgba(35,31,31,1) url(img/green_overlay.png) left / cover;
}

.wp-block-column.col_orange .wp-block-group {
	background: rgba(221,126,63,1) url(img/green_overlay.png) right / cover;
}

.wp-block-group.group_green,
.wp-block-group.group_orange,
.wp-block-group.group_black,
.wp-block-group.group_white,
.wp-block-group.group_grey {
	padding: 0px 20px;
}

.wp-block-group.group_green > .wp-block-group__inner-container {
	background: rgba(56,133,42,1) url(img/green_overlay.png) center / cover;
	color: #FFFFFF;
	border-radius: 40px;
	padding: 40px;
}

.wp-block-group.group_orange > .wp-block-group__inner-container {
	background: rgba(221,126,63,1) url(img/green_overlay.png) right / cover;
	color: #FFFFFF;
	border-radius: 40px;
	padding: 40px;
}

.wp-block-group.group_black > .wp-block-group__inner-container {
	background: rgba(35,31,31,1) url(img/green_overlay.png) left / cover;
	color: #FFFFFF;
	border-radius: 40px;
	padding: 40px;
}

.wp-block-group.group_white > .wp-block-group__inner-container {
	background: rgba(255,255,255,1) url(img/green_overlay.png) right / cover;
	color: #231f1f;
	border-radius: 40px;
	padding: 40px;
}

.wp-block-group.group_grey > .wp-block-group__inner-container {
	background: rgba(102,102,102,1) url(img/green_overlay.png) right / cover;
	color: #ffffff;
	border-radius: 40px;
	padding: 40px;
}

.wp-block-group.group_grey .gform_wrapper .gfield_required {
	color: #f78031;
}

.wp-block-cover.is-style-cover_left .wp-block-column.col_green,
.wp-block-cover.is-style-cover_left .wp-block-column.col_black,
.wp-block-cover.is-style-cover_left .wp-block-column.col_orange {
	color: #FFFFFF;
	display: flex;
	justify-content: flex-end;
} 

.group_black h3,
.group_orange h3,
.group_green h3 {
	margin-top: 0px;
}
	

.wp-block-cover.is-style-cover_right .wp-block-column {
/*	border-radius: 40px 0px 0px 40px;
	padding: 40px;*/
}

.wp-block-cover.is-style-cover_left .wp-block-column {
/*	border-radius: 0px 40px 40px 0px;
	padding: 40px;*/
}


.wp-block-cover.is-style-cover_right .wp-block-column.col_black .wp-block-group,
.wp-block-cover.is-style-cover_left .wp-block-column.col_black .wp-block-group {
	max-width: 600px;
	border-radius: 40px;
	padding: 40px;
}

.has-ereswhite-background-color.has-background-dim::before {
	background: #FFFFFF;
}

.wp-block-image.is-style-rounded img {
	border-radius: 40px;
}

.large_icons {
	font-size: 14px;
}

.large_icons i {
	font-size: 100px;
	color: #38852a;
	display: block;
	text-align: center;
}

.green_icons i { color: #38852a; }
.orange_icons i { color: #f78031; }
.black_icons i { color: #231f1f; }
.grey_icons i { color: #666666; }

.header_icon i {
	font-size: 100px;
	color: #38852a;
	display: block;
}


/* SLIDE PANELS */
.wp-block-group.is-style-group_grid .slick-track {
	display: flex;
	margin-bottom: 25px;
}

.wp-block-group.slick-slide {
	height: auto;
}

#copyrightcontrol {
	overflow: hidden;
}

/* transform: scale(.7,.7)}*/

/*
@keyframes fade-in {
    0% {opacity: 0;} 
    66% {opacity: 0;}
    100% {opacity: 1;}
}

.fade-in-element {
	animation: fade-in 1.4s;
}

.delay_one {
	animation-delay: 1s;
}

.delay_two {
	animation-delay: 2s;
}

.delay_three {
	animation-delay: 3s;
}

.delay_four {
	animation-delay: 4s;
}


.animate_hidden {
	opacity: 0;
}
*/

.has-ereswhite-background-color > .wp-block-group__inner-container {
	background: rgba(255,255,255,0.9);
	color: #231f1f;
	border-radius: 20px;
}

/* POP UP */

.paoc-popup-modal-cnt {
	padding: 0px;
}

.paoc-popup-modal .paoc-popup-modal-cnt > p {
	line-height: 0;
}

.group_button_black .popupaoc-button {
	color: #fff;
	background-color: #231f1f;
	border: none;
	border-radius: 1.55em;
	box-shadow: none;
	cursor: pointer;
	display: inline-block;
	font-size: 1.125em;
	padding: .667em 1.333em;
	text-align: center;
	text-decoration: none;
	overflow-wrap: break-word;
	transition: none;
}

.group_button_black .popupaoc-button::after,
.group_button_red .popupaoc-button::after {
	content: '\f04b';
	font-family: "Font Awesome 5 Pro";
	font-size: 14px;
	font-weight: 900;
	border: 2px solid #FFFFFF;
	border-radius: 20px;
	margin-left: 15px;
	padding: 2px 6px;
	display: inline-block;
}

.group_button_red .popupaoc-button {
	color: #fff;
	border: none;
	background: rgb(221,52,43);
	background: linear-gradient(0deg, rgba(221,52,43,1) 0%, rgba(248,74,49,1) 100%);
	border-radius: 1.55em;
	box-shadow: none;
	cursor: pointer;
	display: inline-block;
	font-size: 1.125em;
	padding: .667em 1.333em;
	text-align: center;
	text-decoration: none;
	overflow-wrap: break-word;
}

.group_button_red .wp-block-group__inner-container {
	display: flex;
	justify-content: flex-end;
}

/*------------------------------------*\
    FORM
\*------------------------------------*/

.gform_wrapper.roi_calculator_wrapper {
/*	max-width: 400px;*/
	background: none; /* #231f1f;*/
	margin: 0px auto;
	color: #ffffff;
	border-radius: 20px;
}

.gform_wrapper.roi_calculator_wrapper .gform_heading {
	background: #38852a;
	padding: 20px 40px 10px;
	border-radius: 20px 20px 0px 0px;
}

.gform_wrapper.roi_calculator_wrapper .gform_body {
	padding: 0px 0px;
}

.gform_wrapper input.large,
.gform_wrapper input.medium,
.gform_wrapper textarea.medium,
.gform_wrapper .ginput_complex input {
	border-radius: 10px;
	border: 1px solid #999999;
}

.gform_wrapper.roi_calculator_wrapper input.large,
.gform_wrapper.roi_calculator_wrapper input.medium {
	border: none;
}

.gform_wrapper.roi_calculator_wrapper .gform_footer {
	text-align: center;
}

.gform_wrapper .gform_footer input.button {
	margin: 0px 0px 20px;
	padding: 10px 15px;
	border-radius: 20px;
	border: 2px solid #f78031;
	font-family: 'Raleway', sans-serif;
	font-weight: 700;
	color: #FFFFFF;
	background: #f78031;
}

.gform_wrapper.roi_calculator_wrapper .gform_footer input.button:hover {
	color: #f78031;
	background: #FFFFFF;
}

.gform_wrapper.roi_calculator_wrapper .gfield_label {
	min-height: 40px;
}



body .gform_wrapper.user_forum_wrapper .gform_body .gform_fields .gsection {
        display: block;
}

body .gform_wrapper.user_forum_wrapper .gform_body .gform_fields {
        display: grid;
        grid-template-columns: 25% 25% 25% 25%;
}

body .gform_wrapper.customer_presentation_wrapper .gform_body .gform_fields {
        display: grid;
        grid-template-columns: 25% 25% 25% 25%;
}

body .gform_wrapper.user_forum_wrapper .gform_body .gform_fields li,
body .gform_wrapper.customer_presentation_wrapper .gform_body .gform_fields li {
        grid-column-start: 1;
        grid-column-end: span 4;
}

body .gform_wrapper.customer_presentation_wrapper .gform_body .gform_fields li {
        grid-column-end: span 5;
}

body .gform_wrapper.user_forum_wrapper .gform_body .gform_fields li.colleague_name,
body .gform_wrapper.customer_presentation_wrapper .gform_body .gform_fields li.colleague_name {
        grid-column-start: 1;
        grid-column-end: span 2;
        padding-right: 20px;
}

body .gform_wrapper.user_forum_wrapper .gform_body .gform_fields li.colleague_position,
body .gform_wrapper.customer_presentation_wrapper .gform_body .gform_fields li.colleague_position {
        grid-column-start: 3;
        grid-column-end: 3;
        padding-right: 20px;
}

body .gform_wrapper.user_forum_wrapper .gform_body .gform_fields li.colleague_email,
body .gform_wrapper.customer_presentation_wrapper .gform_body .gform_fields li.colleague_email {
        grid-column-start: 4;
        grid-column-end: 4;
        padding-right: 20px;
}

body .gform_wrapper.user_forum_wrapper .gform_body .gform_fields li.colleague_diet {
        grid-column-start: 4;
        grid-column-end: 4;
}

body .gform_wrapper.customer_presentation_wrapper .gform_body .gform_fields li.colleague_diet {
        grid-column-start: 5;
        grid-column-end: 5;
}

/*------------------------------------*\
    RESOURCES
\*------------------------------------*/

.single-resource .wrapper {
	flex-direction: column;
}

.hub_header_inner {
	max-width: 1280px;
	width: 100%;
	margin: 0px auto;
	padding: 0px 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 2%;
}

.hub_header_inner h1,
.post_header_inner h1 {
	font-weight: 500;
	color: #38852a;
}

.hub_header,
.post_header {
	padding: 100px 0px 25px;
	background-size: cover;
	background-position: top;
	text-align: left;
}

.hub_header_inner .search {
    max-width: 300px;
	width: 100%;
    margin: 0px 0px 0px auto;
    border-radius: 5px;
    background-color: #f4f5f6;
    border: 1px solid #666666;
    font-size: 14px;
    position: relative;
	text-align: left;
	max-height: 34px;
	align-self: center;
}

.search input[type="search"] {
    padding: 8px;
    width: 85%;
    margin: 0;
    border: none;
    background: none;
    color: #777;
}

.search button.submit {
    background: none;
    position: absolute;
    top: 0px;
	bottom: 0px;
    right: 10px;
    border: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
}

.hub_header .search .fa-search::before {
    color: #3e9137;
	font-size: 16px;
}

.single-resource .container {
	display: flex;
	max-width: 1280px;
	margin: 0px auto;
	padding: 50px 20px;
}

.single-resource .sidebar {
    min-width: 400px;
    margin-left: 50px;
}

.ebook_request {
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 1px solid #999999;
}

.request_form .gform_body {
    padding: 0px 30px 0px;
}

.ebook_request .request_form_wrapper {
    background: #DCDCDC;
    margin-top: 0px;
    padding-top: 16px;
}

.ebook_request.highlight .request_form_wrapper {
    background: #CCCCCC;
}

.gform_wrapper .request_form .ginput_container_name input, .gform_wrapper .request_form .ginput_container_email input, .gform_wrapper .request_form .ginput_container_text input {
    border: none;
    border-radius: 10px;
}

.ebook_request h3 {
    display: block;
    background: #333333;
    color: #FFFFFF;
    text-align: center;
    padding: 15px 45px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
	border-radius: 10px 10px 0px 0px;
	margin-top: 0px;
}

.ebook_request.highlight h3 {
	background: #3e9342;
}

.gform_wrapper .request_form .gform_footer input.button {
    display: block;
    margin: 0px auto;
    background: #3e9137;
    color: #FFFFFF;
    padding: 10px;
    border-radius: 20px;
    width: 250px;
    text-align: center;
    border: none;
    text-transform: uppercase;
}

.gform_wrapper .request_form .top_label .gfield_label, .gform_wrapper .request_form .field_sublabel_below .ginput_complex.ginput_container label {
    display: none;
}

.gform_wrapper .request_form .gform_footer {
    margin: 0px;
    padding: 15px 0px 30px;
}

.download_ebook:hover {
    text-decoration: none;
}

.download_ebook {
    color: #3e9342;
    text-decoration: underline;
    font-weight: bold;
    cursor: pointer;
}

.related_posts > h3 {
    color: #adadad;
    text-transform: uppercase;
}

.resource_type {
    text-transform: uppercase;
    color: #3e9137;
    font-size: 12px;
    margin: 15px 0px 10px;
    font-weight: 600;
    display: block;
}

.related_resource a .related_link {
    color: #ADADAD;
}

.hub_content h3, .related_resource h3 {
    margin-top: 10px;
    font-weight: 600;
}

.featured_resource a, .hub_resource a, .related_resource a, .featured_resource a.view-article:hover, .hub_resource a.view-article:hover {
    color: #000000;
	text-decoration: none;
}

.hub_content {
	max-width: 1280px;
	margin: 0px auto;
	padding: 50px 20px;
}

.hub_featured {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 2%;
	padding-bottom: 50px;
	margin-bottom: 70px;
	border-bottom: 1px solid #333333;
}

.hub_posts {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 2%;
	row-gap: 40px;
}

.featured_image {
    background-size: cover;
    background-position: bottom;
}

.featured_image, .related_image {
    box-shadow: 3px 3px 5px rgba(0,0,0,0.2);
}

.featured_resource a.view-article, .hub_resource a.view-article {
    color: #3e9342;
}

.pagination_wrapper {
	display: flex;
	justify-content: center;
	margin: 30px 40px;
}

.pagination {
	background: #38852A;
	border-radius: 30px;
	display: flex;
	padding: 10px;
}

.pagination a,
.pagination span {
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 700;
	display: block;
	padding: 5px 12px;
	text-decoration: none;
	margin: 0px 3px;
}

.pagination a:hover,
.pagination span.current {
	color: #38852A;
	background: rgba(255,255,255,0.9);
	border-radius: 20px;
}

/*------------------------------------*\
    IMAGES
\*------------------------------------*/

.blog_container,
.single-post .container {
	max-width: 1280px;
	margin: 0px auto;
	padding: 0px 40px 50px;
	display: flex;
}

.blog_container .sidebar-widget,
.single-post .container .sidebar-widget {
	max-width: 280px;
	margin-left: 2%;
	min-width: 280px;
}

.blog_container .post_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 2%;
	row-gap: 30px;
}

.blog_container .post_grid article {
	text-align: center;
}

.post_grid img {
	width: 100%;
}

.post_grid h2 a {
	text-decoration: none;
}

.post_grid h2 {
	font-size: 24px;
	margin: 10px 0px;
}

.post_grid .view-article.loop-more {
	display: block;
	margin-top: 10px;
}

.post_header_inner {
	max-width: 1280px;
	width: 100%;
	margin: 0px auto;
	padding: 0px 20px;
}

.wp-block-column iframe {
	width: 100%;
	max-width: 600px;
	margin: 0px auto;
	display: block;
}


/*------------------------------------*\
    LANDING PAGE
\*------------------------------------*/

.wp-block-group.is-style-group_side {
    max-width: 600px;
	width: 100%;
	padding: 20px 20px 20px 32px;
}

.flex_align_center {
	align-items: center;
}

.wp-block-columns .wp-block-column:first-child {
}

.wp-block-column.is-style-column_side {
    display: flex;
    justify-content: flex-end;
}

.wp-block-column.is-style-column_side.flex_column {
	flex-direction: column;
	justify-content: flex-start;
}

.wp-block-column.is-style-column_side.flex_column .wp-block-cover {
	height: 100%;
}

.wp-block-columns .wp-block-column.is-style-column_side:last-child {
	justify-content: flex-start;
}

.wp-block-columns .wp-block-column.is-style-column_side .wp-block-cover {
	width: 100%;
}


.wp-block-columns .wp-block-column:first-child .wp-block-group.is-style-group_side {
	padding: 20px 32px 20px 20px;
}

.wp-block-columns {
	margin-bottom: 0px;
}

.page-template-template-landing h1 {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 40px;
	color: #38852A;
}

.page-template-template-landing h2 {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 33px;
	color: #38852A;
}

.page-template-template-landing h3 {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 25px;
}


.page-template-template-landing .nav ul,
.nav ul {
	background: #38852A;
}

.page-template-template-landing .nav li a,
.nav li a {
	color: #FFFFFF;
}

.nav li:hover a,
.nav li.current_page_item a {
	color: #38852A;
	background: rgba(255,255,255,0.9);
}

.wp-block-group.has-eresgreen-background-color {
	background: #38852A;
	color: #FFFFFF;
}

.page-template-template-landing .wp-block-quote.is-style-large {
	position: relative;
	background: #38852A;
	color: #FFFFFF;
	display: flex;
	width: 100vw;
	left: -20vw;
}

.page-template-template-landing .wp-block-quote.is-style-large::before {
	color: rgba(255,255,255,0.42);
	font-family: 'Roboto', sans-serif;
	line-height: normal;
	margin: 0px 40px -200px 75px;
}

.page-template-template-landing .wp-block-quote.is-style-large p {
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 20px;
	max-width: calc(50vw - 200px);
}

.page-template-template-landing section[role="main"] {
	overflow: hidden;
}

ul.is-style-tick_list {
	list-style: none;
	padding: 0px;
}

ul.is-style-tick_list li {
	display: flex;
	color: #38852A;
	font-weight: 700;
	margin-bottom: 30px;
}

ul.is-style-tick_list.tick_list_alt li {
	display: grid;
	grid-template-columns: 50px 1fr;
	color: #707070;
	font-weight: 400;
}

ul.is-style-tick_list.tick_list_alt li br:not(strong + br) {
	margin-bottom: 1em;
}

ul.is-style-tick_list.tick_list_alt li strong {
	color: #38852A;
	font-weight: 700;
}


ul.is-style-tick_list li::before {
	content: '';
	background: url('img/tick_list.png') no-repeat center / contain;
	width: 40px;
	height: 37px;
	margin-right: 25px;
}

ul.is-style-tick_list.tick_list_alt li::before {
	grid-row-start: 1;
	grid-row-end: 3;
}


ul.is-style-smalltick_list {
	list-style: none;
	padding: 0px;
}

ul.is-style-smalltick_list li {
	display: flex;
	margin-bottom: 15px;
}

ul.is-style-smalltick_list li::before {
	content: '';
	background: url('img/tick_list.png') no-repeat center / contain;
	width: 30px;
	height: 28px;
	margin-right: 10px;
}

hr.wp-block-separator.has-ereswhite-color {
	max-width: 380px;
	width: 100%;
	height: 4px;
	background: #FFFFFF;
	border: none;
}

.page-template-template-landing .wp-block-button.is-style-green_button {
	text-transform: none;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 20px;
}

.page-template-template-landing .wp-block-button.is-style-green_button .wp-block-button__link {
	width: 360px;
	background: #38852A;
	padding: 0.3em;
}

body.page-template-template-landing {
	color: #707070;
}

.page-template-template-landing i.fal {
	background: #38852A;
	display: flex;
	width: 98px;
	height: 98px;
	border-radius: 50px;
	align-items: center;
	justify-content: center;
	color: #FFF;
	font-size: 50px;
}

.page-template-template-landing .wp-block-group.is-style-group_centered > .wp-block-group__inner-container {
	padding: 0px 60px;
}


.vpat_grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	max-width: 1280px;
	margin: 0px auto;
	padding: 0px 40px;
}

.vpat_grid div,
.vpat_grid section {
	padding: 10px 10px;
}

.vpat_grid section p:first-child {
	margin-top: 0px;
}

.cell_wide {
	grid-column-start: 1;
	grid-column-end: 4;
}

.cell_head {
	background: #333333;
	color: #FFFFFF;
	font-weight: bold;
}

.vpat_grid section:nth-of-type(6n),
.vpat_grid section:nth-of-type(6n - 1),
.vpat_grid section:nth-of-type(6n - 2) {
	background: #EFEFEF;
}

.hide {
	display: none;
}

.gform_wrapper.gravity-theme .section_nobar .gsection {
	border: none;
} 

.gform_wrapper.gravity-theme .gchoice {
	display: flex;
 	align-items: baseline;
}

.gform_wrapper.gravity-theme .gchoice label {
	padding-left: 10px;
}

@media only screen and (max-width: 900px) {
	.wp-block-group.is-style-group_side {
		max-width: 100%;
	}
	
	.wp-block-spacer.is-style-spacer_respsonsive {
		height: 50px !important;
	}

	.wp-block-spacer.is-style-spacer_hidden {
		display: none;
	}
	
	.wp-block-column.icon_left {
		display: grid;
		grid-template-columns: 125px 1fr;
		grid-template-row: auto auto;
	}
	
	.wp-block-column.icon_left p {
		grid-column-start: 2;
		margin: 0px;
	}
	
	.wp-block-column.icon_left figure,
	.wp-block-column.icon_left i {
		grid-row-start: 1;
		grid-row-end: 3;
	}
	
	.page-template-template-landing .wp-block-quote.is-style-large {
		left: auto;
		width: calc(100vw - 70px);
		flex-direction: column;
		margin: 1em 0px;
	}

	.page-template-template-landing .wp-block-quote.is-style-large::before {
		margin: -20px 40px -160px -10px;
	}
	
	.page-template-template-landing .wp-block-quote.is-style-large p {
		max-width: none;
	}
}

@media only screen and (max-width: 480px) {
	.wp-block-column.icon_left {
		display: block;
	}

	.wp-block-column.icon_left p {
		margin: 1em 0;
	}
}

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family:'Font-Name';
	src:url('fonts/font-name.eot');
	src:url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
		url('fonts/font-name.woff') format('woff'),
		url('fonts/font-name.ttf') format('truetype'),
		url('fonts/font-name.svg#font-name') format('svg');
    font-weight:normal;
    font-style:normal;
}

div.shiftnav-wrap {
	line-height: 1.4; /* Fixes ShiftNav setting an em based line height when we want a unitless multiplier. */
}

.shiftnav-inner {
	background: url() center top no-repeat; /* Specify the site logo you want to appear in the mobile menu. */
	padding-top: 0px; /* Set to however tall the site logo is. */
}

.shiftnav ul.shiftnav-menu ul.sub-menu li.menu-item > .shiftnav-target,
.shiftnav ul.shiftnav-menu ul.sub-menu li.shiftnav-retract > .shiftnav-target {
	line-height: 100%;
	padding: 15px 25px 15px 35px;
}

div.mobilenav {
	display:none;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width:1200px) {
	.nav li a {
		font-size: 18px;
		padding: 3px 10px;
	}
}

@media only screen and (max-width:960px) {
	.header_overlap .menu li a {
		font-size: 14px;
	}
	
	.header_overlap .menu li a i {
		display: none;
	}
}

@media only screen and (max-width:900px) {
	.wrapper .wp-block-columns,
	.widget_trial .wp-block-columns {
		flex-direction: column;
	}
	
	.wrapper .wp-block-columns.flexrow {
		flex-direction: row;
	}
	
	.wrapper .is-style-group_centered .wp-block-column {
		margin-bottom: 30px;
	}
	
	.wrapper .is-style-group_centered .wp-block-column:last-child {
		margin-bottom: 0px;
	}

	
	.wrapper .wp-block-columns.large_icons .wp-block-group__inner-container {
		display: grid;
		grid-template-columns: 1fr 2fr;
		grid-template-rows: auto 1fr;
		column-gap: 20px;
	}
	
	.wrapper .wp-block-columns .wp-block-column:nth-child(2n),
	.wrapper .wp-block-columns .wp-block-column:not(:first-child),
	.widget_trial .wp-block-columns .wp-block-column:not(:first-child) {
		margin-left: 0px;
	}	
	
	.wrapper .wp-block-columns.large_icons .wp-block-group__inner-container i:first-child {
		grid-row: 1 / 3;
		align-self: center;
	}
	
	.wrapper .wp-block-columns.large_icons .wp-block-group__inner-container h3 {
		align-self: end;
		text-align: left;
	}
	
	.footer_widgets .sidebar-widget {
		max-width: 640px;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr;
	}

	.custombox-content video {
		max-width: 800px;
		width: 100%;
		height: auto;
	}
	
	.page article .wp-block-cover:first-child,
	.hub_header, .post_header {
		background-size: 1200px;
	}
	
	.blog_container, .single-post .container,
	.single-resource .container {
		flex-direction: column;
	}
}

@media only screen and (max-width:768px) {
	.header_overlap .menu {
		padding: 0px;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr;
		column-gap: 0px;
		margin: -100px auto 0px;
	}
		
	.header_overlap .menu li a {
		height: 50px;
	}
	
	.header_overlap .menu li:nth-child(2n) {
		justify-content: end;
	}
	
	.header_overlap .menu li a i {
		display: inline-block;
	}

	.hub_posts {
		grid-template-columns: 1fr 1fr;
	}
}

@media only screen and (max-width:599px) {
	.wrapper .wp-block-columns.flexrow .wp-block-column {
		flex-basis: auto !important;
	}
}

@media only screen and (max-width:480px) {
	.header_overlap .menu li a i {
		display: none;
	}
	
	.footer_widgets .sidebar-widget {
		display: flex;
		flex-direction: column;
	}
	
	.logo-img {
		max-width: 200px;
	}
	
	.mobilenav {
		padding: 26px 40px 0px;
	}

	.wrapper .wp-block-columns.large_icons .wp-block-group__inner-container {
		display: flex;
		flex-direction: column;
	}
	
	.wrapper .wp-block-columns.large_icons .wp-block-group__inner-container h3 {
		text-align: center;
		align-self: center;
	}

	.hub_posts,
	.hub_featured {
		grid-template-columns: 1fr;
	}

}

@media only screen and (max-width:320px) {
	



}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
   
/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/
   
.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {
	
}
.bypostauthor {
	
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
