/*
Theme Name: Fuel5 Junior
Theme URI: http://fuelmedical.com/
Description: Base child theme for all fuel medical development projects.
Author: Fuel Medical
Author URI: http://fuelmedical.com/
Template: fuel
Version: 5.0.12
Text Domain: fmj
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Custom Properties
# Fonts
# Normalize
# Fuel Normalize
# Custom Elements
# Forms
## Search Form
# Accessibility
# Header
# Footer
# Contact
# Map
# Animations

# Print
# IE11 Notice
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
/* lato-regular - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Lato';
	font-style: normal;
	font-weight: 400;
	src: url('./fonts/lato-v24-latin-regular.woff2') format('woff2');
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* lato-italic - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Lato';
	font-style: italic;
	font-weight: 400;
	src: url('./fonts/lato-v24-latin-italic.woff2') format('woff2');
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* lato-700 - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Lato';
	font-style: normal;
	font-weight: 700;
	src: url('./fonts/lato-v24-latin-700.woff2') format('woff2');
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* lato-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/lato-v25-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/*--------------------------------------------------------------
# Custom Properties
--------------------------------------------------------------*/
:root {
	/* Structure */
	--contain-padding: clamp(9vw, calc(50vw - 30rem), 18rem);

	/* Design */
	--primary-color: #296271;
	--accent-color: #D9EDF3;

	/* Text */
	--title-font: 'Lato', sans-serif;
	--title-color: var(--h2-color);

	--content-font: 'Lato', sans-serif;
	--content-color: #3C3C3C;

	/* Accessibility */
	--outline-color: #69F;

	/* Site Colors */
	--site-white: #fff;
	--site-black: #3C3C3C;
	--light-blue: #2877A5;
	--alt-green: #1A748B;
	--sea-green: #5EC2CB;
	--alt-white: #EAEFF1;
	--site-red: #924B51;
	--site-maroon: #702A30;
	--btn-border: #A3CAD4;
	--dark-green: #1C5463;

	--h2-color: #296271;
	--h3-color: #3D3D3D;
	--body-color: #3C3C3C;
	--cta-4: #3D579B;

}

/*--------------------------------------------------------------
# Normalize v8.0.1
--------------------------------------------------------------*/
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%
}

body {
	margin: 0
}

main {
	display: block
}

h1 {
	font-size: 2em;
	margin: .67em 0
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible
}

pre {
	font-family: monospace, monospace;
	font-size: 1em
}

a {
	background-color: transparent
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted
}

b,
strong {
	font-weight: bolder
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em
}

small {
	font-size: 80%
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline
}

sub {
	bottom: -.25em
}

sup {
	top: -.5em
}

img {
	border-style: none
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0
}

button,
input {
	overflow: visible
}

button,
select {
	text-transform: none
}

[type=button],
[type=reset],
[type=submit],
button {
	-webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
	border-style: none;
	padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
	outline: 1px dotted ButtonText
}

fieldset {
	padding: .35em .75em .625em
}

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal
}

progress {
	vertical-align: baseline
}

textarea {
	overflow: auto
}

[type=checkbox],
[type=radio] {
	box-sizing: border-box;
	padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto
}

[type=search] {
	-webkit-appearance: textfield;
	outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
	-webkit-appearance: none
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit
}

details {
	display: block
}

summary {
	display: list-item
}

template {
	display: none
}

[hidden] {
	display: none
}

/*--------------------------------------------------------------
# Fuel Normalize
--------------------------------------------------------------*/
*,
*::before,
*::after {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html {
	font-family: sans-serif;
	font-size: 125%;
	line-height: 1.5;
	-webkit-overflow-scrolling: touch;
}

body {
	position: relative;
	min-width: 18rem;
	font-family: var(--content-font);
	font-size: 1em;
	line-height: 1.5;
	color: var(--content-color);
	background: #f5f5f5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.5em 0;
	font-family: var(--title-font);
	font-weight: 400;
	line-height: normal;
	color: var(--title-color);
}

h1 {
	font-size: clamp(1.5rem, 4vw, 2.4rem);
}

h2 {
	font-size: clamp(1.3rem, 4vw, 2rem);
}

h3 {
	font-size: clamp(1.1rem, 4vw, 1.5rem);
}

h4 {
	font-size: clamp(1rem, 4vw, 1.4rem);
}

h5 {
	font-size: clamp(0.9rem, 4vw, 1.2rem);
}

h6 {
	font-size: clamp(0.8rem, 4vw, 1rem);
}

p {
	margin: 0 0 1.2em;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

li {
	margin: 0;
}

iframe,
img,
svg,
audio,
canvas,
video,
object,
embed {
	vertical-align: middle;
	max-width: 100%;
}

img,
svg {
	height: auto;
}

img {
	object-fit: cover;
}

img[src*=".jpg"] {
	background: #eee;
}

iframe {
	margin: 0 auto 3rem auto;
}

figure {
	margin: 0;
}

blockquote {
	margin: 0 0 1.6em;
}

table {
	margin: 0 0 1.6em;
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
}

th {
	font-weight: bold;
}

blockquote,
figcaption {
	font-style: italic;
}

blockquote em,
blockquote i,
figcaption em,
figcaption i {
	font-style: normal;
}

small {
	font-size: 0.75em;
}

sub,
sup {
	position: relative;
	vertical-align: baseline;
	font-size: 0.75em;
	line-height: 0;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

a {
	text-decoration: none;
	color: var(--accent-color);
	transition: color 300ms, background-color 300ms;
}

a[href^="tel:"] {
	white-space: nowrap;
}

a:hover {
	color: var(--primary-color);
}

button {
	margin: 0;
	border: 0;
	padding: 0;
	color: var(--accent-color);
	background: transparent;
	cursor: pointer;
}

button:hover {
	color: var(--primary-color);
}

input {
	margin: 0;
	border: 0;
	padding: 0;
	color: inherit;
	background: none;
}

pre,
code {
	max-width: 100%;
	overflow: auto;
}


/*--------------------------------------------------------------
# Custom Elements
--------------------------------------------------------------*/

#wpadminbar {
	background: #002B49;
}

.site-wrapper {
	margin: auto;
	width: 100%;
	max-width: 96rem;
	background: #fff;
}

.site-wrapper>* {
	width: 100%;
}

.clear {
	clear: both;
}

.contain {
	display: block;
	position: relative;
	margin: auto;
	padding-right: var(--contain-padding);
	padding-left: var(--contain-padding);
	width: 100%;
}

.button,
.wp-block-button__link,
.wp-block-file__button {
	display: inline-block;
	vertical-align: middle;
	border-radius: 0;
	padding: 0.5em 1em;
	font-size: 1em;
	font-weight: bold;
	line-height: normal;
	text-align: center;
	text-decoration: none;
	color: var(--primary-color);
	background: var(--accent-color);
	border: 0.05em solid var(--btn-border);
	cursor: pointer;
	transition: all 300ms;
}

.button:hover,
.button:active,
.wp-block-button__link:hover,
.wp-block-button__link:active,
.wp-block-file__button:hover {
	color: #fff;
	background: var(--primary-color);
	text-decoration: none;
}

.icon-item {
	display: block;
	position: relative;
	margin: 1em 0;
	padding: 0 0 0 1.8em;
}

.icon-item svg {
	position: absolute;
	top: 0.15em;
	left: 0;
	width: 1.2em;
	height: 1.2em;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.gform_fields {
	margin: 0;
}

.gfield {
	margin: 0 0 0.7rem;
	border: 1px solid #999;
	border-radius: 0.3rem;
	padding: 0.3rem;
	list-style: none;
	overflow: hidden;
	background: #fff;
}

.gfield .medium,
.gfield .large {
	padding: 0.2rem 0.9rem;
	width: 100%;
	color: var(--content-color);
	background: #fff;
	outline: none;
}

.gfield_label {
	display: block;
	padding: 0.1rem 0.4rem 0;
	font-size: 0.7em;
	line-height: normal;
}

.gform_footer {
	position: relative;
	margin-top: 0.7rem;
}

.gform_button {
	width: 100%;
}

.gform_ajax_spinner {
	position: absolute;
	top: 0;
	right: 0.5rem;
	bottom: 0;
	margin: auto;
	border: 0.2em solid rgba(0, 0, 0, 0.4);
	border-left: 0.2em solid #07B084;
	border-radius: 50%;
	width: 1.2em;
	height: 1.2em;
	animation: spin 1.1s infinite linear;
}

.gform_confirmation_message {
	font-family: inherit;
	font-size: 1.1em;
	font-weight: normal;
}

.gform_submission_error {
	margin: 0 0 1rem;
	font-family: inherit;
	font-size: 0.8em;
	font-weight: normal;
	line-height: 1.5;
	color: #cc2d3f;
}

.validation_message {
	padding: 0 0.4rem;
	font-size: 0.7em;
	color: #cc2d3f;
}

/*--------------------------------------------------------------
## Search Form
--------------------------------------------------------------*/
.search-form {
	display: flex;
}

.search-form label {
	width: 100%;
}

.search-form ::placeholder {
	color: var(--site-white);
}

.search-field {
	padding: 0.5em 1em;
	width: 100%;
	line-height: 1.5;
	color: var(--site-white);
	background: var(--primary-color);
	border: 0.05em solid var(--site-white);
	border-top-left-radius: 0.25em;
	border-bottom-left-radius: 0.25em;
}

.search-submit {
	padding: 0.5em 1em;
	line-height: 1.5;
	color: var(--primary-color);
	background: var(--accent-color);
	border-top-right-radius: 0.25em;
	border-bottom-right-radius: 0.25em;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
a,
button,
summary,
.gfield {
	outline-style: solid;
	outline-color: transparent;
	outline-offset: 0;
	outline-width: 2px;
}

a {
	outline-offset: 0.5rem;
}

.button {
	outline-offset: 0;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.gfield:focus-within {
	outline-color: var(--outline-color);
}

.skip-to-content {
	display: block;
	position: absolute;
	top: -10000rem;
	left: 1rem;
	z-index: 99999;
	padding: 0.5em 1em;
	background: #eee;
	box-shadow: 1px 1px 0.2em rgba(0, 0, 0, 0.5);
	transition: none;
}

.skip-to-content:focus {
	top: 1rem;
}

.screen-reader-text {
	position: absolute;
	top: auto;
	left: -10000rem;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.js-required {
	padding: 2rem;
	text-align: center;
	color: #000;
}

@media (min-width: 68.5em) {
	.clamp {
		font-size: 1rem;
		font-size: clamp(0.8rem, 1.1vw, 1rem);
	}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	text-align: center;
}

.header-links {
	display: none;
}

.header-menu,
.header-phone {
	display: none;
}

.header-logo {
	width: 100%;
	max-width: 17em;
	display: block;
	margin: auto;
}

.header-logo .logo-big {
	color: #3D6F7C;
}

.header-logo .logo-small {
	color: var(--site-maroon);
}

@media (min-width: 68.5em) {
	.header {
		display: grid;
		grid-template-areas:
			'logo nav'
			'logo phone';
		justify-items: end;
		text-align: left;
		padding: 0;
		padding-right: 3em;
	}

	.header-logo {
		grid-area: logo;
		justify-self: start;
		margin: 0.5em;
		margin-left: 2.5em;
		transition: transform 300ms;
	}

	.header-logo:hover {
		transform: scale(1.05);
	}

	.header-menu {
		grid-area: nav;
		display: flex;
		height: fit-content;
	}

	.header-menu li:nth-child(n+2) {
		margin-left: 1rem;
	}

	.header-menu svg {
		vertical-align: top;
		margin: 0.15em 0.2em 0 0;
		width: 1.1em;
		height: 1.1em;
	}

	.header-phone {
		display: block;
		padding: 0.75em 2.5em 0.75em 2em;
		padding-right: unset;
		border-radius: 0 0 5px 5px;
		z-index: 1000;
		color: var(--primary-color);
		margin-top: 0;
		transition: all .25s ease;
		cursor: pointer;
		font-size: 2em;
	}

	.header-phone h3 {
		font-size: 1rem;
		font-weight: bold;
		width: 100%;
		border-bottom: 0.05em solid var(--primary-color);
		padding-bottom: 0.5em;
		margin-bottom: 1em;
	}

	.header-phone[open] summary::before {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: -100vh;
		left: 0;
		cursor: initial;
		z-index: -1;
		background: rgba(0, 0, 0, 0.5);
	}

	.header-phone:hover,
	.header-phone[open] {
		color: var(--site-maroon);
	}

	.header-phone .phone-tree {
		font-size: 1rem;
		position: absolute;
		padding: 2rem;
		background: var(--site-white);
		color: var(--primary-color);
		box-shadow: 0 0 12px rgba(0, 0, 0, .25);
		z-index: 1000;
		width: 23rem;
		right: 3rem;
		top: 6rem;
	}

	details[open].header-phone .phone-tree::before {
		/* content: ''; */
		width: 1em;
		aspect-ratio: 1/1;
		background: url('./images/close.svg');
		background-size: cover;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 5;
	}

	.header-phone .phone {
		display: flex;
		justify-content: space-between;
	}

	.header-phone .phone-number {
		display: inline-block;
		/* margin-left: 100%; */
	}

	.phone-tree>p:last-of-type {
		margin-bottom: 0;
	}

	.header-phone .phone-tree a {
		color: var(--primary-color);
		font-size: 1rem;
	}

	details[open].header-phone summary~* {
		animation: sweep .5s ease-in-out;
	}

	.header-phone summary {
		list-style: none;
	}

	.header-phone summary::-webkit-details-marker {
		display: none;
	}

	.phone-tree .phone-tree-loc {
		position: relative;
		display: flex;
		width: 100%;
		max-width: calc(100% - 2em);
		padding-right: 0.5em;
		/* gap: 1em; */
	}

	.phone-tree .phone-tree-loc::after {
		content: '';
		display: block;
		align-self: end;
		/* position: absolute; */
		/* bottom: 0.4rem; */
		height: 1em;
		width: 100%;
		margin-left: 0.3em;
		background-image: radial-gradient(var(--primary-color) 1px, transparent 0px);
		background-size: 8px 8px;
		background-repeat: repeat-x;
		background-position: left bottom;
	}

	.close-button {
		color: var(--primary-color);
		width: 1.8rem;
		height: 1.8rem;
		/* aspect-ratio: 1/1; */
		margin-top: 0;
		padding-top: 0;
		position: absolute;
		top: 0;
		right: 0;
		transition: color 300ms;
	}

	.close-button svg {
		/* padding-top: 0; */
		/* margin: 0; */
		margin-top: 0.0em;
	}

	.close-button:hover {
		color: var(--sea-green);
	}

	.header-menu li a {
		background: var(--primary-color);
		padding: 0.4em 1.2em;
		padding-right: 3.2em;
		position: relative;
		overflow: hidden;
		display: block;
		z-index: 1;
	}

	.header-menu li a::before {
		content: '';
		width: 100%;
		height: 100%;
		background: #3C7686;
		position: absolute;
		top: 0;
		left: calc(100% - 2em);
		z-index: -1;
		transition: all 300ms;
	}

	.header-menu a:hover {
		color: var(--site-white);
	}

	.header-menu li a:hover::before {
		left: 0;
	}

	.header-menu li a::after {
		content: '';
		width: 1.2em;
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
		aspect-ratio: 1/1;
		position: absolute;
		top: 0.6em;
		right: 0.4em;
		z-index: 0;
	}

	.header .menu-bill-pay a::after {
		background-image: url('./images/bill-pay.svg');
	}

	.header .menu-portal a::after {
		background-image: url('./images/portal.svg');
	}

	.header .menu-cal a::after {
		background-image: url('./images/calendar.svg');
	}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
	color: var(--site-white);
	background: var(--primary-color);
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}
.footer.load-bg {
    background-image: url('./images/footer.webp');

}

.footer a {
	color: var(--site-white);
}

.footer a:hover {
	text-decoration: underline;
	color: var(--site-white);
}

.footer-blocks {
	max-width: 30em;
	padding-top: 2rem;
	padding-bottom: 2rem;
	font-size: 0.9em;
}

.footer-title {
	margin-bottom: 1.2rem;
	padding-bottom: 0.4rem;
	color: inherit;
	position: relative;
}

.footer-title::after {
	content: '';
	width: calc(100% - 0.25em);
	height: 0.2em;
	background: url('./images/underline.svg');
	background-repeat: no-repeat;
	position: absolute;
	bottom: 0;
	left: 0;
}

.footer-logo {
	display: block;
}

.footer-logo .logo-big,
.footer-logo .logo-small {
	color: var(--site-white);
}

.footer-social {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 1rem;
}

.footer-social li {
	padding: 0 0.5rem;
	margin-bottom: 0.5em;
}

.footer-locations {
	width: 100%;
	margin-bottom: 1.2em;
}

.footer-locations svg,
.footer-connect svg {
	color: var(--sea-green);
}

.footer-locations .footer-title {
	width: 100%;
}

.footer-locations-list a {
	display: inline-block;
	margin: 0.3em 0;
	line-height: normal;
}

.footer-locations-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem 1.5rem;
	width: 100%;
}

.footer-loc-title {
	color: inherit;
}

.footer-links a {
	display: inline-block;
	margin: 0.3em 0;
	line-height: normal;
}

.footer-links {
	display: none;
}

.footer-locations svg,
.footer-connect svg {
	margin-right: 0.2em;
}

.footer-info-block {
	margin-top: 2em;
}

@media (min-width: 32.5em) {
	.footer-locations-list {
		column-gap: 1.5rem;
	}
}

@media (min-width: 68.5em) {
	.footer-blocks {
		display: flex;
		flex-wrap: nowrap;
		gap: clamp(2em, 2em, 5em);
		gap: 5em;
		max-width: 100%;
	}

	.footer-title {
		text-align: left;
		font-size: 1.2em;
	}

	.footer-branding {
		width: 17em;
	}

	.footer-locations {
		flex: 0 2 auto;
		width: auto;
	}

	.footer-locations-wrapper {
		justify-content: start;
		width: auto;
	}

	.footer-links {
		flex: 0 0 auto;
	}

	.footer-info-block {
		display: flex;
		justify-content: space-between;
		margin-top: 0;
		gap: 1.5em;
		width: 50%;
		width: 65%;
	}

	.footer-links {
		display: block;
	}

	.footer-logo {
		transition: transform 300ms;
	}

	.footer-logo:hover {
		transform: scale(1.05);
	}

	.footer-social {
		padding-top: 0;
	}
}

/* Copyright section */
.footer-end {
	padding-top: 1.5rem;
	padding-bottom: 5rem;
	text-align: center;
	font-size: 0.8em;
	line-height: 1.5;
}

.copyright {
	margin-bottom: 1.2rem;
	font-size: 0.7em;
}

.copyright span {
	display: block;
}

.policy-nav ul {
	display: flex;
	justify-content: center;
}

.policy-nav li {
	padding: 0 0.5rem;
	position: relative;
	white-space: nowrap
}

.policy-nav li:nth-child(n+1)::before {
	content: '|';
	position: absolute;
	right: -2px;
}

.policy-nav li:last-child::before {
	display: none;
}

@media (min-width: 68.5em) {
	.footer-end {
		display: grid;
		grid-template-areas:
			'copyright nav';
		justify-items: start;
		padding-top: 0;
		padding-bottom: 2rem;
		margin-top: 2.5rem;
	}

	.copyright {
		display: flex;
		margin: 0;
		font-size: 0.8rem;
	}

	.policy-nav {
		grid-area: nav;
		justify-self: end;
	}
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact {
	color: #4A4A4A;
	;
}

#contact h2 {
	text-align: center;
	margin-bottom: 1.2rem;
}

#contact p {
    font-size: 0.9rem;
    margin-bottom: 1.6rem;
}

#contact .gfield {
	border-color: var(--btn-border);
}

#contact .gfield_label {
	color: var(--h2-color);

}

#contact .gform_button {
	width: fit-content;
	margin: auto;
	display: block;
}

.gform_required_legend {
	display: none;
}

.cf-wrap {
	padding: 0 var(--contain-padding);
	margin: auto;
	margin-top: -2em;
	background: var(--site-white);
	position: relative;
	z-index: 1;
	padding: 1em 0.7em;
	box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.15);
	width: calc(100% - var(--contain-padding));
	max-width: 30em;
}


@media (min-width: 68.5em) {
	#contact {
		display: flex;
		flex-direction: column;
		justify-content: center;
		min-height: 41.5em;
		position: relative;
	}

	.cf-wrap {
		position: absolute;
		top: 8em;
		right: clamp(1em, calc(50% - 30em), calc(50% - 30em));
		vertical-align: middle;
		padding: 1.5em 2.5em;
	}

	.post-2529 .cf-wrap {
		top: 3em;
		padding-top: 0;
	}

	.post-2529 .gform_description,
	.post-2529 .gfield_description {
		font-size: 0.9em;
	}

	.post-2529 .ginput_container .button {
		font-size: 0.9em;
	}

	#contact figure {
		position: absolute;
		bottom: 0;
		left: -20%;
	}

}

@media (min-width: 99.5em) {
	#contact figure {
		left: 0;
	}
}

/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
.fm-map {
	position: relative;
	width: 100%;
	height: 30em;
	max-height: calc(90vh - 3.2em);
	background: #e5e5e5;
	border: 0.05em solid var(--btn-border);
}

.locations-section {
	padding-top: 1.5em;
}

.locations-title {
	text-align: center;
}

.map-view-bar {
	background-color: var(--primary-color);
}

.map-loc-header,
.map-loc-info {
	background: var(--primary-color);
}

.map-quick-links a svg,
.map-quick-links a,
.map-back,
.map-back svg {
	color: var(--site-maroon);
	transition: color 300ms;
}

.map-back:hover,
.map-back:focus,
.map-back:hover svg {
	color: var(--primary-color);
}

.map-quick-links a:hover svg,
.map-quick-links a:hover {
	color: var(--primary-color);
}

.map-loc-icon svg {
	color: var(--sea-green);
}

.map-list-button:hover,
.map-list-button:focus,
.map-list-button.map-active {
	color: var(--primary-color);
	background-color: var(--site-white);
}

.map-quick-links {
	background: rgba(255, 255, 255, 0.8);
}

.map-sidebar {
	background: var(--primary-color);
}

.map-loc-icon span {
	color: var(--site-white);
}

@media (min-width: 50em) {
	.locations-section {
		padding: 0 var(--contain-padding);
		padding-top: 2em;
		position: relative;
		z-index: 1;
		margin-bottom: 2.5em;
	}

	.locations-title {
		text-align: left;
	}

	.map-list-item {
		height: calc(100% / 5);
		border-bottom: 0.05em solid var(--btn-border);
		border-right: 0.05em solid var(--btn-border);
	}

	.map-sidebar {
		padding-bottom: 0;
		background-color: var(--accent-color);
		color: var(--primary-color);
	}

	.map-list-button {
		color: var(--primary-color);
		font-size: 1.2em;
		height: 100%;
	}

	.map-loc-title {
		position: relative;
	}

	.map-loc-title::before {
		content: '';
		display: inline-block;
		vertical-align: top;
		margin: 0.65em 0 0 0.4em;
		width: 0.7rem;
		height: 0.35rem;
		background: var(--primary-color);
		transform-style: preserve-3d;
		transition: transform 250ms;
		transform: rotate(270deg);
		-webkit-clip-path: var(--menu-marker);
		clip-path: var(--menu-marker);
		position: absolute;
		top: 0;
		right: 0;
	}
}

@media (min-width: 68.5em) {
	.locations-section {
		min-height: 46.5em;
		/* margin-top: 7em; */
		margin-bottom: 0;
	}

	.locations-section::before {
		content: '';
		width: 100%;
		max-width: 46.5em;
		aspect-ratio: 970 / 844;
		background-repeat: no-repeat;
		background-position: right;
		background-size: cover;
		position: absolute;
		top: 0;
		right: 0;
		z-index: -1;
	}
	.load-bg.locations-section::before {		
	    background-image: url(./images/locations.jpg);
    }
}

/* Bio Ornaments */
.menu-bio-link {
	position: relative;
}

.menu-bio-image,
.bio-list-item {
	position: relative;
	z-index: 1;
}

.menu-bio-image {
	overflow: hidden;
}

.menu-bio-image img {
	transition: transform 300ms;
}

.menu-bio-link::before,
.bio-list-item::before {
	content: '';
	width: 0.8em;
	aspect-ratio: 1/1;
	background-color: #5EC2CB;
	position: absolute;
	top: -0.4em;
	left: -0.4em;
	z-index: -1;
	transition: transform 300ms;
}

.menu-bio-link:hover::before {
	transform: scale(0.6);
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@media (prefers-reduced-motion:no-preference) and (min-width: 68.5em) {

	.js-intersect .fadeup,
	.wp-block-media-text__media.js-intersect,
	.js-intersect .triad .ani-span,
	.js-intersect .hero-small span {
		animation-name: fadeup;
		animation-duration: 600ms;
		animation-fill-mode: both;
		animation-delay: 0ms;
		animation-play-state: paused;
	}

	.js-intersect .fadeup.hero-large,
	.js-intersect h2.fadeup {
		animation-delay: 600ms;
	}

	#hero.js-intersect p::after {
		animation-name: wipe;
		animation-duration: 400ms;
		animation-fill-mode: both;
		animation-delay: 0ms;
		animation-play-state: paused;
	}

	#hero.js-intersect p::before {
		animation-name: pop;
		animation-duration: 400ms;
		animation-fill-mode: both;
		animation-delay: 0ms;
		animation-play-state: paused;
	}

	.js-intersect .triad::before,
	.js-intersect.fromLeft {
		animation-name: fromLeft;
		animation-duration: 400ms;
		animation-fill-mode: both;
		animation-delay: 0ms;
		animation-play-state: paused;
	}

	.js-intersect .triad::after,
	.js-intersect.fromRight {
		animation-name: fromRight;
		animation-duration: 400ms;
		animation-fill-mode: both;
		animation-delay: 0ms;
		animation-play-state: paused;
	}

	.has-media-on-the-right .js-intersect.wp-block-media-text__media::before {
		animation-name: mediaRight;
		animation-duration: 600ms;
		animation-fill-mode: both;
		animation-delay: 400ms;
		animation-play-state: paused;
	}

	.js-intersect.wp-block-media-text__media::before {
		animation-name: mediaLeft;
		animation-duration: 600ms;
		animation-fill-mode: both;
		animation-delay: 400ms;
		animation-play-state: paused;
	}

	.js-intersect.wp-block-media-text__media::after {
		animation-name: mediaUp;
		animation-duration: 600ms;
		animation-fill-mode: both;
		animation-delay: 400ms;
		animation-play-state: paused;
	}

	.js-intersected.fromLeft,
	.js-intersected.fromRight,
	.js-intersected .fadeup,
	#hero.js-intersected p::before,
	.js-intersected .hero-small span,
	#hero.js-intersected p::after,
	.js-intersected .triad .ani-span,
	.js-intersected .triad::before,
	.js-intersected .triad::after,
	.wp-block-media-text__media.js-intersected,
	.js-intersected.wp-block-media-text__media::before,
	.has-media-on-the-right .js-intersected.wp-block-media-text__media::before,
	.js-intersected.wp-block-media-text__media::after {
		animation-play-state: running;
	}
}

@keyframes mediaUp {
	0% {
		transform: translateY(100%);
	}

	100% {
		transform: translateY(0);
	}
}

@keyframes mediaRight {
	0% {
		transform: translateX(100%);
	}

	100% {
		transform: translateX(0);
	}
}

@keyframes mediaLeft {
	0% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(0);
	}
}

@keyframes pop {
	0% {
		transform: scale(0);
		opacity: 0;
	}

	80% {
		transform: scale(1.2);
		opacity: 1;
	}

	100% {
		transform: scale(1);
	}
}

@keyframes wipe {
	0% {
		transform: scaleX(0);
	}

	100% {
		transform: scaleX(1);
	}
}

@keyframes fadein {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeup {
	0% {
		opacity: 0;
		transform: translateY(2rem);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fromLeft {
	0% {
		opacity: 0;
		transform: translateX(-2rem);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fromRight {
	0% {
		opacity: 0;
		transform: translateX(2rem);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}


/*--------------------------------------------------------------
# Print
--------------------------------------------------------------*/
@media print {
	@page {
		margin: 0.5cm;
	}

	* {
		background: transparent !important;
		color: black !important;
		text-shadow: none !important;
		-webkit-filter: none !important;
		filter: none !important;
		-ms-filter: none !important;
	}

	a,
	a:visited {
		color: #444 !important;
		text-decoration: underline;
	}

	abbr[title]::after {
		content: ' (' attr(title) ')';
	}

	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	thead {
		display: table-header-group;
	}

	tr,
	img {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	p,
	h1,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	h1,
	h2,
	h3 {
		page-break-after: avoid;
	}

	.primary-menu,
	.sidebar,
	.header,
	.footer,
	#comments,
	.page-navigation,
	.pagination,
	.wp-prev-next,
	.respond-form {
		display: none !important;
	}

	.contain {
		padding-left: 0;
		padding-right: 0;
		max-width: none;
	}
}

/*--------------------------------------------------------------
# IE11 Notice
--------------------------------------------------------------*/
.ie11-alert {
	display: none;
}

@media all and (-ms-high-contrast:none) {
	.ie11-alert {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 9999;
		background: #fff;
		color: #000;
	}

	.ie11-content {
		max-width: 45rem;
		max-height: 10rem;
		font-size: 2rem;
		text-align: center;
		margin: 10% auto 0;
	}

	.ie11-alert a {
		color: #4169e1;
	}
}