/**********************************
 *  Lead Gear Custom CSS   
 *********************************/

/**********************************
 *  Branding & Colors Variables
 *********************************/

 :root {
	/* Dark Grey/Black (Default / Text) */
	--darkdefault: #5a5a5a;
	--darkdefaultrgb: 90, 90, 90;

	/* Light Grey */
	--light: #f4f4f4;
	--lightrgb: 244, 244, 244;

	/* Alternate Light Grey */
	--lightalt: #e0e0e0;
	--lightaltrgb: 224, 222, 224;

	/* Light Grey Border */
	--lightborder: #dddddd;
	--lightborderrgb: 221, 221, 221;

	/* Primary Color (Also used for Dark Style Sections by default) */
	--primary: #0b2a3d;
	--primaryrgb: 11, 42, 61;

	/* Primary Color Alternate (Accent/Hover) */
	--primaryalt: #007976;
	--primaryaltrgb: 0, 121, 118;

	/* Primary Color Border */
	--primaryborder: #066294;
	--primaryborderrgb: 6, 98, 148;

	--beige: #efefdf;

	/* CTA */
	--cta: #81b041;
	--ctargb: 129, 176, 65;

	/* CTA Alternate (Accent/Hover) */
	--ctaalt: #6b8e2e;
	--ctaaltrgb: 107, 142, 46;

	--defaultVerticalSpacing: 80px;

	@media only screen and (max-width: 960px) {
		--defaultVerticalSpacing: 80px;
	}

	@media only screen and (max-width: 600px) {
		--defaultVerticalSpacing: 60px;
	}
}

/********************** * Header & Top Bar *********************/
html[lang] {
	margin-top: 0 !important;
}
header.site-header {
	padding: 0 5%;
	box-shadow: 0 0 12px rgb(0 0 0 / 0%);
	position: fixed;
	width: 100%;
	transition: top 400ms, box-shadow 400ms;
}
.fixed-nav header.site-header {
	top: 0 !important;
	box-shadow: 0 0 12px rgb(0 0 0 / 15%);
}
header.site-header > .wrap {
	max-width: 100%;
	max-width: 1600px;
	margin: 0 auto;
}
.nav-primary .menu > li:last-child > a {
	padding-right: 0;
}
.genesis-nav-menu > li > a {
	padding: 25px 15px;
	font-size: 16px;
	font-weight: 500;
	color: #5a5a5a;
	transition: all 400ms, font-weight 0s;
}
.genesis-nav-menu a:not([href]) {
    cursor: default;
}
div#top-bar {
	background: var(--primary);
	color: #fff;
	font-size: 0.875rem;
	margin: 0;
	position: fixed;
	top: 0;
	width: 100%;
	height: 40px;
	z-index: 2;
	transition: top 400ms;
	padding: 0 5%;
	font-weight: 400;
}
.top-bar-hidden div#top-bar {
	display: none !important;
	height: 0 !important;
	opacity: 0 !important;
	position: absolute !important;
	left: -9999px !important;
}
.fixed-nav div#top-bar {
	top: -34px;
}
div#top-bar a {
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}
div#top-bar a:hover {
	opacity: 0.7;
}
.social svg {
	width: auto;
	height: 16px;
	position: relative;
	top: 3px;
}
#top-bar .row-inner {
	text-align: right;
	padding: 0;
	height: 40px;
	max-width: 100%;
}
#top-bar .social {
	align-self: flex-end;
}
#top-bar .contact-info {
	float: left;
	display: inline-block;
	padding-top: 9px;
}
#top-bar .social {
	display: inline-block;
}
#top-bar .top-menu {
	display: inline-block;
	vertical-align: top;
	padding-top: 9px;
	/* padding-bottom: 10px; */
}
.social a {
	display: inline-block;
	padding: 0 4px;
}
.social a:first-child {
	padding-left: 0;
}
#top-bar .social {
	margin-right: 20px;
	padding-top: 9px;
	vertical-align: top;
}
.top-menu a {
	padding: 0 10px;
}
.top-menu a:last-child {
	border: 0;
	padding-right: 0;
}
.top-menu a:first-child {
	padding-left: 0;
}
#top-bar .contact-info .phone {
	display: inline-block;
	margin-right: 20px;
}
.contact-info svg {
	height: 16px;
	position: relative;
	top: 3px;
	display: inline-block;
	margin-right: 8px;
}
#top-bar .contact-info svg {
	color: #fff;
	width: 16px;
	min-width: 16px;
	height: 16px;
}
ul#menu-top-bar-menu {
	display: flex;
}
ul#menu-top-bar-menu a {
	display: inline-block;
	padding: 0 10px;
	line-height: 1.25;
}
ul#menu-top-bar-menu li {
	border-right: solid 1px;
	border-color: rgba(255, 255, 255, 0.2);
}
ul#menu-top-bar-menu li:last-child {
	border: 0;
}
ul#menu-top-bar-menu li:first-child a {
	padding-left: 0;
}
ul#menu-top-bar-menu li:last-child a {
	padding-right: 0;
	border-right: 0;
}
nav#genesis-nav-primary {
	padding-bottom: 0;
	transition: padding 400ms;
	padding-top: 0;
	margin-left: auto;
}
.title-area {
	transition: max-width 400ms;
}
.fixed-nav.wp-custom-logo .site-container div.title-area {
	/* max-width: 150px!important; */
}
.fixed-nav nav#genesis-nav-primary {
	/* padding-top: 3px; */
}
.nav-primary .menu li.nav-cta {
	padding-left: 15px;
}
nav.nav-primary .menu li.nav-cta > a {
	padding: 12px 18px;
	background: var(--cta);
	border-radius: 4px;
	transition: all 300ms, font-weight 0s;
	color: #fff;
}
nav.nav-primary .menu li.nav-cta.menu-item-has-children > a {
	padding-right: 44px;
}
.nav-primary .menu li.nav-cta > a:hover {
	background: var(--ctaalt);
}
button#genesis-mobile-nav-primary {
	font-size: 0;
	margin: 0 5% 0 0;
}
.site-header .menu-toggle::before {
	color: var(--darkdefault);
	width: 40px;
	font-size: 40px !important;
	height: 40px;
	margin: 0;
}
nav#genesis-nav-primary ul.menu li.menu-item-has-children > a:after {
	/* content: ''; */
	display: inline-block;
	position: absolute;
	width: 7px;
	height: 7px;
	transform: rotate(45deg);
	margin-left: 8px;
	border-right: solid 2px;
	border-bottom: solid 2px;
	border-color: rgba(0, 0, 0, 0.5);
	top: calc(50% - 6px);
}
nav#genesis-nav-primary ul.menu li.menu-item-has-children {
	/* padding-right: 15px; */
}

.genesis-nav-menu > li > a:hover,
.genesis-nav-menu > li > a:focus,
.genesis-nav-menu > li > a:active {
	outline: none;
}

#top-bar input#searchform-1 {
	padding: 12px 20px 12px 20px;
	font-size: 14px;
	border: 0;
	background: rgba(255, 255, 255, 0.25);
	color: #ffffff;
	width: 300px;
}
#top-bar input#searchform-1::placeholder {
	color: #fff;
	padding-left: 22px;
	background: url(/wp-content/uploads/search-reg.svg) left center no-repeat;
	background-size: 14px;
}
#top-bar input#searchform-1::-moz-placeholder {
	background: none;
}
#top-bar form.search-form {
	margin-right: 20px;
	align-self: flex-end;
	display: inline-block;
}
#top-bar input.search-form-submit {
	display: none;
}

#top-bar span.name {
	font-weight: 700;
}

#top-bar .contact-info > span,
#top-bar .contact-info > a {
	display: inline-block;
	margin-right: 20px;
}

div#search-wrap {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.8);
}
div#close-search {
	display: block;
	margin-left: 16px;
	font-size: 24px;
	color: rgba(255, 255, 255, 0.8);
}
div#close-search svg {
	width: 24px;
}
#search-wrap form.search-form {
	display: flex;
}
#search-wrap form.search-form input {
	height: 50px;
	padding: 10px;
	border: 0;
}
#search-wrap form.search-form input.search-form-submit {
	margin-top: 0;
	height: 50px;
	margin-left: 10px;
	background: var(--primary);
	border-radius: 0;
	font-weight: 700;
	text-transform: uppercase;
	padding: 10px 20px;
}
.search .row.page-title {
	padding: 0;
	padding: 60px 0 80px 0;
}
.search article {
	border-bottom: solid 1px var(--lightborder);
	padding-bottom: 40px;
}
.search a.entry-image-link {
	display: none;
}
body.noscroll {
	overflow: hidden;
}
.header-inline header.site-header > .wrap,
.header-stacked header.site-header > .wrap,
.header-inline #top-bar .row-inner,
.header-stacked #top-bar .row-inner {
	max-width: 1400px;
}
.header-stacked header.site-header {
	padding: 0;
}
.header-stacked header.site-header > .wrap {
	width: 90%;
}
.header-stacked nav#genesis-nav-primary {
	width: 100%;
	background: var(--light);
	padding: 0 5%;
}
.header-stacked nav#genesis-nav-primary > .wrap {
	max-width: 1400px;
	margin: 0 auto;
}
.header-stacked .nav-primary .genesis-nav-menu a {
	padding: 20px 15px;
}
.header-stacked.fixed-nav .nav-primary .genesis-nav-menu a {
	padding: 10px 15px;
}
.header-stacked.fixed-nav .nav-primary .menu li.nav-cta > a {
	background: none;
	padding: 0;
	color: var(--darkdefault);
	padding-top: 1px;
}
.header-stacked.fixed-nav .nav-primary .menu li.nav-cta > a:hover {
	color: var(--primaryalt);
}
.header-stacked .nav-primary .menu li.nav-cta > a {
	position: relative;
}
.header-stacked nav ul > li.nav-cta {
	float: right;
}

.header-stacked .nav-primary .menu li.nav-cta {
	padding-top: 8px;
}

.header-stacked.fixed-nav .nav-primary .menu li.nav-cta {
	padding-top: 10px;
}

.header-stacked .nav-primary .genesis-nav-menu ul.sub-menu a {
	padding: 15px;
}
.nav-transparent header.site-header {
	background: none;
	box-shadow: none !important;
	transition: all 300ms;
}
.nav-transparent.fixed-nav header.site-header {
	background: #fff;
	box-shadow: 0 0 12px rgb(0 0 0 / 15%) !important;
}
.nav-transparent div#top-bar {
	background: rgba(0, 0, 0, 0.5);
}
.nav-transparent .site-inner:before {
	content: "";
	width: 100%;
	height: 200px;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent);
	z-index: 1;
}
.nav-transparent .genesis-nav-menu > li > a {
	color: #fff;
	transition: all 300ms;
}
.nav-transparent .genesis-nav-menu > li > a:hover,
.nav-transparent .genesis-nav-menu > li > a:focus,
.nav-transparent .genesis-nav-menu > li.current-menu-item > a {
	color: var(--cta);
}
.nav-transparent.fixed-nav .genesis-nav-menu > li > a {
	color: var(--darkdefault);
}
.nav-transparent.header-stacked nav#genesis-nav-primary {
	background: none;
}
.nav-transparent.header-stacked.fixed-nav nav#genesis-nav-primary {
	background: var(--light);
}
.nav-transparent
	nav#genesis-nav-primary
	ul.menu
	li.menu-item-has-children
	> a:after {
	border-color: #fff;
}
.nav-transparent.fixed-nav
	nav#genesis-nav-primary
	ul.menu
	li.menu-item-has-children
	> a:after {
	border-color: rgba(0, 0, 0, 0.5);
}
.nav-transparent img.custom-logo {
	opacity: 0;
	transition: opacity 300ms;
}
.nav-transparent.fixed-nav img.custom-logo {
	opacity: 1;
}
.nav-transparent.fixed-nav a.custom-logo-link {
	background: none;
}
body.isMobile header.site-header {
	background: #fff;
}
body.isMobile .genesis-nav-menu > li > a {
	color: var(--darkdefault);
}
@media only screen and (min-width: 601px) {
	body.admin-bar .site-header {
		top: 0;
	}
	.admin-bar div#wpadminbar {
		left: 0;
		width: 34px !important;
		min-width: 0;
		overflow: hidden;
	}
	.admin-bar div#wpadminbar:hover {
		left: 0;
		padding-bottom: 80px;
		width: 100% !important;
		overflow: visible;
	}
	.nav-transparent:not(.isMobile) .site-inner {
		margin-top: 0 !important;
	}
}
@media only screen and (max-width: 1500px) {
	#top-bar span.address {
		display: none;
	}
}

@media only screen and (max-width: 1320px) {
	.genesis-nav-menu > li > a {
		padding-left: 10px !important;
		padding-right: 10px !important;
		font-size: 15px;
	}
	.nav-primary .menu li.nav-cta {
		padding-left: 4px;
	}
	.wp-custom-logo .title-area {
		max-width: 200px !important;
	}
}

@media only screen and (max-width: 1150px) {
	.genesis-nav-menu > li > a {
		padding-left: 8px !important;
		padding-right: 8px !important;
		font-size: 14px;
	}
	.wp-custom-logo .title-area {
		max-width: 150px !important;
	}
	.wp-custom-logo .title-area img {
		vertical-align: middle;
	}
	#top-bar span.email {
		display: none;
	}
}
@media only screen and (max-width: 959px) {
	body.mobile-mega-menu .menu-toggle {
		display: none !important;
	}
	body.mobile-mega-menu #genesis-mobile-mega-menu-button {
		display: block !important;
		margin-right: 5vw;
	}
	.wp-custom-logo .site-container .title-area {
		max-width: 300px;
	}
	#genesis-nav-primary ul.menu li.nav-cta > a {
		padding: 0;
	}
	#genesis-nav-primary ul.menu li.nav-cta > a {
		padding: 16px 5%;
		background: none !important;
		color: var(--darkdefault);
	}
	.nav-primary .menu li.nav-cta > a:hover {
		color: #0478e6;
	}
	#top-bar .top-menu {
		display: none;
	}
	#top-bar .social {
		margin-right: 0;
	}
	header.site-header {
		position: fixed;
		width: 100%;
		/* top: 34px; */
		transition: all 400ms;
		z-index: 50;
	}
	div#top-bar {
		position: fixed;
		top: 0;
		transition: top 400ms;
	}
	.fixed-nav div#top-bar {
		top: -34px;
	}
	.fixed-nav header.site-header {
		top: 0;
	}
	.fixed-nav button#genesis-mobile-nav-primary {
		padding: 0;
	}
	header.site-header {
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 0;
	}
	header.site-header .title-area {
		margin-left: 5%;
	}
	button#genesis-mobile-nav-primary {
		margin-right: 5%;
	}
	nav#genesis-nav-primary ul.menu {
		background: var(--light);
		border-top: solid 1px var(--lightborder);
		max-height: calc(
			100vh - 155px
		); /* 100% of window height - mobile header height - mobile buttons height */
		overflow-y: scroll;
	}
	nav#genesis-nav-primary {
		padding-top: 0;
	}
	nav#genesis-nav-primary ul.menu li a {
		padding-left: 5% !important;
		padding-right: 5% !important;
		padding-top: 16px;
		padding-bottom: 16px;
		color: var(--darkdefault);
	}
	.nav-primary .menu li.nav-cta {
		padding: 0 !important;
	}
	.genesis-nav-menu a:focus,
	.genesis-nav-menu a:hover,
	.genesis-nav-menu .current-menu-item > a,
	.genesis-nav-menu .sub-menu .current-menu-item > a:focus,
	.genesis-nav-menu .sub-menu .current-menu-item > a:hover {
		color: var(--primaryalt) !important;
	}
	.genesis-nav-menu .sub-menu {
		padding: 0;
		background: var(--lightborder);
	}
	.genesis-nav-menu .menu-item {
		border-bottom: solid 1px rgba(0, 0, 0, 0.1);
	}

	.genesis-nav-menu .menu-item:last-child {
		border: 0;
	}
	.genesis-nav-menu .sub-menu a {
		background: none;
	}
	nav#genesis-nav-primary ul.menu li.menu-item-has-children {
		padding: 0 !important;
		padding-left: 0 !important;
	}
	nav#genesis-nav-primary ul.menu li.menu-item-has-children > a:after {
		display: none;
	}
	.mega-col ul.sub-menu {
		padding-top: 8px;
		padding-bottom: 8px;
	}
	.header-stacked button#genesis-mobile-nav-primary {
		position: absolute;
		top: 5px;
		right: 0;
	}
	.header-stacked.fixed-nav button#genesis-mobile-nav-primary {
		top: 12px;
	}
	.header-stacked nav ul > li.nav-cta {
		float: none;
	}
	.header-stacked nav#genesis-nav-primary {
		padding: 0;
	}
	.header-stacked header.site-header .title-area {
		margin: 0;
	}
	header.site-header > .wrap {
		flex-wrap: wrap;
	}
	.nav-transparent .site-header .menu-toggle::before {
		/*color: #fff;*/
	}

	ul.menu > li.menu-item > button.sub-menu-toggle {
		padding: 14px 10px;
	}
}

@media only screen and (max-width: 768px) {
	#top-bar form.search-form {
		display: none;
	}
}

@media only screen and (max-width: 600px) {
	div#top-bar {
		display: none;
		height: 0px !important;
	}
	header.site-header {
		top: 0 !important;
	}
	.nav-transparent header.site-header {
		background: #fff;
	}
	.nav-transparent .site-header .menu-toggle::before {
		color: var(--darkdefault);
	}
	.nav-transparent .site-inner:before {
		display: none;
	}
	.nav-transparent header.site-header {
		box-shadow: 0 0 12px rgb(0 0 0 / 15%) !important;
	}
	.nav-transparent img.custom-logo {
		opacity: 1 !important;
	}
	.nav-transparent a.custom-logo-link {
		background: none !important;
	}
}
@media only screen and (max-width: 450px) {
	.wp-custom-logo .site-container .title-area {
		max-width: 200px;
	}
}
/********************** * Full Screen Menu *********************/
#full-screen-menu-trigger {
	cursor: pointer;
	margin-left: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#full-screen-menu-trigger svg {
	width: 40px;
}
#full-screen-menu-trigger svg,
#full-screen-menu-trigger svg path {
	fill: #fff;
	transition: all 300ms;
}
#full-screen-menu-trigger:hover svg,
#full-screen-menu-trigger:hover svg path {
	fill: var(--cta);
}
.fixed-nav #full-screen-menu-trigger {
	z-index: 999;
}
.fixed-nav #full-screen-menu-trigger:hover svg,
.fixed-nav #full-screen-menu-trigger:hover svg path {
	fill: var(--cta);
}
.fixed-nav #full-screen-menu-trigger svg,
.fixed-nav #full-screen-menu-trigger svg path {
	fill: var(--darkdefault);
}
body.noscroll {
	overflow: hidden;
}
#full-screen-menu {
	background: var(--primary);
	z-index: 9999;
	position: fixed;
	top: 0;
	left: 100vw;
	right: -100vw;
	bottom: 0;
	width: 100%;
	height: 100vh;
	display: flex;
	opacity: 0;
	transition: all 650ms cubic-bezier(0.02, 0.01, 0.47, 1);
}
#full-screen-sidebar {
	order: 2;
	flex-basis: 25%;
	background: var(--primaryalt);
	padding: 180px 60px 60px 60px;
}
#full-screen-sidebar #close {
	position: absolute;
	right: 90px;
	right: 5vw;
	top: 70px;
	cursor: pointer;
}
#full-screen-sidebar #close svg {
	fill: #fff;
	height: 60px;
	width: 60px;
}
#full-screen-sidebar #close:hover svg {
	opacity: 0.4;
}
#full-screen-sidebar > p {
	color: rgba(255, 255, 255, 0.5);
	font-size: 20px;
	margin-bottom: 20px;
}
#full-screen-sidebar .social {
	margin-top: 20px;
}
#full-screen-sidebar .social a {
	color: #fff;
	margin-right: 10px;
}
#full-screen-sidebar .social a svg {
	height: 24px;
}
#full-screen-menu ul li a {
	color: #fff;
}
#full-screen-menu ul li a:hover {
	opacity: 0.5;
}
#full-screen-sidebar ul li {
	margin-bottom: 8px;
}
#full-screen-main {
	flex-basis: 75%;
	padding: 100px 5vw 50px;
	overflow-y: scroll;
}
#full-screen-main::-webkit-scrollbar-track {
	background-color: rgba(255, 255, 255, 0.2);
}
#full-screen-main::-webkit-scrollbar {
	width: 6px;
	background-color: rgba(0, 0, 0, 0.8);
}
#full-screen-main::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: rgba(255, 255, 255, 1);
}
#full-screen-main > div > ul {
	column-count: 3;
	column-gap: 5vw;
}
#full-screen-main > div > ul > li > a {
	font-family: "Bebas Neue", sans-serif;
	font-size: 32px;
	font-weight: bold;
}
#full-screen-main > div > ul > li {
	break-inside: avoid;
}
#full-screen-main > div > ul > li > a {
	line-height: 1;
}
#full-screen-main ul li a {
	font-size: 18px;
}
#full-screen-main ul li li {
	margin: 0;
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
#full-screen-main ul li > ul {
	margin-bottom: 60px;
	margin-top: 20px;
}
#full-screen-main ul li#menu-item-669 > ul ul,
#full-screen-main ul li#menu-item-1437 > ul ul {
	margin-top: 0;
	margin-bottom: 10px;
}
#full-screen-main ul#menu-full-screen-menu > li > ul,
#full-screen-main ul#menu-full-screen-menu > li > ul:last-child ul {
	margin-bottom: 0;
}
#full-screen-main ul#menu-full-screen-menu > li > ul:last-child ul {
	margin-top: 0;
}
#full-screen-main
	ul#menu-full-screen-menu
	> li
	> ul
	> li.menu-item-has-children {
	border: none;
}
#full-screen-main
	ul#menu-full-screen-menu
	> li
	> ul
	> li.menu-item-has-children
	> a {
	border: none;
	font-size: 26px;
	color: rgba(255, 255, 255, 0.5);
	/* font-family: 'Bebas Neue', sans-serif; */
}
#products-menu-cta {
	display: none;
}
#products-menu-cta > a {
	font-size: 0;
}
@media only screen and (max-width: 1530px) {
	#full-screen-main > div > ul > li > a {
		font-size: 32px;
	}
	#full-screen-main
		ul#menu-full-screen-menu
		> li
		> ul
		> li.menu-item-has-children
		> a {
		font-size: 24px;
		line-height: 1.25;
		margin-top: 10px;
		display: block;
	}
	#full-screen-main ul li > ul {
		margin-top: 0px;
	}
	#full-screen-main ul li a {
		font-size: 16px;
	}
	#full-screen-sidebar .social a {
		margin-right: 0;
		padding-right: 4px;
	}
}
@media only screen and (max-width: 1242px) {
	#full-screen-sidebar .social {
		display: flex;
	}
	#full-screen-sidebar .social a {
		padding-right: 7px;
	}
}
@media only screen and (max-width: 1100px) {
	#full-screen-main ul li a {
		font-size: 14px;
	}
}
@media only screen and (max-width: 959px) {
	#full-screen-menu {
		display: none !important;
	}
}

/********************** * Mega Menu *********************/
@media only screen and (min-width: 961px) {
	ul.genesis-nav-menu > li.mega-menu > ul.sub-menu {
		opacity: 1;
		left: 0;
		position: fixed;
		width: 100%;
		background: #fff;
		border-top: solid 1px var(--lightborder);
		padding: 30px 5%;
		/*top: 140px;
        */
		left: -9999px !important;
		opacity: 0 !important;
	}
	ul.genesis-nav-menu > li.mega-menu > ul.sub-menu > li.mega-menu-wrap {
		width: calc(100% + 40px);
		left: -20px;
	}
	ul.genesis-nav-menu > li.mega-menu > ul.sub-menu > li.mega-menu-wrap > a {
		display: none;
	}
	ul.genesis-nav-menu
		> li.mega-menu
		> ul.sub-menu
		> li.mega-menu-wrap
		> ul.sub-menu {
		display: flex !important;
		height: auto !important;
		opacity: 1 !important;
		left: 0 !important;
		position: relative;
		top: 0;
		width: 100%;
		margin: 0;
		border: 0;
		justify-content: center;
	}
	ul.genesis-nav-menu
		> li.mega-menu
		> ul.sub-menu
		> li.mega-menu-wrap
		> ul.sub-menu
		> li.mega-col {
		width: 16.66%;
		position: relative;
		vertical-align: top;
		padding: 0 20px;
	}
	ul.genesis-nav-menu
		> li.mega-menu
		> ul.sub-menu
		> li.mega-menu-wrap
		> ul.sub-menu
		> li.mega-col
		> a {
		display: none;
	}
	ul.genesis-nav-menu
		> li.mega-menu
		> ul.sub-menu
		> li.mega-menu-wrap
		> ul.sub-menu
		> li.mega-col
		a:after {
		display: none !important;
	}
	ul.genesis-nav-menu
		> li.mega-menu
		> ul.sub-menu
		> li.mega-menu-wrap
		> ul.sub-menu
		> li.mega-col
		> ul.sub-menu {
		position: relative;
		height: auto !important;
		opacity: 1 !important;
		left: 0;
		margin: 0;
		display: block !important;
		border: 0;
		width: 100%;
	}
	ul.genesis-nav-menu
		> li.mega-menu
		> ul.sub-menu
		> li.mega-menu-wrap
		> ul.sub-menu
		> li.mega-col
		> ul.sub-menu
		> li {
		width: 100%;
		padding-right: 0;
		position: relative;
		padding: 0 !important;
	}
	ul.genesis-nav-menu
		> li.mega-menu
		> ul.sub-menu
		> li.mega-menu-wrap
		> ul.sub-menu
		> li.mega-col
		> ul.sub-menu
		> li
		> a {
		color: var(--primary);
		font-size: 18px;
		font-weight: 700;
		border: 0;
		border-bottom: solid 1px var(--lightborder);
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	ul.genesis-nav-menu
		> li.mega-menu
		> ul.sub-menu
		> li.mega-menu-wrap
		> ul.sub-menu
		> li.mega-col
		> ul.sub-menu
		> li
		> a:hover {
		color: var(--primaryalt);
	}
	ul.genesis-nav-menu
		> li.mega-menu
		> ul.sub-menu
		> li.mega-menu-wrap
		> ul.sub-menu
		> li.mega-col
		> ul.sub-menu
		> li
		ul.sub-menu {
		display: block !important;
		height: auto !important;
		opacity: 1 !important;
		left: auto;
		width: 100%;
		margin: 0;
		position: relative;
		border: 0;
		padding: 12px 0;
	}
	ul.genesis-nav-menu
		> li.mega-menu
		> ul.sub-menu
		> li.mega-menu-wrap
		> ul.sub-menu
		> li.mega-col
		> ul.sub-menu
		> li
		ul.sub-menu
		a {
		border: 0;
		padding: 8px 0;
	}
	ul.genesis-nav-menu > li.mega-menu > ul.sub-menu > .mega-menu {
		width: 100%;
		padding: 0;
		position: relative;
		left: -20px;
		width: calc(100% + 40px);
	}
	ul.genesis-nav-menu > li.mega-menu > ul.sub-menu > .mega-menu > a {
		display: none;
	}
	ul.genesis-nav-menu > li.mega-menu > ul.sub-menu > .mega-menu > ul.sub-menu {
		display: flex !important;
		left: 0;
		height: auto !important;
		opacity: 1 !important;
		margin: 0;
		width: 100%;
		position: relative;
		border: 0;
	}
	.genesis-nav-menu li.menu-item-has-children:hover > ul.sub-menu {
		display: block !important;
	}
	nav#genesis-nav-primary
		ul.menu
		> li.menu-item-has-children:not(.mega-menu):hover
		> ul.sub-menu {
		left: auto;
		opacity: 1 !important;
	}
	nav#genesis-nav-primary ul.menu > li.menu-item-has-children > ul.sub-menu {
		opacity: 0 !important;
		transition: opacity 600ms;
		display: block !important;
		overflow: hidden;
		box-sizing: border-box;
		padding-top: 0;
		padding-bottom: 0;
		left: -9999px;
		box-shadow: 0px 15px 20px 0px rgb(0 0 0 / 6%);
	}
	nav#genesis-nav-primary
		ul.menu
		> li.menu-item-has-children.mega-menu.mega-active
		> ul.sub-menu {
		padding-top: 30px;
		padding-bottom: 30px;
		left: 0 !important;
		opacity: 1 !important;
	}
	.fixed-nav .nav-primary .genesis-nav-menu > li > a {
		padding: 29px 15px;
	}
}
@media only screen and (max-width: 959px) {
	li.mega-menu ul.sub-menu > .mega-menu-wrap > a {
		display: none;
	}
	li.mega-menu ul.sub-menu > .mega-menu-wrap > button {
		display: none;
	}
	li.mega-menu-wrap > ul.sub-menu,
	li.mega-col > ul.sub-menu {
		display: block !important;
		padding: 0;
	}
	li.mega-col > a,
	li.mega-col > button {
		display: none;
	}
	.mega-col > ul.sub-menu > li > a {
		font-weight: 400;
	}
	.mega-col > ul.sub-menu > li > ul.sub-menu {
		background: #fff;
	}
}
/********************** * Content *********************/

h1 {
	color: var(--darkdefault);
}

h2 {
	color: var(--primary);
}

.h2 {
	color: #1ab7b3;
	font-size: 2rem;
}

h2 span {
	display: block;
	font-size: 0.5em;
	font-weight: 400;
	color: var(--primaryalt);
}

h3,
h4 {
	color: var(--primaryalt);
}

.text-dark {
	color: var(--primaryalt);
}

#genesis-content .row:first-of-type:not(.style-dark):not(.style-light),
.style-white + .style-white {
	padding-top: 0;
}

.style-dark p,
.style-dark li,
.style-dark .ginput_container label {
	color: rgba(255, 255, 255, 0.8);
}

.style-dark h2,
.style-dark h3,
.style-dark h4,
.style-dark strong {
	color: #fff;
}

a {
	color: var(--primary);
}
a:hover,
a:focus {
	color: var(--primaryalt);
}
.row {
	width: 100%;
	padding: var(--defaultVerticalSpacing) 5%;
	position: relative;
}
.row:after {
	content: "";
	display: table;
	clear: both;
}
.row-inner {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
}
.site-inner
	.row:not(.title-row):not(.main-content):not(.style-light):not(
		.style-dark
	):not(.page-title):before {
	/* content: ''; */
	width: 90%;
	max-width: 1600px;
	border-top: solid 1px var(--lightborder);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.row.style-light + .row:before,
.row.style-dark + .row:before {
	display: none;
}
div.site-inner {
	padding: 0;
	margin-top: 146px;
}
.header-stacked div.site-inner {
	margin-top: 198px;
}
.row.style-light {
	background: var(--beige);
}
.row.style-dark {
	background: var(--primary);
	border-top: solid 1px var(--primaryborder);
	border-bottom: solid 1px var(--primaryborder);
	color: #fff;
}
.row.style-bg {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.row.text-light,
.row.text-light h2,
.row.text-light h3,
.row.text-light h4 {
	color: #fff;
}
.row.text-dark,
.row.text-dark h2,
.row.text-dark h3,
.row.text-dark h4 {
	color: var(--darkdefault);
}
div#hero {
	min-height: 300px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	padding: 3.5rem 5%;
	/* border-bottom: solid 1px var(
    --lightborder); */
	display: flex;
	align-items: center;
}
div#hero.tall {
	min-height: 500px;
}
.hero-title {
	font-weight: 300;
}
#hero p {
	font-weight: 300;
}
#hero p:last-of-type {
	margin: 0;
}
.hero-content {
	max-width: 700px;
}
#hero.color-white {
	& .hero-title,
	p {
		color: #fff;
	}
}
#hero.color-white-blue {
	& .hero-title,
	p {
		color: #fff;
	}

	& .hero-title span {
		color: #47ebe7;
	}
}
#hero.color-dark {
	& .hero-title {
		color: var(--primary);
	}

	& p {
		color: var(--darkdefault);
	}
}
#hero.column-hero {
	& .hero-columns {
		display: flex;
		width: 100%;
		gap: 60px;
	}

	& .hero-column {
		flex: 1;
	}

	& hr {
		height: initial;
		margin: 0;
		border: solid 2px #1ab7b3;
	}

	& p {
		margin-bottom: 1rem;
	}

	& img.align-to-bottom {
		position: relative;
		top: 1.5rem;
	}
}
h1.hero-title {
	margin-bottom: 20px;
}
.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	margin-top: 20px;
}
.hero-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 100%;
	max-width: 1600px;
	margin: 0 auto;
	gap: 60px;
}
span.hero-text {
	color: #fff;
	font-size: 60px;
	text-transform: uppercase;
	font-weight: 700;
	text-shadow: 0 0 11px rgb(0 0 0 / 70%);
	line-height: 1.25;
}
@media only screen and (max-width: 900px) {
	#hero.column-hero {
		& .hero-columns {
			flex-direction: column;
		}
	}
}
@media screen and (max-width: 600px) {
	h2 span {
		font-size: .75em;
	}
}
/* Q2 Page */
.page-id-893 .hero-column:first-child .hero-buttons {
	flex-wrap: nowrap;
}
.page-id-893 .hero-column:first-child .hero-buttons::after {
	content: "Access our services right from your existing Q2 account, making it easier to share us with your customers.";
	color: #fff;
	font-weight: 300;
}
.page-id-893 .hero-text-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.content ul,
.content ol {
	padding-left: 0;
	margin-bottom: 40px;
}
.content ul li {
	list-style: none;
	margin-bottom: 20px;
	background-repeat: no-repeat;
	/*      background-size: 20px;
     background-position: left 5px; */
	padding-left: 32px;
}
.content ol li {
	list-style: number;
	margin-bottom: 10px;
}
.content a[href^="tel"] {
	color: var(--darkdefault);
}
ul.col-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
ul.col-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
ul.col-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 1200px) {
	ul.col-4 {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media only screen and (max-width: 650px) {
	ul.col-3, ul.col-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (max-width: 500px) {
	ul.col-2, ul.col-3, ul.col-4 {
		grid-template-columns: 1fr;
	}
}

.error404 .content-sidebar-wrap,
.search .content-sidebar-wrap {
	padding-left: 5%;
	padding-right: 5%;
	max-width: calc(1400px + 10%);
	margin: 0 auto;
}
.error404 h1.entry-title {
	text-align: center;
	font-size: 4em;
}

.error404 .content article.entry .entry-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.error404 .content article.entry .entry-content form {
	margin: 0 auto;
	display: flex;
}

.error404 .content article.entry .entry-content form input[type="submit"] {
	margin: 0 0 0 10px;
}

div#error-contact {
	text-align: center;
}

div#error-contact img {
	max-width: 500px;
	margin-bottom: 20px;
}

div#error-contact a {
	display: inline-block;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form button[type="submit"],
.button {
	background: var(--cta);
}
button:focus,
button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
.site-container
	div.wpforms-container-full
	.wpforms-form
	input[type="submit"]:focus,
.site-container
	div.wpforms-container-full
	.wpforms-form
	input[type="submit"]:hover,
.site-container
	div.wpforms-container-full
	.wpforms-form
	button[type="submit"]:focus,
.site-container
	div.wpforms-container-full
	.wpforms-form
	button[type="submit"]:hover,
.button:focus,
.button:hover {
	background: var(--ctaalt);
}
.button {
	border: 2px solid transparent;
	white-space: nowrap;

	&.text-link {
		display: flex;
		align-items: center;
		padding: 0;
		border: none;
		background: none;
	}
}
.button .text-link::after {
	content: "";
	display: inline-block;
	width: 1rem;
	height: 1rem;
	margin-left: 1rem;
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20576%20512%22%3E%3Cpath%20fill%3D%22%2381B041%22%20d%3D%22M16%20480L288-16%20560%20480%2016%20480z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	transform: rotate(90deg);
}
.button:hover {
	border-width: 2px;
}
.button.border {
	background: transparent;
	border: 2px solid var(--cta);

	&:hover {
		border-color: var(--ctaalt);
		background: var(--ctaalt);
	}

	.color-dark & {
		color: var(--cta);
	}

	.color-dark &:hover {
		color: #fff;
	}
}
.primary-btn,
.secondary-btn {
	display: inline-block;
	color: #fff;
	background: var(--cta);
	padding: 16px 64px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 700;
}
.primary-btn:hover,
.secondary-btn:hover {
	background: var(--ctaalt);
	color: #fff;
}
.secondary-btn {
	background: var(--primary);
}
.secondary-btn:hover {
	background: var(--primaryalt);
}
.button.outline {
	background: none;
	border: solid 3px var(--cta);
}
.button.outline:hover {
	background: var(--cta);
	color: #fff;
}
.text-link:not(:has(.button)) {
	color: var(--cta);
	font-weight: bold;

	& svg {
		transform: rotate(90deg);
	}
}
.page-template-default.full-width-content .content {
	width: 90% !important;
	max-width: 1400px !important;
	margin: 0 auto !important;
}

.page-template-default .row.page-title {
	padding: 0;
	margin-bottom: 60px;
	padding-top: 20px;
}

figure.alignright,
figure.alignleft,
figure.alignnone {
	max-width: 600px;
}

.slick-arrow span {
	position: absolute;
	left: -9999px;
	opacity: 0;
	top: -9999px;
}

@media only screen and (max-width: 959px) {
	div.site-inner {
		padding-top: 0;
		margin-top: 125px;
	}
	div#hero.tall {
		min-height: 400px;
	}
	span.hero-text {
		font-size: 42px;
	}
	.row {
		padding: var(--defaultVerticalSpacing) 5%;
	}
	ul.col-3,
	ul.col-4 {
		column-count: 2;
	}

	figure.alignright,
	figure.alignleft,
	figure.alignnone {
		float: none;
		margin: 0 0 32px 0 !important;
		max-width: 100%;
	}

	.hero-inner {
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		gap: 32px;
	}
}
@media only screen and (max-width: 768px) {
	h1 {
		font-size: 36px;
	}
	h2 {
		font-size: 28px;
	}
	h3 {
		font-size: 22px;
	}

	.error404 h1.entry-title {
		text-align: center;
		font-size: 2em;
	}
	.error404 .content article.entry .entry-content form {
		width: 100%;
	}
}

@media only screen and (max-width: 600px) {
	span.hero-text {
		font-size: 32px;
	}
	div#hero.tall {
		min-height: 250px;
	}
	div.site-inner {
		margin-top: 91px;
	}
	ul.col-2,
	ul.col-3,
	ul.col-4 {
		column-count: auto;
		column-gap: 0;
	}
}
@media only screen and (max-width: 500px) {
	h1 {
		font-size: 32px;
	}
	h2 {
		font-size: 24px;
	}
	h3 {
		font-size: 22px;
	}
	.button {
		white-space: inherit;
	}
}

@media only screen and (max-width: 350px) {
	.error404 .content article.entry .entry-content form {
		display: block;
	}
	.error404 .content article.entry .entry-content form input[type="submit"] {
		margin: 10px 0 0 0;
		width: 100%;
	}
}

/********************** Careers Page **************************/
.page-id-343 {
	& .hero-content {
		max-width: 70% !important;

		& p {
			font-weight: normal !important;
		}
	}
	& .whr-items {
		column-count: 2;

		& li {
			padding-left: 0;
			margin-bottom: 2rem;
			background-image: none;
			break-inside: avoid;

			& h3 {
				margin-bottom: 0;
			}

			& a {
				color: #1ab7b3;
			}
		}
	}

	& .whr-info {
		& li {
			margin-bottom: 0;

			& span {
				font-weight: bold;
			}
		}
	}
}

@media only screen and (max-width: 800px) {
	.page-id-343 {
		& .hero-content {
			max-width: 100% !important;
		}
		
		& .whr-items {
			column-count: 1;
		}
	}
}

/********************** * News / Blog / Archives *********************/
body.content-sidebar .content-sidebar-wrap {
	max-width: 1600px;
	width: 90%;
	margin: 0 auto;
}
body.content-sidebar .sidebar {
	padding-top: 64px;
}
.blog .content .row,
.archive .content .row,
.single .content .row {
	padding: 0;
}
.archive-description {
	display: none !important;
}
.row.page-title h1 {
	margin-bottom: 0;
}
.entry-content > img:first-child,
.entry-content > picture:first-child {
	float: right;
	width: 40%;
	margin: 0 0 32px 32px;
}

.entry-content > img:first-child,
.entry-content > picture:first-child img {
	width: 100%;
}
.single .entry-header span.entry-title {
	display: none;
}
.single .row.page-title,
.archive .row.page-title,
.blog .row.page-title {
	margin-bottom: 20px;
}
.entry-content a.more-link {
	display: block;
	margin-top: 20px;
	margin-bottom: 0;
	color: var(--cta);
	fill: var(--cta);
	text-decoration: none;
	font-weight: 700;
}
.entry-content a.more-link svg {
	top: 4px;
	margin-left: 5px;
}
.entry-content a.more-link:hover {
	color: var(--primaryalt);
	fill: var(--primaryalt);
}
.blog article .entry-content,
.archive article .entry-content {
	display: grid;
	grid-template-columns: calc(70% - 40px) calc(30% + 40px);
	grid-template-rows: 1fr;
	grid-column-start: 1;
	padding-bottom: 40px;
}
.blog article .entry-content .entry-image-link,
.archive article .entry-content .entry-image-link {
	grid-column-start: 2;
	grid-row-start: 1;
	grid-row-end: 3;
	padding-left: 40px;
}
.blog article .entry-content:before,
.archive article .entry-content:before {
	display: none;
}
.blog article .entry-content .more-link,
.archive article .entry-content .more-link {
	grid-column-start: 1;
	height: 30px;
}
.blog article footer.entry-footer,
.archive article footer.entry-footer {
	display: none;
}
.blog article,
.archive article {
	border-bottom: solid 1px var(--lightborder);
	padding-bottom: 20px;
}
article a.entry-title-link {
	display: inline-block;
	line-height: 1.25;
}
.pagination ul {
	padding: 0;
}
.pagination ul li {
	background-image: none !important;
	padding-left: 0;
}
a.entry-image-link:hover img {
	opacity: 0.7;
}
a.entry-image-link img {
	transition: opacity 300ms;
}
div.addtoany_content {
	margin: 40px 0;
}
div.addtoany_content:before {
	content: "Share on Social Media";
	font-size: 0.875em;
	display: block;
	margin-bottom: 10px;
	font-style: italic;
	opacity: 0.7;
}
div.addtoany_content > div a:first-child {
	padding-left: 0;
}

article blockquote {
	border-left: solid 4px var(--cta);
	padding: 20px;
	margin: 0 0 32px 0;
	font-size: 1.25em;
	line-height: 1.5;
}

article blockquote p:last-child {
	margin-bottom: 0;
}

@media only screen and (max-width: 959px) {
	body.content-sidebar .sidebar {
		margin-bottom: 90px;
	}
}

@media only screen and (max-width: 700px) {
	.entry-content > img:first-child {
		float: none;
		margin: 0 0 32px 0;
		width: 100%;
	}
	div.row h2,
	div.row .f-text > p,
	div#cta {
		text-align: left !important;
	}
}

@media only screen and (max-width: 600px) {
	.blog article .entry-content,
	.archive article .entry-content {
		display: flex;
		flex-direction: column;
	}
	.blog article .entry-content .entry-image-link,
	.archive article .entry-content .entry-image-link {
		order: -1;
		padding: 0;
		margin-bottom: 20px;
		display: inline-block;
		width: 300px;
		max-width: 100%;
	}
	.blog article .entry-content * {
		grid-column-start: auto;
		grid-row-start: auto;
		grid-column-end: auto;
		grid-row-end: auto;
	}
}
/******************** * Resources Page * ****************  */
.page-template-resources {
	& .button.align-right {
		display: block;
		width: fit-content;
		margin-left: auto;
	}

	& .events-wrapper {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		column-gap: 4px;
	}

	& .event {
		& a {
			display: flex;
			flex-direction: column;
			gap: 1rem;

			&:hover span.button, &:hover h3 {
				color: var(--ctaalt);
			}

			& > * {
				margin-bottom: 0;
				transition: color 300ms;
			}
		}

		& p {
			color: var(--primaryalt);
		}
	}
}

@media only screen and (max-width: 900px) {
	.page-template-resources {
		& .events-wrapper {
			grid-template-columns: repeat(2, 1fr);
			row-gap: 2rem;
		}
	}
}

@media only screen and (max-width: 600px) {
	.page-template-resources {
		& .events-wrapper {
			grid-template-columns: 1fr;
		}
	}
}

/* Blog feed for Resources page */
.article-feed-wrapper {
	display: flex;
	gap: 2rem;
	padding-bottom: 2rem;
	margin-bottom: 2rem;
	border-bottom: solid 2px var(--darkdefault);

	& article a {
		display: flex;
		flex-direction: column;
		gap: 1rem;

		& img {
			height: 230px;
		}

		& > * {
			margin-bottom: 0;
		}
	}
}

@media only screen and (max-width: 1200px) {
	.article-feed-wrapper {
		flex-direction: column;

		& article a {
			display: grid;
			grid-template-areas: 
				"title image"
				"excerpt image"
				"readMore image";
			grid-template-columns: 3fr 2fr;
			column-gap: 2rem;
			
			& h3 {
				grid-area: title;
			}

			& img {
				grid-area: image;
				width: min(100%, 450px);
				height: auto;
			}

			& p {
				grid-area: excerpt;
			}

			& span {
				grid-area: readMore;
			}
		}
	}
}

@media only screen and (max-width: 1000px) {
	.article-feed-wrapper {
		gap: 2rem;

		& article {
			&:not(:last-of-type) {
				padding-bottom: 2rem;
				border-bottom: solid 1px var(--darkdefault);
			}
			
			& a {
				display: grid;
				grid-template-areas: 
					"image"
					"title"
					"excerpt"
					"readMore";
				grid-template-columns: 1fr;
			}
		}
	}
}
/******************** * Marketing for Canada Page * ****************  */
#acf6926384db1843 {
	padding-bottom: 0;
}
/********************** * Footer & CTA *********************/
div#va-footer {
	padding: 64px 5%;
	margin-bottom: 0;
	background: #0a2638;
	background-image: url("/wp-content/uploads/footer-background.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
div#va-footer .row-inner {
	display: flex;
	justify-content: space-between;
}
.footer-col {
	/* width: 18%; */
}
.footer-col.contact-info {
	/* min-width: 360px; */
	padding-right: 20px;
	width: fit-content;
}
.footer-col.contact-info .info-social-wrap,
.footer-col.contact-info .info-social-wrap .social {
	display: flex;
	align-items: center;
	gap: 12px;
}

.info-social-wrap .social a {
	padding: 0;
}

.info-social-wrap .social a svg {
	margin: 0;
}

.footer-col.contact-info .info-social-wrap {
	gap: 60px;
}

div#va-footer .row-inner .menu-col-wrap {
	width: 60%;
	display: flex;
	gap: 90px;
}

div#va-footer .row-inner .menu-col-wrap.col-3 {
	gap: 40px;
}

div#va-footer .row-inner .menu-col-wrap.col-3 .footer-col {
	width: 33%;
}

div#va-footer
	.row-inner
	.menu-col-wrap.col-2
	.menu-item-has-children
	ul.sub-menu {
	column-count: 2;
	gap: 32px;
}

#va-footer .menu-col .menu-item-has-children .sub-menu a {
	color: var(--cta);
}

#va-footer .menu-col .menu-item-has-children .sub-menu a:hover {
	color: #fff;
}

.contact-info p a {
	color: #fff;
	/* font-weight: bold; */
}

.contact-info p a:hover {
	color: var(--cta);
}
.contact-info p.f-address a {
	font-weight: normal;
}
.footer-col.contact-info img {
	margin-bottom: 20px;
	max-width: 370px;
}
.contact-info p {
	margin-bottom: 16px;
	font-size: 16px;
}
.contact-info p.f-address {
	display: flex;
}
p.f-address span {
	display: inline-block;
}
p.f-address span.a2 {
	display: block;
}
.contact-info svg {
	width: 30px;
	min-width: 30px;
	height: 25px;
	color: #fff;
}
.contact-info a:hover svg {
	color: var(--cta);
}
.menu-col .menu > li > a {
	font-weight: 700;
}
.menu-col li a {
	text-decoration: none;
}
.footer-col.menu-col > div > ul.menu > li > a {
	font-size: 24px;
	color: #fff;
}
.footer-col.menu-col > div > ul.menu > li > a:hover {
	color: var(--cta);
}
.footer-col.menu-col > div > ul.menu > li > a:not([href]) {
	color: #fff;
}
.menu-col ul.sub-menu {
	/* padding-top: 18px; */
}
.menu-col li {
	/* margin-bottom: 6px; */
}
.copy-wrap a {
	color: #fff;
	&:hover {
		color: var(--cta);
	}
}
.copy-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem 1.5rem;
}

footer.site-footer > .wrap {
	/* display: flex; */
	justify-content: center;
}
div#cta {
	background: var(--light);
	text-align: center;
	border-top: solid 1px var(--lightborder);
	border-bottom: solid 1px var(--lightborder);
	margin-bottom: 0;
	background-position: top center !important;
	background-size: cover !important;
}
.isMobile .site-footer {
	margin-bottom: 50px;
}
#va-footer.style-sitemap .full-sitemap-footer > div > ul.menu {
	display: flex;
	gap: 70px;
	justify-content: space-between;
}

div#va-footer.style-sitemap
	.row-inner
	.menu-col-wrap.col-2
	.menu-item-has-children
	ul.sub-menu {
	column-count: 1;
}

#va-footer.style-sitemap .row-inner .menu-col-wrap {
	display: block;
	width: 100%;
}

div#va-footer.style-sitemap
	.row-inner
	.menu-col-wrap
	.mega-menu
	ul.sub-menu
	li.mega-menu-wrap
	> a,
div#va-footer.style-sitemap
	.row-inner
	.menu-col-wrap
	.mega-menu
	ul.sub-menu
	li.mega-menu-wrap
	> ul.sub-menu
	> li.mega-col
	> a,
div#va-footer.style-sitemap
	.row-inner
	.menu-col-wrap
	.mega-menu
	ul.sub-menu
	li.mega-menu-wrap
	> ul.sub-menu
	> li.mega-col
	> ul
	> li
	> ul {
	display: none;
}

div#va-footer.style-sitemap
	.row-inner
	.menu-col-wrap
	.mega-menu
	ul.sub-menu
	li.mega-menu-wrap
	> ul.sub-menu,
div#va-footer.style-sitemap
	.row-inner
	.menu-col-wrap
	.mega-menu
	ul.sub-menu
	li.mega-menu-wrap
	> ul.sub-menu
	> li.mega-col
	> ul {
	padding-top: 0;
}

div#va-footer.style-sitemap
	.row-inner
	.menu-col-wrap
	.mega-menu
	ul.sub-menu
	li.mega-menu-wrap
	> ul.sub-menu
	> li.mega-col
	> ul
	> li {
	margin-bottom: 0;
}

div#va-footer.style-sitemap ul.menu li.nav-cta > div.contact-info {
	margin-top: 12px;
}

div#va-footer.style-sitemap .row-inner .footer-col {
	width: 100% !important;
}

div#va-footer.style-sitemap .row-inner .menu-col-wrap.col-3 {
	width: 100%;
}

@media only screen and (max-width: 1700px) {
	.footer-col {
		width: 18%;
	}
	div#va-footer .row-inner .menu-col-wrap {
		width: 65%;
		gap: 60px;
	}
	.footer-col.contact-info img {
		max-width: 250px;
	}
}

@media only screen and (max-width: 1520px) {
	#va-footer.style-sitemap .footer-col.menu-col > div > ul.menu > li > a {
		font-size: 24px;
	}
	div#va-footer .row-inner .menu-col-wrap {
		flex-wrap: wrap;
		gap: 32px 60px;
	}
	.footer-col {
		width: calc(50% - 30px);
	}
	.footer-col.menu-col ul.sub-menu {
		column-count: 2;
	}
	.site-footer {
		margin-top: 32px;
	}
}

@media only screen and (max-width: 1400px) {
	.footer-col.contact-info .info-social-wrap .social {
		/* flex-wrap: wrap; */
	}

	div#va-footer
		.row-inner
		.menu-col-wrap.col-2
		.menu-item-has-children
		ul.sub-menu {
		column-count: 1;
	}

	.footer-col.contact-info {
		max-width: 30%;
	}

	.footer-col.contact-info .info-social-wrap {
		display: block;
	}

	div#va-footer .row-inner .menu-col-wrap.col-3 {
		width: 70%;
	}

	#va-footer.style-sitemap .full-sitemap-footer > div > ul.menu {
		display: block;
		column-count: 4;
	}

	div#va-footer.style-sitemap
		.row-inner
		.menu-col-wrap.col-2
		ul.menu
		> .menu-item-has-children
		> ul.sub-menu {
		/* column-count: 2;
        gap: 20px; */
	}

	#va-footer.style-sitemap .full-sitemap-footer > div > ul.menu > li {
		break-inside: avoid-column;
	}
}
@media only screen and (max-width: 1200px) {
	div#va-footer .row-inner .menu-col-wrap {
		width: 70%;
		gap: 32px;
	}
	.footer-col.menu-col > div > ul.menu > li > a {
		font-size: 20px;
	}
	#va-footer .menu-col .menu-item-has-children .sub-menu a {
		font-size: 16px;
	}
}
@media only screen and (max-width: 1020px) {
	#va-footer.style-sitemap .full-sitemap-footer > div > ul.menu {
		column-count: 3;
	}
	div#va-footer .row-inner {
		flex-direction: column;
		gap: 32px;
	}
	div#va-footer .row-inner .menu-col-wrap {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
	}
	.footer-col {
		width: 100%;
	}
	.footer-col.menu-col ul.sub-menu {
		column-count: 1;
	}
}
@media only screen and (max-width: 959px) {
	div#va-footer {
		padding: 50px 5%;
	}
	.footer-col.contact-info {
		min-width: 250px;
		padding-right: 20px;
	}
	div#va-footer .row-inner {
		flex-wrap: wrap;
	}
	.footer-col.contact-info {
		min-width: 0;
		/* width: 100%; */
		margin-bottom: 32px;
		max-width: unset;
	}
	div#va-footer .row-inner .menu-col-wrap {
		width: 100% !important;
		gap: 20px !important;
		justify-content: space-between;
	}

	div#va-footer .row-inner .menu-col-wrap.col-2 .menu-col {
		min-width: 48%;
	}
	.footer-col {
		/* width: 23%; */
	}
	.footer-col.contact-info img {
		width: 100%;
		max-width: 300px;
	}
	div#va-footer.style-sitemap
		.row-inner
		ul.menu
		> .menu-item-has-children
		> ul.sub-menu {
		display: none;
	}
	div#va-footer.style-sitemap .contact-info p {
		margin-bottom: 12px;
	}
}
@media only screen and (max-width: 768px) {
	div#va-footer .row-inner .menu-col-wrap {
		grid-template-columns: 1fr 1fr;
	}
	div#va-footer .row-inner {
		gap: 0;
	}
	div#va-footer .row-inner .menu-col-wrap.col-3 .footer-col {
		width: 48%;
	}
	div#va-footer .row-inner .menu-col-wrap.col-3 {
		column-gap: 0 !important;
	}
	.footer-col:nth-child(4),
	.footer-col:nth-child(5) {
		margin-bottom: 0;
	}

	div#va-footer .row-inner .menu-col-wrap.col-3 {
		flex-wrap: wrap;
	}
	#va-footer.style-sitemap .full-sitemap-footer > div > ul.menu {
		column-count: 2;
	}
}
@media only screen and (max-width: 600px) {
	.copy-va {
		display: block;
		margin: 0;
	}
	.copy-wrap span.sep {
		display: none;
	}
	#va-footer.style-sitemap .full-sitemap-footer > div > ul.menu {
		column-count: 1;
	}
}
@media only screen and (max-width: 500px) {
	.footer-col.menu-col {
		display: none;
	}
	.footer-col.contact-info {
		margin-bottom: 0;
	}
	footer.site-footer > .wrap {
		flex-direction: column;
	}
	div#va-footer .row-inner .menu-col-wrap {
		display: none;
	}
	div#va-footer.style-sitemap .footer-col.menu-col {
		display: block;
	}

	#va-footer.style-sitemap
		.full-sitemap-footer
		> div
		> ul.menu
		> li:not(.nav-cta),
	#va-footer.style-sitemap
		.full-sitemap-footer
		> div
		> ul.menu
		> li.nav-cta
		> a {
		display: none;
	}

	div#va-footer.style-sitemap ul.menu li.nav-cta > div.contact-info {
		margin-top: 0;
	}

	div#va-footer.style-sitemap .contact-info p {
		margin-bottom: 0;
	}

	div#va-footer.style-sitemap .site-footer {
		padding-top: 12px;
	}
}

/* Combined Footer & CTA */
.footer #cta,
.footer.style-footer-cta .site-footer,
.footer.style-footer-cta-side .site-footer {
	background: none;
	border: 0;
	padding-top: 0;
	text-align: center;
}

.footer #cta {
	display: block !important;
}

div#va-footer.style-footer-cta,
div#va-footer.style-footer-cta-side {
	padding: var(--defaultVerticalSpacing) 5%;
	background-size: cover !important;
	background-position: center center !important;
}

div#va-footer.style-footer-cta {
	padding-bottom: 30px;
}

div#va-footer.style-footer-cta #cta {
	padding-bottom: var(--defaultVerticalSpacing);
}

div#va-footer.style-footer-cta .row-inner.footer-inner {
	padding-bottom: max(calc(var(--defaultVerticalSpacing) / 2), 30px);
}

div#va-footer.style-footer-cta .row-inner .menu-col-wrap {
	width: 100% !important;
	justify-content: space-between;
}

div#va-footer.style-footer-cta
	.row-inner
	.menu-col-wrap
	.footer-col:has(.nav-cta) {
	width: 30% !important;
}

div#va-footer.style-footer-cta
	.row-inner
	.menu-col-wrap
	.footer-col:not(.contact-info) {
	width: 18%;
}

li.nav-cta + .info-wrap {
	display: flex;
	flex-wrap: wrap;
}

li.nav-cta + .info-wrap .footer-col {
	order: 2;
	padding-right: 0;
	width: auto !important;
}

li.nav-cta + .info-wrap .footer-col .social {
	flex-wrap: wrap;
}

@media only screen and (max-width: 1400px) {
	li.nav-cta + .info-wrap .footer-col .social,
	li.nav-cta + .info-wrap {
		flex-wrap: nowrap;
	}
	li.nav-cta + .info-wrap {
		flex-direction: column;
	}
}

@media only screen and (max-width: 959px) {
	div#va-footer.style-footer-cta .row-inner .menu-col-wrap {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	div#va-footer.style-footer-cta
		.row-inner
		.menu-col-wrap
		.footer-col:not(.contact-info) {
		width: 100% !important;
	}
}

/* Combined Footer & CTA Side-by-Side */
div.style-footer-cta-side {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

div.style-footer-cta-side .footer-inner {
	flex-basis: calc(50% - 32px);
	margin: 0;
}

div#va-footer.style-footer-cta-side .footer-inner .menu-col-wrap .footer-col {
	width: 100%;
}

div.style-footer-cta-side #cta {
	flex-basis: calc(33% - 32px);
	margin: 0;
	text-align: left;
}

div.style-footer-cta-side::after {
	display: none;
}

div.style-footer-cta-side .cta-content a.button {
	margin: 0;
}

div#va-footer.style-footer-cta-side footer.site-footer {
	width: 100%;
}

div#va-footer.style-footer-cta-side .footer-inner .menu-col-wrap {
	display: block;
}

@media only screen and (min-width: 1501px) {
	div#va-footer.style-footer-cta-side
		.row-inner
		.menu-col-wrap
		.menu-item-has-children
		ul.sub-menu {
		column-count: 2;
	}
}

@media only screen and (max-width: 1500px) {
	div.style-footer-cta-side #cta {
		flex-basis: calc(50% - 32px);
	}
}

@media only screen and (max-width: 1200px) {
	div.style-footer-cta-side {
		display: block;
	}
	div.style-footer-cta-side #cta {
		text-align: center;
		padding-bottom: var(--defaultVerticalSpacing);
	}
	div.style-footer-cta-side {
		padding-bottom: 50px !important;
	}
}

@media only screen and (min-width: 501px) {
	div#va-footer.style-footer-cta-side .row-inner .copy-wrap {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		margin-top: 32px;
	}

	div#va-footer.style-footer-cta-side .row-inner .copy-wrap .copy-va {
		margin: 0;
		text-align: left;
	}

	div#va-footer.style-footer-cta-side .footer-inner .menu-col-wrap {
		display: grid;
		grid-template-columns: 1fr 1fr;
		width: 100%;
		gap: 32px;
	}
}

/* Two CTAs */
.cta-tagline {
	max-width: 1600px;
	margin: 0 auto;
}
.cta-tagline h3 {
	margin: 0;
	color: #fff;
	text-align: left;
	font-size: 16px;
}
@media only screen and (min-width: 901px) {
	.cta-header h3 {
		margin: 0;
		color: #fff;
		text-align: left;
		font-size: 16px;
	}

	.two-cta-wrap .second-cta-wrap div#cta,
	#cta.single-band {
		border: 0;
		padding: 50px;
		background: var(--primary);
		color: #fff;
	}

	#cta.single-band {
		padding: 50px 5vw;
	}

	.two-cta-wrap .second-cta-wrap div#cta .row-inner,
	.two-cta-wrap .second-cta-wrap div#cta .row-inner .cta-content,
	#cta.single-band .row-inner,
	#cta.single-band .row-inner .cta-content {
		display: flex;
		align-items: center;
		text-align: left;
		gap: 32px;
	}

	.two-cta-wrap .second-cta-wrap div#cta .row-inner .cta-content,
	#cta.single-band .row-inner .cta-content {
		max-width: unset;
		margin: 0;
	}

	.two-cta-wrap .second-cta-wrap div#cta .row-inner h2,
	#cta.single-band .row-inner h2 {
		font-size: 40px;
		margin: 0;
		color: #fff;
	}

	.two-cta-wrap .second-cta-wrap div#cta .row-inner .cta-content a.button,
	#cta.single-band .row-inner .cta-content a.button {
		background: #fff;
		border: 1px solid #fff;
		color: var(--primary);
	}

	.two-cta-wrap .second-cta-wrap div#cta .row-inner .cta-content a.button:hover,
	#cta.single-band .row-inner .cta-content a.button:hover {
		background: none;
		color: #fff;
	}

	.two-cta-wrap .second-cta-wrap div#cta .row-inner .cta-content p,
	#cta.single-band .row-inner .cta-content p {
		margin: 0;
	}

	.two-cta-wrap .second-cta-wrap div#cta .row-inner .cta-header,
	#cta.single-band .row-inner .cta-header {
		flex-basis: 40%;
	}

	.second-cta-wrap {
		padding: 0 5%;
	}

	.cta-header h3 {
		display: none;
	}

	@media only screen and (max-width: 1700px) {
		.two-cta-wrap .second-cta-wrap div#cta .row-inner h2,
		#cta.single-band .row-inner h2 {
			font-size: 32px;
		}
	}

	@media only screen and (max-width: 1400px) {
		.two-cta-wrap .second-cta-wrap div#cta .row-inner h2,
		#cta.single-band .row-inner h2 {
			font-size: 28px;
		}
		.two-cta-wrap .second-cta-wrap div#cta .row-inner .cta-content p,
		#cta.single-band .row-inner .cta-content p {
			font-size: 16px;
		}
	}

	@media only screen and (max-width: 1200px) {
		.cta-tagline {
			display: none;
		}

		.cta-header h3 {
			display: block;
		}
		.two-cta-wrap .second-cta-wrap div#cta .row-inner,
		#cta.single-band .row-inner {
			justify-content: space-between;
		}

		.two-cta-wrap .second-cta-wrap div#cta .row-inner > div,
		#cta.single-band .row-inner > div {
			flex-basis: 50%;
		}

		.two-cta-wrap .second-cta-wrap div#cta .row-inner .cta-content,
		#cta.single-band .row-inner .cta-content {
			display: block;
			text-align: center;
		}

		.two-cta-wrap .second-cta-wrap div#cta .row-inner .cta-content p,
		#cta.single-band .row-inner .cta-content p {
			margin-bottom: 10px;
		}
	}
}
@media only screen and (max-width: 900px) {
	.two-cta-wrap .second-cta-wrap {
		margin: 0 !important;
	}

	.cta-tagline {
		display: none;
	}

	.two-cta-wrap > #cta {
		padding-bottom: var(--defaultVerticalSpacing) !important;
	}

	div#cta.single-band,
	.two-cta-wrap .second-cta-wrap div#cta {
		background: var(--primary);
		color: #fff;
		padding: 50px 5vw;
	}
	div#cta.single-band h2,
	div#cta.single-band h3,
	.two-cta-wrap .second-cta-wrap div#cta h2,
	.two-cta-wrap .second-cta-wrap div#cta h3 {
		color: #fff;
	}
	div#cta.single-band h3,
	.two-cta-wrap .second-cta-wrap div#cta h3 {
		margin: 0;
	}
	div#cta.single-band .button,
	.two-cta-wrap .second-cta-wrap div#cta .button {
		background: #fff;
		color: var(--primary);
		border: 1px solid #fff;
	}
	div#cta.single-band .button:hover,
	.two-cta-wrap .second-cta-wrap div#cta .button:hover {
		background: none;
		color: #fff;
	}
}

/* Compact Footer */
#va-footer.style-compact .footer-col.contact-info {
	order: 2;
	padding-right: 0;
	display: flex;
}

#va-footer.style-compact .row-inner .menu-col-wrap {
	width: 30%;
	gap: 40px !important;
}

#va-footer.style-compact .menu-col-wrap .footer-col {
	width: 50% !important;
}

#va-footer.style-compact .footer-col.footer-logo {
	width: 20%;
	display: flex;
	justify-content: center;
}

#va-footer.style-compact .menu-col .menu > li > a {
	font-weight: normal;
	font-size: 18px;
	color: var(--darkdefault);
	margin-bottom: 6px;
	display: block;
}

#va-footer.style-compact .menu-col .menu > li > a:hover {
	color: var(--primaryalt);
}

#va-footer.style-compact .menu-col ul.sub-menu {
	padding-top: 0;
}

div#va-footer.style-compact
	.row-inner
	.menu-col-wrap.col-2
	.menu-item-has-children
	ul.sub-menu {
	column-count: 1;
}

div#va-footer.style-compact {
	padding: 50px 5% 32px;
}

div#va-footer.style-compact .site-footer {
	padding-top: 20px;
}

#va-footer.style-compact .contact-info p {
	margin-bottom: 4px;
}

@media only screen and (max-width: 1400px) {
	#va-footer.style-compact
		.footer-col.contact-info
		.info-social-wrap
		> .contact-info {
		margin-bottom: 10px;
	}

	#va-footer.style-compact .row-inner .menu-col-wrap {
		width: auto !important;
	}

	#va-footer.style-compact .menu-col-wrap .footer-col {
		width: auto !important;
	}
}

@media only screen and (max-width: 959px) {
	#va-footer.style-compact .footer-col.footer-logo {
		display: none;
	}
	#va-footer.style-compact .row-inner .menu-col-wrap {
		justify-content: flex-start;
	}
	#va-footer.style-compact .footer-col.contact-info {
		/* width: 70%; */
		margin-bottom: 0;
		justify-content: flex-end;
	}
}

@media only screen and (max-width: 759px) {
	#va-footer.style-compact .row-inner .menu-col-wrap {
		display: none;
	}
	#va-footer.style-compact .footer-col.contact-info {
		width: 100%;
		justify-content: flex-start;
	}
	#va-footer.style-compact .footer-col.contact-info .info-social-wrap {
		display: flex;
		width: 100%;
		gap: 60px;
	}
}

@media only screen and (max-width: 500px) {
	#va-footer.style-compact .footer-col.contact-info .info-social-wrap {
		display: block;
	}
}

/********************** * Mobile Buttons *********************/
.phone-buttons {
	display: flex;
	width: 100%;
	position: fixed;
	bottom: 0;
	z-index: 50;
}
.phone-buttons > div {
	flex-grow: 1;
	text-align: center;
	background: var(--darkdefault);
	border-right: solid 1px rgba(255, 255, 255, 0.3);
}
.phone-buttons > div svg {
	width: 25px;
	height: 25px;
	fill: #fff;
}
.phone-buttons > div a {
	display: flex;
	padding: 10px;
	align-items: center;
	justify-content: center;
}
.phone-buttons > div:last-child {
	border: 0;
}
/********************** * Layouts *********************/
/*** Title with Main Content ***/
main#genesis-content {
	padding-top: var(--defaultVerticalSpacing);
	/* overflow: hidden; */
}
main#genesis-content:has(> .style-light) {
	/* padding-top: 0; */
}
.row.title-row {
	text-align: center;
	padding-top: 0;
	padding-bottom: 0;
}

.row.title-row h1 {
	margin-bottom: 0;
}

h1 span {
	display: block;
	font-size: 0.5em;
}

.home h1 span {
	display: inline;
	font-size: 1em;
	color: var(--cta);
}

.row.title-row + .row.main-content {
	padding-top: 20px;
}

.row.main-content {
	text-align: center;
}

.row.main-content li {
	text-align: left;
}

.row.main-content .f-text {
	max-width: 900px;
	margin: 0 auto;
}
.f-text p:last-child,
.f-text ul:last-child,
.f-text ol:last-child {
	margin-bottom: 0;
}
.style-dark a {
	color: #fff !important;
	text-decoration: underline;
}
.style-dark a:hover {
	color: rgba(255, 255, 255, 0.7) !important;
}
.f-text a.button,
.cta-content a.button,
a.button.primary {
	text-decoration: none;
	min-width: 240px;
	width: min-content;
	color: #fff;
	background: var(--cta);
}
.f-text a.button:hover,
.cta-content a.button:hover,
a.button.primary:hover {
	background: var(--ctaalt);
}

.cta-content {
	max-width: 900px;
	margin: 0 auto;
}

.cta-content a.button {
	margin: 0 10px;
}

.f-text a.button.secondary,
.cta-content a.button.secondary {
	background: var(--primary);
}

.f-text a.button.secondary,
.cta-content a.button.secondary:hover {
	background: var(--primaryalt);
}

.style-dark .f-text a.button {
	background: rgba(255 255 255 / 35%);
}
.style-dark .f-text a.button:hover {
	background: rgba(255 255 255 / 45%);
	color: #fff !important;
}
.breadcrumbs > span:last-child {
	display: none;
}
span.sep:nth-last-child(2) {
	display: none !important;
}
.breadcrumbs span.sep {
	color: var(--darkdefault);
	display: inline-block;
	padding: 0 8px;
	font-size: 12px;
	color: #666;
	font-weight: 700;
}
.breadcrumbs a {
	color: var(--darkdefault);
	text-decoration: none;
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
}
.breadcrumbs a:hover {
	color: var(--primaryalt);
}
.breadcrumbs {
	margin-bottom: 10px;
}

.row.main-content.has-main-img {
	text-align: left;
}

.row.main-content.has-main-img .f-text {
	max-width: 100%;
}

.row.main-content.has-main-img .f-text > img,
.row.main-content.has-main-img .f-text > picture {
	float: right;
	display: inline-block;
	border: solid 1px #ddd;
	margin: 0 0 0 40px;
	max-width: 500px;
}

@media only screen and (max-width: 959px) {
	.row.main-content.has-main-img .f-text > img,
	.row.main-content.has-main-img .f-text > picture {
		float: none;
		margin: 0 0 40px 0;
		max-width: 100%;
	}
	.row.title-row {
		text-align: center;
		padding-top: 0;
		padding-bottom: 40px;
	}

	.row.title-row + .row.main-content {
		padding-top: 0;
	}
}

@media only screen and (max-width: 700px) {
	.row.main-content,
	.row.title-row {
		text-align: left;
	}
}

@media only screen and (max-width: 600px) {
	.cta-content a.button {
		width: 100%;
		margin: 0 0 20px 0;
	}

	.cta-content a.button:last-child {
		margin-bottom: 0;
	}
}
/*** Image - Full Width ***/
.image-full-width {
	text-align: center;
}
.image-full-width h2 {
	text-align: left;
}
.image-full-width.beige img {
	background-color: #efefdf;
	padding: 60px 120px;
}
.image-full-width .caption {
	padding-top: 20px;
	font-style: italic;
}

@media screen and (max-width: 900px) {
	.image-full-width.beige img {
		padding: 30px;
	}
}

@media screen and (max-width: 500px) {
	.image-full-width.beige img {
		padding: 2%;
	}
}
/*** Repeated Content with Image ***/
.repeated-content-images {
	& .row-inner {
		& .repeated-content-wrapper {
			display: flex;
			align-items: center;
			gap: 1rem;
			margin-bottom: 2rem;
		}

		& .f-asset {
			width: 10%;
		}
		& .f-text {
			width: 70%;
		}
	}
}
@media only screen and (max-width: 959px) {
	.repeated-content-images .row-inner {
		& .f-asset {
			width: 60px;
		}

		& .f-text {
			width: calc(100% - 60px);
		}
	}
}
@media only screen and (max-width: 500px) {
	.repeated-content-images .row-inner {
		& .repeated-content-wrapper {
			display: block;
		}

		& .f-asset {
			width: 80px;
			margin-bottom: 12px;
		}

		& .f-text {
			width: 100%;
		}
	}
}
/*** Content with Media ***/
.content-media .row-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.content-media .row-inner > div {
	width: calc(50% - 32px);
	order: 1;
}
.content-media .row-inner > div.f-text {
	width: calc(60% - 32px);
}
.content-media .row-inner > div.f-asset {
	width: calc(40% - 32px);
}
.content-media.asset-25 .row-inner {
	& > div.f-asset {
		width: calc(25% - 32px);
	}
	& > div.f-text {
		width: calc(75% - 32px);
	}
}
.content-media.asset-33 .row-inner {
	& > div.f-asset {
		width: calc(33% - 32px);
	}
	& > div.f-text {
		width: calc(66% - 32px);
	}
}
.content-media.asset-50 .row-inner {
	& > div.f-asset,
	> div.f-text {
		width: calc(50% - 32px);
	}
}
.content-media.asset-right .row-inner > div.f-asset {
	order: 2;
}
.content-media.asset-left .row-inner > div.f-asset {
	order: 0;
}
.content-media .f-asset img,
.content-media .f-asset iframe {
	width: 100%;
}
.content-media.asset-fancy-video .row-inner > div.f-text {
	width: calc(60% - 32px);
}
.content-media.asset-fancy-video .row-inner > div.f-asset {
	width: calc(40% - 32px);
}
.content-media.asset-fancy-video .row-inner > div.f-asset.auto-thumb {
	aspect-ratio: 16 / 9;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.content-media.asset-fancy-video .row-inner {
	align-items: center;
}
.content-media.asset-fancy-video .f-asset .img-wrap {
	border-radius: 10px;
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
}
.content-media.asset-fancy-video .f-asset .img-wrap video {
	max-width: unset;
	width: 100%;
}
.content-media.asset-fancy-video .f-asset .img-wrap img {
	transition: all 300ms;
}
.content-media.asset-fancy-video .f-asset a:hover .img-wrap .play-button {
	background: var(--primary);
	box-shadow: none;
}
.content-media.preview .row-inner > div.f-asset {
	aspect-ratio: 16 / 9;
	position: relative;
	background-size: 100%;
	background-position: center center;
}
.content-media.preview .row-inner > div.f-asset > a:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: unset;
	transition: all 300ms;
	z-index: 1;
}
.content-media.preview .row-inner > div.f-asset > a:hover:before {
	background-color: rgba(255, 255, 255, 0.4);
}
.content-media.asset-fancy-video .row-inner > div.f-asset,
.content-media.asset-video .row-inner > div.f-asset {
	border-radius: 10px;
	overflow: hidden;
}
.content-media.asset-fancy-video .f-asset .img-wrap .play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background-color: #333c;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
	z-index: 1;
	border-radius: 50%;
	transition: all 300ms;
}
.content-media.asset-fancy-video .f-asset .img-wrap .play-button:before {
	position: absolute;
	content: "";
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	margin-left: 3px;
	border-style: solid;
	border-width: 15px 0 15px 25px;
	border-color: transparent transparent transparent #fff;
}
@media only screen and (max-width: 900px) {
	.content-media.asset-image {
		& .f-asset img {
			position: sticky;
			top: 150px;
		}

		& .row-inner {
			align-items: unset;
		}
	}
	.content-media .row-inner {
		flex-wrap: wrap;
	}
	.content-media .row-inner > div {
		width: 100%;
	}
	.content-media .row-inner > div.f-asset {
		order: 0 !important;
		margin-bottom: 32px !important;
	}
	.content-media.asset-fancy-video .row-inner > div.f-text {
		width: 100%;
	}
	.content-media.asset-fancy-video .row-inner > div.f-asset {
		width: 80%;
	}
	.content-media.asset-fancy-video .row-inner {
		align-items: initial;
		justify-content: center;
	}
}
@media only screen and (max-width: 600px) {
	.content-media.asset-fancy-video .row-inner > div.f-asset {
		width: 100%;
	}
	.content-media.asset-fancy-video .row-inner {
		display: block;
	}
	.content-media {
		/* & .row-inner {
			flex-direction: column;
		} */

		& .f-asset {
			display: none;
		}

		& .f-text {
			width: 100% !important;
		}
	}
}
/*** Form ***/
.form .form-wrap {
	max-width: 1200px;
}
.form-content .f-text {
	padding-bottom: 40px;
}
.page-id-94 div#va-footer {
	border-top: solid 1px var(--lightborder);
}
.gform_wrapper .gfield h2,
.gform_wrapper .gfield h3,
.gform_wrapper .gfield h4 {
	margin: 20px 0;
}
.row.style-dark form input[type="submit"] {
	background: rgba(255 255 255 / 35%);
}

.row.style-dark form input[type="submit"]:hover {
	background: rgba(255 255 255 / 45%);
}

.form.layout-side .row-inner {
	display: flex;
}

.form.layout-side .row-inner .form-content {
	width: 50%;
	padding-right: 45px;
}

.form.layout-side .row-inner .form-content h2 {
	text-align: left;
}

.form.layout-side .row-inner .form-wrap {
	width: 50%;
	padding-left: 45px;
}

.style-dark .gform_wrapper .gfield_required {
	color: #ffb3b3;
}

div.gform_wrapper .gform_validation_errors > h2 {
	font-weight: 700;
	font-size: 16px !important;
}

.gform_wrapper.gravity-theme .gform_validation_errors:focus {
	outline: none !important;
	border-color: var(--primary);
}

div.gform_wrapper .gfield_error legend,
div.gform_wrapper .gfield_error label {
	color: #ffb3b3;
}

@media only screen and (max-width: 959px) {
	.form.layout-side .row-inner {
		display: block;
	}

	.form.layout-side .row-inner .form-content,
	.form.layout-side .row-inner .form-wrap {
		width: 100%;
		padding-right: 0;
		padding-left: 0;
	}
}

/*** Cards (Default) ***/
.row.cards-default {
}
.cards-default h2 {
	/* text-align: center; */
}
.cards-default .f-text,
.card-style-full-image .f-text,
.card-style-grid .f-text,
.card-style-minimal .f-text,
.card-style-minimal_icon_only .f-text,
.list-with-small-images .f-text,
.row.x-link-wrap.layout-simple .row-inner .f-text {
	width: 1000px;
	max-width: 100%;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 60px;
}
.card-style-normal_carousel .f-text {
	text-align: left;
	width: auto;
	margin-bottom: 0;
}
.card-style-normal_carousel .cards-items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.cards-items .featured {
	color: var(--darkdefault) !important;
}

.cards-default .cards-items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.cards-default.count-3 .cards-items {
	grid-template-areas:
		"card1 card2"
		"card3 card3";
}

.cards-default.count-3 .cards-items .item:nth-child(1) {
	grid-area: card1;
}

.cards-default.count-3 .cards-items .item:nth-child(2) {
	grid-area: card2;
}

.cards-default.count-3 .cards-items .item:nth-child(3) {
	grid-area: card3;
}

.cards-default.bg-colors-light-gray-yellow .cards-items .item {
	background: #efefdf;
}

.cards-default.bg-colors-branded-colors .cards-items .item {
	&:nth-child(3n + 1) {
		background: #125776;
	}
	&:nth-child(3n + 2) {
		background: var(--primaryalt);
	}
	&:nth-child(3n + 3) {
		background: #31713e;
	}
	.industries-crosslinking &:nth-child(3n + 3) {
		grid-column: span 2;
	}
}

.card-style-normal_carousel .cards-items {
	display: block;
	width: calc(100% + 60px);
	padding-left: 60px;
	margin-bottom: 40px;
}
.card-style-normal_carousel .cards-items .slick-list {
	padding: 50px 24px;
	margin-top: -50px;
	margin-bottom: -50px;
	margin-left: -24px;
	margin-right: -24px;
}
.cards-default .cards-items .item,
.card-style-normal_carousel .item {
	overflow: hidden;
	/* box-shadow: 0px 25px 35px -6px rgb(200 212 218 / 50%); */
	transition: all 0.2s ease-in-out;
	background: #fff;
	transition: box-shadow 300ms;
}
.card-style-normal_carousel .item[aria-hidden="true"] {
	box-shadow: 0px 25px 35px -6px rgb(200 212 218 / 0%);
}
.card-style-normal_carousel .item.slick-cloned.slick-active,
.card-style-normal_carousel .item.slick-cloned.slick-current,
.card-style-normal_carousel .item[tabindex="0"] {
	/* box-shadow: 0px 25px 35px -6px rgb(200 212 218 / 50%)!important; */
}
.card-style-normal_carousel .item {
	height: auto;
	/* width:calc((90vw - 90px) / 4)!important; */
	margin-right: 30px;
}
.cards-default .cards-items .item:hover,
.card-style-normal_carousel .item:hover {
	/* box-shadow: 0px 15px 25px -6px rgb(0 0 0 / 25%); */
}
.cards-default .cards-items .img,
.card-style-normal_carousel .img {
	height: 200px;
	position: relative;
	background-size: cover !important;
	background-position: center !important;
	display: block;
	margin: 0 auto 20px;
	width: auto;
}
.cards-default .cards-items .text,
.card-style-normal_carousel .cards-items .text {
	display: block;
}
.cards-default.card-style-side .cards-items {
	grid-template-columns: repeat(2, 1fr);
}
.cards-default.card-style-side .cards-items .text {
	padding: 80px 40px;
}
.cards-default .item > a {
	text-decoration: none;
	color: var(--primary);
	padding: 50px 36px;
	width: 100%;
	height: 100%;
	display: block;
}
.bg-colors-branded-colors.cards-default .item * {
	color: #fff;
}
.bg-colors-branded-colors.cards-default .item .link-list a:hover {
	color: var(--cta);
}
.cards-default .item:not(:has(> a)) {
	padding: 50px 36px;
}
.cards-default a:hover {
	color: var(--primaryalt);
}
.row.cards-default h3 {
	font-size: 30px;
	font-weight: 700;
	color: var(--primary);
	transition: all 300ms;
}
.row.cards-default.card-style-side h3 {
	font-size: 32px;
}
.row.cards-default a:hover h3 {
	color: var(--primaryalt);
}
.cards-default p.secondary {
	font-size: 0.75em;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.6);
	margin-bottom: 16px;
}
.cards-default .desc p {
	color: var(--darkdefault);
	margin-bottom: 20px;
}
.cards-default .btn-cta {
	border-radius: 25px;
	padding: 10px 40px;
	background: var(--primary);
	color: #fff;
	font-weight: 700;
	font-size: 0.875em;
	display: block;
	text-align: center;
	transition: all 300ms;
}
.cards-default.card-style-side .btn-cta {
	display: inline-block;
}
.cards-default a:hover .btn-cta,
.cards-default a:hover .button {
	background: var(--primaryalt);
}
.cards-default .cards-items .img:before {
	content: "";
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: var(--primary);
	transition: all 400ms;
	opacity: 0;
}
.cards-default .cards-items a:hover img:before {
	opacity: 0.7 !important;
}
.cards-default .cards-items a:hover .img:before {
	opacity: 0.7;
}
.cards-default.card-style-side .cards-items .item {
	/* width: calc(50% - 15px); */
	box-shadow: 2px 3px 20px 0px rgb(0 0 0 / 20%);
}
.cards-default.card-style-side .cards-items .item a {
	display: flex;
	height: 100%;
}
.cards-default.card-style-side .cards-items .item .img {
	width: 45%;
	min-width: 45%;
	display: flex;
	height: auto;
}
.cards-default.card-style-side .cards-items .item .text {
	width: 55%;
	min-width: 55%;
}

@media screen and (max-width: 600px) {
	.card-style-normal .button {
		display: block;
		width: fit-content;

		&:not(:last-of-type) {
			margin-bottom: 2rem;
		}
	}
	.cards-default .cards-items .img,
	.card-style-normal_carousel .img {
		height: auto;
	}
}

/*** Carousel Cards ***/
.card-style-normal_carousel .row-inner {
	display: flex;
}
.card-style-normal_carousel .row-inner .f-text {
	width: 33.33%;
	min-width: 33.33%;
	display: flex;
	flex-direction: column;
}
.card-style-normal_carousel .f-text h2 {
	text-align: left;
}
.card-style-normal_carousel button.slick-arrow svg {
	fill: rgba(0, 0, 0, 0.4);
	position: absolute;
	width: 24px;
	transition: all 300ms;
}
.card-style-normal_carousel button.slick-arrow {
	top: auto;
	padding: 0;
	height: 40px;
	width: 24px;
	display: flex;
	background: none;
	position: absolute;
	z-index: 99;
	outline: none !important;
}
.card-style-normal_carousel button.slick-arrow.slick-next {
	bottom: -65px;
	left: 100px;
	right: auto;
}
.card-style-normal_carousel button.slick-arrow.slick-prev {
	bottom: -65px;
	left: 60px;
}
.card-style-normal_carousel button.slick-arrow svg path {
	transition: all 300ms;
}
.card-style-normal_carousel button.slick-arrow:hover svg path {
	fill: var(--primary) !important;
}
@media only screen and (max-width: 1400px) {
	.card-style-normal_carousel .cards-items {
		flex-wrap: wrap;
	}
	.card-style-normal_carousel .item {
		width: 33.33%;
		margin-bottom: 40px;
	}
}
@media only screen and (max-width: 850px) {
	.card-style-normal_carousel .cards-items .slick-list {
		overflow: visible;
		margin: 0;
		padding: 0;
	}
	.card-style-normal_carousel .cards-items {
		width: 48%;
		padding-left: 4%;
	}
	.card-style-normal_carousel .row-inner .f-text,
	.card-style-normal_carousel .cards-items {
		width: 100%;
		min-width: 100%;
		padding: 0;
	}
	.card-style-normal_carousel .row-inner .f-text {
		margin-bottom: 40px;
	}
	.card-style-normal_carousel button.slick-arrow.slick-prev {
		left: calc(50% - 40px);
		bottom: -40px;
	}
	.card-style-normal_carousel .row-inner {
		flex-wrap: wrap;
	}
	.card-style-normal_carousel button.slick-arrow.slick-next {
		left: calc(50% + 10px);
		bottom: -40px;
	}
	.cards-default.card-style-side .cards-items .item,
	.card-style-normal_carousel .item[aria-hidden="true"] {
		box-shadow: 2px 3px 20px 0px rgb(0 0 0 / 20%) !important;
	}
	.card-style-normal_carousel .item {
		margin-left: 15px;
		margin-right: 15px;
	}
}
@media only screen and (max-width: 650px) {
	.card-style-normal_carousel .cards-items {
		width: 100%;
		padding: 0;
	}
	.card-style-normal_carousel .row-inner .f-text {
		width: 100%;
		margin-bottom: 40px;
	}
	.card-style-normal_carousel .row-inner {
		display: block;
	}
	.card-style-normal_carousel button.slick-arrow.slick-prev {
		/* left: 0;
        bottom: -60px; */
	}
	.card-style-normal_carousel button.slick-arrow.slick-next {
		/* left: 50px; */
		/* bottom: -60px; */
	}
	.card-style-normal_carousel .cards-items .item {
		/* padding: 0 16px 0 0; */
	}
	.card-style-normal_carousel .cards-items {
		/* padding-top: 60px; */
		/* padding-bottom: 60px; */
	}
}
@media only screen and (max-width: 340px) {
	.card-style-normal_carousel .cards-items {
		left: auto;
		width: 100%;
	}
	.card-style-normal_carousel .cards-items .item {
		width: 100%;
	}
}
@media only screen and (max-width: 1400px) {
	.cards-default .cards-items .item {
		/* width: calc(33.33% - 32px); */
	}
}
@media only screen and (max-width: 1100px) {
	.cards-default.card-style-side .cards-items .item {
		width: 100%;
		margin-right: 0;
	}
}
@media only screen and (max-width: 1000px) {
	.cards-default .cards-items .item {
		/* width: calc(50% - 32px); */
	}
}
@media only screen and (max-width: 950px) {
	.cards-default.card-style-side .cards-items .item {
		width: 100%;
		margin-right: 0;
	}
}
@media only screen and (max-width: 700px) {
	.cards-default .cards-items .item {
		width: 100%;
		/* margin-right:0 !important; */
	}
}
@media only screen and (max-width: 500px) {
	.cards-default.card-style-side .cards-items .item a {
		flex-direction: column;
	}
	.cards-default.card-style-side .cards-items .item .img {
		width: 100%;
		height: 200px;
	}
	.cards-default.card-style-side .cards-items .item .text {
		width: 100%;
	}
}
/*** Cards (Full Image) ***/
.card-style-full-image h2 {
	text-align: center;
}
.card-style-full-image .f-text {
	margin-bottom: 64px;
}
.card-style-full-image .cards-items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}
.card-style-full-image .item {
	/* width: calc(25% - 20px); */
	/* margin-right: 20px; */
	height: 560px;
	max-height: 90vh;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 20px;
}

.card-style-full-image .item .img {
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-position: center !important;
	background-size: cover !important;
}

.card-style-full-image .item a {
	padding: 20px;
	display: block;
	text-align: center;
	color: #fff;
	text-decoration: none;
	position: relative;
	height: 100%;
	transition: all 600ms;
}
.card-style-full-image div.desc {
	max-height: 0;
	transition: all 600ms;
	transition-timing-function: cubic-bezier(0.53, 0.94, 0.82, 0.63);
	overflow: hidden;
	display: block;
	margin-bottom: 0;
}
.card-style-full-image p.secondary {
	font-size: 0.75em;
	margin: 0;
	transition: margin 600ms;
	color: #fff;
	line-height: 1.25;
}
.card-style-full-image a:hover p.secondary {
	/* margin-bottom: 16px; */
	font-weight: 500;
}
.card-style-full-image .text {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding-bottom: 40px;
	padding-left: 20px;
	padding-right: 20px;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 400px;
	max-height: 95px;
	transition: max-height 600ms;
	color: #fff;
}
.card-style-full-image .item a:after {
	content: "";
	background-image: linear-gradient(0deg, #000000a6, transparent);
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	transition: all 600ms;
}
.card-style-full-image h3 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 6px;
	color: #fff;
}
.card-style-full-image .item a:hover div.desc,
.isMobile .card-style-full-image .item a div.desc {
	max-height: 350px;
	padding-top: 16px;
}
.card-style-full-image .item a:hover:after,
.isMobile .card-style-full-image .item a:after {
	height: 140%;
	background-image: linear-gradient(
		0deg,
		rgba(0, 0, 0, 0.75),
		rgba(0, 0, 0, 0)
	);
}
.card-style-full-image .item div.desc p {
	/* font-size: 0.75em; */
	padding: 0 32px;
	margin-bottom: 16px;
	color: #fff;
}
.card-style-full-image a:hover .text,
.isMobile .card-style-full-image a .text {
	max-height: 100%;
	height: 100%;
	padding-bottom: 0;
}
.card-style-full-image .item span.btn-cta {
	background: var(--primary);
	display: inline-block;
	left: 0;
	right: 0;
	margin: 0 auto;
	padding: 10px 40px;
	border-radius: 20px;
	font-size: 0.875em;
	font-weight: 700;
	transition: all 0.2s ease-in-out;
}
.card-style-full-image .item span.btn-cta:hover {
	background: var(--primaryalt);
}
@media only screen and (max-width: 1400px) {
	.cards-default:not(.industries-crosslinking) .cards-items,
	.card-style-full-image .cards-items {
		grid-template-columns: repeat(3, 1fr);
	}
	.card-style-full-image .item {
		/* width: calc(33% - 20px); */
	}
}
@media only screen and (max-width: 1000px) {
	.cards-default .cards-items,
	.card-style-full-image .cards-items {
		grid-template-columns: repeat(2, 1fr);
	}
	.cards-default.card-style-side .cards-items {
		grid-template-columns: repeat(1, 1fr);
	}
	.card-style-full-image .item:nth-child(even) {
		margin-right: 0;
	}
}
@media only screen and (max-width: 900px) {
	.card-style-normal .cards-items {
		display: flex;
		flex-direction: column;
	}
}
@media only screen and (max-width: 700px) {
	.card-style-full-image h2,
	.cards-style-full-image .f-text {
		text-align: left;
	}
}
@media only screen and (max-width: 600px) {
	.card-style-full-image .item {
		width: 100%;
		margin-right: 0;
	}
}
/*** Cards (Small with Hover Image) ***/
.card-style-minimal .f-text,
.card-style-minimal_icon_only .f-text {
	margin-bottom: 64px;
}
.card-style-minimal h2,
.card-style-minimal_icon_only h2 {
	text-align: center;
}
.card-style-minimal .cards-items,
.card-style-minimal_icon_only .cards-items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}
.card-style-minimal .item,
.card-style-minimal_icon_only .item {
	/* margin-right: 20px; */
	/* margin-bottom:20px; */
	background-position: center !important;
	background-size: cover !important;
}

.card-style-minimal .item .img {
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-position: center !important;
	background-size: cover !important;
}

.card-style-minimal .item a,
.card-style-minimal_icon_only .item a {
	display: flex;
	position: relative;
	flex-direction: column;
	text-decoration: none;
	color: var(--darkdefault);
	box-shadow: 0 0 13px -5px rgb(0 0 0 / 20%);
	border: solid 1px var(--lightborder);
	/* border-bottom: 0; */
	height: 100%;
}
.card-style-minimal .item svg,
.card-style-minimal_icon_only svg {
	width: 60px;
	height: 60px;
	padding: 12px;
	border: 1px solid var(--lightborder);
	color: var(--darkdefault);
	fill: var(--darkdefault);
	transition: all 600ms;
	margin-bottom: 16px;
	background: rgba(255, 255, 255, 1);
}
.card-style-minimal_icon_only svg {
	height: 3.5vw;
	width: 3.5vw;
	padding: 0;
	border: none;
	background: none;
	float: right;
	display: block;
	padding: 5px;
	margin-bottom: 3.5vw;
}
.card-style-minimal_icon_only .text svg path,
.card-style-minimal_icon_only .text:before {
	transition: all 300ms;
}
.card-style-minimal_icon_only .text:before {
	content: "";
	background: var(--lightalt);
	width: 16vw;
	height: 16vw;
	border-radius: 16vw;
	display: block;
	top: -8vw;
	right: -8vw;
	position: absolute;
	z-index: -1;
}
.card-style-minimal_icon_only .text:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary);
	z-index: -2;
	opacity: 0;
	transition: all 300ms;
}
.card-style-minimal_icon_only h3 {
	clear: both;
}
.card-style-minimal .item svg path {
	fill: var(--primary);
}
.card-style-minimal_icon_only svg path {
	fill: var(--darkdefault);
}
.card-style-minimal .item svg,
.card-style-minimal .item svg path,
.card-style-minimal .desc .btn-cta,
.card-style-minimal_icon_only svg,
.card-style-minimal_icon_only svg path,
.card-style-minimal_icon_only .btn-cta {
	transition: all 300ms;
}
.card-style-minimal .item a:hover svg {
	background: var(--primaryalt);
	border-color: rgba(255, 255, 255, 0.375);
}
.card-style-minimal .item a:hover svg path {
	fill: rgba(255, 255, 255, 1);
}
.card-style-minimal .item h3,
.card-style-minimal_icon_only .item h3 {
	font-size: 22px;
	margin-bottom: 8px;
	font-weight: 700;
	transition: all 300ms;
}

.card-style-minimal .item a:hover h3 {
	color: #fff;
}

.card-style-minimal .item a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	transition: all 600ms;
	z-index: 1;
}
.card-style-minimal .item .text,
.card-style-minimal_icon_only .item .text {
	position: relative;
	z-index: 1;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	color: var(--darkdefault);
	transition: color 300ms;
}
.card-style-minimal_icon_only .item .text {
	display: block;
	background: var(--light);
	position: relative;
	overflow: hidden;
	transition: all 300ms;
	padding: 1.5vw;
}
.card-style-minimal .desc p,
.card-style-minimal_icon_only .desc p {
	margin-bottom: 6px;
	font-size: 0.875em;
	line-height: 1.5;
}
.card-style-minimal .desc .btn-cta,
.card-style-minimal_icon_only .btn-cta {
	color: var(--primary);
	font-weight: bold;
}
.card-style-minimal .item a:hover .desc .btn-cta,
.card-style-minimal .item a:hover .text {
	color: #fff;
}
.card-style-minimal .item p.secondary,
.card-style-minimal_icon_only .item p.secondary {
	font-size: 0.75em;
	margin-bottom: 10px;
	line-height: 1.25;
	color: #222;
	transition: all 300ms;
}
.card-style-minimal .item a:hover p {
	color: #fff;
}
.card-style-minimal_icon_only .item a:focus .text:after,
.card-style-minimal_icon_only .item a:hover .text:after {
	opacity: 0.15;
}
.card-style-minimal_icon_only .item a:focus .text svg path,
.card-style-minimal_icon_only .item a:hover .text svg path {
	fill: var(--primaryalt);
}
.card-style-minimal_icon_only .item a:focus .text:before,
.card-style-minimal_icon_only .item a:hover .text:before {
	background: var(--primary);
	opacity: 0.45;
	width: 16.5vw;
	height: 16.5vw;
	border-radius: 16.5vw;
}
.card-style-minimal_icon_only .item a:hover h3 {
	color: var(--primary);
}
.card-style-minimal .item .icon-arrow svg {
	color: #fff;
	height: 12px;
	width: 12px;
	float: right;
	transition: all 600ms;
	opacity: 0;
	margin: 0;
}
.card-style-minimal .item a:hover:before {
	background: var(--darkdefault);
	opacity: 0.75;
}
.card-style-minimal .item a:hover {
	color: #fff;
}
.card-style-minimal .item a:hover svg {
	color: #fff;
	fill: #fff;
}
.card-style-minimal.style-dark .item a {
	border: 0;
}

.card-style-minimal.style-dark span.icon-arrow {
	background: var(--cta);
	color: var(--cta);
}

@media only screen and (max-width: 1400px) {
	.card-style-minimal .item {
		/* width: calc(33.33% - 20px); */
	}
	.card-style-minimal .cards-items,
	.card-style-minimal_icon_only .cards-items {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media only screen and (max-width: 1000px) {
	.card-style-minimal .cards-items,
	.card-style-minimal_icon_only .cards-items {
		grid-template-columns: repeat(2, 1fr);
	}
	.card-style-minimal_icon_only svg {
		height: 5vw;
		width: 5vw;
		margin-bottom: 5vw;
	}
	.card-style-minimal_icon_only .text:before {
		width: 22vw;
		height: 22vw;
		border-radius: 22vw;
		top: -11vw;
		right: -11vw;
	}
	.card-style-minimal_icon_only .item a:focus .text:before,
	.card-style-minimal_icon_only .item a:hover .text:before {
		width: 22.5vw;
		height: 22.5vw;
		border-radius: 22.5vw;
	}
}
@media only screen and (max-width: 600px) {
	.card-style-minimal .cards-items,
	.card-style-minimal_icon_only .cards-items {
		display: block;
	}
	.card-style-minimal .cards-items .item,
	.card-style-minimal_icon_only .cards-items .item {
		margin-bottom: 30px;
	}
	.card-style-minimal .cards-items .item:last-child,
	.card-style-minimal_icon_only .cards-items .item:last-child {
		margin-bottom: 0;
	}
	.card-style-minimal_icon_only svg {
		height: 10vw;
		width: 10vw;
		margin-bottom: 10vw;
	}
	.card-style-minimal_icon_only .text:before {
		width: 44vw;
		height: 44vw;
		border-radius: 44vw;
		top: -22vw;
		right: -22vw;
	}
	.card-style-minimal_icon_only .item a:focus .text:before,
	.card-style-minimal_icon_only .item a:hover .text:before {
		width: 46vw;
		height: 46vw;
		border-radius: 46vw;
	}
}
/*** Cards (Side-by-side (and elongated)
    with background images)     ***/
.card-style-side-cards-background,
.card-style-side-cards-background-elongated {
	& .cards-items {
		display: flex;
		gap: 2rem;

		& .item {
			flex: 1;
			padding: 2rem;
			background-size: cover;
			background-repeat: no-repeat;
		}

		& h3,
		& p {
			margin-bottom: 0;
			color: var(--light);
		}
		
		& p {
			margin-bottom: 12px;
		}
	}
}
.card-style-side-cards-background-elongated {
	& .item {
		display: flex;
		align-items: flex-end;
		min-height: 720px;
	}

	& .text-link {
		min-height: calc(0.4 * 720px);

		& .text {
			display: flex;
			flex-direction: column;
			height: 100%;
		}

		& .desc {
			display: flex;
			flex-direction: column;
			justify-content: space-between;
			flex: 1;
		}

		& .button {
			display: flex;
			align-items: center;
			padding: 0;
			border: none;
			background: none;
			color: var(--cta);
			font-weight: bold;
			text-align: left;
		}

		&:hover .button {
			color: #fff;
		}
	}
}
.card-style-side-cards-background-elongated .text-link .button::after {
	content: "";
	display: inline-block;
	width: 1rem;
	height: 1rem;
	margin-left: 1rem;
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20576%20512%22%3E%3Cpath%20fill%3D%22%2381B041%22%20d%3D%22M16%20480L288-16%20560%20480%2016%20480z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	transform: rotate(90deg);
	transition: all 300ms;
}
.card-style-side-cards-background-elongated .text-link:hover .button::after {
	margin-left: 1.2rem;
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20576%20512%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M16%20480L288-16%20560%20480%2016%20480z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
}
@media only screen and (max-width: 1400px) {
	.card-style-side-cards-background,
	.card-style-side-cards-background-elongated {
		& .cards-items {
			display: grid;
			grid-template-columns: 1fr 1fr;
			grid-auto-rows: 1fr;
		}
	}
	.card-style-side-cards-background-elongated {
		& .item {
			min-height: 500px;
			background-color: rgba(var(--primaryrgb), 0.6);
			background-blend-mode: multiply;
		}

		& .text-link {
			min-height: calc(0.3 * 500px);
		}
	}
}
@media only screen and (max-width: 768px) {
	.card-style-side-cards-background-elongated {
		& .item {
			min-height: unset;
			background-color: rgba(var(--primaryrgb), 0.8);
			align-items: flex-start;
		}

		& .text-link {
			min-height: unset;

			& .desc {
				justify-content: flex-start;
			}
		}
	}
}
@media only screen and (max-width: 600px) {
	.card-style-side-cards-background,
	.card-style-side-cards-background-elongated {
		& .cards-items {
			grid-template-columns: 1fr;
			grid-auto-rows: unset;
		}
	}
	.card-style-side-cards-background-elongated {
		& .item {
			min-height: 300px;
			align-items: center;
		}
	}
}
/*** Cards (Side-by-side Colored) ***/
.card-style-side-cards-colored {
	& .f-text {
		width: 60%;
		margin-bottom: 2rem;
	}

	& .cards-items {
		display: flex;
		gap: 2rem;

		& .item {
			min-height: 450px;
			flex: 1;
		}

		& .text {
			display: flex;
			flex-direction: column;
			height: max(450px, 100%);
			background-color: rgba(255, 255, 255, 0.8);
		}

		& h3 {
			margin-bottom: 0;
			padding: 2rem 2rem 0;
		}

		& .secondary {
			margin-bottom: 1rem;
			text-transform: uppercase;
		}

		& .secondary,
		& .desc p {
			padding: 0 2rem;
		}

		& .desc {
			flex: 1;
			display: flex;
			flex-direction: column;
			justify-content: space-between;
			gap: 1rem;

			& p {
				margin-bottom: 0;
			}
		}

		& span {
			width: 100%;
			height: 50px;
			border-radius: 0;
		}
	}
}

@media only screen and (max-width: 900px) {
	.card-style-side-cards-colored {
		& .f-text {
			width: 100%;
		}

		& .cards-items {
			flex-direction: column-reverse;

			& .item {
				min-height: unset;
			}
		}
	}
}

/*** Cards (Grid with Featured) ***/
.card-style-grid h2 {
	/* text-align: center; */
}
.card-style-grid.h2-card h2 {
	text-align: left;
	margin: 0 0 1rem;
}
@media only screen and (min-width: 769px) {
	.card-style-grid.h2-card h2 {
		font-size: 36px;
	}
}
.card-style-grid .f-text {
	margin-bottom: 64px;
}
.card-style-grid .cards-items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-auto-rows: 1fr;
	gap: 6px;
}
.card-style-grid.count-4 .cards-items {
	grid-template-columns: 1fr 1fr;
}
.card-style-grid.count-4:has(.featured) .cards-items {
	grid-template-columns: repeat(3, 1fr);

	& .item.featured {
		grid-row: span 2;
	}

	& .item:last-of-type {
		grid-column: span 2;
	}
}
.card-style-grid.h2-card.is-odd .cards-items {
	/* grid-template-columns: 1fr 1fr; */
}
.card-style-grid.h2-card .item.featured {
	background-color: #efefdf;
	padding: 56px;
	justify-content: center;
	align-items: center;
}
.card-style-grid.h2-card.is-odd .item.featured {
	grid-row: span first / end;
}
.card-style-grid .grid-half .item.normal {
	height: calc(50% - 15px);
	margin-bottom: 30px;
	width: calc(50% - 15px);
	margin-right: 30px;
	height: 300px;
	border: solid 1px var(--lightborder);
	position: relative;
}

.card-style-grid .item {
	background-size: cover !important;
	text-decoration: none;
	color: #fff;
	display: flex;
	height: 100%;
	position: relative;
	overflow: hidden;
	padding: 56px 26px;
}
.card-style-grid .item h3 {
	color: #fff;
	margin-bottom: 12px;
}
.card-style-grid .grid-half .item a:before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(0deg, #000000a6, transparent);
	transition: all 600ms;
	z-index: 1;
}
.card-style-grid .grid-half .item h3 {
	margin-bottom: 8px;
	font-size: 20px;
	text-align: center;
	font-weight: 700;
	color: #fff;
}
.card-style-grid .grid-half .item p {
	text-align: center;
	font-size: 0.75em;
	margin-bottom: 0;
	color: #fff;
	transition: all 500ms;
}

.card-style-grid .grid-half .item a:hover p.secondary {
	margin-bottom: 10px;
}

.card-style-grid .grid-half .item a .text {
	width: 100%;
	position: absolute;
	bottom: 10px;
	padding: 20px;
	transition: all 600ms;
	z-index: 2;
}
.card-style-grid .grid-half .item.normal:nth-child(even) {
	margin-right: 0;
}
.card-style-grid .grid-half .item.normal:nth-child(3),
.card-style-grid .grid-half .item.normal:nth-child(4) {
	margin-bottom: 0;
}
.card-style-grid .grid-half .item {
	background-size: cover !important;
	background-position: center !important;
}
.card-style-grid .grid-half .item a:hover:before {
	height: 140%;
	background: linear-gradient(0deg, rgb(0 75 135 / 94%), transparent);
}
.card-style-grid.style-dark .grid-half .item {
	border: solid 1px var(--primaryborder);
}

.card-style-grid .item .desc p {
	margin-bottom: 16px;
}

.card-style-grid .item p:last-of-type {
	margin-bottom: 0;
}

.card-style-grid .item a:hover .desc {
	max-height: 200px;
}

.card-style-grid span.btn-cta {
	font-weight: 700;
	background: #fff;
	padding: 8px 24px;
	display: inline-block;
	border-radius: 25px;
	color: var(--primary);
	font-size: 14px;
	transition: all 400ms;
}

.card-style-grid span.btn-cta:hover {
	background: var(--primaryalt);
	color: #fff;
}

@media only screen and (max-width: 1500px) {
	.card-style-grid.h2-card .item.featured .button {
		white-space: inherit;
	}
}
@media only screen and (max-width: 1200px) {
	.card-style-grid .grid-half {
		width: 100%;
		padding: 0 !important;
	}
	.card-style-grid .grid-half .item.featured {
		height: 300px;
	}
	.card-style-grid .grid-half .item.normal {
		width: calc(50% - 15px);
	}
	.card-style-grid.h2-card.is-odd {
		& .cards-items {
			grid-template-columns: 1fr 1fr;
			grid-auto-rows: unset;
		}
		& .item.featured {
			grid-row: unset;
			grid-column: 1 / -1;
		}
	}
}
@media only screen and (max-width: 900px) {
	.card-style-grid.count-6 .cards-items {
		grid-template-columns: repeat(2, 1fr);
	}

	.card-style-grid.count-4:has(.featured) {
		& .cards-items {
			grid-template-columns: repeat(2, 1fr);

			& .featured {
				grid-column: span 2;
				grid-row: unset;
			}
		}
	}
}
@media only screen and (max-width: 600px) {
	.card-style-grid .grid-half .item.normal {
		width: 100%;
		margin-right: 0;
		margin-bottom: 30px !important;
	}

	.card-style-grid .grid-half .item.normal:last-child {
		margin-bottom: 0 !important;
	}

	.card-style-grid .grid-half .item a:before {
		height: 140%;
		background: linear-gradient(0deg, rgb(0 75 135 / 94%), transparent);
	}

	.card-style-grid .item a .desc {
		max-height: 200px;
	}

	.card-style-minimal_icon_only .item .text {
		padding: 5vw;
		padding-right: 3.5vw;
		padding-top: 3.5vw;
	}

	.card-style-minimal_icon_only .desc {
		padding-right: 3vw;
	}
	.card-style-grid {
		&.count-4:has(.featured) {
			& .cards-items {
				grid-template-columns: 1fr 1fr;

				& .item:last-of-type {
					grid-column: span 1;
				}
			}

		}

		& .cards-items {
			grid-template-columns: 1fr !important;
			grid-auto-rows: unset;
		}
		& .item.featured {
			grid-column: unset !important;
		}
		& .item {
			padding: 26px !important;
		}
	}
}
/*** List with Small Image ***/
.row.list-with-small-images {
	/* padding-bottom: 36px; */
}
.list-with-small-images h2 {
	text-align: center;
}
.item.h2-item h2 {
	text-align: left;
	margin: 0;
}
.list-with-small-images .f-text {
	margin-bottom: 64px;
}
.list-with-small-images .list-items {
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}
.list-with-small-images.list-style-split .list-items {
	gap: 0px;
}
.list-with-small-images .item {
	flex-basis: calc(50% - 30px);
}
.list-with-small-images.list-style-split .item {
	flex-basis: 100%;
}
.list-with-small-images .item a,
.list-with-small-images .item .item-inner {
	text-decoration: none;
	display: flex;
	align-items: center;
}
.list-with-small-images .item h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
	display: inline;
}
.list-with-small-images .item p {
	color: var(--darkdefault);
	margin-bottom: 0;
	display: inline;
}
.list-with-small-images.style-dark .item p,
.list-with-small-images.text-light .item p {
	color: #fff;
	opacity: 0.8;
}
.list-with-small-images .img {
	width: 100px;
	height: 100px;
	min-width: 100px;
	margin-right: 20px;
	background-size: contain !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	position: relative;
	overflow: hidden;
}
.list-with-small-images .item:nth-child(even) {
	/* padding-left: 32px; */
}
.list-with-small-images .img:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: var(--primary);
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: all 400ms;
	border-radius: 50%;
}
.list-with-small-images a:hover .img:before {
	opacity: 0.7;
}
.list-with-small-images.list-style-stacked a,
.list-with-small-images.list-style-stacked .item-inner {
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.list-with-small-images.list-style-stacked .img {
	margin-bottom: 20px;
	margin-right: 0;
}
.list-with-small-images.list-style-stacked .item {
	width: 25%;
	padding-right: 16px;
	padding-left: 16px;
}
.row.list-with-small-images.list-style-split {
	/* padding-bottom: 90px; */
}
.list-with-small-images.list-style-split .row-inner {
	display: flex;
}
.list-with-small-images.list-style-split .row-inner .list-content {
	width: 50%;
	padding-right: 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.list-with-small-images.list-style-split .row-inner .list-items {
	padding-left: 32px;
	width: 50%;
}
.list-with-small-images.list-style-split .row-inner .list-items .item {
	margin-bottom: 0;
	border: solid 1px var(--lightborder);
	border-bottom: 0;
	padding: 0;
}
.list-with-small-images.style-light.list-style-split
	.row-inner
	.list-items
	.item,
.list-with-small-images.style-dark.list-style-split
	.row-inner
	.list-items
	.item {
	background: #fff;
}
.list-with-small-images.list-style-split.style-dark a {
	color: var(--primaryalt) !important;
}
.list-with-small-images.list-style-split.style-dark a:hover {
	color: var(--darkdefault) !important;
}
.list-with-small-images.list-style-split.style-dark .item p {
	color: var(--darkdefault);
	opacity: 1;
}
.list-with-small-images.list-style-split
	.row-inner
	.list-items
	.item:last-child {
	border-bottom: solid 1px var(--lightborder);
}
.list-with-small-images.list-style-split .row-inner .list-items .item a,
.list-with-small-images.list-style-split
	.row-inner
	.list-items
	.item
	.item-inner {
	padding: 20px;
}
.list-with-small-images.list-style-split h2 {
	text-align: left;
}
.list-with-small-images.list-style-split .f-text {
	text-align: left;
	margin-bottom: 0;
}

.list-with-small-images .text {
	width: 100%;
}

.list-with-small-images.list-style-split.style-dark .item h3 {
	color: var(--primary);
	transition: all 300ms;
}

.list-with-small-images.list-style-split.style-dark .item a:hover h3 {
	color: var(--primaryalt);
}

@media only screen and (max-width: 1400px) {
	.list-with-small-images.list-style-split .row-inner {
		display: block;
	}
	.list-with-small-images.list-style-split .row-inner .list-content {
		width: 100%;
		padding: 0;
	}
	.list-with-small-images.list-style-split .f-text {
		margin-bottom: 64px;
	}
	.list-with-small-images.list-style-split h2 {
		text-align: center;
	}
	.list-with-small-images.list-style-split .row-inner .list-items {
		width: 100%;
		padding: 0;
	}
}
@media only screen and (max-width: 1200px) {
	.list-with-small-images.list-style-stacked .item {
		width: 50%;
	}
}
/* @media only screen and (max-width: 959px) {
	.row.list-with-small-images {
		padding-bottom: 0;
	}
} */
@media only screen and (max-width: 830px) {
	.list-with-small-images .item {
		flex-basis: 100%;
	}
}
@media only screen and (max-width: 768px) {
	.list-with-small-images .item {
		width: 100%;
		padding: 0 !important;
	}
	.list-with-small-images.list-style-stacked .item {
		width: 100%;
	}
}

@media only screen and (max-width: 700px) {
	.list-with-small-images.list-style-stacked a,
	.list-with-small-images.list-style-stacked .item-inner {
		text-align: left;
	}
}

@media only screen and (max-width: 500px) {
	.list-with-small-images.list-style-split .img {
		width: 50px;
		height: 50px;
		min-width: 50px;
	}
}
/*** Column-Based Content ***/
.column-content .row-inner > .f-text {
	margin-bottom: 40px;
}
.column-content .column-items {
	display: flex;
	justify-content: space-between;
}
.column-content .col {
	width: 100%;
}
.column-content .col:last-child {
	margin-bottom: 0 !important;
}
.column-content.col-2 .column-items .col {
	width: calc(50% - 40px);
}
.column-content.col-3 .column-items .col {
	width: calc(33.33% - 40px);
}
.column-content.col-4 .column-items .col {
	width: calc(25% - 40px);
}
@media only screen and (max-width: 1100px) {
	.column-content .column-items {
		flex-wrap: wrap;
	}
	.column-content.col-4 .column-items .col {
		width: calc(50% - 40px);
		margin-bottom: 40px;
	}
}
@media only screen and (max-width: 950px) {
	.column-content.col-3 .column-items .col {
		width: calc(33.33% - 20px);
	}
	.column-content.col-2 .column-items .col,
	.column-content.col-4 .column-items .col {
		width: calc(50% - 20px);
	}
}
@media only screen and (max-width: 680px) {
	.column-content.col-2 .column-items .col,
	.column-content.col-3 .column-items .col,
	.column-content.col-4 .column-items .col {
		width: calc(100%);
		margin-bottom: 40px;
	}
}

/*** Column with Sidebar ***/
.column-with-sidebar {
	& .column-items {
		display: flex;
		gap: 4rem;
	}

	& .column,
	& .sidebar {
		padding: 2rem 0;
	}

	& .column {
		padding-top: 0;
		flex: 2;
	}

	& .sidebar {
		flex: 1;
	}

	& hr {
		height: initial;
		margin: 0;
		border-width: 1px;
	}
}

@media only screen and (max-width: 770px) {
	.column-with-sidebar {
		& .column-items {
			flex-direction: column-reverse;
			gap: 2rem;
		}

		& .column,
		& .sidebar {
			padding: 0;
		}
	}
}
/*** Services Crosslinking ***/
.x-link-wrap {
	margin-bottom: 0px;
	overflow: hidden;
}
.x-link-wrap .row-inner {
	display: flex;
}
.x-link-wrap .row-inner .f-text {
	width: 33.33%;
	min-width: 33.33%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.x-link-wrap .x-links {
	width: 100%;
	padding-left: 60px;
	margin-bottom: 40px;
}
.x-link-wrap .x-link {
	width: 362px;
	padding: 0 16px;
}
.x-link a.button {
	background: none;
	color: var(--primary);
	padding: 0;
}
.x-link a {
	display: block;
	text-decoration: none;
}
.x-link a span {
	color: var(--primary);
	font-weight: 700;
	display: block;
	padding-top: 12px;
}
.x-link-wrap button.slick-arrow svg {
	fill: rgba(0, 0, 0, 0.4);
	position: absolute;
	width: 24px;
	transition: all 300ms;
}
.x-link-wrap button.slick-arrow {
	top: auto;
	padding: 0;
	height: 40px;
	width: 24px;
	display: flex;
	background: none;
	position: absolute;
}
.x-link-wrap button.slick-arrow.slick-next {
	bottom: -40px;
	left: 126px;
	right: auto;
}
.x-link-wrap button.slick-arrow.slick-prev {
	bottom: -40px;
	left: 76px;
}
.x-link-wrap button.slick-arrow:hover svg {
	fill: var(--cta);
}
.x-link.slick-slide:hover {
	transition: opacity 300ms;
}
.x-link.slick-slide:hover {
	opacity: 0.7;
}
.row.x-link-wrap.layout-simple .row-inner {
	display: block;
}
.row.x-link-wrap.layout-simple .row-inner .f-text {
	/* width: 100%; */
	min-width: 0;
	margin-bottom: 40px;
	text-align: center;
}
.row.x-link-wrap.layout-simple .x-links {
	display: flex;
	padding: 0;
	margin: 0;
	position: relative;
	left: -16px;
	width: calc(100% + 32px);
}
.layout-simple .x-link a span {
	text-align: center;
	padding-top: 8px;
	transition: all 300ms;
}
.layout-simple .x-link img {
	border: solid 1px var(--lightborder);
	transition: all 300ms;
}
.layout-simple .x-link a:hover img {
	opacity: 0.7;
}
.layout-simple .x-link a:hover span {
	color: var(--darkdefault);
}
.x-link-wrap.layout-simple .x-link {
	padding: 0 16px;
}
.style-dark .x-link a span {
	color: #fff;
}
.style-dark .x-link a:hover span {
	color: var(--primaryalt);
}
.layout-simple.style-dark .x-link a img {
	border: solid 1px var(--primaryborder);
}
@media only screen and (max-width: 1400px) {
	.x-link-wrap h2 {
		font-size: 32px;
	}
	.x-link-wrap h2 span {
		font-size: 24px;
	}
	.row.x-link-wrap.layout-simple .x-links {
		flex-wrap: wrap;
	}
	.x-link-wrap.layout-simple .x-link {
		width: 33.33%;
		margin-bottom: 40px;
	}
	.row.x-link-wrap.layout-simple {
		padding-bottom: 50px;
	}
}

@media only screen and (max-width: 959px) {
	.row.x-link-wrap.layout-simple {
		padding-bottom: 10px;
	}
}
@media only screen and (max-width: 850px) {
	.x-link-wrap .x-links {
		width: 48%;
		padding-left: 4%;
	}
	.x-link-wrap .row-inner .f-text {
		width: 48%;
		min-width: 48%;
	}
	.x-link-wrap button.slick-arrow.slick-prev {
		left: calc(8% + 8px);
	}
	.x-link-wrap button.slick-arrow.slick-next {
		left: calc(8% + 58px);
	}
	.x-link-wrap .x-link {
		padding: 0 8px;
	}
}
@media only screen and (max-width: 650px) {
	.x-link-wrap .x-links {
		width: 100%;
		padding: 0;
	}
	.x-link-wrap .row-inner .f-text {
		width: 100%;
		margin-bottom: 40px;
	}
	.x-link-wrap .row-inner {
		display: block;
	}
	.x-link-wrap button.slick-arrow.slick-prev {
		left: 0;
		bottom: -60px;
	}
	.x-link-wrap button.slick-arrow.slick-next {
		left: 50px;
		bottom: -60px;
	}
	.x-link-wrap .x-link {
		padding: 0 16px 0 0;
	}
	.x-link-wrap {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.x-link-wrap.layout-simple .x-link {
		width: 50%;
	}
}
@media only screen and (max-width: 340px) {
	.row.x-link-wrap.layout-simple .x-links {
		left: auto;
		width: 100%;
	}
	.x-link-wrap.layout-simple .x-link {
		width: 100%;
	}
}
/*** Media Gallery ***/
.gallery h2 {
	text-align: center;
	margin-bottom: 40px;
}

.gallery .gallery-wrap {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 40px);
	left: -20px;
	position: relative;
	justify-content: center;
}
.gallery .gallery-wrap > div {
	width: 33%;
	padding: 0 5px;
	height: 300px;
	position: relative;
	margin-bottom: 40px;
}
.gallery .gallery-wrap > div a {
	display: block;
	position: relative;
	overflow: hidden;
	height: 100%;
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
}
.gallery .gallery-wrap > div a svg {
	width: 12px;
	fill: var(--primaryalt);
	transition: all 300ms;
	top: 0;
}
.gallery .gallery-wrap > div a .icon {
	background: #fff;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 10px;
	right: 10px;
	transition: all 300ms;
}
.gallery .gallery-wrap > div.video a svg {
	width: 8px;
	height: 100%;
}
.gallery .gallery-wrap > div a:hover:before {
	opacity: 0;
}
.gallery .gallery-wrap > div a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	transition: all 300ms;
	opacity: 1;
}
.gallery .gallery-wrap > div a:hover .icon {
	background: var(--primaryalt);
}
.gallery .gallery-wrap > div a:hover .icon svg {
	fill: #fff;
}
.gallery .f-text {
	margin-bottom: 40px;
}
@media only screen and (max-width: 850px) {
	.gallery .gallery-wrap > div {
		width: 50%;
	}
}
@media only screen and (max-width: 550px) {
	.gallery .gallery-wrap > div {
		width: 100%;
		padding: 0;
	}
	.gallery .gallery-wrap {
		left: auto;
		width: 100%;
	}
}
/*** Resources ***/
.resources h2 {
	text-align: center;
}
ul.resource-links li {
	list-style: none;
	background-image: none !important;
	padding-left: 0 !important;
}
ul.resource-links {
	padding: 0;
}
ul.resource-links:last-child {
	margin-bottom: 0;
}
ul.resource-links li a {
	background: url(/wp-content/uploads/pdf-icon.svg) left center no-repeat;
	background-size: 14px;
	padding-left: 28px;
	text-decoration: none;
}
.f-text ul.resource-links {
	margin-bottom: 32px;
}
.f-text:last-child ul.resource-links {
	margin-bottom: 0;
}
/*** Console ***/
.console.background-console {
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center right !important;
	position: relative;
}
.console.background-console:before {
	content: "";
	height: 100%;
	width: 100% !important;
	max-width: 100% !important;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(255, 255, 255, 1) 50%,
		rgba(255, 255, 255, 0) 100%
	);
	z-index: -1;
}
.console.background-console.style-light:before {
	background: linear-gradient(
		90deg,
		rgba(var(--lightrgb), 1) 0%,
		rgba(var(--lightrgb), 1) 50%,
		rgba(var(--lightrgb), 0) 100%
	);
}
.console.background-console.style-dark:before {
	background: linear-gradient(
		90deg,
		rgba(var(--darkdefaultrgb), 1) 0%,
		rgba(var(--darkdefaultrgb), 1) 50%,
		rgba(var(--darkdefaultrgb), 0) 100%
	);
}
.console.background-console .f-title h2 {
	text-align: left;
}
.console .f-title {
	max-width: 100%;
}
div#console {
	display: flex;
	flex-direction: column;
	max-width: 1600px;
	margin: 0 auto;
}
div#console-nav {
	/* width: 20%; */
	/* padding-right: 60px; */
	/* border-right: solid 1px #f0f0f0; */
}
div#console-window {
	position: relative;
	background: var(--beige);
	padding: 20px 60px;
}
.console.background-console div#console-window {
	background-repeat: no-repeat !important;
	background-position: right center !important;
}
#console-nav li a {
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	display: block;
	padding: 12px 18px;
	min-width: 200px;
	text-align: center;
}
#console-nav li {
	display: block;
	padding-left: 0;
	margin: 0;
	background: var(--cta);
	border-radius: 4px 4px 0 0;
	transition: all 300ms;
}
#console-nav li.active {
	background: #1ab7b3 !important;
}
#console-nav li:hover,
#console-nav li:has(a:focus) {
	background: var(--primaryalt);
}
#console-nav ul {
	padding: 0;
	margin: 0;
	display: flex;
	gap: 6px;
}
#console-nav li.active a,
#console-nav li a:hover {
	color: #fff;
}
div#console-window .console-page {
	opacity: 0;
	display: none;
	visibility: none;
	height: 0;
	position: relative;
	align-items: center;
}
div#console-window .console-page.active {
	opacity: 1;
	display: flex;
	visibility: visible;
	position: relative;
	height: auto;
	z-index: 1;
}
.console.background-console div#console-window .console-page.active {
	background: none;
}
div#console-window .console-page > picture,
div#console-window .console-page > img {
	width: 40%;
	order: 2;
}
div#console-window .console-page .f-text {
	width: 60%;
	padding-right: 60px;
	padding-top: 40px;
	padding-bottom: 40px;
}
#console h3 {
	color: var(--primary);
	font-size: 40px;
	margin-bottom: 20px;
}
.style-light div#console-nav {
	border-right: solid 1px var(--lightborder);
}
.style-light div#console-window .console-page.active {
	background: none;
}
.console.style-dark a.button {
	background: var(--cta);
}
.console.style-dark a.button:hover {
	background: var(--ctaalt);
}
.console.style-dark .f-title h2 {
	color: #fff;
}
.style-dark div#console-nav {
	border-color: rgba(255, 255, 255, 0.4);
}
.style-dark div#console-window .console-page.active {
	background: none;
}
.style-dark #console h3 {
	color: #fff;
}

.style-dark li.active a,
.style-dark li:hover a {
	color: var(--cta) !important;
}

@media only screen and (max-width: 1150px) {
	#console h3 {
		font-size: 32px;
	}
}
@media only screen and (max-width: 1100px) {
	div#console-nav {
		width: 100%;
		padding: 0;
		border: 0;
		overflow-x: scroll;
	}
	div#console {
		display: block;
	}
	div#console-nav ul {
		display: flex;
		max-width: none;
	}
	div#console-nav ul li a {
		white-space: nowrap;
	}
	div#console-window {
		width: 100%;
		padding: 32px 60px;
	}
	div#console-window .console-page {
		flex-wrap: wrap;
		gap: 32px;
	}
	div#console-window .console-page > picture,
	div#console-window .console-page > img {
		display: block;
		width: auto;
		width: 700px;
		max-width: 100%;
	}
	div#console-window .console-page .f-text {
		width: 100%;
		padding: 0;
	}
}
@media only screen and (max-width: 900px) {
	div#console-window {
		padding: 32px;
	}
}
/*** Post Feed ***/
.acf-post-feed h2 {
	text-align: center;
}
.acf-post-feed .f-text {
	margin-bottom: 40px;
}
.acf-post-feed .post-feed-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	/* left: -15px; */
	/* width: calc(100% + 30px); */
}
.acf-post-feed .post-card {
	width: calc(33.33% - 30px);
	border: solid 1px var(--lightborder);
	/* margin: 0 15px; */
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 40px;
}
.post-card .post-img img {
	width: 100%;
	transition: all 300ms;
}
.post-card .card-summary {
	padding: 20px;
	/* background: var(--light); */
	border-top: solid 1px var(--lightborder);
	/* flex-grow: 1; */
}
.post-card .card-summary h3 {
	font-size: 1.375em;
	margin-bottom: 8px;
}
.post-card a {
	text-decoration: none;
}
.post-card p {
	margin-bottom: 8px;
}
.post-card p.r-type {
	font-weight: 700;
}
.post-card p.r-meta {
	font-size: 0.875em;
	font-style: italic;
}
span.categories:before {
	content: "";
	display: inline-block;
	width: 4px;
	height: 4px;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	position: relative;
	top: -3px;
	margin-left: 10px;
	margin-right: 10px;
}
span.categories {
	font-style: normal;
}
span.categories span.sep:last-child {
	display: none;
}
span.categories span.sep {
	display: inline-block;
	padding: 0 5px;
}
.post-card p.r-excerpt {
	font-size: 0.875em;
}
.post-card a.learn-more {
	font-weight: 700;
	color: var(--darkdefault);
	display: inline-block;
	height: 1.25em;
}
.post-card a.learn-more svg {
	width: 16px;
	display: inline-block;
	margin-left: 4px;
}
.post-card a.learn-more:hover {
	color: var(--primaryalt);
	fill: var(--primaryalt);
}
.post-card a:hover img {
	opacity: 0.7;
}
.style-light .post-card .card-summary,
.style-light .post-card .post-img {
	background: #fff;
}
.style-dark .post-card.type-post {
	border: solid 1px var(--primaryborder);
}
.style-dark .post-card a {
	color: var(--primaryalt) !important;
}
.style-dark .post-card a:hover {
	color: var(--darkdefault) !important;
}
.style-dark .post-card p {
	color: var(--darkdefault);
}
.style-dark .post-card a.learn-more {
	color: var(--darkdefault) !important;
}
.style-dark .post-card a.learn-more:hover {
	color: var(--primaryalt) !important;
	fill: var(--primaryalt);
}
@media only screen and (max-width: 959px) {
	.row.acf-post-feed {
		padding-bottom: 20px;
	}
}
@media only screen and (max-width: 900px) {
	.acf-post-feed .post-card {
		width: 100%;
		margin: 0 0 40px 0;
		flex-direction: row;
	}
	.acf-post-feed .post-feed-wrap {
		left: auto;
		width: 100%;
	}
	.post-card .post-img {
		order: 2;
		padding: 20px;
		background: var(--light);
		width: 30%;
	}
	.post-card .post-img img {
		width: 100%;
		border: solid 1px var(--lightborder);
	}
	.post-card .card-summary {
		width: 70%;
		border: 0;
	}
}
@media only screen and (max-width: 500px) {
	.acf-post-feed .post-card {
		flex-direction: column;
	}
	.post-card .post-img {
		width: 100%;
		order: 0;
		padding: 0;
	}
	.post-card .card-summary {
		width: 100%;
	}
	.post-card .post-img img {
		border: 0;
	}
	.post-card .card-summary {
		border-top: solid 1px var(--lightborder);
	}
}

/*** Testimonials ***/

.testimonials,
.news-banner-wrapper {
	& h2 {
		text-align: left;
	}

	& .post-card {
		margin-bottom: 0 !important;
		background-image: url("/wp-content/uploads/QuotesBG.png");
		background-size: cover;

        & .card-summary {
            display: flex;
            flex-direction: column;
            width: 80%;
            padding: 32px;
            margin: 0 auto;
            border: 0;
            text-align: center;
        }
	}

    & .post-img {
        padding: 32px 32px 0 32px;

        & img {
            max-width: 200px;
            width: 100%;
            margin: 0 auto;
            display: block;
        }
    }

    &.layout-slider {
        & button.slick-arrow {
            position: absolute;
            width: fit-content;
            padding: 0 0.5rem;
            z-index: 1;
            background-color: rgb(214 214 155 / 40%);

            & svg {
                width: 32px;
                fill: #104b87;
            }

            &:hover svg {
                fill: #2173e5;
            }
        }
        
        & button.slick-next {
            top: 0;
            right: 0;
            height: 100%;
            
        
            & svg {
                transform: rotate(90deg);
            }
        }
        
        & button.slick-prev {
            top: 0;
            left: 0;
            height: 100%;
            
        
            & svg {
                transform: rotate(-90deg);
            }
        }

        &.style-dark button.slick-arrow svg {
            fill: rgba(255, 255, 255, 0.7);
        }
        
        &.style-dark button.slick-arrow:hover svg {
            fill: rgba(255, 255, 255, 1);
        }
        
        & .post-card.type-testimonials {
            height: auto;
        }
        
        & .slick-track {
            display: flex;
        }
    }
}

.testimonials .post-card p.r-excerpt {
	font-style: italic;
	font-size: 18px;
	margin-bottom: 20px;
}

.post-card p.r-testimonial-meta {
	text-align: center;
	margin-bottom: 0;
}

.post-card p.r-testimonial-meta span {
	display: block;
}

.post-card p.r-testimonial-meta span.name {
	font-weight: 700;
	font-size: 1.125em;
}

.post-card p.r-testimonial-meta span.job-title {
	font-style: italic;
	opacity: 0.6;
}

.post-card p.r-testimonial-meta span.company {
	color: #104b87;
}

.testimonials .post-card.no-img .card-summary {
	justify-content: center;
}

.testimonials.style-dark .post-card.type-testimonials {
	border-top: solid 4px var(--cta);
}

@media only screen and (max-width: 900px) {
	.testimonials.acf-post-feed .post-card {
		flex-direction: column;
	}

	.testimonials .post-card .post-img {
		width: 100%;
		order: 0;
	}

	.testimonials .post-card .post-img img {
		border: 0;
	}

	.testimonials .card-summary {
		width: 100%;
	}
}

@media only screen and (max-width: 650px) {
	.testimonials, .news-banner-wrapper {
		& .post-card {
			& .card-summary {
				width: 100%;
			}
		}
		&.layout-slider {
			& button.slick-arrow {
				height: auto;
				padding: 1rem;
				top: unset;
				bottom: 32px;
			}
			& button.slick-next {
				right: 32px;
			}
			& button.slick-prev {
				left: 32px;
			}
			& .post-card.type-testimonials {
				height: 100%;
			}
		}
	}
}
@media only screen and (max-width: 500px) {
	.testimonials, .news-banner-wrapper {
		&.layout-slider button.slick-arrow {
			display: none !important;
		}
	}
}

/*** Location ***/

.row.location .row-inner {
	display: flex;
}

.row.location .row-inner > div {
	width: 50%;
}

.row.location .row-inner > div.loc-info {
	padding: 0 40px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.row.location.asset-map .row-inner .loc-asset {
	overflow: hidden;
	position: relative;
}

.row.location.asset-map .row-inner .loc-asset iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: solid 1px #ddd !important;
}

.row.location.asset-image .row-inner .loc-asset img {
	border: solid 1px #ddd !important;
}

.row.location .row-inner > div.loc-info .loc-img {
	display: block;
	width: 300px;
	max-width: 100%;
	margin: 0 auto 40px auto;
}

.row.location .row-inner > div.loc-info h2 {
	font-size: 24px;
	margin-bottom: 16px;
	text-align: center !important;
}

.row.location .row-inner > div.loc-info p {
	margin-bottom: 16px;
	line-height: 1.25;
}

.row.location .row-inner > div.loc-info p.loc-a span {
	display: block;
}

.row.location.asset-map.style-dark .row-inner .loc-asset iframe,
.row.location.asset-image.style-dark .row-inner .loc-asset img,
.location .loc-info .loc-map iframe {
	border: solid 1px var(--primaryborder) !important;
}

.location.asset-image .loc-asset {
	text-align: center;
}

.location.asset-form .gform_footer.top_label {
	padding-bottom: 0;
}

.row.location.asset-loc-left .row-inner > div.loc-info {
	order: 2;
}

.row.location .row-inner > div.loc-info p.loc-a {
	display: flex;
	margin: 0 auto 16px auto;
}

.location .loc-info .loc-map {
	margin-top: 40px;
}

.location .loc-info .loc-map iframe {
	border: solid 1px #ddd !important;
	height: 350px;
	width: 100%;
}

/*start: contact page style side-by-side location blade*/
div#acf62be049651472:before {
	display: none;
}

div#acf62be049651472 {
	padding-top: 40px;
}

div#acf62be049651472 div.loc-info {
	display: block;
	text-align: left;
	padding: 0 45px;
}

div#acf62be049651472 div.loc-info > img,
div#acf62be049651472 div.loc-info > picture {
	margin: 0 0 40px 0;
}

div#acf62be049651472 h2 {
	text-align: left !important;
}

div#acf62be049651472 div.loc-asset {
	padding-right: 45px;
}
/*end: contact page style side-by-side location blade*/
@media only screen and (max-width: 768px) {
	.row.location .row-inner {
		flex-wrap: wrap;
	}

	.row.location .row-inner > div {
		width: 100%;
	}

	.row.location .row-inner .loc-asset {
		padding-top: 50px;
	}

	.row.location.asset-map .row-inner .loc-asset iframe {
		position: relative;
		height: 300px;
		border: solid 1px #ddd !important;
	}

	.row.location.asset-loc-left .row-inner > div.loc-info {
		order: 0;
	}

	div#acf62be049651472 {
		padding-top: 0;
	}

	div#acf62be049651472 div.loc-info {
		padding: 0;
	}

	div#acf62be049651472 div.loc-asset {
		padding-right: 0;
	}
}

/*** Image Cloud ***/
.image-cloud .f-text {
	margin-bottom: 30px;
}

.layout-simple .image-cloud-wrap {
	display: flex;
	position: relative;
	left: -10px;
	width: calc(100% + 20px);
	justify-content: space-evenly;
	gap: 32px;
}

.image-cloud-wrap .img {
	padding: 20px;
	width: 220px;
}

.image-cloud-wrap .img img {
	transition: all 300ms;
	place-self: center !important;
	display: block;
}

.image-cloud-wrap .img a:hover img {
	opacity: 0.7;
}

.image-cloud-wrap {
	display: flex;
	align-items: center;
}
.image-cloud-wrap .slick-arrow {
	background: var(--beige);
	border-radius: 0;
	min-height: 150px;
	padding: 60px 12px;
}

.image-cloud-wrap .slick-arrow:hover svg path {
	fill: var(--primaryalt);
}

.image-cloud-wrap .slick-arrow svg path {
	transition: all 300ms;
}

.image-cloud-wrap .slick-next svg {
	transform: rotate(90deg);
}

.image-cloud-wrap .slick-prev svg {
	transform: rotate(-90deg);
}

@media only screen and (max-width: 1200px) {
	.image-cloud-wrap .img {
		width: 25%;
	}
}

@media only screen and (max-width: 768px) {
	.image-cloud-wrap .img {
		width: 30%;
	}
}

@media only screen and (max-width: 500px) {
	.image-cloud-wrap .img {
		width: 70%;
		max-width: 300px;
		padding: 0;
	}
	.image-cloud-wrap .slick-arrow {
		display: none !important;
	}
}

/*** Team Members ***/
.team-members-wrap {
	display: grid;
	gap: 80px 70px;
	grid-template-columns: 1fr 1fr;
}

.team-members-wrap .member-card,
.team-members-wrap .member-card:hover,
.team-members-wrap .member-card:focus,
.member-popup a,
.member-popup a:hover,
.member-popup a:focus {
	outline: none;
}

.team-members-wrap .card-inner {
	/* display: flex; */
	align-items: flex-start;
	gap: 20px;
}

.team-members-wrap .card-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.team-members-wrap h3 {
	color: #125775;
	margin-bottom: 20px;
}

.team-members-wrap h3 span {
	display: block;
	font-size: 0.8em;
	color: #17a4a1;
}

.team-members-wrap p:last-of-type {
	margin: 0;
}

.member-card .member-bar {
	height: 80px;
	background: rgba(51, 51, 51, 0.85);
	position: absolute;
	width: 100%;
	bottom: 0;
	display: flex;
	flex-flow: column;
	justify-content: center;
}

.member-bar .member-name {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	padding: 18px 22px 0;
	margin: 0;
}

.member-bar .member-title {
	font-size: 13px;
	color: #fff;
	padding: 0 22px 18px;
	margin: 0;
	line-height: 1.15;
}

.member-popup {
	max-width: 1084px;
	width: 80%;
	padding: 82px;
}

.fancybox-navigation {
	display: none;
}

.member-popup .pop-name {
	font-size: 30px;
	color: var(--primary);
	margin: 0;
}

.member-popup .pop-title {
	font-size: 20px;
	font-weight: 900;
	margin-bottom: 23px;
	line-height: 1.25;
}

.member-popup .pop-headshot {
	float: right;
	max-width: 235px;
	margin-top: -80px;
}

.member-popup div.pop-description {
	max-width: 70%;
}

.member-popup .pop-mail,
.member-popup .pop-phone,
.member-popup .pop-linkedin {
	display: inline-block;
	margin-right: 20px;
	margin-bottom: 0;
	margin-top: 20px;
}

.member-popup .fancybox-close-small {
	padding: 10px;
	height: 60px;
	width: 60px;
	background: rgba(53, 53, 53, 0.35);
	transition: all 300ms;
}

.member-popup .fancybox-close-small svg path {
	fill: var(--primary);
}

.member-popup .fancybox-close-small svg {
	opacity: 1;
}

.team-members-wrap a.member-card:hover {
	box-shadow: 0 0 5px 0px rgb(0 0 0 / 50%);
}

.team-members-wrap a.member-card {
	transition: box-shadow 300ms;
}

.member-popup .pop-description {
	margin: 0;
}

.member-popup > a {
	outline: none;
	margin-top: 12px;
	display: inline-block;
}

@media only screen and (max-width: 1200px) {
	.member-popup .pop-description {
		max-width: 60%;
	}
	.team-members-wrap {
		grid-template-columns: 1fr 1fr;
	}
}

@media only screen and (max-width: 1080px) {
	.member-popup .pop-description {
		font-size: 18px;
	}
}

@media only screen and (max-width: 968px) {
	.member-popup picture.pop-headshot img,
	.member-popup .pop-headshot {
		float: none;
		display: block;
		margin: 24px auto;
		width: 150px;
		aspect-ratio: 1;
	}
	.member-popup p,
	.member-popup div.pop-description {
		max-width: unset;
	}
	.member-popup {
		padding: 60px;
	}
}

@media only screen and (max-width: 900px) {
	.team-members-wrap {
		grid-template-columns: 1fr;
	}
	.member-popup .pop-description {
		font-size: 16px;
	}
}

@media only screen and (max-width: 768px) {
	.member-popup picture.pop-headshot img,
	.member-popup .pop-headshot {
		width: 125px;
	}
}

@media only screen and (max-width: 600px) {
	.member-popup picture.pop-headshot img,
	.member-popup .pop-headshot {
		display: none;
	}
	.member-popup .pop-description {
		font-size: 14px;
	}
}

@media only screen and (max-width: 500px) {
	.row.team-members {
		padding-bottom: 0 !important;
	}
	.team-members-wrap .member-card {
		width: 100%;
		display: block;
		margin-bottom: 40px;
	}
	.team-members-wrap .member-card:last-child {
		margin-bottom: 0;
	}
	.team-members-wrap {
		display: block;
	}
	.team-members-wrap .card-header {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media only screen and (max-width: 400px) {
	.member-popup {
		padding: 60px 40px;
	}
	.member-popup {
		width: 95%;
	}
}

/*** FAQs ***/
.anchor-links {
	display: flex;
	flex-wrap: wrap;
}
.anchor-links a {
	margin-right: 40px;
}
.answer a {
	color: var(--ctaalt);
	display: inline-block;
	width: fit-content;
}

.answer a:hover {
	color: #686ef6;
}
.questions-wrap .qa {
	margin-bottom: 40px;
}

.row.faqs .question,
.row.faqs .answer {
	padding: 20px;
	display: flex;
	align-items: center;
	border-left: 5px solid var(--primary);
	position: relative;
}

.row.faqs .answer {
	padding-top: 0;
}

.row.faqs .question {
	background: var(--light);
	border-left: 5px solid var(--cta);
	font-weight: bold;
}

.row.faqs .question p {
	font-size: 22px;
}

.row.faqs .question p,
.row.faqs .answer p,
.questions-wrap .qa:last-child {
	margin: 0;
	line-height: 1.625;
	order: 1;
}

.row.faqs .answer p:not(:last-of-type) {
	margin-bottom: 10px;
}

.row.faqs .answer p {
	max-width: 90%;
}

.row.faqs .answer ul {
	margin-top: 10px;
	margin-bottom: 0;
}

.row.faqs {
	outline: none !important;
}

.row.faqs:not(:last-child) {
	/* padding-bottom: 0; */
}

.row.faqs .answer .button {
	min-width: unset;
	padding: 10px 50px;
}

.faqs .f-text p:last-child {
	margin-bottom: 32px;
}

.row.faqs #accordion .question.ui-accordion-header {
	margin: 0;
	border: 0;
	border-top: 3px solid var(--beige);
	background: #fff;
	color: var(--primaryalt);
	border-radius: 0;
	transition: all 300ms;
}

.row.faqs #accordion .question.ui-accordion-header:first-of-type {
	border-top: 0;
}

.row.faqs #accordion .question.ui-accordion-header.ui-state-hover,
.row.faqs #accordion .question.ui-accordion-header.ui-state-active {
	background: var(--beige);
}

.row.faqs #accordion .answer.ui-accordion-content {
	padding-left: 70px;
	border: 0;
	border-radius: 0;
	outline: 0;
	background-color: var(--beige);
}

.row.faqs .ui-accordion-header-icon {
	display: none;
}

.faqs .ui-accordion-header svg {
	display: block;
	width: 15px;
	flex: 0 0 30px;
	margin-right: 20px;
	height: 20px;
	top: 0;
	transform: rotateX(180deg);
}

.row.faqs .ui-accordion-header.ui-state-active svg {
	transform: rotateX(0);
}

.row.faqs .question:focus {
	outline: 0;
}

.row.faqs + .row.faqs::before {
	display: none;
}

@media only screen and (max-width: 800px) {
	.anchor-links a {
		flex-basis: 100%;
		margin-bottom: 10px;
		margin-right: 0px;
	}
	.anchor-links a:last-child {
		margin-bottom: 0;
	}
}

@media only screen and (max-width: 500px) {
	.row.faqs .question p,
	.row.faqs .answer p {
		font-size: 1rem;
	}

	.row.faqs .answer p {
		max-width: 100%;
	}
	/* .row.faqs .question:before,
	.row.faqs .answer:before {
		font-size: 18px;
		position: relative;
		left: 0;
		top: 0 !important;
		margin-bottom: 10px;
	}
	.row.faqs .answer:before {
		content: "Answer";
	}
	.row.faqs .question:before {
		content: "Question";
	}
	.row.faqs .question,
	.row.faqs .answer {
		padding-left: 30px;
		padding-right: 20px;
		font-size: 18px;
	}
	.row.faqs .answer:before {
		top: 20px;
	} */
}

/** PDF Documents Row **/
.content .pdf-gallery ul {
	margin: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	flex-wrap: wrap;
	gap: 40px;
}
.content .pdf-gallery ul li {
	background: none;
	padding: 0;
}
.content .pdf-gallery ul li.active {
	display: block;
}
.content .pdf-gallery ul li a {
	display: block;
}
.content .pdf-gallery ul li img {
	width: 100%;
	margin-bottom: 20px;
	transition: all 300ms;
	border: 1px solid #efefef;
}
.content .pdf-gallery ul li span {
	font-family: "Bebas Neue", sans-serif;
	display: block;
	color: #999;
}
.content .pdf-gallery ul li h3 {
	margin-bottom: 0px;
	transition: all 300ms;
	font-size: 26px;
}
.content .pdf-gallery ul li a:hover h3 {
	color: var(--primary);
}
.content .pdf-gallery ul li a:hover img {
	opacity: 0.65;
}
.content .pdf-gallery ul li:first-child {
	font-weight: bold;
	color: #fff;
}
.content .pdf-gallery ul li a:first-child {
	font-weight: bold;
}
@media only screen and (max-width: 1200px) {
	.content .pdf-gallery ul {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media only screen and (max-width: 759px) {
	.content .pdf-gallery ul {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 600px) {
	.content .pdf-gallery ul li:nth-child(2) {
		padding-top: 0;
	}
	.content .pdf-gallery ul li:after {
		content: "";
		display: block;
		clear: both;
	}
	.content .pdf-gallery ul li {
		flex-wrap: wrap;
	}
	.content .pdf-gallery ul li:before {
		font-family: "Bebas Neue", sans-serif;
		display: block;
		content: "Product";
		padding-left: 20px;
		padding-top: 12px;
		flex-basis: 100%;
		display: none;
	}
	.content .pdf-gallery ul li > span {
		display: none;
	}
	.content .pdf-gallery ul li *,
	.content .pdf-gallery ul li > *:first-child {
		flex-basis: 100%;
	}
}
@media only screen and (max-width: 500px) {
	.content .pdf-gallery ul {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

/** Insights and Resources **/
.insights-resources,
.documents-wrapper {
	& .resource-wrap {
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		gap: 10px 4px;
	}

	&.testimonials .resource-wrap {
		padding-bottom: 2rem;
		margin-bottom: 2rem;
		border-bottom: solid 2px var(--darkdefault);
	}

	& .resource {
		grid-column: span 2;
	}

	& .video {
		aspect-ratio: 1.8 / 1;

		& a {
			display: block;
			width: 100%;
			height: 100%;
			position: relative;
			padding: 26px;
			color: #fff;
			background-size: cover;
			background-position: center;
			background-repeat: no-repeat;

			& .video-title {
				transition: opacity 300ms;
			}
            
			&:hover .video-title {
                opacity: 0.7;
			}
		}
	}
    
	& .document {
        background: var(--beige);
        
		& .document-name {
            font-family: "Neue Haas Grotesk Display Pro", sans-serif;
			font-weight: bold;
			color: var(--cta);
			transition: all 300ms;
		}
        
		& a {
            display: block;
			padding: 24px 26px;
			height: 100%;
			&:hover .document-name {
                color: var(--ctaalt);
			}
		}
	}
    
	& .doc-desc {
        margin-top: 12px;
		color: #5a5a5a;
		& p:last-of-type {
            margin-bottom: 0;
		}
	}
    
	&.videos-3 .document {
        grid-column: 1 / -1;
	}
}

.insights-resources .video a::before,
.documents-wrapper .video a::before {
    content: "";
    display: block;
    width: 80px;
    height: 100px;
    position: absolute;
    align-self: anchor-center;
    justify-self: anchor-center;
    top: 20px;
    left: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23fff" d="M91.2 36.9c-12.4-6.8-27.4-6.5-39.6 .7S32 57.9 32 72l0 368c0 14.1 7.5 27.2 19.6 34.4s27.2 7.5 39.6 .7l336-184c12.8-7 20.8-20.5 20.8-35.1s-8-28.1-20.8-35.1l-336-184z"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 300ms;
}

.insights-resources .video a:hover::before,
.documents-wrapper .video a:hover::before {
    opacity: 0.7;
}

.insights-resources.testimonials .video a span {
	position: relative;
	z-index: 2;
}
.insights-resources.testimonials .video a::before {
	z-index: 2;
}
.insights-resources.testimonials .video a::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(var(--primaryrgb), 0.7);
	z-index: 1;
	pointer-events:none;
}

.documents-wrapper {
	& .resource-wrap {
		margin-bottom: 2rem;
		padding-bottom: 2rem;
		border-bottom: solid 2px var(--darkdefault);
	}

	& .document a {
		padding: 3rem 2rem;
	}
}

@media only screen and (max-width: 1350px) {
	.insights-resources {
		&.videos-1 {
			& .video {
				aspect-ratio: initial;
	
				& a {
					background-size: 100% 100%;
				}
			}
		}
	}

	.insights-resources .video a::before,
	.documents-wrapper .video a::before {
		align-self: unset;
		justify-self: unset;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

@media screen and (max-width: 900px) {
	.insights-resources,
	.documents-wrapper {
		& .resource-wrap {
			grid-template-columns: repeat(4, 1fr);
		}

		& .video a {
			font-size: .75rem;
			line-height: 1rem;
		}
	}

	.insights-resources .video a::before {
		width: 40px;
		height: 30px;
	}
}

@media screen and (max-width: 600px) {
	.insights-resources,
	.documents-wrapper {
		& .resource-wrap {
			grid-template-columns: repeat(2, 1fr);
		}

		& .video {
			aspect-ratio: 1.8 / 1;
		}
	}

	.insights-resources .video a {
		font-size: 1rem;
	}

	.insights-resources .video a::before {
		width: 80px;
		height: 100px;
	}
}

/* Schedule a Demo Styling */
div#schedule-a-demo h2 {
	font-size: 32px;
	margin-bottom: 0;
}

div#schedule-a-demo .gform_required_legend {
	margin: 0;
}

div#schedule-a-demo {
	max-width: 100%;
	width: 650px;
}

/** Mobile Mega Menu **/
#genesis-mobile-mega-menu-button:before {
	content: "\f333" !important;
}
div#mobile-mega-menu-content,
#mobile-mega-menu-content .mobile-mega-menu > li .sub-menu {
	height: calc(100vh - 45px); /*100% of window - mobile buttons height*/
	position: fixed;
	width: 90%;
	right: -90%;
	top: 0;
	bottom: 0;
	background: #fff;
	z-index: 9999;
	transition: all 0.5s ease;
	box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.2);
	padding: 20px;
	overflow-y: scroll;
}
#mobile-mega-menu-content .mobile-mega-menu > li .sub-menu.active {
	box-shadow: none;
}
div#mobile-mega-menu-content.closed,
#mobile-mega-menu-content .mobile-mega-menu > li .sub-menu {
	box-shadow: none;
}
#mobile-mega-menu-content .mobile-mega-menu {
	padding-top: 30px;
}
#mobile-mega-menu-content .mobile-mega-menu ul {
	background: none;
	width: 100%;
}
#mobile-mega-menu-content .mobile-mega-menu li {
	font-size: 18px;
	border-bottom: 1px solid var(--lightborder);
	padding: 10px 0;
	position: relative;
}
#mobile-mega-menu-content .mobile-mega-menu li.go-back {
	line-height: 1;
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 24px;
	border: none;
}
#mobile-mega-menu-content .mobile-mega-menu li.go-back:before {
	content: "\f345";
	font-family: dashicons;
	transform: rotate(180deg);
	display: inline-block;
	height: 20px;
	font-size: 20px;
	position: relative;
	top: 5px;
	margin-right: 4px;
}
#mobile-mega-menu-content .mobile-mega-menu > li,
#mobile-mega-menu-content .mobile-mega-menu li.menu-title {
	font-size: 24px;
}
#mobile-mega-menu-content .mobile-mega-menu li.nav-cta {
	padding: 20px 0 0 0;
}
#mobile-mega-menu-content .mobile-mega-menu li.nav-cta a {
	padding: 12px 32px;
	background: var(--cta);
	border-radius: 4px;
	transition: all 300ms;
	color: #fff;
	display: block;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
}
#mobile-mega-menu-content .mobile-mega-menu li.nav-cta.cta-alt a {
	color: var(--cta);
	background: rgba(255, 255, 255, 0);
	border-color: var(--cta);
	border: 2px solid;
}
#mobile-mega-menu-content .mobile-mega-menu li button {
	padding: 12px 0 10px 0;
}
#mobile-mega-menu-content .mobile-mega-menu > li > button {
	padding: 18px 0 10px 0;
}
#mobile-mega-menu-content .mobile-mega-menu li button:focus {
	outline: none;
	color: var(--primary);
}
#mobile-mega-menu-content .mobile-mega-menu li button:before {
	height: 30px;
	width: 30px;
	font-size: 24px;
}
#mobile-mega-menu-content .mobile-mega-menu ul li button {
	/* transform: rotate(-90deg); */
}
#mobile-mega-menu-close {
	position: fixed;
	/* top: 10px; */
	/* right: 10px; */
	left: calc(100% - 60px);
	top: 10px;
	width: 50px;
	height: 50px;
	padding: 5px;
	cursor: pointer;
	z-index: 99999;
	display: inline-block;
	opacity: 0;
	transition: all 400ms;
}
#mobile-mega-menu-content.closed #mobile-mega-menu-close {
	left: calc(100% + 60px);
}
#mobile-mega-menu-content #mobile-mega-menu-close {
	opacity: 1;
	left: calc(100% - 60px);
	background: rgba(255, 255, 255, 0.8);
}
#mobile-mega-menu-close svg {
	width: 100%;
	height: 100%;
}
#mobile-mega-menu-content > .menu-location:before {
	content: "Main Menu";
	font-weight: bold;
	text-transform: uppercase;
	font-size: 13px;
	display: block;
	padding-top: 10px;
}
.site-inner,
.title-area {
	transition: filter 300ms;
}
.blurContent .site-inner,
.blurContent header .title-area {
	filter: blur(4px);
}
#mobile-mega-menu-content #mobile-mega-menu-extras .mobile-mega-menu {
	padding-top: 0;
	margin-bottom: 30px;
}
#mobile-mega-menu-content #mobile-mega-menu-extras {
	text-align: center;
}
#mobile-mega-menu-content #mobile-mega-menu-extras p.address {
	font-size: 0.875em;
	margin-bottom: 20px;
}
#mobile-mega-menu-content #mobile-mega-menu-extras .social {
	margin-bottom: 20px;
}
#mobile-mega-menu-content #mobile-mega-menu-extras .social a {
	margin: 0 8px;
}
#mobile-mega-menu-content #mobile-mega-menu-extras .social svg {
	height: 24px;
}
#mobile-mega-menu-content #mobile-mega-menu-extras .mega-menu-custom-content {
	font-size: 0.75em;
}
@media only screen and (min-width: 961px) {
	#genesis-mobile-mega-menu-button {
		display: none !important;
	}
}

/** WP Admin Bar **/
@media only screen and (max-width: 768px) {
	#wpadminbar {
		display: none !important;
	}
}

/** About Page **/
.hero-asset,
.hero-asset img {
	height: 100%;
	width: auto;
}

.page-id-917 div#hero.tall {
	height: 650px;
}

.page-id-917 div#hero p {
	font-size: 22px;
}

@media only screen and (min-width: 901px) {
	div#acf69213ff2c567f .row-inner {
		background: var(--beige);
		padding: 5rem;
	}
}

@media only screen and (min-width: 901px) and (max-width: 1500px) {
	div#acf69213ff2c567f .row-inner {
		align-items: flex-start;
	}
}

@media only screen and (max-width: 900px) {
	div#acf69213ff2c567f {
		background: var(--beige);
		padding: var(--defaultVerticalSpacing) 5%;
	}
}

/* Content Cell Grid Template Part */
.content-cell-grid {
	padding-top: var(--defaultVerticalSpacing) !important;
	background-color: var(--beige);

	& .cells-wrapper {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 5rem;
		margin-bottom: 2rem;
		padding-bottom: 2rem;
		border-bottom: solid 2px var(--darkdefault);
	}

	& .cell {
		display: grid;
		grid-template-columns: 1fr 3fr;
		align-items: center;
		gap: 2rem;

		& p {
			margin-bottom: 0;
		}
	}
}

.we-support-your-success {
	& .cells-wrapper {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
		margin-top: calc(var(--defaultVerticalSpacing) / 2);
		padding: 4rem;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
	}

	& h3,
	& p {
		margin-bottom: 0 !important;
		color: var(--light);
	}

	& h3 {
		font-size: 24px;
	}
}

@media only screen and (max-width: 900px) {
	.content-cell-grid,
	.we-support-your-success {
		& .cells-wrapper {
			grid-template-columns: 1fr;
		}
	}
}

@media only screen and (max-width: 450px) {
	.content-cell-grid .cell {
		grid-template-columns: 1fr;
	}
}

/* Become a Partner Page */
.page-id-909 {
	& main:has(.content-cell-grid) {
		padding-top: 0 !important;
	}
	& h1.hero-title {
		color: #125775 !important;
	}
	& .hero-columns {
		align-items: center;
	}
	& #hero p {
		font-weight: normal;
	}
	& div#acf69163c075ad56 h2 {
		margin-bottom: 20px;
	}
	& .row.we-support-your-success .f-text {
		max-width: 800px;
	}
	& div#acf691604938896d {
		position: relative;
		background-image: none !important;
	}
}

.page-id-909 div#acf691604938896d::after {
    content: '';
    display: block;
    width: 100%;
    height: calc(100% + var(--defaultVerticalSpacing));
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    background-image: url(/wp-content/uploads/MountainBG.png);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 900px) {
	.page-id-909 div#acf691604938896d::after {
		background-position: 80% 100%;
		background-color: rgb(255 255 255 / 60%);
		background-blend-mode: overlay;
	}
}

/* Partners Portal Styling */
/* Partners Portal Header */
.partners-hero {
    & h1 {
        color: var(--light);
    }
    & .hero-inner {
        align-items: flex-start;
        flex-direction: column;

        & .hero-text-wrap {
			width: 100%;
            color: var(--light);
        }

		& .title-bar-wrapper {
			display: flex;
			justify-content: space-between;
			align-items: flex-start;

			& .search-form {
				display: flex;
				gap: 10px;

				& input[type="submit"] {
					margin-top: 0 !important;
				}
			}
		}

		& p {
			width: 60%;
		}
    }

    & .button-wrapper {
        display: flex;
        gap: 1rem;
    }
}

@media screen and (max-width: 1000px) {
	.partners-hero {
		& .button-wrapper {
			display: grid;
			grid-template-columns: repeat(2, 1fr);
		}
	}
}

@media screen and (max-width: 900px) {
	.partners-hero {
		& p {
			width: 100% !important;
		}
	}
}

@media screen and (max-width: 700px) {
	.partners-hero {
		& .title-bar-wrapper {
			flex-direction: column-reverse;
			align-items: unset !important;
			gap: 40px;
		}
	}
}

@media screen and (max-width: 600px) {
	.partners-hero {
		& .button-wrapper {
			grid-template-columns: 1fr;
		}
	}
}

/* Partners Portal Nav */
.partners-portal-nav-section {
    & .row-inner {
        display: grid;
		grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    & .nav-item {
        display: flex;
        flex: 1;
        height: 270px;
        align-items: flex-end;
        padding: 10px 35px;
        color: #fff;
        line-height: 38px;
        font-weight: 700;
        text-decoration: none;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        border-radius: 10px;

        &:hover {
            background-color: #46efed;
            background-blend-mode: multiply;
            opacity: 0.8;
        }

        & span {
            text-shadow: 0 0 8px #000;
        }
    }
}

@media screen and (max-width: 900px) {
	.partners-portal-nav-section {
		& .row-inner {
			grid-template-columns: repeat(2, 1fr);
		}
	}
}

@media screen and (max-width: 600px) {
	.partners-portal-nav-section {
		& .row-inner {
			grid-template-columns: 1fr;
		}
	}
}

/* Partners Portal Form Row */
.partners-portal-form-row {
	padding-top: 0;
}

.partners-portal-form-row .row-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.partners-portal-form-row .form-wrapper {
	padding: 20px 30px;
	border-radius: 10px;
	background-color: #e5e2dc;
}
.partners-portal-form-row label {
	color: #125775 !important;
}

.partners-portal-form-row input {
	margin-top: 5px;
}

.partners-portal-form-row #field_18_1 {
	padding: 0;
	border: none;
}

.partners-portal-form-row .gf_name_has_2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.partners-portal-form-row .right-column-wrapper {
		padding: 20px 30px;
		border-radius: 10px;
		background-position: center;
}

.partners-portal-form-row .right-column-wrapper .btn {
	display: block;
	width: fit-content;
	margin: 0 auto;
}

@media screen and (max-width: 600px) {
	.partners-portal-form-row .row-inner {
		grid-template-columns: 1fr;
	}
}

/* Partners Portal Trainings */
.training-feed .title {
	border-bottom: 2px solid #f0f4f6;
}

.training-category:not(:last-child) {
	margin-bottom: 3rem;
}
.training-category-title-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.training-category-title-row * {
	margin: 0;
}

.training-category-title-row .btn {
	padding: 5px 10px;
}

.training-items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;

	& .item {
		display: flex;
		justify-content: center;
		flex-direction: column;
		border-radius: 10px;
		border-left: 10px solid #d3454b;
		background-color: #e7e6e3;
		transition: background-color 0.2s;
		
		&:hover {
			background-color: #c0beba;
			text-decoration: none;
		}
		
		& a {
			width: 100%;
			height: 100%;
			padding: 10px;
			font-size: 16px;
			font-weight: 600;
		}

		& > a {
			display: flex;
			align-items: center;
		}

		& .attachment {
			margin-bottom: 0;
			padding: 10px;
			font-size: 14px;

			& a {
				padding: 0;
				font-size: inherit;
				font-weight: normal;
				font-style: italic;
				text-decoration: underline;
			}
		}
	}
	
}

@media only screen and (max-width: 959px) {
	.training-items {
		grid-template-columns: 1fr 1fr;
	}
}

@media only screen and (max-width: 500px) {
	.training-items {
		grid-template-columns: 1fr;
	}
	.training-category-title-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}

/* Campaign Toolbox styles */
.page-id-2081 {
    & .column-content h2 {
        text-align: left;
    }
}

/* Partners Portal Inner Section styles */
.partners-portal-inner-page {
	& .divide-header:not(:first-of-type) {
		margin-top: 5rem;
		margin-bottom: 2rem;
	}
}
/* Details/Summary Custom Styling */
.category-wrap details {
    width: 100%;
    margin-bottom: 1rem;

	& .category-item *:first-child {
		margin-right: 2rem;
	}

	& .details-content {
		padding: 1rem 2rem;
		background-color: #F3F3E8;

		& p {
			margin-bottom: 0;
		}

		& a {
			margin-right: 2rem;

			&:last-of-type {
				margin-right: auto;
			}
		}

		& span {
			max-width: 60%;
			margin-left: 1rem;
			font-size: .85rem;
			color: var(--cta);
		}

		& > div {
			display: flex;
			align-items: center;
		}

		& > div:not(:last-of-type) {
			margin-bottom: 1rem;
		}
	}
    
}

.category-wrap .details-content div::before {
    content: '';
    position: relative;
    left: -20px;
    width: 0;
    height: 0;
    flex-shrink: 0;
    margin-left: 1rem;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #81B041;
    transition: transform 0.2s ease;
    transform: rotate(-90deg);
}

.category-wrap summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
    padding: 0.5rem 0;
    position: relative;
	border-bottom: solid 2px #F3F3E8;

	& h3 {
		margin-bottom: 0;
	}
}

/* Remove default marker */
.category-wrap summary::-webkit-details-marker {
    display: none;
}

.category-wrap summary::marker {
    display: none;
}

/* Custom marker positioned on the right */
.category-wrap summary::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #81B041;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

/* Rotate marker when details is open */
.category-wrap details[open] summary::after {
    transform: rotate(180deg);
}

/* Ensure the summary content takes up available space */
.category-wrap summary h3 {
    margin: 0 !important;
    flex-grow: 1;
	color: #11B8B3 !important;
	text-transform: capitalize !important;
}

/* Optional: Add hover effect */
.category-wrap summary:hover::after {
    opacity: 0.8;
}

@media screen and (max-width: 600px) {
	.category-wrap .category-item {
		display: grid !important;
		grid-template-areas:
			"arrow title"
			"arrow desc";
		grid-template-columns: auto 1fr;

		& a {
			grid-area: title;
		}

		& span {
			grid-area: desc;
			max-width: 100% !important;
			margin-left: 0 !important;
		}
	}

	.category-wrap .category-item::before {
		grid-area: arrow;
	}
}

/* Gravity Form Styling */
.gfield_label, .gform-field-label {
	font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
	font-size: 16px !important;
	font-weight: normal !important;
	color: #5a5a5a;
	margin-bottom: 6px !important;
}

.gfield--type-name .gform-field-label {
    padding-top: 0 !important;
}

.gform_fields {
	& input, & select, & textarea {
		background-color: #F3F3F3;
		border: 0;
		font-size: 16px !important;
		padding: 20px !important;
	}
}

.gforms_fields input::placeholder, .gforms_fields select::placeholder, .gforms_fields textarea::placeholder {
	color: #5a5a5a;
}

.gfield_description {
    padding: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 8px !important;
}

.link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.link-list a {
	font-weight: bold;
	text-decoration: underline;
}

.validation_message {
	padding: 8px 20px !important;
	margin-top: 6px !important;
}

#gform_7 .gform-footer {
	align-items: center;
	gap: 1rem;

	& input[type="submit"] {
		margin-bottom: 0;
		align-self: unset;
	}
}

#gform_7 .gform-footer::after {
	content: 'Become a Workforce Go partner to deliver exceptional value to your clients, enhance your market presence, and drive mutual growth.';
	display: block;
	color: #5a5a5a;
	font-size: 15px;
}

@media only screen and (max-width: 400px) {
	#gform_7 .gform-footer {
		flex-direction: column;
		align-items: flex-start;

		& input[type="submit"] {
			order: 2;
		}
	}
}

/********** Utility Classes ************/
/* Color Styles */
.color-cta {
    color: var(--cta);

    a& {
        text-decoration: underline;

        &:hover {
            color: var(--ctaalt);
        }
    }
}
.mt-1 {
	margin-top: 1rem;
}
/* List Styles */
.list-style-none {
    & li {
        padding-left: 0 !important;
        background-image: none !important;
    }
}
/* Spacing Styles */
.mx-auto {
	margin-left: auto;
	margin-right: auto;

	a& {
		display: block;
		width: fit-content;
	}
}

.ml-auto {
	margin-left: auto;

	a& {
		display: block;
		width: fit-content;
	}
}

.mr-auto {
	margin-right: auto;

	a& {
		display: block;
		width: fit-content;
	}
}

/* Payroll On Us Page */
.page-id-2486 .main-content-section.row .inner .column:first-child {
	order: 2;
}

.page-id-2486 .main-content-section.row .inner h1 {
	font-weight: bold;
}

.page-id-2486 .how-it-works .results {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	margin-bottom: 20px;
}

.page-id-2486 .how-it-works .results .result {
	background: #f2efea;
	padding: 12px 24px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.page-id-2486 .how-it-works .results .result img {
	width: 80px;
}

.page-id-2486 .how-it-works .results .result p {
	margin: 0;
	font-weight: bold;
}

@media only screen and (max-width: 600px) {
	.page-id-2486 .how-it-works .results {
		grid-template-columns: 1fr;
	}
}

.page-id-2486 .row.benefits-banner .inner {
	background-color: #125775;
	background-size: auto 100%;
	padding: 50px;
	background-repeat: no-repeat;
	display: flex;
	justify-content: flex-end;
	max-width: 1200px;
}

.page-id-2486 .row.benefits-banner .inner .content {
	width: 40%;
	margin-left: unset;
	margin-right: unset;
}

.page-id-2486 .row.benefits-banner .inner h2,
.page-id-2486 .row.benefits-banner .inner p {
	color: #fff;
	line-height: 1.265;
	margin: 0;
}

.page-id-2486 .row.benefits-banner .inner h2 {
	font-size: 32px;
}

@media only screen and (max-width: 1200px) {
	.page-id-2486 .row.benefits-banner .inner {
		padding: 50px 24px;
	}
}

@media only screen and (max-width: 900px) {
	.page-id-2486 .row.benefits-banner .inner {
		background-image: none !important;
	}

	.page-id-2486 .row.benefits-banner .inner .content {
		width: 100%;
	}
}

.page-id-2486 .row.numbers-results .results {
	display: flex;
	margin-bottom: 40px;
}

.page-id-2486 .row.numbers-results .results > div {
	padding-right: 32px;
	margin-right: 32px;
	position: relative;
	text-align: center;
	display: flex;
	align-items: center;
}

.page-id-2486 .row.numbers-results .results > div::after {
	content: "";
	display: block;
	width: 2px;
	height: 100%;
	background: #61d3d0;
	position: absolute;
	top: 0;
	right: 0;
}

.page-id-2486 .row.numbers-results .results > div p {
	margin: 0;
}

.page-id-2486 .row.numbers-results .results > div p span {
	display: block;
	color: #8dc544;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 6px;
}

.page-id-2486 .row.numbers-results .results > div:last-of-type {
	margin: 0;
	padding: 0;
}

.page-id-2486 .row.numbers-results .results > div:last-of-type::after {
	display: none;
}

.page-id-2486 .row.numbers-results .dark-bg {
	background: #f2efea;
	padding: 32px 40px;
}

.page-id-2486 .row.numbers-results .dark-bg p:last-child {
	margin: 0;
}

.page-id-2486 .row.numbers-results .dark-bg p {
	color: #125775;
}

@media only screen and (max-width: 1200px) {
	.page-id-2486 .row.numbers-results .results {
		flex-wrap: wrap;
		justify-content: center;
		row-gap: 32px;
	}

	.page-id-2486 .row.numbers-results .results > div {
		flex-basis: calc(33% - 32px);
	}

	.page-id-2486 .row.numbers-results .results > div:nth-child(3) {
		padding-right: 0;
		margin-right: 0;
	}

	.page-id-2486 .row.numbers-results .results > div:nth-child(3)::after {
		display: none;
	}
}

@media only screen and (max-width: 550px) {
	.page-id-2486 .row.numbers-results h2 {
		text-align: center;
	}

	.page-id-2486 .row.numbers-results .results > div {
		flex-basis: 100%;
		justify-content: center;
	}

	.page-id-2486 .row.numbers-results .results > div {
		padding-right: 0;
		margin-right: 0;
	}

	.page-id-2486 .row.numbers-results .results > div::after {
		display: none;
	}
}

.page-id-2486 div#calculator {
	display: flex;
	max-width: 1200px;
}

.page-id-2486 div#calculator div.inputs {
	background-image: url(/wp-content/uploads/Payroll-On-Us-Calc-BG.png);
	background-size: cover;
	background-position: center;
	display: flex;
	gap: 14px;
	position: relative;
	align-items: center;
}

.page-id-2486 div#calculator div.inputs::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 100%;
	width: 2px;
	background: #1cb7b3;
}

.page-id-2486 div#calculator div.inputs > div {
	flex-basis: 50%;
	padding: 42px 12px;
	text-align: center;
}

.page-id-2486 div#calculator .inputs,
.page-id-2486 div#calculator .results {
	flex-basis: 50%;
}

.page-id-2486 div#calculator div.inputs > div > span:first-of-type {
	display: block;
	color: #fff;
	font-weight: 600;
}

.page-id-2486 div#calculator div.inputs > div .input-number {
	color: #fff;
	font-size: 60px;
	font-weight: 800;
	line-height: 1;
	display: block;
	position: relative;
	padding-top: 60px;
	padding-bottom: 40px;
}

.page-id-2486 div#calculator div.inputs > div .input-number .arrow {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background-image: url(/wp-content/uploads/Payroll-On-Us-Calc-Up.png);
	width: 57px;
	height: 20px;
	background-size: contain !important;
	background-repeat: no-repeat;
	cursor: pointer;
}

.page-id-2486 div#calculator div.inputs > div .input-number .arrow.arrow-up {
	top: 20px;
	background-image: url(/wp-content/uploads/Payroll-On-Us-Calc-Up.png);
}

.page-id-2486 div#calculator div.inputs > div .input-number .arrow.arrow-down {
	bottom: -4px;
	background-image: url(/wp-content/uploads/Payroll-On-Us-Calc-Down.png);
}

.page-id-2486 div#calculator .results {
	background: #f2efea;
	padding: 42px 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.page-id-2486 div#calculator .results p {
	margin-bottom: 32px;
	color: #125775;
	font-weight: 600;
	font-size: 18px;
	text-align: center;
}

.page-id-2486 div#calculator .results p:last-of-type {
	margin: 0;
}

.page-id-2486 div#calculator .results p span {
	display: block;
	color: #1cb7b3;
	font-size: 60px;
	line-height: 1;
}

.page-id-2486 .raw-html p:empty {
	display: none;
}

@media only screen and (max-width: 1280px) {
	.page-id-2486 div#calculator div.inputs > div .input-number,
	.page-id-2486 div#calculator .results p span {
		font-size: 48px;
	}
}

@media only screen and (max-width: 650px) {
	.page-id-2486 div#calculator {
		flex-wrap: wrap;
	}

	.page-id-2486 div#calculator .inputs,
	.page-id-2486 div#calculator .results {
		flex-basis: 100%;
	}

	.partners-portal-form-row .inner {
		grid-template-columns: 1fr;
	}

	.training-feed .training-items {
		grid-template-columns: 1fr;
	}

	.training-items a {
		min-height: 60px;
	}
}

@media only screen and (max-width: 450px) {
	.page-id-2486 div#calculator div.inputs {
		flex-wrap: wrap;
	}

	.page-id-2486 div#calculator div.inputs > div {
		flex-basis: 100%;
		width: 100%;
	}

	.page-id-2486 div#calculator div.inputs::before {
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		width: 100%;
		height: 2px;
	}

	.page-id-2486 div#calculator div.inputs > div .input-number,
	.page-id-2486 div#calculator .results p span {
		font-size: 38px;
	}
}

/* Client Training Calendar */
body.single-tribe_events .tribe-events.tribe-common {
    display: none;
}

span.tribe-events-event-url.tribe-events-meta-value a {
    background-color: var(--cta);
    padding: 12px 18px;
    border-radius: 4px;
    transition: all 300ms;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    display: inline-block;
    color: #fff;
    &:hover {
        background-color: var(--ctaalt);
    }
}

.tribe-events-meta-group.tribe-events-meta-group-details {
    width: auto;
}