html,
body {
	max-width: 100vw;
	overflow-x: hidden;
}

a img {
	-webkit-tap-highlight-color: transparent;
}

body {
	background: var(--gray-light);
	font-family: var(--sans-serif);
	padding: 0;
}

html.noscroll,
body.noscroll {
	overflow: hidden;
	height: 100%
}

body, input, textarea {
	color: #000;
}

form {
	margin: 0;
}

::selection {
	background: var(--teal); /* WebKit/Blink Browsers */
	color: #fff;
}
::-moz-selection {
	background: var(--teal); /* Gecko Browsers */
	color: #fff;
}

/* header & navigation */

header#masthead {
	background: var(--gray-light);
	padding-top: 24px;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
}

header#masthead .site-branding .site-title a {
	overflow: hidden;
	display: block;
	margin-bottom: 20px;
	border: none !important;
}
header#masthead .site-branding .site-title a img{
	height: 50px;
}
#site-branding .site-description {
	display: block;
}

header#masthead .site-branding,
header#masthead .desktop_nav {
	transition: opacity .5s ease;
}

header#masthead.menu_open .site-branding,
header#masthead.menu_open .desktop_nav {
	opacity: .2;
}

#site-navigation .menu-main-nav-container {
	display: flex;
	position: fixed;
	top: 0;
	left: calc(120vw + 20px);
	width: 100vw;
	height: 100vh;
	background: var(--gray-light);
	z-index: 1000;
	width: 100vw;
	height: 100vh;
	align-items: flex-start;
	box-shadow: 0 0 20px rgba(0, 0, 0, .25);
	transition: left .5s ease-out;

}

#site-navigation.active .menu-main-nav-container {
	left: 60vw;
	width: 40vw;
	display: flex;
}
	
#site-navigation .menu,
#site-navigation .menu-main-nav-container {
	color: #000;
	padding: 0;
}

#site-navigation .menu {
	display: block;
	width: 100%;
	padding: 40px;
	max-height: 100vh;
}

#site-navigation .menu > li {
	opacity: 0;
	top: 20px;
	transition: all .5s ease;
	margin-bottom: 0;
}

#site-navigation .menu > li.show {
	opacity: 1;
	top: 0;
}

#site-navigation .menu li.nav-home {
	cursor: pointer;
	text-indent: -300em;
	overflow: hidden;
	background: url(../images/logo-menu.png) no-repeat left center;
	background-size: 38px auto;
	margin-bottom: 40px;
}

.header_nav .nav-search,
#site-navigation .menu li.nav-search {
	cursor: pointer;
	text-indent: -300em;
	overflow: hidden;
	background: url(../images/icon-search-thin.png) no-repeat left top;
	background-size: 24px auto;
}

.header_nav .nav-search {
	height: 30px;
	width: 30px;
	text-indent: 300em;
	overflow: hidden;
	position: relative;
}

.header_nav .nav-search a,
#site-navigation .menu li.nav-home a,
#site-navigation .menu li.nav-search a {
	min-width: 50px;
}

#site-navigation ul.menu li {
	padding: 10px 0;
	
}

#site-navigation ul.menu li a {
	display: table;
	color: #000;
	text-align: center;
	font-size: 20px;
	border: none;
	text-align: left;
	font-size: 1.75rem;
	line-height: 1em;
	font-family: var(--serif);
	border-bottom: 1px solid transparent;
	padding-bottom: 5px;
	transition: border .5s ease;
}

#site-navigation ul.menu li a:hover {
	border-color: #000;
}

#site-navigation .menu li.nav-home a:hover,
#site-navigation .menu li.nav-search a:hover {
	border-color: transparent;
}


#site-navigation ul.menu .sub-menu {
	padding: 10px 0 0 0;
}

#site-navigation ul.menu .sub-menu li {
	border: none;
}

#site-navigation ul.menu .nav-sub a,
#site-navigation ul.menu .sub-menu li a {
	padding-top: 0;
	text-transform: none;
	font-size: 1.1rem;
	font-family: var(--sans-serif);
}

#site-navigation ul.menu .sub-menu li a {
	margin-left: 30px;
	font-weight: 500;
}

#site-navigation ul.menu .sub-menu li.current-menu-item {
	background: url(../images/nav-marker.png) no-repeat left 8px top 13px;
	background-size: 10px auto;
}

#site-navigation ul.menu .sub-menu li.current-menu-item a {
	font-weight: 600;
}

#site-navigation ul.menu .nav-sub a {
	font-weight: 400;
}

#site-navigation .space-above {
	margin-top: 30px;
	border-top: 1px solid #000;
	padding-top: 30px !important;
}

#site-navigation ul.menu li.menu-item-has-children > a {
}

#site-navigation ul.menu li.menu-item-has-children > a:after {
	content: "";
	display: inline-block;
	height: 20px;
	width: 20px;
	position: relative;
	top: 3px;
	margin-left: 10px;
	background-image: url(../images/menu-arrow-down.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 12px 12px;
	display: none !important;
}

#site-navigation ul.menu li.menu-item-has-children > a.active:after {
	background-image: url(../images/menu-arrow-up.png);
}

#site-navigation #mobile_menu_icon {
	height: 40px;
	width: 40px;
	line-height: 40px;
	padding-left: 50px;
	background-size: 40px 40px;
	display: block;
	cursor: pointer;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	position: absolute;
	top: 2px;
	right: -75px;
	z-index: 1010;
}

#site-navigation #mobile_menu_icon > div {
	width: 34px;
	height: 1px;
	background: #000;
	position: absolute;
	left: 0;
	-webkit-transition: all .5s ease;
	   -moz-transition: all .5s ease;
		-ms-transition: all .5s ease;
		 -o-transition: all .5s ease;
			transition: all .5s ease;
}

#site-navigation #mobile_menu_icon .hamburger1 {
	top: 0;
}
#site-navigation #mobile_menu_icon .hamburger2 {
	top: 10px;
}
#site-navigation #mobile_menu_icon .hamburger3 {
	top: 20px;
}

#site-navigation #mobile_menu_icon .close1 {
	top: 10px;
}
#site-navigation #mobile_menu_icon .close2 {
	top: 10px;
}


#site-navigation #mobile_menu_icon:hover > div {
	background: #000;
}

#site-navigation.active #mobile_menu_icon .hamburger1,
#site-navigation.active #mobile_menu_icon .hamburger3 {
	width: 0;
	left: 16px;
	opacity: 0;
	
}
#site-navigation.active #mobile_menu_icon .hamburger2 {
	display: none;
}
#site-navigation.active #mobile_menu_icon .close1 {
	transform: rotate(45deg);
}
#site-navigation.active #mobile_menu_icon .close2 {
	transform: rotate(-45deg);
}




.header_nav .desktop_nav #menu-desktop-menu {
	margin: 0 20px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	column-gap: 40px;
}

header#masthead .content_wrapper .header_nav {
	margin-right: 60px
}

header#masthead .header_nav .desktop_nav {
	margin-top: 0;
}

header#masthead .header_nav .desktop_nav #menu-desktop-menu {
	margin-right: 40px;
}

header#masthead .header_nav .desktop_nav #menu-desktop-menu li {
	font-size: .8rem;
	text-transform: uppercase;
	padding-left: 15px;
}

header#masthead .header_nav #menu-desktop-menu li:hover,
body.single-team-member header .desktop_nav li.nav-people,
body.single-company header .desktop_nav li.nav-portfolio,
body.single-blog header .desktop_nav li.nav-impact,
header#masthead .header_nav .desktop_nav #menu-desktop-menu li.current-page-ancestor,
header#masthead .header_nav .desktop_nav #menu-desktop-menu li.current-menu-item {
	background: url(../images/nav-marker.png) no-repeat left 0 top 8px;
	background-size: 10px auto;
}

header#masthead .header_nav #menu-desktop-menu li {
	margin: 0;
}

header#masthead .header_nav #menu-desktop-menu li a {
	line-height: 30px;
	border: none !important;
}

@media screen and (min-width: 1100px) {
	
	body.search-results #content > .content_wrapper,
	#content.title_only > .content_wrapper {
		display: grid; 
		grid-template-columns: 25% 50%; 
		gap: 0px 0px; 
		grid-template-areas: 
			"page_title content"
			"page_title bottom_content"; 
	}
	#content.title_only #title_wrapper { 
		grid-area: page_title; 
	}
	#content > .content_wrapper { 
		grid-area: content; 
	}
	
	#content.title_only #bottom_content {
		grid-area: bottom_content;
	}
	
	body.search-results #content > .content_wrapper > .content_wrapper,
	#content.title_only #bottom_content,
	#title_wrapper.title_only > .content_wrapper,
	#content.title_only > .content_wrapper > .content_wrapper,
	#content.title_only #bottom_content .content_wrapper { 
		width: auto;
	}

}

@media screen and (min-width: 1200px) {

	header#masthead .content_wrapper .site-branding {
		Xpadding-left: 20px;
	}

}


#main {
	padding-bottom: 40px;
}


/* hero */

#hero_wrapper {
	height: auto;
	background: #333;
}


.title_text_wrapper {
	display: flex;
	Xfont-family: var(--sans-serif);
	margin-bottom: 60px;
}

.title_text-title {
	width: 25%;
}

.title_text-title .subnav_links {
	padding-right: 100px;
}

.title_text-title nav ul.menu li {
	display: block;
}

.title_text-title nav ul.menu li a {
	padding: 0;
	line-height: normal;
	height: auto;
}

.title_text_wrapper .title_text-text {
	font-family: var(--serif);
	width: 75%;
	height: 250px;
	position: relative;
	margin-left: -60px;
	font-size: 1.8rem;
}

.title_text-shape {
	float: left;
	width: 150px;
	height: 200px;
	shape-outside: polygon(100% 0, 0 0, 0 100%);
	clip-path: polygon(100% 0, 0 0, 0 100%);
	margin-right: 20px;
	border-right: 1px solid #000;
}

.title_text-line {
	width: 1px;
	height: 300px;
	background: #000;
	position: absolute;
	top: -26px;
	left: 20px;
	transform: rotate(37deg);
	z-index: 1;
}

.subnav_links {
	margin-top: 30px;
}

.subnav_links nav .menu li {
	margin-bottom: 5px;
}

.subnav_links nav .menu li a {
	font-weight: 500;
	color: var(--gray);
}

.subnav_links nav .menu li.current_page_item a {
	color: #000;
	font-family: var(--sans-serif-bold);
	font-weight: normal;
}

body.page_subnav-fixed section.spotlight_companies {
	padding-top: 140px;
}

body.page_subnav-fixed #page_subnav {
	background: var(--gray-light);
	position: fixed;
	top: 60px;
	left: 0;
	width: 100%;
	z-index: 1000;
}

body.page_subnav-fixed #page_subnav h1 {
	transform: rotateY(0);
	height: 50px;
}


#page_subnav {
	position: relative;
	padding: 20px;
	width: 100%;
	height: 70px;
}

body.page-template-template-impact #page_subnav,
body.page-template-template-portfolio #page_subnav {
	height: 120px;
}

#page_subnav.no_subnav {
	height: 70px;
}
	
#page_subnav .page_subnav_links {
	border-top: 1px solid #000;
}

#page_subnav .page_subnav_links a {
	display: inline-block;
	padding: 10px 0 0 0;
	margin: -3px 60px 0 0;
	border-top: 5px solid transparent;
	color: var(--gray);
	border-bottom: none !important;
}

#page_subnav .page_subnav_links a:hover {
	color: #000;
}

#page_subnav .page_subnav_links a.active {
	border-color: #000;
	color: #000;
	font-family: var(--sans-serif-bold);
	font-weight: normal;
}

#page_subnav h1 {
	transition: transform 0.8s;
	transform: rotateX(90deg);
	transform-style: preserve-3d;
	padding-left: 0;
}

#page_subnav h1 span {
	color: gray;
}

body.page_subnav-fixed #page_title {
	
}

body.page_subnav-fixed .impact_wrapper {
	padding-top: 120px;
}

body.page_subnav-fixed #page_subnav {
	background: var(--gray-light);
	position: fixed;
	top: 60px;
	left: 0;
	width: 100%;
	z-index: 1000;
}

body.page_subnav-fixed #page_subnav h1 {
	transform: rotateY(0);
	height: 50px;
}

	body.page_title-fixed section.spotlight_companies {
	padding-top: 140px;
}

#page_title {
	position: relative;
	padding: 15px;
	width: 100%;
	overflow: hidden;
	height: 0;
}

body.page_subnav-fixed #page_subnav h1 {
	margin-left: -2px;
}

#page_title-spacer {
	position: relative;
	height: 0;
}

body.page_title-fixed #page_title-spacer {
	height: 33px;
}

body.page_title-fixed #page_title {
	background: var(--gray-light);
	position: fixed;
	top: 80px;
	height: 70px;
	left: 0;
	width: 100%;
	z-index: 1000;
}

body.page_title-fixed #page_title h1 {
	transform: rotateY(0);
	padding-top: 10px;
	height: 50px;
}

#page_title h1 {
	transition: transform 0.8s;
	transform: rotateX(90deg);
	transform-style: preserve-3d;
	padding-left: 0;
}

#page_title h1 span {
	color: gray;
}

body.page_title-fixed #page_title {
	background: var(--gray-light);
	position: fixed;
	top: 80px;
	left: 0;
	width: 100%;
	z-index: 1000;
}

body.page_title-fixed #page_title h1 {
	transform: rotateY(0);
	height: 50px;
}



@media only screen and (max-width: 899px) {
	
	#content.title_only #title_wrapper {
		margin-bottom: 20px;
	}
	
	.title_text_wrapper {
		display: block;
	}
	
	.title_text_wrapper .title_text-title,
	.title_text_wrapper .title_text-text {
		width: 100%;
	}
	
	.title_text_wrapper .title_text-line,
	.title_text_wrapper .title_text-shape {
		display: none;
	}
	
	.title_text_wrapper .title_text-text {
		margin: 0;
		padding: 20px;
		height: auto;
	}
	
	
}




#content {
	position: relative;
	z-index: 1;
	background: var(--gray-light);
	padding-top: 100px;
	padding-bottom: 60px;
	min-height: calc(100vh - 120px);
}

h1.page_title {
	font-family: var(--sans-serif-bold);
	font-weight: normal;
	color: #717171;
	margin: 0;
}

body.single-people h1.page_title {
	font-family: var(--serif);
	font-weight: normal;
}


.page-content, .entry-content, .entry-summary {
	margin: 0;
}

p, ul, ol, li, pre, form, select, address, embed {
	font-size: 18px;
}

.entry-content strong,
.entry-content b,
.blog_content_wrapper strong,
.blog_content_wrapper b {
	font-weight: normal;
	font-family: var(--sans-serif-bold);
}

.topspace0 {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

.bottomspace0 {
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}


body.search form.search-form {
	margin: 0 0 60px 0;
}

body.search form.search-form .search-field {
	display: inline-block;
	max-width: 600px;
}



#filter {
	scroll-margin-top: 100px
}

.wpc-search-field-wrapper a.wpc-search-clear-icon {
	display: none;
}

.widget_wpc_filters_widget {
	margin: 0;
}

.wpc-edit-filter-set {
	display: none !important;
}

.wpc-filter-chips-list li a {
	border-color: #000 !important;
	padding-top: 4px !important;
}

.wpc-filter-chips-list li.wpc-chip-reset-all a {
	border-color: var(--red) !important;
}

.wpc-chip-content {
	font-size: .6rem;
	text-transform: uppercase;
}

/* Hide the default checkbox */
.wpc-term-item-content-wrapper input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 0;
  border: 1px solid #000;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  margin-right: 8px;
  transition: all 0.2s ease;
}

/* Checked state */
.wpc-term-item-content-wrapper input[type="checkbox"]:checked {
  background-color: #000;
  background: url(../images/nav-marker.png) no-repeat center center;
  background-size: 10px 10px;
}

/* Align the checkbox and label nicely */
.wpc-term-item-content-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

#filter .wpc-filters-button-text {
	text-transform: uppercase;
	font-size: .9rem;
}

@media only screen and (max-width: 768px) {
	
	#filter .wpc-filters-open-button-container a.wpc-open-close-filters-button {
		border-radius: 20px;
		width: 100%;
		padding: 7px 20px 3px 20px;
		background: url(../images/arrow-down.png) top 10px right 20px no-repeat;
		background-size: 16px 16px;
	}
	
	#filter .wpc-filters-open-button-container a.wpc-open-close-filters-button.wpc-opened {
		border-radius: 20px 20px 0 0;
		border-bottom-width: 0;
		background-image: url(../images/arrow-up.png);
	}
	
	#filter .wpc-icon-html-wrapper {
		display: none;
	}
	
	#filter .wpc-filters-widget-content {
		margin: -20px 0 20px 0;
		padding: 20px;
		border: 1px solid #000;
		border-top-width: 0;
		border-radius: 0 0 20px 20px;
		font-size: .9rem;
	}
	
	#filter .wpc-term-item-content-wrapper {
		margin-bottom: 0;
	}
	
	#filter .wpc-filters-widget-content .wpc-filter-header {
		text-transform: uppercase;
	}
	
	#filter .wpc-filters-main-wrap li.wpc-term-item label {
		font-size: .9rem;
	}
	
	#filter .wpc-search-icon:before {
		display: none;
	}

}



input:focus,
select:focus,
textarea:focus,
button:focus {
	outline: none;
}

textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
	 -webkit-appearance: none;
}

input[type="text"] {
	border: 1px solid transparent;
}

input[type="text"]:focus {
	border: 1px solid var(--teal) !important;
}

@media only screen and (min-width: 770px) {
	
	.wpc-horizontal-layout.wpc-horizontal-cols-5 .wpc-filters-section:not(.wpc-filter-layout-submit-button) {
		max-width: 17%;
		width: 17%;
		height: 30px;
	}
	
	.wpc-horizontal-layout.wpc-horizontal-cols-5 .wpc-filters-section:not(.wpc-filter-layout-submit-button):last-of-type {
		max-width: 25%;
		width: 25%;
	}
	
	.wpc-filter-layout-dropdown .select2-container--default .select2-selection--single {
		position: relative;
		z-index: 3;
		text-transform: uppercase;
		font-size: 12px;
		border: 1px solid #000;
		border-radius: 20px;
		text-align: center;
		margin: 0;
		padding: 5px;
		display: block;
		cursor: pointer;
		background: var(--gray-light);
	}
	
	.wpc-filter-layout-dropdown .select2-container--default .select2-selection--single .select2-selection__rendered {
		padding: 6px 9px;
	}
	
	.wpc-filter-layout-dropdown .select2-container--default .select2-selection--single .select2-selection__arrow {
		background: transparent;
	}
	
	.select2-container--default.select2-container--open .wpc-filter-everything-dropdown.select2-dropdown {
		border-color: #000;
		border-radius: 0 0 20px 20px;
		overflow: hidden;
	}
	
	.wpc-filter-everything-dropdown .select2-results__option {
		font-size: 14px;
	}
	
	.select2-container--default.select2-container--open .wpc-filter-everything-dropdown.select2-dropdown .select2-search {
		display: none !important;
	}
	
	.wpc-filters-section .wpc-filter-header {
		display: none;
		height: 30px;
	}
	
	.wpc-filters-section .wpc-filter-search-form .wpc-search-field-wrapper input.wpc-search-field {
		border-color: #000;
		color: #000;
		background: #fff;
		font-size: 12px;
		border: none;
		border-radius: 20px;
		padding: 5px 5px 5px 20px;
		height: 30px;
	}
	
	.wpc-filters-section .wpc-filter-search-form .wpc-search-field-wrapper input.wpc-search-field::placeholder {
		text-transform: uppercase;
		color: #666;
	}
	
	.wpc-filters-section .wpc-filter-search-form .wpc-search-field-wrapper .wpc-search-icon {
		display: none !important;
	}
	
		
	/* checkbox filters */
	.wpc-filters-section .wpc-filter-header {
		display: block;
	}
	
	.wpc-filter-layout-search-field.wpc-filters-section .wpc-filter-header {
		display: none;
	}
	
	.wpc-filters-widget-wrapper .wpc-filter-header .widget-title {
		position: relative;
		z-index: 3;
		text-transform: uppercase;
		font-size: 12px;
		border: 1px solid #000;
		border-radius: 20px;
		text-align: left;
		margin: 0;
		padding: 8px 5px 5px 20px;
		display: block;
		cursor: pointer;
		background: var(--gray-light) url(../images/arrow-down.png) top 7px right 10px no-repeat;
		background-size: 16px 16px;
	}
	
	.wpc-filters-widget-wrapper .wpc-filters-section.active .wpc-filter-header .widget-title {
		padding: 8px 5px 15px 20px;
		background-image: url(../images/arrow-up.png);
		background-position: top 5px right 10px;
	}

	.wpc-filters-widget-wrapper .wpc-filters-section {
		min-width: 130px;
		Xwidth: auto !important;
	}

	.wpc-filters-section.active .wpc-filter-header .widget-title {
		border-radius: 15px 15px 0 0;
		border-bottom: none;
	}
	
	.wpc-filters-section .wpc-filter-content {
		display: none;
		position: absolute;
		Xmin-width: 150px;
		width: 100%;
		z-index: 10;
		top: 40px;
		left: 0;
		border: 1px solid #000;
		padding: 10px 10px 2px 10px;
		font-size: 12px;
		background: var(--gray-light);
	}
	
	.wpc-filters-main-wrap li.wpc-term-item a {
		text-wrap: wrap;
	}
	
	.wpc-filters-section.active .wpc-filter-content {
		display: block;
		margin-top: -2px;
		z-index: 1;
		border-radius: 0 0 20px 20px;
	}
	
	.wpc-filters-section .wpc-filter-content label {
		white-space: nowrap;
		font-size: 14px;
	}
	
	.wpc-filters-main-wrap ul.wpc-filters-ul-list,
	.wpc-filters-section .wpc-filter-content .filters-ul-list {
		margin: 0 !important;
		padding: 0;
	}

}



.more_impact {
	border-top: 1px solid #000;
	margin: 60px 0;
}

.more_impact h3 {
	border: none;
	margin: 0 0 30px 0;
}

.more_impact #stories .news_wrapper {
	column-gap: 30px;
}

body.single-company .news_wrapper .post_item,
.more_impact #stories .news_wrapper .post_item {
	width: calc(33.3% - 20px);
}

@media only screen and (max-width: 799px) {

	.more_impact #stories .news_wrapper {
		display: block;
	}

	.more_impact #stories .news_wrapper .post_item {
		width: 100%;
	}
	
	.more_impact #stories .news_wrapper .post_item .post_image {
		max-width: 300px;
	}

}



.company_info {
	font-size: 14px;
	margin-bottom: 30px;
}

.company_info > div {
	margin-bottom: 20px;
	line-height: 1.5em;
}

.company_info > div > div {
	margin-bottom: 3px;
}

.company_info h2 {
	font-family: var(--sans-serif-bold);
	margin-bottom: 20px;
}

.company_info h3 {
	border: none;
	padding: 0;
	margin: 0 0 6px 0;
	font-size: 12px;
	font-weight: normal;
	text-transform: uppercase;
}

@media screen and (max-width: 799px) {

	.company_info {
		display: flex;
		flex-wrap: wrap;
	}
	
	.company_info h2 {
		width: 100%;
	}
	
	.company_info > div {
		width: 50%;
	}


}


.team_wrapper {
	row-gap: 60px;
	margin-bottom: 40px;
}

.team_wrapper .content_wrapper {
	width: 100%;
}

.team_wrapper .team_photo {
	aspect-ratio: 1 / 1;
	background: #878C92;
}

.team_wrapper .team_item .team_photo {
	overflow: hidden;
	transition: all .5s ease;
}

.team_wrapper .team_item:hover .team_photo {
	border-radius: 20px;
}
 
.team_wrapper .team_photo img {
	width: 100%;
}

.team_wrapper .team_text {
	padding: 10px;
}

.team_wrapper .team_text .team_name {
	font-weight: 500;
}

.team_wrapper .team_item:hover .team_text .team_name {
	font-family: var(--sans-serif-bold);
	font-weight: normal;
}




/* portfolio */

.portfolio_wrapper {
	margin-top: 30px;
	margin-bottom: 60px;
	display: flex;
	flex-wrap: wrap;
	column-gap: 30px;
	row-gap: 30px;
}

.portfolio_wrapper .portfolio_item {
	width: calc(50% - 15px);
	background: #fff;
	min-height: 100px;
	transition: all .5s ease;
}

.portfolio_wrapper .portfolio_item:nth-child(2n+2) {
	transition-delay: .25s;
}


.portfolio_wrapper .portfolio_item a {
	display: flex;
	flex-wrap: nowrap;
	column-gap: 20px;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 20px;
}

.portfolio_wrapper .portfolio_item a,
.portfolio_wrapper .portfolio_item a:hover {
	border: none !important;
}

.portfolio_wrapper .portfolio_item:hover {
	border-radius: 20px;
}

.portfolio_wrapper .portfolio_item .portfolio_item_logo {
	width: calc(40% - 20px);
	height: 40px;
	display: flex;
	align-items: center;
}

.portfolio_wrapper .portfolio_item .portfolio_item_logo img {
	height: 40px;
	width: 100%;
	max-width: 130px;
	object-fit: scale-down;
}

.portfolio_wrapper .portfolio_item .portfolio_item_info {
	width: 60%;
	font-size: .8rem;
}

.portfolio_item_nasdaq {
	color: var(--orange-text);
	margin-top: 3px;
	font-size: .8rem;
}

.portfolio_item_nasdaq.nasdaq_mobile {
	display: none;
}
.portfolio_item_nasdaq.nasdaq_desktop {
	display: none;
}

@media screen and (min-width: 800px) {

	.portfolio_item_nasdaq.nasdaq_desktop {
		display: block;
	}

}

@media screen and (max-width: 799px) {
	
	.portfolio_item_nasdaq {
		margin-top: 5px;
		font-size: .7rem;
	}

	.portfolio_item_nasdaq.nasdaq_mobile {
		display: block;
	}
		
	.portfolio_wrapper {
		gap: 10px;
	}
	
	.portfolio_wrapper .portfolio_item {
		padding: 5px;
		height: 70px;
		width: calc(50% - 5px);
	}
	
	.portfolio_wrapper .portfolio_item a {
		padding: 0;
	}
	
	.portfolio_wrapper .portfolio_item .portfolio_item_logo {
		width: 100%;
		height: auto;
		text-align: center;
		display: block;
	}
	
	.portfolio_wrapper .portfolio_item .portfolio_item_logo > div {
		width: 100%;
	}
	
	.portfolio_wrapper .portfolio_item .portfolio_item_logo img {
		height: 30px;
		margin: 0 auto;
	}
		
	.portfolio_wrapper .portfolio_item .portfolio_item_info {
		display: none;
	}

}


/* search */

#search_popup {
	pointer-events: none;
	opacity: 0;
	transition: opacity .5s ease;
	background: var(--gray-light);
	position: fixed;
	z-index: 1010;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
}

#search_popup.active {
	pointer-events: auto;
	opacity: 1;
}

#search_popup_wrapper {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 10vw;
}

#search_popup_wrapper #search_wrapper {
	width: 100%;
	display: flex;
}

form#searchform {
	display: flex;
	margin: 0 auto;
	width: 100%;
	max-width: 800px;
	padding: 0 0 30px 0;
}

#search_popup_wrapper form#searchform {
	padding: 30px;
}

form#searchform .search_input,
form#searchform .search_input:focus {
	font-family: var(--serif);
	margin-right: 10px;
	padding: 0;
	font-size: 30px;
	line-height: 1em;
	width: 30vw;
	min-width: 300px;
	font-weight: 300;
	color: #000;
	border: none !important;
	border-bottom: 1px solid #000 !important;
	border-radius: 0;
	background: transparent;
	width: 100%;
}

form#searchform ::placeholder {
	color: #000 !important;
}

form#searchform input.button {
	font-size: 18px;
	line-height: 32px;
	height: 50px;
	padding: 0 40px;
	font-weight: 300;
	text-transform: uppercase;
	background: transparent;
}

form#searchform input.button:hover {
	background: #000;
}

#search_popup .close_search_wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

#search_popup .close_search_wrapper .close_search {
	cursor: pointer;
	float: right;
	margin: 22px 5px 0 0;
	height: 27px;
	width: 27px;
	background: url(../images/close-x-blk.png) no-repeat center center;
	background-size: 27px 27px;
	text-indent: -300em;
	overflow: hidden;
}

/* mobile screen styles */
@media screen and (max-width: 640px) {
	
	#search_popup_wrapper {
		padding: 20px;
		height: 50%;
	}
	
	#search_popup_wrapper form#searchform {
		padding: 0;
		flex-wrap: wrap;
	}
	
	#search_popup_wrapper form#searchform input {
		width: 100% !important;
		margin: 0 0 20px 0 !important;
		height: 50px;
	}
	
}

body.search-results h1.page_title {
	visibility: hidden;
}

body.search-results .search_results_wrapper {
	margin-top: -10px;
}

body.search-results .loadmore.read_link {
	font-size: 1rem;
}

body.search-results .portfolio_wrapper .portfolio_item {
	width: 100%;
	max-width: 500px;
}

body.search-results article {
	max-width: 800px;
}

body.search-results h3 {
	width: 120px;
	margin: 60px 0 20px 0;
	font-weight: normal;
	font-size: 1.25rem;
}

body.search-results h3 a {
	color: var(--orange);
}

body.search-results h3 a:hover {
	border-color: var(--orange);
}

body.search-results .entry-summary, body.search-results .entry-summary * {
	font-size: 1rem;
}

body.search-results .entry-summary, body.search-results .entry-meta {
	margin-bottom: 10px;
}

body.search-results .entry-summary, body.search-results .entry-meta,
body.search-results .entry-summary, body.search-results .entry-meta * {
	font-size: .8rem;
}

body.search-results .navigation {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #000;
	text-transform: uppercase;
	font-size: .8rem;
}

body.search-results .navigation .nav-links a {
	margin-right: 20px;
}



/* news */

.content_news {
	margin-bottom: 20px;
}

.content_news h2 {
	margin: 60px 0;
}

.news_wrapper {
	display: flex;
	column-gap: 30px;
	row-gap: 60px;
	flex-wrap: wrap;
}



@media screen and (min-width: 800px) {
	
	.news_wrapper .content_4cols .post_item {
		width: calc(25% - 22.5px);
	}
	
}

@media screen and (max-width: 799px) {
	
	.content_news {
		padding-left: 0;
		padding-right: 0;
	}

}

.news_wrapper .post_item {
	overflow: hidden;
	position: relative;
}

/*
.news_wrapper .post_item:nth-child(3n+2) {
	transition-delay: .25s;
}
.news_wrapper .post_item:nth-child(3n+3) {
	transition-delay: .5s;
}
*/


.news_wrapper .post_item .post_item_content {
	padding:0 20px 20px 20px;
	overflow: hidden;
}

.news_wrapper .post_item .post_image {
	overflow: hidden;
	background-color: transparent;
	margin: 0 0 20px 0;
	overflow: hidden;
	transition: all .5s ease;
	aspect-ratio: 1 / 1;
}

.news_wrapper .post_item .post_image img {
	width: 100%;
	height: auto;
}

.news_wrapper .post_item:hover .post_image {
	border-radius: 20px;
}

.news_wrapper .post_item .post_image.post_image-square {
	aspect-ratio: 1 / .6;
}

.news_wrapper .post_item .post_image.post_image-landscape {
	background-size: cover;
	background-repeat: no-repeat;
	aspect-ratio: 3 / 2;
}

.post_item .post_category,
.post_item .post_byline {
	margin: 0 0 8px 0;
	font-size: .9rem;
}

.post_item .post_byline {
	margin: 8px 0 0 0;
}

.post_date {
	margin: 8px 0 0 0;
	text-transform: uppercase;
	font-size: .9rem;
}

.news_wrapper .post_item .post_title {
	font-family: var(--serif);
	font-size: 1.2rem;
	line-height: 1.5em;
	font-weight: 400;
}

#spotlights .post_item .post_title,
.news_wrapper .post_item .post_title {
	text-decoration-line: underline;
	text-decoration-color: transparent;
	text-decoration-thickness: 1px;
	text-underline-offset: 5px;
	
	transition: all .5s ease;
}

#spotlights .post_item:hover .post_title,
.news_wrapper .post_item:hover .post_title {
	text-decoration-color: #000;
}




.spotlight_companies.spotlight_images {
	margin: 0 -20px;
	padding-bottom: 20px;
	padding-top: 30px;
}

.spotlights_wrapper {
	display: flex;
	flex-wrap: wrap;
	column-gap: 20px;
	row-gap: 60px;
}

.spotlight_companies.spotlight_images .spotlight_item {
	position: relative;
	overflow: hidden;
	transition: all .5s ease;
	width: calc(25% - 15px);
	border: 1px solid transparent;
	background: #fff;
}

.spotlight_companies.spotlight_images .spotlight_item,
.spotlight_companies.spotlight_images .spotlight_item * {
	-webkit-tap-highlight-color: transparent;
	user-select: none;
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE/Edge */
}

.spotlight_companies.spotlight_images .spotlight_item:hover {
	border: 1px solid var(--teal);
	border-radius: 20px;
}

.spotlight_companies.spotlight_images .spotlight_item .spotlight_image {
	aspect-ratio: 1 / .6;
	background-color: transparent;
	position: relative;
}

.spotlight_companies.spotlight_images .spotlight_item .spotlight_image img {
	object-fit: cover;
	display: inline-block;
	max-width: 80%;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	left: 50%;
}

.spotlight_companies.spotlight_images .spotlight_item .spotlight_logo {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
	background: linear-gradient(0deg, #000 0%, transparent 100%);
}

.spotlight_companies.spotlight_images .spotlight_item .spotlight_no_logo {
	padding-bottom: 20px;
	font-family: var(--sans-serif-bold);
	font-weight: normal;
	color: #fff;
}

.spotlight_companies.spotlight_images .spotlight_item .spotlight_logo img {
	margin: 0 auto;
	padding: 40px 20px 20px 20px;
	width: 100%;
	max-width: 200px;
	height: auto;
	max-height: 100px;
	transition: all .5s ease;
	filter: invert(1);	
	object-fit: contain;
}

.spotlight_companies.spotlight_images .owl-nav {
	position: absolute;
	width: 100%;
	top: 0;
}

.spotlight_companies.spotlight_images .owl-nav button {
	background:  no-repeat center center;
	background-size: 30px 30px;
	height: 30px;
	width: 30px;
	position: absolute;
	top: -50px;
	border-radius: 0;
}

.spotlight_companies.spotlight_images .owl-nav span {
	display: none;
}

.spotlight_companies.spotlight_images .owl-nav .owl-next {
	right: 18px;
	border: 0;
	background-image: url(../images/arrow-r.png);
}

.spotlight_companies.spotlight_images .owl-nav .owl-prev {
	left: 18px;
	border: 0;
	background-image: url(../images/arrow-r.png);
	transform: rotate(180deg);
}

.spotlight_companies.spotlight_images .spotlight_hover {
	background: var(--gray-light);
	color: #000;
	font-size: .8rem;
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	transition: opacity .5s ease;
	opacity: 0;
}

.spotlight_companies.spotlight_images .spotlight_item:hover .spotlight_hover {
	opacity: 1;
}

.spotlight_hover .spotlight_initial_investment,
.spotlight_hover .nasdaq_info {
	padding: 20px 20px 0 20px;
	text-align: center;
	font-weight: bold;
}

.spotlight_hover .nasdaq_info {
	padding-top: 10px;
	color: var(--orange-text);
}

.spotlight_hover .spotlight_initial_investment span {
	text-transform: uppercase;
	font-family: var(--sans-serif-bold);
	font-size: 1.4rem;
}

.spotlight_hover .spotlight_desc {
	padding: 10px 20px 0 20px;
}

.spotlight_hover .spotlight_initial_investment,
.spotlight_hover .nasdaq_info,
.spotlight_hover .spotlight_desc {
	font-size: .8rem;
}


.spotlight_hover .spotlight_hover_logo {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	padding: 0 20px;
	width: auto;
	max-width: 200px;
	height: auto;
	max-height: 40px;
}

.spotlight_hover .spotlight_hover_no_logo {
	font-family: var(--sans-serif-bold);
	font-weight: normal;
	color: #000;
	position: absolute;
	bottom: 20px;
	width: 100%;
	text-align: center;
	font-size: 1rem;
}



#spotlights .post_item .post_title {
	font-family: var(--serif-bold);
	font-size: 1.3rem;
	font-size: 1.7vw;
	line-height: 1.3em;
	margin-bottom: 30px;
}

#spotlights .post_item .post_title a {
	text-decoration: none;
	border: none;
}

#spotlights .post_item .post_text {
	padding-top: 0;
}

#spotlights .post_item .post_excerpt {
	font-size: 1.3vw;
}

#spotlights .read_link {
	margin-top: 30px;
	font-size: 1.3vw;
}

.read_link {
	font-size: .8rem;
}

.read_link:after {
	content: "";
	display: inline-block;
	height: 12px;
	width: 12px;
	background: url(../images/arrow-blk-right.png) no-repeat center center / 12px 12px;
	vertical-align: middle;
	margin-left: 3px;
	margin-bottom: 3px;
}


.owl-carousel.off {
	display: block !important;
}



.bio_wrapper {
	display: flex;
	flex-wrap: wrap;
	column-gap: 40px;
	row-gap: 80px;
}

.bio_wrapper .team_name h1.page_title {
	padding-left: 0;
	padding-right: 0;
}

.bio_wrapper > div {
	width: calc(50% - 20px);
}

.mobile_header .team_title,
.bio_wrapper .team_title {
	font-family: var(--sans-serif-bold);
	font-weight: normal;
}

.team_portfolio,
.team_stories {
	margin-top: 100px;
}





.team_stories h3 {
	margin-bottom: 80px;
}

body.single-people .content_3cols .content_wrapper {
	column-gap: 40px;
	row-gap: 60px;
	flex-wrap: wrap;
}

body.single-people .content_3cols .content_wrapper .post_item {
	width: calc(33.33% - 29.66px);
}

.post_item .post_image {
	overflow: hidden;
	background: transparent no-repeat top center;
	background-size: cover;
	border-radius: 0;
	transition: border-radius .2s ease;
	aspect-ratio: 1 / 1;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.post_item .post_image.post_image-square {
	aspect-ratio: 1 / 1;
}

.post_item .post_image.post_image-landscape {
	aspect-ratio: 3 / 2;
}

.post_item .post_image img {
	opacity: 0;
	height: 100%;
}

.post_item:hover .post_image {
	border-radius: 40px;
	overflow: hidden;
}

.post_item .post_text {
	padding: 10px;
}

.post_item .post_text .post_byline {
	font-size: 12px;
}

.post_item .post_text .post_title {
	font-family: var(--sans-serif-bold);
	font-weight: normal;
	font-size: 1.3rem;
}


body.single-people .portfolio_wrapper {
	margin-top: 60px;
}


@media screen and (max-width: 799px) {
	
	.bio_wrapper {
		display: block;
	}
	
	.bio_wrapper > div {
		width: 100%;
	}
	
	.bio_wrapper h1.page_title,
	.bio_wrapper .team_info {
		padding: 0;
		margin: 0 0 20px 0;
	}
	
	body.single-people .content_3cols .content_wrapper {
		display: block;
	}
	
	body.single-people .content_3cols .content_wrapper .post_item {
		width: 100%;
	}
	
	.team_wrapper {
		column-gap: 20px !important;
	}
	
	.team_wrapper .team_photo {
		max-width: 400px;
		margin-bottom: 10px;
	}
	
	.team_wrapper .team_text {
		padding: 0 0 10px 0;
	}
	
	.post_item {
		margin-bottom: 40px;
	}
	
	.post_item .post_image {
		Xmax-width: 200px;
	}
	
	.content_news .news_wrapper {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		display: block;
	}
	
	.content_news .news_wrapper .post_item {
		width: 100% !important;
	}
	
	.content_news .post_item .post_image {
		max-width: none;
	}

}







.bottom_content_area.quote .quotes_wrapper .owl-nav .owl-prev,
.bottom_content_area.quote .quotes_wrapper .owl-nav .owl-next {
	background: #666;
	color: #fff;
	line-height: 24px;
	font-size: 24px;
	opacity: .5;
}

.bottom_content_area.quote .quotes_wrapper .owl-nav .owl-prev:hover,
.bottom_content_area.quote .quotes_wrapper .owl-nav .owl-next:hover {
	opacity: 1;
}




.quotes_wrapper .owl-nav {
	position: absolute;
	top: 0;
	width: 110%;
	left: -5%;
}

.quotes_wrapper .owl-nav .owl-prev,
.quotes_wrapper .owl-nav .owl-next {
	position: absolute;
	display: block;
	height: 24px;
	width: 24px;
	border-radius: 24px;
}

.quotes_wrapper .owl-nav .owl-prev {
	left: 0;
}

.quotes_wrapper .owl-nav .owl-next {
	right: 0;
}

.quotes_wrapper button {
	min-width: 0;
	padding: 0;
}

.quotes_wrapper .owl-dots {
	text-align: center;
}

.quotes_wrapper .owl-dots .owl-dot {
	background: #fff;
	border: 1px solid #000;
	height: 12px;
	width: 12px;
	border-radius: 12px;
	margin: 0 5px;
}

.quotes_wrapper .owl-dots .owl-dot.active {
	background: #000;
}





/* tabs */

.page_tabs {
	margin: 30px 0;
	border-bottom: 1px solid #666;
}

.page_tabs,
.page_tabs .menu {
	height: 40px;
	line-height: 40px;
}

.page_tabs .menu {
	margin: 0;
	display: flex;
	flex-wrap: nowrap;
	align-content: flex-start;
	align-items: flex-end;
	justify-content: center;
	column-gap: 10px;
}

.page_tabs .menu li {
	list-style: none;
}

.page_tabs .menu li a {
	border: 1px solid #666;
	background: #ccc;
	text-decoration: none;
	padding: 10px 20px;
	width: 100%;
	border-radius: 5px 5px 0 0;
	white-space: nowrap;
	font-size: 16px;
}

.page_tabs .menu li.current-menu-item a {
	color: #000;
	background: #fff;
	border-bottom-color: #fff;
}


/* mobile screen styles */
@media screen and (max-width: 640px) {
	
	.page_tabs,
	.page_tabs .menu {
		height: auto;
	}

	.page_tabs .menu {
		display: block;
		padding: 0 20px;
	}
	
	.page_tabs .menu li a {
		border-radius: 5px;
		padding: 0 15px;
		display: block;
		text-align: center;
		width: 100%;
		margin-bottom: 10px;
	}
	
	.page_tabs .menu li.current-menu-item a {
		border-bottom-color: #666;
	}
	
}



/* contact form 7 */

.wpcf7-form.sent p,
.wpcf7-form.sent div {
	display: none;
}

.wpcf7-form.sent div.wpcf7-response-output {
	display: block;
}



/* waypoints */
.animate {
	position: relative;
	-webkit-transition: all 1s ease-out;
	   -moz-transition: all 1s ease-out;
		-ms-transition: all 1s ease-out;
		 -o-transition: all 1s ease-out;
			transition: all 1s ease-out;
}

.animate.fadein {
	opacity: 0;
}
.animate.fadein.show {
	opacity: 1;
}

.animate.fadeinup {
	opacity: 0;
	top: 10vh;
}
.animate.fadeindown {
	opacity: 0;
	top: -10vh;
}
.animate.fadeinup.show,
.animate.fadeindown.show {
	opacity: 1;
	top: 0;
}

.animate.fadeinleft {
	opacity: 0;
	left: -10vw;
}
.animate.fadeinleft.show {
	opacity: 1;
	left: 0;
}

.animate.fadeinright {
	opacity: 0;
	right: -10vw;
}
.animate.fadeinright.show {
	opacity: 1;
	right: 0;
}

.animate.slidefromleft {
	left: -100vw;
}
.animate.slidefromleft.show {
	left: 0;
}

.animate.slidefromright {
	right: -100vw;
}
.animate.slidefromright.show {
	right: 0;
}

.animate.zoom {
	transform: scale(0);
}
.animate.zoom.show {
	transform: scale(1);
}

.animate.blurin > .content_wrapper {
	filter: blur(20px);
	-webkit-transition: filter 1s ease;
	   -moz-transition: filter 1s ease;
		-ms-transition: filter 1s ease;
		 -o-transition: filter 1s ease;
			transition: filter 1s ease;
}
.animate.blurin.show > .content_wrapper  {
	filter: blur(0);
}

.animate.dropin {
	transition-duration: 500ms;
	opacity: 0;
	transform: scale(10);
	top: 100vh;
}
.animate.dropin.show {
	opacity: 1;
	transform: scale(1);
	top: 0;
}


/* popup maker */

.pum .pum-container {
	padding: 60px 40px 40px 40px;
	background: #fff;
}

/* announcement theme = theme-14876 */
.pum .pum-container.theme-14876 {
	padding: 120px 40px 160px 40px;
	background: var(--blue-light) url(../images/popup-top.png) top center repeat-x;
	background-size: auto 60px;
}

.pum .pum-container .pum-title.popmake-title {
	font-family: var(--sans-serif-medium);
	text-align: center;
	margin-bottom: 40px;
}

.pum .pum-container .pum-content {
	font-family: var(--sans-serif);
}

.pum .pum-container.theme-14876 .pum-title.popmake-title {
	font-family: var(--serif-bold);
}

.pum .pum-container.theme-14876 .pum-content {
	font-family: var(--serif);
}

.pum .pum-container .pum-close {
	background: transparent url(../images/close-x-teal.png) center center repeat-x;
	background-size: 20px 20px;
	height: 20px;
	width: 20px;
	text-indent: -300em;
	overflow: hidden;
	bottom: 60px;
}


.pum .pum-container .nf-form-wrap nf-fields-wrap {
	display: flex;
	column-gap: 20px;
	padding: 40px 0;
}

.pum .pum-container .nf-form-wrap nf-fields-wrap nf-field {
	width: 25%;
}

.pum .pum-container .nf-form-wrap nf-fields-wrap nf-field input {
	width: 100%;
	padding: 10px 20px 9px 20px;
}

.pum .pum-container .nf-form-wrap nf-fields-wrap nf-field:first-of-type {
	width: calc(75% - 20px);
}

.pum .pum-container .nf-form-wrap .nf-before-form-content,
.pum .pum-container .nf-form-wrap #nf-field-5-wrap .nf-field-label {
	display: none;
}

.pum .pum-container .nf-form-wrap input:not([type=submit]):not([type=radio]):not([type=file]):not([type=checkbox]) {
	border: none;
	border-bottom: 1px solid #000;
	border-radius: 0;
}

@media only screen and (max-width: 799px) {
	.pum .pum-container .nf-form-wrap nf-fields-wrap {
		flex-direction: column;
		column-gap: 20px;
	}
	.pum .pum-container .nf-form-wrap nf-fields-wrap nf-field {
		width: 100% !important;
	}
}



/* links */

a,
a:visited {
	outline: none !important;
	color: #000;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color .5s ease;
}

.blog_right_col a {
	border-color: #ccc;
}

a:hover, a:active {
	color: #000;
	border-color: #000;
}

#content.title_only a {
	color: var(--orange-text);
}

#content.title_only a:hover {
	border-color: var(--orange-text);
}

button, input[type="submit"],
.button, a.button {
	color: #000;
	background: #fff;
	font-size: .8rem;
	text-decoration: none;
	text-transform: uppercase;
	height: auto;
	line-height: 1.2em;
	display: inline-block;
	min-width: none;
	padding: 9px 20px 5px 20px;
	border-radius: 50px;
	cursor: pointer;
	text-align: center;
	border: 1px solid #000;
	transition: all .5s ease;

}

#footer .button {
	background: transparent;
	color: #fff;
	border-color: #fff;
	width: 100%;
	max-width: 200px;
}

button:hover, input[type="submit"]:hover,
.button:hover, a.button:hover {
	background: #000;
	color: #fff;
	border-color: #000;
}

#footer .button:hover {
	color: var(--teal);
	background: #fff;
}

.job_board {
	background: var(--orange);
	color: #fff !important;
	display: flex;
	align-items: center;
	aspect-ratio: 1 / 1;
	padding: 30px;
	text-align: center;
	border-radius: 100%;
	font-weight: 600;
	line-height: 1.3em;
	justify-content: center;
	transition: background-color .5s ease;
}

.job_board:hover {
	background: var(--teal);
}

@media screen and (max-width: 799px) {
	
	.job_board {
		max-width: 130px;
		margin: -80px auto 0 auto;
	}

}



.share_ctrl_wrapper {
	position: relative;
	width: 100%;
	max-width: 150px;
}

.share_ctrl .button {
	display: block;
	background: transparent url(../images/arrow-down.png) top 7px right 10px no-repeat !important;
	background-size: 16px 16px !important;
	width: 100%;
	height: 30px;
	line-height: 30px;
	text-transform: uppercase;
	font-weight: 600;
	padding: 0 20px;
	border-radius: 15px;
	transition: background-color .5s ease, color .5s ease;
}

.share_ctrl .button:hover {
	background-image: url(../images/arrow-down.png) !important;
	color: #000 !important;
}
		
.share_ctrl_wrapper.active .button:hover {
	background-image: url(../images/arrow-up.png) !important;
}
		
.share_ctrl_wrapper.active .button {
	background-image: url(../images/arrow-up.png) !important;
	background-color: transparent !important;
	border-radius: 15px 15px 0 0;
	border-bottom: 0;
}

.share_ctrl .button:hover {
	background: #000;
}

.share_links {
	display: none;
	position: absolute;
	z-index: 1;
	background: var(--gray-light);
	top: 30px;
	left: 0;
	width: 100%;
	border: 1px solid #000;
	border-top: none;
	border-radius: 0 0 15px 15px;
	padding: 5px 10px;
	font-size: .8rem;
	text-align: center;
}

.share_ctrl_wrapper.active .share_links { 
	display: block;
}

.share_links > div {
	margin: 5px 0;
}



.mejs-controls button {
	min-width: 0;
}

.edit-link {
	display: none !important;
}




/* footer */

footer#footer {
	background-color: #373737;
	padding-top: 40px;
	padding-bottom: 40px;
	bottom: 0;
	left: 0;
	z-index: 0;
	width: 100%;
}

footer#footer h3 {
	margin: 0 0 20px 0;
}

footer#footer, footer#footer a, footer#footer a:visited, footer#footer a:hover {
	color: #fff;
}

footer#footer a:hover {
	border-color: #fff;
}

footer .content_wrapper .footer_sections_wrapper {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	column-gap: 60px;
}

footer .footer_section.footer_section {
	text-align: left;
	width: auto;
	margin: 0;
	
}

footer .footer_section.footer_section1 {
	width: 40%;
}

footer .footer_section.footer_section p,
footer .footer_locations_wrapper {
	font-size: 1.2rem;
}

footer .footer_section.footer_section1 p {
	font-size: 1.4rem;
}

footer .footer_section.footer_section2,
footer .footer_section.footer_section3 {
	width: 12%;
}

footer .footer_section.footer_section4 {
	width: 20%;
}

footer .footer_section.footer_section5 {
	width: 24%;
}

footer .footer_section.footer_copyright {
	width: 100%;
	margin-top: 60px;
}

footer .footer_section.footer_copyright,
footer .footer_section.footer_copyright p {
	font-size: .8rem;
	font-weight: normal;
	font-family: var(--sans-serif-light);
}

footer .footer_copyright .textwidget {
	margin-top: 20px;
}

#modal_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 100;
	background: #fff;
	opacity: 0;
	z-index: 900;
	transition: all .5s ease;
	pointer-events: none;
}
	
#modal_bg.active {
	opacity: 0.9;
}



/* let's get responsive! */

/* Desktops */
@media screen and (min-width: 1200px) {
	
	/* hide header widget area -- if you need it above the logo & nav, adjust header_links in header.php */
	header#masthead .header_links {
		display: none;
	}
	
	header#masthead .content_wrapper {
		display: flex;
		align-items: center;
	}
	
	header#masthead .site-branding {
		width: 30%;
	}
	
	header#masthead .header_nav {
		width: 70%;
	}
	
	header#masthead > .content_wrapper {
		display: flex;
		align-items: flex-start;
	}
	
	header#masthead > .content_wrapper > div {
		width: 50%;
	}
	
	header#masthead  .header_links {
		text-align: right;
	}
	

	

	
	#hero_wrapper,
	#hero_wrapper .hero_image {
		min-height: 300px;
	}
	
	#hero_wrapper.tall,
	#hero_wrapper.tall .hero_item {
		height: 70vh;
		overflow: hidden;
	}
	
	.home_hero_text_wrapper {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
	}
	
	.home_hero_text_wrapper,
	.home_hero_text_wrapper .content_wrapper,
	.home_hero_text_wrapper .home_hero_text_inner {
		height: 100%;
		display: block;
	}
	
	.home_hero_text_wrapper .home_hero_text_inner {
		position: relative;
		display: table;
		width: 50%;
	}
	
	.home_hero_text_wrapper .home_hero_text {
		display: table-cell;
		position: relative;
		bottom: 0;
		z-index: 50;
		padding: 20px;
		vertical-align: middle;
		background: rgba(0,0,0,.6);
		color: #fff;
	}
	
		
	#content {
		position: relative;
		z-index: 2;
		margin-bottom: 260px;
	}
	
	
	.news_wrapper.content_4cols .post_item:nth-child(4n+1) {
		transition-delay: 0s !important;
	}
	.news_wrapper.content_4cols .post_item:nth-child(4n+2) {
		transition-delay: .25s !important;
	}
	.news_wrapper.content_4cols .post_item:nth-child(4n+3) {
		transition-delay: .5s !important;
	}
	.news_wrapper.content_4cols .post_item:nth-child(4n+4) {
		transition-delay: .75s !important;
	}
	
	
	
	.spotlight_hover .spotlight_initial_investment,
	.spotlight_hover .nasdaq_info,
	.spotlight_hover .spotlight_desc {
		font-size: 1rem;
	}



	
	footer#footer {
		position: fixed;
		width: 100% !important;
		height: 260px;
		z-index: 1;
	}
	
	footer .footer_section.footer_copyright {
		position: absolute;
		bottom: 30px;
	}
	
	footer .footer_copyright .textwidget {
		max-width: 50vw;
	}




}

.team_wrapper {
	display: flex;
	flex-wrap: wrap;
	column-gap: 40px;
	row-gap: 40px;
}

.team_wrapper .team_item {
	width: calc(50% - 10px);
}


/* medium+ styles */
@media screen and (min-width: 800px) {
	
	
	.desktop_nav {
		display: flex;
		flex-wrap: nowrap;
		align-items: flex-end;
		float: right;
		height: 30px;
	}
	
	header#masthead .content_wrapper {
		display: flex;
		flex-wrap: nowrap;
		align-items: flex-start;
		Xwidth: 100%;
	}
	
	header#masthead .content_wrapper .site-branding {
		width: 40%;
		margin-top: 0;
	}
	
	header#masthead .content_wrapper .header_nav {
		width: 60%;
		text-align: right;
		position: relative;
	}


	.news_wrapper.content_4cols .post_item,
	.team_wrapper .team_item {
		width: calc(25% - 30px);
	}

	.news_wrapper.content_4cols .post_item {
		width: calc(25% - 23px);
	}
	
	.team_wrapper .team_item:nth-child(4n+2) {
		transition-delay: .25s;
	}
	
	.team_wrapper .team_item:nth-child(4n+3) {
		transition-delay: .5s;
	}
	
	.team_wrapper .team_item:nth-child(4n+4) {
		transition-delay: .75s;
	}

}


/* mobile styles */
@media only screen and (max-width: 1199px) {
	
	#title_wrapper.title_only {
		padding-bottom: 40px;
	}
	
	#title_wrapper h1.page_title {
		padding: 15px 18px !important;
	}

	header#masthead .content_wrapper .header_nav {
		margin-right: 80px
	}

	body.admin-bar #site-navigation #mobile_menu_icon {
		Xtop: 80px;
	}
	
	
	.hero_item {
		background-image: none !important;
		background-color: #efefef;
		padding-bottom: 20px;
	}
	
	.quotes_wrapper {
		padding-left: 5%;
		padding-right: 5%;
	}
	
	.quotes_wrapper .owl-nav {
		width: 98%;
		left: 1%;
	}
	
	
	.subnav_links {
		padding-left: 20px;
	}

	footer .content_wrapper .footer_sections_wrapper {
		flex-wrap: wrap;
		column-gap: 3%;
		row-gap: 30px;
	}
	
	.disclaimer_copy {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	footer .footer_section.footer_section1 {
		width: 100%;
	}
	
	footer .footer_section.footer_section1 {
		width: 100%;
	}
	
	footer .footer_section.footer_section2,
	footer .footer_section.footer_section3,
	footer .footer_section.footer_section4 {
		width: 30%;
	}
	
	footer .footer_section.footer_section5 {
		width: 100%;
	}
	
}


@media only screen and (max-width: 1099px) {

	body.search-results #content form#searchform {
		margin: 50px 20px 0 0;
	}
	
	body.search-results .search_results_wrapper {
		padding-left: 20px;
		padding-right: 20px;
	}

}


@media only screen and (min-width: 800px) and (max-width: 999px) {

	.spotlight_hover .spotlight_initial_investment,
	.spotlight_hover .nasdaq_info,
	.spotlight_hover .spotlight_desc {
		font-size: .5rem;
	}

	.spotlight_companies.spotlight_images .spotlight_item .spotlight_logo img {
		max-width: 160px;
	}
	
}


@media only screen and (max-width: 899px) {

	.subnav_links nav .menu {
		display: flex;
		flex-wrap: wrap;
	}

	.subnav_links nav .menu li {
		margin-right: 20px;
		white-space: nowrap;
	}
	
	.subnav_links nav .menu li:after {
		content: "/";
		color: var(--gray);
		margin-left: 20px;
	}
	
	.subnav_links nav .menu li:last-of-type:after {
		display: none;
	}
	
	.title_text-title .subnav_links {
		padding-right: 0;
	}

	
}

@media only screen and (max-width: 799px) {
	
	#site-navigation #mobile_menu_icon {
		right: 0;
		top: 25px;
	}
	
	#site-navigation.active .menu-main-nav-container {
		left: 0;
		width: 100vw;
	}

	.header_nav .nav-search { 
		position: fixed;
		top: 24px !important;
		right: 70px !important;
	}
	
	.header_nav .desktop_nav_menu {
		display: none;
	}


	#content {
		padding-top: 120px;
	}
	
	.pullquote {
		font-size: 1.5rem !important;
		text-indent: -11px;
	}
	
	.pullquote_source {
		font-size: 1rem !important;
		font-family: var(--sans-serif-bold);
		font-weight: normal;
	}
	
	h2 {
		font-size: 2rem;
	}
	
}


@media only screen and (max-width: 599px) {
	
	#page_subnav h1.page_title {
		font-size: 6vw;
	}
	
	.large,
	.title_text-text {
		font-size: 1.5rem !important;
	}
	
	body.page_subnav-fixed #page_subnav h1 {
		height: 40px;
	}
	
	#page_subnav .page_subnav_links {
		display: flex;
		flex-wrap: nowrap;
		column-gap: 20px;
	}
	
	#page_subnav.section-technology .page_subnav_links {
		column-gap: 5px;
		justify-content: space-between;
	}
	
	#page_subnav .page_subnav_links a {
		margin: 0;
		font-size: .7rem
	}
	
	.spotlight_companies.spotlight_images .spotlight_hover {
		display: none !important;
	}
	
	body.page-template-template-impact #page_subnav, 
	body.page-template-template-portfolio #page_subnav {
		height: 100px;
	}
	
	footer .footer_section.footer_section2,
	footer .footer_section.footer_section3,
	footer .footer_section.footer_section4 {
		width: 100%;
	}
	
	body.search-results #content form#searchform {
		flex-direction: column;
		row-gap: 20px;
	}

}


@media only screen and (max-width: 599px) {

	.subnav_links nav .menu {
		flex-direction: column;
	}
	
	.subnav_links nav .menu li:after {
		display: none;
	}
	
	.news_wrapper .post_item.animate,
	#spotlights .spotlight_item.animate,
	.team_wrapper .team_item.animate,
	.portfolio_wrapper .portfolio_item.animate,
	#portfolio .portfolio_item.animate {
		transition-delay: 0s !important;
		transition-duration: .25s !important;
	}

}
.back{
    display: inline-block;
    padding: 10px 30px;
    color: #fff;
    background-color: #19b65d;
    border-radius: 10px;
}
.back:hover{
    color: #fff;
    background-color: #3ebb74;
}
.text-right{
    text-align: right;
}
.title_text_wrapper .title_text-text{
    margin-left: 0;
    height: auto;
    width: 100%;
}
.menu-portfolio-container ul.menu{
    margin-bottom: 0;
}
.menu-portfolio-container ul.menu li{
    display: inline-block;
    padding-left: 1rem;
    padding-right: 1rem;
}
.menu-portfolio-container ul.menu li a{
    color: #999;
    padding: .5rem 0;
}
.current_page_item a{
  color: #000;
	border-bottom: 1px solid #000;
}