

.section-title strong,
.layout-full-width-content .search-title strong,
.layout-content-video-columns .column-title strong,
.section-title b,
.layout-full-width-content .search-title b,
.layout-content-video-columns .column-title b {
	font-weight: 700
}

.section-title.white,
.layout-full-width-content .white.search-title,
.layout-content-video-columns .white.column-title {
	color: #fff
}

.section-subtitle {
	margin-bottom: 1em;
	line-height: 1.25;
	font-weight: 700
}

.underlined-title {
	position: relative;
	margin-bottom: .5em;
	padding-bottom: .5em
}

.underlined-title::before {
	content: "";
	position: absolute;
	display: block;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-image: linear-gradient(to right, #263a58 20%, #e5e5e5 20%)
}

.js-lazy-load {
	opacity: 0;
	transition: opacity 300ms ease;
	transition-delay: 300ms
}

.js-lazy-load[data-loaded="true"] {
	opacity: 1
}

.dropdown-container {
	position: relative
}

.dropdown-container.white .dropdown-title::before {
	background-image: url("../images/svg/icon-chevron-blue.svg")
}

.dropdown-container.white .dropdown-outer-title::before {
	background-image: url("../images/svg/icon-chevron-blue.svg")
}

.dropdown-container .dropdown-title {
	position: relative;
	padding: .5em 1em;
	background-color: #5ab5ce;
	box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.25);
	border-radius: 6px;
	font-size: 1.25em;
	line-height: 1;
	cursor: pointer;
	transition: box-shadow 425ms ease
}

.dropdown-container .dropdown-title:hover,
.dropdown-container .dropdown-title:focus {
	box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.375)
}

.dropdown-container .dropdown-title::before {
	content: "";
	position: absolute;
	display: block;
	right: 1em;
	top: 50%;
	width: .75em;
	height: .75em;
	background-image: url("../images/svg/icon-chevron-white.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transform-origin: center;
	transform: rotate(180deg) translate(0, 50%)
}

.dropdown-container .dropdown-outer-title {
	position: relative;
	padding: 1.5em 5em 1.25em 1em
}

.dropdown-container .dropdown-outer-title::before {
	content: "";
	position: absolute;
	display: block;
	right: 1em;
	top: 50%;
	width: .75em;
	height: .75em;
	background-image: url("../images/svg/icon-chevron-white.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transform-origin: center;
	transform: rotate(180deg) translate(0, 50%)
}

.dropdown-container .text-input input {
	display: block;
	width: 100%;
	padding: .425em 1em;
	box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.25);
	border: 0;
	border-radius: 6px;
	font-size: 1.25em;
	line-height: 1;
	transition: box-shadow 425ms ease
}

.dropdown-container .text-input input:hover,
.dropdown-container .text-input input:focus {
	box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.375)
}

.dropdown-container .dropdown-list {
	position: absolute;
	left: 6px;
	top: 100%;
	width: calc(100% - 12px);
	max-height: 200px;
	background-color: #fff;
	color: #138caa;
	list-style: none;
	box-shadow: 0 0 5px rgba(96, 96, 96, 0.5);
	overflow-y: scroll;
	transition: opacity 425ms cubic-bezier(0.19, 1, 0.22, 1), transform 425ms cubic-bezier(0.19, 1, 0.22, 1);
	opacity: 0;
	pointer-events: none;
	transform: scale3d(1, 0.75, 1);
	transform-origin: top center
}

.dropdown-container .dropdown-list::-webkit-scrollbar {
	width: .375em
}

.dropdown-container .dropdown-list::-webkit-scrollbar-track {
	background-color: rgba(96, 96, 96, 0.25);
	-webkit-box-shadow: none
}

.dropdown-container .dropdown-list::-webkit-scrollbar-thumb {
	background-color: #138caa;
	outline: 0
}

.dropdown-container .dropdown-list:focus-within,
.dropdown-container .dropdown-list.active {
	opacity: 1;
	pointer-events: auto;
	transform: scale3d(1, 1, 1)
}

.dropdown-container .dropdown-list.special {
	left: 0;
	width: 100%
}

.dropdown-container .dropdown-list.special .dropdown-link {
	padding: .5em 1em;
	border-bottom: 1px solid #138caa
}

.dropdown-container .dropdown-list.special .dropdown-link:last-of-type {
	border-bottom: 0
}

.dropdown-container .dropdown-item {
	border-bottom: 1px solid #138caa
}

.dropdown-container .dropdown-item:last-of-type {
	border-bottom: 0
}

.dropdown-container .dropdown-item.focused .dropdown-link {
	background-color: rgba(96, 96, 96, 0.1)
}

.dropdown-container .dropdown-link {
	position: relative;
	display: block;
	padding: .5em 1.5em .5em 1em;
	text-decoration: none;
	line-height: 1;
	transition: background-color 425ms ease
}

.dropdown-container .dropdown-link::before {
	content: "";
	position: absolute;
	display: block;
	right: .5em;
	top: 50%;
	width: .75em;
	height: .75em;
	background-image: url("../images/svg/icon-chevron-blue.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transform-origin: right;
	opacity: 0;
	transform: rotate(90deg) translate(0, 50%);
	transition: opacity 300ms ease
}

.dropdown-container .dropdown-link:hover,
.dropdown-container .dropdown-link:focus {
	background-color: rgba(96, 96, 96, 0.1)
}

.dropdown-container .dropdown-link:hover::before,
.dropdown-container .dropdown-link:focus::before {
	opacity: 1
}

.btn {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: .75em 1.25em;
	background-color: #159cbd;
	border-radius: 3px;
	border: 0;
	color: #fff;
	line-height: 1.25;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 325ms ease
}

.btn:hover,
.btn:focus,
.btn.active {
	background-color: #11819d
}

.btn[class*="icon-"] {
	padding-left: 3em
}

.btn[class*="icon-"]::before {
	content: "";
	position: absolute;
	display: block;
	left: 0;
	top: 50%;
	padding: .5em;
	width: 1.25em;
	height: 1.25em;
	background-size: 1em;
	background-position: center;
	background-repeat: no-repeat;
	background-color: rgba(0, 0, 0, 0.15);
	transform: translate(0, -50%)
}

.btn.icon-world::before {
	background-image: url("../images/svg/icon-globe-white.svg")
}

.btn-large,
.dynamix-form button {
	font-size: 1.25em
}

.btn-multi-line {
	font-weight: 300
}

.btn-multi-line strong {
	display: block;
	font-weight: 700
}

.btn-block {
	display: block;
	text-align: center
}

.btn-upper {
	text-transform: uppercase;
	font-weight: 700
}

.btn-dark {
	background-color: #1289a6
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark.active {
	background-color: #10768f
}

.btn-light-gray,
.layout-multi-cta-bar .button-inner:nth-of-type(4n) .btn {
	background-color: #b2b2b2
}

.btn-light-gray:hover,
.layout-multi-cta-bar .button-inner:nth-of-type(4n) .btn:hover,
.btn-light-gray:focus,
.layout-multi-cta-bar .button-inner:nth-of-type(4n) .btn:focus,
.btn-light-gray.active,
.layout-multi-cta-bar .button-inner:nth-of-type(4n) .active.btn {
	background-color: #a5a5a5
}

.btn-black,
.layout-multi-cta-bar .button-inner:nth-of-type(4n - 2) .btn {
	background-color: #454545
}

.btn-black:hover,
.layout-multi-cta-bar .button-inner:nth-of-type(4n - 2) .btn:hover,
.btn-black:focus,
.layout-multi-cta-bar .button-inner:nth-of-type(4n - 2) .btn:focus,
.btn-black.active,
.layout-multi-cta-bar .button-inner:nth-of-type(4n - 2) .active.btn {
	background-color: #5f5f5f
}

.btn-light-blue,
.layout-multi-cta-bar .button-inner:nth-of-type(4n - 1) .btn {
	background-color: #76d7f0
}

.btn-light-blue:hover,
.layout-multi-cta-bar .button-inner:nth-of-type(4n - 1) .btn:hover,
.btn-light-blue:focus,
.layout-multi-cta-bar .button-inner:nth-of-type(4n - 1) .btn:focus,
.btn-light-blue.active,
.layout-multi-cta-bar .button-inner:nth-of-type(4n - 1) .active.btn {
	background-color: #48caeb
}

.btn-green,
.layout-multi-cta-bar .button-inner:nth-of-type(4n - 3) .btn,
.btn-teal {
	background-color: #4f8877
}

.btn-green:hover,
.layout-multi-cta-bar .button-inner:nth-of-type(4n - 3) .btn:hover,
.btn-green:focus,
.layout-multi-cta-bar .button-inner:nth-of-type(4n - 3) .btn:focus,
.btn-green.active,
.layout-multi-cta-bar .button-inner:nth-of-type(4n - 3) .active.btn,
.btn-teal:hover,
.btn-teal:focus,
.btn-teal.active {
	background-color: #3c685b
}

.btn-white {
	background-color: #fff;
	color: #0d6378
}

.btn-white:hover,
.btn-white:focus,
.btn-white.active {
	background-color: #e6e6e6
}

.btn-white.btn-arrow::before {
	background-image: url("../images/svg/icon-chevron-dark-blue.svg")
}

.btn-yellow,
.btn-orange {
	background-color: #d78f3b;
	color: #fff
}

.btn-yellow:hover,
.btn-yellow:focus,
.btn-yellow.active,
.btn-orange:hover,
.btn-orange:focus,
.btn-orange.active {
	background-color: #b97526
}

.btn-arrow {
	padding-right: 2.5em
}

.btn-arrow::before {
	content: "";
	position: absolute;
	display: block;
	right: .75em;
	top: 50%;
	width: .5em;
	height: .5em;
	transform-origin: center;
	transform: translate(0, -50%) rotate(90deg);
	background-image: url("../images/svg/icon-chevron-white.svg");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat
}

.go-back {
	position: relative;
	display: inline-block;
	margin-bottom: 1em;
	padding-left: 1em;
	color: #159cbd;
	font-size: 1.125em;
	text-decoration: none;
	line-height: 1;
	cursor: pointer
}

.go-back::before {
	content: "";
	position: absolute;
	display: block;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	left: 0;
	top: .275rem;
	width: .675em;
	height: .675em;
	transform: rotate(-90deg);
	transform-origin: center;
	background-image: url("../images/svg/icon-chevron-blue.svg")
}

.go-back.no-arrow {
	padding-left: 0
}

.go-back.no-arrow::before {
	display: none
}

.cta-link {
	position: relative;
	padding: 0 2.5em 0 0;
	text-decoration: none
}

.cta-link::before {
	content: "";
	position: absolute;
	display: block;
	right: .75em;
	top: 60%;
	width: .5em;
	height: .5em;
	transform-origin: center;
	transform: translate(0, -50%) rotate(90deg);
	background-image: url("../images/svg/icon-chevron-white.svg");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat
}

.page-wrapper {
	background-color: #fff
}

@media screen and (max-width:950px) {
	.page-wrapper {
		transform: translate3d(0, 0, 0);
		transition: transform 600ms cubic-bezier(0.19, 1, 0.22, 1)
	}
}

@media screen and (max-width:950px) {
	.page-wrapper.nav-open {
		transform: translate3d(-16.25em, 0, 0)
	}
}

.hidden {
	display: none
}

.text-center {
	text-align: center
}

.focus-mouse {
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-webkit-focus-ring-color: rgba(255, 255, 255, 0);
	outline: 0
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	border: 0;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 1px, 1px, 0)
}

.social-col .social-networks,
.social-col-square .social-networks,
.social-col-circle .social-networks {
	display: flex;
	margin: 0;
	padding: 0;
	justify-content: center;
	list-style: none
}

.social-col .social-link,
.social-col-square .social-link,
.social-col-circle .social-link {
	position: relative;
	width: 2.5em;
	height: 2.5em;
	display: inline-block;
	text-indent: -9999px;
	text-decoration: none;
	transition: all 300ms
}

.social-col .social-link::before,
.social-col-square .social-link::before,
.social-col-circle .social-link::before {
	content: "";
	position: absolute;
	display: block;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	left: 50%;
	top: 50%;
	width: 1em;
	height: 1em;
	text-indent: 0;
	transform: translate(-50%, -50%);
	transition: all 300ms
}

.social-col .facebook::before,
.social-col-square .facebook::before,
.social-col-circle .facebook::before {
	background-image: url("../images/svg/logo-facebook.svg")
}

.social-col .twitter::before,
.social-col-square .twitter::before,
.social-col-circle .twitter::before {
	background-image: url("../images/svg/logo-twitter.svg")
}

.social-col .google-plus::before,
.social-col-square .google-plus::before,
.social-col-circle .google-plus::before {
	background-image: url("../images/svg/logo-google.svg")
}

.social-col .youtube::before,
.social-col-square .youtube::before,
.social-col-circle .youtube::before {
	background-image: url("../images/svg/logo-youtube.svg")
}

.social-col .linkedin::before,
.social-col-square .linkedin::before,
.social-col-circle .linkedin::before {
	background-image: url("../images/svg/logo-linkedin.svg")
}

.social-col .pinterest::before,
.social-col-square .pinterest::before,
.social-col-circle .pinterest::before {
	background-image: url("../images/svg/logo-pinterest.svg")
}

.social-col .instagram::before,
.social-col-square .instagram::before,
.social-col-circle .instagram::before {
	background-image: url("../images/svg/logo-instagram.svg")
}

.social-col .houzz::before,
.social-col-square .houzz::before,
.social-col-circle .houzz::before {
	background-image: url("../images/svg/logo-houzz.svg")
}

.social-col-circle .social-link {
	border-radius: 50%
}

.dynamix-form input[type="text"],
.dynamix-form input[type="tel"],
.dynamix-form input[type="tel"]:invalid,
.dynamix-form input[type="email"],
.dynamix-form input[type="email"]:invalid,
.dynamix-form input[type="datetime-local"],
.dynamix-form input[type="date"] {
	box-shadow: none;
	background-color: transparent;
	border: 0
}

.dynamix-form input[type="text"]::-ms-clear,
.dynamix-form input[type="tel"]::-ms-clear,
.dynamix-form input[type="tel"]:invalid::-ms-clear,
.dynamix-form input[type="email"]::-ms-clear,
.dynamix-form input[type="email"]:invalid::-ms-clear,
.dynamix-form input[type="datetime-local"]::-ms-clear,
.dynamix-form input[type="date"]::-ms-clear {
	width: 0;
	height: 0
}

.dynamix-form input[type="text"]::-webkit-contacts-auto-fill-button,
.dynamix-form input[type="tel"]::-webkit-contacts-auto-fill-button,
.dynamix-form input[type="tel"]:invalid::-webkit-contacts-auto-fill-button,
.dynamix-form input[type="email"]::-webkit-contacts-auto-fill-button,
.dynamix-form input[type="email"]:invalid::-webkit-contacts-auto-fill-button,
.dynamix-form input[type="datetime-local"]::-webkit-contacts-auto-fill-button,
.dynamix-form input[type="date"]::-webkit-contacts-auto-fill-button {
	visibility: hidden;
	display: none!important;
	pointer-events: none;
	position: absolute;
	right: 0
}

.dynamix-form .form-title {
	display: none
}

.dynamix-form input[type="radio"],
.dynamix-form input[type="checkbox"] {
	display: none
}

.dynamix-form select {
	border: 0;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none
}

.dynamix-form select::-ms-expand {
	display: none
}

.dynamix-form textarea {
	overflow: auto;
	resize: none;
	border: 0;
	font-family: "Lato", sans-serif
}

.dynamix-form input[type="submit"],
.dynamix-form button {
	margin: 0;
	background-image: none;
	border: 0;
	cursor: pointer
}

.dynamix-form {
	margin-bottom: -0.75em
}

.dynamix-form .form-block {
	display: flex;
	flex-wrap: wrap;
	height: 100%;
	width: calc(100% + (0.75em * 2));
	margin-left: -0.75em
}

.dynamix-form [class*="form-line-"] {
	position: relative;
	flex: 1 0 100%;
	max-width: 100%;
	padding: 0 .75em;
	margin-bottom: .75em;
	box-sizing: border-box
}

.dynamix-form [class*="form-line-"] [class*="form-line-"]:last-of-type {
	margin-bottom: 0
}

.dynamix-form [class*="form-line-"][class*="-half"] {
	flex: 1 0 50%;
	max-width: 50%
}

@media screen and (max-width:860px) {
	.dynamix-form [class*="form-line-"][class*="-half"] {
		flex: 1 0 100%;
		max-width: 100%
	}
}

.dynamix-form [class*="form-line-"][class*="-third"] {
	flex: 1 0 33.333%;
	max-width: 33.333%
}

@media screen and (max-width:860px) {
	.dynamix-form [class*="form-line-"][class*="-third"] {
		flex: 1 0 100%;
		max-width: 100%
	}
}

.dynamix-form [class*="form-line-"][class*="-two-thirds"] {
	flex: 1 0 66.666%;
	max-width: 66.666%
}

@media screen and (max-width:860px) {
	.dynamix-form [class*="form-line-"][class*="-two-thirds"] {
		flex: 1 0 100%;
		max-width: 100%
	}
}

.dynamix-form [class*="form-line-"][class*="none"] {
	margin: 0;
	display: none
}

.dynamix-form.compact-form {
	margin-bottom: -0.375em
}

.dynamix-form.compact-form .form-block {
	width: calc(100% + (0.75em / 2));
	margin-left: -0.1875em
}

.dynamix-form.compact-form [class*="form-line-"] {
	padding: 0 .1875em;
	margin-bottom: .375em
}

.dynamix-form.compact-form [class*="form-line-"] [class*="form-line-"] {
	margin-bottom: 0
}

@media screen and (max-width:860px) {
	.dynamix-form.compact-form [class*="form-line-"] {
		margin-bottom: .1875em
	}
}

.dynamix-form input[type="text"],
.dynamix-form input[type="tel"],
.dynamix-form input[type="tel"]:invalid,
.dynamix-form input[type="email"],
.dynamix-form input[type="email"]:invalid,
.dynamix-form textarea,
.dynamix-form input[type="datetime-local"],
.dynamix-form input[type="date"] {
	display: block;
	width: 100%;
	padding: 1.5em;
	font-size: .875em;
	background-color: rgba(96, 96, 96, 0.05);
	border: 0;
	border-radius: 3px;
	box-sizing: border-box
}

.dynamix-form textarea {
	min-height: 6em;
	border-radius: 3px
}

@media screen and (max-width:860px) {
	.dynamix-form textarea {
		position: static;
		width: 100%
	}
}

.dynamix-form .select-label {
	position: relative;
	display: block
}

.dynamix-form .select-label::before {
	content: "";
	position: absolute;
	display: block;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	right: 0;
	top: 50%;
	width: 3em;
	height: 3em;
	background-image: url("../images/svg/icon-chevron-dark-blue.svg");
	background-size: 35%;
	pointer-events: none;
	transform: translate(0, -50%) rotate(180deg)
}

.dynamix-form .select-label::after {
	content: "";
	position: absolute;
	display: block;
	right: 3em;
	top: 20%;
	width: 1px;
	height: 60%;
	background-color: #2f7f93
}

.dynamix-form .multi-title {
	color: #138caa;
	font-size: 1.125em;
	font-weight: 700
}

.dynamix-form select {
	display: block;
	width: 100%;
	padding: 1.5em;
	font-size: .875em;
	border: 1px solid rgba(96, 96, 96, 0.1);
	border-radius: 3px;
	background-color: rgba(96, 96, 96, 0.05);
	cursor: pointer
}

.dynamix-form input[type="radio"]~label,
.dynamix-form input[type="checkbox"]~label {
	position: relative;
	padding-left: 1.25em;
	cursor: pointer
}

.dynamix-form input[type="radio"]~label::before,
.dynamix-form input[type="checkbox"]~label::before {
	content: "";
	position: absolute;
	display: block;
	left: 0;
	top: 50%;
	width: .75em;
	height: .75em;
	margin-top: -0.375em;
	box-sizing: border-box;
	border: 1px solid #2f7f93;
	box-shadow: inset 0 0 0 .15em rgba(96, 96, 96, 0.05), inset 0 0 0 .375em rgba(96, 96, 96, 0.05);
	transition: box-shadow 325ms ease
}

.dynamix-form input[type="radio"]:checked~label::before,
.dynamix-form input[type="checkbox"]:checked~label::before {
	background-color: #2f7f93;
	box-shadow: inset 0 0 0 .15em rgba(96, 96, 96, 0.05), inset 0 0 0 .375em #2f7f93
}

.dynamix-form input[type="radio"]~label::before {
	border-radius: 50%
}

.dynamix-form ::-moz-placeholder {
	color: #606060;
	opacity: 1
}

.dynamix-form :-ms-input-placeholder {
	color: #606060
}

.dynamix-form ::placeholder {
	color: #606060
}

.dynamix-form.compact-form .embellished-input::before {
	right: .75em
}

.dynamix-form .embellished-input::before {
	content: "";
	position: absolute;
	display: block;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 10;
	right: 1.125em;
	top: 50%;
	width: 1em;
	height: 1em;
	margin-top: -0.5em;
	pointer-events: none
}

.dynamix-form .embellished-input.name::before {
	background-image: url("../images/svg/icon-user.svg")
}

.dynamix-form .embellished-input.email::before {
	background-image: url("../images/svg/icon-envelope.svg")
}

.dynamix-form .embellished-input.phone::before {
	background-image: url("../images/svg/icon-phone.svg")
}

.dynamix-form .embellished-input.search::before {
	background-image: url("../images/svg/icon-search.svg")
}

.form-btn-right button {
	display: block;
	margin: 0 auto;
	margin-right: 0
}

.textarea-rel textarea {
	position: relative;
	left: 0;
	width: 100%
}

.inview-fade {
	opacity: 0;
	transition: opacity 800ms
}

.inview-fade.inview {
	opacity: 1!important
}

.inview-fade-up {
	opacity: 0;
	transform: translate3d(0, 20px, 0);
	transition: opacity 600ms, transform 1200ms cubic-bezier(0.19, 1, 0.22, 1)
}

.inview-fade-up.inview {
	opacity: 1!important;
	transform: translate3d(0, 0, 0)!important
}

.inview-fade-scale-in {
	opacity: 0;
	transform: scale(0.5);
	transition: opacity 600ms, transform 1200ms cubic-bezier(0.19, 1, 0.22, 1)
}

.inview-fade-scale-in.inview {
	opacity: 1!important;
	transform: scale(1)!important
}

.inview-cascade-fade>* {
	opacity: 0;
	transition: opacity 800ms
}

.inview-cascade-fade.inview>* {
	opacity: 1!important
}

.inview-cascade-fade-up>* {
	opacity: 0;
	transform: translate3d(0, 20px, 0);
	transition: opacity 600ms, transform 1200ms cubic-bezier(0.19, 1, 0.22, 1)
}

.inview-cascade-fade-up.inview>* {
	opacity: 1!important;
	transform: translate3d(0, 0, 0)!important
}

.nav-overlay {
	display: none;
	background-color: rgba(96, 96, 96, 0.45)
}

@media screen and (max-width:950px) {
	.nav-overlay {
		display: block
	}
}

.nav-open .nav-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	display: block;
	width: 100%;
	height: 100%
}

@media screen and (max-width:1160px) {
	.site-navigation {
		font-size: .875em
	}
}

.site-navigation .nav-item-primary {
	position: relative;
	flex-grow: 1
}

.site-navigation .nav-item-primary:nth-last-of-type(3) .nav-link-primary::before {
	content: none
}

.site-navigation .nav-item-primary:hover .nav-link-primary {
	background-color: #138caa;
	color: #fff
}

.site-navigation .nav-item-primary:hover .nav-list-secondary-container {
	opacity: 1;
	pointer-events: initial
}

.site-navigation .nav-item-primary:focus-within .nav-link-primary {
	background-color: #138caa;
	color: #fff
}

.site-navigation .nav-item-primary:focus-within .nav-list-secondary-container {
	opacity: 1;
	pointer-events: initial
}

.site-navigation .nav-list-primary {
	display: flex;
	justify-content: flex-end;
	flex: 1 0 100%;
	height: 100%;
	list-style: none
}

.site-navigation .nav-link-primary {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 1.25em 1em;
	text-decoration: none;
	box-sizing: border-box;
	transition: background-color 325ms ease, color 325ms ease
}

.site-navigation .nav-link-primary::before {
	content: "";
	position: absolute;
	display: block;
	right: 0;
	top: 50%;
	width: 1px;
	height: 80%;
	background-color: rgba(96, 96, 96, 0.25);
	transform: translate(0, -50%)
}

@media screen and (max-width:1050px) {
	.site-navigation .nav-link-primary {
		padding: 1.25em .5em
	}
}

.site-navigation .nav-link-primary.active {
	font-weight: 700
}

.site-navigation .link-text {
	line-height: 1
}

.site-navigation .link-text span {
	text-decoration: underline
}

.site-navigation .nav-list-secondary-container {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	min-width: 230px;
	background-color: #fff;
	color: #606060;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
	opacity: 0;
	pointer-events: none;
	transform-origin: center;
	transition: all 425ms cubic-bezier(0.19, 1, 0.22, 1)
}

.site-navigation .nav-list-secondary {
	list-style: none
}

.site-navigation .nav-item-secondary {
	position: relative;
	padding: .125em;
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
	transition: background-color 425ms ease
}

.site-navigation .nav-item-secondary:hover .nav-link-secondary {
	background-color: #138caa;
	color: #fff
}

.site-navigation .nav-link-secondary {
	display: block;
	padding: .75em;
	font-size: 1em;
	text-decoration: none;
	border-radius: 3px;
	cursor: pointer;
	color: #138caa
}

.site-navigation .nav-link-secondary.active {
	font-weight: 700
}

.site-navigation .nav-button .nav-link-primary {
	background-color: rgba(96, 96, 96, 0.25);
	color: #fff;
	text-transform: uppercase;
	font-weight: 700
}

.site-navigation .nav-button .nav-link-primary:hover {
	background-color: rgba(96, 96, 96, 0.35)
}

.site-navigation .nav-button .nav-link-primary::before {
	position: static;
	width: 1em;
	height: 1em;
	margin-right: 1em;
	background-image: url("../images/svg/icon-power-white.svg");
	background-color: transparent;
	transform: translate(0, 0)
}

.site-navigation .search-item {
	position: relative
}

.site-navigation .search-item .nav-link-primary {
	padding: .25em .25em;
	background-color: #454545;
	cursor: pointer;
	border-radius: 0 3px 0 0
}

.site-navigation .search-item .nav-link-primary:hover {
	background-color: rgba(69, 69, 69, 0.95)
}

.site-navigation .search-item .nav-link-primary::after {
	content: '';
	position: static;
	width: 1.5em;
	height: 1.5em;
	background-image: url("../images/svg/icon-search-white.svg");
	background-color: transparent;
	transform: translate(0, 0)
}

.site-navigation .search-wrapper {
	position: absolute;
	right: 0;
	top: 100%;
	padding: .25em;
	background-color: #fff;
	opacity: 0;
	pointer-events: none;
	transition: opacity 325ms ease
}

.site-navigation .search-wrapper input {
	width: 300px;
	padding: .5em
}

.site-navigation .search-wrapper:focus-within {
	opacity: 1;
	pointer-events: auto
}

.site-navigation .nav-item-primary.mega-nav {
	position: static
}

.site-navigation .nav-item-primary.mega-nav:hover .nav-list-mega-container {
	opacity: 1;
	transform: scale3d(1, 1, 1);
	pointer-events: auto
}

.site-navigation .nav-item-primary.mega-nav:focus-within .nav-list-mega-container {
	opacity: 1;
	transform: scale3d(1, 1, 1);
	pointer-events: auto
}

.site-navigation .nav-list-mega-container {
	position: absolute;
	top: 100%;
	left: 3em;
	width: calc(100% - 6em);
	padding: 2em;
	display: grid;
	grid-template-columns: 35% 65%;
	align-items: center;
	background-color: white;
	transform: scale3d(1, 0.85, 1);
	transform-origin: top;
	transition: transform 425ms ease, opacity 425ms ease;
	pointer-events: none;
	opacity: 0
}

.site-navigation .nav-list-mega-container .mega-content-item {
	pointer-events: none!important
}

.site-navigation .mega-column {
	position: relative
}

.site-navigation .mega-column:nth-of-type(1)::before {
	content: "";
	position: absolute;
	display: block;
	top: 50%;
	right: -3em;
	height: 80%;
	width: 1px;
	background-color: #d0d0d0;
	transform: translate(0, -50%)
}

.site-navigation .mega-column.split {
	display: grid;
	grid-template-columns: 1fr 1fr
}

.site-navigation .mega-nav-list {
	list-style: none
}

.site-navigation .mega-nav-list.locations-list {
	-moz-column-count: 2;
	column-count: 2
}

.site-navigation .mega-nav-link {
	display: block;
	padding: .5em;
	color: #138caa;
	text-decoration: none;
	transition: color 325ms ease, background-color 325ms ease
}

.site-navigation .mega-nav-link:hover {
	background-color: #138caa;
	color: #fff
}

.site-navigation .mega-content-item {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	display: grid;
	padding-left: 6em;
	grid-gap: 2em;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all 425ms ease
}

.site-navigation .mega-content-item strong:first-of-type {
	display: none
}

.site-navigation .mega-content-item.active {
	position: static;
	pointer-events: auto;
	opacity: 1;
	visibility: visible
}

.mobile-navigation-wrapper {
	display: none
}

@media screen and (max-width:1030px) {
	.mobile-navigation-wrapper {
		display: block
	}
}

.mobile-navigation {
	position: fixed;
	z-index: 10001;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: .5em;
	padding-bottom: 1em;
	background-color: #fff;
	box-shadow: 0 0 5px rgba(96, 96, 96, 0.4)
}

.mobile-navigation .mobile-navigation-items {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center
}

.mobile-navigation .mobile-navigation-item {
	flex: 0 0 18.75%
}

@media screen and (max-width:450px) {
	.mobile-navigation .mobile-navigation-item {
		flex: 0 0 20%
	}
}

.mobile-navigation .mobile-navigation-item:nth-of-type(1) .mobile-navigation-link {
	color: #138caa
}

.mobile-navigation .mobile-navigation-item:nth-of-type(1) .mobile-navigation-link::before {
	background-image: url("../images/svg/icon-schedule-white.svg");
	background-color: #138caa
}

.mobile-navigation .mobile-navigation-item:nth-of-type(2) .mobile-navigation-link {
	color: #138caa
}

.mobile-navigation .mobile-navigation-item:nth-of-type(2) .mobile-navigation-link::before {
	background-image: url("../images/svg/icon-portal-white.svg");
	background-color: #138caa
}

.mobile-navigation .mobile-navigation-item:nth-of-type(4) .mobile-navigation-link {
	color: #138caa
}

.mobile-navigation .mobile-navigation-item:nth-of-type(4) .mobile-navigation-link::before {
	background-image: url("../images/svg/icon-map-white.svg");
	background-color: #138caa
}

.mobile-navigation .mobile-navigation-item:nth-of-type(5) .mobile-navigation-link {
	color: #138caa
}

.mobile-navigation .mobile-navigation-item:nth-of-type(5) .mobile-navigation-link::before {
	background-image: url("../images/svg/icon-doctor-white.svg");
	background-color: #138caa
}

.mobile-navigation .special-item {
	flex: 0 0 25%;
	margin-top: -0.75em
}

@media screen and (max-width:450px) {
	.mobile-navigation .special-item {
		flex: 0 0 20%
	}
}

.mobile-navigation .special-item .mobile-navigation-link {
	position: relative;
	padding: .5em;
	margin: 0 auto;
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background-color: #138caa;
	box-shadow: 0 0 0 .675em #fff;
	color: #fff;
	cursor: pointer
}

@media screen and (max-width:450px) {
	.mobile-navigation .special-item .mobile-navigation-link {
		font-size: .875em
	}
}

.mobile-navigation .special-item .mobile-navigation-link::before {
	content: '';
	display: block;
	margin: .25em auto 0;
	width: 1.875em;
	height: 1.875em;
	padding: 0;
	background-image: url("../images/svg/icon-menu-white.svg");
	background-size: 75%;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 0;
	transition: background-image 425ms ease
}

.mobile-navigation .special-item .mobile-navigation-link::after {
	content: "";
	position: absolute;
	display: block;
	z-index: -1;
	left: 0;
	top: -9px;
	width: 100%;
	height: 3em;
	border-radius: 50% 50% 0 0;
	box-shadow: 0 0 5px rgba(96, 96, 96, 0.4)
}

.mobile-navigation .special-item .mobile-navigation-link.open::before {
	background-image: url("../images/svg/icon-close-white.svg")
}

.mobile-navigation .mobile-navigation-link {
	position: relative;
	display: block;
	font-size: .875em;
	line-height: 1;
	text-decoration: none;
	padding: 0 .25em
}

.mobile-navigation .mobile-navigation-link::before {
	content: '';
	display: block;
	margin: 0 auto;
	width: 1.25em;
	height: 1.25em;
	margin-bottom: .375em;
	padding: .5em;
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%
}

@media screen and (max-width:450px) {
	.mobile-navigation .mobile-navigation-link {
		font-size: .75em
	}
}

.mobile-navigation-container {
	position: fixed;
	z-index: 10000;
	top: 100%;
	left: 0;
	padding-bottom: 8em;
	width: 100%;
	height: 100%;
	overflow: scroll;
	background-color: #5ab5ce;
	color: #fff;
	transition: transform 525ms ease
}

.mobile-navigation-container.active,
.mobile-navigation-container:focus-within {
	transform: translate(0, -100%)
}

.mobile-navigation-container .first-menu {
	background-color: #76d7f0
}

.mobile-navigation-container .first-menu .nav-link-primary {
	text-transform: uppercase
}

.mobile-navigation-container .second-menu .nav-link-primary {
	text-transform: lowercase
}

.mobile-navigation-container .nav-list-primary {
	list-style: none;
	margin: 0;
	padding: 0
}

.mobile-navigation-container .nav-link-primary {
	position: relative;
	display: block;
	padding: .75em;
	border-bottom: 1px solid rgba(255, 255, 255, 0.6);
	font-size: 1.125em;
	text-decoration: none
}

.mobile-navigation-container .nav-link-primary.open+.nav-list-secondary-container {
	display: block
}

.mobile-navigation-container .nav-link-primary.open .toggle {
	transform: rotate(0deg)
}

.mobile-navigation-container .nav-link-primary[role="button"] .toggle {
	pointer-events: none
}

.mobile-navigation-container .nav-list-secondary-container,
.mobile-navigation-container .nav-list-tertiary-container {
	display: none
}

.mobile-navigation-container .nav-list-secondary {
	list-style: none
}

.mobile-navigation-container .mega-title {
	margin-top: .25em;
	padding-left: 1em;
	font-size: 1.25em;
	font-weight: 700
}

.mobile-navigation-container .mega-column:nth-of-type(2) {
	display: none
}

.mobile-navigation-container .mega-nav-list {
	list-style: none
}

.mobile-navigation-container .nav-link-secondary.open+.nav-list-tertiary-container {
	display: block
}

.mobile-navigation-container .nav-link-secondary.open .toggle {
	transform: rotate(0deg)
}

.mobile-navigation-container .nav-link-secondary,
.mobile-navigation-container .nav-link-tertiary {
	position: relative;
	display: block;
	padding: .25em 1em .25em 2em;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4)
}

.mobile-navigation-container .nav-link-tertiary {
	padding: .25em 1em .25em 2.75em;
	background-color: #138caa
}

.mobile-navigation-container .toggle {
	position: absolute;
	right: 0;
	top: 0;
	width: 2em;
	height: 100%;
	background-image: url("../images/svg/icon-chevron-white.svg");
	background-size: 25%;
	background-position: center;
	background-repeat: no-repeat;
	transform: rotate(90deg);
	transition: transform 425ms ease
}

.mobile-navigation-container .hidden {
	display: none
}

.mobile-navigation-container .search-item {
	position: relative
}

.mobile-navigation-container .search-item::before {
	content: "";
	position: absolute;
	display: block;
	left: 1em;
	top: 50%;
	width: 1.375em;
	height: 1.375em;
	background-image: url("../images/svg/icon-search-white.svg");
	background-size: contain;
	background-position: center;
	transform: translate(0, -50%)
}

.mobile-navigation-container .search-form {
	padding-left: 2.25rem;
	font-size: 0;
	line-height: 0
}

.mobile-navigation-container input[type="text"] {
	padding: .75em 1em;
	width: 100%;
	max-width: 250px;
	font-size: 1rem;
	border: 1px solid #f5f5f5
}

.alert-bar {
	padding: .5em 0;
	margin-top: -2em;
	margin-bottom: 2em;
	background-color: #138caa;
	color: #fff;
	text-align: center
}

@media screen and (max-width:750px) {
	.alert-bar {
		margin-top: -1em;
		margin-bottom: 1em
	}
}

.alert-bar .width-container {
	max-width: 1000px
}

.alert-bar .content-container a {
	color: #fff;
	border-color: #fff
}

.header {
	padding: 2em 0 0;
	background-color: #fff
}

@media screen and (max-width:1030px) {
	.header {
		padding: 2em 0
	}
}

@media screen and (max-width:750px) {
	.header {
		padding: 1em 0 0
	}
}

.header .skip-links {
	position: absolute;
	top: 0;
	left: 0;
	padding: 1em;
	border: 2px solid #454545;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	opacity: 0;
	z-index: -3;
	transition: opacity 300ms ease
}

.header .skip-links:focus-within {
	opacity: 1;
	z-index: 1
}

.header .width-container {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between
}

@media screen and (max-width:920px) {
	.header .width-container {
		justify-content: center;
		text-align: center
	}
}

.header .logo-col {
	display: flex;
	align-items: center;
	flex-shrink: 0
}

@media screen and (max-width:920px) {
	.header .logo-col {
		flex: 1 0 100%;
		margin-bottom: 1em
	}
}

@media screen and (max-width:650p) {
	.header .logo-col {
		margin-bottom: 0
	}
}

.header .logo {
	padding-right: 2em
}

@media screen and (max-width:920px) {
	.header .logo {
		padding-right: 0;
		margin: 0 auto
	}
}

.header .logo-image {
	display: block;
	width: 300px
}

.header .site-navigation {
	display: flex;
	margin-top: 2em;
	flex: 1 0 100%;
	align-items: center;
	background-color: #f5f5f5
}

@media screen and (max-width:1030px) {
	.header .site-navigation {
		display: none
	}
}

.header .nav-col {
	flex: 1 0 100%
}

@media screen and (max-width:650px) {
	.header .button-col {
		display: none
	}
}

.header .header-btn {
	position: relative;
	display: inline-block;
	padding: 1.25em 1.5em 1.25em 3.5em;
	border-radius: 3px;
	color: #fff;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 325ms ease
}

@media screen and (max-width:1030px) {
	.header .header-btn {
		font-size: .875em
	}
}

.header .header-btn::before {
	content: "";
	position: absolute;
	display: block;
	left: 0;
	top: 50%;
	padding: .5em;
	width: 1.25em;
	height: 1.25em;
	background-size: 1em;
	background-position: center;
	background-repeat: no-repeat;
	background-color: rgba(0, 0, 0, 0.15);
	transform: translate(0, -50%)
}

.header .header-btn.world {
	margin-right: .5em;
	background-color: #76d7f0
}

.header .header-btn.world::before {
	background-image: url("../images/svg/icon-globe-white.svg")
}

.header .header-btn.world:hover,
.header .header-btn.world:focus {
	background-color: #31c3e8
}

.header .header-btn.calendar {
	background-color: #4f8877
}

.header .header-btn.calendar::before {
	background-image: url("../images/svg/icon-calendar-white.svg")
}

.header .header-btn.calendar:hover,
.header .header-btn.calendar:focus {
	background-color: #33584d
}

.landing-page .header {
	padding: 1em 0
}

.landing-page section {
	padding: 1.5em 0
}

.layout-home-hero {
	padding: 0;
	color: #fff
}

@media screen and (max-width:700px) {
	.layout-home-hero .width-container {
		padding: 0
	}
}

.layout-home-hero .inner-container {
	position: relative;
	z-index: 0;
	padding: 4em 2em;
	text-align: center;
	background-size: contain;
	background-position: top;
	background-repeat: no-repeat
}

@media screen and (max-width:1050px) {
	.layout-home-hero .inner-container {
		background-size: 1000px auto;
		padding: 4em 1em
	}
}

.layout-home-hero .inner-container::before {
	content: "";
	position: absolute;
	display: block;
	z-index: -2;
	left: 0;
	bottom: 52%;
	width: 100%;
	height: 250px;
	background-image: linear-gradient(to top, #fff 0, #fff 65%, rgba(255, 255, 255, 0.5) 85%, transparent);
	transform: translate(0, 50%)
}

@media screen and (max-width:1050px) {
	.layout-home-hero .inner-container::before {
		bottom: auto;
		top: 135px
	}
}

.layout-home-hero .inner-container::after {
	content: "";
	z-index: -1;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: .9;
	background-image: linear-gradient(to bottom, #76d7f0, #d78f3b)
}

.layout-home-hero .hero-title {
	max-width: 17em;
	margin: 0 auto;
	font-weight: 700;
	font-size: 40px;
	line-height: 1.2;
	letter-spacing: -0.56px;
	text-transform: uppercase
}

@media screen and (max-width:460px) {
	.layout-home-hero .hero-title {
		font-size: 24px
	}
}

.layout-home-hero .mobile-find-doctor-button {
	display: none;
	margin: 4em 0;
	font-size: 1.25em
}

@media screen and (max-width:850px) {
	.layout-home-hero .mobile-find-doctor-button {
		display: block
	}
}

.layout-home-hero .search-title {
	position: relative;
	margin: 3rem 0;
	padding-top: 4rem;
	font-size: 1.75em;
	font-weight: 700
}

.layout-home-hero .search-title::before {
	content: "";
	position: absolute;
	display: block;
	left: 50%;
	top: 0;
	width: 4em;
	height: 4px;
	background-color: #159cbd;
	transform: translate(-50%, -50%)
}

@media screen and (max-width:850px) {
	.layout-home-hero .search-title {
		display: none
	}
}

.layout-home-hero .search-wrapper {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 12em;
	text-align: left
}

@media screen and (max-width:850px) {
	.layout-home-hero .search-wrapper {
		display: none
	}
}

.layout-home-hero .listbox {
	opacity: 1;
	pointer-events: initial;
	transform: scale3d(1, 1, 1)
}

.layout-home-hero .dropdown-item.focused .dropdown-link::before {
	opacity: 1
}

.layout-home-hero .column {
	position: relative;
	flex: 0 0 30%
}

.layout-home-hero .column:first-of-type,
.layout-home-hero .column:nth-child(2) {
	margin-right: 5%
}

.layout-home-hero .column:first-of-type::after,
.layout-home-hero .column:nth-child(2)::after {
	content: "";
	position: absolute;
	display: block;
	right: -5%;
	top: 50%;
	font-size: 1.125em;
	content: 'Or';
	transform: translate(100%, -50%);
	pointer-events: none
}

@media screen and (max-width:900px) {
	.layout-home-hero .column {
		flex: 0 0 27%
	}
	.layout-home-hero .column:first-of-type,
	.layout-home-hero .column:nth-child(2) {
		margin-right: 9.5%
	}
	.layout-home-hero .column:first-of-type::after,
	.layout-home-hero .column:nth-child(2)::after {
		right: -12.5%
	}
}

.layout-home-hero .services-poly-wrapper {
	position: relative;
	max-width: 1100px;
	margin: 0 auto
}

@media screen and (max-width:1100px) {
	.layout-home-hero .services-poly-wrapper {
		max-width: 600px
	}
}

@media screen and (max-width:840px) {
	.layout-home-hero .services-poly-wrapper svg {
		display: none
	}
}

.layout-home-hero .services-poly-wrapper svg g {
	transform-origin: center center;
	opacity: 1
}

.layout-home-hero .services-poly-wrapper svg g.poly {
	cursor: pointer
}

.layout-home-hero .services-poly-wrapper svg g.poly.active polygon,
.layout-home-hero .services-poly-wrapper svg g.poly:hover polygon {
	opacity: 1
}

.layout-home-hero .services-poly-wrapper svg g.poly polygon {
	opacity: .80;
	transition: opacity 400ms ease
}

.layout-home-hero .service-list {
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
	opacity: 1;
	transition: opacity 400ms 300ms
}

@media screen and (max-width:840px) {
	.layout-home-hero .service-list {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap: 1em;
		align-items: center
	}
}

@media screen and (max-width:625px) {
	.layout-home-hero .service-list {
		grid-gap: .25em
	}
}

@media screen and (max-width:500px) {
	.layout-home-hero .service-list {
		grid-template-columns: 1fr
	}
}

.layout-home-hero .service-link {
	text-decoration: none
}

@media screen and (max-width:840px) {
	.layout-home-hero .service-link {
		position: relative;
		display: block;
		padding: 20px 10px;
		margin: 0 5px 20px;
		border: 5px solid #fff;
		border-radius: 100px;
		overflow: hidden;
		transition: all 300ms ease
	}
	.layout-home-hero .service-link:hover,
	.layout-home-hero .service-link:focus {
		/* background: #5ab5ce */
	}
}

@media screen and (max-width:500px) {
	.layout-home-hero .service-link {
		margin-bottom: 10px;
		padding: 15px 10px
	}
}

.layout-home-hero .mobile-image {
	display: none
}

@media screen and (max-width:840px) {
	.layout-home-hero .mobile-image {
		position: absolute;
		display: block;
		left: 0;
		top: 0;
		width: 60px;
		height: 100%;
		border-radius: 0;
		background-size: cover;
		background-position: center center
	}
}

.layout-home-hero .service-title {
	margin: 0;
	position: relative;
	font-weight: bold;
	color: #000;
	transition: color 300ms ease
}
.layout-home-hero a.service-link:hover .service-title {color: #01a8ec !important;}
.layout-home-hero .service-title::after {
	content: "";
	display: block;
	height: 34px;
	width: 202px;
	margin-top: 3px
}

@media screen and (min-width:1101px) {
	.layout-home-hero .service-title {
		font-size: 1.125em
	}
}

@media screen and (max-width:840px) {
	.layout-home-hero .service-title br {
		display: none
	}
	.layout-home-hero .service-title::after {
		display: none
	}
}

.layout-home-hero .service-list-item {
	position: absolute;
	/* text-transform: uppercase; */
    font-size: 18px;
	line-height: 1
}

@media screen and (max-width:840px) {
	.layout-home-hero .service-list-item {
		position: static;
		text-transform: none;
		line-height: 1.5em
	}
	.layout-home-hero .service-list-item .service-link {
		font-size: 1em;
		padding: 1em .75em
	}
	.layout-home-hero .service-list-item .service-title {
		padding-left: 65px;
		text-align: right
	}
}

@media screen and (max-width:500px) {
	.layout-home-hero .service-list-item {
		width: 100%
	}
}

.layout-home-hero .service-list-item.service-list-item-1 {
	top: 79%;
	left: 18%
}

@media screen and (max-width:768px) {
	.layout-home-hero .service-list-item.service-list-item-1 {
		top: 82%;
		left: 20%
	}
}

.layout-home-hero .service-list-item.service-list-item-1 .service-title::after {
	background-image: url("../images/line-left-top.png");
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: -45px
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
	.layout-home-hero .service-list-item.service-list-item-1 .service-title::after {
		background-image: url("../images/line-left-top@2x.png");
		background-size: contain
	}
}

.layout-home-hero .service-list-item.service-list-item-2 {
	bottom: 64%;
	right: 74%
}

@media screen and (min-width:841px) {
	.layout-home-hero .service-list-item.service-list-item-2 .service-title {
		text-align: left
	}
}

.layout-home-hero .service-list-item.service-list-item-2 .service-title::after {
	background-image: url("../images/line-right-bottom.png");
	background-size: contain;
	background-repeat: no-repeat
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
	.layout-home-hero .service-list-item.service-list-item-2 .service-title::after {
		background-image: url("../images/line-right-bottom@2x.png");
		background-size: contain
	}
}

.layout-home-hero .service-list-item.service-list-item-3 {
	bottom: 89%;
	right: 65%
}

@media screen and (min-width:841px) {
	.layout-home-hero .service-list-item.service-list-item-3 .service-title {
		text-align: left
	}
}

.layout-home-hero .service-list-item.service-list-item-3 .service-title::after {
	background-image: url("../images/line-right-bottom.png");
	background-size: contain;
	background-repeat: no-repeat
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
	.layout-home-hero .service-list-item.service-list-item-3 .service-title::after {
		background-image: url("../images/line-right-bottom@2x.png");
		background-size: contain
	}
}

.layout-home-hero .service-list-item.service-list-item-4 {
	bottom: 91%;
	left: 58%
}

@media screen and (min-width:841px) {
	.layout-home-hero .service-list-item.service-list-item-4 .service-title {
		text-align: right
	}
}

.layout-home-hero .service-list-item.service-list-item-4 .service-title::after {
	background-image: url("../images/line-left-bottom.png");
	background-size: contain;
	background-repeat: no-repeat
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
	.layout-home-hero .service-list-item.service-list-item-4 .service-title::after {
		background-image: url("../images/line-left-bottom@2x.png");
		background-size: contain
	}
}

.layout-home-hero .service-list-item.service-list-item-5 {
	top: 63%;
	right: 46%
}

@media screen and (max-width:1100px) {
	.layout-home-hero .service-list-item.service-list-item-5 {
		top: 66%;
		right: 38%;
		width: 160px
	}
	.layout-home-hero .service-list-item.service-list-item-5 .service-title::after {
		width: 160px;
		left: 23px!important
	}
}

@media screen and (max-width:840px) {
	.layout-home-hero .service-list-item.service-list-item-5 {
		width: auto
	}
}

@media screen and (max-width:768px) {
	.layout-home-hero .service-list-item.service-list-item-5 {
		right: 49%
	}
}

.layout-home-hero .service-list-item.service-list-item-5 .service-title {
	text-align: right
}

.layout-home-hero .service-list-item.service-list-item-5 .service-title::after {
	background-image: url("../images/line-right-top.png");
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 5px;
left: -50px;
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
	.layout-home-hero .service-list-item.service-list-item-5 .service-title::after {
		background-image: url("../images/line-right-top@2x.png");
		background-size: contain
	}
}

.layout-home-hero .service-list-item.service-list-item-6 {
	bottom: 63%;
	left: 80%
}

.layout-home-hero .service-list-item.service-list-item-6 .service-title {
	text-align: right
}

.layout-home-hero .service-list-item.service-list-item-6 .service-title::after {
	background-image: url("../images/line-left-bottom.png");
	background-size: contain;
	background-repeat: no-repeat
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
	.layout-home-hero .service-list-item.service-list-item-6 .service-title::after {
		background-image: url("../images/line-left-bottom@2x.png");
		background-size: contain
	}
}

.layout-hero {
	padding: 0;
	color: #fff
}

@media screen and (max-width:800px) {
	.layout-hero .width-container {
		padding: 0
	}
}

.layout-hero .announcement-bar {
	padding: .5em 2em;
	background-color: #454545;
	color: #fff;
	font-size: 1.125em;
	font-weight: 300
}

.layout-hero .inner-container {
	position: relative;
	z-index: 0;
	padding: 15em 4em 4em;
	background-position: center;
	background-size: cover
}

@media screen and (max-width:800px) {
	.layout-hero .inner-container {
		padding: 0 2em 2em;
		background-position: top;
		background-size: 100% auto;
		background-repeat: no-repeat;
		overflow: hidden
	}
}

.layout-hero .inner-container::before {
	content: "";
	position: absolute;
	display: block;
	z-index: -1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to left bottom, rgba(118, 215, 240, 0), #159cbd)
}

@media screen and (max-width:800px) {
	.layout-hero .inner-container::before {
		top: calc((5/13) * 100vw);
		opacity: 1;
		background-image: linear-gradient(to left bottom, rgba(118, 215, 240, 0.25) -50%, #159cbd 100%)
	}
}

.layout-hero .page-title {
	margin-bottom: .25em;
	text-transform: uppercase;
	font-weight: 900;
	font-size: 3em;
	text-shadow: 1px 1px 1px #10768f;
	letter-spacing: 2px;
	line-height: 1.125
}

@media screen and (max-width:800px) {
	.layout-hero .page-title {
		padding-top: calc((5/13) * 100vw);
		margin-top: 1em
	}
}

@media screen and (max-width:750px) {
	.layout-hero .page-title {
		font-size: 2em
	}
}

.layout-hero .page-subtitle {
	font-size: 2em;
	line-height: 1.125
}

@media screen and (max-width:951px) {
	.layout-hero .page-subtitle {
		max-width: 50%
	}
}

@media screen and (max-width:700px) {
	.layout-hero .page-subtitle {
		font-size: 1.5em
	}
}

.layout-hero .page-subtitle strong {
	font-weight: 700
}

.layout-hero .page-subtitle em {
	font-style: italic
}

.layout-hero .content-container a {
	color: #fff;
	border-bottom-color: #fff
}

.layout-hero .btn {
	margin-top: 1em;
	font-size: 1.125em;
	font-weight: 700;
	text-transform: uppercase
}

@media screen and (max-width:700px) {
	.layout-hero .btn {
		display: block;
		max-width: 450px;
		margin: 1em auto 0;
		font-size: 1em;
		text-align: center
	}
}

.layout-locations-map {
	position: relative;
	padding: 2em 0 0
}

.layout-locations-map .width-container {
	position: relative;
	padding: 0;
	overflow: hidden
}

.layout-locations-map .filter-map-container {
	position: absolute;
	z-index: 9999;
	top: 2em;
	left: 50%;
	display: flex;
	justify-content: center;
	width: 100%;
	border-radius: 3px;
	overflow: hidden;
	transform: translate(-50%, 0)
}

@media screen and (max-width:600px) {
	.layout-locations-map .filter-map-container {
		position: static;
		transform: none
	}
}

@media screen and (max-width:525px) {
	.layout-locations-map .filter-map-container {
		display: grid;
		grid-template-columns: 1fr 1fr;
		border-radius: 0
	}
}

.layout-locations-map .filter-map-link {
	margin: 0;
	border-right: 1px solid #fff;
	border-radius: 0;
	background-image: none;
	font-family: "Lato", sans-serif;
	font-size: 1em
}

.layout-locations-map .filter-map-link:last-of-type {
	border-right: 0
}

.layout-locations-map .filter-map-link:not(.active) {
	opacity: .8
}

.layout-locations-map .filter-map-link.active {
	background-color: #138caa
}

@media screen and (max-width:525px) {
	.layout-locations-map .filter-map-link:nth-of-type(2) {
		border-right: 0
	}
}

.layout-locations-map .mapbox {
	height: 700px;
	margin: 0 auto;
	width: calc(100% - 6em)
}

@media screen and (max-width:1000px) {
	.layout-locations-map .mapbox {
		width: calc(100% - 4em)
	}
}

@media screen and (max-width:700px) {
	.layout-locations-map .mapbox {
		width: 100%
	}
}

.layout-locations-map .marker {
	cursor: pointer
}

.layout-locations-map .leaflet-marker-icon:focus {
	top: 10px
}

.layout-locations-map .leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	text-align: center;
	width: 1em;
	height: 1em;
	text-decoration: none;
	font-size: 1.25em;
	font-weight: 700;
	line-height: 1;
	background: transparent
}

.layout-locations-map .leaflet-popup-close-button:hover,
.layout-locations-map .leaflet-popup-close-button:focus {
	color: #454545
}

.layout-locations-map .marker-image {
	display: block;
	width: 100%
}

.layout-locations-map .marker-title {
	margin: .25em 0;
	color: #159cbd;
	font-size: 1.5em;
	line-height: 1.125
}

.layout-locations-map .marker-address,
.layout-locations-map .marker-phone,
.layout-locations-map .marker-hours {
	position: relative;
	padding-left: 1.5em;
	margin-bottom: .375em;
	font-size: .875em
}

.layout-locations-map .marker-address::before,
.layout-locations-map .marker-phone::before,
.layout-locations-map .marker-hours::before {
	content: "";
	position: absolute;
	display: block;
	left: 0;
	top: .375em;
	width: .875em;
	height: .875em;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center
}

.layout-locations-map .marker-address::before {
	background-image: url("../images/svg/icon-address-gray.svg")
}

.layout-locations-map .marker-phone::before {
	background-image: url("../images/svg/icon-phone-gray.svg")
}

.layout-locations-map .marker-hours::before {
	background-image: url("../images/svg/icon-clock-gray.svg")
}

.layout-locations-map .marker-btn {
	display: block;
	margin-top: .75em;
	color: #fff
}

.layout-locations-map .bottom-button {
	position: absolute;
	z-index: 9999;
	bottom: 2em;
	left: 50%;
	transform: translate(-50%, 0)
}

.layout-testimonial-slider {
	position: relative;
	z-index: 0;
	padding: 8em 0 3em;
	background-size: cover;
	background-position: center;
	color: #fff
}

@media screen and (max-width:600px) {
	.layout-testimonial-slider {
		padding: 3em 0
	}
	.layout-testimonial-slider .section-title,
	.layout-testimonial-slider .layout-full-width-content .search-title,
	.layout-full-width-content .layout-testimonial-slider .search-title,
	.layout-testimonial-slider .layout-content-video-columns .column-title,
	.layout-content-video-columns .layout-testimonial-slider .column-title {
		margin-bottom: 0
	}
	.layout-testimonial-slider .btn {
		display: none
	}
}

@media screen and (max-width:376px) {
	.layout-testimonial-slider {
		background-position: -80%
	}
}

.layout-testimonial-slider::before {
	content: "";
	position: absolute;
	display: block;
	z-index: -1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(38, 58, 88, 0.7)
}

.layout-testimonial-slider .slider-container {
	position: relative
}

.layout-testimonial-slider .slide {
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	transition: all 425ms ease
}

.layout-testimonial-slider .slide.active {
	position: static;
	opacity: 1;
	visibility: visible
}

@media screen and (max-width:560px) {
	.layout-testimonial-slider .slide {
		flex-wrap: wrap
	}
}

.layout-testimonial-slider .title-container {
	flex: 0 0 30%
}

@media screen and (max-width:560px) {
	.layout-testimonial-slider .title-container {
		flex: 1 0 100%;
		margin-bottom: 2em
	}
}

.layout-testimonial-slider .content-column {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 225px;
	flex-grow: 1;
	padding-left: 25%
}

@media screen and (max-width:900px) {
	.layout-testimonial-slider .content-column {
		padding-left: 10%
	}
}

@media screen and (max-width:560px) {
	.layout-testimonial-slider .content-column {
		padding-left: 0
	}
}

.layout-testimonial-slider .attribution {
	font-weight: 700;
	text-transform: uppercase
}

.layout-testimonial-slider .content {
	margin: .875em 0 1.875em;
	font-size: 1.125em
}

.layout-testimonial-slider .cta-link {
	position: relative;
	align-self: flex-start
}

.layout-testimonial-slider .cta-link::after {
	content: "";
	position: absolute;
	display: block;
	left: 0;
	bottom: 0;
	width: calc(100% - 2.5em);
	height: 1px;
	transition: background-color 300ms ease
}

.layout-testimonial-slider .cta-link:hover::after,
.layout-testimonial-slider .cta-link:focus::after {
	background-color: currentColor
}

.layout-testimonial-slider .pagination-container {
	margin-top: 5em;
	flex: 1 0 100%;
	text-align: center
}

.layout-testimonial-slider .pagination-list {
	display: flex;
	justify-content: center;
	margin-right: -1em;
	list-style: none
}

.layout-testimonial-slider .slide-pager-item {
	display: grid;
	place-content: center;
	width: 2em;
	height: 2em;
	margin: 0;
	border: 0;
	padding: .5em;
	background-color: transparent;
	background-image: none;
	font-family: "Lato", sans-serif;
	font-size: 1em;
	line-height: 0;
	cursor: pointer
}

.layout-testimonial-slider .slide-pager-item::before {
	content: "";
	border-radius: 50%;
	width: .75em;
	height: .75em;
	background-color: #fff;
	transition: background-color 325ms ease
}

.layout-testimonial-slider .slide-pager-item.active::before {
	background-color: #5ab5ce
}

.layout-cta-bar {
	position: relative;
	z-index: 5;
	padding: 3em 0
}

.layout-cta-bar.dark {
	background-color: #606060
}

.layout-cta-bar.dark::before,
.layout-cta-bar.dark::after {
	filter: brightness(0) invert(1)
}

.layout-cta-bar.blue {
	background-color: #138caa
}

.layout-cta-bar.blue::before,
.layout-cta-bar.blue::after {
	filter: brightness(0) invert(1)
}

.layout-cta-bar::before {
	content: "";
	position: absolute;
	display: block;
	z-index: -1;
	left: 0;
	top: 5%;
	width: 100%;
	height: 90%;
	background-image: url("../images/polygons-cta-left.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left center;
	opacity: .25
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
	.layout-cta-bar::before {
		background-image: url("../images/polygons-cta-left@2x.png");
		background-size: contain
	}
}

@media screen and (max-width:620px) {
	.layout-cta-bar::before {
		display: none
	}
}

.layout-cta-bar::after {
	content: "";
	position: absolute;
	display: block;
	z-index: -1;
	right: 0;
	top: 5%;
	width: 100%;
	height: 90%;
	background-image: url("../images/polygons-cta-left.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right center;
	opacity: .25
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
	.layout-cta-bar::after {
		background-image: url("../images/polygons-cta-left@2x.png");
		background-size: contain
	}
}

.layout-cta-bar .width-container {
	display: flex;
	align-items: center;
	justify-content: space-between
}

@media screen and (max-width:620px) {
	.layout-cta-bar .width-container {
		justify-content: center;
		flex-wrap: wrap;
		text-align: center
	}
}

.layout-cta-bar .section-title,
.layout-cta-bar .layout-full-width-content .search-title,
.layout-full-width-content .layout-cta-bar .search-title,
.layout-cta-bar .layout-content-video-columns .column-title,
.layout-content-video-columns .layout-cta-bar .column-title {
	flex-grow: 0;
	margin-bottom: 0;
	margin-right: 1em
}

@media screen and (max-width:620px) {
	.layout-cta-bar .section-title,
	.layout-cta-bar .layout-full-width-content .search-title,
	.layout-full-width-content .layout-cta-bar .search-title,
	.layout-cta-bar .layout-content-video-columns .column-title,
	.layout-content-video-columns .layout-cta-bar .column-title {
		flex: 1 0 100%;
		margin: 0 0 1em
	}
}

.layout-cta-bar .section-title[data-title-theme="white"],
.layout-cta-bar .layout-full-width-content .search-title[data-title-theme="white"],
.layout-full-width-content .layout-cta-bar .search-title[data-title-theme="white"],
.layout-cta-bar .layout-content-video-columns .column-title[data-title-theme="white"],
.layout-content-video-columns .layout-cta-bar .column-title[data-title-theme="white"] {
	text-shadow: 0 0 15px #fff
}

.layout-cta-bar .section-title[data-title-theme="blue"],
.layout-cta-bar .layout-full-width-content .search-title[data-title-theme="blue"],
.layout-full-width-content .layout-cta-bar .search-title[data-title-theme="blue"],
.layout-cta-bar .layout-content-video-columns .column-title[data-title-theme="blue"],
.layout-content-video-columns .layout-cta-bar .column-title[data-title-theme="blue"] {
	text-shadow: 0 0 15px #138caa
}

.layout-cta-bar .section-title[data-title-theme="dark"],
.layout-cta-bar .layout-full-width-content .search-title[data-title-theme="dark"],
.layout-full-width-content .layout-cta-bar .search-title[data-title-theme="dark"],
.layout-cta-bar .layout-content-video-columns .column-title[data-title-theme="dark"],
.layout-content-video-columns .layout-cta-bar .column-title[data-title-theme="dark"] {
	text-shadow: 0 0 15px #606060
}

.layout-cta-bar .button-container {
	display: flex;
	flex-shrink: 0;
	align-items: center
}

@media screen and (max-width:840px) {
	.layout-cta-bar .button-container {
		display: grid;
		grid-gap: 1em;
		justify-items: end
	}
}

@media screen and (max-width:620px) {
	.layout-cta-bar .button-container {
		justify-items: center
	}
}

.layout-cta-bar .dropdown-container {
	position: relative;
	z-index: 2;
	display: inline-block
}

.layout-cta-bar .btn {
	display: block;
	max-width: 240px
}

@media screen and (min-width:841px) {
	.layout-cta-bar .btn:nth-child(2) {
		margin-left: 1em
	}
}

.layout-cta-bar .newsletter-container {
	position: relative;
	width: 280px;
	max-width: 280px
}

@media screen and (min-width:841px) {
	.layout-cta-bar .newsletter-container {
		margin-left: 1em
	}
}

.layout-cta-bar .form-title {
	flex: 0 0 100%;
	background-color: #fff
}

.layout-cta-bar .form-title.white {
	background-color: transparent;
	color: #fff
}

@media screen and (min-width:841px) {
	.layout-cta-bar .form-title {
		position: absolute;
		left: .5em;
		top: 0;
		transform: translate(0, -100%)
	}
}

.layout-cta-bar .form-line {
	position: relative;
	display: flex;
	flex-wrap: wrap
}

.layout-cta-bar .form-line input {
	flex-grow: 1;
	line-height: 1;
	background-color: #f5f5f5;
	color: #606060;
	border: 0;
	font-family: "Lato", sans-serif;
	font-size: 14px;
	padding: 14px 10px;
	border-radius: 3px 0 0 3px
}

.layout-cta-bar .form-line .btn {
	flex-shrink: 0;
	margin: 0;
	width: auto;
	padding: 0 10px;
	border-radius: 0 3px 3px 0
}

.layout-info-columns {
	position: relative;
	z-index: 0;
	padding: 3em 0;
	background-size: cover;
	background-position: center;
	color: #fff;
	transition: background-image 425ms ease
}

.layout-info-columns::before {
	content: "";
	position: absolute;
	display: block;
	z-index: -1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(79, 136, 119, 0.9)
}

.layout-info-columns .width-container {
	display: flex;
	align-items: flex-start
}

@media screen and (max-width:767px) {
	.layout-info-columns .width-container {
		flex-wrap: wrap
	}
}

.layout-info-columns .column {
	flex: 0 0 33.33%
}

@media screen and (max-width:767px) {
	.layout-info-columns .column {
		flex: 0 0 50%
	}
	.layout-info-columns .column:last-of-type {
		margin-top: 2em;
		flex: 1 0 100%
	}
}

@media screen and (max-width:550px) {
	.layout-info-columns .column {
		flex: 1 0 100%;
		margin-top: 1em
	}
	.layout-info-columns .column:first-of-type {
		margin-top: 0
	}
}

.layout-info-columns .column-inner {
	position: relative;
	display: block;
	border-radius: 3px;
	padding: 1em;
	text-decoration: none;
	overflow: hidden;
	transition: background-color 300ms ease
}

@media screen and (min-width:551px) {
	.layout-info-columns .column-inner {
		margin: 0 1em
	}
}

.layout-info-columns .column-inner::before {
	content: "";
	position: absolute;
	display: block;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	right: 1em;
	top: 1em;
	width: 1em;
	height: 1em;
	background-image: url("../images/svg/icon-external-link-alt.svg")
}

.layout-info-columns .column-inner:hover,
.layout-info-columns .column-inner:focus {
	background-color: #4f8877
}

.layout-info-columns .column-inner:hover .border-top,
.layout-info-columns .column-inner:hover .border-bottom,
.layout-info-columns .column-inner:focus .border-top,
.layout-info-columns .column-inner:focus .border-bottom {
	transform: scaleX(1)
}

.layout-info-columns .column-inner:hover .border-left,
.layout-info-columns .column-inner:hover .border-right,
.layout-info-columns .column-inner:focus .border-left,
.layout-info-columns .column-inner:focus .border-right {
	transform: scaleY(1)
}

.layout-info-columns .column-icon {
	display: block
}

.layout-info-columns .column-title {
	margin: .75em 0 .25em;
	font-size: 1.5em;
	font-weight: 700
}

.layout-info-columns .border {
	position: absolute;
	left: 0;
	background: #fff;
	transition: transform 300ms ease-in-out
}

.layout-info-columns .border-top,
.layout-info-columns .border-bottom {
	width: 100%;
	height: 2px;
	transform: scaleX(0)
}

.layout-info-columns .border-left,
.layout-info-columns .border-right {
	width: 2px;
	height: 100%;
	transform: scaleY(0)
}

.layout-info-columns .border-top,
.layout-info-columns .border-left,
.layout-info-columns .border-right {
	top: 0
}

.layout-info-columns .border-bottom {
	bottom: 0;
	transform-origin: bottom right
}

.layout-info-columns .border-top {
	transform-origin: top left
}

.layout-info-columns .border-left {
	transform-origin: bottom right
}

.layout-info-columns .border-right {
	left: auto;
	right: 0;
	transform-origin: top right
}

.layout-physician-intro {
	position: relative;
	z-index: 1;
	padding: 0
}

@media screen and (max-width:1050px) {
	.layout-physician-intro .width-container {
		padding: 0
	}
}

.layout-physician-intro .announcement-bar {
	padding: .5em 2em;
	background-color: #454545;
	color: #fff;
	font-size: 1.125em;
	font-weight: 300
}

.layout-physician-intro .columns-container {
	display: flex;
	background-color: #159cbd
}

@media screen and (max-width:830px) {
	.layout-physician-intro .columns-container {
		justify-content: center;
		flex-wrap: wrap
	}
}

.layout-physician-intro .image-column {
	position: relative;
	flex-shrink: 0
}

@media screen and (max-width:480px) {
	.layout-physician-intro .image-column {
		flex-shrink: 1
	}
}

.layout-physician-intro .intro-image {
	display: block;
	width: 100%
}

.layout-physician-intro .site-link {
	display: block;
	padding: 1em .75em;
	background-color: #263a58;
	color: #fff;
	text-align: center;
	text-decoration: none;
	transition: background-color 425ms ease
}

.layout-physician-intro .site-link:hover,
.layout-physician-intro .site-link:focus {
	background-color: #35517c
}

.layout-physician-intro .site-link::before {
	position: relative;
	top: .125em;
	content: '';
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-right: .75em;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../images/svg/icon-globe-white.svg")
}

.layout-physician-intro .content-column {
	position: relative;
	z-index: 0;
	display: flex;
	align-items: flex-start;
	flex-grow: 1;
	padding: 2em;
	background-color: #159cbd;
	color: #fff;
	overflow: hidden
}

@media screen and (max-width:830px) {
	.layout-physician-intro .content-column {
		flex: 1 0 100%;
		padding: 1em
	}
}

.layout-physician-intro .content-column::before {
	content: "";
	position: absolute;
	display: block;
	z-index: -1;
	right: 0;
	top: 0;
	width: 100%;
	height: 150%;
	background-image: url("../images/decor-circle.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-repeat: no-repeat;
	background-position: right top;
	opacity: .1;
	transform: translate(30%, 0)
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
	.layout-physician-intro .content-column::before {
		background-image: url("../images/decor-circle@2x.png");
		background-size: contain
	}
}

@media screen and (max-width:1160px) {
	.layout-physician-intro .content-column {
		flex-wrap: wrap
	}
}

.layout-physician-intro .info-column {
	display: flex;
	flex-wrap: wrap;
	flex-grow: 1
}

@media screen and (max-width:1160px) {
	.layout-physician-intro .info-column {
		flex: 1 0 100%
	}
	.layout-physician-intro .info-column+.schedule-column {
		margin-top: 2em
	}
}

@media screen and (max-width:480px) {
	.layout-physician-intro .info-column {
		flex-wrap: wrap
	}
}

.layout-physician-intro .physician-name {
	margin-bottom: .5em;
	flex: 1 0 100%;
	font-size: 2.5em;
	font-weight: 700
}

@media screen and (max-width:1050px) {
	.layout-physician-intro .physician-name {
		font-size: 2em
	}
}

.layout-physician-intro .column-title {
	padding-bottom: .5em;
	margin-bottom: .5em;
	border-bottom: 1px solid #fff;
	font-size: 1.125em;
	font-weight: 900;
	text-transform: uppercase
}

.layout-physician-intro .column-list {
	list-style: none
}

.layout-physician-intro .column-list-item {
	position: relative
}

.layout-physician-intro .column-list-item::before {
	content: "";
	position: absolute;
	display: block;
	left: 0
}

.layout-physician-intro .column-list-link {
	display: inline-block;
	padding-left: 1em;
	text-decoration: none;
	transition: transform 325ms ease
}

.layout-physician-intro .column-list-link:hover,
.layout-physician-intro .column-list-link:focus {
	transform: translate(3px, 0)
}

.layout-physician-intro .specialty-column,
.layout-physician-intro .location-column {
	flex: 0 0 47.5%
}

@media screen and (max-width:480px) {
	.layout-physician-intro .specialty-column,
	.layout-physician-intro .location-column {
		flex: 1 0 100%
	}
}

.layout-physician-intro .specialty-column .column-list-item::before {
	top: 9px;
	width: .45em;
	height: .45em;
	border-radius: 50%
}

.layout-physician-intro .specialty-column .column-list-item:nth-child(5n - 4)::before {
	background-color: rgba(69, 69, 69, 0.5)
}

.layout-physician-intro .specialty-column .column-list-item:nth-child(5n - 3)::before {
	background-color: rgba(96, 96, 96, 0.5)
}

.layout-physician-intro .specialty-column .column-list-item:nth-child(5n - 2)::before {
	background-color: rgba(175, 175, 175, 0.5)
}

.layout-physician-intro .specialty-column .column-list-item:nth-child(5n - 1)::before {
	background-color: rgba(208, 208, 208, 0.5)
}

.layout-physician-intro .specialty-column .column-list-item:nth-child(5n)::before {
	background-color: rgba(229, 229, 229, 0.5)
}

.layout-physician-intro .location-column {
	margin-left: 5%
}

@media screen and (max-width:480px) {
	.layout-physician-intro .location-column {
		margin-left: 0;
		margin-top: 1em
	}
}

.layout-physician-intro .location-column .column-list-item::before {
	width: .65em;
	height: 100%;
	background-image: url("../images/svg/icon-map-blue.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left center
}

.layout-physician-intro .schedule-column {
	margin-left: 5%;
	flex: 0 0 25%;
	align-self: flex-end
}

@media screen and (max-width:1160px) {
	.layout-physician-intro .schedule-column {
		margin-left: 0;
		flex: 1 0 100%
	}
}

.layout-physician-intro .schedule-column .content-container {
	margin-bottom: 4em
}

.layout-physician-columns {
	position: relative;
	z-index: 0
}

.layout-physician-columns::before {
	content: "";
	position: absolute;
	display: block;
	z-index: -1;
	left: 0;
	top: -8em;
	width: 100%;
	height: calc(100% + 8em);
	background-color: #f5f5f5
}

.layout-physician-columns .columns-container {
	display: flex;
	align-items: flex-start
}

@media screen and (max-width:1000px) {
	.layout-physician-columns .columns-container {
		flex-wrap: wrap
	}
}

.layout-physician-columns .list-columns {
	display: flex;
	flex-wrap: wrap;
	flex-grow: 1
}

.layout-physician-columns .list-columns.no-video .list-column {
	flex: 0 0 33.33%;
	max-width: 33.33%
}

@media screen and (max-width:850px) {
	.layout-physician-columns .list-columns.no-video .list-column {
		flex: 0 0 50%;
		max-width: 50%
	}
}

@media screen and (max-width:500px) {
	.layout-physician-columns .list-columns.no-video .list-column {
		flex: 0 0 100%;
		max-width: 100%
	}
}

.layout-physician-columns .list-columns:not(.no-video) .list-column {
	flex: 0 0 50%;
	max-width: 50%
}

@media screen and (max-width:500px) {
	.layout-physician-columns .list-columns:not(.no-video) .list-column {
		flex: 0 0 100%;
		max-width: 100%
	}
}

.layout-physician-columns .list-column {
	padding: 1em
}

.layout-physician-columns .column-list {
	list-style: none
}

.layout-physician-columns .column-list-item {
	position: relative;
	padding-left: 1.25em
}

.layout-physician-columns .column-list-item::before {
	content: "";
	position: absolute;
	display: block;
	left: 0;
	top: .3em;
	width: .65em;
	height: 1em;
	background-image: url("../images/svg/icon-angle-gray.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left center;
	transform-origin: center;
	transform: rotate(90deg)
}

.layout-physician-columns .list-title {
	padding-bottom: .75em;
	margin-bottom: .75em;
	border-bottom: 1px solid #606060;
	color: #159cbd;
	font-size: 1.125em;
	font-weight: 900;
	text-transform: uppercase
}

.layout-physician-columns .video-column {
	flex: 0 0 450px;
	margin-right: 2em
}

@media screen and (max-width:1000px) {
	.layout-physician-columns .video-column {
		margin: 1em auto 0
	}
}

@media screen and (max-width:550px) {
	.layout-physician-columns .video-column {
		flex: 0 0 300px
	}
}

.layout-physician-columns .youtubeiframe {
	width: 100%;
	border: 4px solid #76d7f0
}

.layout-physician-columns .staff-image {
	display: block;
	border: 3px solid #138caa
}

@media screen and (max-width:1000px) {
	.layout-physician-columns .staff-image {
		margin: 1em auto 0
	}
}

.layout-education {
	position: relative;
	padding: 0;
	z-index: 3;
	min-height: 600px
}

.layout-education .education-image {
	display: block;
	width: 100%
}

.layout-education .education-list {
	padding: 4.5em 1.5em 2em 3em;
	background-color: rgba(79, 136, 119, 0.95);
	color: #fff
}

@media screen and (min-width:850px) {
	.layout-education .education-list {
		position: absolute;
		top: 50%;
		height: 60%;
		width: 400px;
		margin-top: -20%
	}
	.layout-education .education-list.isRight {
		right: 0;
		border-radius: 3px 0 0 3px
	}
	.layout-education .education-list:not(.isRight) {
		border-radius: 0 3px 3px 0
	}
}

@media screen and (max-width:950px) {
	.layout-education .education-list {
		position: relative;
		z-index: 10;
		height: 450px;
		width: 100%;
		max-width: 400px;
		margin: -4em auto 2em
	}
}

@media screen and (max-width:600px) {
	.layout-education .education-list {
		margin-top: -1em
	}
}

.layout-education .education-list::before {
	content: "";
	position: absolute;
	display: block;
	left: 50%;
	top: 0;
	width: 6.5em;
	height: 6.5em;
	border-radius: 50%;
	background-color: #454545;
	background-image: url("../images/svg/icon-leaf.svg");
	background-size: 3em 3em;
	background-position: 45% 45%;
	background-repeat: no-repeat;
	border: 5px solid rgba(245, 245, 245, 0.5);
	transform: translate(-50%, -50%)
}

@media screen and (max-width:500px) {
	.layout-education .education-list::before {
		width: 3em;
		height: 3em;
		background-size: 1.5em 1.5em
	}
}

.layout-education .list-inner {
	height: 100%;
	padding-right: .5em;
	overflow: auto;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.5) transparent
}

.layout-education .list-inner::-webkit-scrollbar {
	width: 3px
}

.layout-education .list-inner::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px
}

.layout-education .list-inner::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.1);
	border-radius: 10px
}

.layout-education .list-blocks {
	padding-right: 1.5em
}

.layout-education .list-block {
	margin-bottom: 1.5em;
	padding-bottom: 1.5em;
	border-bottom: 1px solid #fff
}

.layout-education .column-list {
	list-style: none
}

.layout-education .column-list-item {
	position: relative;
	display: block;
	padding-left: 1.25em
}

.layout-education .column-list-item::before {
	content: "";
	position: absolute;
	display: block;
	left: 0;
	top: .3em;
	width: .65em;
	height: 1em;
	background-image: url("../images/svg/icon-angle-white.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left center;
	transform-origin: center;
	transform: rotate(90deg)
}

.layout-education .list-title {
	font-size: 1.125em;
	font-weight: 900;
	text-transform: uppercase
}

.layout-education .list-title.special {
	margin-bottom: 1em
}

.layout-education .attribution {
	margin-top: 1em
}

.layout-reviews {
	padding: 2em 0
}

.layout-reviews .section-title,
.layout-reviews .layout-full-width-content .search-title,
.layout-full-width-content .layout-reviews .search-title,
.layout-reviews .layout-content-video-columns .column-title,
.layout-content-video-columns .layout-reviews .column-title {
	margin: 0;
	text-align: center
}

.layout-reviews .slide-inner-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 -2rem
}

.layout-reviews .slide-inner-wrapper.initialized {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0
}

@media screen and (max-width:900px) {
	.layout-reviews .slide-inner-wrapper {
		flex-wrap: wrap;
		height: auto!important;
		margin: 0
	}
}

.layout-reviews .slide {
	flex: 0 0 50%
}

@media screen and (max-width:900px) {
	.layout-reviews .slide {
		flex: 0 0 100%
	}
	.layout-reviews .slide:nth-of-type(2) {
		margin-top: 1em
	}
}

.layout-reviews .slide-inner {
	position: relative;
	padding: 2rem;
	color: #2f7f93
}

@media screen and (max-width:900px) {
	.layout-reviews .slide-inner {
		padding: 0
	}
}

.layout-reviews .slide-wrapper {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: all 525ms ease
}

.layout-reviews .slide-wrapper.active {
	position: relative;
	opacity: 1;
	visibility: visible
}

.layout-reviews .review-wrapper {
	position: relative;
	padding: 4em;
	padding-top: 6em;
	border: 1px solid rgba(21, 156, 189, 0.5)
}

@media screen and (max-width:1050px) {
	.layout-reviews .review-wrapper {
		padding: 4rem 2rem;
		padding-top: 6em
	}
}

.layout-reviews .source-wrapper {
	position: absolute;
	top: 1em;
	left: 1em;
	padding: 1em
}

.layout-reviews .source-yelp::before {
	content: "";
	position: absolute;
	display: block;
	top: 50%;
	left: 0;
	width: 40px;
	height: 50px;
	background-image: url("../images/svg/icon-yelp-blue.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transform: translate(0, -50%);
	opacity: .5
}

.layout-reviews .source-google::before {
	content: "";
	position: absolute;
	display: block;
	top: 50%;
	left: 0;
	width: 100px;
	height: 50px;
	padding: .5em;
	background-image: url("../images/google-reviews.png");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 3;
	transform: translate(0, -50%)
}

@media screen and (max-width:950px) {
	.layout-reviews .source-google::before {
		padding: .25em
	}
}

@media screen and (max-width:450px) {
	.layout-reviews .source-google::before {
		padding: 0
	}
}

.layout-reviews .source-healthgrades::before {
	content: "";
	position: absolute;
	display: block;
	top: 50%;
	left: 0;
	width: 125px;
	height: 40px;
	padding: 1em;
	background-image: url("../images/logo-healthgrades.png");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 3;
	transform: translate(0, -50%)
}

@media screen and (max-width:950px) {
	.layout-reviews .source-healthgrades::before {
		padding: .5em
	}
}

@media screen and (max-width:450px) {
	.layout-reviews .source-healthgrades::before {
		padding: 0
	}
}

.layout-reviews .source-vitals::before {
	content: "";
	position: absolute;
	display: block;
	top: 50%;
	left: 0;
	width: 75px;
	height: 40px;
	padding: 1em;
	background-image: url("../images/logo-vitals.png");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 3;
	transform: translate(0, -50%)
}

@media screen and (max-width:950px) {
	.layout-reviews .source-vitals::before {
		padding: .5em
	}
}

@media screen and (max-width:450px) {
	.layout-reviews .source-vitals::before {
		padding: 0
	}
}

.layout-reviews .source-ratemds::before {
	content: "";
	position: absolute;
	display: block;
	top: 50%;
	left: 0;
	width: 81px;
	height: 40px;
	padding: 1em;
	background-image: url("../images/logo-ratemds.png");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 3;
	transform: translate(0, -50%)
}

@media screen and (max-width:950px) {
	.layout-reviews .source-ratemds::before {
		padding: .5em
	}
}

@media screen and (max-width:450px) {
	.layout-reviews .source-ratemds::before {
		padding: 0
	}
}

.layout-reviews .stars-4::after,
.layout-reviews .stars-5::after {
	content: "";
	position: absolute;
	display: block;
	top: 4rem;
	right: 3rem;
	transform: translate(0, -50%);
	height: 26px;
	background-size: contain;
	background-repeat: repeat;
	background-position: left;
	background-image: url("../images/svg/icon-star-blue.svg")
}

@media screen and (max-width:1050px) {
	.layout-reviews .stars-4::after,
	.layout-reviews .stars-5::after {
		font-size: 1rem
	}
}

.layout-reviews .stars-4::after {
	width: 115px
}

.layout-reviews .stars-5::after {
	width: 145px
}

.layout-reviews .name {
	margin-top: 1em
}

.layout-reviews .review-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 0;
	opacity: 0
}

.layout-reviews .review-content.active {
	position: relative;
	z-index: 1;
	opacity: 1
}

.layout-reviews .content-container {
	padding-right: .5em;
	height: 125px;
	overflow-y: auto
}

.layout-reviews .content-container::-webkit-scrollbar {
	width: .25em
}

.layout-reviews .content-container::-webkit-scrollbar-track {
	background-color: rgba(96, 96, 96, 0.25);
	box-shadow: none
}

.layout-reviews .content-container::-webkit-scrollbar-thumb {
	background-color: #138caa;
	outline: 0
}

.layout-reviews .slider-wrapper {
	position: relative
}

.layout-reviews .pagination-container {
	margin-top: 1em;
	display: flex;
	justify-content: center
}

.layout-reviews .pagination-list {
	display: flex;
	justify-content: center;
	margin-right: -1em;
	list-style: none
}

.layout-reviews .pager-item {
	display: grid;
	place-content: center;
	width: 2em;
	height: 2em;
	margin: 0;
	border: 0;
	padding: .5em;
	background-color: transparent;
	background-image: none;
	font-family: "Lato", sans-serif;
	font-size: 1em;
	line-height: 0;
	cursor: pointer
}

.layout-reviews .pager-item::before {
	content: "";
	border: 2px solid #159cbd;
	border-radius: 50%;
	width: .75em;
	height: .75em;
	background-color: #fff;
	transition: background-color 325ms ease
}

.layout-reviews .pager-item:hover::before,
.layout-reviews .pager-item:focus::before,
.layout-reviews .pager-item.active::before {
	background-color: #159cbd
}

.layout-staff-search {
	position: relative;
	z-index: 10;
	padding: 0;
	color: #fff
}

@media screen and (max-width:750px) {
	.layout-staff-search .width-container {
		padding: 0
	}
}

.layout-staff-search .inner-container {
	position: relative;
	z-index: 0;
	padding-top: 2em;
	padding-bottom: 2em;
	text-align: center;
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat
}

.layout-staff-search .inner-container::before {
	content: "";
	position: absolute;
	display: block;
	z-index: -2;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	background-image: linear-gradient(to top, #fff 0, #fff 65%, rgba(255, 255, 255, 0.5) 85%, transparent)
}

.layout-staff-search .inner-container::after {
	content: "";
	z-index: -1;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: .9;
	background-image: linear-gradient(to bottom, #76d7f0, #d78f3b)
}

.layout-staff-search .page-title {
	max-width: 17em;
	margin: 0 auto;
	font-weight: 400;
	font-size: 40px;
	line-height: 1.2;
	letter-spacing: -0.56px
}

@media screen and (max-width:925px) {
	.layout-staff-search .page-title {
		max-width: 85%;
		margin: 0 auto 25px
	}
}

@media screen and (max-width:768px) {
	.layout-staff-search .page-title {
		max-width: 100%
	}
}

@media screen and (max-width:760px) {
	.layout-staff-search .page-title {
		font-size: 28px
	}
}

@media screen and (max-width:460px) {
	.layout-staff-search .page-title {
		font-size: 24px
	}
}

.layout-staff-search .intro-content {
	width: 80%;
	margin: 2rem auto 3rem;
	font-size: 1.5em
}

@media screen and (max-width:750px) {
	.layout-staff-search .intro-content {
		font-size: 1em
	}
}

.layout-staff-search .search-wrapper {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 95%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2em;
	text-align: left
}

@media screen and (max-width:990px) {
	.layout-staff-search .search-wrapper {
		flex-wrap: wrap
	}
}

.layout-staff-search .search-wrapper.hidden {
	display: none
}

.layout-staff-search .dropdown-container:nth-of-type(1) {
	z-index: 10
}

.layout-staff-search .column {
	position: relative;
	flex: 0 0 22.5%
}

.layout-staff-search .column:first-of-type,
.layout-staff-search .column:nth-of-type(2),
.layout-staff-search .column:nth-of-type(3) {
	margin-right: 3.33%
}

.layout-staff-search .column:first-of-type::before,
.layout-staff-search .column:nth-of-type(2)::before,
.layout-staff-search .column:nth-of-type(3)::before {
	content: "";
	position: absolute;
	display: block;
	right: -3.5%;
	top: 50%;
	font-size: 1.125em;
	content: 'Or';
	transform: translate(100%, -50%);
	pointer-events: none
}

@media screen and (max-width:1230px) {
	.layout-staff-search .column {
		flex: 0 0 20%
	}
	.layout-staff-search .column:first-of-type,
	.layout-staff-search .column:nth-of-type(2),
	.layout-staff-search .column:nth-of-type(3) {
		margin-right: 6.6667%
	}
	.layout-staff-search .column:first-of-type::before,
	.layout-staff-search .column:nth-of-type(2)::before,
	.layout-staff-search .column:nth-of-type(3)::before {
		right: -12%
	}
}

@media screen and (max-width:990px) {
	.layout-staff-search .column {
		flex: 0 0 42.5%
	}
	.layout-staff-search .column:first-of-type,
	.layout-staff-search .column:nth-of-type(2) {
		margin-bottom: 2em
	}
	.layout-staff-search .column:first-of-type,
	.layout-staff-search .column:nth-of-type(3) {
		margin-right: 7.5%
	}
	.layout-staff-search .column:first-of-type::before,
	.layout-staff-search .column:nth-of-type(3)::before {
		right: -5%
	}
	.layout-staff-search .column:nth-of-type(2) {
		margin-right: 0
	}
	.layout-staff-search .column:nth-of-type(2)::before {
		display: none
	}
}

@media screen and (max-width:600px) {
	.layout-staff-search .column:nth-of-type(1),
	.layout-staff-search .column:nth-of-type(2) {
		display: none
	}
	.layout-staff-search .column:nth-of-type(3) {
		z-index: 10;
		flex: 0 0 100%;
		margin-bottom: 3em;
		margin-right: 0
	}
	.layout-staff-search .column:nth-of-type(3)::before {
		right: auto;
		left: 50%;
		top: auto;
		bottom: -2.75em;
		transform: translate(-50%, -50%)
	}
	.layout-staff-search .column:nth-of-type(4) {
		flex: 0 0 100%
	}
}

.layout-staff-grid .columns-container {
	display: none;
	flex-wrap: wrap;
	justify-content: center;
	margin: -1.25em
}

.layout-staff-grid .columns-container.active {
	display: flex
}

.layout-staff-grid .column-item {
	flex: 0 0 20%
}

@media screen and (max-width:1250px) {
	.layout-staff-grid .column-item {
		flex: 0 0 25%
	}
}

@media screen and (max-width:800px) {
	.layout-staff-grid .column-item {
		flex: 0 0 33.33%
	}
}

@media screen and (max-width:675px) {
	.layout-staff-grid .column-item {
		flex: 0 0 50%
	}
}

@media screen and (max-width:450px) {
	.layout-staff-grid .column-item {
		flex: 0 0 100%
	}
}

.layout-staff-grid .column-item.hidden {
	display: none
}

.layout-staff-grid .column-inner {
	position: relative;
	display: block;
	margin: 1.25em;
	text-decoration: none;
	overflow: hidden
}

@media screen and (max-width:1300px) {
	.layout-staff-grid .column-inner {
		margin: .5em
	}
}

@media screen and (min-width:751px) {
	.layout-staff-grid .column-inner:hover .column-caption,
	.layout-staff-grid .column-inner:focus .column-caption {
		background-color: #159cbd
	}
	.layout-staff-grid .column-inner:hover .column-caption::before,
	.layout-staff-grid .column-inner:focus .column-caption::before {
		border-color: transparent transparent #159cbd transparent
	}
	.layout-staff-grid .column-inner:hover .flyover-container,
	.layout-staff-grid .column-inner:focus .flyover-container {
		transform: translate(0, 0)
	}
}

@media screen and (max-width:751px) {
	.layout-staff-grid .column-inner.hovered .column-caption {
		background-color: #159cbd
	}
	.layout-staff-grid .column-inner.hovered .column-caption::before {
		border-color: transparent transparent #159cbd transparent
	}
	.layout-staff-grid .column-inner.hovered .flyover-container {
		transform: translate(0, 0)
	}
}

.layout-staff-grid .flyover-container {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 1em;
	background-color: #2f7f93;
	color: #fff;
	transform: translate(0, 100%);
	transition: transform 525ms ease
}

.layout-staff-grid .btn {
	margin-top: auto
}

.layout-staff-grid .list-title {
	padding: 0 0 .5em;
	margin: 1em 0 .5em;
	border-bottom: 1px solid #fff;
	font-weight: 700
}

.layout-staff-grid .specialties-list {
	padding: 0;
	margin: 0;
	list-style: none
}

.layout-staff-grid .specialties-list-item {
	margin-bottom: .75em;
	line-height: 1.125
}

.layout-staff-grid .column-image {
	display: block;
	width: 100%
}

.layout-staff-grid .column-caption {
	position: relative;
	padding: .5em 1em;
	background-color: #454545;
	color: #fff;
	text-align: center;
	transition: background-color 300ms ease
}

.layout-staff-grid .column-caption::before {
	content: "";
	position: absolute;
	display: block;
	position: absolute;
	top: -7px;
	left: 50%;
	margin-left: -7px;
	border-style: solid;
	border-width: 0 7px 7px 7px;
	border-color: transparent transparent #454545 transparent;
	transition: border-color 300ms ease
}

.layout-staff-grid .no-results-item {
	color: #159cbd;
	font-size: 1.5em
}

.layout-staff-grid .book-online {
	display: block;
	width: calc(100% - 2.5rem);
	margin: -1.25rem 0 1.25rem 1.25rem;
	padding: .5rem;
	border-radius: 0;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	font-size: .875em
}

@media screen and (max-width:1000px) {
	.layout-staff-grid .book-online {
		width: calc(100% - 1.125em);
		margin: -0.6em 0 .5em .55em
	}
}

.layout-associated-staff .section-title,
.layout-associated-staff .layout-full-width-content .search-title,
.layout-full-width-content .layout-associated-staff .search-title,
.layout-associated-staff .layout-content-video-columns .column-title,
.layout-content-video-columns .layout-associated-staff .column-title {
	text-align: center
}

.layout-associated-staff .section-title strong,
.layout-associated-staff .layout-full-width-content .search-title strong,
.layout-full-width-content .layout-associated-staff .search-title strong,
.layout-associated-staff .layout-content-video-columns .column-title strong,
.layout-content-video-columns .layout-associated-staff .column-title strong {
	display: block
}

.layout-associated-staff .grid-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center
}

@media screen and (max-width:800px) {
	.layout-associated-staff .grid-container {
		margin: 0 1em
	}
}

@media screen and (max-width:450px) {
	.layout-associated-staff .grid-container {
		display: grid;
		grid-template-columns: 1fr;
		grid-gap: 1em
	}
}

.layout-associated-staff .staff-item {
	position: relative;
	flex: 0 0 20%
}

@media screen and (max-width:1150px) {
	.layout-associated-staff .staff-item {
		flex: 0 0 25%
	}
}

@media screen and (max-width:800px) {
	.layout-associated-staff .staff-item {
		flex: 0 0 33.33%
	}
}

@media screen and (max-width:675px) {
	.layout-associated-staff .staff-item {
		flex: 0 0 50%
	}
}

@media screen and (max-width:450px) {
	.layout-associated-staff .staff-item {
		flex: 0 0 100%
	}
}

.layout-associated-staff .staff-item:hover .staff-grid-caption,
.layout-associated-staff .staff-item:focus .staff-grid-caption {
	background-color: #159cbd
}

.layout-associated-staff .staff-item:hover .staff-grid-caption::before,
.layout-associated-staff .staff-item:focus .staff-grid-caption::before {
	border-color: transparent transparent #159cbd transparent
}

.layout-associated-staff .staff-item-inner {
	position: relative;
	margin: 1em
}

.layout-associated-staff .staff-headshot {
	display: block;
	width: 100%
}

.layout-associated-staff .staff-grid-caption {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: .5em 1em;
	background-color: #454545;
	color: #fff;
	text-align: center;
	transition: background-color 300ms ease
}

.layout-associated-staff .staff-grid-caption::before {
	content: "";
	position: absolute;
	display: block;
	position: absolute;
	top: -7px;
	left: 50%;
	margin-left: -7px;
	border-style: solid;
	border-width: 0 7px 7px 7px;
	border-color: transparent transparent #454545 transparent;
	transition: border-color 300ms ease
}

.layout-patient-education .width-container {
	position: relative;
	display: grid;
	align-items: center;
	grid-template-columns: 550px auto;
	-moz-column-gap: 2em;
	column-gap: 2em;
	overflow: hidden
}

@media screen and (max-width:1100px) {
	.layout-patient-education .width-container {
		-moz-column-gap: 1em;
		column-gap: 1em
	}
}

@media screen and (max-width:1025px) {
	.layout-patient-education .width-container {
		grid-template-columns: 1fr
	}
}

.layout-patient-education .education-column {
	position: relative;
	width: 550px;
	margin: 0 auto;
	opacity: 1;
	transition: opacity 525ms ease, position 0ms 525ms ease;
	pointer-events: auto
}

.layout-patient-education .education-column.hidden-column {
	left: 10000px;
	position: absolute;
	opacity: 0;
	pointer-events: none
}

@media screen and (max-width:1025px) {
	.layout-patient-education .education-column {
		margin-top: 2em;
		grid-column: 1 / 3;
		grid-row: 2
	}
}

@media screen and (max-width:650px) {
	.layout-patient-education .education-column {
		width: 300px
	}
}

.layout-patient-education .content-column {
	opacity: 1;
	transition: opacity 525ms ease, position 0ms 525ms ease;
	pointer-events: auto
}

.layout-patient-education .content-column.hidden-column {
	left: 10000px;
	position: absolute;
	opacity: 0;
	pointer-events: none
}

@media screen and (max-width:1025px) {
	.layout-patient-education .content-column {
		grid-column: 1 / 3;
		grid-row: 1
	}
}

.layout-patient-education .education-animation {
	position: absolute;
	left: 0;
	top: 50%;
	height: 449px;
	width: 449px;
	margin-top: -265px;
	background-image: url("../images/body-bg.png");
	background-size: contain;
	background-repeat: no-repeat;
	-webkit-animation: rotation 225s infinite linear;
	animation: rotation 225s infinite linear
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
	.layout-patient-education .education-animation {
		background-image: url("../images/body-bg@2x.png");
		background-size: contain
	}
}

@media screen and (max-width:650px) {
	.layout-patient-education .education-animation {
		width: 240px;
		height: 240px;
		margin-top: -120px
	}
}

.layout-patient-education .education-image {
	display: block
}

.layout-patient-education .education-list {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	list-style: none
}

.layout-patient-education .education-list-item {
	position: absolute;
	color: #606060;
	font-size: .875em;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer
}

@media screen and (max-width:650px) {
	.layout-patient-education .education-list-item {
		transform: scale(0.65);
		transform-origin: center
	}
}

.layout-patient-education .education-list-item::before {
	content: "";
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	background-image: url("../images/body-poly-large.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-repeat: no-repeat
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
	.layout-patient-education .education-list-item::before {
		background-image: url("../images/body-poly-large@2x.png");
		background-size: contain
	}
}

.layout-patient-education .education-list-item.active::before {
	background-image: url("../images/body-poly-large-hover.png");
	background-size: contain;
	background-repeat: no-repeat
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
	.layout-patient-education .education-list-item.active::before {
		background-image: url("../images/body-poly-large-hover@2x.png");
		background-size: contain
	}
}

.layout-patient-education .education-list-item.active .education-list-item-text {
	color: #159cbd
}

.layout-patient-education .education-list-item.education-list-item-neck {
	left: 45%;
	top: 10%
}

.layout-patient-education .education-list-item.education-list-item-neck::before {
	width: 103px;
	height: 106px;
	transform: scale(0.85)
}

.layout-patient-education .education-list-item.education-list-item-shoulder {
	left: 49%;
	top: 20%
}

.layout-patient-education .education-list-item.education-list-item-shoulder::before {
	width: 103px;
	height: 106px;
	transform: scale(0.85)
}

.layout-patient-education .education-list-item.education-list-item-shoulder .education-list-item-text {
	position: absolute;
	right: -140px
}

.layout-patient-education .education-list-item.education-list-item-spine {
	left: 33%;
	top: 22%
}

.layout-patient-education .education-list-item.education-list-item-spine::before {
	width: 103px;
	height: 106px
}

.layout-patient-education .education-list-item.education-list-item-elbow {
	left: 48%;
	top: 32%
}

.layout-patient-education .education-list-item.education-list-item-elbow::before {
	width: 103px;
	height: 106px
}

.layout-patient-education .education-list-item.education-list-item-elbow .education-list-item-text {
	position: absolute;
	right: -120px
}

.layout-patient-education .education-list-item.education-list-item-hand-wrist {
	right: 12%;
	top: 42%
}

.layout-patient-education .education-list-item.education-list-item-hand-wrist::before {
	width: 116px;
	height: 121px
}

.layout-patient-education .education-list-item.education-list-item-hand-wrist .education-list-item-text {
	transform: translate(-60px, 10px)
}

.layout-patient-education .education-list-item.education-list-item-hip {
	left: 22%;
	top: 39%
}

.layout-patient-education .education-list-item.education-list-item-hip::before {
	width: 116px;
	height: 121px
}

.layout-patient-education .education-list-item.education-list-item-hip .education-list-item-text {
	transform: translate(20px, -10px)
}

.layout-patient-education .education-list-item.education-list-item-knee {
	left: 13%;
	bottom: 34%
}

.layout-patient-education .education-list-item.education-list-item-knee::before {
	width: 103px;
	height: 106px
}

.layout-patient-education .education-list-item.education-list-item-foot-ankle {
	bottom: 16%;
	left: 0
}

.layout-patient-education .education-list-item.education-list-item-foot-ankle::before {
	width: 116px;
	height: 121px
}

.layout-patient-education .education-list-item.education-list-item-foot-ankle .education-list-item-text {
	transform: translate(0, 0)
}

.layout-patient-education .education-list-item.education-list-item-faq {
	display: none
}

.layout-patient-education .education-list-item-text {
	display: inline-block;
	transform: translate(0, 10px)
}

.layout-patient-education .popover-container {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	grid-column: 1 / 3;
	background-color: #fff;
	opacity: 0;
	pointer-events: none;
	transition: opacity 525ms ease
}

.layout-patient-education .popover-container.active {
	opacity: 1;
	pointer-events: auto
}

.layout-patient-education .education-item {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	opacity: 0;
	pointer-events: none;
	transition: opacity 525ms ease
}

.layout-patient-education .education-item.active {
	position: static;
	opacity: 1;
	pointer-events: auto
}

.layout-patient-education .education-title,
.layout-patient-education .content-column h2 {
	position: relative;
	color: #159cbd;
	margin-bottom: .5em;
	padding-bottom: .5em;
	font-size: 2.5em;
	font-weight: 300
}

.layout-patient-education .education-title strong,
.layout-patient-education .content-column h2 strong {
	font-weight: 700
}

.layout-patient-education .education-title::before,
.layout-patient-education .content-column h2::before {
	content: "";
	position: absolute;
	display: block;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-image: linear-gradient(to right, #263a58 20%, #e5e5e5 20%)
}

.layout-patient-education .subpage-list {
	display: grid;
	margin-top: 2em;
	background-color: #edfafd;
	padding: 1em;
	grid-template-columns: 1fr 1fr;
	grid-gap: 0 5em;
	border-radius: 3px;
	list-style: none
}

@media screen and (max-width:620px) {
	.layout-patient-education .subpage-list {
		grid-template-columns: 1fr;
		text-align: center
	}
}

.layout-patient-education .subpage-link {
	display: inline-block;
	margin-bottom: .5em;
	border-bottom: 1px dotted #606060;
	text-decoration: none;
	font-size: .875em
}

.layout-patient-education .subpage-link:hover,
.layout-patient-education .subpage-link:focus {
	border-bottom: 1px solid #606060
}

@-webkit-keyframes rotation {
	from {
		transform: rotate(0deg)
	}
	to {
		transform: rotate(359deg)
	}
}

@keyframes rotation {
	from {
		transform: rotate(0deg)
	}
	to {
		transform: rotate(359deg)
	}
}

.layout-patient-education-standard .page-title {
	color: #159cbd;
	font-size: 2em
}

.layout-patient-education-standard .subpage-list {
	margin-top: 2em;
	background-color: #edfafd;
	padding: 1em;
	-moz-column-count: 2;
	column-count: 2;
	border-radius: 3px;
	list-style: none
}

@media screen and (max-width:650px) {
	.layout-patient-education-standard .subpage-list {
		-moz-column-count: 1;
		column-count: 1
	}
}

.layout-patient-education-standard .subpage-link {
	position: relative;
	display: block;
	padding-left: 1em;
	text-decoration: none;
	font-size: .875em
}

.layout-patient-education-standard .subpage-link::before {
	position: absolute;
	left: 0;
	display: inline-block;
	content: '•';
	opacity: .5
}

.layout-patient-education-standard .additional-content {
	margin-top: 2em
}

.layout-patient-education-standard .embed-container {
	margin-top: 2em
}

.layout-patient-education-standard .button-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 2em;
	max-width: 600px
}

@media screen and (max-width:500px) {
	.layout-patient-education-standard .button-container {
		flex-wrap: wrap;
		text-align: center
	}
	.layout-patient-education-standard .button-container>* {
		flex: 1 0 100%
	}
	.layout-patient-education-standard .button-container .go-back {
		margin-right: 0;
		margin-bottom: 1em
	}
}

.layout-patient-education-standard .go-back {
	margin-right: 1em;
	margin-bottom: 0
}

.layout-standard.no-sidebar .width-container {
	grid-template-columns: 80%;
	justify-content: center
}

@media screen and (max-width:800px) {
	.layout-standard.no-sidebar .width-container {
		grid-template-columns: 1fr
	}
}

.layout-standard .width-container {
	display: grid;
	grid-gap: 3em;
	grid-template-columns: 2.25fr 1fr
}

@media screen and (max-width:950px) {
	.layout-standard .width-container {
		grid-template-columns: 2fr 1fr
	}
}

@media screen and (max-width:850px) {
	.layout-standard .width-container {
		grid-template-columns: 1.75fr 1fr;
		grid-gap: 1.5em
	}
}

@media screen and (max-width:660px) {
	.layout-standard .width-container {
		grid-template-columns: 1fr
	}
}

.layout-standard .quote-container {
	position: relative;
	z-index: 0;
	padding: 2.25em;
	margin-bottom: 2em;
	background-color: #f5f5f5
}

.layout-standard .quote-container::before {
	content: "";
	position: absolute;
	display: block;
	z-index: -1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url("../images/decor-circle.png");
	background-size: inherit;
	background-repeat: no-repeat;
	background-position: -30% -20%
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
	.layout-standard .quote-container::before {
		background-image: url("../images/decor-circle@2x.png");
		background-size: inherit
	}
}

.layout-standard .sidebar-quote-content {
	color: #138caa;
	font-size: 1.75em;
	font-weight: 300;
	line-height: 1.2
}

.layout-standard .sidebar-quote-content a {
	font-weight: 400
}

@media screen and (max-width:1000px) {
	.layout-standard .sidebar-quote-content {
		font-size: 1.25em
	}
}

.layout-standard .resources-list {
	list-style: none;
	margin: 0;
	padding: 0
}

.layout-standard .resources-list-item:last-of-type .resources-list-link {
	border-bottom: 0
}

.layout-standard .resources-list-link {
	display: block;
	padding: 1em 1.5em;
	border-bottom: 1px solid #d0d0d0;
	background-color: #f5f5f5;
	text-decoration: none;
	transition: background-color 425ms ease
}

.layout-standard .resources-list-link:hover,
.layout-standard .resources-list-link:focus {
	background-color: gainsboro
}

.layout-standard .news-title {
	margin-bottom: 1em;
	padding-bottom: 1em;
	color: #159cbd;
	font-size: 1.375em;
	line-height: 1.125
}

.layout-standard .article-item {
	display: block;
	padding: 1em;
	text-decoration: none;
	background-color: #f5f5f5
}

.layout-standard .article-item:last-of-type {
	background-color: #ededed
}

.layout-standard .article-title {
	margin-bottom: .25em;
	color: #138caa;
	font-size: 1.25em;
	line-height: 1.125
}

.layout-standard .article-date {
	font-weight: 700;
	font-size: .875em;
	text-transform: uppercase
}

.layout-standard .media-container {
	position: relative;
	display: block;
	margin: 2rem 0;
	text-decoration: none;
	font-size: 0
}

.layout-standard .media-container::before {
	content: "";
	position: absolute;
	display: block;
	left: 50%;
	top: 50%;
	width: 75px;
	height: 75px;
	border: 2px solid #fff;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.5);
	background-image: url("../images/svg/icon-play-white.svg");
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
	transform: translate(-50%, -50%)
}

.layout-standard .button-container {
	margin-top: 2em
}

.layout-standard .form-container {
	margin-top: 2em
}

.layout-standard .image-container {
	text-align: center;
	margin-bottom: 2em
}

.layout-location-awards {
	padding: 3em 0
}

.layout-location-awards .section-title,
.layout-location-awards .layout-full-width-content .search-title,
.layout-full-width-content .layout-location-awards .search-title,
.layout-location-awards .layout-content-video-columns .column-title,
.layout-content-video-columns .layout-location-awards .column-title {
	text-align: center
}

.layout-location-awards .columns-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 1.5em;
	margin-left: -1em;
	margin-right: -1em;
	padding-top: 1.5em;
	border-top: 2px solid #e5e5e5;
	text-align: center
}

.layout-location-awards .column {
	flex: 0 0 20%
}

@media screen and (max-width:1000px) {
	.layout-location-awards .column {
		flex: 0 0 25%
	}
}

@media screen and (max-width:800px) {
	.layout-location-awards .column {
		flex: 0 0 33.33%
	}
}

@media screen and (max-width:600px) {
	.layout-location-awards .column {
		flex: 0 0 50%
	}
}

@media screen and (max-width:480px) {
	.layout-location-awards .column {
		flex: 0 0 100%
	}
}

.layout-location-awards .column-inner {
	padding: 1em
}

.layout-location-awards .award-image-container {
	display: block;
	font-size: 0;
	line-height: 0
}

.layout-location-awards .video-button {
	position: relative;
	display: block;
	margin: .75em auto;
	border: 0;
	padding: .5em 2em;
	max-width: 180px;
	box-sizing: border-box;
	border-radius: 5px;
	width: 100%;
	background-color: #159cbd;
	background-image: none;
	color: #fff;
	font-family: "Lato", sans-serif;
	font-size: 1em;
	line-height: 1;
	cursor: pointer;
	transition: background-color 325ms ease
}

.layout-location-awards .video-button::before {
	content: "";
	position: absolute;
	display: block;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	left: .5em;
	top: 50%;
	width: 15px;
	height: 15px;
	background-image: url("../images/svg/icon-play-white.svg");
	transform: translate(0, -50%)
}

.layout-location-awards .video-button:hover,
.layout-location-awards .video-button:focus {
	background-color: #11819d
}

.layout-location {
	padding: 2em 0
}

.layout-location .top-row {
	display: flex;
	align-items: center;
	gap: 1em;
	padding-bottom: 1em;
	margin-bottom: 1.5em;
	border-bottom: 1px solid #d0d0d0;
	text-align: center
}

@media screen and (max-width:650px) {
	.layout-location .top-row {
		display: grid;
		grid-template-columns: 1fr;
		text-align: center
	}
}

.layout-location .top-row span {
	display: grid
}

.layout-location .top-row .btn {
	text-transform: uppercase;
	font-weight: 700
}

.layout-location .page-title {
	color: #159cbd;
	font-size: 3.5em;
	line-height: 1.125;
	text-align: left;
	margin-right: auto
}

@media screen and (max-width:950px) {
	.layout-location .page-title {
		font-size: 2.25em
	}
}

@media screen and (max-width:700px) {
	.layout-location .page-title {
		font-size: 1.75em
	}
}

@media screen and (max-width:650px) {
	.layout-location .page-title {
		text-align: center
	}
}

.layout-location .location-information {
	display: grid;
	grid-gap: 2em;
	grid-template-columns: 1fr 2.5fr
}

@media screen and (max-width:900px) {
	.layout-location .location-information {
		grid-gap: 1em;
		grid-template-columns: 1fr 1.5fr
	}
}

@media screen and (max-width:600px) {
	.layout-location .location-information {
		grid-template-columns: 1fr
	}
}

.layout-location .image-container {
	position: relative
}

@media screen and (max-width:600px) {
	.layout-location .image-container {
		max-width: 350px;
		margin: 0 auto
	}
}

@media screen and (min-width:600px) {
	.layout-location .image-container {
		grid-column: 1
	}
}

.layout-location .location-image {
	display: block;
	width: 100%
}

.layout-location .schedule-online-link {
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	width: 100%;
	padding: .25em 1em;
	background-color: rgba(118, 215, 240, 0.55);
	color: #fff;
	text-align: center;
	font-size: 1.25em;
	text-decoration: none;
	line-height: 1.25
}

.layout-location .schedule-online-link strong {
	display: block;
	font-weight: 700
}

@media screen and (min-width:600px) {
	.layout-location .description-content {
		grid-column: 1;
		grid-row: 2
	}
}

.layout-location .location-map-container {
	position: relative
}

.layout-location .location-map-container::before {
	content: "";
	position: absolute;
	display: block;
	z-index: 4;
	left: 50%;
	top: 50%;
	width: 20px;
	height: 32px;
	transform: translate(-50%, -50%);
	background-image: url("../images/marker-blue.png");
	background-size: contain;
	background-repeat: no-repeat
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
	.layout-location .location-map-container::before {
		background-image: url("../images/marker-blue@2x.png");
		background-size: contain
	}
}

@media screen and (max-width:600px) {
	.layout-location .location-map-container {
		height: 300px
	}
}

.layout-location .location-map {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover
}

.layout-location .location-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 2em
}

@media screen and (min-width:600px) {
	.layout-location .location-contact-grid {
		grid-column: 2;
		grid-row: 2
	}
}

@media screen and (max-width:1100px) {
	.layout-location .location-contact-grid {
		grid-gap: 1em
	}
}

@media screen and (max-width:800px) {
	.layout-location .location-contact-grid {
		grid-template-columns: 1fr
	}
}

.layout-location .grid-item {
	font-size: 1.25em
}

.layout-location .grid-item strong {
	font-weight: 700
}

.layout-location .grid-title {
	margin-bottom: .5em;
	padding-bottom: .5em;
	border-bottom: 1px solid #d0d0d0;
	color: #159cbd;
	font-size: 1.25em;
	line-height: 1.125
}

@media screen and (max-width:900px) {
	.layout-location .grid-title {
		font-size: 1.125em
	}
}

.layout-location .row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 1em;
	margin-top: 1em;
	font-size: 1.25em
}

@media screen and (max-width:950px) {
	.layout-location .row {
		grid-template-columns: 1fr 1fr
	}
	.layout-location .row.top-row {
		display: none
	}
}

@media screen and (max-width:600px) {
	.layout-location .row {
		grid-template-columns: 1fr
	}
}

.layout-location .row:first-of-type {
	margin: 2em 0 .75em;
	padding-bottom: .75em;
	border-bottom: 1px solid #d0d0d0;
	color: #159cbd
}

.layout-location .row strong {
	font-weight: 700
}

.layout-location .location-button-row {
	margin: 3em 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 0 2em;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700
}

@media screen and (max-width:800px) {
	.layout-location .location-button-row {
		grid-gap: 0 1em
	}
}

@media screen and (max-width:650px) {
	.layout-location .location-button-row {
		grid-template-columns: 1fr
	}
}

.layout-location .location-button-row .btn {
	padding-top: .5em;
	padding-bottom: .5em;
	display: flex;
	align-items: center;
	justify-content: center
}

.layout-location .location-button-row .btn.btn-black,
.layout-location .location-button-row .layout-multi-cta-bar .button-inner:nth-of-type(4n - 2) .btn,
.layout-multi-cta-bar .button-inner:nth-of-type(4n - 2) .layout-location .location-button-row .btn {
	background-color: #606060
}

.layout-location .location-button-row .btn a {
	display: inline-block;
	padding: 1.5em 1.25em;
	margin-left: 2em;
	background-color: rgba(0, 0, 0, 0.25);
	font-size: .75em;
	text-decoration: none;
	transition: background-color 325ms ease
}

.layout-location .location-button-row .btn a:last-of-type {
	margin-left: .25em
}

.layout-location .location-button-row .btn a:hover,
.layout-location .location-button-row .btn a:focus {
	background-color: rgba(0, 0, 0, 0.4)
}

.layout-region-grid {
	padding-bottom: 0
}

.layout-region-grid .top-container {
	display: grid;
	grid-template-columns: 1fr 230px;
	align-items: center;
	margin-bottom: 1em;
	border-bottom: 1px solid rgba(96, 96, 96, 0.5)
}

.layout-region-grid .top-container .btn {
	text-align: center
}

.layout-region-grid .page-title {
	color: #159cbd;
	font-size: 3.5em
}

.layout-region-grid .grid-title {
	margin: 1em 0 .5em;
	font-size: 1.75em
}

.layout-region-grid .grid-container {
	display: grid;
	grid-gap: 2em;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: start
}

.layout-region-grid .grid-item {
	display: block;
	text-decoration: none;
	box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
	transition: box-shadow 325ms ease
}

.layout-region-grid .grid-item:hover,
.layout-region-grid .grid-item:focus {
	box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2)
}

.layout-region-grid .location-image {
	display: block;
	width: 100%
}

.layout-region-grid .meta-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: .75em 1.5em;
	line-height: 1.25;
	background-color: #fff
}

.layout-region-grid .location-title {
	grid-column: 1 / 3;
	margin-bottom: .5em;
	padding-bottom: .5em;
	border-bottom: 1px solid rgba(96, 96, 96, 0.5);
	font-size: 1.375em;
	font-weight: 700
}

.layout-region-grid .marker-address,
.layout-region-grid .marker-phone,
.layout-region-grid .marker-hours {
	position: relative;
	padding-left: 1.5em;
	margin-bottom: .375em;
	font-size: .875em
}

.layout-region-grid .marker-address::before,
.layout-region-grid .marker-phone::before,
.layout-region-grid .marker-hours::before {
	content: "";
	position: absolute;
	display: block;
	left: 0;
	top: .375em;
	width: .875em;
	height: .875em;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center
}

.layout-region-grid .marker-address::before {
	background-image: url("../images/svg/icon-address-gray.svg")
}

.layout-region-grid .marker-phone::before {
	background-image: url("../images/svg/icon-phone-gray.svg")
}

.layout-region-grid+.layout-staff-grid {
	padding-top: 0
}

.layout-region-grid+.layout-staff-grid .grid-title {
	margin: 1em 0 .5em;
	font-size: 1.75em
}

.layout-blog .width-container {
	display: flex;
	flex-wrap: wrap
}

.layout-blog .categories-container {
	flex: 1 0 100%;
	margin-bottom: 2em;
	display: grid;
	grid-gap: 4em;
	align-items: start;
	grid-template-columns: 1fr 15fr
}

.layout-blog .category-title {
	border-bottom: 2px solid rgba(90, 181, 206, 0.5);
	padding-bottom: .5em;
	color: #159cbd;
	font-size: 1.5em;
	line-height: 1
}

.layout-blog .categories {
	display: flex;
	flex-wrap: wrap
}

.layout-blog .category-item {
	margin-right: 3em;
	margin-bottom: 1em
}

.layout-blog .category-link {
	display: inline-block;
	color: #828282;
	text-decoration: none
}

.layout-blog .category-link.active {
	color: #159cbd;
	font-weight: 700
}

.layout-blog .main-container {
	flex: 0 0 70%
}

@media screen and (max-width:860px) {
	.layout-blog .main-container {
		flex: 0 0 60%
	}
}

@media screen and (max-width:650px) {
	.layout-blog .main-container {
		flex: 1 0 100%
	}
}

.layout-blog .articles-container {
	display: grid;
	grid-gap: 2em;
	grid-template-columns: 1fr 1fr 1fr;
	list-style: none
}

@media screen and (max-width:1130px) {
	.layout-blog .articles-container {
		grid-template-columns: 1fr 1fr;
		grid-gap: 2em 1em
	}
}

@media screen and (max-width:520px) {
	.layout-blog .articles-container {
		grid-template-columns: 1fr
	}
}

.layout-blog .article-item {
	position: relative;
	display: block;
	border: 1px solid transparent;
	text-decoration: none;
	transition: all 250ms ease
}

.layout-blog .article-item:hover,
.layout-blog .article-item:focus {
	border-color: #4f8877;
	transition: border-color 350ms ease-in
}

.layout-blog .article-item:hover .article-item-inner,
.layout-blog .article-item:focus .article-item-inner {
	transform: scale3d(0.95, 0.95, 1)
}

.layout-blog .article-item-inner {
	transform: scale3d(1, 1, 1);
	transition: transform 300ms ease-in-out
}

.layout-blog .article-image {
	display: block;
	width: 100%
}

.layout-blog .article-date {
	margin: .75em 0;
	color: #606060;
	font-size: .875em
}

.layout-blog .article-title {
	margin-bottom: .375em;
	color: #4f8877;
	font-size: 1.25em;
	font-weight: 700;
	line-height: 1.125
}

.layout-blog .sidebar-container {
	flex: 0 0 25%;
	margin-left: 5%
}

@media screen and (max-width:650px) {
	.layout-blog .sidebar-container {
		flex: 1 0 100%;
		margin-left: 0;
		margin-top: 2em
	}
}

.layout-blog .sidebar-section {
	margin-bottom: 2em
}

.layout-blog .sidebar-section:last-of-type {
	margin-bottom: 0
}

.layout-blog .sidebar-title {
	position: relative;
	margin-bottom: .5em;
	padding-bottom: .5em;
	color: #159cbd;
	font-size: 1.5em;
	font-weight: 700;
	line-height: 1.125
}

.layout-blog .sidebar-title::before {
	content: "";
	position: absolute;
	display: block;
	left: 0;
	bottom: 0;
	width: 90px;
	height: 1px;
	background-color: #159cbd
}

.layout-blog .sidebar-list {
	list-style: none;
	margin: 0;
	padding: 0
}

.layout-blog .sidebar-list.blog-list .sidebar-link-item {
	margin-bottom: .75em;
	color: rgba(96, 96, 96, 0.85);
	text-transform: none
}

.layout-blog .sidebar-link-item {
	display: block;
	margin-bottom: .5em;
	color: #159cbd;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 1.25
}

.layout-blog .sidebar-date {
	margin-top: .5em;
	font-size: .75em;
	font-weight: 300;
	text-transform: none;
	color: #828282
}

.layout-blog .sidebar-video-item {
	text-decoration: none
}

.layout-blog .video-title,
.layout-blog .event-title {
	margin-bottom: .5em;
	color: #159cbd;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 1.25
}

.layout-blog .event-date,
.layout-blog .event-location {
	color: #828282
}

.layout-blog .event-date strong,
.layout-blog .event-location strong {
	font-weight: 700
}

.layout-blog .event-location {
	margin-bottom: .5em
}

.layout-blog input[type="email"] {
	border: 1px solid #159cbd;
	padding: .7em 1em;
	border-radius: 3px
}

.layout-blog-hero {
	position: relative;
	z-index: 0;
	padding: 0
}

.layout-blog-hero .width-container {
	position: relative;
	z-index: 2;
	padding-bottom: 6em;
	padding-top: 6em;
	max-width: calc(1400px - 6em);
	text-align: center;
	background-size: cover;
	background-position: center
}

@media screen and (max-width:600px) {
	.layout-blog-hero .width-container {
		padding-bottom: 2em;
		padding-top: 2em
	}
}

.layout-blog-hero .width-container::before {
	content: "";
	position: absolute;
	display: block;
	z-index: -1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(130, 130, 130, 0.5)
}

.layout-blog-hero .page-title {
	color: #fff;
	font-size: 2.75em;
	font-weight: 700;
	line-height: 1.125
}

@media screen and (max-width:700px) {
	.layout-blog-hero .page-title {
		font-size: 2em
	}
}

.layout-blog-hero .btn {
	margin-top: 2em
}

.layout-blog-article .button-container {
	margin-top: 2em
}

.layout-blog-article .meta-container {
	margin-bottom: 1.5em
}

.layout-blog-article .author-container:not(.btn) {
	display: flex;
	align-items: center;
	border: 0;
	margin-top: .75em
}

@media screen and (max-width:615px) {
	.layout-blog-article .author-container:not(.btn) {
		flex-wrap: wrap
	}
}

.layout-blog-article .author-container:not(.btn) span {
	color: #606060
}

.layout-blog-article .author-container:not(.btn):hover,
.layout-blog-article .author-container:not(.btn):focus {
	border: 0
}

.layout-blog-article .image-row {
	flex: 0 0 auto;
	margin-right: 1em
}

@media screen and (max-width:615px) {
	.layout-blog-article .image-row {
		flex: 1 0 100%;
		margin-bottom: .5em
	}
}

.layout-blog-article .author-image {
	border: 2px solid #159cbd
}

.layout-blog-article .content-row {
	flex-grow: 1
}

.layout-blog-article .bio-container {
	font-style: italic;
	color: #606060;
	font-weight: 400
}

.layout-blog-article .article-content-date {
	display: inline-block;
	padding: .5em 1em;
	background-color: #606060;
	color: #fff
}

.layout-blog-article .article-category-listing {
	margin-top: .5em
}

.layout-blog-article .category-content-link {
	color: #606060;
	border-bottom: 0
}

.layout-events-grid .controller {
	display: flex;
	justify-content: center;
	margin: 2em 0
}

.layout-events-grid .controller-option {
	display: inline-block;
	min-width: 200px;
	padding: 1em;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.25;
	letter-spacing: -0.2px;
	box-sizing: border-box;
	text-decoration: none;
	text-align: center;
	transition: color 300ms
}

.layout-events-grid .controller-option:first-of-type {
	background-color: #138caa;
	color: #fff;
	border-top-left-radius: 10em;
	border-bottom-left-radius: 10em
}

.layout-events-grid .controller-option:last-of-type {
	background-color: #454545;
	color: rgba(255, 255, 255, 0.3);
	border-top-right-radius: 10em;
	border-bottom-right-radius: 10em
}

.layout-events-grid .controller-option:hover,
.layout-events-grid .controller-option:focus {
	color: #fff
}

@media screen and (max-width:500px) {
	.layout-events-grid .controller-option {
		min-width: 150px;
		padding: .5em;
		font-size: 14px
	}
}

.layout-events-grid .upcoming-wrapper.no-past {
	margin-top: calc(52px + 2em)
}

.layout-events-grid .upcoming-wrapper,
.layout-events-grid .past-wrapper {
	display: flex;
	flex-wrap: wrap
}

.layout-events-grid .past-wrapper.hidden {
	display: none
}

.layout-events-grid .event-wrapper {
	flex-basis: 50%;
	max-width: 50%
}

.layout-events-grid .event-wrapper:nth-of-type(odd) .event-inner-wrapper {
	margin-left: 0
}

@media screen and (max-width:700px) {
	.layout-events-grid .event-wrapper:nth-of-type(odd) .event-inner-wrapper {
		margin-left: 0;
		margin-right: 0
	}
}

.layout-events-grid .event-wrapper:nth-of-type(even) .event-inner-wrapper {
	margin-right: 0
}

@media screen and (max-width:700px) {
	.layout-events-grid .event-wrapper:nth-of-type(even) .event-inner-wrapper {
		margin-left: 0;
		margin-right: 0
	}
}

@media screen and (max-width:700px) {
	.layout-events-grid .event-wrapper {
		flex-basis: 100%;
		max-width: 100%
	}
}

.layout-events-grid .event-inner-wrapper {
	display: flex;
	margin: 1em;
	background-color: #f5f5f5
}

@media screen and (max-width:1050px) {
	.layout-events-grid .event-inner-wrapper {
		flex-wrap: wrap
	}
}

.layout-events-grid .col:first-of-type {
	flex: 1 0 40%;
	max-width: 40%;
	padding: 1em;
	box-sizing: border-box
}

@media screen and (max-width:1050px) {
	.layout-events-grid .col:first-of-type {
		flex: 1 0 100%;
		max-width: 100%
	}
}

.layout-events-grid .col:last-of-type {
	flex: 1 1 60%;
	max-width: 60%;
	background-color: #138caa;
	color: #fff;
	overflow: hidden
}

@media screen and (max-width:1050px) {
	.layout-events-grid .col:last-of-type {
		flex: 1 1 100%;
		max-width: 100%
	}
}

.layout-events-grid .date-wrapper {
	position: relative;
	top: -2em;
	margin-bottom: -2em;
	width: 60px;
	height: 60px;
	padding: .5em;
	background-color: #454545;
	box-sizing: border-box
}

.layout-events-grid .date {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.26;
	letter-spacing: -0.2px;
	text-align: center;
	color: #fff;
	transform: translate(-50%, -50%)
}

.layout-events-grid .event-title {
	padding: 1em 0;
	color: #138caa;
	border-bottom: 1px solid #76d7f0;
	font-size: 19px;
	font-weight: bold;
	line-height: 1.26;
	letter-spacing: -0.2px
}

.layout-events-grid .info-wrapper {
	padding: 1em 0;
	padding-left: 2em;
	color: #454545;
	font-size: 16px;
	line-height: 1.25;
	letter-spacing: -0.2px
}

.layout-events-grid .time,
.layout-events-grid .address {
	position: relative
}

.layout-events-grid .time:before,
.layout-events-grid .address:before {
	content: "";
	position: absolute;
	display: block;
	top: .125em;
	left: -1.5em;
	width: 1em;
	height: 1em;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transform: translate(-50%, 0)
}

.layout-events-grid .time:before {
	background-image: url("../images/svg/icon-clock-gray.svg")
}

.layout-events-grid .address {
	margin-top: 1em
}

.layout-events-grid .address:before {
	background-image: url("../images/svg/icon-address-gray.svg")
}

.layout-events-grid .event-image {
	display: block;
	width: 100%
}

.layout-events-grid .content-container {
	padding: 1em;
	cursor: pointer
}

.layout-events-grid .content-container.hidden {
	display: none
}

.layout-events-grid .show-more {
	padding: 0 1em;
	padding-bottom: 1em;
	text-align: center;
	cursor: pointer
}

.layout-events-grid .show-text {
	position: relative;
	display: inline-block;
	padding-right: 1em
}

.layout-events-grid .section-title,
.layout-events-grid .layout-full-width-content .search-title,
.layout-full-width-content .layout-events-grid .search-title,
.layout-events-grid .layout-content-video-columns .column-title,
.layout-content-video-columns .layout-events-grid .column-title {
	margin-bottom: .5em;
	padding: .5em 0 .25em 0;
	color: #138caa;
	font-size: 60px;
	font-weight: 900;
	letter-spacing: -0.6px;
	border-bottom: 1px solid #138caa;
	text-transform: uppercase
}

@media screen and (max-width:600px) {
	.layout-events-grid .section-title,
	.layout-events-grid .layout-full-width-content .search-title,
	.layout-full-width-content .layout-events-grid .search-title,
	.layout-events-grid .layout-content-video-columns .column-title,
	.layout-content-video-columns .layout-events-grid .column-title {
		font-size: 36px
	}
}

.layout-events-grid .view-past {
	left: 50%;
	cursor: pointer;
	transform: translate(-50%, 0)
}

.layout-events-grid .view-past.hidden {
	display: none
}

.layout-content-image {
	padding: 2em 0
}

.layout-content-image .width-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 4em;
	align-items: center
}

@media screen and (max-width:850px) {
	.layout-content-image .width-container {
		grid-template-columns: 1fr;
		grid-gap: 2em
	}
}

.layout-content-image .image-link,
.layout-content-image .play-btn {
	position: relative
}

.layout-content-image .image-link::before,
.layout-content-image .play-btn::before {
	content: "";
	position: absolute;
	display: block;
	left: 50%;
	top: 50%;
	transition: background-color 325ms ease
}

.layout-content-image .image-link {
	display: block
}

.layout-content-image .image-link::before {
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%)
}

.layout-content-image .image-link:hover::before,
.layout-content-image .image-link:focus::before {
	background-color: rgba(96, 96, 96, 0.5)
}

.layout-content-image .play-btn {
	border: 0;
	padding: 0;
	background-color: transparent;
	background-image: none;
	cursor: pointer
}

.layout-content-image .play-btn::before {
	content: "";
	position: absolute;
	display: block;
	width: 90px;
	height: 90px;
	border: 2px solid #fff;
	border-radius: 50%;
	background-color: rgba(96, 96, 96, 0.5);
	background-image: url("../images/svg/icon-play-white.svg");
	background-size: 26px 30px;
	background-position: center;
	background-repeat: no-repeat;
	transform: translate(-50%, -40%);
	transition: background-color 325ms ease
}

.layout-content-image .play-btn:hover::before,
.layout-content-image .play-btn:focus::before {
	background-color: rgba(96, 96, 96, 0.9)
}

.layout-content-image .image-item {
	display: block;
	width: 100%
}

@media screen and (max-width:850px) {
	.layout-content-image .image-item {
		max-width: 450px;
		margin: 0 auto
	}
}

.layout-content-image .button-container {
	margin-top: 2em
}

@media screen and (min-width:850px) {
	.layout-content-image:nth-of-type(even) .image-column {
		grid-column: 2 / 2;
		grid-row: 1 / 1
	}
	.layout-content-image:nth-of-type(even) .content-column {
		grid-column: 1 / 1;
		grid-row: 1 / 1
	}
}

.layout-locations-grid {
	background-color: #f5f5f5
}

.layout-locations-grid .grid-title {
	width: 80%;
	padding: 1em .5em;
	margin: 0 auto 2em;
	background-color: #159cbd;
	color: #fff;
	font-size: 2em;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center
}

.layout-locations-grid .locations-grid {
	display: grid;
	grid-gap: 2em;
	grid-template-columns: 1fr 1fr 1fr
}

@media screen and (max-width:1000px) {
	.layout-locations-grid .locations-grid {
		grid-template-columns: 1fr 1fr
	}
}

@media screen and (max-width:600px) {
	.layout-locations-grid .locations-grid {
		grid-template-columns: 1fr;
		grid-gap: 3em
	}
}

.layout-locations-grid .location-item {
	display: grid;
	grid-template-rows: 1.25fr 1fr;
	box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
	text-decoration: none;
	transition: box-shadow 325ms ease
}

@media screen and (max-width:675px) {
	.layout-locations-grid .location-item {
		grid-template-rows: 1fr 1fr
	}
}

.layout-locations-grid .location-image {
	background-size: cover;
	background-position: center
}

.layout-locations-grid .location-content {
	padding: 1em;
	background-color: #fff
}

.layout-locations-grid .location-title {
	padding-bottom: .375em;
	margin-bottom: .375em;
	border-bottom: 1px solid #e8e8e8;
	font-size: 1.25em
}

.layout-locations-grid .location-title a {
	position: relative;
	display: block;
	text-decoration: none
}

.layout-locations-grid .location-title a::before {
	content: "";
	position: absolute;
	display: block;
	left: -0.25em;
	top: -0.25em;
	border-radius: 3px;
	width: calc(100% + .5em);
	height: calc(100% + .5em);
	background-color: rgba(21, 156, 189, 0.15);
	opacity: 0;
	transform: scale3d(0, 0, 0);
	transition: opacity 100ms ease, transform 300ms ease
}

.layout-locations-grid .location-title a:hover::before,
.layout-locations-grid .location-title a:focus::before {
	opacity: 1;
	transform: scale3d(1, 1, 1);
	transition: all 300ms ease
}

.layout-locations-grid .location-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 2em
}

@media screen and (max-width:950px) {
	.layout-locations-grid .location-columns {
		grid-template-columns: 1fr;
		grid-gap: .75em
	}
}

.layout-locations-grid .address,
.layout-locations-grid .phone {
	position: relative;
	padding-left: 1.5em;
	font-size: .875em
}

.layout-locations-grid .address::before,
.layout-locations-grid .phone::before {
	content: "";
	position: absolute;
	display: block;
	left: 0;
	top: .375em;
	width: 1em;
	height: 1em;
	background-size: contain;
	background-position: top center;
	background-repeat: no-repeat
}

.layout-locations-grid .address::before {
	background-image: url("../images/svg/icon-address-gray.svg")
}

.layout-locations-grid .phone::before {
	background-image: url("../images/svg/icon-phone-gray.svg")
}

.layout-locations-grid .btn {
	text-align: center
}

.layout-file-download .width-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 2em
}

@media screen and (max-width:850px) {
	.layout-file-download .width-container {
		grid-gap: 1em
	}
}

@media screen and (max-width:660px) {
	.layout-file-download .width-container {
		grid-template-columns: 1fr 1fr
	}
}

@media screen and (max-width:450px) {
	.layout-file-download .width-container {
		grid-template-columns: 1fr
	}
}

.layout-file-download .file-item {
	position: relative;
	display: grid;
	align-content: flex-start;
	padding: 2em;
	background-color: #159cbd;
	color: #fff;
	border-radius: 5px;
	text-decoration: none;
	transition: background-color 525ms ease
}

@media screen and (max-width:850px) {
	.layout-file-download .file-item {
		padding: 1em
	}
}

.layout-file-download .file-item:hover,
.layout-file-download .file-item:focus {
	background-color: #10768f
}

.layout-file-download .file-item::before {
	content: "";
	position: absolute;
	display: block;
	left: 1.5em;
	top: 2.5em;
	width: 1.5em;
	height: 1.5em;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top center;
	background-image: url("../images/svg/icon-download-white.svg")
}

@media screen and (max-width:850px) {
	.layout-file-download .file-item::before {
		left: .75em
	}
}

.layout-file-download .title {
	padding-left: 2rem;
	font-size: 1.25em;
	font-weight: 300;
	line-height: 1.125
}

@media screen and (max-width:850px) {
	.layout-file-download .title {
		font-size: 1em
	}
}

.layout-file-download .top-title {
	order: -1;
	padding-left: 2rem;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: .5em
}

.layout-full-width-content {
	padding: 2em 0
}

.layout-full-width-content .width-container {
	max-width: 950px
}

.layout-full-width-content .section-title,
.layout-full-width-content .search-title,
.layout-full-width-content .layout-content-video-columns .column-title,
.layout-content-video-columns .layout-full-width-content .column-title {
	text-align: center
}

.layout-full-width-content .button-container {
	margin-top: 2em;
	text-align: center
}

.layout-full-width-content .result-details {
	margin-bottom: 1em;
	padding-bottom: 1em;
	border-bottom: 1px solid #e5e5e5
}

.layout-full-width-content .result-details:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0
}

.layout-full-width-content .result-title {
	font-size: 1.25em;
	color: #159cbd
}

.layout-full-width-content .result-title a {
	text-decoration: none
}

.layout-content-video-columns {
	padding: 2em 0
}

.layout-content-video-columns .width-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 3em
}

@media screen and (max-width:1100px) {
	.layout-content-video-columns .width-container {
		grid-template-columns: 1fr 1fr
	}
}

@media screen and (max-width:1000px) {
	.layout-content-video-columns .width-container {
		grid-gap: 1.5em
	}
}

@media screen and (max-width:500px) {
	.layout-content-video-columns .width-container {
		grid-template-columns: 1fr
	}
}

.layout-content-video-columns .column-title {
	font-size: 1.75em
}

.layout-content-video-columns .media-container {
	position: relative;
	display: block;
	text-decoration: none;
	font-size: 0
}

.layout-content-video-columns .media-container::before {
	content: "";
	position: absolute;
	display: block;
	left: 50%;
	top: 50%;
	width: 75px;
	height: 75px;
	border: 2px solid #fff;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.5);
	background-image: url("../images/svg/icon-play-white.svg");
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
	transform: translate(-50%, -50%)
}

.layout-content-video-columns .video-image {
	width: 100%
}

.layout-content-video-columns .content-container {
	margin: 1em 0
}

.layout-content-video-columns .btn {
	font-size: 1.25em
}

.layout-content-columns-accordion .services-accordion {
	padding: 3em 0
}

.layout-content-columns-accordion .accordion {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden
}

@media screen and (max-width:1050px) {
	.layout-content-columns-accordion .accordion {
		display: block;
		height: auto!important
	}
}

.layout-content-columns-accordion .column-item {
	max-height: 250px;
	padding: 50px 25px;
	box-sizing: border-box;
	overflow: hidden;
	color: #fff;
	text-align: center;
	transition: max-height 250ms ease, width 250ms ease;
	background-color: #159cbd;
	position: relative
}

@media screen and (max-width:1050px) {
	.layout-content-columns-accordion .column-item {
		width: 100%;
		height: auto!important;
		max-height: inherit
	}
}

@media screen and (min-width:1051px) {
	.layout-content-columns-accordion .column-item:not(.active):hover {
		cursor: pointer
	}
}

.layout-content-columns-accordion .column-item.active {
	max-height: 900px
}

.layout-content-columns-accordion .column-item.active::after {
	content: "";
	position: absolute;
	display: block;
	height: 685px;
	width: 685px;
	top: 75%;
	left: 50%;
	background-image: url("../images/decor-circle.png");
	background-size: contain;
	background-repeat: no-repeat;
	transform: translateX(-50%);
	opacity: .15
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
	.layout-content-columns-accordion .column-item.active::after {
		background-image: url("../images/decor-circle@2x.png");
		background-size: contain
	}
}

.layout-content-columns-accordion .column-item.column-item-2 {
	width: 50%
}

@media screen and (max-width:1050px) {
	.layout-content-columns-accordion .column-item.column-item-2 {
		width: 100%
	}
}

.layout-content-columns-accordion .column-item.column-item-2.active {
	width: 60%
}

@media screen and (max-width:1050px) {
	.layout-content-columns-accordion .column-item.column-item-2.active {
		width: 100%
	}
}

.layout-content-columns-accordion .column-item.column-item-3 {
	width: 33%
}

@media screen and (max-width:1050px) {
	.layout-content-columns-accordion .column-item.column-item-3 {
		width: 100%
	}
}

.layout-content-columns-accordion .column-item.column-item-3.active {
	width: 40%
}

@media screen and (max-width:1050px) {
	.layout-content-columns-accordion .column-item.column-item-3.active {
		width: 100%
	}
}

.layout-content-columns-accordion .column-item.column-item-4 {
	width: 25%
}

@media screen and (max-width:1050px) {
	.layout-content-columns-accordion .column-item.column-item-4 {
		width: 100%
	}
}

.layout-content-columns-accordion .column-item.column-item-4.active {
	width: 40%
}

@media screen and (max-width:1050px) {
	.layout-content-columns-accordion .column-item.column-item-4.active {
		width: 100%
	}
}

.layout-content-columns-accordion .column-item.column-item-5 {
	width: 20%
}

@media screen and (max-width:1050px) {
	.layout-content-columns-accordion .column-item.column-item-5 {
		width: 100%
	}
}

.layout-content-columns-accordion .column-item.column-item-5.active {
	width: 40%
}

@media screen and (max-width:1050px) {
	.layout-content-columns-accordion .column-item.column-item-5.active {
		width: 100%
	}
}

.layout-content-columns-accordion .column-item:nth-child(2) {
	background-color: #1289a6
}

.layout-content-columns-accordion .column-item:nth-child(3) {
	background-color: #10768f
}

.layout-content-columns-accordion .column-item:nth-child(4) {
	background-color: #0d6378
}

.layout-content-columns-accordion .column-item:nth-child(5) {
	background-color: #0b5061
}

.layout-content-columns-accordion .accordion-inner {
	position: relative;
	z-index: 1
}

@media screen and (max-width:1050px) {
	.layout-content-columns-accordion .accordion-inner {
		top: inherit;
		transform: translateY(0)
	}
}

.layout-content-columns-accordion .column-title {
	margin: 0 0 30px;
	font-size: 18px;
	text-transform: uppercase;
	position: relative
}

.layout-content-columns-accordion .column-title.active {
	margin: 0 0 15px
}

@media screen and (max-width:1050px) {
	.layout-content-columns-accordion .column-title.active {
		margin: 0 0 30px
	}
}

.layout-content-columns-accordion .column-title.active:before {
	display: none
}

.layout-content-columns-accordion .column-title:after {
	content: "";
	display: block;
	width: 150px;
	height: 1px;
	margin: 15px auto 0;
	background-color: rgba(255, 255, 255, 0.5)
}

.layout-content-columns-accordion .column-title:before {
	content: "";
	position: absolute;
	display: block;
	bottom: -27px;
	left: 50%;
	transform: translateX(-50%);
	font-weight: 300
}

@media screen and (max-width:1050px) {
	.layout-content-columns-accordion .column-title:before {
		display: none
	}
}

.layout-content-columns-accordion .content-container {
	opacity: 0;
	max-height: 250px;
	overflow: hidden;
	transition: opacity 100ms ease, max-height 350ms 200ms ease
}

@media screen and (max-width:1050px) {
	.layout-content-columns-accordion .content-container {
		opacity: 1
	}
}

.layout-content-columns-accordion .content-container.active {
	opacity: 1;
	max-height: 900px;
	height: auto;
	transition: opacity 350ms 200ms ease, max-height 100ms ease
}

.layout-content-columns-accordion .content-container p {
	margin: 0
}

.layout-content-columns-accordion .content-container p+p {
	margin-top: 10px
}

.layout-content-columns-accordion .content-container .button-container {
	position: relative;
	z-index: 30;
	margin-top: 20px
}

.layout-service-columns .width-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 2em
}

@media screen and (max-width:900px) {
	.layout-service-columns .width-container {
		grid-template-columns: 1fr 1fr;
		grid-gap: 1.5em
	}
}

@media screen and (max-width:550px) {
	.layout-service-columns .width-container {
		grid-template-columns: 1fr;
		grid-gap: 1em
	}
}

.layout-service-columns .width-container.two {
	grid-template-columns: 1fr 1fr
}

@media screen and (max-width:550px) {
	.layout-service-columns .width-container.two {
		grid-template-columns: 1fr;
		grid-gap: 1em
	}
}

.layout-service-columns .column-item {
	position: relative;
	display: block;
	padding: 8em 1.5em 1.5em;
	color: #fff;
	background-size: cover;
	background-position: center;
	text-decoration: none
}

@media screen and (max-width:900px) {
	.layout-service-columns .column-item {
		padding: 4em 1.5em 1.5em
	}
}

@media screen and (max-width:700px) {
	.layout-service-columns .column-item {
		padding: 2em 1em 1em
	}
}

.layout-service-columns .column-item>* {
	position: relative;
	z-index: 1
}

.layout-service-columns .column-item::after {
	content: "";
	position: absolute;
	display: block;
	z-index: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%
}

.layout-service-columns .column-item:nth-of-type(1)::after {
	background-image: linear-gradient(to bottom, rgba(21, 156, 189, 0) 0, #159cbd 100%)
}

.layout-service-columns .column-item:nth-of-type(2)::after {
	background-image: linear-gradient(to bottom, rgba(215, 143, 59, 0) 0, #d78f3b 100%)
}

.layout-service-columns .column-item:nth-of-type(3)::after {
	background-image: linear-gradient(to bottom, rgba(96, 96, 96, 0) 0, #606060 100%)
}

.layout-service-columns .column-title {
	margin-bottom: .375em;
	font-size: 2em;
	text-transform: uppercase
}

.layout-service-columns .content-container {
	font-size: .875em
}

.layout-faq {
	padding: 2em 0
}

.layout-faq .faq-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 2em
}

.layout-faq .faq-item {
	padding-left: 3em
}

.layout-faq .faq-question {
	position: relative;
	margin-bottom: 1.5em;
	color: #76d7f0;
	font-size: 1.125em;
	font-weight: 700
}

.layout-faq .faq-question::before {
	content: "";
	position: absolute;
	display: block;
	top: 1em;
	left: -2.5em;
	content: "Q";
	width: 2em;
	height: 2em;
	line-height: 2em;
	font-weight: bold;
	border-radius: 50%;
	box-sizing: border-box;
	background: #76d7f0;
	color: #fff;
	text-align: center;
	transform: translate(0, -50%)
}

.layout-faq .faq-answer {
	position: relative;
	max-height: 85em;
	transition: max-height 1425ms cubic-bezier(0.19, 1, 0.22, 1)
}

.layout-faq .faq-answer.truncated {
	max-height: 6em;
	overflow: hidden
}

.layout-faq .faq-answer.truncated::after {
	content: "";
	position: absolute;
	display: block;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2em;
	background: linear-gradient(to top, #fff 0, rgba(255, 255, 255, 0) 100%)
}

.layout-faq .faq-answer::before {
	content: "";
	position: absolute;
	display: block;
	left: -2.5em;
	top: 1em;
	content: "A";
	width: 2em;
	height: 2em;
	line-height: 2em;
	font-weight: bold;
	border-radius: 50%;
	box-sizing: border-box;
	background: #159cbd;
	color: #fff;
	font-size: 1.125em;
	text-align: center;
	transform: translate(0, -50%)
}

.layout-faq .faq-answer-truncated {
	display: none
}

.layout-faq .read-more {
	display: inline-block;
	color: #76d7f0;
	text-align: center;
	cursor: pointer
}

.layout-faq .read-more:hover,
.layout-faq .read-more:focus {
	text-decoration: underline
}

.layout-multi-cta-bar {
	text-align: center
}

.layout-multi-cta-bar .section-title,
.layout-multi-cta-bar .layout-full-width-content .search-title,
.layout-full-width-content .layout-multi-cta-bar .search-title,
.layout-multi-cta-bar .layout-content-video-columns .column-title,
.layout-content-video-columns .layout-multi-cta-bar .column-title {
	margin-bottom: 2em
}

.layout-multi-cta-bar .buttons-container {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: -2em
}

@media screen and (max-width:850px) {
	.layout-multi-cta-bar .buttons-container {
		flex-wrap: wrap
	}
}

@media screen and (max-width:800px) {
	.layout-multi-cta-bar .buttons-container {
		margin: -1em
	}
}

.layout-multi-cta-bar .button-inner {
	flex: 0 0 25%
}

@media screen and (max-width:850px) {
	.layout-multi-cta-bar .button-inner {
		flex: 0 0 50%
	}
}

.layout-multi-cta-bar .btn {
	display: block;
	margin: 1em
}

.layout-full-video {
	padding: 0
}

.layout-full-video .width-container {
	padding: 14em 10em;
	background-size: cover;
	background-position: center;
	text-align: center
}

@media screen and (max-width:1050px) {
	.layout-full-video .width-container {
		padding: 10em 4em
	}
}

@media screen and (max-width:780px) {
	.layout-full-video .width-container {
		padding: 6em 2em
	}
}

@media screen and (max-width:600px) {
	.layout-full-video .width-container {
		padding: 4em 2em
	}
}

.layout-full-video .section-title,
.layout-full-video .layout-full-width-content .search-title,
.layout-full-width-content .layout-full-video .search-title,
.layout-full-video .layout-content-video-columns .column-title,
.layout-content-video-columns .layout-full-video .column-title {
	text-transform: uppercase;
	font-size: 3.5em;
	line-height: 1.5
}

@media screen and (max-width:1050px) {
	.layout-full-video .section-title,
	.layout-full-video .layout-full-width-content .search-title,
	.layout-full-width-content .layout-full-video .search-title,
	.layout-full-video .layout-content-video-columns .column-title,
	.layout-content-video-columns .layout-full-video .column-title {
		font-size: 3em;
		line-height: 1.125
	}
}

@media screen and (max-width:700px) {
	.layout-full-video .section-title,
	.layout-full-video .layout-full-width-content .search-title,
	.layout-full-width-content .layout-full-video .search-title,
	.layout-full-video .layout-content-video-columns .column-title,
	.layout-content-video-columns .layout-full-video .column-title {
		font-size: 2.25em
	}
}

@media screen and (max-width:480px) {
	.layout-full-video .section-title,
	.layout-full-video .layout-full-width-content .search-title,
	.layout-full-width-content .layout-full-video .search-title,
	.layout-full-video .layout-content-video-columns .column-title,
	.layout-content-video-columns .layout-full-video .column-title {
		font-size: 1.75em
	}
}

.layout-full-video .play-btn {
	position: relative;
	display: inline-block;
	width: 125px;
	height: 125px;
	margin-bottom: 2em;
	border-radius: 50%;
	border: 3px solid #fff;
	background-color: rgba(96, 96, 96, 0.25);
	cursor: pointer;
	transition: background-color 325ms ease
}

.layout-full-video .play-btn:hover,
.layout-full-video .play-btn:focus {
	background-color: rgba(96, 96, 96, 0.4)
}

.layout-full-video .play-btn::before {
	content: "";
	position: absolute;
	display: block;
	left: 50%;
	top: 50%;
	width: 30px;
	height: 30px;
	background-image: url("../images/svg/icon-play-white.svg");
	background-size: 26px 30px;
	background-position: center;
	background-repeat: no-repeat;
	transform: translate(-50%, -40%)
}

.layout-alternate-hero .inner-container {
	padding: 12em 4em 0
}

@media screen and (max-width:800px) {
	.layout-alternate-hero .inner-container {
		padding: 8em 4em 0
	}
}

@media screen and (max-width:600px) {
	.layout-alternate-hero .inner-container {
		padding: 4em 2em 0
	}
}

.layout-alternate-hero .content-container {
	position: relative;
	width: 80%;
	margin: 0 auto;
	padding: 2rem;
	background-color: #606060;
	font-size: 2em;
	text-align: center;
	font-weight: 300;
	overflow: hidden;
	transform: translate(0, 50%)
}

@media screen and (max-width:1000px) {
	.layout-alternate-hero .content-container {
		width: 90%;
		font-size: 1.5em
	}
}

@media screen and (max-width:750px) {
	.layout-alternate-hero .content-container {
		width: 100%
	}
}

@media screen and (max-width:650px) {
	.layout-alternate-hero .content-container {
		margin-left: -1rem;
		width: calc(100% + 2rem);
		font-size: 1.25em
	}
}

.layout-alternate-hero .content-container::before {
	content: "";
	position: absolute;
	display: block;
	z-index: -1;
	left: -140px;
	top: 25%;
	width: 350px;
	height: 210px;
	background-image: url("../images/polygons-cta-left.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left center;
	opacity: .65
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
	.layout-alternate-hero .content-container::before {
		background-image: url("../images/polygons-cta-left@2x.png");
		background-size: contain
	}
}

.layout-alternate-hero .content-container::after {
	content: "";
	position: absolute;
	display: block;
	z-index: -1;
	right: -140px;
	top: 25%;
	width: 350px;
	height: 210px;
	background-image: url("../images/polygons-cta-left.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right center;
	opacity: .65
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
	.layout-alternate-hero .content-container::after {
		background-image: url("../images/polygons-cta-left@2x.png");
		background-size: contain
	}
}

.layout-hero-full-image {
	padding: 0
}

.layout-hero-full-image .full-image {
	display: block;
	width: 100%
}

.layout-accolades {
	color: #fff
}

.layout-accolades .width-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr
}

@media screen and (max-width:1020px) {
	.layout-accolades .width-container {
		grid-template-columns: 1fr 1fr
	}
}

@media screen and (max-width:762px) {
	.layout-accolades .width-container {
		grid-template-columns: 1fr
	}
}

.layout-accolades .width-container.two {
	grid-template-columns: .33fr .33fr;
	justify-content: center
}

@media screen and (max-width:1020px) {
	.layout-accolades .width-container.two {
		grid-template-columns: 1fr 1fr
	}
}

@media screen and (max-width:762px) {
	.layout-accolades .width-container.two {
		grid-template-columns: 1fr
	}
}

.layout-accolades .list-block {
	padding: 2em 3em
}

.layout-accolades .list-block:nth-of-type(1) {
	background-color: #159cbd;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px
}

.layout-accolades .list-block:nth-of-type(2) {
	background-color: #1285a1
}

.layout-accolades .list-block:nth-of-type(3) {
	background-color: #0f6f86;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px
}

.layout-accolades .accolade-title {
	margin-bottom: .5em;
	font-size: 1.25em;
	text-transform: uppercase
}

.layout-accolades .accolade-list {
	position: relative;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	list-style: none
}

.layout-accolades .accolade-list li {
	position: relative;
	padding-left: 1.25em;
	page-break-inside: avoid;
	-moz-column-break-inside: avoid;
	break-inside: avoid-column
}

.layout-accolades .accolade-list li::before {
	content: "";
	position: absolute;
	display: block;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	left: 0;
	top: .375rem;
	width: .675em;
	height: .675em;
	transform: rotate(90deg);
	transform-origin: center;
	background-image: url("../images/svg/icon-chevron-white.svg")
}

.layout-success-stories {
	padding: 0
}

.layout-success-stories .success-hero {
	margin-bottom: 4em
}

.layout-success-stories .page-title {
	padding: 8rem 0;
	color: #fff;
	font-size: 3em;
	text-align: center
}

.layout-success-stories .page-title strong {
	font-weight: 700
}

.layout-success-stories .success-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 4em 2em;
	padding-bottom: 4em
}

@media screen and (max-width:1150px) {
	.layout-success-stories .success-container {
		grid-gap: 2em 1em
	}
}

@media screen and (max-width:1090px) {
	.layout-success-stories .success-container {
		grid-template-columns: 1fr 1fr
	}
}

@media screen and (max-width:680px) {
	.layout-success-stories .success-container {
		grid-template-columns: 1fr
	}
}

.layout-success-stories .success-story {
	display: block;
	text-decoration: none
}

.layout-success-stories .image-container {
	height: 200px;
	width: 200px;
	background-size: cover;
	background-position: center
}

.layout-success-stories .story-name {
	margin: 1em 0;
	color: #828282;
	font-size: .75em
}

.layout-success-stories .story-title {
	margin-bottom: .5em;
	color: #4f8877;
	font-size: 1.25em;
	line-height: 1.125;
	font-weight: 700
}

.physicians .layout-video-gallery {
	padding: 2em 0
}

.layout-video-gallery .video-row {
	margin-bottom: 3em
}

.layout-video-gallery .video-row:last-of-type {
	margin-bottom: 0
}

.layout-video-gallery .underlined-title {
	margin-bottom: .75em;
	padding-bottom: .75em
}

.layout-video-gallery .videos-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 2em
}

@media screen and (max-width:1100px) {
	.layout-video-gallery .videos-container {
		grid-template-columns: 1fr 1fr
	}
}

@media screen and (max-width:1000px) {
	.layout-video-gallery .videos-container {
		grid-gap: 1em
	}
}

@media screen and (max-width:500px) {
	.layout-video-gallery .videos-container {
		grid-template-columns: 1fr
	}
}

.layout-video-gallery .videos-container.two {
	grid-template-columns: 30% 30%;
	justify-content: center
}

@media screen and (max-width:1100px) {
	.layout-video-gallery .videos-container.two {
		grid-template-columns: 1fr 1fr
	}
}

@media screen and (max-width:1000px) {
	.layout-video-gallery .videos-container.two {
		grid-gap: 1em
	}
}

@media screen and (max-width:500px) {
	.layout-video-gallery .videos-container.two {
		grid-template-columns: 1fr
	}
}

.layout-video-gallery .image-container {
	position: relative;
	height: 240px;
	background-size: cover;
	background-position: center;
	cursor: pointer
}

.layout-video-gallery .image-container::before {
	content: "";
	position: absolute;
	display: block;
	left: 50%;
	top: 50%;
	width: 45px;
	height: 45px;
	border: 2px solid #fff;
	border-radius: 50%;
	background-color: rgba(96, 96, 96, 0.5);
	background-image: url("../images/svg/icon-play-white.svg");
	background-size: 16px 20px;
	background-position: center;
	background-repeat: no-repeat;
	transform: translate(-50%, -40%);
	transition: background-color 325ms ease
}

.layout-video-gallery .image-container:hover::before,
.layout-video-gallery .image-container:focus::before {
	background-color: rgba(96, 96, 96, 0.75)
}

.layout-video-gallery .video-title {
	margin: .75em 0 0 0;
	color: #2f7f93;
	font-size: 1.125em;
	line-height: 1.125;
	text-align: center;
	text-transform: uppercase
}

.layout-social-block {
	padding: 0
}

@media screen and (max-width:750px) {
	.layout-social-block .width-container {
		padding: 0
	}
}

.layout-social-block .top-row {
	display: grid;
	grid-template-columns: 40% 30% 30%
}

@media screen and (max-width:650px) {
	.layout-social-block .top-row {
		grid-template-columns: 1fr
	}
}

.layout-social-block .top-left-side {
	grid-row: 1 / 3
}

.layout-social-block .first-blog {
	grid-row: 2;
	grid-column: 2 / 4
}

.layout-social-block .middle-row {
	display: grid;
	grid-template-columns: 40% 60%
}

@media screen and (max-width:650px) {
	.layout-social-block .middle-row {
		grid-template-columns: 1fr
	}
}

.layout-social-block .bottom-row {
	display: grid;
	grid-template-columns: 60% 40%
}

@media screen and (max-width:650px) {
	.layout-social-block .bottom-row {
		grid-template-columns: 1fr
	}
}

.layout-social-block .bottom-left-side {
	grid-row: 1 / 3
}

.layout-social-block .second-blog {
	grid-row: 1
}

.layout-social-block .facebook-second {
	grid-row: 2
}

.layout-social-block .large-image,
.layout-social-block .small-image {
	background-size: cover;
	background-position: center
}

@media screen and (max-width:500px) {
	.layout-social-block .small-image {
		display: none
	}
}

.layout-social-block .social-block {
	position: relative;
	display: block;
	padding: 1.5em 1.5em 1.5em 90px;
	text-decoration: none;
	transition: all 300ms ease
}

@media screen and (max-width:850px) {
	.layout-social-block .social-block {
		padding: 90px 1.5em 1.5em
	}
}

.layout-social-block .social-block::before {
	content: "";
	position: absolute;
	display: block;
	left: 1.5em;
	top: 2em;
	width: 40px;
	height: 40px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat
}

@media screen and (max-width:850px) {
	.layout-social-block .social-block::before {
		left: 1.5em;
		top: 1.5em
	}
}

.layout-social-block .social-block.tweet::before {
	background-image: url("../images/svg/logo-twitter-white.svg")
}

.layout-social-block .social-block.facebook {
	padding-bottom: 4em
}

.layout-social-block .social-block.facebook::before {
	background-image: url("../images/svg/logo-facebook-white.svg")
}

.layout-social-block .social-block:hover,
.layout-social-block .social-block:focus {
	transform: scale(1.05);
	box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2);
	z-index: 100
}

.layout-social-block .social-date {
	font-size: .875em;
	text-transform: uppercase
}

.layout-social-block .social-content {
	font-size: 1.5em;
	font-weight: 300;
	line-height: 1.125
}

@media screen and (max-width:1000px) {
	.layout-social-block .social-content {
		font-size: 1em
	}
}

.layout-social-block .facebook-first {
	background-color: #d78f3b;
	color: #fff;
	transition: all 300ms ease
}

.layout-social-block .facebook-first:hover,
.layout-social-block .facebook-first:focus {
	transform: scale(1.05);
	box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2);
	z-index: 100
}

@media screen and (max-width:500px) {
	.layout-social-block .facebook-first {
		grid-column: 1 / 4;
		grid-row: 1
	}
}

.layout-social-block .tweet {
	background-color: #5ab5ce;
	color: #fff
}

.layout-social-block .tweet-second {
	background-color: #4f8877;
	color: #fff
}

.layout-social-block .blog-entry {
	display: block;
	padding: 1.5em;
	text-decoration: none;
	background-color: #f5f5f5;
	transition: all 300ms ease
}

.layout-social-block .blog-entry:hover,
.layout-social-block .blog-entry:focus {
	transform: scale(1.05);
	box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2);
	z-index: 100
}

.layout-social-block .article-title {
	margin-bottom: .375em;
	color: #138caa;
	font-size: 1.5em;
	line-height: 1.25em
}

@media screen and (max-width:850px) {
	.layout-social-block .article-title {
		font-size: 1.25em
	}
}

.layout-social-block .newsletter-container {
	position: relative;
	display: grid;
	padding: 2em;
	background-size: cover;
	background-position: center;
	align-items: center;
	justify-content: center
}

.layout-social-block .newsletter-container::before {
	content: "";
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.75)
}

.layout-social-block .newsletter-container .article-title {
	text-align: left
}

.layout-social-block .newsletter-container .form-line {
	display: grid;
	grid-template-columns: 6.5fr 1fr;
	grid-gap: .5em
}

@media screen and (max-width:850px) {
	.layout-social-block .newsletter-container .form-line {
		grid-template-columns: 4fr 1fr
	}
}

.layout-social-block .newsletter-container input[type=email] {
	width: 100%;
	padding: 1.25em;
	line-height: 1;
	border: 2px solid #138caa;
	outline: 0;
	background-color: #f5f5f5;
	color: #606060;
	font-family: "Lato", sans-serif;
	font-size: 1em
}

.layout-social-block .newsletter-form {
	position: relative;
	z-index: 2
}

.layout-photo-list .slider-container {
	position: relative;
	max-width: 800px;
	margin: 2em auto 0
}

.layout-photo-list .slide {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 0;
	padding-bottom: 75%;
	opacity: 0;
	transition: opacity 425ms ease
}

.layout-photo-list .slide.active {
	position: relative;
	opacity: 1
}

.layout-photo-list .slide-image {
	direction: block;
	font-size: 0
}

.layout-photo-list .paginator {
	display: grid;
	max-width: 800px;
	max-height: 300px;
	overflow-y: scroll;
	margin: 1em auto 0;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	grid-gap: 1em
}

@media screen and (max-width:1000px) {
	.layout-photo-list .paginator {
		grid-template-columns: 1fr 1fr 1fr 1fr
	}
}

@media screen and (max-width:850px) {
	.layout-photo-list .paginator {
		grid-template-columns: 1fr 1fr 1fr
	}
}

@media screen and (max-width:650px) {
	.layout-photo-list .paginator {
		grid-template-columns: 1fr 1fr
	}
}

.layout-photo-list .paginator::-webkit-scrollbar {
	width: .25em
}

.layout-photo-list .paginator::-webkit-scrollbar-track {
	background-color: rgba(96, 96, 96, 0.25);
	-webkit-box-shadow: none
}

.layout-photo-list .paginator::-webkit-scrollbar-thumb {
	background-color: #138caa;
	outline: 0
}

.layout-photo-list .pager {
	cursor: pointer
}

.layout-in-memory {
	position: relative;
	z-index: 2;
	background-size: cover;
	background-position: bottom;
	color: #fff
}

@media screen and (min-width:1800px) {
	.layout-in-memory {
		background-position: 45px 90%
	}
}

@media screen and (max-width:1450px) {
	.layout-in-memory {
		background-size: 1600px auto
	}
}

@media screen and (max-width:800px) {
	.layout-in-memory {
		background-size: cover
	}
}

.layout-in-memory .mobile-image {
	display: block;
	width: calc(100% + 2em);
	max-width: none;
	margin-top: -4em;
	margin-bottom: 2em;
	margin-left: -1em
}

@media screen and (min-width:700px) {
	.layout-in-memory .mobile-image {
		display: none
	}
}

.layout-in-memory::before {
	content: "";
	position: absolute;
	display: block;
	z-index: -1;
	left: 0;
	top: 0;
	width: 70%;
	height: 100%;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.675), transparent)
}

@media screen and (max-width:1130px) {
	.layout-in-memory::before {
		width: 100%;
		background-image: none;
		background-color: rgba(0, 0, 0, 0.675)
	}
}

.layout-in-memory .title-wrapper {
	font-size: 1.5em
}

.layout-in-memory .section-title,
.layout-in-memory .layout-full-width-content .search-title,
.layout-full-width-content .layout-in-memory .search-title,
.layout-in-memory .layout-content-video-columns .column-title,
.layout-content-video-columns .layout-in-memory .column-title {
	margin-bottom: .5em;
	color: #fff;
	font-style: italic
}

.layout-in-memory .section-title strong,
.layout-in-memory .layout-full-width-content .search-title strong,
.layout-full-width-content .layout-in-memory .search-title strong,
.layout-in-memory .layout-content-video-columns .column-title strong,
.layout-content-video-columns .layout-in-memory .column-title strong {
	display: block
}

.layout-in-memory .content-wrapper {
	padding-right: 55%
}

@media screen and (max-width:1130px) {
	.layout-in-memory .content-wrapper {
		padding-right: 0
	}
}

.layout-in-memory .content-container {
	font-size: 1.075em
}

.layout-two-column-content {
	position: relative;
	z-index: 3;
	background-color: #fff
}

.layout-two-column-content::before {
	content: "";
	position: absolute;
	display: block;
	z-index: -1;
	left: 0;
	bottom: 5%;
	width: 326px;
	height: 184px;
	background-image: url("../images/polygons-cta-left.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left center;
	opacity: .25
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
	.layout-two-column-content::before {
		background-image: url("../images/polygons-cta-left@2x.png");
		background-size: contain
	}
}

@media screen and (max-width:620px) {
	.layout-two-column-content::before {
		display: none
	}
}

.layout-two-column-content::after {
	content: "";
	position: absolute;
	display: block;
	z-index: -1;
	right: 0;
	bottom: 5%;
	width: 326px;
	height: 184px;
	background-image: url("../images/polygons-cta-left.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right center;
	opacity: .25;
	transform: translate(0, 100%)
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
	.layout-two-column-content::after {
		background-image: url("../images/polygons-cta-left@2x.png");
		background-size: contain
	}
}

.layout-two-column-content .content-container {
	-moz-column-count: 2;
	column-count: 2;
	-moz-column-gap: 2em;
	column-gap: 2em;
	font-size: 1.125em
}

@media screen and (max-width:750px) {
	.layout-two-column-content .content-container {
		-moz-column-count: 1;
		column-count: 1
	}
}

.layout-code-embed .section-title,
.layout-code-embed .layout-full-width-content .search-title,
.layout-full-width-content .layout-code-embed .search-title,
.layout-code-embed .layout-content-video-columns .column-title,
.layout-content-video-columns .layout-code-embed .column-title {
	text-align: center
}

.layout-code-embed .content-container {
	margin-top: 2em
}

.layout-code-embed .r4e-widget.reviews {
	-moz-column-count: 2;
	column-count: 2;
	gap: 2em
}

@media screen and (max-width:800px) {
	.layout-code-embed .r4e-widget.reviews {
		-moz-column-count: 1;
		column-count: 1
	}
}

.layout-code-embed .r4e-widget.reviews .review {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 2em;
	page-break-inside: avoid;
	-webkit-break-inside: avoid
}

.layout-code-embed .r4e-widget.reviews .icon {
	flex: 0 0 46px;
	margin-right: 1em
}

.layout-code-embed .r4e-widget.reviews .summary {
	flex-grow: 1;
	font-size: 1.125em;
	font-weight: 500
}

.layout-code-embed .r4e-widget.reviews .comment {
	padding-top: .5em;
	margin-top: .5em;
	border-top: 1px solid #159cbd;
	flex: 1 0 100%
}

.layout-featured-blog-physician .width-container {
	justify-content: center
}

.layout-featured-blog-physician .articles-container {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 0;
	justify-content: center
}

.layout-featured-blog-physician .article-item {
	flex: 0 0 calc(33% - 1em);
	margin: 1em .5em
}

@media screen and (max-width:900px) {
	.layout-featured-blog-physician .article-item {
		flex: 0 0 calc(50% - 1em)
	}
}

.layout-filter-therapists {
	color: white;
	background-color: #2f7f93
}

.layout-filter-therapists .search-wrapper {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	text-align: left
}

@media screen and (max-width:850px) {
	.layout-filter-therapists .search-wrapper {
		display: none
	}
}

.layout-filter-therapists .listbox {
	opacity: 1;
	pointer-events: initial;
	transform: scale3d(1, 1, 1)
}

.layout-filter-therapists .dropdown-item.focused .dropdown-link::before {
	opacity: 1
}

.layout-filter-therapists .column {
	position: relative;
	flex: 0 0 30%
}

.layout-filter-therapists .column:first-of-type,
.layout-filter-therapists .column:nth-child(2) {
	margin-right: 5%
}

.layout-filter-therapists .column:first-of-type::after,
.layout-filter-therapists .column:nth-child(2)::after {
	content: "";
	position: absolute;
	display: block;
	right: -5%;
	top: 50%;
	font-size: 1.125em;
	content: 'Or';
	transform: translate(100%, -50%);
	pointer-events: none
}

@media screen and (max-width:900px) {
	.layout-filter-therapists .column {
		flex: 0 0 27%
	}
	.layout-filter-therapists .column:first-of-type,
	.layout-filter-therapists .column:nth-child(2) {
		margin-right: 9.5%
	}
	.layout-filter-therapists .column:first-of-type::after,
	.layout-filter-therapists .column:nth-child(2)::after {
		right: -12.5%
	}
}

html.modal-is-locked {
	overflow: hidden;
	touch-action: none
}

.dxmodal,
[data-modal-id] {
	display: none
}

.modal-overlay {
	position: fixed;
	z-index: 9999;
	top: -5000px;
	right: -5000px;
	bottom: -5000px;
	left: -5000px;
	display: none;
	background: rgba(43, 46, 56, 0.9)
}

.modal-wrapper {
	position: fixed;
	z-index: 10000;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 10px 10px 0;
	display: none;
	overflow: auto;
	text-align: center;
	-webkit-overflow-scrolling: touch
}

.modal-wrapper:after {
	display: inline-block;
	height: 100%;
	margin-left: -0.05em;
	content: "";
	vertical-align: middle
}

.modal-overlay,
.modal-wrapper {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.dxmodal {
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 10px;
	padding: 35px;
	transform: translate3d(0, 0, 0);
	color: #2b2e38;
	background: #fff;
	position: relative;
	outline: 0;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	vertical-align: middle
}

@media only screen and (min-width:641px) {
	.dxmodal {
		max-width: 600px
	}
}

.modal-is-initialized {
	display: inline-block
}

.layout-thank-you {
	position: relative;
	padding: 0;
	margin: 0
}

.layout-thank-you .title-wrapper {
	position: relative;
	background-color: #606060;
	background-position: center;
	background-size: cover
}

.layout-thank-you .title-wrapper::before {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4)
}

.layout-thank-you .section-title,
.layout-thank-you .layout-full-width-content .search-title,
.layout-full-width-content .layout-thank-you .search-title,
.layout-thank-you .layout-content-video-columns .column-title,
.layout-content-video-columns .layout-thank-you .column-title {
	position: relative;
	padding: 2em 1em 0;
	margin-bottom: 0;
	color: #fff;
	line-height: 1;
	font-size: 5em;
	font-weight: 900;
	text-transform: uppercase
}

@media screen and (max-width:480px) {
	.layout-thank-you .section-title,
	.layout-thank-you .layout-full-width-content .search-title,
	.layout-full-width-content .layout-thank-you .search-title,
	.layout-thank-you .layout-content-video-columns .column-title,
	.layout-content-video-columns .layout-thank-you .column-title {
		font-size: 3em
	}
}

.layout-thank-you .section-subtitle {
	padding: 0 .5em;
	margin: 1em auto;
	color: #606060;
	font-size: 1.5em;
	font-weight: 700;
	text-transform: uppercase
}

.layout-thank-you .content-container {
	padding: 0 .5em;
	padding-bottom: 1em;
	margin: 0 auto;
	max-width: 425px
}

.layout-thank-you .close-button {
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	right: 1em;
	top: 1em;
	width: 2em;
	height: 2em;
	background-color: #fff;
	background-image: url("../images/svg/icon-times.svg");
	background-size: 1em 1em;
	border-radius: 50%;
	cursor: pointer;
	opacity: .5;
	transition: opacity 300ms ease
}

.layout-thank-you .close-button:hover {
	opacity: 1
}

.pagination-container {
	margin: 4em 0 2em 0;
	flex: 1 0 100%
}

.pagination-container .btn-container {
	display: flex;
	align-items: center;
	justify-content: center
}

.pagination-container .older {
	margin-right: auto
}

@-webkit-keyframes modal-video {
	from {
		opacity: 0
	}
	to {
		opacity: 1
	}
}

@keyframes modal-video {
	from {
		opacity: 0
	}
	to {
		opacity: 1
	}
}

@-webkit-keyframes modal-video-inner {
	from {
		transform: translate(0, 100px)
	}
	to {
		transform: translate(0, 0)
	}
}

@keyframes modal-video-inner {
	from {
		transform: translate(0, 100px)
	}
	to {
		transform: translate(0, 0)
	}
}

.modal-video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000000;
	cursor: pointer;
	opacity: 1;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: .3s;
	animation-duration: .3s;
	-webkit-animation-name: modal-video;
	animation-name: modal-video;
	transition: opacity .3s ease-out
}

.modal-video-close {
	opacity: 0
}

.modal-video-close .modal-video-movie-wrap {
	transform: translate(0, 100px)
}

.modal-video-body {
	max-width: 940px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: table
}

.modal-video-inner {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	height: 100%
}

.modal-video-movie-wrap {
	width: 100%;
	height: 0;
	position: relative;
	padding-bottom: 56.25%;
	background-color: #333;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: .3s;
	animation-duration: .3s;
	-webkit-animation-name: modal-video-inner;
	animation-name: modal-video-inner;
	transform: translate(0, 0);
	transition: transform .3s ease-out
}

.modal-video-movie-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.modal-video-close-btn {
	position: absolute;
	z-index: 2;
	top: -35px;
	right: -35px;
	display: inline-block;
	width: 35px;
	height: 35px;
	overflow: hidden;
	border: 0;
	background: transparent
}

.modal-video-close-btn:before {
	transform: rotate(45deg)
}

.modal-video-close-btn:after {
	transform: rotate(-45deg)
}

.modal-video-close-btn:before,
.modal-video-close-btn:after {
	content: '';
	position: absolute;
	height: 2px;
	width: 100%;
	top: 50%;
	left: 0;
	margin-top: -1px;
	background: #fff;
	border-radius: 5px;
	margin-top: -6px
}

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane>svg,
.leaflet-pane>canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0
}

.leaflet-container {
	overflow: hidden
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-drag: none
}

.leaflet-tile::-moz-selection {
	background: transparent
}

.leaflet-tile::selection {
	background: transparent
}

.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast
}

.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block
}

.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none!important;
	max-height: none!important
}

.leaflet-container.leaflet-touch-zoom {
	touch-action: pan-x pan-y
}

.leaflet-container.leaflet-touch-drag {
	touch-action: none;
	touch-action: pinch-zoom
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	touch-action: none
}

.leaflet-container {
	-webkit-tap-highlight-color: transparent
}

.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4)
}

.leaflet-tile {
	filter: inherit;
	visibility: hidden
}

.leaflet-tile-loaded {
	visibility: inherit
}

.leaflet-zoom-box {
	width: 0;
	height: 0;
	box-sizing: border-box;
	z-index: 800
}

.leaflet-overlay-pane svg {
	-moz-user-select: none
}

.leaflet-pane {
	z-index: 400
}

.leaflet-tile-pane {
	z-index: 200
}

.leaflet-overlay-pane {
	z-index: 400
}

.leaflet-shadow-pane {
	z-index: 500
}

.leaflet-marker-pane {
	z-index: 600
}

.leaflet-tooltip-pane {
	z-index: 650
}

.leaflet-popup-pane {
	z-index: 700
}

.leaflet-map-pane canvas {
	z-index: 100
}

.leaflet-map-pane svg {
	z-index: 200
}

.leaflet-vml-shape {
	width: 1px;
	height: 1px
}

.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute
}

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted;
	pointer-events: auto
}

.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none
}

.leaflet-top {
	top: 0
}

.leaflet-right {
	right: 0
}

.leaflet-bottom {
	bottom: 0
}

.leaflet-left {
	left: 0
}

.leaflet-control {
	float: left;
	clear: both
}

.leaflet-right .leaflet-control {
	float: right
}

.leaflet-top .leaflet-control {
	margin-top: 10px
}

.leaflet-bottom .leaflet-control {
	margin-bottom: 10px
}

.leaflet-left .leaflet-control {
	margin-left: 10px
}

.leaflet-right .leaflet-control {
	margin-right: 10px
}

.leaflet-fade-anim .leaflet-tile {
	will-change: opacity
}

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	transition: opacity .2s linear
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1
}

.leaflet-zoom-animated {
	transform-origin: 0 0
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	will-change: transform
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	transition: transform .25s cubic-bezier(0, 0, 0.25, 1)
}

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	transition: none
}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden
}

.leaflet-interactive {
	cursor: pointer
}

.leaflet-grab {
	cursor: -webkit-grab;
	cursor: grab
}

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair
}

.leaflet-popup-pane,
.leaflet-control {
	cursor: auto
}

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor: grabbing
}

.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane>svg path,
.leaflet-tile-container {
	pointer-events: none
}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane>svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted;
	pointer-events: auto
}

.leaflet-container {
	background: #ddd;
	outline: 0
}

.leaflet-container a {
	color: #0078a8
}

.leaflet-container a.leaflet-active {
	outline: 2px solid orange
}

.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255, 255, 255, 0.5)
}

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
	border-radius: 4px
}

.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black
}

.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block
}

.leaflet-bar a:hover {
	background-color: #f4f4f4
}

.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px
}

.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: 0
}

.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb
}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px
}

.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px
}

.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px
}

.leaflet-touch .leaflet-control-zoom-in,
.leaflet-touch .leaflet-control-zoom-out {
	font-size: 22px
}

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
	background: #fff;
	border-radius: 5px
}

.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px
}

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative
}

.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff
}

.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px
}

.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px
}

.leaflet-control-layers label {
	display: block
}

.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px
}

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0
}

.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333
}

.leaflet-control-attribution a {
	text-decoration: none
}

.leaflet-control-attribution a:hover {
	text-decoration: underline
}

.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px
}

.leaflet-left .leaflet-control-scale {
	margin-left: 5px
}

.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px
}

.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: 0;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	box-sizing: border-box;
	background: #fff;
	background: rgba(255, 255, 255, 0.5)
}

.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: 0;
	margin-top: -2px
}

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none
}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0, 0, 0, 0.2);
	background-clip: padding-box
}

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px
}

.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 3px
}

.leaflet-popup-content {
	margin: 13px 19px;
	line-height: 1.4
}

.leaflet-popup-content p {
	margin: 18px 0
}

.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none
}

.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;
	margin: -10px auto 0;
	transform: rotate(45deg)
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4)
}

.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd
}

.leaflet-oldie .leaflet-popup-content-wrapper {
	zoom: 1
}

.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;
	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)
}

.leaflet-oldie .leaflet-popup-tip-container {
	margin-top: -1px
}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999
}

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666
}

.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4)
}

.leaflet-tooltip.leaflet-clickable {
	cursor: pointer;
	pointer-events: auto
}

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: ""
}

.leaflet-tooltip-bottom {
	margin-top: 6px
}

.leaflet-tooltip-top {
	margin-top: -6px
}

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px
}

.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff
}

.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff
}

.leaflet-tooltip-left {
	margin-left: -6px
}

.leaflet-tooltip-right {
	margin-left: 6px
}

.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px
}

.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff
}

.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff
}

.modal-button {
	color: #fff;
	font-weight: 700;
	border-bottom: 1px dotted #fff;
	text-decoration: none;
	cursor: pointer
}

.modal-button:hover {
	border-bottom: 1px solid
}

.remodal-close {
	position: absolute;
	top: 1em;
	left: 1em;
	display: block;
	overflow: visible;
	width: 1em;
	height: 1em;
	margin: 0;
	padding: 0;
	cursor: pointer;
	transition: color .2s;
	text-decoration: none;
	color: #95979c;
	border: 0;
	outline: 0;
	background: transparent
}

.remodal-close::before {
	content: "";
	position: absolute;
	display: block;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 100%;
	background-image: url("../images/svg/icon-close-gray.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transform: translate(-50%, -50%)
}

.brand-logo {
	position: absolute;
	top: 0;
	right: 30px;
	height: 82px;
	width: 192px;
	background-image: url(https://dynamix-cdn.s3.amazonaws.com/resurgens2019com/logo-worklink.jpg);
	background-size: contain
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 9998;
	transition: opacity 325ms ease;
	opacity: 1
}

.overlay.is-hidden {
	pointer-events: none;
	opacity: 0
}

.form-modal,
.remodal {
	position: fixed;
	left: 50%;
	top: 50%;
	padding: 2em;
	width: 100%;
	max-width: 900px;
	max-height: calc(100% - 150px);
	overflow-y: scroll;
	background: #fff;
	z-index: 9999;
	transform: translate(-50%, -50%);
	transition: opacity 325ms ease;
	opacity: 1
}

.form-modal.is-hidden,
.remodal.is-hidden {
	pointer-events: none;
	opacity: 0
}