/* The People's Champion | Mobile Essentials Stylesheet */
* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:root {
	--main-color: #890C0C;
	--dark-color: #000;
	--dark-color-trans: rgba(0,0,0,0.5);
	--main-font: "proxima-nova", sans-serif;
	--title-font: "Fjalla One", sans-serif;
	--text-color: #231F20;
}
/* latin-ext */
@font-face {
  font-family: 'Fjalla One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/fjallaone/v15/Yq6R-LCAWCX3-6Ky7FAFrO96kigt.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Fjalla One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/fjallaone/v15/Yq6R-LCAWCX3-6Ky7FAFrOF6kg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.group:after {
	display: block;
	width: 100%;
	clear: both;
}
.wrapper {
	overflow-x: hidden;
	max-width: 2100px;
	margin: auto;
}
body, html {
	padding: 0;
	margin: 0;
	scroll-behavior: smooth;
	color: var(--text-color);
}
body, textarea, input {
	font-family: var(--main-font);
	font-size: 18px;
}
.flex {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}
.flex.flex-justify {
	justify-content: space-between;
}
.flex.flex-end {
	justify-content: flex-end;
}
.flex-bottom {
	align-self: flex-end;
}
.flex.flex-start {
	justify-content: flex-start;
}
.flex.flex-center {
	justify-content: center;
}
.flex-top {
	align-items: flex-start;
}
.flex-middle {
	align-items: center;
}
.flex-bottom {
	align-items: flex-end;
}
.content-block {
	padding: 36px 0;
}
.content {
	padding: 16px;
}
.content p, .content ul {
	font-weight: 300;
	line-height: 1.3;
}
.thicc-content {
	padding: 64px;
}
.page {
	position: relative;
	z-index: 3;
}
.container {
	position: relative;
	margin: auto;
	width: 100%;
	max-width: 960px;
}
ul {
	list-style: square;
}
.marginless {
	margin: 0;
}
.top-border {
	border-top: solid 4px var(--main-color);
}
.no-border {
	border: solid 0px rgba(0, 0, 0, 0) !important;
}
.no-bg {
	background-color: rgba(0, 0, 0, 0) !important;
}
.five-eighty, .container.five-eighty {
	max-width: 580px;
}
.twelve-hundo, .container.twelve-hundo {
	max-width: 1200px;
}
.section-block {
	margin: 32px auto;
}
.flex-fourth, .flex-third, .flex-half, .flex-two-thirds, .flex-three-fourths, .flex-sixth, .flex-two-sixths, .flex-fifth {
	width: 100%;
}
.black {
	color: #000 !important;
}
.black-bg, .dark-bg {
	background-color: var(--dark-color);
}
.black-bg-trans {
	background-color: var(--dark-color-trans);
}
.default-color {
	color: var(--text-color) !important;
}
.main-bg-trans {
	background-color: var(--main-color-trans);
}
.main-bg-trans-dark {
	background-color: var(--main-color-trans-dark);
}
.main-color {
	color: var(--main-color);
}
.main-bg {
	background-color: var(--main-color);
}
.accent-bg {
	background-color: var(--accent-color);
}
.secondary-bg {
	color: #FFF;
	background-color: var(--secondary-color);
}
.interact-color {
	color: var(--interact-color);
}
.interact-bg {
	background-color: var(--interact-color);
}
.dark-color {
	color: var(--dark-color);
}
.dark-bg {
	background-color: var(--dark-color);
}
.stack-bg {
	position: relative;
	border-top: solid 24px #FFF;
	background-color: var(--accent-color);
}
.side-fade {
	position: relative;
}
.stack-bg:after, .side-fade:before, .side-fade:after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	bottom: 0;
	z-index: 1;
}
.stack-bg:after {
	width: 100%;
	height: 200px;
	background-color: #FFF;
}
.side-fade:before, .side-fade:after {
	top: 0;
	width: 25%;
	height: 100%;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}
.side-fade:after {
	left: auto;
	right: 0;
	background: linear-gradient(to left, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}
.stack-bg-content, .side-fade-content {
	position: relative;
	z-index: 2;
}
.secondary-color {
	color: var(--secondary-color);
}
.white-bg {
	background-color: #FFF;
}
.white-bg-trans {
	background-color: rgba(255, 255, 255, 0.7);
}
/*Typography*/
.medium {
	font-size: 28px;
}
h1, h2, h3, h4 {
	font-family: var(--title-font);
	font-size: 24px;
}
h1, .large {
	font-size: 32px;
}
h1 span, h2 span, h3 span {
	display: block;
	font-size: 24px;
	line-height: 32px;
}
h3 strong {
	color: var(--main-color);
	font-weight: 700;
}
.uppercase {
	text-transform: uppercase;
}
.normalcase {
	text-transform: none;
}
.thin {
	font-weight: 300 !important;
}
.normal {
	font-weight: 400 !important;
}
.mid {
	font-weight: 500 !important;
}
.bold, strong {
	font-weight: 700 !important;
}
.spaced {
	letter-spacing: 2px;
}
p.big, .big p {
	font-size: 28px;
}
h2.big, h3.big {
	font-size: 36px;
}
.align-left {
	text-align: left !important;
}
.align-center {
	text-align: center !important;
}
.align-right {
	text-align: right !important;
}
blockquote {
	font-size: 24;
	font-weight: 600;
	letter-spacing: 2px;
}
blockquote:after {
	display: block;
	content: "";
	margin: 12px auto;
	width: 150px;
	height: 4px;
	background-color: #000;
	border-radius: 4px;
}
.page-image, .pi-content {
	position: relative;
}
.pi-content {
	padding: 128px 0;
	z-index: 3;
}
.page-image img, .hero-image img, .flex-overlap-image img, .team-thumb img {
	width: 100%;
	vertical-align: middle;
}
.page-image img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	object-position: center;
	z-index: 1;
}
.overlay:after, .bottom-overlay:after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	background-color: var(--dark-color-trans);
	z-index: 2;
}
.bottom-overlay:after {
	height: 120px;
}
.overlay:after {
	top: 0;
	height: 100%;
}
.bottom-overlay .button-container {
	margin-bottom: -36px;
}
.page-title {
	position: relative;
	color: #000;
	font-size: 56px;
	font-weight: 400;
	margin: 12px auto;
}
.page-title span {
	display: block;
	font-family: var(--main-font);
	font-size: 28px;
}
.intro-title br {
	display: none;
}
.page-title.small-title {
	font-size: 36px;
	font-weight: 400;
}
.white, .white.page-title {
	color: #FFF;
}
.page-title small {
	display: block;
}
.table {
	display: table;
	margin: auto;
}
h2.table, h3.table {
	margin: 12px auto;
}
/*Interactives*/
.logo {
	display: block;
	margin: auto;
	width: 100%;
	max-width: 134px;
}
.logo img, .page-img img, .flex-img img, .widget-img, .resource-badges img {
	width: 100%;
	height: auto;
}
.yoink {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.top-bar {
	padding: 8px 0;
}
.mainnav {
	width: 100%;
	justify-content: flex-start;
}
.mainnav, .mainnav ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.mainnav li {
	width: 100%;
}
.mainnav a, .mainnav a:visited {
	display: block;
	padding: 8px 24px;
	font-family: var(--title-font);
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	color: #FFF;
}
.flex-menu a, .flex-menu a:visited {
	display: flex;
	padding: 24px 8px;
	font-weight: 500;
	letter-spacing: 1px;
	color: #000;
	text-align: center;
	text-decoration: none;
	justify-content: center;
	align-items: center;
}
.flex-menu a span {
	display: block;
}
.flex-menu a:hover, .flex-menu a.active {
	background-color: #E5E5E5;
	-webkit-box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
	box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}
.toplink a:hover {
	background-color: var(--main-color);
	color: #FFF;
}
.dropdown {
	position: relative;
}
.mainnav .dropdown li {
	width: 100%;
}
.dropdown ul, .hide-field[data-content=""], .hide-field[data-content="0"], .hide-field[data-content="$"] {
	display: none;
}
.dropdown.active ul {
	display: block;
	text-align: center;
	width: 100%;
	background-color: var(--main-color);
	z-index: 1000;
}
.dropdown.active ul a, .dropdown.active ul a:visited {
	color: #FFF;
	padding: 8px 12px;
}
.button, .button:visited {
	display: table;
	margin: auto;
	padding: 12px 24px;
	font-family: var(--title-font);
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	color: #000;
	cursor: pointer;
}
.button.big-button, .button.big-button:visited {
	font-size: 32px;
	letter-spacing: 3px;
}
.button.free-button, .button.free-button:visited {
	margin: 0;
}
.header .button, .header .button:visited, .button.default, .button.default:visited {
	margin: 0;
}
.button.white, .button.white:visited {
	color: #FFF !important;
}
.button-container {
	position: relative;
	display: table;
	margin: auto;
	padding: 8px;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
.call-button, .call-button:visited {
	display: block;
	position: relative;
	font-weight: 700;
	text-decoration: none;
	padding: 8px;
	margin-right: 24px;
	color: var(--dark-color);
	text-transform: uppercase;
}
.overlay-button {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	text-indent: -9999px;
	overflow: hidden;
}
.flex-start .button {
	margin: 12px;
}
.flex-start .button:first-of-type {
	margin-left: 0;
}
.divider {
	position: relative;
	display: block;
	height: 100px;
	border-right: solid 2px var(--interact-color);
	text-indent: -9999px;
	overflow: hidden;
}
.icon:before, .widget:before {
	position: relative;
	display: block;
	content: "";
	width: 160px;
	height: 160px;
	margin: auto;
	background-image: url("../elements/images/icon-spritesheet.png");
	background-repeat: no-repeat;
	background-position: top;
	z-index: 3;
}
.widget-02:before {
	background-position: 0 -160px;
}
.widget-03:before {
	background-position: 0 -320px;
}
.widget h3 {
	font-size: 28px;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0 auto;
}
.service-thumb {
	margin-bottom: 24px;
}
.st-intro {
	position: relative;
	padding: 12px 12px 36px;
	border: solid 2px var(--main-color);
	border-top: none;
}
.st-title {
	padding: 0 8px;
	min-height: 84px;
}
.st-title h3 {
	font-weight: 600;
	text-align: center;
	letter-spacing: 2px;
	margin: 0;
}
.line-box, .line-box.pi-content {
	padding: 64px 32px 32px;
	border: solid 4px var(--main-color);
	border-top: none;
}
.line-box-container {
	padding: 128px 0 64px;
}
.line-box-title {
	position: absolute;
	display: block;
	width: 66%;
	height: 144px;
    top: -72px;
	left: 0;
	right: 0;
	margin: auto;
}
.line-box:before, .line-box:after {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	width: 20%;
	border-top: solid 4px var(--main-color);
}
.line-box:before {
	left: 0
}
.line-box:after {
	right: 0
}
.headshot img {
	border: solid 4px var(--main-color);
}
.line-box-button, .line-box-button:visited, .button.line-box-button, .button.line-box-button:visited {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -17px;
	padding: 4px 24px;
	margin: auto;
}
.widget p {
	font-size: 20px;
	text-align: center;
}
.flex-overlap-image img {
	position: absolute;
	width: 50%;
	height: 100%;
	top: 0;
	bottom: 0;
	object-fit: cover;
	object-position: center;
}
.overlap-img {
	position: absolute;
	width: 29%;
	height: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 1;
}
.overlap-img img, .foi-overlay:after {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	object-position: right center;
	z-index: 1;
}
.foi-content {
	position: relative;
	z-index: 3;
}
.foi-overlay:after {
	content: "";
	background-color: var(--main-color-trans);
	z-index: 2;
}
.hidenav-toggle {
	position: relative;
	display: block;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	font-weight: 700;
	color: #FFF;
	font-size: 24px;
	padding: 12px;
	cursor: pointer;
}
#main-nav, .ie {
	display: none;
}
.flex-item {
	width: 100%;
	text-align: center;
	margin-bottom: 12px;
}
.flex-item a {
	color: #000;
	letter-spacing: 1px;
	text-decoration: none;
}
.flex-item a:hover {
	text-decoration: underline;
}
#hidenav:checked ~ #main-nav {
	display: flex;
	width: 100%;
}
.burger {
	position: relative;
	width: 30px;
	height: 10px;
	margin-right: 12px;
	overflow: visible;
	display: inline-block;
}
.burger span, .burger span:before, .burger span:after {
	cursor: pointer;
	border-radius: 1px;
	height: 3px;
	width: 30px;
	background: #FFF;
	position: absolute;
	display: block;
	content: '';
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
.burger span:before {
	top: -10px;
}
.burger span:after {
	bottom: -10px;
}
#hidenav:checked ~ label .burger span {
	background-color: transparent;
}
#hidenav:checked ~ label .burger span:before, #hidenav:checked ~ label .burger span:after {
	top: 0;
}
#hidenav:checked ~ label .burger span:before {
	transform: rotate(45deg);
}
#hidenav:checked ~ label .burger span:after {
	transform: rotate(-45deg);
}
.flex-chunk {
	display: flex;
	color: #FFF;
	margin: 12px;
}
.flex-chunk div {
	width: 100%;
	padding: 12px;
	align-self: center;
}
.flex-chunk.flex-two-thirds {
	background-color: var(--main-color);
	font-size: 88px;
	text-align: center;
}
.flex-chunk.flex-third {
	background-color: var(--secondary-color);
}
.intro-overlay p {
	font-size: 20px;
}
.gradient-bg {
	background: var(--main-color);
}
.gradient-bg-left {
	background: var(--main-color);
}
.testimonial-thumb {
	position: relative;
	margin: 0 auto;
	min-height: 340px;
}
.testimonial-thumb p {
	font-size: 16px;
	line-height: 20px;
}
.shadow {
	-webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.50);
	-moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.50);
	box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.50);
}
.tt-name {
	margin: 8px auto;
	font-size: 24px;
	color: var(--text-color);
	text-transform: none;
}
.tt-name span {
	display: block;
	font-size: 16px;
	margin-top: -8px;
}
.tt-headshot {
	position: relative;
	display: block;
	width: 100px;
	height: 100px;
	margin: auto;
	border-radius: 50%;
	overflow: hidden;
	background-image: url("../elements/images/testimonial-bg.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.tt-headshot img, .et-image img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	object-position: center;
}
.et-image {
	background-color: #FFF;
}
.et-image[data-size="Contain"] img {
	object-fit: contain;
}
.et-image[data-size="Medium"] img {
	width: 65%;
	height: auto;
	margin: auto;
}
.et-image[data-size="Small"] img {
	width: 50%;
	height: auto;
	margin: auto;
}
.testimonial-block .testimonial {
	border-bottom: solid 4px var(--main-color);
	margin-bottom: 64px;
}
.testimonial span {
	display: block;
	font-style: italic;
	text-align: center;
	padding: 24px;
}
.testimonial::before, .testimonial::after {
	position: absolute;
	display: block;
	content: '"';
	width: 60px;
	height: 60px;
	color: var(--main-color);
	font-size: 200px;
	top: 20%;
	left: 0;
	font-family: "ainslie-sans-extended";
	font-style: italic;
	font-weight: 600;
	text-indent: -28px;
	line-height: 162px;
}
.testimonial:after {
	left: auto;
	right: 0;
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.event-thumb {
	position: relative;
	overflow: hidden;
	padding-top: 85px;
	min-height: 320px;
}
.et-image {
	position: relative;
	display: block;
	min-height: 320px;
}
.et-image img {
	width: 100%;
	height: 100%;
}
.et-date {
	position: absolute;
	display: block;
	width: 170px;
	height: 170px;
	top: 0;
	right: 0;
	overflow: hidden;
}
.et-date > span {
	position: absolute;
	display: block;
	text-align: center;
	top: 0;
	right: 0;
	padding: 0;
	width: 50px;
	color: var(--dark-color);
	text-transform: uppercase;
	font-size: 18px;
	line-height: 20px;
	z-index: 2;
}
.et-date span span {
	display: block;
	font-size: 36px;
	line-height: 32px;
}
.et-date:after {
	position: absolute;
	display: block;
	content: "";
	background-color: var(--interact-color);
	width: 170px;
	height: 170px;
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: -85px;
	right: -85px;
	z-index: 1;
}
.et-link, .et-link:visited {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-indent: -9999px;
	overflow: hidden;
	z-index: 2;
}
.et-details h3 {
	color: var(--text-color);
	font-size: 28px;
	font-weight: 400;
	line-height: 32px;
	text-transform: none;
}
.card {
	position: relative;
	width: 280px;
	height: 280px;
}
.card.flip-card {
	perspective: 1000px;
}
.card > div {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden; /* hide the "back" when flipped */
	top: 0;
	left: 0;
	transition: transform 0.8s ease;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	text-align: left;
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
}
.card-content {
	width: 100%;
	padding: 28px;
}
.card span {
	display: block;
	min-height: 20px;
	font-size: 14px;
	text-transform: none;
}
.card-front {
	background-color: var(--accent-color);
	transform: rotateY(0deg);
}
.card-front:after, .card-back:after {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	margin: auto;
	right: -28px;
	width: 0;
	height: 0;
	border-top: 30px solid transparent;
	border-bottom: 30px solid transparent;
	border-left: 30px solid var(--accent-color);
}
.card-back:after {
	border-left: 30px solid var(--interact-color);
}
.card:last-of-type .card-front:after, .card:last-of-type .card-back:after {
	display: none;
}
.card-back {
	background-color: var(--interact-color);
	transform: rotateY(180deg);
}
.card.flip-card:hover .card-front, .card.flip-card:focus .card-front {
	transform: rotateY(-180deg);
}
.card.flip-card:hover .card-back, .card.flip-card:focus .card-back {
	transform: rotateY(0deg);
}
.box-button, .box-button:visited {
	display: inline-block;
	font-weight: 600;
	padding: 4px 24px;
	color: #FFF;
	background-color: var(--main-color);
	text-decoration: none;
}
.box-button:hover {
	background-color: var(--main-color-trans-dark);
}
.article-meta {
	margin-top: 24px;
	text-align: right;
	color: #AAAAAA;
}
.article-author {
	font-weight: 600;
}
.article-author img {
	max-width: 200px;
}
.article-title {
	font-size: 32px;
	letter-spacing: 1px;
}
.article-title a, .article-title a:visited {
	color: var(--main-color) !important;
}
.article-image {
	text-align: center;
}
.list-article .article-image {
	max-width: 24%;
	float: left;
	margin: 0 16px 0 0;
}
.article-image img, .brand img, .article-body img {
	max-width: 100%;
}
.video-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	vertical-align: middle;
}
.video-container iframe, .video-container object, .video-container embed, .video-container img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.article-body {}
.hide-field[data-content="NO"], .hide-field[data-content=""] {
	display: none !important;
}
.video-field {
	max-width: 640px;
	margin: 24px auto;
}
.article-meta {
	margin-top: 24px;
	text-align: right;
	color: #AAAAAA;
}
.article-author {
	font-weight: 600;
}
.article-author img {
	max-width: 200px;
}
.pager {
	position: fixed;
	display: flex;
	bottom: 0;
	left: 0;
	z-index: 10;
	padding: 8px;
	background-color: #FFF;
	border-top-right-radius: 8px;
	align-items: center;
}
.pager h3 {
	margin: 0;
	font-size: 16px;
	padding-right: 8px;
}
.pager ul {
	display: flex;
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.pager a, .pager a:visited {
	display: block;
	padding: 8px;
	text-align: center;
	min-width: 28px;
	color: #000;
}
.pager a:hover {
	color: var(--main-color);
}
.page[data-current=""] .pager a[data-for="1"], .page[data-current="1"] .pager a[data-for="1"], .page[data-current="2"] .pager a[data-for="2"], .page[data-current="3"] .pager a[data-for="3"], .page[data-current="4"] .pager a[data-for="4"], .page[data-current="5"] .pager a[data-for="5"], .page[data-current="6"] .pager a[data-for="6"], .page[data-current="7"] .pager a[data-for="7"], .page[data-current="8"] .pager a[data-for="8"], .page[data-current="9"] .pager a[data-for="9"], .page[data-current="10"] .pager a[data-for="10"] {
	text-decoration: underline !important;
	color: #666 !important;
	pointer-events: none !important;
}
.team-members {
	margin: 64px auto 24px;
}
.team-member {
	position: relative;
	max-width: 300px;
	margin-bottom: 24px;
}
.team-member:after {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 300px;
	border: solid 2px var(--main-color);
	z-index: 1;
}
.team-img img {
	position: relative;
	display: block;
	margin: -32px auto 16px;
	width: 80%;
	border: solid 1px #000;
	z-index: 2;
}
.team-title {
	position: relative;
	width: 80%;
	margin: auto;
	padding: 8px 12px;
	color: #FFF;
	font-family: var(--title-font);
	font-size: 28px;
	text-align: center;
	text-transform: uppercase;
	z-index: 2;
}
.team-title span {
	display: block;
	font-family: var(--main-font);
	font-weight: 600;
	font-size: 14px;
}
.contact-block {
	position: relative;
	overflow: hidden;
}
.overflow-left {
	position: relative;
}
.overflow-left:before, .top-divider:after {
	position: absolute;
	display: block;
	content: "";
	top: 0;
}
.overflow-left:before {
	width: 2000px;
	height: 100%;
	left: -1999px;
	bottom: 0;
}
.black-bg.overflow-left:before {
	background-color: #000;
}
.swap i {
	font-style: normal !important;
}
.swap[data-content=""] .alt-text, .swap .main-text {
	display: none;
}
.swap[data-content=""] .main-text {
	display: inline;
}
.team-thumb h4 {
	font-size: 20px;
	font-weight: 700;
	margin: 0;
}
.team-thumb h4 span {
	display: block;
	font-weight: 400;
	min-height: 52px;
}
.team-link, .team-link:visited {
	display: block;
	color: var(--main-color);
	font-weight: 700;
	text-align: left;
	text-decoration: none;
	text-transform: uppercase;
}
.bordered-box {
	border: solid 3px #FFF;
	padding-bottom: 32px;
}
.contact-form input, .contact-form textarea {
	display: block;
	width: 100%;
	padding: 8px;
	font-size: 20px;
	border: solid 2px #6D6D6D;
}
.contact-form textarea {
	min-height: 200px;
}
.contact-form .flex {
	margin-bottom: 12px;
}
.contact-form .flex-half {
	width: 49%;
	margin-right: 2%;
}
.contact-form .flex-half {
	margin-right: 0;
}
textarea, input {
	width: 100%;
	padding: 8px;
	border: none;
}
.isRequired, .isRequired:active, .isRequired:focus {
	border: solid 3px rgba(255, 255, 255, 0);
	background-color: #FFF;
}
#results {
	text-align: center;
	width: 100%;
	height: 80px;
	font-weight: bold;
	overflow: auto;
}
.hide-overflow {
	overflow: hidden;
}
.two-column {
	-moz-column-count: 2;
	-webkit-column-count: 2;
	column-count: 2;
}
.footer-logos, .unlist {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.social-icons {
	justify-content: center;
}
.footer .social-icons {
	margin-left: 16px;
}
.socail-icons a, .socail-icons a:visited, .toplink a, .toplink a:visited {
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
.social-icons a, .social-icons a:visited {
	display: block;
	width: 30px;
	height: 30px;
	background-size: 30px;
	margin: 8px;
	border-radius: 4px;
	overflow: hidden;
	text-indent: -9999px;
	background-image: url("../elements/images/social-icons.png");
}
.facebook {
	background-position: 0 0;
}
.facebook:hover {
	background-color: #1778F2;
}
.twitter {
	background-position: 0 -30px;
}
.twitter:hover {
	background-color: #000;
}
.linkedin {
	background-position: 0 -60px;
}
.linkedin:hover {
	background-color: #0170ad;
}
.youtube {
	background-position: 0 -90px;
}
.youtube:hover {
	background-color: #f61c0d;
}
.social-icons a:hover {
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
	-webkit-transform: scale(108%);
	-moz-transform: scale(108%);
	transform: scale(108%);
}
.social-icons a:active {
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
	box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
	-webkit-transform: scale(96%);
	-moz-transform: scale(96%);
	transform: scale(96%);
}
.bg-box {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.bg-top {
	background-position: top center;
}
.bg-img-box {
	position: relative;
	margin-top: 12px;
}
.bg-img-box img {
	vertical-align: middle;
}
.bg-box-overlay {
	background: var(--main-color);
}
.shader-overlay {
	position: relative;
}
.shader-overlay:after {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.33);
	z-index: 1;
}
.shader-overlay .container {
	z-index: 2;
}
.testimonials-container {
	padding: 0 44px;
}
.testimonials-slider {
	margin: 0;
}
.tt-container {
	padding: 12px;
}
.full-width, .full-width-img img {
	width: 100%;
	max-width: 100%;
}
.flex-center .button {
	margin: 12px;
}
.footer .container {
	padding: 24px 8px;
	border-top: solid 4px var(--secondary-color);
}
.nav-tab {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.nav-tab li {
	display: block;
}
.nav-tab li a, .nav-tab li a:visited {
	display: block;
	padding: 24px;
	color: #000;
}
.page[data-page="Events"] a[data-for="events"], .page[data-page="Articles"] a[data-for="articles"], .page[data-page="News"] a[data-for="news"], .page[data-page="Newsletters"] a[data-for="newsletters"], .page[data-page="Financial Study"] a[data-for="financial-study"], .page[data-page="Housing Trends"] a[data-for="trends"] {
	background-color: var(--neutral-color);
	color: #000;
}
.def-alt[data-alt=""] .alt-text, .default-text {
	display: none;
}
.def-alt[data-alt=""] .default-text {
	display: inline;
}
.tt-container[data-type="Technical Training"] .et-date {
	display: none;
}
.toggle-tab {
	width: 25%;
	color: #FFF;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	background-color: transparent;
	padding: 24px;
	border-radius: 0;
	border: none;
	cursor: pointer;
}
.default-color .toggle-tab {
	color: var(--text-color);
}
.toggle-tab.active, .toggle-tab:hover {
	color: var(--interact-color);
}
@media (max-width: 768px) {
	.flex-overlap-image {
		position: relative;
	}
	.flex-overlap-image img {
		width: 100%;
	}
}