/*
Theme Name: Eric States
Theme URI: http://www.fdgweb.com/
Author: FDGweb
Author URI: http://www.fdgweb.com/
Description: A custom client theme designed by FDGweb.
Version: 3.0
*/

/* //////////////////////////////////////////////
ALL FONT DECLARATIONS SHOULD BE MADE WITHIN THE {theme}/fonts.php FOR EACH FONT.
THIS WAY FONTS CAN STILL BE CUSTOMIZED VIA THE ADMIN.
FONT OVERRIDES CAN BE MADE IN THIS FILE ON INDIVIDUAL SITE INSTALLATIONS
BUT SHOULD NOT BE MADE ON THE BOILERPLATE TEMPLATE INSTALL
////////////////////////////////////////////// */


/* =Basic structure
-------------------------------------------------------------- */

html {
	font-size: 87.5%;
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

html, body {
	height: 100%;
}

body {
	font-size: 14px;
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	text-rendering: optimizeLegibility;
	line-height: 1;
}

a, .entry-content a:visited,
.comment-content a:visited {
	outline: none;
	text-decoration: none;
}

body .site {
	padding: 20px 0 70px;
}

#site-container {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.site-content {
	margin: 24px 0 0;
}

.widget-area {
	margin: 24px 0 0;
}

#header-spacer {
	position: relative;
	width: 100%;
	height: 117px;
}

#header-spacer.nav-under {
	height: 145px;
}

#header-container {
	width: 100%;
}

.home #header-container {
	margin-bottom: -150px;
	z-index: 2;
	background: linear-gradient(180deg, #e3e8efd4 55%, transparent);
}

#header-container.nav-under {
	height: 145px;
}


#header-container.hide {
	top: -145px;
	-webkit-transition: 0.2s all;
	-moz-transition: 0.2s all;
	-ms-transition: 0.2s all;
	transition: 0.2s all;
}

#header-container.scrolled {
	position: fixed;
	box-shadow: 0 0 50px rgba(0,0,0,0.2);
	background: #FFF;
	z-index: 999;
}

body.header-persist #header-container {
	position: fixed;
	box-shadow: 0 0 50px rgba(0,0,0,0.2);
	background: #FFF;
	-webkit-transition: 0s all;
	-moz-transition: 0s all;
	-ms-transition: 0s all;
	transition: 0s all;
}

body.header-persist #header-container.scrolled {
	top: 0;
}

#header-container.nav-under.scrolled {
	height: 145px;
}

#header-container.show {
	top: 0px;
	-webkit-transition: 0.2s all;
	-moz-transition: 0.2s all;
	-ms-transition: 0.2s all;
	transition: 0.2s all;
}

.site-header {
	padding: 15px 0;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0;
	position: relative;
}

a.site-title {
	display: inline-block;
	vertical-align: middle;
	text-decoration: none;
	font-size: 34px;
	letter-spacing: -0.04em;
}

.site-header .site-title img {
	display: block;
	max-width: 120px;
	width: 100%;
}

.main-navigation li {
	margin-top: 24px;
	font-size: 12px;
	line-height: 1.42857143;
}

.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
	display: none;
}

.main-navigation ul.nav-menu.toggled-on,
.menu-toggle {
	display: inline-block;
}

#mobile-nav-toggle {
	display: none;
	position: relative;
	top: 0;
	right: 0;
	width: 60px;
	height: 50px;
	cursor: pointer;
	z-index: 200;
	font-size: 22px;
	line-height: 56px;
	text-align: center;
	text-transform: uppercase;
}

#mobile-nav-toggle div {
	width: 34px;
	height: 4px;
	position: absolute;
	top: 14px;
	left: 13px;
	border-radius: 3px;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-ms-transition: 0.5s all;
	transition: 0.5s all;
}

#site-container-wrap {
	position: static;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

#mobile-nav {
	position: absolute;
	top: 0;
	left: 0;
	width: 80%;
	z-index: 80;
	min-height: 100%;
	background: rgb(19, 24, 33);
	-webkit-transform: translateX(-102%);
	-moz-transform: translateX(-102%);
	-ms-transform: translateX(-102%);
	transform: translateX(-102%);
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-ms-transition: 0.5s all;
	transition: 0.5s all;

	display: none;
}

#mobile-nav .nav-menu {
	padding: 30px 0px 30px 0px;
}

body.nav-active #mobile-nav {
	-webkit-transform: translateX(0%);
	-moz-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

#mobile-nav-shad {
	width: 100%;
	min-width: 320px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0);
	opacity: 0;
	display: none;
	z-index: 50;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-ms-transition: 0.5s all;
	transition: 0.5s all;
}

body.nav-active #mobile-nav-shad {
	opacity: 1;
	-webkit-transform: translateX(0%);
	-moz-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

body.nav-active #site-container-wrap {
	opacity: 0.5;
}

#mobile-nav-close {
	font-size: 16px;
	padding: 20px 20px;
	position: relative;
	margin: -40px 0 5px 0;
	text-align: center;
	cursor: pointer;
	opacity: 0.7;
}

#mobile-nav ul li a {
    border-radius: 0;
}

#mobile-nav-close:after {
	content: ' ';
	width: 70%;
	height: 1px;
	background: rgba(255, 255, 255, 0.15);
	position: absolute;
	margin: 35px 15% 0 15%;
	left: 0;
}

#mobile-nav .menu-top-navigation-container {
	display: block;
	width: 70%;
	padding: 40px 0 0 0;
	z-index: 20;
	position: relative;
	background: #0D293E;
}

#mobile-nav ul#menu-main-navigation,
#mobile-nav ul#menu-main-navigation-1 {
	padding: 30px 0 0 0;
}

#mobile-nav > div > ul > li > a {
	text-decoration: none;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 0.05em;
	display: block;
	width: 90%;
	text-align: left;
	padding: 10px 0 10px 10%;
	position: relative;
}

#mobile-nav > div > ul > li > ul > li > a {
	text-decoration: none;
	opacity: 0.8;
	font-size: 13px;
	display: block;
	width: 90%;
	text-align: left;
	padding: 6px 0 6px 10%;
	text-transform: uppercase;
	letter-spacing: 1px;
}

#mobile-nav > div > ul > li {
	padding: 0 0 5px 0;
}

#mobile-nav ul.sub-menu {
	position: relative;
	z-index: 200;
}

.menu-toggle {
	display: none;
}

.nav-beside #site-search {
	position: absolute;
	display: none;
	flex-direction: row;
	margin: 100px 0 0 20px;
	align-items: center;
	width:100%;
}


.nav-beside .menu-main-menu-container {
	display: inline-block;
	vertical-align: middle;
}

.nav-under #site-search {
	position: absolute;
	right: 0;
	top: 0;
	height: 45px;
}

button#searchbutton img {
	max-width: 20px;
}

.sub-menu li.menu-item a {
	font-size: 13px;
	margin: 6px 0;
}

.sub-menu li.menu-item {
	margin: 0 3px !important;
}

#site-search input[type="text"] {
	height: 29px;
	width: 29px;
	padding: 3px 4px;
	outline: none;
	font-weight: 500;
	font-size: 16px;
	position: relative;
	z-index: 10;
	-webkit-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-ms-transition: 0.3s all;
	transition: 0.3s all;
}

input#header-search-input {
	width: 100% !important;
	border: 1px solid #d4d9e2 !important;
	background: #fffffff0 !important;
	font-size: 16px !important;
}

button#searchbutton {
	border: none;
	background: none;
}

.nav-under #site-search input[type="text"] {
	height: 39px;
}

#site-search input[type="text"].active {
	width: 140px;
	text-indent: 0px;
	padding: 3px 34px 3px 14px;
	-webkit-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-ms-transition: 0.3s all;
	transition: 0.3s all;
}

.upper-header {
	position: absolute;
	right: 0;
	z-index: 99;
	display: block;
	top: 16px;
}

.upper-header .location {
	font-size: 12px;
	display: inline-block;
}

.upper-header .location a {
	text-decoration: none;
	margin-left:5px;
	font-size: 14px;
	display: inline-block;
	vertical-align: middle;
}

#site-search input[type="submit"] {
    margin: 0 0 0 -4px;
    border-radius: 0;
    border: none;
    width: 30px;
    height: 30px;
    outline: none;
    box-shadow: none;
    background: url(/wp-content/uploads/2021/09/mag-icon.png) center center no-repeat;
    background-size: 18px;
    background-position: 2px 8px;
    opacity: 1;
    cursor: pointer;
    top: 0;
    right: 0;
    position: absolute;
    display: none;
    z-index: 50;
}

.nav-under #site-search input[type="submit"] {
	height: 45px;
}

#site-search input[type="submit"].active {
	display: block;
}

#header-mag {
	background: url(/wp-content/uploads/2021/09/mag-icon.png) center center no-repeat;
	background-size: 19px;
	opacity: 1;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	width: 35px;
	height: 35px;
	z-index: 20;
	background-position: 2px 8px;
}

.nav-under #header-mag {
	height: 45px;
}

.footer-credits {
	display: block;
	position: absolute;
	width: 100%;
	text-align: center;
	bottom: 12px;
	font-size: 11px;
}

.footer-credits a {
	text-decoration: none;
	opacity: 0.9;
}

.footer-credits a:hover {
	opacity: 0.7;
}

#site-copyright {
	position: relative;
	right: auto;
	text-align: center;
}

#site-copyright.left-align {
	display: inline-block;
}

.section-rotator {
	position: relative;
	opacity: 0;
	-webkit-transition: 0.4s opacity, 0.8s max-height;
	-moz-transition: 0.4s opacity, 0.8s max-height;
	-ms-transition: 0.4s opacity, 0.8s max-height;
	transition: 0.4s opacity, 0.8s max-height;
}

body.loaded .section-rotator {
	opacity: 1;
}

img.rotator-background {
	width: 100%;
}

.home img.rotator-background {
    width: 115%;
    opacity: .35;
    max-width: none;
    margin-left: -15%;
}

.rotator-slide-content-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 20;
	text-decoration: none;
}

.rotator-slide-content-spacer {
	display: inline-block;
	vertical-align: middle;
	width: 0;
	height: 100%;
}

.rotator-slide-content {
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	margin: 0 -100px 0 -4px;
}

.rotator-slide-content-inner {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	overflow: hidden;
}

.rotator-slide-content-width {
	max-width: 680px;
	text-align: center;
	margin: 0 auto;
	position: relative;
}

.section-rotator a {
	text-decoration: none;
}

.section-rotator button {
	border: none;
}

a.rotator-background-link {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 5;
}

.rotator-title {
	font-size: 62px;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 62px;
	letter-spacing: -0.024em;
	position: relative;
	z-index: 10;
}

.rotator-subtitle {
	font-size: 32px;
	line-height: 34px;
	font-weight: 300;
	position: relative;
	z-index: 10;
}

.button {
	display: inline-block;
	vertical-align: top;
	padding: 10px 28px;
	font-size: 13px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 0;
}

.section-rotator a.button {
	position: relative;
	z-index: 10;
}

.button-wrap a.button,
.button-wrap button.button {
	margin-right: 10px;
}

.button-wrap a.button:last-child,
.button-wrap button.button:last-child {
	margin-right: 0;
}

.section-rotator .button {
	margin: 20px 0 0;
}

.rotator-prev, .rotator-next {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100px;
	display: none;
	z-index: 100;
}

.rotator-next {
	left: auto;
	right: 0;
}

.section-rotator.show-selectors .rotator-prev, .section-rotator.show-selectors .rotator-next {
	display: block;
}

[slides="1"] .rotator-prev, [slides="1"] .rotator-next, [slides="1"] .rotator-pagination {
	display: none;
}

span.swiper-pagination-bullet {
	background: #FFF;
	opacity: 0.4;
	width: 12px;
	height: 12px;
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.25);
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1;
}

.rotator-prev a {
	display: block;
	width: 100%;
	height: 100%;
	cursor: pointer;
	overflow: hidden;
	text-indent: -9999px;
	color: rgba(0, 0, 0, 0);
	opacity: 0.5;
}

.rotator-next a {
	display: block;
	width: 100%;
	height: 100%;
	cursor: pointer;
	overflow: hidden;
	text-indent: -9999px;
	color: rgba(0, 0, 0, 0);
	opacity: 0.5;
}

.prevnext-Black .rotator-prev a {
	background: url(images/prev.png) center center no-repeat;
}

.prevnext-Black .rotator-next a {
	background: url(images/next.png) center center no-repeat;
}

.prevnext-White .rotator-prev a {
	background: url(images/prev-white.png) center center no-repeat;
}

.prevnext-White .rotator-next a {
	background: url(images/next-white.png) center center no-repeat;
}

.rotator-prev a:hover, .rotator-next a:hover {
	opacity: 1;
}

.swiper-container .rotator-pagination {
	position: absolute;
	bottom: 40px !important;
	width: 100%;
	text-align: center;
	height: 0;
	z-index: 100;
}

.swiper-wrapper {
	margin: 0;
}

footer[role="contentinfo"] {
	clear: both;
	font-size: 12px;
	line-height: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 0 0 0;
	position: relative;
	min-height: 20px;
	box-sizing: border-box;
}

footer .menu li {
	display: inline-block;
}

footer .menu li a {
	opacity: 0.8;
	text-decoration: none;
	font-size: 12px;
	padding: 10px 12px;
	position: relative;
}

footer .menu li a:hover {
	opacity: 1;
}

footer .menu li a:after {
	content: '|';
	position: absolute;
	right: 0;
}

footer .menu li:last-of-type a:after {
	display: none;
}

.sidebar-block.social-presence, .footer-block.social-presence {
	font-size: 0;
	display: flex;
	justify-content: flex-end;
	padding-top: 6px;
}

ul#menu-footer-menu {
	text-align: right;
}

#site-copyright {
	opacity: 0.8;
	font-size: 12px;
	padding: 0 10px;
	text-align: right;
	width: 100%;
	box-sizing: border-box;
}

.entry-header .entry-title {
	font-size: 20px;
	line-height: 1.2;
	font-weight: normal;
}

.entry-header .entry-title a {
	text-decoration: none;
	font-size: 32px;
}



.entry-content h1 {
	font-size: 21px;
	line-height: 1.5;
}

.entry-content h2 {
	font-size: 18px;
	line-height: 1.6;
}

.entry-content h3 {
	font-size: 16px;
	line-height: 1.846153846;
}

.entry-content h4 {
	font-size: 14px;
	line-height: 1.846153846;
}

.entry-content h5 {
	font-size: 13px;
	line-height: 1.846153846;
}

.entry-content h6 {
	font-size: 12px;
	line-height: 1.846153846;
}

.entry-content p {
	line-height: var(--entry-content-line-height);
	font-size: var(--entry-content-font-size);
	margin-bottom:20px;
	font-weight: normal;
}

.entry-content ol,
.entry-content ul {
	margin: 0 0 24px;
	line-height: var(--entry-content-line-height);
	font-weight: normal;
}

.entry-content ul ul,
.entry-content ol ol,
.entry-content ul ol,
.entry-content ol ul {
	margin-bottom: 0;
}

.entry-content ul {
	list-style: disc outside;
}

.entry-content ol {
	list-style: decimal outside;
}

.entry-content li {
	margin: 0 0px 13px 17px;
	line-height: 1.6em;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	margin: 24px 0;
	line-height: var(--entry-content-line-height);
}

.entry-content table {
	border-bottom: 1px solid #ededed;
	color: #757575;
	font-size: 12px;
	line-height: 2;
	margin: 0 0 24px;
	width: 100%;
}

.entry-content table caption {
	font-size: 16px;
	margin: 24px 0;
}

.entry-content td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 0;
}

.entry-content .section.content-block .content-outer .content p {
    margin-bottom: 20px;
}

.entry-content .section.content-block .content-outer h3.title {
    font-size: 31px;
    letter-spacing: -0.05em;
    font-weight: normal;
}

article {
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}

.page-links {
	clear: both;
	line-height: 1.714285714;
}

.site-header h1,
.site-header h2 {
	text-align: left;
}

.site-header h1 {
	font-size: 26px;
	line-height: 1.846153846;
	margin-bottom: 0;
}

.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
	display: inline-block !important;
	width: 100%;
}

.nav-under .nav-menu {
	text-align: left;
}

.nav-beside .nav-menu {
	text-align: right;
}

.main-navigation ul {
	margin: 0;
	text-indent: 0;
}

.main-navigation li a,
.main-navigation li {
	text-decoration: none;
}

.main-navigation li a {
	display: inline-block;
	border-bottom: 0;
	padding: 10px 17px 10px 17px;
    line-height: 25px;
    font-size: 14px;
	text-transform: uppercase;
	white-space: nowrap;
	font-weight: normal;
  font-family: montserrat, sans-serif !important;
	/*
	-webkit-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-ms-transition: 0.3s all;
	transition: 0.3s all;
	*/
}

.main-navigation li {
	margin: 0 10px 0 0;
	display: inline-block;
	vertical-align: top;
	position: relative;
}

.main-navigation li ul {
	margin: 0;
	padding: 0;
	position: absolute;
	z-index: 1;
	text-align: left;
	height: 0;
	overflow: hidden;
	top: 90%;
	text-align: left;
	font-size: 0;
	opacity: 0;
	box-shadow: 2px 10px 20px -5px rgba(0, 0, 0, 0.15);
}

.main-navigation li ul ul {
	top: 0;
	left: 100%;
}

.main-navigation ul li:hover > ul {
	border-left: 0;
	display: block;
}

ul.sub-menu.active.pad {
	z-index: 2;
}

.footer-block label {
	color: #fff;
}

.footer-link-reset {
	color: #ed254e;
}

.nav-menu > li > ul.sub-menu.pad {
	opacity: 1;
	padding: 15px 20px 10px;
	border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

#mobile-nav ul.sub-menu {
    background: none;
}
#mobile-nav ul.sub-menu li {
    border: none;
}

#mobile-nav ul li a {
    font-family: montserrat, roboto, sans-serif !important;
}

.nav-menu > li > ul.sub-menu.active {
	top: 100%;
	height: auto;
}

.main-navigation li:hover > a,
.main-navigation li > a:hover,
.main-navigation li > a:focus {
	background-color: var(--dark-color);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.main-navigation li.menu-item-has-children:hover > a,
.main-navigation li.menu-item-has-children > a:hover,
.main-navigation li.menu-item-has-children > a:focus {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.sub-menu.active.pad li > a {
	color: var(--off-white-color);
	border-radius: 0;
	width: max-content;
	padding: 5px 0;
	opacity: 0.8;
}

.sub-menu .menu-item {
	width: 100%;
	border-bottom: 1px solid rgba(213,213,213,0.5);
}

.sub-menu .menu-item:last-of-type {
	border-bottom: none;
}

.sub-menu.active.pad li:hover > a,
.sub-menu.active.pad li > a:hover,
.sub-menu.active.pad li > a:focus {
	background-color: inherit;
	color: #fff;
	opacity: 1;
}

.nav-menu > li > ul.sub-menu {
	background-color: var(--dark-color);
	color: #fff;
	border:none;
}



.main-navigation li ul li a {
	display: block;
	font-size: 14px;
	line-height: 20px;
	padding: 6px 30px;
	white-space: normal;
	height: 18px;
}

.main-navigation li ul li a:hover {
	opacity: 1;
}

.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a,
.main-navigation .current_page_item > a,
.main-navigation .current_page_ancestor > a {
	font-weight: 600;
}

#nav-container.nav-under {
	position: relative;
	box-shadow: 0 20px 30px -15px rgba(0,0,0,0.1);
	z-index: 1001;
	text-align: left;
	margin: -20px 0 0;
}

#nav-container.nav-under #site-navigation {
	position: relative;
	margin: 0 auto;
	padding: 0;
	max-width: 1230px;
}

#nav-container.nav-beside {
	display: inline-block;
	vertical-align: middle;
	width: calc( 100% - 280px );
	text-align: right;
	padding: 0 0 0 40px;
}

#content-wrapper {
	font-size: 0;
	padding: 0;
}

#footer-container {
	width: 100%;
	min-height: 300px;
	position: relative;
}

#content {
	width: 100%;
	font-size: 14px;
}

.entry-header .entry-title, .search-results h1.page-title {
	font-size: 42px;
	letter-spacing: -0.04em;
	text-transform: uppercase;
}

header.entry-header {
	padding: 40px 0;
	margin: 0;
}

.archive article:first-child, .search article:first-child, .blog article:first-child {
	padding-top: 40px;
}

h1.entry-title {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
/*	padding: 0 30px;*/
}

.entry-header.left, .left {
	text-align: left;
}

.entry-header.center, .center {
	text-align: center;
}

.entry-header.right, .right {
	text-align: right;
}

.entry-header.background-image {
	background-size: 100% !important;
}

.section {
	position: relative;
	font-size: 0;
	overflow: hidden;
}

.section-background {
	display: block;
	width: 100%;
}

.off-white-transparent {
	background: #D5D5D57F;
}

.section.background-image .section-inner-wrap-1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	font-size: 0;
}

.section.background-image .section-inner-wrap-spacer {
	display: inline-block;
	vertical-align: middle;
	height: 100%;
	width: 0;
}

.section.background-image .section-inner-wrap-2 {
	display: inline-block;
	vertical-align: middle;
}

.section-inner-wrap-2 {
	width: 100%;
}

.section .section-inner {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	padding: 60px 0;
}

.section.title-banner .title {
	font-size: 65px;
	line-height: 75px;
	margin: 0;
	text-transform: uppercase;
}

.section.title-banner .subtitle {
	font-size: 26px;
	line-height: 32px;
	margin: 0;
	font-weight: 500;
}

.section.align-left {
	text-align: left;
}

.section.align-center {
	text-align: center;
}

.section.align-right {
	text-align: right;
}

.section.background-image.tint-lighter .section-background,
.section.background-image.tint-lighter .mobile-background,
.section.background-image.tint-darker .section-background,
.section.background-image.tint-darker .mobile-background,
.section.background-image.tint-color .section-background,
.section.background-image.tint-color .mobile-background {
	opacity: 0.5;
}

.section .mobile-background {
	display: none;
}

.section .title {
font-size: 38px;
    line-height: 1.1em;
	margin: 0;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0em;
		margin-bottom:20px;
}

.section .subtitle {
	font-size: 26px;
	line-height: 28px;
	margin: 2px 0 10px;
	opacity: 0.7;
}

.section .content p, .section .content li {
	font-size: var(--entry-content-font-size);
}

.content-wrap.align-center {
	text-align: center;
}

.content-wrap.align-left {
	text-align: left;
}

.content-wrap.align-right {
	text-align: right;
}

.section .section-inner.top-only {
	padding-bottom: 0;
}

.section .section-inner.bottom-only {
	padding-top: 0;
}

.section .section-inner.no-padding {
	padding: 0 30px;
}

.content-block .featured-image.left.mobile {
	display: none;
}

.product-images li {
	max-width:30%;
	margin:0px;
}

.product-images {
	padding-top:15px;
	display: flex;
	justify-content: space-around;
}
.product-images li img {
	transition:.25s;
}
.product-images li img:not(.active) {
	opacity: .6;
}
.product-main-image {
	height: 400px;
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items:center;
	flex-direction: column;
}
.product-main-image img {
	max-height: 100%;
	max-width:100%;
	width:auto!important;
	align-self: center;
}
.content-block.featured-image-left .content-outer,
.content-block.featured-image-right .content-outer {
	display: inline-block;
	vertical-align: middle;
	width: 60%;
}

.content-block.featured-image-left .featured-image,
.content-block.featured-image-right .featured-image {
	position: relative;
	display: inline-block;
	width: 40%;
	text-align: center;
}

.featured-image.valign-top { vertical-align: top; }
.featured-image.valign-middle { vertical-align: middle; }
.featured-image.valign-bottom { vertical-align: bottom; }

.content-block.featured-image-right .content-wrap {
	padding: 0 100px 0 0;
}

.content-block.featured-image-left .content-wrap {
	padding: 0 0 0 100px;
}

.content-block .featured-image {
	border-radius: 5px;
	overflow: hidden;
}

.content-block .featured-image label {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	font-size: 15px;
	font-weight: 500;
	opacity: 0.8;
	padding: 5px;
	box-sizing: border-box;
	text-align: center;
}

.side-by-side .featured-image {
	width: 50%;
	display: inline-block;
}

.side-by-side .featured-image img {
	display: block;
	margin: 0 0 -7px 0;
	width: 100%;
}

.side-by-side .content-outer {
	position: absolute;
	width: 50%;
	text-align: right;
	height: 100%;
	background: #FFF;
	font-size: 0;
}

.side-by-side.right {
	text-align: right;
}

.side-by-side .featured-image.mobile {
	display: none;
}

.side-by-side .featured-image {
	width: 50%;
	display: inline-block;
	vertical-align: top;
	overflow: hidden;
}

.side-by-side.left .content-outer {
	left: 50%;
	top: 0;
	text-align: left;
}

.side-by-side .content-spacer {
	display: inline-block;
	vertical-align: middle;
	height: 100%;
	width: 0;
}

.side-by-side.left .content-wrap {
	width: 520px;
	display: inline-block;
	vertical-align: middle;
	font-size: 15px;
	text-align: left;
	padding: 0 0 0 80px;
}
.side-by-side.product-area {
	z-index:40;
}

.side-by-side.product-area .content-wrap {
	padding-top:50px!important;
}

.tabs-section-top {
	margin-top:15px;
	width:100%;
	font-size:15px;
}

.tabs-section-top .tab {
	display: inline-block;
	border-top:1px solid #afafaf;
	border-left:1px solid #afafaf;
	border-right:1px solid #afafaf;
	padding:5px 25px;
	cursor: pointer;
}

.tabs-section-top .tab.active {
	background-color:#fff;

}
.tabs-section-top .tab:not(.active) {
	z-index:400;
	position: relative;
	color:#999;
	background-color:#fff;
	border-top:1px solid #d3d3d3;
	border-left:1px solid #d3d3d3;
	border-right:1px solid #d3d3d3;
	padding:4px 25px;
}
.tabs-area {
	min-height:150px;
	border:1px solid #afafaf;
	background-color:#fff;
	z-index:401;
	margin-top:-1px;
}
.tab-content {
	font-size:15px;
	padding:15px;
}
.tab-content:not(.active) {
	display: none;
}
.side-by-side.right .content-wrap {
	width: 520px;
	display: inline-block;
	vertical-align: middle;
	font-size: 15px;
	text-align: left;
	padding: 0 80px 0 0;
}

.side-by-side .featured-image img {
	display: block;
	margin: 0;
	width: 100%;
}

.section.side-by-side .title {
	margin: 0 0 10px 0;
}

.grid-block .grid-blocks {
	position: relative;
	font-size: 0;
	text-align: center;
	padding: 30px 0 0;
	margin: 0 0 -50px 0;
}

.single-grid-block {
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	text-align: left;
	margin: 0 0 50px 0;
}

.horizontal-image-row {
	opacity: 0;
}
.horizontal-image-row .section-inner {
	max-width:150%!important;
	width:150%;
	padding-left:0px!important;
}
.horizontal-image-row .title,.horizontal-image-row .subtitle {
	text-align: center;
	width:100vw
}

.grid-blocks .single-grid-block:first-child:after,
.grid-blocks[row="2"] .single-grid-block:nth-child(2n+3):after,
.grid-blocks[row="3"] .single-grid-block:nth-child(3n+4):after,
.grid-blocks[row="4"] .single-grid-block:nth-child(4n+5):after,
.grid-blocks[row="5"] .single-grid-block:nth-child(5n+6):after {
	display: none;
}

.single-grid-block-inner {
	padding: 0 30px;
}

.grid-block .image {
	width: 75%;
	max-width: 240px;
	margin: 0 auto 20px;
	position: relative;
	overflow: hidden;
	border-radius: 200px;
}

.single-grid-block img {
	display: block;
}

.single-grid-block .title {
	font-size: 30px;
	text-align: center;
	line-height: 30px;
	padding: 15px 0 5px 0;
}

.grid-blocks .button-wrap {
	text-align: center;
}

a.single-grid-block {
	text-decoration: none;
}

.team-members {
	text-align: center;
}

.single-team-member {
	display: inline-block;
	vertical-align: top;
	width: 30%;
	box-sizing: border-box;
}

.single-team-member-inner {
	padding: 25px 25px 0;
	font-size: 0;
}

.single-team-member-inner img {
	display: block;
	border-radius: 75px;
	width: 150px;
	height: 150px;
	margin: 0 auto 10px;
}

.single-team-member p small {
	line-height: 1.3em;
	display: block;
	margin-top: 5px;
}

.single-team-member-inner > .content {
	display: block;
	text-align: left;
	font-size: 14px;
	text-align: center;
}

.single-team-member .full-name {
	font-size: 30px;
	line-height: 34px;
}

.single-team-member .position {
	font-size: 16px;
}

.team-members .bio {
	text-align: center;
	padding: 10px 0 0;
}

.team-members .bio p {
	font-size: 18px;
	line-height: 26px;
}

.edit-link a {
	position: fixed;
	top: 140px;
	left: 0px;
	text-decoration: none;
	font-size: 20px;
	font-weight: 600;
	color: #FFF;
	padding: 10px 15px 10px 30px;
	border-radius: 0 5px 5px 0;
	-webkit-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-ms-transition: 0.3s all;
	transition: 0.3s all;
	z-index: 2;
}

.edit-link a:hover {
	color: #FFF;
	padding: 10px 15px 10px 34px;
	-webkit-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-ms-transition: 0.3s all;
	transition: 0.3s all;
}

.news-post-thumbnail {
	display: block;
	position: relative;
}

.news-post-date {
	text-transform: uppercase;
	font-size: 12px;
	opacity: 0.8;
	font-weight: 600;
}

.section.news .button-wrap {
	text-align: left;
}

.news-post {
	position: relative;
	display: inline-block;
	vertical-align: top;
	font-size: 18px;
	text-align: left;
	margin: 0 12px;
	box-shadow: 6px 6px 0 rgba(40,40,40, 0.4);
}

.news-post-details {
	background: #fff;
	padding: 10px;
}

.section.news .news-post-read-more {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	text-align: center;
	line-height: 222px;
	text-decoration: none;
	font-size: 23px;
	text-transform: uppercase;
	letter-spacing: -0.04em;
	opacity: 0;
	-webkit-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-ms-transition: 0.3s all;
	transition: 0.3s all;
}

.section.news .news-post-inner:hover .news-post-read-more {
	line-height: 222px;
	opacity: 1;
	-webkit-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-ms-transition: 0.3s all;
	transition: 0.3s all;
}

.section.news .title {
	padding: 0 0 15px 0;
}

.news-post-thumbnail img {
	display: block;
}

.gform_wrapper form {
	text-align: center;
	margin: 0 -25px;
}

.gform_wrapper div.validation_error {
	text-shadow: 0 2px 0 #d85151;
	font-size: 18px;
	background: #f36969;
	border-radius: 3px;
	display: inline-block;
	width: auto;
	line-height: 20px;
	padding: 15px 25px;
	font-weight: 600;
	margin: -40px 0 40px;
}

.gform_body {
	text-align: left;
}

.entry-content ul.gform_fields {
	margin: 0;
	list-style: none;
}

li.gfield {
	position: relative;
	list-style: none;
	margin: 0;
	display: inline-block;
	vertical-align: top;
	width: 46%;
	margin: 0 2% 50px 2%;
}

.gfield label.gfield_label {
	position: absolute;
	font-size: 18px;
	font-weight: 600;
	height: 52px;
	width: 100%;
	padding: 10px 18px;
	box-sizing: border-box;
	text-transform: uppercase;
	line-height: 34px;
	cursor: pointer;

	top: 0;
	color: transparent;

	-webkit-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-ms-transition: 0.3s all;
	transition: 0.3s all;
}

.gform_wrapper input[type="text"], .gform_wrapper input[type="email"], .gform_wrapper input[type="number"], .gform_wrapper input[type="tel"] {
	font-size: 22px;
	font-weight: 600;
	border: 0;
	border-radius: 0;
	padding: 10px 18px;
	height: 52px;
	box-sizing: border-box;
	width: 100%;
	box-shadow: inset 0 0 0 2px #FFF;

	-webkit-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-ms-transition: 0.3s all;
	transition: 0.3s all;
}

.gform_wrapper .gfield.active input[type="text"], .gform_wrapper .gfield.active input[type="email"], .gform_wrapper .gfield.active input[type="number"], .gform_wrapper .gfield.active input[type="tel"] {
	background: transparent;
}

li.gform_validation_container {
	display: none;
}

.gform_wrapper .gfield.active label.gfield_label {
	top: -45px;
}

li#field_1_5 {
	width: 96%;
}

li.gfield.gfield_html {
	width: 100%;
	text-align: center;
	margin: 0 0 50px;
}

.gfield_html h2 {
	margin: 0;
	font-size: 40px;
	line-height: 44px;
	text-transform: uppercase;
}

.gform_wrapper textarea {
	font-size: 22px;
	font-weight: 600;
	border: 0;
	border-radius: 0;
	padding: 10px 18px;
	box-sizing: border-box;
	width: 100%;
	height: 110px;
	box-shadow: inset 0 0 0 2px #FFF;

	-webkit-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-ms-transition: 0.3s all;
	transition: 0.3s all;
}

.gform_wrapper .gfield.active textarea {
	background: transparent;
}

.gform_footer {
	width: 96%;
}

.gfield_description.validation_message {
	font-size: 15px;
	padding: 0 20px;
}

.gform_footer input[type="submit"] {
	font-size: 22px;
	font-weight: 600;
	border: 0;
	border-radius: 0;
	padding: 10px 30px;
	line-height: 32px;
	height: 50px;
	background: #FFF;
	box-shadow: none;
}

.gform_confirmation_message {
	font-size: 22px;
}

.gform_ajax_spinner {
	display: none !important;
}

.single .featured-image-wrap {
	/*height: 360px;*/
}

.single .featured-image {
	/*position: absolute;*/
	width: 100%;
	max-height: 1000px;
	overflow: hidden;
}

.single .featured-image img {
	display: block;
	width: 100%;
}
.single .featured-image-wrap.inline .featured-image {
	width: 50%;
	overflow: hidden;
	float: left;
	padding: 0 20px 20px 0px;
}
.featured-image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 400px;
}

.single h1.entry-title {
	padding: 0;
	font-size: 40px;
}

.single .entry-content {
	position: relative;
	font-size: 18px;
	border-radius: 5px;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 60px 0 0;
}

.single .post-meta {
	text-transform: uppercase;
	font-size: 14px;
	margin: -5px 0 20px 0;
}

.single .post-date {
	display: inline-block;
	vertical-align: top;
	opacity: 0.7;
	padding: 0 5px 0 0;
}

.single .post-categories {
	display: inline-block;
	vertical-align: top;
	padding: 0 0 0 5px;
}

.single .post-categories a {
	text-decoration: none;
	opacity: 0.7;
	font-weight: 700;
}

.single header.entry-header {
	position: relative;
	padding: 0;
}

.single .post-sharing {
	position: absolute;
	top: 10px;
	right: 0;
}

.single .post-sharing a {
	display: inline-block;
	vertical-align: top;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 13px;
	padding: 6px 12px;
	line-height: 14px;
	cursor: pointer;
	-webkit-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-ms-transition: 0.3s all;
	transition: 0.3s all;
}

.single .post-sharing a:hover {
	opacity: 0.7;
}

a.share-email {
	background: #444;
}

a.share-facebook {
	background: #3b5998;
}

a.share-twitter {
	background: #1da1f2;
}

a.share-linkedin {
	background: #007bb6;
}

a.share-pinterest {
	background: #cb2027;
}

a.share-print {
	background: #DDD;
	color: #444;
}

.error404 .entry-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 0;
	text-align: center;
	font-size: 18px;
}

.error404 .entry-title {
	text-align: center;
	font-size: 50px;
	padding: 150px 0 0 0;
}

.archive article,
.search article,
.blog article {
	font-size: 0;
}

.article-thumb {
	display: inline-block;
	vertical-align: top;
	width: 30%;
	max-height: 240px;
	overflow: hidden;
}

.article-thumb img {
	display: block;
	max-width: 100%;
}

.article-content {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	font-size: 18px;
	box-sizing: border-box;
	padding: 0;
}

[thumb="true"] .article-content {
	width: 70%;
	padding: 0 40px 0 40px;
}

.archive article,
.search article,
.blog article {
	font-size: 0;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	padding: 30px;
	border-bottom: 1px solid #EEE;
}

.archive h1.entry-title,
.search h1.entry-title,
.blog h1.entry-title {
	padding: 0;
}

.archive h1.entry-title a,
.search h1.entry-title a,
.blog h1.entry-title a {
	text-decoration: none;
	text-transform: uppercase;
	font-size: 38px;
}

.archive .entry-summary,
.search .entry-summary,
.blog .entry-summary {
	margin: 0 0 15px 0;
}

.page-nav {
	position: relative;
	margin: 0 auto;
	max-width: 1200px;
	text-align: center;
}

.page-nav .wp-pagenavi {
	padding: 40px 0;
}

.page-nav span.pages {
	display: none;
}

.page-nav span, .page-nav a {
	display: inline-block;
	vertical-align: top;
	font-weight: 600;
	font-size: 16px;
	padding: 8px 10px;
	text-decoration: none;
	min-width: 12px;
	text-align: center;
	background: #EEE;
	margin: 0 4px;
	-webkit-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-ms-transition: 0.3s all;
	transition: 0.3s all;
}

.post.no-results header.entry-header {
	text-align: center;
	margin: 0;
}

.post.no-results .entry-content {
	font-size: 18px;
	text-align: center;
}

.site-search input[type="text"] {
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	border-radius: 0;
	padding: 10px 14px;
	border: 2px solid #EEE;
}

.site-search input[type="submit"] {
	opacity: 0.75;
	background: url(images/header-mag-white.png) center center no-repeat;
	background-size: 38px;
	width: 44px;
	height: 44px;
	border-radius: 0;
	box-shadow: none;
	border: 0;
}

.site-search input[type="submit"]:hover {
	opacity: 1;
}

.sidebar-section {
	display: flex;
}

.sidebar-section.site-wrapper {
	max-width: 1200px;
	margin: 0 auto;
}

.sidebar-sections {
	flex: 2
}

.sidebar {
	width: 20%;
	min-height: 100%;
	text-align: left;
	box-sizing: border-box;
	padding: 28px 35px;
	font-size: 16px;
	display: block;
}

.sidebar-section .sidebar {
	background-color: #111;
}

.sidebar-section.left .sidebar-sections {
	left: 20%;
}

.sidebar-section.sidebar-left .sidebar {
	left: 0;
}

.sidebar-section.sidebar-right .sidebar {
	right: 0;
}

.sidebar-section.site-wrapper .sidebar-sections {
	width: 70%;
}

.sidebar-section.site-wrapper.sidebar-right .sidebar {
	width: 30%;
	padding: 50px 0 50px 75px;
}

.sidebar-section.site-wrapper.sidebar-left .sidebar {
	width: 30%;
	padding: 50px 75px 50px 0;
}

.sidebar-block {
	margin: 0 0 30px 0;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid-column;
	display: table;
}

.sidebar-block.social-presence, .footer-block.social-presence {
	font-size: 0;
}

.sidebar-block.social-presence a, .footer-block.social-presence a,
.post-sharing a.icon-twitter {
	display: inline-block;
	vertical-align: top;
	font-size: 0;
	background: url('/wp-content/themes/ericstates/images/social-icons-ext.png') 0 0 no-repeat;
	background-size: auto 130%;
	margin: 0 10px;
	width: 25px;
	height: 25px;
	border-radius: 15px;
	cursor: pointer;
}

.sidebar-block.social-presence .icon-facebook, .footer-block.social-presence .icon-facebook {
	background-position: 0.5px -3.5px;
	background-color: #3b5998;
}

.sidebar-block.social-presence .icon-twitter,
.footer-block.social-presence .icon-twitter {
	background-color: #212121;
	background-position: -23px -3px;
	background-size: auto 115%;
}

.post-sharing a.icon-twitter {
	background-color: #00ACEE;
    background-position: -35px -6px;
    border-radius: 5px;
}

.post-sharing.icon {
	position: absolute;
	top: unset;
    bottom: 26px;
    right: 0;
    transform: translate(30%, 0);
}

.sidebar-block.social-presence .icon-instagram, .footer-block.social-presence .icon-instagram {
	background-position: -66px 0;
	background-color: #dd5044;
}

.sidebar-block.social-presence .icon-linkedin, .footer-block.social-presence .icon-linkedin {
	background-position: -82px -4px;
	background-color: #007bb6;
}

.sidebar-block.social-presence .icon-pinterest, .footer-block.social-presence .icon-pinterest {
	background-position: -110px -4px;
	background-color: #cb2027;
}

.sidebar-block.social-presence .icon-yelp, .footer-block.yelp .icon-yelp {
	background-position: -135px -4px;
}

.sidebar-block.social-presence .icon-instagram, .footer-block.social-presence .icon-instagram {
	background-position: -247px -4px;
	background-color: #f00075;
	background-size: auto 120%;
}


.sidebar-block-title {
    font-size: 13px;
    line-height: 20px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0 0 5px 0;
    font-family: roboto, sans-serif !important;
    letter-spacing: 0 !important;
    color: #fff;
}

.sidebar form.site-search, .footer-block form.site-search {
	font-size: 0;
}

.sidebar .site-search input[type="text"], .footer-block .site-search input[type="text"] {
	border: 0px;
	width: calc( 100% - 44px);
	box-sizing: border-box;
}

.site-search input[type="submit"] {
	width: 40px;
	height: 37px;
}

.sidebar .news-post, .footer-block .news-post {
	display: block;
}

.sidebar a.news-post-inner, .footer-block a.news-post-inner {
	margin: 0 0 15px 0;
}

.news-post-title {
	display: block;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 25px;
	padding: 0;
	font-weight: 600;
	color: var(--dark-color);
	font-family: var(--heading-font);
}

.sidebar-block.recent-posts .sidebar-block-title,
.footer-block.recent-posts .sidebar-block-title {
	padding: 0 0 10px 0;
}

.sidebar .button-wrap, .footer-block .button-wrap {
	text-align: center;
}

.sidebar a.button, .footer-block a.button {
	padding: 6px 20px;
	font-size: 14px;
}

.sidebar-block.open-text p, .footer-block.open-text p {
	line-height: 2.25em;
	font-size: 14px;
	color: #fff;
}

.standard-row {
	display: flex;
	justify-content: space-between;
	font-size: 20px;
}

.standard-row div {
    margin: 0 30px;
    display: flex;
    align-items: center;
}

.standard-row div:first-of-type {
	margin-left: 0;
}

.standard-row div:last-of-type {
	margin-right: 0;
}

.standard-row-red div {
    background: #ed254e;
	color: #fff;
	box-shadow: 0 0 0 10px #ed254e60;
	padding: 30px 30px;
}




/*

adjust
.single-post .sidebar-section.sidebar-right .sidebar { height }
body.post-template-default .post { min-height }
to correct single blog post issues

*/


.single-post .sidebar-section.sidebar-right .sidebar {
	margin: -60px 0 0 30px;
	width: 25%;
	height: calc( 100% + 225px);
	/*padding: 62px 0 0 50px;*/
}

body.post-template-default .post {
	min-height: 635px;
}

.footer-columns {
	font-size: 0;
	display: flex;
}

.footer-column {
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
	padding: 20px 15px;
}

.footer-columns .footer-column {
	flex: 1;
}

.footer-column.footer-col-2 {
	flex: 2;
}

.footer-block {
	padding: 0;
}

#footer-container img {
	max-width: 45%;
	display: block;
		opacity: .95;
		filter:brightness(100);
}

.footer-block {
	color: #aaa;
}

.footer-block .sidebar-block-title {
	color: #ddd;
}

.footer-block .news-post-date {
	color: #aaa;
}

body.nav-active #footer-container {
	display: none;
}

.sidebar img {
	max-width: 100%;
}

.carousel a.item, .carousel .item {
	text-align: center;
	text-decoration: none;
}

.carousel .item .title {
	font-size: 22px;
	line-height: 40px;
}

.owl-prev {
	position: absolute;
	width: 60px;
	height: 100%;
	top: 0;
	left: -60px;
	background: url(images/carousel-prev.png) center center no-repeat;
	background-size: 35px;
	opacity: 0.3;
	font-size: 0;
}

.owl-next {
	position: absolute;
	width: 60px;
	height: 100%;
	top: 0;
	right: -60px;
	background: url(images/carousel-next.png) center center no-repeat;
	background-size: 35px;
	opacity: 0.3;
	font-size: 0;
}

.owl-prev:hover, .owl-next:hover {
	opacity: 0.5;
}

.carousel .section-inner {
	padding-left: 60px;
	padding-right: 60px;
}

.title-below .owl-prev, .title-below .owl-next {
	height: calc( 100% - 40px );
}

.title-above .owl-prev, .title-above .owl-next {
	height: calc( 100% - 40px );
	padding-top: 40px;
}

.assistive-text:focus {
	opacity: 1;
	color:#333;
	visibility: visible;
}
.assistive-text {
	z-index: 999;
}
.assistive-text:not(:focus) {
	opacity: 0;
}
.assistive-text, .site .screen-reader-text {
	clip:inherit;
}

.section.background-image.short-img img.section-background {
	position: absolute;
	height: 100%;
	max-width: none;
	width: auto;
}

.section.background-image.short-img .section-inner-wrap-1 {
	position: relative;
}

#custom-scripts {
	display: none;
}

.single .featured-image-wrap.full-width .featured-image {
	width: 100%;
	float: none;
}

.single .featured-image-wrap.full-width {
	display: block;
	width: 100%;
	margin: 0 0 20px;
}

.single .featured-image-wrap.hero .featured-image {
	position: relative;
	max-height: 400px;
}

.single .featured-image-wrap.hero header.entry-header {
	position: absolute;
	bottom: 20px;
	left: 0;
	width: 100%;
}

.featured-image-wrap.hero .featured-image-overlay {
	box-shadow: inset 0 -230px 100px -100px rgb(248, 248, 248);
}

#single-header-inner {
	margin: 0 auto;
	max-width: 1200px;
	position: relative;
}

.single-post #content-wrapper.image-hero .sidebar-section.sidebar-right .sidebar {
	margin: 0;
	padding: 0 0 28px 35px;
	background: transparent;
}

.single #content-wrapper.image-hero .entry-content {
	padding-top: 0;
}

/* LANDING PAGE SPECIFIC STYLES */
.page-template-landing #footer-container {
	height: 64px;
}

.page-template-landing footer {
	padding: 20px 0;
}

.section-rotator .button-wrap {
	position: relative;
	z-index: 10;
}

a.rotator-slide-content-link {
	display: block;
}

.post-content {
	font-size: 18px;
}


.document-list-row {
	background-color: #f2f3f7;
	padding: 10px 20px;
	margin: 12px 0;
}

.document-link-name {
	font-size: 20px;
	color: #333;
}

.section.document-list .section-inner {
	padding: 0 20px 60px;
}

.document-link-filename {
	font-style: italic;
	font-size: 13px;
	margin-top: -6px;
}

#home-news {
	display: none;
}

#home-stats .single-grid-block .content h3 {
	font-size: 40px;
	font-family: Montserrat, sans-serif;
	font-weight: normal;
	color: #a8bbce;
	margin-bottom: 0;
	line-height: 1.4em;
}
#home-stats .single-grid-block {
	text-align: center;
	width: 33.3%;
}

#home-stats .single-grid-block .content p span {
	display: block;
	font-size: 16px;
	font-family: roboto, sans-serif;
	text-transform: none;
	margin: 0;
	padding: 0;
}
#home-stats .single-grid-block .content p {
	font-size: 21px;
	font-family: Montserrat, sans-serif;
	text-transform: uppercase;
	font-weight: 600;
		margin: 0 !important;
	line-height: 1.0em;
}


#home-hero .rotator-slide-content-width {
	text-align: left;
	max-width: 773px;
	margin: 0;
}

#home-hero .rotator-title {
    color: var(--dark-color);
	font-size: 42px;
		line-height: 1.15em;
		margin-bottom: 12px;
		font-weight: 500;
		letter-spacing: -0.02em;
		text-transform: inherit;
}

#home-hero .rotator-subtitle {
    color: var(--dark-color);
    font-size: 20px;
    font-size: clamp(16px, 0.8vw, 20px);
    line-height: 20px;
    line-height: clamp(15px, 1.85vw, 28px);
    max-width: 100%;
}

#home-hero a.button {
	border-radius: 50px;
	padding: 10px 40px;
	font-weight: 600;
	-webkit-font-smoothing: antialiased;
	letter-spacing: 0.01em;
	font-family: montserrat;
		position: relative;
		overflow: hidden;
}

home-hero a.button:hover {
	background: #f3284d;
	transition: 0.2s;
}

#home-hero a.button:after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,transparent,rgba(255,255,255,.4),transparent);
	transition: 0.25s;
	transition-delay: 0.2s;
}

#home-hero a.button:hover:after {
	left:60%;
}

nav#site-navigation {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

a#twitter-link {
	width: 29px;
	height: 29px;
	border-radius: 15px;
	margin-left: 40px;
	background: url(/wp-content/themes/ericstates/images/social-icons-ext.png) 0 0 no-repeat;
	background-size: auto 110%;
	background-color: #212121;
	background-position: -25px -3px;
}

div#home-video .column:first-child {
	min-width: 670px;
	position: relative;
}

.row .section-inner {
	display: flex;
	justify-content: space-between;
}

#home-video.row .section-inner {
	z-index: 1;
	padding-bottom: 120px;
}

.column .column-title {
	font-size: 45px;
	font-family: Montserrat, sans-serif;
		font-weight: 600;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
	letter-spacing: 0.01em;
}

.column .column-title:after {
	content: ' ';
	width: 2px;
	height: 2px;
	display: block;
	position: absolute;
	top: 50%;
	right: -12px;
	box-shadow:
	3px 0 0 0 var(--primary-color),
	6px 0 0 0 var(--primary-color),
	9px 0 0 0 var(--primary-color),
	12px 0 0 0 var(--primary-color),
	15px 0 0 0 var(--primary-color),
	18px 0 0 0 var(--primary-color),
	21px 0 0 0 var(--primary-color),
	24px 0 0 0 var(--primary-color),
	27px 0 0 0 var(--primary-color),
	30px 0 0 0 var(--primary-color),
	33px 0 0 0 var(--primary-color),
	36px 0 0 0 var(--primary-color),
	39px 0 0 0 var(--primary-color),
	42px 0 0 0 var(--primary-color),
	45px 0 0 0 var(--primary-color),
	48px 0 0 0 var(--primary-color),
	51px 0 0 0 var(--primary-color),
	54px 0 0 0 var(--primary-color),
	57px 0 0 0 var(--primary-color),
	60px 0 0 0 var(--primary-color),
	63px 0 0 0 var(--primary-color),
	66px 0 0 0 var(--primary-color),
	69px 0 0 0 var(--primary-color),
	72px 0 0 0 var(--primary-color),
	75px 0 0 0 var(--primary-color),
	78px 0 0 0 var(--primary-color),
	81px 0 0 0 var(--primary-color),
	84px 0 0 0 var(--primary-color),
	87px 0 0 0 var(--primary-color),
	90px 0 0 0 var(--primary-color),
	93px 0 0 0 var(--primary-color),
	96px 0 0 0 var(--primary-color),
	99px 0 0 0 var(--primary-color),
	102px 0 0 0 var(--primary-color),
	105px 0 0 0 var(--primary-color),
	108px 0 0 0 var(--primary-color),
	111px 0 0 0 var(--primary-color),
	114px 0 0 0 var(--primary-color),
	117px 0 0 0 var(--primary-color),
	120px 0 0 0 var(--primary-color),
	123px 0 0 0 var(--primary-color),
	126px 0 0 0 var(--primary-color),
	129px 0 0 0 var(--primary-color),
	132px 0 0 0 var(--primary-color),
	135px 0 0 0 var(--primary-color),
	138px 0 0 0 var(--primary-color),
	141px 0 0 0 var(--primary-color),
	144px 0 0 0 var(--primary-color),
	147px 0 0 0 var(--primary-color),
	150px 0 0 0 var(--primary-color),
	153px 0 0 0 var(--primary-color),
	156px 0 0 0 var(--primary-color),
	159px 0 0 0 var(--primary-color),
	162px 0 0 0 var(--primary-color),
	165px 0 0 0 var(--primary-color),
	168px 0 0 0 var(--primary-color),
	171px 0 0 0 var(--primary-color),
	174px 0 0 0 var(--primary-color),
	177px 0 0 0 var(--primary-color),
	180px 0 0 0 var(--primary-color),
	183px 0 0 0 var(--primary-color),
	186px 0 0 0 var(--primary-color),
	189px 0 0 0 var(--primary-color),
	192px 0 0 0 var(--primary-color),
	195px 0 0 0 var(--primary-color),
	198px 0 0 0 var(--primary-color),
	201px 0 0 0 var(--primary-color),
	204px 0 0 0 var(--primary-color),
	207px 0 0 0 var(--primary-color),
	210px 0 0 0 var(--primary-color),
	213px 0 0 0 var(--primary-color),
	216px 0 0 0 var(--primary-color),
	219px 0 0 0 var(--primary-color),
	222px 0 0 0 var(--primary-color),
	225px 0 0 0 var(--primary-color),
	228px 0 0 0 var(--primary-color),
	231px 0 0 0 var(--primary-color),
	234px 0 0 0 var(--primary-color),
	237px 0 0 0 var(--primary-color),
	240px 0 0 0 var(--primary-color),
	243px 0 0 0 var(--primary-color),
	246px 0 0 0 var(--primary-color),
	249px 0 0 0 var(--primary-color),
	252px 0 0 0 var(--primary-color),
	255px 0 0 0 var(--primary-color),
	258px 0 0 0 var(--primary-color),
	261px 0 0 0 var(--primary-color),
	264px 0 0 0 var(--primary-color),
	267px 0 0 0 var(--primary-color),
	270px 0 0 0 var(--primary-color),
	273px 0 0 0 var(--primary-color),
	276px 0 0 0 var(--primary-color),
	279px 0 0 0 var(--primary-color),
	282px 0 0 0 var(--primary-color),
	285px 0 0 0 var(--primary-color),
	288px 0 0 0 var(--primary-color),
	291px 0 0 0 var(--primary-color),
	294px 0 0 0 var(--primary-color),
	297px 0 0 0 var(--primary-color),
	300px 0 0 0 var(--primary-color),
	303px 0 0 0 var(--primary-color),
	306px 0 0 0 var(--primary-color),
	309px 0 0 0 var(--primary-color),
	312px 0 0 0 var(--primary-color),
	315px 0 0 0 var(--primary-color),
	318px 0 0 0 var(--primary-color),
	321px 0 0 0 var(--primary-color),
	324px 0 0 0 var(--primary-color),
	327px 0 0 0 var(--primary-color),
	330px 0 0 0 var(--primary-color),
	333px 0 0 0 var(--primary-color),
	336px 0 0 0 var(--primary-color),
	339px 0 0 0 var(--primary-color),
	342px 0 0 0 var(--primary-color),
	345px 0 0 0 var(--primary-color),
	348px 0 0 0 var(--primary-color),
	351px 0 0 0 var(--primary-color),
	354px 0 0 0 var(--primary-color),
	357px 0 0 0 var(--primary-color),
	360px 0 0 0 var(--primary-color),
	363px 0 0 0 var(--primary-color),
	366px 0 0 0 var(--primary-color),
	369px 0 0 0 var(--primary-color),
	372px 0 0 0 var(--primary-color),
	375px 0 0 0 var(--primary-color),
	378px 0 0 0 var(--primary-color),
	381px 0 0 0 var(--primary-color),
	384px 0 0 0 var(--primary-color),
	387px 0 0 0 var(--primary-color),
	390px 0 0 0 var(--primary-color),
	393px 0 0 0 var(--primary-color),
	396px 0 0 0 var(--primary-color),
	399px 0 0 0 var(--primary-color),
	402px 0 0 0 var(--primary-color),
	405px 0 0 0 var(--primary-color),
	408px 0 0 0 var(--primary-color),
	411px 0 0 0 var(--primary-color),
	414px 0 0 0 var(--primary-color),
	417px 0 0 0 var(--primary-color),
	420px 0 0 0 var(--primary-color),
	423px 0 0 0 var(--primary-color),
	426px 0 0 0 var(--primary-color),
	429px 0 0 0 var(--primary-color),
	432px 0 0 0 var(--primary-color),
	435px 0 0 0 var(--primary-color),
	438px 0 0 0 var(--primary-color),
	441px 0 0 0 var(--primary-color),
	444px 0 0 0 var(--primary-color),
	447px 0 0 0 var(--primary-color),
	450px 0 0 0 var(--primary-color);
}

div#home-video {
	margin-top: -30px;
}

div#home-video .padded-bg {
	margin-top: 30px;
}

.padded-bg.primary {
	background-color: var(--primary-color);
}
.news .padded-bg {
	margin: 60px 0 0 0;
	position: relative;
}

.news-info {
	flex: 1;
}

.news-info .title {
	color: #fff;
	font-size: 30px;
}

.news-info .subtitle {
	color: #fff;
	font-size: 17px;
	font-weight: normal;
}

.news .button-wrap a.button.primary {
	background-color: #fff;
	color: var(--primary-color);
	border-radius: 50px;
	padding: 10px 40px;
}

.news .padded-bg:before {
	content: ' ';
	height: 102%;
	position: absolute;
	left: 0;
	width: calc((100% - 1200px) / 2);
	background-color: #fff;
	clip-path: polygon(0 0, 51% 0, 100% 100%, 0 100%);
	top: -1px;
}

div#home-video .column:first-child:before {
	content: ' ';
	width: 1500px;
	height: calc(100% + 180px);
	background-color: rgba(213, 213, 213, 0.5);
	position: absolute;
	right: 100px;
	top: -90px;
	clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
	z-index: -1;
}

.entry-content iframe {
	margin-bottom: 0;
}

.section.news .section-inner.full-padding {
	display: flex;
}

.news-posts {
	text-align: center;
	display: flex;
	justify-content: space-between;
	flex: 2;
	margin-top: -97px;
}

.news-post-inner {
	padding: 0;
}

.news-post-excerpt p {
	font-size: 11px;
	margin-top: 4px;
}

.tabs-header .layout-tab {
	background-color: var(--dark-color);
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding: 10px 35px;
	margin: 2px;
	flex: 1;
	display: flex;
	justify-content: center;
	position: relative;
	cursor: pointer;
}

.tab-title {
	color: #fff;
	font-size: 13px;
	line-height: 19px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.tabs-header {
	display: flex;
}

.tab-content-text-title.title:before {
	content: 'Q: ';
}

.tab-content-text-title.title {
	font-size: 20px;
	text-transform: capitalize;
	font-family: var(--body-font) !important;
	font-weight: 600;
}

.tab.active {
	opacity: 0.7;
	position: relative;
}

.tabs-header .layout-tab.active:after {
	content: ' ';
	background-color: var(--dark-color);
	width: 100%;
	height: 35%;
	position: absolute;
	left: 0;
	top: 100%;
	opacity: 0.2;
	clip-path: polygon(0 0, 100% 0, 50% 100%, 0 0);
}

.tab-content p {
	line-height: var(--entry-content-line-height);
	font-size: var(--entry-content-font-size);
}

.title.tab-layout-title {
	text-align: center;
	position: relative;
	width: auto;
	margin: 0 auto 25px;
	padding: 0 0 7px;
}

.title.tab-layout-title:after {
	width: 4px;
	height: 4px;
	background-color: var(--primary-color);
	border-radius: 8px;
	box-shadow:
		6px 0 0 0 var(--primary-color),
		12px 0 0 0 var(--primary-color),
		18px 0 0 0 var(--primary-color),
		24px 0 0 0 var(--primary-color),
		30px 0 0 0 var(--primary-color),
		36px 0 0 0 var(--primary-color),
		42px 0 0 0 var(--primary-color),
		48px 0 0 0 var(--primary-color),
		54px 0 0 0 var(--primary-color),
		60px 0 0 0 var(--primary-color),
		66px 0 0 0 var(--primary-color),
		72px 0 0 0 var(--primary-color),
		78px 0 0 0 var(--primary-color),
		84px 0 0 0 var(--primary-color),
		90px 0 0 0 var(--primary-color),
		96px 0 0 0 var(--primary-color),
		102px 0 0 0 var(--primary-color),
		108px 0 0 0 var(--primary-color),
		114px 0 0 0 var(--primary-color),
		120px 0 0 0 var(--primary-color);
	content: ' ';
	position: absolute;
	bottom: 0;
	left: 44.9%;
}

.rotator-slide-content-link:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	background: linear-gradient(-90deg, #dfe6ed, transparent);
	width: 100%;
	height: 100%;
	opacity: .8;
	filter: blur(50px);
}


#what-do-states-receive .content-outer {
	width: 50%;
}

#what-do-states-receive .featured-image {
	width: 50%;
}

#what-do-states-receive {
	overflow: inherit;
		z-index: 1;
}

.content-floating-image {
	overflow: visible;
}

.content-floating-image img {
	position: absolute;
	z-index: 1;
}

#who-we-are-content img {
	width: 1002px;
	top: -3px;
	right: 0px;
}

#who-we-are-content .section-inner.full-padding {
position: initial;
}

.example-charts-container {
	display: flex;
}

.chart-container {
	display: inline-block;
	width: 500px;
}

#who-we-are-content h2.title {
	font-size: 60px;
}

#who-we-are-content p {
	font-size: 17px;
}

#who-we-are-content .content-outer {
    max-width: 500px;
}

#member-states-map {
	padding: 0px 0 0px 0;
}
#member-states-map .content-wrap.align-left {
	padding: 0 0 0 40px !important;
	width: 100%;
}
#member-states-map .content-outer {
	width: 40%;
}
#member-states-map .featured-image.left.valign-middle {
	width: 60%;
	overflow: visible;
}

#member-states-map .featured-image.left.valign-middle img {
    margin-left: -60px;
}

#who-we-are-content {
	background-image: linear-gradient(to right, #e9eef2 , #ccd8e3);
	padding: 30px 0;
}

.title-banner {
	    background-image: linear-gradient(to right, #e9eef2 , #ccd8e3);
}

.title-banner h1.title, .title-banner h3 {
    color: #26394e;
}

.title-banner .section-inner .content-wrap h1.title {
    font-size: 60px;
    letter-spacing: 0.02em;
    font-weight: 600;
}

.title-banner h3.subtitle {
	max-width: 60%;
    font-size: 17px !important;
		font-family: roboto, sans-serif;
		font-weight: normal;
		opacity: 1;
}

.page .content-outer a.button.primary {
	border-radius: 40px;
	font-family: montserrat;
	margin-top: 20px;
	font-size: 15px;
}

#ericatwork .content-outer {
	width: 40%;
}
#ericatwork .featured-image.left.valign-middle {
	width: 60%;
}

.main-navigation .current-menu-item > a,
.current-menu-ancestor > a {
	background: #26394e;
	color: #fff !important;
	font-weight: normal !important;
	border-radius: 10px;
}

.accordion-title {
	background: #273a4e;
	color: #fff;
	font-size: 20px;
	padding: 10px 20px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.accordion-content.hidden {
	display: none;
}

.accordion-content {
	padding: 30px 20px;
	color: #333;
	background: #f3f3f3;
	font-weight: 600;
}

.accordion-row {
	margin-bottom: 30px;
}

.accordion-title-arrow {
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	width: 7px;
	height: 7px;
	transform: rotate(-45deg);
}

.accordion-title.open .accordion-title-arrow {
	transform: rotate(135deg);
}

.timeline-head {
	text-align: center;
}

.timeline-content-inner {
	display: flex;
	justify-content: space-between;
	position: relative;
}

.timeline-content-inner:before {
	border-top: 1px solid #273a4e;
	position: absolute;
	top: 0;
	width: 91%;
	height: 7px;
	content: ' ';
	left: 50%;
	transform: translate(-50%, 0);
}

.timeline-content {
	padding: 60px;
}

.timeline-item {
	position: relative;
	padding: 40px 20px;
	text-align: center;
}

.timeline-item:before {
	content: ' ';
	width: 30px;
	height: 30px;
	background: #ed254e;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
}

.timeline-item-date {
	font-weight: 600;
	font-size: 17px;
}

.timeline-item:after {
	content: ' ';
	width: 6px;
	height: 10px;
	border-right: 2px solid #fff;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-59%, -60%) skew(2deg, 0deg) rotate(29deg);
	border-bottom: 2px solid #fff;
}

#header-banner h3.subtitle a {
    color: #26394e;
    text-decoration: underline;
    font-weight: 600;
}

#ericatwork {
    padding-bottom: 40px;
}

#document-grid {
    background: #e8eef3;
		overflow: visible;
}

#document-grid .grid-blocks {
    margin-top: -120px;
    z-index: 62;
    position: relative;
    padding-bottom: 60px;
}

#document-grid .single-grid-block.Full.Content {
	max-width: 24%;
	margin: 0 0.5% 20px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

#document-grid .single-grid-block-inner {
    background: #fff;
	min-height: 330px;
	padding-top: 20px;
}

#document-grid .title {
    font-size: 16px;
    font-family: montserrat, sans-serif;
    letter-spacing: -0.02em;
    text-align: left;
    line-height: 1.45em;
    font-weight: 600;
}

#document-grid a.button.primary {
    background: none;
    color: #f43860;
    font-family: roboto bold, roboto, sans-serif;
    text-transform: lowercase;
    text-align: left;
    padding: 10px 0;
}

#document-grid .button-wrap {
    text-align: left;
}

#document-grid .image {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 0;
	max-width:150px;
}

.one-of-three {
    width: calc(1200px * 0.33);
    padding: 60px;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
}

.first-of-three {
	margin-left: calc((100% - 1200px - 60px) / 2);
}

.last-of-three {
	margin-right: calc((100% - 1200px - 60px) / 2);
}

.footer-block.open-text span.s1 {
	line-height: 1.63em !important;
	display:block;
	margin-bottom:7px;
}

.footer-column.footer-col-4 {
	display: inline-block;
	width: auto;
	flex: auto;
}

.emphasized-subtitle .subtitle {
	line-height: 46px;
	padding-bottom: 40px;
	background-color: #ccc;
	padding: 20px;
	margin-bottom: 60px;
	color: #000;
}

.emphasized-subtitle .content p {
    font-size: 20px;
}

#member-states-map .featured-image.right.valign-middle img {
    width: 140%;
    max-width: none;
}



h1, h2, h3, h4, h5 {
	-webkit-font-smoothing: antialiased !important;
}


.home .rotator-slide-content {
	margin:120px -100px 0 -4px;
}

.section.timeline {
	display: none;
}

.table-block table {
	margin: 0 auto 40px auto !important;
	max-width: 1200px;
}

.table-block table thead tr {
	background: #c32141;
}

.table-block tbody tr td {
	font-size: 14px;
	color: #293a4e;
	padding: 5px 20px;
}

.table-block th {
	color: #fff;
	padding: 1px 20px;
	font-size: 14px;
}

.table-block tbody tr:nth-of-type(odd) {
	background: #e6ecf1;
}

@media screen and (max-width:768px) {
	.table-block table {
		width: 90%;
		max-width: none;
	}
}