/*******************************************/
/* Theme Name: PaperStreet                 */
/* Theme URI: http://www.wordpressbase.com */
/* Author: PaperStreet                     */
/* Author URI: https://www.paperstreet.com */
/* Description: For PaperStreet            */
/* Text Domain: paperstreet                */
/* Version: 3.2005                         */
/*******************************************/

/*
GENERAL
HEADER
MENUS
FOOTER
CONTENT
BLOG
TEMPLATES
FEATURES
MODULES
PRINT
*/

/*******************************************************************************************
GENERAL - Top-level styling
*******************************************************************************************/
:root {
	font-size: 18px;
	--body-text-color: #6A7B7E;
	--primary-color: #006D7E;
	--secondary-color: #59BAB6;
	--alternate-color: #CC7539;
	--gray-color: #6A7B7E;
	--light-gray-color: #C7C7C7;
	--body-font-family: 'Barlow Semi Condensed', sans-serif;
	--heading-font-family: 'Playfair Display', serif;
	--fa-caret-right: '\f0da';
	--fa-angle-right: '\f105';
	--fa-plus: '\f067';
	--fa-minus: '\f068';
}

@media screen and (min-width: 768px) {
	:root {
		font-size: 20px;
	}
}

@media screen and (min-width: 1300px) {
	:root {
		font-size: 22px;
	}
}

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	display: block !important;
	line-height: 1.6;
	color: #6A7B7E;
	font-size: 1.0rem;
	font-family: 'Barlow Semi Condensed', sans-serif;
	font-family: var(--body-font-family);
	font-weight: 400;
	margin: 0;
}

*:focus {
	outline: auto;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

@media (prefers-reduced-motion: reduce),
(update: slow) {

	*,
	::before,
	::after {
		animation-delay: -1ms !important;
		animation-duration: 1ms !important;
		animation-iteration-count: 1 !important;
		background-attachment: initial !important;
		scroll-behavior: auto !important;
		transition-duration: 0s !important;
		transition-delay: 0s !important;
	}
}

/* GENERAL > Headings and Paragraphs */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 30px;
	color: #006D7E;
	font-weight: 700;
	font-family: var(--heading-font-family);
	line-height: 1.1;
}

.multi-styled-title span {
	display: block;
}

.multi-styled-title.home-hero-title span {
	display: inline-block;
}

em.font-style-normal {
	font-style: normal !important;
}

.multi-h3.small {
	font-size: 1rem;
}

.multi-h1,
h1 {
	font-size: 2.4rem;
	font-style: italic;
	color: #59BAB6;
	font-family: 'Playfair Display', serif;
}

.pseudo-h2,
.multi-h2,
h2 {
	font-size: 1.7rem;
	font-weight: 600;
	font-style: italic;
	font-family: 'Playfair Display', serif;
	text-transform: none;
}

.multi-h3,
h2.pseudo-h3,
.sidebar-block h2,
.paint-swipe-title,
h3,
h4,
h5,
h6 {
	font-size: 1.4rem;
	font-style: normal;
	text-transform: uppercase;
	font-weight: 500;
	font-family: 'Barlow Semi Condensed', sans-serif;
}

h4 {
	font-size: 1.1rem;
	color: #59BAB6;
}

h5,
h6 {
	font-size: 1.0rem;
}

.alt-font {
	font-family: 'Barlow Semi Condensed', sans-serif;
}

p {
	margin: 0 0 30px;
	font-size: 1.0rem;
	color: #6A7B7E;
}

/* GENERAL > Lists */
ol,
ul {
	margin: 0 0 35px 0;
	padding: 0;
}

ul {
	list-style: none;
}

ol {
	list-style-position: outside;
	padding-left: 20px;
}

.content li {
	font-size: 1.0rem;
	color: #6A7B7E;
	padding: 0 0 0 20px;
	position: relative;
}

.content ol li {
	padding-left: 0;
}

.content ul li:before {
	position: absolute;
	top: 1px;
	left: 0;
	content: "\f0da";
	font-family: 'Font Awesome 5 Pro';
	color: #006D7E;
}

.content ul li:before,
.sidebar section ul li:before {
	font-family: 'Font Awesome 5 Pro';
}

.content ul ul {
	margin: 20px 0 20px 20px;
}

hr {
	background: #59BAB6;
	width: 20%;
	height: 5px;
	display: block;
	border: none;
	margin: 40px 0;
}

figure {
	margin: 0;
}

address {
	font-style: normal;
}

/* GENERAL > Links and Buttons */
a {
	color: #006D7E;
	text-decoration: underline;
}

a:hover,
a:focus {
	color: #59BAB6;
	text-decoration: none;
}

a.no-underline {
	text-decoration: none;
}

a.no-underline:hover,
a.no-underline:focus {
	text-decoration: underline;
}

a.link-alternate {
	color: #006D7E;
}

a.link-alternate:focus,
a.link-alternate:hover {
	color: #CC7539;
}

a,
button,
.button {
	-webkit-transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
	-o-transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
	transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
}

button,
.button {
	font-family: var(--body-font-family);
	font-size: 1.0rem;
	font-weight: 500;
	text-transform: uppercase;
	cursor: pointer;
	border: none;
	margin: 0;
	padding: 12px 25px;
	text-align: center;
	display: inline-block;
	color: #fff;
	background-color: #006D7E;
	text-decoration: none;
}

button:active,
.button:active {
	transform: translateY(1.5px);
}

button:hover,
button:focus,
.button:hover,
.button:focus {
	background-color: #CC7539;
	color: #fff;
}

button.alt-01,
.button.alt-01 {
	background-color: #59BAB6;
}

button.alt-01:hover,
button.alt-01:focus,
.button.alt-01:hover,
.button.alt-01:focus {
	background-color: #CC7539;
	color: #006D7E;
}

button.alt-02,
.button.alt-02 {
	background-color: #006D7E;
	color: #CC7539;
	padding: 20px;
	font-family: 'Barlow Semi Condensed', sans-serif;
}

button.alt-02:hover,
button.alt-02:focus,
.button.alt-02:hover,
.button.alt-02:focus {
	background-color: #CC7539;
	color: #006D7E;
}

button.outline,
.button.outline {
	background: none;
	border: 3px solid #fff;
	color: #fff;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-ms-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

button.outline:hover,
button.outline:focus,
.button.outline:hover,
.button.outline:focus {
	border-color: #CC7539;
	color: #CC7539;
}

button.outline.outline-alt-01,
.button.outline.outline-alt-01 {
	border-color: #CC7539;
	color: #006D7E;
}

button.outline.outline-alt-01:hover,
button.outline.outline-alt-01:focus,
.button.outline.outline-alt-01:hover,
.button.outline.outline-alt-01:focus {
	background: #CC7539;
}

button.no-button,
.button.no-button {
	padding: 0;
	background: none;
}

/* GENERAL > Form and Inputs */
input,
select,
textarea {
	color: #6A7B7E;
	background: none;
	border: 0;
	border-bottom: 3px solid #59BAB6;
	font-size: 0.9rem;
	line-height: 1.0;
	font-family: var(--body-font-family);
	-webkit-box-shadow: none;
	box-shadow: none;
	margin: 0;
	width: 100%;
	border-radius: 0;
	padding: 0 15px;
}

input,
select,
textarea,
label {
	height: 45px;
	line-height: 45px;
}

input.dark-input,
select.dark-input,
textarea.dark-input {
	color: #006D7E;
}

textarea {
	resize: none;
	min-height: 90px;
	padding-top: 15px;
	padding-bottom: 15px;
	line-height: 1.2;
}

.contact-form input {
	height: 75px;
}

.contact-form textarea {
	height: 130px;
}

form legend,
form label,
form p {
	font-size: 1.0rem;
}

legend,
label {
	color: #fff;
}

fieldset {
	padding: 0;
	border: none;
	margin: 0;
}

label {
	position: absolute;
	top: 0;
	left: 0;
	font-family: 'Barlow Semi Condensed', sans-serif;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-ms-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

input:focus~label,
textarea:focus~label,
input.active~label,
textarea.active~label,
select.active~label {
	padding-left: 0;
	line-height: 0;
	top: -15px;
	font-size: 0.7rem;
}

.form-input-group label i {
	color: #59BAB6;
}

.form-input-group {
	display: block;
	position: relative;
	width: 100%;
	margin-bottom: 25px;
	text-align: left;
}

.form-input-group.button-container {
	margin-bottom: 0;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	color: #fff;
}

select::-ms-expand {
	display: none;
}

.select-wrapper {
	position: relative;
	width: 100%;
}

.select-wrapper:after {
	content: "\f0dc";
	font-weight: 900;
	font-family: "Font Awesome 5 Pro";
	position: absolute;
	right: 0;
	top: 0;
	text-align: center;
	width: 45px;
	line-height: 45px;
	color: #CC7539;
	pointer-events: none;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-ms-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

.select-wrapper.active:after {
	background: #006D7E;
	color: #fff;
}

.form-container {
	background: #ffffff;
	padding: 30px;
}

.sidebar .form-container {
	background: none;
	padding: 0;
}

.sidebar .contact-form button {
	padding-left: 5px;
	padding-right: 5px;
}

.contact-form-heading {
	color: #fff;
	text-align: center;
}

.form-container button {
	width: 100%;
}

.background-input input:focus~label,
.background-input textarea:focus~label,
.background-input input.active~label,
.background-input textarea.active~label,
.background-input select.active~label {
	color: #006D7E;
}

.background-input input,
.background-input textarea,
.background-input select {
	background-color: #006D7E;
}

.background-input.select-wrapper:after,
.background-input .select-wrapper:after {
	background-color: #59BAB6;
}

input.has-error {
	border: 1px solid #ff0000 !important;
	-webkit-box-shadow: 0 0 2px #ff0000 !important;
	box-shadow: 0 0 2px #ff0000 !important;
}

p.error-text {
	color: #ff0000;
	margin: 0;
	font-size: 0.7rem;
	-webkit-animation: fadeIn 125ms both;
	animation: fadeIn 125ms both;
}

.grecaptcha-badge {
	display: none;
}

#theme-switcha {
	border: 1px solid #59BAB6;
	margin-bottom: 30px;
	color: #006D7E;
}

/* GENERAL > Animations */
.animated {
	-webkit-animation-duration: 1000ms;
	animation-duration: 1000ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animated.fast {
	-webkit-animation-duration: 600ms;
	animation-duration: 600ms;
}

.animated.slow {
	-webkit-animation-duration: 2000ms;
	animation-duration: 2000ms;
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp;
}

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight;
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
}

.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft;
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@-webkit-keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@-webkit-keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@-webkit-keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@-webkit-keyframes slideInUp {
	from {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes slideInUp {
	from {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@-webkit-keyframes slideInRight {
	from {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes slideInRight {
	from {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@-webkit-keyframes slideInDown {
	from {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes slideInDown {
	from {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@-webkit-keyframes slideInLeft {
	from {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes slideInLeft {
	from {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes menuSlideRight {
	from {
		opacity: 0;
		margin-left: -10px;
	}

	to {
		opacity: 1;
		margin-left: 0;
	}
}

@-webkit-keyframes menuSlideRight {
	from {
		opacity: 0;
		margin-left: -10px;
	}

	to {
		opacity: 1;
		margin-left: 0;
	}
}

@keyframes menuSlideDown {
	from {
		opacity: 0;
		margin-top: -10px;
	}

	to {
		opacity: 1;
		margin-top: 0;
	}
}

@-webkit-keyframes menuSlideDown {
	from {
		opacity: 0;
		margin-top: -10px;
	}

	to {
		opacity: 1;
		margin-top: 0;
	}
}

/* GENERAL > Skip To Content */
#skiptocontent {
	padding: 6px;
	z-index: 10;
	position: fixed;
	-webkit-transform: translateY(-40px);
	-ms-transform: translateY(-40px);
	transform: translateY(-40px);
	opacity: 0;
	background-color: #59BAB6;
	color: #fff;
	border-radius: 0 0 8px 0;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-ms-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

#skiptocontent:focus {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

@media only screen and (max-width: 640px) {
	#skiptocontent {
		display: none !important;
	}
}

/* GENERAL > Layout */

.columns,
.column {
	float: left;
	padding: 0 30px;
}

.full-width {
	width: 100%;
}

.sidebar {
	clear: both;
	float: none;
}

.small-12 {
	width: 100%;
}

.small-11 {
	width: 91.67%;
}

.small-10 {
	width: 83.34%;
}

.small-9 {
	width: 75%;
}

.small-8 {
	width: 66.67%;
}

.small-7 {
	width: 58.34%;
}

.small-6 {
	width: 50%;
}

.small-5 {
	width: 41.66%;
}

.small-4 {
	width: 33.33%;
}

.small-3 {
	width: 25%;
}

.small-2 {
	width: 16.66%;
}

.small-1 {
	width: 8.33%;
}

@media (min-width: 768px) {

	.medium-12 {
		width: 100%;
	}

	.medium-11 {
		width: 91.67%;
	}

	.medium-10 {
		width: 83.34%;
	}

	.medium-9 {
		width: 75%;
	}

	.medium-8 {
		width: 66.67%;
	}

	.medium-7 {
		width: 58.33%;
	}

	.medium-6 {
		width: 50%;
	}

	.medium-5 {
		width: 41.67%;
	}

	.medium-4 {
		width: 33.33%;
	}

	.medium-3 {
		width: 25%;
	}

	.medium-2 {
		width: 16.66%;
	}

	.medium-1 {
		width: 8.33%;
	}

	.hide-for-medium {
		display: none !important;
	}
}

@media (min-width: 1025px) {
	.large-12 {
		width: 100%;
	}

	.large-11 {
		width: 91.67%;
	}

	.large-10 {
		width: 83.34%;
	}

	.large-9 {
		width: 75%;
	}

	.large-8 {
		width: 66.67%;
	}

	.large-7 {
		width: 58.33%;
	}

	.large-6 {
		width: 50%;
	}

	.large-5 {
		width: 41.67%;
	}

	.large-4 {
		width: 33.33%;
	}

	.large-3 {
		width: 25%;
	}

	.large-2 {
		width: 16.66%;
	}

	.large-1 {
		width: 8.33%;
	}

	.hide-for-large {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.hide-for-small-only {
		display: none !important;
	}
}

@media screen and (max-width: 0px),
screen and (min-width: 768px) {
	.show-for-small-only {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.show-for-medium {
		display: none !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.hide-for-medium-only {
		display: none !important;
	}
}

@media screen and (max-width: 767px),
screen and (min-width: 1025px) {
	.show-for-medium-only {
		display: none !important;
	}
}

@media screen and (max-width: 1024px) {
	.show-for-large {
		display: none !important;
	}
}

/* GENERAL > Slick Customizations */
.slick-dots {
	position: absolute;
	text-align: center;
	width: 100%;
	bottom: 2%;
	margin: 0;
}

.slick-dots li {
	position: relative;
	display: inline-block;
	margin: 0 8px;
	padding: 0;
}

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

.slick-dots li button:before {
	content: '';
	background: #006D7E;
	display: block;
	height: 20px;
	width: 20px;
	line-height: 20px;
	border-radius: 50%;
	opacity: 1 !important;
	-webkit-transition: background 200ms ease-out;
	-moz-transition: background 200ms ease-out;
	-ms-transition: background 200ms ease-out;
	-o-transition: background 200ms ease-out;
	transition: background 200ms ease-out;
}

.slick-dots li:focus button:before,
.slick-dots li:hover button:before {
	background: #CC7539;
}

li.slick-active button:before {
	background: #59BAB6;
}

.slick-arrow {
	font-size: 2.2rem;
	background: none;
	padding: 0;
	width: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #006D7E;
}

.slick-arrow:hover,
.slick-arrow:focus {
	color: #CC7539;
	background: none;
}

.slick-slide {
	outline: none;
}

.slick-slider {
	visibility: hidden;
}

.slick-slider.slick-initialized {
	visibility: visible;
}

/* GENERAL > Utility Classes */
.row,
.row-wide,
.row-narrow {
	max-width: 1024px;
	margin-right: auto;
	margin-left: auto;
}

.row-narrow {
	max-width: 900px;
}

.row-wide {
	max-width: 1800px;
}

.row:after {
	clear: both;
}

.row:after,
.row:before {
	display: table;
	content: ' ';
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-order: 1;
	order: 1;
}

.no-float {
	float: none;
}

.no-margin {
	margin: 0 !important;
}

.no-padding {
	padding: 0 !important;
}

.no-min-height {
	min-height: 0;
}

.center,
.align-center,
.text-center {
	text-align: center;
}

.right,
.align-right,
.text-right {
	text-align: right;
}

.uppercase {
	text-transform: uppercase;
}

.hide {
	display: none !important;
}

.visually-hidden {
	border: none !important;
	clip: rect(0 0 0 0) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	white-space: nowrap !important;
	width: 1px !important;
}

.flex-container {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

.flex-align-vertical {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-align-horizontal {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	text-align: center;
}

.two-buttons-container a,
.two-buttons-container button {
	display: block;
	margin-bottom: 10px;
}

.small-text {
	font-size: 0.9rem;
}

.add-margin-top {
	margin-top: 40px;
}

.small-margin-left {
	margin-left: 10px;
}

.small-margin-right {
	margin-right: 10px;
}

.specific-animate-in-view,
.animate-in-view,
.opacity0 {
	opacity: 0;
}

.opacity1 {
	opacity: 1 !important;
}

.background-cover {
	background-size: cover;
	background-repeat: no-repeat;
}

.background-transparent {
	background: transparent;
}

.light-text,
.light-text h1,
.light-text h2,
.light-text h3,
.light-text p,
.light-text span,
.light-text li {
	color: #fff;
}

@media screen and (min-width: 450px) {
	.two-buttons-container {
		display: flex;
		justify-content: center;
	}

	.two-buttons-container a,
	.two-buttons-container button {
		margin: 0 6px;
	}
}

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

	.columns,
	.column {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media screen and (min-width: 1360px) {
	.row {
		max-width: 1280px;
	}

	.row-narrow {
		max-width: 1024px;
	}
}

/*******************************************************************************************
HEADER
*******************************************************************************************/

.header {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #fff;
	z-index: 3;
}

.header>.row {
	height: 100%;
}

.header a {
	text-decoration: none;
}

.header-desktop {
	display: none;
}

.header-logo {
	display: flex;
	align-items: center;
	padding: 0;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-ms-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

.header-logo img {
	max-width: 200px;
	width: 100%;
}

.header-logo:focus,
.header-logo:hover {
	opacity: 0.92;
}

.header-mobile-inner {
	display: flex;
	min-height: 70px;
	padding: 10px;
}

.header-mobile-buttons {
	display: flex;
	margin: 0 0 0 20px;
	flex: 1;
	justify-content: flex-end;
	align-items: center;
}

.header-mobile-buttons a,
.header-mobile-buttons button {
	display: flex;
	font-size: 1.3rem;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	flex: 1;
	max-width: 50px;
	width: 50px;
	height: 50px;
}

.header-mobile-buttons .header-search-toggle {
	margin-right: 12px;
}

.header-mobile-buttons .header-call-area {
	margin-right: 12px;
}

.header-call-area {
  background-color: #CC7539;
  color: #006D7E;
}

.header-call-area:hover,
.header-call-area:focus {
  background-color: #006D7E;
  color: #CC7539;
}

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

	.header-mobile-buttons a,
	.header-mobile-buttons button {
		width: 50px;
		max-width: 50px;
		height: 50px;
		font-size: 1.4rem;
	}
}

@media screen and (min-width: 1025px) {
	.header-mobile {
		display: none;
	}

	.header-desktop {
		display: block;
	}

	.header-logo {
		padding: 0;
	}
}

.header-right {
	display: none;
	height: 100%;
}

.header-right-top {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 14px;
}

.header-right-top span {
	font-weight: 600;
}

.header-phone,
.header-contact-button {
	font-size: 1.2rem;
}

.header-contact-button {
	margin: 0 30px;
}

.header-phone {
	color: #CC7539;
	display: inline-block;
}

.header-phone:focus,
.header-phone:hover {
	color: #006D7E;
}

.header-phone i {
	font-size: 80%;
}

.header-right-bottom {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-align-items: center;
	-ms-align-items: flex-end;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	justify-content: flex-end;
}


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

	.scrolled .header-logo {
		max-width: 220px;
	}

	.scrolled .header-right-top {
		margin-bottom: 8px;
	}

	.header-right {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		flex-direction: column;
		flex: 1;
	}

	.header-logo {
		width: 110px !important;
	}

	.header-inner {
		padding: 0 15px;
		height: 100%;
		position: relative;
		display: flex;
		align-items: center;
	}

	.header-logo img {
		padding: 0;
		max-width: 230px;
		padding: 15px 0;
		width: 100%;
	}
}

@media screen and (min-width: 1200px) {
	.header-logo img {
		max-width: none;
	}
}

/* HEADER > Header Search Bar */

.header-search {
	position: fixed;
	top: -100px;
	left: 0;
	right: 0;
	background-color: #006D7E;
	padding: 18px 0;
	width: 100%;
	opacity: 0;
	z-index: 4;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-ms-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

.header-search.active {
	opacity: 1;
	top: 0;
}

.header-search-inner {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	float: none;
}

.search-results-post-type:not(:last-child) {
	margin-bottom: 30px;
}

.search-results-post-type ul {
	margin: 0;
}

.header-search-results {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	padding: 30px;
	background: #006D7E;
	display: none;
	max-height: 350px;
	overflow: auto;
}

.header-search-results.active {
	display: block;
	-webkit-animation: fadeIn 200ms ease-out;
	animation: fadeIn 200ms ease-out;
}

.header-search-results h3,
.header-search-results a,
.header-search-results p {
	color: #fff;
}

.header-search-results h3 {
	margin-bottom: 8px;
}

.header-search-results a {
	text-decoration: none;
}

.header-search-results a:hover,
.header-search-results a:focus {
	text-decoration: underline;
}

.header-search-form {
	position: relative;
	flex: 1;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

#header-search-input {
	margin: 0;
	height: 45px;
	border: 0 none;
	font-size: 1.1rem;
	color: #fff;
	border-bottom: 1px solid #fff;
	background: none;
	box-shadow: none;
	-webkit-box-shadow: none;
}

input::-webkit-input-placeholder {
	color: #fff;
}

input:-ms-input-placeholder {
	color: #fff;
}

input::-ms-input-placeholder {
	color: #fff;
}

input::placeholder {
	color: #fff;
}

.header-search button {
	padding: 0 20px;
	height: 45px;
	width: 45px;
	padding: 0;
	white-space: pre;
}

.header-search-submit {
	margin: 0 10px;
}

.header-search-submit i {
	width: 45px;
}

#header-search-open {
	font-size: 1.1rem;
	display: inline-block;
	line-height: 40px;
	width: 40px;
	height: 40px;
	padding: 0;
	text-align: center;
	margin: 0;
	color: #006D7E;
}

#header-search-open:focus,
#header-search-open:hover {
	color: #59BAB6;
}

/*******************************************************************************************
MENUS - Main navigation, dropdowns and mobile menu
*******************************************************************************************/
.main-navigation-menu {
	margin: 0;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.main-navigation-menu li {
	display: block;
	position: relative;
	padding: 0;
}

.main-navigation-menu>li {
	padding: 0;
	margin-right: 0;
}

.main-navigation-menu>li:last-of-type {
	margin-right: 0;
}

.main-navigation-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	width: 350px;
	margin: 0;
	padding: 25px;
	background: #006D7E;
}

.main-navigation-menu>a:hover+.sub-menu,
.main-navigation-menu>a:focus+.sub-menu,
.main-navigation-menu>li.active>.sub-menu {
	display: block;
	-webkit-animation: menuSlideDown 200ms both;
	animation: menuSlideDown 200ms both;
}

.main-navigation-menu a:focus,
.main-navigation-menu a:hover,
.main-navigation-menu li:hover>a {
	color: #CC7539;
}

.main-navigation-menu>li>a {
	display: block;
	font-weight: 500;
	height: 100%;
	color: #006D7E;
	line-height: 1.0;
	font-size: 0.7rem;
	text-transform: uppercase;
	padding: 5px;
}

.main-navigation-menu>li.active,
.main-navigation-menu>li>a:focus,
.main-navigation-menu>li>a:hover {
	background: #006D7E;
}

.main-navigation-menu>li:first-child>a {
	margin-left: 0;
}

#desktop-navigation .menu-item-941 {
	display: none;
}

@media screen and (min-width: 1200px) {
	.main-navigation-menu>li {
		padding-right: 0;
		margin-right: 0.7vw;
	}

	.scrolled .main-navigation-menu>li {
		margin-right: 1.5vw;
	}
}

@media screen and (min-width: 1400px) {
	.main-navigation-menu>li>a {
		padding: 10px;
		font-size: 0.85rem;
	}
}

/* MENUS > Main Nav Dropdowns (Level 2) */
#desktop-navigation .sub-menu li {
	-webkit-transition: background 200ms ease-out;
	-moz-transition: background 200ms ease-out;
	-ms-transition: background 200ms ease-out;
	-o-transition: background 200ms ease-out;
	transition: background 200ms ease-out;
}

#desktop-navigation .sub-menu li {
	position: relative;
	cursor: pointer;
}

#desktop-navigation .sub-menu li a {
	color: #fff;
	font-family: 'Barlow Semi Condensed', sans-serif;
	font-size: 0.8rem;
	display: block;
	padding: 15px 0;
	line-height: 1.0;
	text-decoration: none;
	border-bottom: 1px solid #fff;
}

#desktop-navigation .sub-menu li a:focus,
#desktop-navigation .sub-menu li a:hover {
	color: #CC7539;
}

#desktop-navigation .sub-menu .menu-item-has-children>a:after {
	content: "\f101";
	font-family: 'Font Awesome 5 Pro';
	position: absolute;
	right: 10px;
	color: #59BAB6;
}

#desktop-navigation .sub-menu .menu-item-has-children.active>a:after {
	color: #fff;
}

#desktop-navigation .sub-menu .menu-item-has-children ul {
	position: absolute;
	left: 100%;
	top: 0;
}

#desktop-navigation .sub-menu .sub-menu .sub-menu {
	display: none !important;
}

#desktop-navigation .sub-menu .menu-item-has-children:hover ul,
.menu-item-has-children.active>.sub-menu {
	display: block;
	-webkit-animation: menuSlideRight 200ms both;
	animation: menuSlideRight 200ms both;
}

/* MENUS > Mobile Menu */
#container {
	position: relative;
	right: 0;
	top: 0;
	overflow: hidden;
}

#container:before {
	z-index: 99;
	content: "";
	position: absolute;
	pointer-events: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.5);
	opacity: 0;
	-webkit-transition: opacity 200ms ease-out;
	-moz-transition: opacity 200ms ease-out;
	-ms-transition: opacity 200ms ease-out;
	-o-transition: opacity 200ms ease-out;
	transition: opacity 200ms ease-out;
}

#container.active {
	cursor: pointer;
}

#container.active:before {
	opacity: 1;
}

#mobile-menu:not(.active) {
	display: none;
}

#mobile-navigation {
	z-index: 100;
	position: fixed;
	background-color: #006D7E;
	opacity: 0;
}

#mobile-navigation,
#mobile-navigation .sub-menu {
	display: block;
	height: 100vh;
	top: 0;
	right: -100%;
	width: 85%;
	-webkit-transition: all 300ms cubic-bezier(0, 0, 0, 0.96);
	-moz-transition: all 300ms cubic-bezier(0, 0, 0, 0.96);
	-ms-transition: all 300ms cubic-bezier(0, 0, 0, 0.96);
	-o-transition: all 300ms cubic-bezier(0, 0, 0, 0.96);
	transition: all 300ms cubic-bezier(0, 0, 0, 0.96);
}

#mobile-navigation a,
#mobile-navigation .mobile-navigation-title {
	padding-left: 20px;
	display: none	;
}

#mobile-navigation.active {
	right: 0;
	opacity: 1;
}

#mobile-navigation a {
	display: block;
	text-decoration: none;
	color: #fff;
	padding-top: 4px;
	padding-bottom: 4px;
}

#mobile-navigation a:hover,
#mobile-navigation a:active,
#mobile-navigation a:focus {
	color: #CC7539;
}

#mobile-navigation ul {
	margin: 0;
}

#mobile-navigation ul li {
	padding: 0;
	position: relative;
	display: block;
	width: 100%;
	border-bottom: 1px solid #fff;
}

#mobile-navigation ul li:last-of-type {
	border: none;
}

#mobile-navigation ul li:before {
	display: none;
}

#mobile-navigation ul li.sub-menu-open>.sub-menu {
	right: 0;
}

#mobile-navigation .sub-menu {
	margin: 0;
	position: fixed;
	background: #006D7E;
	z-index: 1;
	overflow: auto;
}

.mobile-navigation-title {
	font-size: 1.3rem;
	background-color: #fff;
	font-family: 'Barlow Semi Condensed', sans-serif;
	margin: 0;
	font-style: normal;
	padding-top: 8px;
	padding-bottom: 8px;
	font-weight: 500;
	text-transform: uppercase;
}

.mobile-navigation-next {
	padding: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	width: 20%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	background: #59BAB6;
}

.mobile-navigation-previous {
	margin-bottom: 10px;
	border: none !important;
}

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

	#mobile-navigation,
	#mobile-navigation .sub-menu {
		width: 60%;
	}
}

/*******************************************************************************************
FOOTER - Footer styles shared between modules
*******************************************************************************************/

/* TEMPLATES > Footer */
.footer {
	position: relative;
	background: #006d7e;
	padding-top: 240px;
	margin-top: 50px;
}

.footer-half-main h2 {
	font-size: 2.3rem;
}

.footer-lower span {
	position: relative;
	font-size: 0.8rem;
	color: #D5D5D5;
}

.footer-phone {
	margin: 16px 0;
}

.footer-lower {
	background: #01444E;
	padding: 60px 0;
	text-align: center;
	z-index: 1;
}

.footer-lower,
.footer-inner {
	position: relative;
}

.footer .social-links {
	justify-content: center;
}

.footer-lower-schedule {
	display: block;
	margin: 20px 0;
}

.footer-site-credit {
	display: block;
	text-transform: uppercase;
	margin-top: 8px;
}

.footer-lower-schedule a {
	font-weight: 700;
	font-size: 1.2rem;
	color: #CC7539;
	font-family: 'Playfair Display', serif;
}

.footer-lower-info a {
	color: #59BAB6;
}

.footer-lower-info a:focus,
.footer-lower-info a:hover {
	color: #CC7539;
}

.cta-phone a,
.footer-phone a {
	font-family: 'Barlow Semi Condensed', sans-serif;
	color: #CC7539;
	font-size: 2.3rem;
}

.footer-inner {
	display: flex;
	z-index: 2;
	flex-direction: column;
}

.footer:before {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	right: 0;
	height: 400px;
	width: 100%;
	content: '';
	display: block;
	background-image: url(images/background_footer.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}


.footer-half {
	width: 100%;
	order: 2;
}

.footer-half-main {
	padding: 50px 0;
}


h2.fancy-title,
h3.fancy-title,
.fancy-body-text {
	font-family: 'Playfair Display', serif;
	font-style: italic;
}

.fancy-body-text {
	font-size: 1.2rem;
	line-height: 1.6;
}

h2 .fancy-title,
h3 .fancy-title,
.fancy-title {
	color: #59BAB6;
	font-weight: 700;
	font-size: 2.6rem;
}

.footer-half-main-button {
	width: 100%;
}

.footer-half-side {
	order: 1;
	padding: 50px 15px;
}


.footer-half-contact {
	background: #fff;
	margin: 0 auto;
	z-index: 1;
	width: 90%;
	padding-left: 35px;
	padding-right: 35px;
	max-width: 600px;
}

.footer-half-contact-title {
	font-size: 3rem;
	text-align: center;
}

.footer-half-side .form-container {
	max-width: 500px;
	margin: 0 auto;
	padding: 0;
}

.contact-form label {
	color: #6A7B7E;
}

.footer-half-side .button-container button {
	width: 100%;
	font-size: 1.1rem;
	padding: 12px;
}

@media screen and (min-width: 920px) {
	.footer {
		padding-top: 350px;
		background: none;
		margin-top: 250px;
	}

	.footer-fade,
	.footer-fade:before {
		content: "";
		position: absolute;
		width: 100%;
		left: 0;
		right: 0;
		pointer-events: none;
	}

	.footer-fade {
		height: 50%;
		bottom: 0;
		background: #006D7E;
	}

	.footer-fade:before {
		height: 400px;
		bottom: 100%;
		background: rgb(0, 109, 126);
		background: linear-gradient(0deg, rgba(0, 109, 126, 1) 0%, rgba(0, 109, 126, 0) 100%);
	}

	.footer-half-main h2 {
		font-size: 3.3rem;
		line-height: 1;
	}

	.footer-half-main-button {
		width: auto;
	}

	.footer-inner {
		padding-bottom: 100px;
		flex-direction: row;
	}

	.footer:before {
		height: 1000px;
		top: -200px;
	}



	.footer-site-credits {
		display: flex;
	}

	.footer-site-credit:not(:last-child) {
		margin-right: 15px;
	}

	.footer-half {
		padding: 0;
		order: 1;
	}

	.footer-half-main {
		padding-right: 10%;
		flex: 1;
	}

	.footer-half-main h2 span {
		display: block;
	}

	.footer-half-contact {
		padding: 50px;
		width: 40%;
		align-self: flex-start;
	}
}

@media screen and (min-width: 1200px) {
	.footer-lower-schedule {
		margin: 0 20px 0 0;
	}

	.footer-lower-inner {
		display: flex;
	}

	.footer-lower-social {
		width: 30%;
	}

	.footer-lower-info {
		flex: 1;
		margin-right: 10%;
		text-align: left;
		line-height: 1.2;
	}

	.footer-lower-right {
		display: flex;
		align-items: center;
	}

	.footer .social-links a {
		margin: 0 10px;
	}

	.footer .social-links a:last-child {
		margin-right: 0;
	}
}

@media screen and (min-width: 1921px) {
	.footer:before {
		background-position-y: 0%;
	}

	.footer-lower {
		z-index: 1;
	}
}

/*******************************************************************************************
CONTENT - Middle-of-page structure
*******************************************************************************************/

/* CONTENT > Banner */
.banner {
	height: auto;
  margin-top: 100px;
  /* margin-top: 165px; */
	position: relative;
	text-align: center;
	background-repeat: no-repeat;
	background-size: cover;
	-ms-background-position-x: 50%;
	background-position-x: 10%;
	background-position-y: 100%;
}

.single-attorneys .banner {
	height: auto;
	padding: 40px 0;
}

.banner>.row {
	height: 100%;
}

.banner-inner-image {
	width: auto;
	max-width: 100%;
	height: auto;

}

.banner-inner-image-container {
	margin: 0 auto 40px;
	position: relative;
	z-index: -2;
	overflow: hidden;
}

.banner:before {
	position: absolute;
	background-image: url(images/_banner.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	left: 0;
	right: 0;
	top: -50px;
	content: '';
	height: 250px;
	width: 100%;
	display: block;
}

.banner-inner {
	position: relative;
	z-index: 1;
	height: 100%;
	float: none;
}

.banner-title-container {
	position: relative;
}

.multi-banner-title,
.banner-title {
	font-size: 2.2rem;
	margin-bottom: 0;
	line-height: 0.9;
	font-weight: 500;
	font-style: normal;
	position: relative;
	text-align: left;
	text-transform: uppercase;
	font-family: 'Barlow Semi Condensed', serif;
	color: #006D7E;
}

.banner-title {
	overflow: hidden;
}

.multi-banner-title.xl-title {
	font-size: 3.4rem;
}

.multi-h2.xl-title {
	font-size: 3.0rem;
	font-weight: 700;
}

.banner-title span {
	display: block;
}

.word-slide-up {
	display: inline-block;
	opacity: 0;
}

.banner-title em {
	font-style: normal;
}

.yellow,
span.yellow,
h1 span.yellow,
h2 span.yellow,
h3 span.yellow,
.banner-title span {
	color: #CC7539 !important;
}

span.alternate,
h1 span.alternate,
h2 span.alternate,
h3 span.alternate {
	color: #59BAB6 !important;
}

span.alternate-dark,
h1 span.alternate-dark,
h2 span.alternate-dark,
h3 span.alternate-dark {
	color: #006D7E !important;
}

.banner-title-paint-swipe-container {
	width: 100%;
	height: 640px;
	right: calc(100% - 180px);
	top: -220px;
	pointer-events: none;
}

.page-id-849 .banner-title-paint-swipe-container {
	right: calc(100% - 720px);
}

.banner-title-paint-swipe-container,
.banner-title-paint-swipe {
	position: absolute;
}

.banner-title-paint-swipe {
	position: absolute;
	min-width: 100%;
	display: none;
	width: 965px;
	height: 640px;
	pointer-events: none;
	content: '';
	z-index: -1;
}

.banner-title-paint-swipe-container.active {
	width: 965px;
}


.banner-subtitle {
	font-size: 1.5rem;
	margin: 25px 0 0;
	text-align: left;
	color: #59BAB6;
}

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

	.multi-banner-title,
	.banner-title {
		font-size: 3.3rem;
	}
}

@media screen and (min-width: 700px) {
	.banner:before {
		height: 100%;
		top: 10px;
	}

	.banner-inner-image {
		display: block;
		margin: 0 0 30px;
	}
}

/* @media screen and (min-width: 768px) {
  .banner {
    margin-top: 175px;
  }
} */

@media screen and (min-width: 1025px) {
	.banner-title-paint-swipe {
		display: block;
	}

	.reveal-from-left {
		will-change: clip-path, transform;
		opacity: 0;
	}

	.reveal-from-left.active {
		-webkit-animation: reveal-from-left 1600ms cubic-bezier(.72, .24, .19, .82) forwards;
		animation: reveal-from-left 1600ms cubic-bezier(.72, .24, .19, .82) forwards;
	}

	@-webkit-keyframes reveal-from-left {
		from {
			clip-path: inset(0 100% 0 0);
			-webkit-clip-path: inset(0 100% 0 0);
			opacity: 0;
		}

		to {
			clip-path: inset(0 0 0 0);
			-webkit-clip-path: inset(0 0 0 0);
			opacity: 1;
		}
	}

	@keyframes reveal-from-left {
		from {
			clip-path: inset(0 100% 0 0);
			-webkit-clip-path: inset(0 100% 0 0);
			opacity: 0;
		}

		to {
			clip-path: inset(0 0 0 0);
			-webkit-clip-path: inset(0 0 0 0);
			opacity: 1;
		}
	}

	.banner-inner-image {
		margin-bottom: 0;
	}

	.banner-inner-image-container {
		margin-bottom: 0;
	}

	.banner-title.active:before {
		transform: translateX(0) translateY(0) scaleX(1);
		opacity: 1;
	}

	.page-id-849 .banner-title-paint-swipe {
		right: calc(100% - 430px);
	}

	.banner-subtitle {
		margin-top: 40px;
		margin-left: 100px;
		font-size: 1.8rem;
		opacity: 0;
		transform: translateY(20px);
		-webkit-transition: all 350ms ease-out;
		-moz-transition: all 350ms ease-out;
		-ms-transition: all 350ms ease-out;
		-o-transition: all 350ms ease-out;
		transition: all 350ms ease-out;
	}

	.banner-subtitle.active {
		opacity: 1;
		transform: translateY(0);
	}

	.banner-title {
		text-align: left;
	}

	.banner-title-container {
		z-index: 2;
		flex: 1;
		position: relative;
		right: 50px;
		text-align: left;
	}

	.banner-title-paint-stroke {
		display: block;
	}



	.banner-inner {
		flex-wrap: nowrap;
		display: flex;
		align-items: center;
		left: -50px;
	}

	.banner {
		height: auto;
		margin-top: 160px;
	}
}

@media screen and (min-width: 1360px) {
	.banner-title-paint-swipe-container {
		right: calc(100% - 460px);
	}

	.page-id-849 .banner-title-paint-swipe {
		right: calc(100% - 720px);
	}
}

@media screen and (min-width: 1400px) {
	.banner-title {
		font-size: 4rem;
	}
}

@media screen and (min-width: 1921px) {
	.banner:before {
		background-size: contain;
	}
}

/* CONTENT > Main */
main {
	padding: 30px 0;
	display: block;
}

main.reduce-padding {
	padding: 30px 0;
}

.no-banner main {
	padding-top: 180px;
}

.content,
.sidebar {
	width: 100%;
}

.content {
	padding-right: 15px;
	margin-bottom: 60px;
}

.content img {
	max-width: 100%;
}

.content.full-width {
	float: none;
}

.content p.indent {
	margin-left: 60px;
}

.content section {
	margin-bottom: 60px;
}

.content section:last-of-type {
	margin: 0;
}

/* CONTENT > Sidebar */

section.no-underline ul {
	border: none;
}

section.no-underline ul:last-of-type {
	padding: 0;
}

.podcast-listing-single,
section.sidebar-block {
	background-image: url(images/sidebar_background.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 50px 40px;
	border: 3px solid #fff;
	box-shadow: -3px 3px 10px #e8e8e8;
}

section.sidebar-block ul {
	margin-bottom: 0;
}

.sidebar-block h2 {
	text-align: center;
	margin-bottom: 60px;
}

.contact-sidebar-block h2 {
	text-transform: none;
	margin-bottom: 30px;
	font-size: 2.3rem;
}

.paint-swipe-title {
	position: relative;
	z-index: 1;
}

.paint-swipe-title:before {
	position: absolute;
	left: calc(50% - 120px);
	top: -22px;
	content: '';
	background-image: url(images/paint_stroke_yellow_sidebar.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 259px;
	height: 91px;
	z-index: -1;
}

.sidebar-inner {
	position: relative;
}

.button.print-pdf {

	border: 2px solid #C9EAE8;
	color: #006D7E;
	padding: 0;
	width: 50px;
	height: 50px;
	line-height: 45px;
	text-align: center;
}

li.non-clickable>a {
	pointer-events: none;
}

.sidebar-float-buttons {
	position: absolute;
	bottom: calc(100% + 30px);
	left: 0;
}

.button.print-pdf span {
	position: absolute;
	bottom: calc(100% + 4px);
	left: -10px;
	white-space: pre;
	color: #6A7B7E;
	text-transform: none;
	font-size: 0.9rem;
	z-index: 1;
	opacity: 0;
	transform: translateY(8px);
	-webkit-transition: all 220ms ease-out;
	-moz-transition: all 220ms ease-out;
	-ms-transition: all 220ms ease-out;
	-o-transition: all 220ms ease-out;
	transition: all 220ms ease-out;
}

.button.print-pdf:focus span,
.button.print-pdf:hover span {
	opacity: 1;
	transform: translateY(0);
}

.sidebar section {
	margin-bottom: 40px;
}

.sidebar section ul li {
	position: relative;
}

.sidebar section ul li {
	border-bottom: 1px solid #D5D5D5;
	padding: 5px 0 12px;
}

.sidebar section ul li,
.sidebar section ul li a {
	display: block;
}

.sidebar section ul li a {
	color: #006D7E;
	font-size: 0.9rem;
	text-decoration: none;
}

.sidebar section ul li a:hover,
.sidebar section ul li a:focus {
	color: #59BAB6;
	text-decoration: underline;
}

.sidebar section ul li ul {
	padding-left: 20px;
	margin: 0;
}

.content .search-results-container {
	margin-bottom: 80px;
}

.podcast-search-form,
.search-form {
	display: flex;
	position: relative;
}

.search-form button {
	margin-left: 10px;
	height: 45px;
	width: 45px;
	font-size: 1.1rem;
	padding: 0 12px;
}

@media screen and (min-width: 768px) {
	main {
		padding: 80px 0;
	}

	.content {
		padding-right: 75px;
		width: 65%;
		margin-bottom: 0;
	}

	.content.full-width {
		width: 100%;
		padding-right: 15px;
	}

	.sidebar {
		width: 35%;
		float: right;
		clear: none;
		padding-left: 0;
	}
}

/*******************************************************************************************
BLOG - Posts, search results, and pagination
*******************************************************************************************/
.post {
	margin-bottom: 50px;
	padding-bottom: 50px;
	border-bottom: 2px solid #59BAB6;
}

.post:last-child {
	border: none;
	padding-bottom: 0;
}

.post-head h1,
.post-head h2 {
	font-size: 2.0rem;
	margin-bottom: 12px;
	padding: 0;
	border: 0;
}

.post-head,
.post-body {
	margin-bottom: 30px;
}

.post-body {
	display: block;
}

.single-post .post-body {
	display: block;
}

.post-head-info {
	line-height: 1.3;
}

.post-head-info span,
.post-head-info a {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 0;
}

.post-head-info i {
	margin: 0 5px;
}

.post-head-info a:hover,
.post-head-info a:focus {
	color: #000;
}

.post-head-info span {
	margin-bottom: 0;
}

.post-head-info span:not(:last-of-type):after {
	width: 1px;
	height: 12px;
	background: #59BAB6;
	content: '';
	display: inline-block;
	margin: 0 6px 0 12px;
	position: relative;
	top: 2px;
}

.post-body-image img {
	max-width: 100%;
}

.post-body-image {
	margin-bottom: 8px;
}

img.alignright {
	float: right;
	margin: 0 0 30px 30px;
}

img.alignleft {
	float: right;
	margin: 0 30px 30px 0;
}

.post-body-excerpt {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.post-body-excerpt p:last-of-type {
	margin-bottom: 0;
}

.post-bottom {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
}

.post-bottom-share {
	color: #CC7539;
	font-weight: 600;
}

@media screen and (min-width: 1025px) {
	.post-body {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
	}

	.post-body-image {
		margin: 0 0 0 30px;
	}
}

/* BLOG > Page Navigation */
.wp-pagenavi {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	margin-bottom: 60px;
}

.wp-pagenavi a,
.wp-pagenavi span {
	color: #006D7E;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-decoration: none;
	text-align: center;
	margin: 0;
	display: block;
}

.wp-pagenavi span.current {
	border-radius: 50%;
	background: #59BAB6;
	color: #fff;
	margin-right: 10px;
}

.wp-pagenavi a:hover,
.wp-pagenavi a:focus {
	background: none;
	color: #CC7539;
}

.wp-pagenavi span.pages,
.wp-pagenavi span.extend {
	display: none;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .first,
.wp-pagenavi .last {
	width: auto;
	color: #006D7E;
	background: none;
	padding: 0 15px;
}

.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .nextpostslink:focus,
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .previouspostslink:focus,
.wp-pagenavi .first:hover,
.wp-pagenavi .first:focus,
.wp-pagenavi .last:hover,
.wp-pagenavi .last:focus {
	background: none;
	color: #CC7539;
}

/*******************************************************************************************
TEMPLATES - Pre-built subpages
*******************************************************************************************/


/* CONTENT > Practices Landing */
.practice-box-list {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

.practice-box {
	width: 100%;
	height: 90px;
	margin: 0 0 20px;
	padding: 0 15px;
	background: #006D7E;
	color: #fff;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	text-align: center;
	text-decoration: none;
	-webkit-transition: background 200ms ease-out;
	-o-transition: background 200ms ease-out;
	transition: background 200ms ease-out;
}

.practice-box:hover,
.practice-box:focus {
	background: #CC7539;
}

.practice-box span {
	margin: 0;
	font-size: 1.3rem;
	-ms-align-self: center;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	width: 100%;
}

.practice-box:focus span,
.practice-box:hover span {
	color: #006D7E;
}

@media screen and (min-width: 768px) {
	.practice-box {
		width: 46%;
		margin: 1%;
	}
}

/* TEMPLATES > Contact A */
.page-template-template-contact-a main {
	background-size: cover;
	background-repeat: no-repeat;
	padding: 160px 0 80px;
	position: relative;
}

.contact-full-container {
	position: relative;
	display: flex;
	flex-wrap: wrap;
}

.contact-full-inner {
	width: 100%;
	background: #fff;
	padding: 40px 0;
}

@media screen and (min-width: 1025px) {
	.page-template-template-contact-a main {
		height: 100vh;
		padding: 0;
	}

	.contact-full-inner {
		padding: 40px;
	}

	.contact-full-content {
		padding-right: 15%;
	}

	.contact-full-container {
		align-items: center;
		height: 100vh;
		padding-top: 100px;
	}
}

@media screen and (min-width: 1025px) and (max-height: 750px) {

	.page-template-template-contact-a main,
	.contact-full-container {
		height: 100%;
	}

	.contact-full-container {
		padding: 0;
	}

	.page-template-template-contact-a main {
		padding: 160px 0 100px;
	}
}

/* TEMPLATES > Contact B */
.office-block {
	margin-bottom: 30px;
}

.office-block-image {
	width: 100%;
	height: 300px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position-x: 50%;
}

.office-block-info {
	background: #C7C7C7;
	position: relative;
	padding: 30px;
}

.office-block-info p {
	margin: 0;
}

.office-contact {
	margin-top: 30px;
}

.office-contact p {
	font-weight: 700;
}

.office-block-info-inner {
	width: 100%;
}

.office-contact-map {
	position: absolute;
	right: 0;
	bottom: 0;
}

@media screen and (min-width: 1025px) {
	.office-block {
		display: flex;
	}

	.office-block-image {
		display: flex;
		width: 250px;
		flex-basis: 250px;
		height: 250px;
	}

	.office-block-info {
		flex: 1;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
	}
}

/* TEMPLATES > Attorney Bios */
.content-tabs-row {
	display: none;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.content-tabs-row-inner {
	display: flex;
}

.content-tab-activate {
	border-radius: 0;
}

.content-tabs-row .content-tab-activate {
	margin-right: 10px;
}

.content-tab-activate:last-of-type {
	margin-right: 0;
}

.content-tab-activate.active {
	background: #006D7E;
	pointer-events: none;
}

.content-tab {
	display: none;
	margin-bottom: 50px;
}

.content-tab.active {
	-webkit-animation: fadeIn 200ms ease-out;
	animation: fadeIn 200ms ease-out;
}

.content-tab.active,
.content-tabs-anchor-links .content-tab {
	display: block;
}

.content-tabs-anchor-links .mobile-tab {
	display: none;
}

.content-tabs-select {
	margin: 0 auto 30px;
	display: none;
}

.content-tabs-anchor-links .content-tabs-select {
	display: block;
}

.mobile-tab {
	width: 100%;
	text-align: left;
	padding: 20px 30px;
	margin-bottom: 20px;
	position: relative;
}

.mobile-tab:after {
	content: '\f0d7';
	font-family: 'Font Awesome 5 Pro';
	right: 15px;
	position: absolute;
}

@media screen and (min-width: 1025px) {
	.content-tabs-row {
		display: block;
	}

	.mobile-tab,
	.content-tabs-anchor-links .content-tabs-select {
		display: none;
	}
}

/* TEMPLATES > Confirmation */
.confirm-contact {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin-bottom: 10px;
}

.confirm-contact a:not(:last-child) {
	margin-right: 20px;
}

.confirm-social {
	margin-bottom: 60px;
}

/*******************************************************************************************
FEATURES - Pre-built small sections
*******************************************************************************************/


/* FEATURES > YouTube Player */
.youtube-player {
	position: relative;
	padding-bottom: 56.23%;
	/* Use 75% for 4:3 videos */
	height: 0;
	max-width: 100%;
	background: #000;
	margin: 20px 0 50px;
}

.youtube-player-inner {
	width: 100%;
	height: 100%;
	content: "";
	overflow: hidden;
	position: absolute;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}

.youtube-player-inner:after,
.videos-single:after {
	content: "\f144";
	font-family: 'Font Awesome 5 Pro';
	font-size: 3.5rem;
	opacity: 0.95;
	display: inline-block;
	margin: 0 auto;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-ms-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
	transition: all 150ms ease-out;
	color: #006D7E;
	pointer-events: none;
	z-index: 1;
}

.youtube-player-inner:hover:after,
.youtube-player-inner:focus:after,
.videos-single:hover:after,
.videos-single:focus:after {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	color: #CC7539;
	opacity: 1;
}

.youtube-player iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	background: transparent;
}

.youtube-player img {
	bottom: 0;
	display: block;
	left: 0;
	margin: auto;
	max-width: 100%;
	width: 100%;
	position: absolute;
	right: 0;
	top: 0;
	border: none;
	height: auto;
	cursor: pointer;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-ms-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

/* FEATURES > Speech Bubbles */

.speech-bubble {
	background-size: contain;
	background-repeat: no-repeat;
	max-width: 100%;
	width: 80%;
	-webkit-transition: all 500ms ease-out;
	-moz-transition: all 500ms ease-out;
	-ms-transition: all 500ms ease-out;
	-o-transition: all 500ms ease-out;
	transition: all 500ms ease-out;
}

.speech-bubble-bio-01 {
	background-image: url(images/speech_bubble_bio_01.png);
	width: 290px;
	height: 370px;
}

.speech-bubble-bio-02 {
	background-image: url(images/speech_bubble_bio_02.png);
	width: 301px;
	height: 391px;
}

.speech-bubble-home-01 {
	background-image: url(images/speech_bubble_home_01.png);
	width: 348px;
	height: 381px;
}

.speech-bubble-home-02 {
	background-image: url(images/speech_bubble_home_02.png);
	width: 333px;
	height: 367px;
	top: 300px;
}

.speech-bubble-home-03 {
	background-image: url(images/speech_bubble_home_03.png);
	width: 333px;
	height: 374px;
	top: 600px;
}

.speech-bubble-home-04 {
	background-image: url(images/speech_bubble_home_04.png);
	width: 334px;
	height: 349px;
	top: 900px;
}

.speech-bubble-atlanta-01 {
	background-image: url(images/speech_bubble_atlanta_02.png);
	width: 333px;
	height: 350px;
}

.speech-bubble-atlanta-02 {
	background-image: url(images/speech_bubble_atlanta_03.png);
	width: 333px;
	height: 366px;
}

.speech-bubble-cta {
	background-image: url(images/speech_bubble_atlanta_01.png);
	width: 333px;
	height: 370px;
}

.speech-bubble-animated.active {
	-webkit-animation: bubblePopIn 280ms cubic-bezier(0, 0, 0.21, 1.32);
	animation: bubblePopIn 280ms cubic-bezier(0, 0, 0.21, 1.32);
}

@-webkit-keyframes bubblePopIn {
	from {
		opacity: 0;
		transform: translateY(90px) scale(0.5) rotate(8deg);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1.0) rotate(0deg);
	}
}

@keyframes bubblePopIn {
	from {
		opacity: 0;
		transform: translateY(90px) scale(0.5) rotate(8deg);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1.0) rotate(0deg);
	}
}

@media screen and (min-width: 641px) {
	.speech-bubble-bio-01 {
		width: 342px;
	}

	.speech-bubble-bio-02 {
		width: 341px;
	}

	.speech-bubble-home-01 {
		width: 348px;

	}

	.speech-bubble-home-02 {
		width: 333px;
		top: 260px;
	}

	.speech-bubble-home-03 {
		width: 333px;
		top: 520px;
	}

	.speech-bubble-home-04 {
		width: 334px;
		top: 770px;
	}

	.speech-bubble-atlanta-01 {
		width: 333px;
	}

	.speech-bubble-atlanta-02 {
		width: 333px;
	}

	.speech-bubble-cta {
		width: 333px;
	}
}

.styled-speech-bubble {
	max-width: 300px;
	background: rgb(255, 255, 255);
	background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(232, 232, 232, 1) 80%);
	position: relative;
	border: 2px solid #fff;
	display: flex;
	line-height: 1.1;
	flex-direction: column;
	justify-content: center;
	padding: 35px;
	text-align: center;
	border-radius: 100px;
	box-shadow: 0px 16px 12px rgba(68, 68, 68, 0.31);
}

.styled-speech-bubble:after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	top: 100%;
	left: 35%;
	border-style: solid;
	border-width: 40px 40px 0 0;
	border-color: #ededed transparent transparent transparent;
}

.styled-speech-bubble-right:after {
	left: auto;
	right: 35%;
	border-width: 0 40px 40px 0;
	border-color: transparent #ededed transparent transparent;

}

.styled-speech-bubble span {
	font-size: 1.5rem;
	color: #006D7E;
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-style: italic;
}

.styled-speech-bubble.speech-bubble-basic span {
	font-family: 'Barlow Semi Condensed', sans-serif;
	font-size: 1.3rem;
	font-style: normal;
	font-weight: 500;
	text-align: left;
	line-height: 1.4;
}

/* FEATURES > Breadcrumbs */
.breadcrumbs-single {
	position: relative;
	text-decoration: none;
	padding-right: 20px;
	margin-right: 20px;
}

.breadcrumbs-single:focus,
.breadcrumbs-single:hover {
	text-decoration: underline;
}

.breadcrumbs-single:after {
	position: absolute;
	right: -4px;
	content: "\f105";
	font-family: 'Font Awesome 5 Pro';
}

.breadcrumbs-single:last-of-type {
	padding-right: 0;
	margin-right: 0;
}

.breadcrumbs-single:last-of-type:after {
	display: none;
}

/* FEATURES > Accordion */
.accordion-item {
	border-bottom: 3px solid #59BAB6;
}

.accordion-item-title {
	padding: 25px 30px 25px 0;
	font-size: 1.0rem;
	margin: 0;
	position: relative;
	cursor: pointer;
	color: #006D7E;
	line-height: 1.1;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-style: normal;
	font-weight: 500;
	font-family: 'Barlow Semi Condensed', sans-serif;
	-webkit-transition: background 200ms ease-out;
	-moz-transition: background 200ms ease-out;
	-ms-transition: background 200ms ease-out;
	-o-transition: background 200ms ease-out;
	transition: background 200ms ease-out;
}

.accordion-item-title:after {
	content: "\f067";
	font-family: 'Font Awesome 5 Pro';
	line-height: 30px;
	width: 30px;
	height: 30px;
	font-size: 1.2rem;
	text-align: center;
	color: #CC7539;
	margin-left: auto;
	position: relative;
	right: -20px;
}

.accordion-item.active:focus {
	outline: none;
}

.accordion-item-title:hover,
.accordion-item-title:focus {
	background: #ecf9f8;
}

.accordion-item-title:hover .accordion-item-number,
.accordion-item-title:focus .accordion-item-number {
	color: #006D7E;
}

.accordion-item.active .accordion-item-title:after {
	content: "\f068";
}

.accordion-item-content {
	display: none;
}

.accordion-item-content p {
	font-size: 0.9rem;
}

.accordion-item.active .accordion-item-content {
	display: block;
	-webkit-animation: fadeIn 200ms both;
	animation: fadeIn 200ms both;
}

.accordion-item-content>*:first-child {
	margin-top: 20px;
}

.accordion-item-content>*:last-child {
	margin-bottom: 35px;
}

/* FEATURES > Social Link Lists */
.social-links {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	width: 35px;
	line-height: 35px;
	height: 35px;
	text-decoration: none;
	margin: 0 20px;
	color: #CC7539;
}

.social-links a:hover,
.social-links a:focus {
	color: #59BAB6;
}

/* FEATURES > Case Results */
.results-slider {
	margin-bottom: 30px;
}

.results-slider-single {
	border: 1px solid #59BAB6;
	padding: 30px;
}

.results-slider-single:last-of-type {
	margin: 0;
}

.results-slider-single h3 {
	font-weight: 700;
	color: #006D7E;
	margin-bottom: 25px;
}

/*******************************************************************************************
PRINT - Specific styles for when pages are printed
*******************************************************************************************/
@media print {
	.header {
		top: 0;
		border: none;
		height: auto;
	}
}

/* NEW CODE */
.section-testimonials-single {
	position: relative;
	text-align: center;
	max-width: 760px;
	margin: 70px auto 70px;
	padding-top: 60px;
}

.section-testimonials-single:before {
	background-image: url(images/quote_symbol.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 77px;
	height: 56px;
	content: '';
	position: absolute;
	top: -40px;
	left: calc(50% - 40px);
}

.section-testimonials-single h2 {
	color: #59BAB6;
	font-size: 1.6rem;
	margin-bottom: 20px;
}

.lower-testimonials-slider .slick-slide > div {
	text-align: center;
}

.section-testimonials-single span {
	color: #006D7E;
	display: block;
	margin-top: 18px;
}

.section-testimonials-single span:before {
	content: '-';
	margin-right: 5px;
}

.testimonials-badges {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.testimonials-badges span {
	margin-bottom: 30px;
}

.testimonials-badges span:last-of-type {
	margin-bottom: 0;
}

.section-contact-cta .speech-bubble {
	display: none;
}

.section-contact-cta.add-speech-bubble .speech-bubble {
	display: block;
}

.section-contact-cta.add-speech-bubble {
	margin-top: 200px;
}

@media screen and (min-width: 1025px) {
	.testimonials-badges {
		flex-direction: row;
		justify-content: center;
	}

	.testimonials-badges span {
		margin: 0 35px;
	}
}

.section-testimonials {
	padding: 80px 0;
}

.section-contact-cta {
	background: #006D7E;
	padding: 90px 0;
}

.section-contact-cta h2 {
	color: #CC7539;
}

.contact-cta-inner-float {
	position: absolute;
	right: 8%;
	top: -340px;
}

.contact-cta-inner {
	position: relative;
}

.cta-phone {
	margin-top: 30px;
}

.cta-phone .multi-styled-title {
	margin-bottom: 0;
}

.cta-phone-inner>a,
.cta-phone-inner>button {
	display: block;
	margin: 18px 0;
	line-height: 1;
}

@media screen and (min-width: 1025px) {
	.section-contact-cta .cta-title {
		max-width: 70%;
	}

	.cta-phone {}

	.cta-phone-inner {
		display: flex;
		line-height: 1;
	}

	.cta-phone a {
		margin-right: 50px;
	}

	.cta-phone button {
		align-self: center;
	}
}

.program-main {
	background: #F7F7F7;
	padding: 15px 15px 30px;
	margin-top: 30px;
}

.color-block-text,
button.color-block-text {
	text-align: center;
	padding: 10px 30px;
	font-size: 1.2rem;
	position: relative;
	display: inline-block;
	margin: 0;
}

.banner-button-holder {
  text-align: left;
}

.cta-button {
  margin-top: 20px !important;
  animation-delay: 2000ms;
}

.cta-button.podcast-page {
  margin-top: 0 !important;
}

@media screen and (min-width: 1025px) {
  .page-template-template-program .banner-button-holder {
    margin-left: 100px;
  }

  .cta-button.podcast-page {
    margin: 0 0 0 5vw !important;
  }
}

.banner-color-block-text {
	margin: 25px 0;
	background: #006D7E;
	position: relative;
	display: inline-block;
}

.banner-color-block-text h3 {
	color: #CC7539;
	margin: 0;
}

.program-columns-lead-in {
	margin: 35px 0 0;
	padding: 10px 25px;
}

.banner-color-block-text h3:after {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 9px 0 9px;
	border-color: #006d7e transparent transparent transparent;
	position: absolute;
	left: calc(50% - 9px);
	top: 100%;
	content: '';
}

.program-intro-main {}

.program-intro-imagery-main-photo {
	position: relative;
	text-align: center;
	display: inline-block;
}

.program-intro-imagery-main-photo:after {
	content: '';
	background-image: url(images/paint_stroke_combined.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 798px;
	height: 508px;
	position: absolute;
	top: calc(100% - 120px);
	left: -4%;
}

.program-intro-imagery-main-photo img {
	width: auto;
	margin: 0 auto;
}


.program-intro-inner {
	display: flex;
	flex-flow: column-reverse;
}

@media screen and (min-width: 1025px) {
	.program-intro-inner {
		flex-direction: row;
	}

}

.program-columns-single {
	background-image: url(images/sidebar_background.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 50px 30px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	border-bottom: 3px solid #fff;
	box-shadow: -6px 25px 20px rgba(0, 0, 0, 0.15);
}

.program-columns-single h2 {
	text-align: center;
	margin-bottom: 60px;
}

.program-columns-single ul {}

.program-columns-single li {
	padding-left: 35px;
	font-size: 0.9rem;
	position: relative;
	margin-bottom: 10px;
}

.program-columns-single li:before {
	content: '\f00c' !important;
	font-family: 'Font Awesome 5 Pro';
	position: absolute;
	top: 0;
	left: 0;
	color: #CC7539 !important;
}

.program-columns-single li.check-color-alternate-01:before {
	color: #006D7E !important;
}

.program-columns-single li.check-color-alternate-02:before {
	color: #59BAB6 !important;
}

.program-columns-bottom .program-price,
.program-columns-bottom a {
	display: block;
}

.program-columns-bottom .program-price {
	background: none;
	border: 3px solid #CC7539;
	text-transform: inherit;
	color: #006D7E;
	width: 100%;
	font-size: 1.3rem;
	margin-bottom: 15px;
}

.program-columns-bottom {
	text-align: center;
}

.program-columns-bottom a {
	color: #006D7E;
	font-weight: 700;
}

@media screen and (min-width: 1025px) {
	.program-main-title {
		margin-bottom: 30px;
	}

	.program-columns {
		display: flex;
		justify-content: center;
	}

	.program-columns-single {
		width: 32.33%;
		margin-right: 1.5%;
		margin-bottom: 0;
		max-width: 400px;
		display: flex;
		flex-direction: column;
	}

	.program-columns-single-only {
		justify-content: flex-start;
		margin-bottom: 40px;
	}

	.program-columns-single-only .program-columns-single {
		width: 100%;
		margin-left: 0;
	}

	.program-columns-bottom {
		margin-top: auto;
	}

	.program-columns-single:last-child {
		margin-right: 0;
	}

	.program-main {
		background: #fff;
	}
}

.program-intro-bubble-parent {
	position: relative;
	top: -50px;
}

.program-intro-imagery .speech-bubble .speech-bubble {
	position: absolute;
	left: 6vw;
	top: calc(100% - 100px);
}


.program-intro-imagery .speech-bubble {
	z-index: 1;
}

.program-intro-imagery {
	text-align: center;
}

.program-intro-bubbles {
	padding: 30px 20px;
	min-height: 500px;
	justify-content: center;
	display: flex;
	position: relative;
}

.program-intro-main {
	padding: 90px 30px 30px;
}

.section-program-intro {
	position: relative;
}

.section-program-intro:before {
	background-image: url(images/background_city_light.jpg);
	background-size: contain;
	content: '';
	position: absolute;
	top: 0;
	width: 100%;
	height: 733px;
	max-height: 962px;
	right: 0;
	background-repeat: no-repeat;
	z-index: -1;
	display: none;
	transform: scaleX(-1);
}

.program-intro-main .multi-styled-title span {
	display: block;
}

.program-intro-main .multi-styled-title .multi-h3 {
	font-size: 1.2rem;
}

.program-intro-main .multi-styled-title .multi-h2 {
	color: #59BAB6;
}

.program-intro-main .multi-styled-title .multi-banner-title {
	margin: 8px 0;
	line-height: 0.9;
}


.section-program-locations {
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.section-program-locations-mobile-image {
	background-size: cover;
	background-repeat: no-repeat;
	height: 500px;
}


.program-locations-inner {
	padding: 40px 15px;
}

.program-locations-inner .multi-styled-title .multi-h2 {
	font-size: 2.1rem;
	color: #59BAB6;
}

@media screen and (min-width: 700px) {
	.section-program-locations-mobile-image {
		background-image: url(images/staceyann_computer.jpg) !important;
	}
}

@media screen and (min-width: 1025px) {
	.page-id-880 .contact-cta-inner-float {
		left: 6%;
		right: auto;
	}

	.page-id-880 .section-contact-cta {
		margin-top: 0;
	}

	.section-program-intro {
		padding: 100px 0;
	}

	.program-intro-imagery .speech-bubble:last-of-type {}

	.program-intro-main {
		padding-left: 80px;
		padding-right: 80px;
	}

	.section-program-intro:before {
		display: block;
	}

	.section-program-locations {
		padding-top: 180px;
		background-position-x: 30%;
		background-image: url(images/staceyann_computer.jpg);
	}

	.section-program-locations-mobile-image {
		display: none;
	}

	.program-locations-inner {
		background: #fff;
		margin-left: auto;
		right: 0;
		bottom: 0;
		max-width: 50vw;
		padding: 70px 8vw 70px 70px;
	}
}

@media screen and (min-width: 1600px) {
	.program-locations-inner {
		max-width: 1000px;
		padding-right: 14vw;
	}
}

.block-linked-list a {
	border-bottom: 3px solid #59BAB6;
	text-decoration: none;
	position: relative;
	display: block;
	padding: 16px 0;
	font-size: 1.2rem;
	color: #006D7E;
}

.block-linked-list a:after {
	content: '\f061';
	font-family: 'Font Awesome 5 Pro';
	color: #CC7539;
	position: absolute;
	right: 0;
	top: 15px;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-ms-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

.block-linked-list a:focus,
.block-linked-list a:hover {
	color: #59BAB6;
}

.block-linked-list {
	margin-bottom: 40px;
}

.block-linked-list a:focus:after,
.block-linked-list a:hover:after {
	transform: translateX(4px);
}

@media screen and (min-width: 1025px) {
	.block-linked-list a {
		padding-left: 40px;
	}
}

.callout-block {
	position: relative;
	padding: 25px;
}

.callout-block .pseudo-h2 {
	font-size: 2.1rem;
	font-weight: 700;
}

.callout-block:before,
.callout-block {
	background: #E1F2F1;
}

.callout-block:before {
	display: none;
	height: 100%;
	width: 110%;
	left: -5%;
	top: 0;
	bottom: 0;
	position: absolute;
	content: '';
}

.callout-block:before {}

.callout-block span {
	color: #59BAB6;
	position: relative;
	line-height: 1.3;
}

@media screen and (min-width: 600px) {
	.callout-block {
		max-width: 500px;
		padding: 40px;
	}
}

@media screen and (min-width: 1400px) {
	.callout-block .pseudo-h2 {
		font-size: 3rem;
	}
}

.section-attorney-about-inner .multi-h2 {
	margin-top: 16px;
}

.section-attorney-about-photo-mobile {
	height: 690px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position-x: 50%;
}

.section-attorney-about-inner {
	padding: 20px 0;
}

.section-attorney-solutions-inner {
	position: relative;
	z-index: 1;

}

.solutions-ladder {
	height: auto;
	min-height: 260px;
	position: relative;
	left: 0;
}

.solutions-ladder:before {
	background-image: url(images/background_ladder.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	height: 350px;
	width: 100%;
	background-position-x: 0%;
	background-position-y: 100%;
	position: absolute;
	left: -90px;
	bottom: 0;
	content: '';
}

.solutions-ladder h2 {
	position: absolute;
	bottom: 15%;
	left: 20vw;
	margin: 0;
	max-width: 220px;
	font-size: 2.2rem;
	font-weight: 700;
}


.section-attorney-solutions {
	padding: 150px 0 0;
}

.solutions-ladder-text {
	display: none;
}

@media screen and (min-width: 600px) {
	.solutions-ladder {
		min-height: 340px;
	}

	.solutions-ladder:before {
		left: 0;
	}

	.solutions-ladder h2 {
		left: 240px;
	}
}

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

@media screen and (min-width: 1025px) {
	.solutions-ladder {
		position: absolute;
		left: -120px;
		bottom: 0;
		width: auto;
		background-position-x: 0;
		width: 100%;
		max-width: 1173px;
		z-index: -1;
		height: 782px;
	}

	.solutions-ladder:before {
		height: 782px;
		left: -120px;
	}

	.solutions-ladder h2 {
		max-width: 300px;
		right: 0;
		font-size: 2.8rem;
		bottom: 220px;
		top: 150px;
		left: 20vw;
	}

	.section-attorney-solutions {
		padding: 120px 0;
		position: relative;
	}

	.section-attorney-solutions-inner {
		display: flex;
	}

	.section-attorney-solutions-content-left {
		padding-right: 3vw;
	}

	.section-attorney-solutions-content-left,
	.section-attorney-solutions-content-right {
		flex: 1;
	}

	.section-attorney-solutions-content-right {
		padding-top: 100px;
	}
}

.section-attorney-about {
	background-size: cover;
	background-repeat: no-repeat;
}

@media screen and (min-width: 1300px) {
	.solutions-ladder h2 {
		font-size: 3rem;
	}

	.solutions-ladder:before {
		left: 0;
	}
}

@media screen and (min-width: 1900px) {
	.solutions-ladder h2 {
		margin-left: auto;
		margin-right: 10vw;
	}
}


@media screen and (min-width: 641px) {
	.section-attorney-about-photo-mobile {}
}

@media screen and (min-width: 1025px) {
	.section-attorney-about-photo-mobile {
		display: none;
	}

	.section-attorney-about {
		background-image: url(images/staceyann_street_wide.jpg);
		height: 1677px;
		width: 100%;
		background-position-x: 40%;
	}

	.section-attorney-about-inner {
		max-width: 620px;
		background: #fff;
		margin-right: auto;
		position: relative;
		margin-top: 12%;
		padding: 0 60px 40px;
	}

	.section-attorney-about-content {
		position: relative;
		top: -40px;
	}

	.section-attorney-about-inner p:last-of-type {
		margin-bottom: 0;
	}

	.section-attorney-about .callout-block {
		position: absolute;
		right: -160px;
		top: calc(100% - 40px);
	}

	.section-attorney-about .callout-block .pseudo-h2 {
		font-size: 1.7rem;
	}
}

.section-attorney-offer-images .speech-bubble {
	position: absolute;
	bottom: -160px;
	right: 8vw;
	z-index: 1;
}

.section-attorney-offer {
	position: relative;
	background: #006D7E;
	padding: 40px 0 0;
}

.section-attorney-offer:before,
.section-attorney-offer:after {
	background-image: url(images/paint_swatch_blue_long.png);
	background-size: cover;
	background-repeat: no-repeat;
	content: '';
	width: 100vw;
	height: 150px;
	left: 0;
	right: 0;
	bottom: calc(100% - 60px);
	position: absolute;
	z-index: 0;
}

.section-attorney-offer:after {
	top: calc(100% - 70px);
	background-position-y: 100%;
}

.section-attorney-offer-images {
	text-align: center;
	margin-bottom: 80px;
}

.section-attorney-offer-images img {
	width: auto;
	max-width: 70%;
}

.section-attorney-offer .multi-banner-title {
	margin-bottom: 20px;
}

@media screen and (min-width: 600px) {
	.section-attorney-offer-images .speech-bubble {
		right: 20%;
	}
}

@media screen and (min-width: 1025px) {
	.section-attorney-offer-inner {
		display: flex;
		align-items: center;
	}

	.section-attorney-offer-content {
		flex: 1;
		padding-right: 5vw;
	}

	.section-attorney-offer-images {
		width: 740px;
		position: relative;
		margin: 0;
	}

	.section-attorney-offer-images .speech-bubble {
		position: absolute;
		bottom: -190px;
		right: -6vw;
		min-height: 200px;
	}
}

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

	.section-attorney-offer {
		padding: 180px 0;
		min-height: 826px;
		background-image: url(images/background_paint_swatch.jpg);
		background-size: cover;
		background-repeat: no-repeat;
		background-color: transparent;
		background-position-x: 50%;
		background-position-y: 50%;
	}

	.section-attorney-offer:before,
	.section-attorney-offer:after {
		display: none;
	}
}

.section-attorney-mission-side .speech-bubble {
	margin-left: auto;
	position: relative;
	top: -20px;
	z-index: 1;
}

.section-attorney-mission {}

.section-attorney-mission-inner {
	display: flex;
	flex-flow: column-reverse;
}

@media screen and (min-width: 1025px) {
	.section-attorney-mission-inner {
		flex-flow: row;
		padding: 50px 0 120px;
	}

	.section-attorney-mission-side {
		min-width: 30%;
	}

	.section-attorney-mission-content {
		flex: 1;
		padding-left: 120px;
	}
}

.attorney-template-main-content {
	margin: 30px 0 30px;
}

.attorney-template-main-content .color-block-text a,
.attorney-template-main-content .color-block-text h3 {
	font-size: 1.4rem;
	width: 100%;
}

.attorney-template-main-content .multi-banner-title {
	line-height: 0.8;
	margin-bottom: 20px;
	position: relative;
	font-size: 3rem;
}

.attorney-template-main-content .multi-h2 {
	font-size: 2rem;
}

.attorney-template-main-content .multi-banner-title:before {
	background-image: url(images/paint_stroke_yellow_full.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 450px;
	height: 180px;
	position: absolute;
	left: 0;
	top: -30px;
	content: '';
	z-index: -1;
}

.attorney-template-main-photo {
	background-image: url(images/staceyann_glasses.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	height: 25vh;
	min-height: 250px;
	width: 100%;
	background-position-x: 50%;
}

.attorney-template-main {
	margin-top: 80px;
}

@media screen and (min-width: 1300px) {
	.section-attorney-mission-inner {
		padding-bottom: 70px;
	}
}

@media screen and (min-width: 1921px) {
	.section-attorney-offer {
		background-position-x: -4vw;
		background-size: contain;
	}
}

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


	.attorney-template-main-content .multi-styled-title span.alternate {
		display: inline;
		margin-left: 1vw;
	}

	.attorney-template-main-photo {
		height: 40vh;
	}

	.attorney-template-main-content .color-block-text h3 {
		width: auto;
		margin: 0 auto;
		padding-left: 30px;
		padding-right: 30px;
	}



	.attorney-template-main-content .color-block-text {
		text-align: left;
	}
}

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

	.section-attorney-mission-side {
		max-width: 700px;
		margin-left: auto;
		margin-right: auto;
	}


}

@media screen and (min-width: 1025px) {
	.section-attorney-mission-side {
		max-width: 400px;
	}

	.attorney-template-main-content .multi-banner-title:before {
		width: 622px;
		height: 224px;
		left: -140px;
		top: -70px;
	}

	.attorney-template-main-content .multi-styled-title span.alternate {
		display: block;
		margin-left: 0;
	}

	.section-attorney-mission-side {
		position: relative;
		bottom: 200px;
		align-self: flex-start;
	}

	.section-attorney-mission-side .speech-bubble {
		top: calc(100% - 60px);
		right: -70px;
		position: absolute;
	}

	.attorney-template-main-inner {
		display: flex;
		align-items: center;
		min-height: 672px;
		justify-content: flex-end;
	}

	.attorney-template-main {
		margin-top: 140px;
		position: relative;
	}

	.attorney-template-main-photo {
		width: 60%;
		height: 550px;
		background-position-x: 50%;
		position: absolute;
		left: 0;
		top: 0;
	}

	.attorney-template-main-content .multi-banner-title {
		font-size: 3.5rem;
	}

	.attorney-template-main-content .multi-h2,
	.attorney-template-main-content .color-block-text {
		margin-left: 70px;
	}

	.attorney-template-main-content {
		margin: 0;
		width: 50%;
		position: relative;
		z-index: 1;
	}
}

@media screen and (min-width: 1240px) {
	.attorney-template-main-photo {
		height: 672px;
	}
}

@media screen and (min-width: 1400px) {
	.section-attorney-mission-side {
		max-width: 700px;
	}
}

@media screen and (min-width: 1440px) {
	.attorney-template-main-photo {
		width: 1019px;
	}

	.attorney-template-main-content .multi-banner-title {
		font-size: 4.5rem;
	}

	.attorney-template-main-content .multi-banner-title:before {
		width: 792px;
		height: 297px;
		left: -170px;
		top: -80px;
	}
}

/* HOME SECTIONS */
.home-section-reasons {
	background: #F7F7F7;
	padding: 50px 0;
}

.home-section-reasons-accordions-inner .accordion-item-title {
	font-size: 1.1rem;
}

.home-section-reasons-inner {
	display: flex;
	flex-flow: column-reverse;
}

.home-section-reasons-main-image {
	margin-bottom: 30px;
	text-align: center;
}

.home-section-reasons-main-image img {
	max-width: 70%;
	width: auto;
}

.accordion-item-number {
	font-family: 'Playfair Display', serif;
	font-size: 3.8rem;
	margin-right: 20px;
	color: #CC7539;
	line-height: 0.6;
	width: 60px;
	font-style: italic;
	position: relative;
	bottom: 10px;
	text-align: center;
	-webkit-transition: color 200ms ease-out;
	-moz-transition: color 200ms ease-out;
	-ms-transition: color 200ms ease-out;
	-o-transition: color 200ms ease-out;
	transition: color 200ms ease-out;
}

@media screen and (min-width: 940px) {
	.home-section-reasons-inner {
		flex-flow: row;
	}

	.accordion-item-number {
		font-size: 5rem;
		margin-right: 30px;
	}

	.home-section-reasons {
		padding: 80px 0;
	}

	.home-section-reasons-accordions {
		display: flex;
		justify-content: flex-end;
		flex-direction: column;
		padding: 0 70px 40px 0;
		width: 50%;
		flex-basis: 50%;
	}

	.home-section-reasons-accordions .accordion-item-title {
		padding-top: 45px;
		padding-bottom: 45px;
		font-size: 1.2rem;
	}

	.home-section-reasons-main {
		flex: 1;
	}

	.home-section-reasons-main .multi-styled-title {
		max-width: 500px;
		margin: 0 auto;
		position: relative;
		top: 50px;
		left: 0;
		z-index: 1;
		line-height: 1.4;
	}

	.home-section-reasons-main .multi-styled-title .multi-h2 {
		font-size: 2.7rem;
	}

	.home-section-reasons-main-image {
		text-align: right;
		position: relative;
	}

	.home-section-reasons-main-image:after {
		opacity: 0.5;
		position: absolute;
		right: -50px;
		bottom: -80px;
		background-image: url(images/shape_bars.png);
		background-size: contain;
		content: '';
		background-repeat: no-repeat;
		width: 200px;
		height: 270px;
	}
}


.home-section-services-content {
	min-height: 580px;
	background-size: cover;
	position: relative;
	background-repeat: no-repeat;
}

.home-section-services:before,
.home-section-services-content:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgb(255, 255, 255);
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
}

.home-section-services:before {
	opacity: 0;
}

.home-section-services-content-paint {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 400px;
	justify-content: center;
}

.home-section-services-content-paint p {
	color: #006D7E;
	z-index: 1;
	max-width: 450px;
	width: 70%;
	margin: 0 auto;
	font-size: 1.1rem;
	position: relative;
}

.home-section-services-content-paint:before {
	z-index: 0;
	width: 842px;
	height: 484px;
	background-image: url(images/paint_stroke_yellow.webp);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	left: calc(50% - 400px);
	top: -10%;
	content: '';
}

.home-section-services-content .multi-styled-title {
	padding: 0 15px;
	margin: 0 auto;
	display: inline-block;
}


.home-section-services-content-title {
	text-align: center;
}

.home-section-services-content .multi-h2 {
	position: relative;
	left: 30px;
	text-align: left;

}

.home-section-services {
	padding-top: 80px;
}

.home-section-services-list-single h3 i {
	color: #CC7539;
}

.home-section-services-list-single li,
.home-section-services-list-single a {
	color: #006D7E;
}

.home-section-services-list {
	padding: 40px 15px;
}

.home-section-services-list-single li {
	position: relative;
	margin-bottom: 5px;
	padding-left: 15px;
}

.home-section-services-list-single h3 a {
	letter-spacing: 2px;
}

.home-section-services-list-single h3 a:focus,
.home-section-services-list-single h3 a:hover {
	color: #59BAB6;
}

.home-section-services-list-single li:before {
	content: '\f0da';
	font-family: 'Font Awesome 5 Pro';
	color: #59BAB6;
	margin-right: 5px;
	position: absolute;
	left: 0;
	top: 1px;
}

.home-section-services-list-single {
	margin-bottom: 50px;
}

.home-section-services-list-single ul {
	margin: 0;
	padding-left: 35px;
}


.home-section-services-list-single:last-of-type {
	margin: 0;
}

@media screen and (min-width: 1025px) {
	.home-section-services-inner {
		display: flex;
		padding: 0 15px;
	}

	.home-section-services-content-title {
		text-align: left;
		padding-left: 80px;
	}

	.home-section-services-content:before {
		display: none;
	}

	.home-section-services:before {
		opacity: 1;
	}

	.home-section-services-content {
		background: none;
		min-width: 600px;
	}

	.home-section-services-list {
		padding-left: 80px;
		padding-right: 0;
	}

	.home-section-services-list {
		position: relative;
		padding-bottom: 0;
	}

	.home-section-services {
		background-image: url(images/background_street_art.webp);
		background-size: 80%;
		position: relative;
		background-repeat: no-repeat;
		padding: 90px 0;
		background-position-x: -50%;
		background-position-y: 100%;
	}

	.home-section-services-content-paint:before {
		left: -60px;
		top: -1%;
		width: 740px;
	}
}

@media screen and (min-width: 1400px) {
	.home-section-services-content-paint:before {
		left: -110px;
		top: -8%;
		width: 842px;
	}

	.home-section-services {
		background-size: contain;
		padding: 120px 0;
	}
}

.home-section-philosophy-inner {
	background: #fff;
	padding: 0 30px;
}

.home-section-philosophy-inner .giant-title {
	font-size: 3.6rem;
}

.home-main-top-content-mid-title {
	font-size: 1.5rem;
}

.home-main-top-content-mid-first {
	font-size: 1.9rem;
}

.home-section-philosophy-image {
	/*background-image: url(images/staceyann_city_mobile.webp);*/
	background-size: cover;
	background-repeat: no-repeat;
	background-position-x: 50%;
	height: 448px;
}
.home-section-philosophy-image {
		background-image: url(images/staceyann_city.webp);
		background-position-y: 40%;
	}
.home-section-philosophy-accordions {
	position: relative;
	top: -20px;
}

.home-section-philosophy-accordions .accordion-item-title {
	font-size: 1.3rem;
	padding-left: 40px;
}

.home-section-philosophy-inner .multi-styled-title {
	margin-bottom: 0;
	position: relative;
	top: -40px;
}

@media screen and (min-width: 640px) {
	.home-section-philosophy-image {
		background-image: url(images/staceyann_city.webp);
		background-position-y: 40%;
	}
}

@media screen and (min-width: 1200px) {
	.home-section-philosophy {
		position: relative;
		padding: 180px 0;
		overflow: hidden;
	}

	.home-section-philosophy-accordions {
		max-width: 600px;
	}

	.home-section-philosophy-inner .multi-styled-title {
		top: -50px;
	}

	.home-section-philosophy-image {
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		right: 0;
		width: 80%;
		height: 1280px;
	}

	.home-section-philosophy-accordions .accordion-item {
		padding-left: 0;
	}

	.home-section-philosophy-inner {
		max-width: 50vw;
		position: relative;
		padding: 0 50px 80px 60px;
		margin-left: auto;
	}
}

@media screen and (min-width: 1921px) {
	.home-section-philosophy-inner {
		max-width: 1000px;
	}
}

.home-section-who {
	background: #006D7E;
	padding: 50px 0;
	position: relative;
}

.home-section-who-more {
	color: #CC7539;
}

.home-section-who-background {
	background-image: url(images/paint_swatch_blue_small.html);
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	content: '';
	width: 875px;
	height: 300px;
	bottom: calc(100% - 130px);
	left: -100px;
	right: 0;
	z-index: 0;
	display: block;
}

.home-section-who-more:focus,
.home-section-who-more:hover {
	color: #59BAB6;
}

.home-section-who-half p {
	color: #fff;
}

.home-section-who-half h3 {
	position: relative;
	font-size: 1.5rem;
}

.home-section-who-half .giant-title {
	color: #59BAB6;
	position: relative;
	font-weight: 700;
	top: -30px;
	font-size: 2.4rem;
	z-index: 1;
}

.home-section-who-image {
	background-image: url(images/staceyann_wall.html);
	background-size: cover;
	background-repeat: no-repeat;
	width: 312px;
	content: '';
	height: 466px;
	margin: 0 auto;
}

.multi-banner-title.home-section-who-title {
	color: #59BAB6;
}

@media screen and (min-width: 700px) {
	.home-section-who-background {
		background-image: url(images/paint_swatch_blue_long.png);
		width: 2177px;
		margin: 0 auto;
		left: -20vw;
		right: 0;
	}
}

@media screen and (min-width: 1025px) {
	.home-section-who-inner {
		display: flex;
	}


	.home-hero:after,
	.home-section-who-image-container:after {
		background-image: url(images/shape_bars_clear.html);
		background-size: contain;
		background-repeat: no-repeat;
		content: '';
		width: 16vw;
		height: 631px;
		max-width: 296px;
		position: absolute;
		left: calc(100% - 4vw);
		top: -60px;
	}

	.home-section-who-half {
		flex: 1;
		width: 50%;
	}

	.home-section-who-image-container {
		position: relative;
	}

	.home-section-who-image-container:after {
		z-index: 1;
	}

	.home-section-who-half:first-of-type {
		padding-right: 6vw;
	}

	.home-section-who-image {
		width: 505px;
		margin-left: 40px;
		height: 753px;
		z-index: 1;
		position: relative;
	}

	.home-section-who-half .giant-title {
		max-width: 550px;
		margin-bottom: 50px;
	}

	.home-section-who {
		padding: 30px 0 90px;
	}
}

.hidden {
	display: none;
}

.hidden.active {
	display: block;
}

.section-end-link {
	display: block;
	letter-spacing: 1px;
	text-decoration: none;
	font-weight: 500;
	margin-bottom: 30px;
}

.section-end-link:hover,
.section-end-link:focus {
	color: #59BAB6;
}

.home-main {
	padding: 20px 0 150px;
}

.home-main-speech-bubbles {
	margin-bottom: 60px;
	position: relative;
	display: none;
}

.home-main-speech-bubbles-group {
	text-align: center;
}

.home-main-speech-bubbles-group img {
	max-width: 100%;
	margin: 0 auto;
}

.home-main-bottom .section-end-link {
	display: inline-block;
	text-decoration: none;
}

.multi-styled-title-block {
	margin: 20px 0;
}

.home-hero-image,
.home-main-image {
	background-image: url(images/background_city.webp);
	background-size: cover;
	background-repeat: no-repeat;
	height: 454px;
	width: 100%;
	position: relative;
	z-index: 1;
}

.home-main-image {
	margin-bottom: 20px;
	max-width: 415px;
}

@media screen and (min-width: 768px) {
	.speech-bubble-basic span {
		font-size: 1.1rem;
	}
}

@media screen and (min-width: 1025px) {
	.home-main-speech-bubbles-group {
		display: none;
	}

	.home-main-speech-bubbles .speech-bubble {
		margin-bottom: 0;
	}

	.home-main-speech-bubbles,
	.home-main-top {
		display: flex;
	}

	.home-main-top-content-mid-title {
		max-width: 500px;
	}

	.home-main-speech-bubbles {
		align-items: flex-start;
		position: relative;
		top: -100px;
		z-index: 1;
		margin-bottom: 10px;
	}

	.home-main-bottom {
		max-width: 700px;
		position: relative;
		top: -120px;
	}

	.home-main-speech-bubbles .speech-bubble {
		left: 0 !important;
		right: 0 !important;
	}

	.home-main-speech-bubbles .speech-bubble:nth-child(2n) {
		margin-top: 50px;
	}

	.home-main-speech-bubbles .speech-bubble:nth-child(3n) {
		margin-top: 30px;
	}

	.home-main-speech-bubbles .speech-bubble:nth-child(4n) {
		margin-top: 60px;
	}

	.home-main-speech-bubbles .speech-bubble:after {
		left: auto;
		right: 35%;
		border-width: 0 40px 40px 0;
		border-color: transparent #ededed transparent transparent;
	}

	.home-main-image {
		height: 598px;
	}

	.home-main {
		padding-bottom: 60px;
		position: relative;
		padding-top: 180px;
	}

	.home-main:before {
		z-index: -1;
		position: absolute;
		top: 0;
		left: 0;
		background-image: url(images/background_city_light.jpg);
		background-size: contain;
		background-repeat: no-repeat;
		content: '';
		height: 733px;
		width: 100%;
	}

	.home-main-top-content {
		padding-left: 8vw;
		position: relative;
	}
}

.home-hero-image-container {
	position: relative;
}

.home-hero-image {
	background-image: url(images/staceyann_hero_mobile.html);
	height: 280px;
}

.home-hero-content {
	position: relative;
	text-align: center;
}

.home-hero-image-after {
	content: '';
	z-index: 0;
	position: absolute;
	right: -20vw;
	top: calc(100% - 100px);
	background-image: url(images/paint_stroke_02.html);
	background-size: cover;
	background-repeat: no-repeat;
	height: 356px;
	width: 500px;
}

.home-hero {
  margin-top: 80px;
  /* margin-top: 145px; */
}

.home-hero-title-upper {
	display: flex;
	margin-top: 30px;
	align-items: flex-end;
	justify-content: flex-end;
}

.home-hero-title-main {
	display: inline-block;
	margin: 0 auto;
}

.home-hero-title .multi-banner-title {
	font-size: 4.8rem;
	text-align: right;
	line-height: 0.75;
}

.home-hero-title-first {
	padding-bottom: 0;
}

.home-hero-title-middle {
	line-height: 0.7;
	margin-bottom: 10px;
}

.home-hero-title-last {
	text-align: center;
}

.home-hero-flex-block {
	display: flex;
}

.home-hero-title {
	position: relative;
	top: -50px;
	z-index: 1;
	text-align: center;
}

.home-hero-content .color-block-text {
	position: relative;
	top: -50px;
	padding: 8px 40px;
}

@media screen and (min-width: 640px) {
	.home-hero-image {
		height: 60vh;
	}
}

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

  /* .home-hero {
    margin-top: 150px;
  } */

	.home-hero-content-row {
		position: absolute;
		top: 16vh;
		left: 0;
		right: 0;
		width: 100%;
		z-index: 1;
	}

	.home-hero-image {
		max-width: 50%;
		margin-left: auto;
		background-position-x: 50%;
	}

	.home-hero-image-after {
		top: 40%;
		width: 100%;
		background-position-y: 100%;
	}

	.home-hero {
		position: relative;
	}

	.home-hero-content {
		max-width: 50%;
		text-align: right;
	}

	.home-hero-content .color-block-text {
		text-align: right;
		top: 0;
	}

	.home-hero-title-last {
		text-align: right;
	}
}

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

	.home-hero-content {

	}


	.home-hero-flex-block span {
		line-height: 0.8;
		opacity: 0;
	}
	.home-hero-title .multi-banner-title {
		font-size: 6rem;
	}

	.home-hero-title-middle {
		margin-right: -1vw;
	}

	.home-hero {
    /* margin-top: 130px; */
    margin-top: 136px;
	}

	.home-hero-title {
		top: 0;
		text-align: right;
	}

	.home-hero-content .color-block-text h3 {
		padding-left: 40px;
		padding-right: 40px;
	}

	.home-hero-content-row {
		top: 6vh;
	}

	.home-hero-image {
		background-image: url(images/staceyann_hero.webp);
		background-size: cover;
		background-repeat: no-repeat;
		height: 528px;
		width: 60%;
		max-width: 100%;
		position: relative;
	}

	.home-hero:after {
		z-index: 1;
		background-image: url(images/shape_bars_long.html);
		position: absolute;
		top: 65%;
		right: -10%;
		left: auto;
		opacity: 0;
		transform: translateX(30px);
		-webkit-transition: all 600ms ease-out;
		-moz-transition: all 600ms ease-out;
		-ms-transition: all 600ms ease-out;
		-o-transition: all 600ms ease-out;
		transition: all 600ms ease-out;
	}

	.home-hero.active:after {
		opacity: 1;
		transform: translateX(0);
	}

	.home-hero-image-after {
		bottom: -120px;
		top: auto;
		height: 500px;
		background-size: contain;
		background-position-x: 100%;
		background-image: url(images/paint_stroke_01.html);
	}

	.home-hero-title-lower {
		max-width: 640px;
		margin-left: auto;
	}

	.home-hero-title .multi-h2 {
		font-size: 2.7rem;
		margin-left: auto;
		line-height: 1;
	}

	.home-hero-title-upper {
		display: inline-block;
		position: relative;
		margin-left: auto;
	}

	.home-hero-title-upper .multi-h2 {
		position: absolute;
		left: 0;
		bottom: 100%;
		padding: 0;
	}
}

@media screen and (min-width: 1400px) {
	.home-hero-image {
		max-width: 1089px;
		height: 779px;
	}

	.home-hero-content-row {
		top: 12vh;
	}
}

@media screen and (min-width: 1600px) {
	.home-hero-title .multi-h2 {
		font-size: 3.1rem;
	}

	.home-hero-title .multi-banner-title {
		font-size: 7.6rem;
	}
}

@media screen and (min-width: 1025px) and (max-height: 700px) {
	.home-hero-title .multi-banner-title {
		font-size: 5.5rem;
	}

	.home-hero-title .multi-h2 {
		font-size: 2.0rem;
		max-width: 30vw;
	}

	.attorney-template-main-content .multi-banner-title {
		font-size: 3.8rem;
	}

	.attorney-template-main-content {
		margin-bottom: 16vh;
	}
}

/* PODCAST */
.podcast-archives-bar {
	background: #006D7E;
	padding: 30px 0;
}

.podcast-categories-links a {
	color: #CC7539;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 0.9rem;
}

.podcast-categories-links {
	display: flex;
	justify-content: space-between;
	margin-right: 10vw;
}

.podcast-categories {
	flex: 1;
}

.podcast-search-form {
	border-bottom: 1px solid #fff;
}

.podcast-search-form button {
	padding: 0 5px;
	color: #CC7539;
}

.podcast-search-form button:focus,
.podcast-search-form button:hover {
	color: #59BAB6;
	background: none;
}

.podcast-search-form input {
	border-bottom: none;
	color: #fff;
}

.podcast-search-form label {
	text-transform: uppercase;
	font-weight: 300;
	pointer-events: none;
	left: 40px;
	font-size: 0.8rem;
}

.podcast-listing-excerpt {
	font-size: 0.9rem;
	line-height: 1.3;
}

.podcast-listing-title span {
	color: #006D7E;
	letter-spacing: 1.5px;
}

.podcast-listing-title {
	display: flex;
	align-items: center;
	font-family: 'Barlow Semi Condensed', sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.2rem;
	margin-bottom: 15px;
}

.podcast-listing-type span {
	margin-right: 8px;
	padding-right: 14px;
}

.podcast-listing-title img {
	margin-left: auto;
	z-index: 1;
	position: relative;
}

.podcast-more {
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.podcast-more-inner {
	display: flex;
	align-items: center;
}

.podcast-more-type-video i {
	font-size: 2rem;
	line-height: 0;
}

.podcast-listing-type span {
	font-size: 0.8rem;
	text-transform: uppercase;
	color: #59BAB6;
	font-weight: 500;
	position: relative;
}

.podcast-listing-type span:after {
	content: "|";
	position: absolute;
	right: 0;
	top: 12px;
	line-height: 0;
}

.podcast-listing-type span:last-of-type {
	padding-right: 0;
	margin-right: 0;
}

.podcast-listing-type span:last-of-type:after {
	display: none;
}

.podcast-episode-number.paint-swipe-title:before {
	background-image: url(images/back_paint_small_yellow.html);
	left: calc(50% - 90px);
	top: -10px;
	width: 223px;
	height: 78px;
}

.podcast-episode-number.video-style.paint-swipe-title:before {
	background-image: url(images/back_paint_small_blue.html);
}

.podcast-archives-listing {
	margin: 50px 0;
}

.podcast-providers {
	margin: 30px 0;
}

.podcast-categories-dropdown {
	margin-bottom: 30px;
}

.podcast-categories-dropdown label {
	text-transform: uppercase;
	font-size: 0.8rem;
	pointer-events: none;
}

.podcast-categories-dropdown select {
	border-bottom: 1px solid #fff;
	color: #6A7B7E;
}

.podcast-listing-single {
	margin: 0 auto 40px;
	padding: 30px;
	max-width: 620px;
}

.podcast-archives-listing-inner {
	margin-bottom: 50px;
}

.podcast-player-container {
	margin-top: 30px;
}


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

	.podcast-lead-content-main {
		column-gap: 80px;
	}

	.podcast-categories {
		max-width: 400px;
	}

	.podcast-categories-dropdown {
		margin-bottom: 0;
	}

	.podcast-listing-single {
		margin: 0;
		display: flex;
		flex-direction: column;
		padding: 60px 40px;
	}

	.podcast-more {
		margin-top: auto;
	}

	.podcast-archives-listing-inner {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-column-gap: 50px;
		grid-row-gap: 50px;
	}

	.podcast-archives-bar-inner {
		display: flex;
		align-items: center;
	}

	.podcast-search {
		margin-left: auto;
	}

	.podcast-banner-title-container .banner-title span {
		white-space: pre;
	}

	.podcast-banner-title-container .multi-styled-title {
		margin-left: 5vw;
	}

	.podcast-lead-content-block-top {
		display: flex;
		margin-bottom: 30px;
	}

	.podcast-providers {
		display: flex;
		align-items: flex-end;
		margin-left: 3vw;
	}

	.podcast-providers a {
		margin-right: 10px;
	}

	.podcast-providers a:last-of-type {
		margin-right: 0;
	}

	.podcast-lead-content-main {
		columns: 2;
	}
}
