/* Homepage
========================================================================== */

.wild-homepage {
	line-height: 1.5;
}

.home-section-title {
	font-size: 40px;
}

@media only screen and (min-width: 768px) {
	.home-section-title {
		font-size: 46px;
	}
}

/* Homepage: Intro
========================================================================== */

.home-intro {
	min-height: calc(100vh - 48px);
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.home-slider {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.admin-bar .home-intro {
	min-height: calc(100vh - 94px);
}

@media only screen and (min-width: 768px) {
	.home-intro {
		min-height: calc(100vh - 92px);
	}
	.admin-bar .home-intro {
		min-height: calc(100vh - 138px);
	}
}

@media only screen and (min-width: 782px) {
	.admin-bar .home-intro {
		min-height: calc(100vh - 124px);
	}
}

/* Homepage: Slider
========================================================================== */

.home-slider {
	display: none;
}

.home-slider.slick-initialized,
.home-slider .slick-track,
.home-slider .home-slide {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
}

.home-slider .slick-track {
	height: 100% !important;
}

.home-slider .home-slide {
	padding: 60px 1rem 100px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.home-slide-content {
	margin: auto auto 0;
	text-align: center;
}

.home-slide-title {
	font-size: 32px;
	color: #fff;
	padding: 0;
	margin: 0 0 5px;
}

.home-slide-subtitle {
	font-size: 18px;
	line-height: 1.3;
	padding: 0;
}

.home-slide-title,
.home-slide-subtitle,
.home-slide-more a {
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

.home-slide-more {
	margin-top: 1rem;
}

.home-slide-more a {
	display: inline-block;
	padding: 5px 10px;
	border: 2px solid #fff;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	text-transform: uppercase;
	transition: all 0.1s ease-in-out;
}

.home-slide-more a:hover {
	background-color: rgba(230, 230, 230, 0.4);
}

.mission-statement {
	padding: 1rem;
	color: #fff;
	background: #949c2a;
	font-size: 18px;
	margin-top: auto;
	text-align: center;
}

@media only screen and (min-width: 1024px) {
	.home-slide-content {
		padding-bottom: 1.5rem;
	}
	.home-slide-title {
		font-size: 46px;
	}
	.home-slide-subtitle {
		font-size: 24px;
	}
	.mission-statement {
		font-size: 24px;
	}
}

/* Slick Slider
========================================================================== */

.slick-dots {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2rem;
	z-index: 10;
}

.slick-dots li {
	display: block;
	margin: 0 5px;
}

.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 12px;
	height: 12px;
	padding: 0;
	margin: 0;
	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
	cursor: pointer;
}

.slick-dots li button::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	transition: background 0.1s ease-in-out;
	border-radius: 50%;
}

.slick-dots .slick-active button::before {
	background: #0f294e;
}

@media only screen and (min-width: 1024px) {
	.home-slider .home-slide {
		padding-bottom: 30px;
	}
	.slick-dots {
		right: 2rem;
		left: auto;
	}
}

/* Homepage: Actions
========================================================================== */

.home-action {
	padding: 1rem 0 0;
	background: #0f294e;
	color: #fff;
}

.home-action-top {
	text-align: center;
	padding: 0 1rem;
	margin-bottom: 10px;
}

.home-action-header {
	margin: 0 0 5px;
	padding: 0;
	color: #fff;
}

.home-action-top a {
	color: #fff;
}

.home-action-tagline a:hover {
	text-decoration: underline;
}

.home-action-header a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.home-action-header a::after {
	content: '\e03c';
	display: inline-block;
	font-family: 'ETmodules';
	font-size: 42px;
	margin-left: 20px;
	-webkit-transition: color 0.2s ease;
	transition: color 0.2s ease;
}

.home-action-header a:hover::after {
	color: #efa81a;
}

.home-action-tagline {
	font-size: 18px;
}

@media only screen and (min-width: 1024px) {
	.home-action {
		padding: 2rem 0 0;
	}
	.home-action-top {
		margin-bottom: 1.5rem;
	}
	.home-action-tagline {
		font-size: 24px;
	}
}

@media only screen and (min-width: 480px) {
	.home-action-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.home-action-col {
		width: 50%;
	}
}

@media only screen and (min-width: 768px) {
	.home-action-col {
		width: 25%;
	}
}

.home-action-col {
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.home-action-col::before {
	content: '';
	display: block;
	height: 0;
	padding-bottom: 100%;
}

.home-action-col::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.5;
	background: #111;
	z-index: 1;
}

.home-action-info {
	position: absolute;
	left: 0;
	bottom: 2rem;
	padding: 0 1.5rem 2.5rem;
	z-index: 10;
	-webkit-transform: translateY(2rem);
	transform: translateY(2rem);
	-webkit-transition: 333ms ease all;
	transition: 333ms ease all;
}

.home-action-col:hover .home-action-info {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.home-action-info a {
	color: #fff;
	text-decoration: none;
}

.home-action-title a {
	font-family: 'Anton', sans-serif;
	font-size: 22px;
	-webkit-transition: color 0.2s ease;
	transition: color 0.2s ease;
}

.home-action-title a:hover {
	color: #efa81a;
}

.home-action-title {
	margin-bottom: 20px;
}

.home-action-link a {
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 3px solid rgba(255, 255, 255, 0.7);
	position: relative;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.home-action-link a::before {
	content: '+';
	display: block;
	width: 18px;
	height: 18px;
	font-size: 18px;
	line-height: 1;
	text-align: center;
	position: absolute;
	top: 3px;
	left: 3px;
}

.home-action-link a:hover {
	color: #efa81a;
	border-color: #efa81a;
}

@media only screen and (min-width: 768px) {
	.home-action-col::before {
		padding-bottom: 120%;
	}
	.home-action-info {
		padding: 0 1rem 2.5rem;
	}
}

@media only screen and (min-width: 1024px) {
	.home-action-info {
		padding: 0 1.5rem 2.5rem;
		bottom: 3rem;
		-webkit-transform: translateY(3rem);
		transform: translateY(3rem);
	}
	.home-action-link a {
		width: 40px;
		height: 40px;
	}
	.home-action-link a::before {
		top: 8px;
		left: 8px;
	}
}

@media only screen and (min-width: 1280px) {
	.home-action-title a {
		font-size: 33px;
	}
}

@media only screen and (min-width: 1440px) {
	.home-action-info {
		padding: 0 1.6rem 3rem;
		bottom: 4rem;
		-webkit-transform: translateY(4rem);
		transform: translateY(4rem);
	}
	.home-action-title a {
		font-size: 40px;
	}
}

@media only screen and (min-width: 1680px) {
	.home-action-info {
		padding: 0 3.5rem 4.5rem;
		bottom: 5rem;
		-webkit-transform: translateY(5rem);
		transform: translateY(5rem);
	}
}

/* Homepage: Tally
========================================================================== */

.home-tally {
	background: #a1c643;
	padding: 1rem;
	color: #fff;
	text-align: center;
}

.home-tally-inner {
	max-width: 1300px;
	margin: 0 auto;
}

.home-tally-header {
	margin: 0 0 1.5rem;
	padding: 0;
	color: #fff;
}

.home-tally-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.home-tally-col {
	width: 100%;
	padding: 0 1rem;
	margin-bottom: 1.5rem;
}

.home-tally-col:last-child {
	margin: 0;
}

.home-tally-total {
	font-size: 40px;
	line-height: 1;
}

.home-tally-title {
	font-size: 16px;
	line-height: 1.3;
	max-width: 240px;
	margin: 0 auto;
}

.home-tally-title::before {
	content: '';
	display: block;
	max-width: 55px;
	margin: 12px auto;
	border-top: 2px solid #fff;
}

@media only screen and (min-width: 768px) {
	.home-tally-row {
		max-width: 700px;
		margin: 0 auto;
	}
	.home-tally-col {
		width: 50%;
	}
}

@media only screen and (min-width: 1024px) {
	.home-tally {
		padding: 2rem 1rem;
	}
	.home-tally-header {
		margin-bottom: 2rem;
	}
	.home-tally-row {
		max-width: none;
		margin: 0;
	}
	.home-tally-col {
		width: 25%;
		margin: 0;
	}
}

@media only screen and (min-width: 1280px) {
	.home-tally-total {
		font-size: 60px;
	}
	.home-tally-title {
		font-size: 19px;
	}
}

/* Beside
========================================================================== */

.beside-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.beside-image::before {
	content: '';
	display: block;
	padding-top: 50%;
}

.beside-info {
	background-color: #949c2a;
	padding: 20px 3% 48px;
	color: #fff;
	background-position: left bottom;
	background-repeat: no-repeat;
}

.beside-title {
	color: #fff;
	text-align: left;
	padding: 0;
	margin: 0 0 1.5rem;
}

.call-button {
	display: inline-block;
	padding: 13px 16px;
	margin-bottom: 10px;
	background: #3a9cc1;
	color: #fff;
	text-decoration: none;
	font-family: 'Anton', sans-serif;
	font-size: 19px;
	line-height: 1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	transition: background 0.2s ease;
}

.call-button:hover {
	background: #205b80;
}

.beside-links .call-button:first-child {
	margin-right: 10px;
}

.beside-content p {
	margin-bottom: 1.5rem;
}

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

@media only screen and (min-width: 768px) {
	.beside-info {
		padding: 20px 50px 60px;
	}
	.beside-content {
		font-size: 21px;
	}
}

@media only screen and (min-width: 1024px) {
	.beside {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.beside-info,
	.beside-image {
		width: 50%;
	}
	.beside-info {
		padding: 30px 50px 60px 0;
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}
	.beside-image {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	.beside-info-inner {
		padding-left: 20%;
	}
}

/* Homepage: Feature
========================================================================== */

.home-feature {
	background: #0f294e;
	padding: 1rem;
	text-align: center;
}

.home-feature-row {
	max-width: 700px;
	margin: 0 auto;
}

.home-feature-col {
	background: #fff;
	margin-bottom: 1.5rem;
}

.home-feature-col:last-child {
	margin-right: 0;
}

@media only screen and (min-width: 1024px) {
	.home-feature {
		padding: 2rem 1rem;
	}
	.home-feature-row {
		max-width: 1300px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.home-feature-col {
		width: 31.3333333%;
		margin-right: 3%;
		margin-bottom: 0;
	}
}

.home-feature-content {
	padding: 1.5rem 1rem;
}

.home-feature-title {
	padding: 0;
	margin: 0 0 1.5rem;
	font-size: 34px;
}

@media only screen and (min-width: 768px) {
	.home-feature-title {
		font-size: 40px;
	}
}

.home-feature-title a:hover {
	text-decoration: underline;
}

.home-feature-image img {
	vertical-align: middle;
}

.home-feature-image a {
	display: block;
	position: relative;
	text-decoration: none;
}

.home-feature-image a::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	transition: opacity 0.3s ease;
}

.home-feature-image a:hover::before {
	opacity: 1;
}

.home-feature-info {
	margin-bottom: 1.5rem;
}

/* Site Footer
========================================================================== */

.site-footer-main {
	padding: 3rem 1rem;
	background: #0f294e;
	color: #fff;
	font-size: 18px;
	text-align: center;
}

.site-footer-row {
	max-width: 1300px;
	margin: 0 auto;
}

.site-footer-middle {
	margin: 2rem 0;
}

.site-footer-left .footer-area {
	max-width: 300px;
	margin: 0 auto;
}

@media only screen and (min-width: 1024px) {
	.site-footer-main {
		text-align: left;
	}
	.site-footer-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.site-footer-left,
	.site-footer-right {
		width: 24%;
	}
	.site-footer-middle {
		width: 52%;
		padding: 0 10px;
		margin: 0;
		text-align: center;
	}
}

.footer-area-title {
	padding: 0;
	margin: 0 0 1rem;
	font-family: 'Anton', sans-serif;
	font-size: 19px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #fff;
	text-align: center;
}

.site-footer-main a:not(.call-button) {
	color: #fff;
	text-decoration: none;
	-webkit-transition: color 0.2s ease;
	transition: color 0.2s ease;
}

.site-footer-main a:not(.call-button):hover {
	color: #efa81a;
}

.site-footer-main .call-button {
	display: block;
	margin: 0;
	text-align: center;
}

.site-footer-main .call-button:hover {
	background: #efa81a;
}

.site-footer-main img {
	max-width: 200px;
}

.site-footer-main .gform_wrapper {
	padding: 0;
	display: block;
	max-width: 300px;
	margin: 0 auto;
}

.site-footer-main .gform_wrapper.gravity-theme .gform_fields {
	display: block !important;
}

.site-footer-main .gform_wrapper.gravity-theme .gfield {
	margin-bottom: 1rem;
}

.site-footer-main .gform_wrapper.gravity-theme .gfield:last-child {
	margin-bottom: 0;
}

.site-footer-main .gform_wrapper.gravity-theme .gform_validation_errors {
	padding: 10px;
}

.site-footer-main .gform_wrapper.gravity-theme .gform_footer {
	margin: 0;
	padding: 0;
}

.site-footer-main .gform_wrapper.gravity-theme input[type="text"],
.site-footer-main .gform_wrapper.gravity-theme input[type="email"],
.site-footer-main .gform_wrapper .gfield_validation_message,
.site-footer-main .gform_wrapper .validation_message,
.site-footer-main .gform_wrapper .gform_validation_errors > h2 {
	font-family: 'Georgia' !important;
}

.site-footer-main .gform_wrapper.gravity-theme input[type=submit]:hover {
	background: #efa81a;
}

.page-template-wild-homepage .press-list .et-boc:last-child {
	display: none;
}

.page-template-wild-homepage .et_pb_section_1 {
	padding: 0;
}

.page-template-wild-homepage .et_pb_section_1 > .et_pb_row_0 {
	padding: 1rem 0 0;
}

@media only screen and (min-width: 768px) {
	.page-template-wild-homepage .et_pb_section_1 > .et_pb_row_0 .feed-feature {
		padding-bottom: 0;
	}
}

/* Homepage: Social Menu
========================================================================== */

.social-menu {
	margin: 1rem 0;
}

.social-menu li {
	display: inline-block;
	margin-right: 8px;
}

.social-menu span {
	display: none;
}

.social-menu a::before {
	content: '';
	display: inline-block;
	font-family: 'ETmodules';
	font-size: 16px;
	line-height: 1;
	color: #0f294e;
	padding: 7px;
	border-radius: 50%;
	background: #fff;
	-webkit-transition: background 0.2s ease;
	transition: background 0.2s ease;
}

.social-menu a:hover::before {
	background: #efa81a;
}

.social-menu a[href*="facebook.com"]::before {
	content: '\e093';
}

.social-menu a[href*="instagram.com"]::before {
	content: '\e09a';
}

.social-menu a[href*="linkedin.com"]::before {
	content: '\e09d';
}

.social-menu a[href*="youtube.com"]::before {
	content: '\e0a3';
}

/* Animations
========================================================================== */

.anim-fadein {
	opacity: 0;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
	-webkit-transition: opacity .6s cubic-bezier(.215,.61,.355,1), -webkit-transform .6s cubic-bezier(.215,.61,.355,1);
	transition: opacity .6s cubic-bezier(.215,.61,.355,1), -webkit-transform .6s cubic-bezier(.215,.61,.355,1);
	transition: transform .6s cubic-bezier(.215,.61,.355,1), opacity .6s cubic-bezier(.215,.61,.355,1);
	transition: transform .6s cubic-bezier(.215,.61,.355,1), opacity .6s cubic-bezier(.215,.61,.355,1), -webkit-transform .6s cubic-bezier(.215,.61,.355,1);
}

.anim-fadein.active {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}

/* Events
========================================================================== */

.post-type-archive .tribe-events-l-container h3 {
	text-align: left;
}

.tribe-common--breakpoint-medium.tribe-common .tribe-common-form-control-text__input {
	padding: var(--tec-spacer-4) var(--tec-spacer-4) var(--tec-spacer-4) var(--tec-spacer-8) !important;
}

.wild-single-event-field {
	margin-bottom: 1.5rem;
}

.wild-single-event-rsvp a {
	background: #efa81a;
}

.wild-single-event-rsvp a:hover {
	background: #6b711e;
}

.post-type-archive .tribe-events-before-html {
	margin-bottom: 2rem;
}

.post-type-archive .tribe-events-view {
	padding-top: 35%;
}

.tribe-events-before-html .wild-events-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding-bottom: 35%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.tribe-events-before-html h6 {
	margin: 1.5rem 0;
}

.tribe-events-before-html .entry-content {
	max-width: 960px;
	margin: 0 auto;
}

.tribe-events-before-html p {
	font-style: normal;
	line-height: 1.95;
}

.tribe-events-before-html .entry-content a {
	color: #3a9cc1;
}

.tribe-events-before-html .entry-content a:hover {
	text-decoration: underline;
}

.post-type-archive .tribe-events-l-container {
	padding-top: 0 !important;
	padding-bottom: 2rem !important;
}

.tribe-events-meta-group a,
.tribe-events .tribe-events-c-messages__message-list-item-link {
	color: #3a9cc1 !important;
}

.tribe-common .tribe-common-anchor-thin-alt {
	border-color: #3a9cc1 !important;
}

.tribe-events-meta-group a:hover {
	text-decoration: underline;
}

.tribe-common .tribe-common-c-btn-border,
.tribe-common a.tribe-common-c-btn-border {
	color: #3a9cc1;
	border-color: #3a9cc1;
	border-radius: 0 !important;
}

.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button.tribe-events-c-subscribe-dropdown__button--active,
.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus,
.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus-within,
.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover,
.tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button.tribe-events-c-subscribe-dropdown__button--active,
.tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus,
.tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus-within,
.tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover,
.tribe-common .tribe-common-c-btn-border:focus,
.tribe-common .tribe-common-c-btn-border:hover,
.tribe-common a.tribe-common-c-btn-border:focus,
.tribe-common a.tribe-common-c-btn-border:hover {
	background-color: #3a9cc1 !important;
}

.tribe-events .tribe-events-c-search__button,
.tribe-events button.tribe-events-c-search__button {
	background-color: #3a9cc1 !important;
	border-radius: 0 !important;
}

.tribe-events .tribe-events-c-search__button:focus,
.tribe-events .tribe-events-c-search__button:hover,
.tribe-events button.tribe-events-c-search__button:focus,
.tribe-events button.tribe-events-c-search__button:hover {
	background-color: #205b80 !important;
}

/* Page
========================================================================== */

.page-main {
	max-width: 850px;
	margin: 0 auto;
	padding: 4rem 1rem;
}

/* Menu Fix
========================================================================== */

#et-secondary-menu > ul > li.button > a,
#et-secondary-menu > ul > li.button.current-menu-item > a,
.et_mobile_menu > li.button > a,
.et_mobile_menu > li.button.current-menu-item > a {
	background-color: #949c2a !important;
}

#et-secondary-menu > ul > li.button.orange > a,
#et-secondary-menu > ul > li.button.orange.current-menu-item > a,
.et_mobile_menu > li.button.orange > a {
	background-color: #efa81a !important;
}

#et-secondary-menu > ul > li.button > a:hover,
.et_mobile_menu > li.button > a:hover {
	background-color: #6b711e !important;
}

/* Legacy Footer Fix
========================================================================== */

.legacy-footer-part {
	display: none;
}

.site-footer .legacy-footer-part {
	display: block;
}

/* Staff List
========================================================================== */

.staff-member {
	text-align: center;
	line-height: 1.3;
	margin-bottom: 3rem;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.staff-member:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

@media only screen and (min-width: 480px) {
	.staff {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.staff-member {
		width: 47.25%;
		margin-right: 5.5%;
		margin-bottom: 4rem;
	}
	.staff-member:nth-child(2n) {
		margin-right: 0;
	}
}

@media only screen and (min-width: 980px) {
	.staff-member {
		width: 22.75%;
		margin-right: 3%;
	}
	.staff-member:nth-child(2n) {
		margin-right: 3%;
	}
	.staff-member:nth-child(4n) {
		margin-right: 0;
	}
}

.staff-member-image {
	width: 189px;
	height: 189px;
	margin: 0 auto 12px;
}

.staff-member-image img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 50%;
	border: 2px solid #3a9cc1;
}

.staff-member a {
	display: block;
	color: inherit;
	text-decoration: none !important;
}

.staff-member-title {
	font-size: 27px;
	padding: 0;
}

.staff-member-pronouns {
	margin: 10px 0;
	font-size: 16px;
	color: #777;
}

.staff-member-position {
	font-size: 18px;
}

@media only screen and (min-width: 768px) {
	.staff-member-title {
		font-size: 30px;
	}
	.staff-member-pronouns {
		font-size: 18px;
	}
	.staff-member-position {
		font-size: 20px;
	}
}

/* Single Staff
========================================================================== */

.single-staff .page-main {
	text-align: center;
}

.single-staff-title {
	margin: 0 0 1rem;
	padding: 0;
	font-family: 'Anton', sans-serif;
	font-size: 40px;
	line-height: 1.2;
}

@media only screen and (min-width: 768px) {
	.single-staff-title {
		font-size: 46px;
	}
}

.single-staff-position {
	font-size: 27px;
}

.single-staff-img {
	width: 189px;
	height: 189px;
	margin: 1rem auto;
}

.single-staff-img img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 50%;
	border: 2px solid #3a9cc1;
}

.single-staff-pronouns {
	margin: 0.5rem 0 1.5rem;
	font-size: 18px;
	color: #777;
}

.single-staff-contact a {
	-webkit-transition: color 0.2s ease;
	transition: color 0.2s ease;
}

.single-staff-contact a:hover {
	color: #efa81a;
}

.single-staff-info {
	text-align: left;
	line-height: 1.8;
}

.single-staff-info p {
	padding: 0;
	margin: 0 0 1.5rem;
}

.single-staff-info h5 {
	font-size: 22px;
	padding: 0;
	margin: 0 0 1.5rem;
}

@media only screen and (min-width: 768px) {
	.single-staff-info h5 {
		font-size: 25px;
	}
}

.single-staff-info a:hover {
	text-decoration: underline;
}

.legacy-staff {
	display: none;
}

/* Template Simple
========================================================================== */

.page-simple {
	max-width: 960px;
	margin: 0 auto;
	padding: 6rem 1rem 3rem;
}

.page-simple a:not(.call-button):hover {
	text-decoration: underline;
}

.page-simple h2 {
	margin: 0 0 10px;
	padding: 0;
	font-family: 'Anton', sans-serif;
	font-size: 40px;
	line-height: 1.2;
}

.page-simple h4 {
	margin: 0 0 10px;
	padding: 0;
	font-family: 'Georgia', serif;
	font-size: 29px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.4px;
}

@media only screen and (min-width: 768px) {
	.page-simple h2 {
		font-size: 46px;
	}
	.page-simple h4 {
		font-size: 32px;
	}
}