/* ============================================================================ *
        Structural Styles
    ---------------------------------------------------------------------------
*/
:root {
	/* PRIMARY COLORS */
	--primary: #323232;
	--primary-light: #666666;
	--primary-dark: #000000;
	/* SECONDARY COLORS */
	--secondary: #999999;
	--secondary-light: #e5e5e5;
	/* ACCENT COLORS */
	--accent: #e9b964;
	--accent-dark: #c98f3a;
	/* FONTS */
	--heading-font: 'Spectral', serif;
	--body-font: 'Lato', sans-serif;
	--font-awesome: 'Font Awesome 5 Pro';
	--font-brands: 'Font Awesome 5 Brands';
	/* HOME HEADINGS */
	/* font: font-style font-varient font-weight font-size/line-height font-family */
	/* font: italic uppercase 600 64px/1.3em var(--heading-font) */
	--home-h1: 400 60px/1.3em var(--heading-font);
	--home-h2: 400 42px/1.3em var(--heading-font);
	--home-h3: 400 32px/1.3em var(--heading-font);
	--home-h4: 300 30px/1.3em var(--body-font);
	/* INTERIOR HEADINGS */
	--h1: 400 60px/1.3em var(--heading-font);
	--h2: 400 42px/1.3em var(--heading-font);
	--h3: 400 32px/1.3em var(--heading-font);
	--h4: 300 30px/1.3em var(--body-font);
	/* HEADER */
	--header-bg-color: var(--primary);
	--sticky-header-bg-color: var(--primary);
	--header-font-size: 18px;
	--header-font-weight: 400;
	--header-link-color: var(--accent);
	/* LOGOS */
	--logo-width: 194px;
	--logo-height: 102px;
	--sticky-logo-width: 113px;
	--sticky-logo-height: 60px;
}
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	color: #000;
	font-family: var(--body-font);
	font-size: 16px;
	font-weight: 400;
	overflow-x: hidden;
}
a {
	color: var(--accent);
}

/* ======================================== *
        #region Typography
 * ======================================== */
/* calc px size by 16 and multiply by 1 rem to get rem value  */
/* -------------------------------- *
      Heading 1
 * -------------------------------- */
.home h1 {
	font: var(--home-h1);
	color: #fff;
}
h1 {
	font: var(--h1);
	color: #fff;
}

@media screen and (max-width: 950px) {
	.home h1 {
		font-size: 36px;
	}
	h1 {
		font-size: 32px;
	}
}

/* -------------------------------- *
        Heading 2
 * -------------------------------- */
.home h2 {
	font: var(--home-h2);
	color: #333;
}
h2 {
	font: var(--h2);
	color: #333;
}
h2 a {
	color: var(--primary);
}

@media screen and (max-width: 950px) {
	.home h2 {
		font-size: 30px;
	}
	h2 {
		font-size: 28px;
	}
}

/* -------------------------------- *
        Heading 3
 * -------------------------------- */
.home h3 {
	font: var(--home-h3);
	color: #666;
}
h3 {
	font: var(--h3);
	color: #666;
}
h3 a {
	color: var(--accent);
	text-decoration: none;
}
h3 a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 950px) {
	.home h3 {
		font-size: 26px;
	}
	h3 {
		font-size: 24px;
	}
}

/* -------------------------------- *
        Heading 4
 * -------------------------------- */
.home h4 {
	font: var(--home-h4);
	color: #000;
}
h4 {
	font: var(--h4);
	color: #000;
}
h4 a {
	color: var(--accent);
	text-decoration: none;
}
h4 a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 950px) {
	.home h4 {
		font-size: 24px;
	}
	h4 {
		font-size: 22px;
	}
}

/* #endregion Typography */

/* ======================================== *
        #region Breadcrumbs
 * ======================================== */
#breadcrumbs {
	color: var(--primary);
	font-family: var(--body-font);
	font-size: 14px;
	font-weight: 400;
	margin: 0 0 15px;
	line-height: 22px;
	overflow: hidden;
}
#breadcrumbs span.bread-divider {
	margin: 0 5px;
	color: var(--primary);
}
#breadcrumbs a {
	color: var(--primary);
	text-decoration: none;
}
#breadcrumbs .current {
	color: var(--accent-dark);
	font-weight: 600;
	font-size: 14px;
}

@media screen and (max-width: 700px) {
	#breadcrumbs {
		display: none;
	}
}

/* site Specific - Breadcrumbs in its own section*/
#breadcrumbs-wrapper {
	background: var(--secondary-light);
	padding: 15px 0;
	/* z-index: -1; */
}
#breadcrumbs-container {
	max-width: 90%;
	padding: 0 25px;
}
#breadcrumbs {
	margin: 0;
}
@media screen and (max-width: 700px) {
	#breadcrumbs-wrapper {
		display: none;
	}
}
/* #endregion Breadcrumbs */

/* ======================================== *
#region Container Max Width
* ======================================== */
/*  Set max container width on large desktop view exclude any full width containers by chaining :not(id)*/
body .section-container:not(#billboard-container):not(#int-billboard-container):not(#primary-nav-container):not(#mobile-header-bottom-container):not(#copyright-container) {
	max-width: 1600px;
}

@media screen and (max-width: 1750px) {
	body
		.section-container:not(#billboard-container):not(#primary-nav-container):not(#int-billboard-container):not(#primary-nav-container):not(#mobile-header-bottom-container):not(
			#home-practice-areas-container
		):not(#copyright-container) {
		max-width: 90% !important;
	}
}

/* #endregion Container Max Width */

/* #endregion Container Max Width */

/* ======================================== *
        #region Header Sections
 * ======================================== */
/* ------------------------------- *
      #region Sticky Header
 * ------------------------------- */
body #header-wrapper.sticky {
	-webkit-transition: all 0.33s cubic-bezier(0.694, 0.0482, 0.335, 1);
	-o-transition: all 0.33s cubic-bezier(0.694, 0.0482, 0.335, 1);
	transition: all 0.33s cubic-bezier(0.694, 0.0482, 0.335, 1);
	top: 0px;
	left: 0;
	position: fixed !important;
	background: url('../images/header_bg_3x.jpg') no-repeat center/cover;
	border-bottom: none;
	min-height: auto;
	width: 100%;
	z-index: 2;
	-webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
	box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
	padding: 20px 0;
}
/* Handles sticky when admin Bar is showing */
body #header-wrapper.sticky.sticky_animate {
	top: 0;
}
body.admin-bar #header-wrapper.sticky.sticky_animate {
	top: 32px;
}
body #header-wrapper.sticky #header-container {
	padding-top: 0;
}

/* ----- both cells ----- */
body #header-wrapper.sticky #header #header-cell-1,
body #header-wrapper.sticky #header #header-cell-2 {
	vertical-align: middle;
}

/* ----- cell 1 ------ */
/* hides normal logo on sticky */
body #header-wrapper.sticky #header .logo {
	display: none;
}
body #header-wrapper.sticky #header .sticky-logo {
	max-width: var(--sticky-logo-width);
	height: auto;
	width: 100%;
	display: block;
	text-align: center;
	margin: 0 auto;
}
body #header-wrapper.sticky #header .sticky-logo-view {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
}
body #header-wrapper.sticky #header #header-cell-1 {
	width: 240px;
}

/* ------ cell 2 ------ */
body #header-wrapper.sticky #header-cell-2 {
	width: 100%;
	display: block;
}
body #header-wrapper.sticky #header-cell-2 .inner {
	width: 100%;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	gap: 45px;
	height: var(--sticky-logo-height);
}
body #header-wrapper.sticky .desktop-view {
	display: none;
}
body #header-wrapper.sticky .mobile-view {
	display: none;
}
body #header-wrapper.sticky #header-cell-2 .inner .sticky-view {
	display: block;
	min-width: -webkit-fit-content;
	min-width: -moz-fit-content;
	min-width: fit-content;
}

/* ------ sticky menu ------ */
body #header-wrapper.sticky #header #primary-nav-wrapper {
	margin-top: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}
body #header-wrapper.sticky #header-cell-2 #primary-nav-container {
	max-width: 100%;
}
body #header-wrapper.sticky #primary-nav .menu {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
body #header-wrapper.sticky #primary-nav .menu > .menu-item > a {
	color: #fff;
	font-family: var(--body-font);
	font-size: var(--header-font-size);
	font-weight: var(--header-font-weight);
	line-height: normal;
	text-decoration: none;
	-webkit-transition: all 0.15s ease;
	-o-transition: all 0.15s ease;
	transition: all 0.15s ease;
	padding: 5px 0;
	position: relative;
	height: auto;
}
#header-wrapper.sticky #primary-nav .menu > .menu-item.home-icon a:hover::before {
	color: var(--accent);
}
#header-wrapper.sticky #header-cell-2 .sticky-view .phone-1 a {
	color: #fff;
	text-decoration: none;
	font-size: var(--header-font-size);
	font-weight: var(--header-font-weight);
}
#header-wrapper.sticky #header-cell-2 .sticky-view .phone-1 a:hover {
	text-decoration: underline;
}

/* ------ sticky sub-menu ------ */
body #header-wrapper.sticky #primary-nav .menu .sub-menu {
	min-width: 250px;
	top: 0;
	left: 0;
	-webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
	box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
	background: var(--primary);
}
body #header-wrapper.sticky #primary-nav .menu .sub-menu .sub-menu {
	left: 100%;
}
body #header-wrapper.sticky #primary-nav .menu > li.left-edge > div > ul {
	left: inherit;
	right: 0;
}
body #header-wrapper.sticky #primary-nav .menu .sub-menu .menu-item > a {
	font-size: 16px;
	padding: 10px 15px;
	color: #fff;
	font-weight: 500;
}
body #header-wrapper.sticky #primary-nav .menu .sub-menu .menu-item:hover > a {
	background-color: var(--accent);
	color: #000;
}

@media screen and (max-width: 1460px) {
	body #header-wrapper.sticky #header #header-cell-1 {
		width: 140px;
	}
}

@media screen and (max-width: 1250px) {
	body #header-wrapper.sticky #header .sticky-logo-view {
		display: none;
	}
}
/* #endregion Sticky Header */

/* ------------------------------- *
    #region Header Section
* ------------------------------- */
#header-wrapper {
	background: url('../images/header_bg_3x.jpg') no-repeat center/cover;
	padding: 30px 0;
	padding-top: 0;
}
#header-container {
	max-width: 90%;
	padding-top: 30px;
}
#header-row {
	position: static;
}

/* ------ cells 1 & 2 ------ */
#header-cell-1,
#header-cell-2 {
	vertical-align: middle;
}
.header-top .tmf-module-content {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
}
#header p {
	margin-bottom: 0;
}

/* ------ cell 1 ------ */
#header .logo {
	max-width: var(--logo-width);
	width: 100%;
	height: auto;
}
#header .sticky-logo-view {
	display: none;
}
#header-cell-1 .mobile-view {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
#header-cell-1 .mobile-view {
	display: none;
}
#header-cell-1 .mobile-view a {
	color: var(--header-link-color);
	font-size: var(--header-font-size);
	font-weight: var(--header-font-weight);
	text-decoration: none;
}

/* ------ cell 2 ------ */
#header-cell-2 .inner {
	padding-left: 0;
	margin-top: 10px;
	position: static;
}
#header-cell-2 .desktop-view {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	margin-bottom: 15px;
	background: var(--primary);
	position: absolute;
	top: 0;
	right: 0;
	padding: 10px 25px 10px 50px;
	border-bottom-left-radius: 40px;
}
#header-cell-2 .desktop-view::after {
	content: '';
	display: inline-block;
	background: var(--primary);
	height: 100%;
	width: 1000%;
	position: absolute;
	top: 0;
	right: -1000%;
}
#header .sticky-view {
	display: none;
}
#header-cell-2 .desktop-view a {
	color: #fff;
	font-size: 16px;
	font-weight: var(--header-font-weight);
	text-decoration: none;
	line-height: 20px;
}
#header .header-top a:hover {
	text-decoration: underline;
}
#header .header-top .email::before {
	content: '\f0e0';
}
#header .sticky-view .phone-1 a::before,
#header .mobile-view .phone-1 a::before,
#header .desktop-view .phone-1 a::before {
	content: '\f879';
	display: inline-block;
	vertical-align: middle;
	margin-right: 7px;
	-webkit-transform: rotate(10deg);
	-ms-transform: rotate(10deg);
	transform: rotate(10deg);
	color: var(--accent);
	font-size: 16px;
	font-family: var(--font-awesome);
	font-weight: 300;
}
#header .sticky-view .consultation::before,
#header .mobile-view .consultation::before,
#header .desktop-view .consultation::before {
	content: '\f073';
	display: inline-block;
	vertical-align: middle;
	margin-right: 7px;
	color: var(--accent);
	font-size: 16px;
	font-family: var(--font-awesome);
	font-weight: 300;
}
#header-cell-2 .desktop-view .consultation {
	border-right: 2px solid #666666;
	padding-right: 20px;
}
#header .mobile-logo-view {
	display: none;
}

@media screen and (max-width: 1200px) {
	#header-cell-1 {
		margin-bottom: 0;
	}
	#header-cell-1 .inner {
		position: static;
	}
	#header-cell-2 {
		padding-top: 0;
	}
	#header-cell-2 .inner {
		padding: 0;
		display: block;
	}
	.header-top-row {
		display: table;
		width: 100%;
	}
	#header .main-logo {
		display: table-cell;
		vertical-align: top;
	}
	#header .main-logo {
		width: 300px;
	}
	#header-cell-2 .desktop-view {
		display: none;
	}
	#header-cell-1 .mobile-view {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		background: var(--primary);
		position: absolute;
		top: 0;
		right: 0;
		padding: 10px 25px 10px 50px;
		border-bottom-left-radius: 40px;
	}
	#header-cell-1 .mobile-view::after {
		content: '';
		display: inline-block;
		background: var(--primary);
		height: 100%;
		width: 1000%;
		position: absolute;
		top: 0;
		right: -1000%;
	}
	#header-cell-1 .mobile-view a {
		color: #fff;
		font-size: var(--header-font-size);
		font-weight: var(--header-font-weight);
		text-decoration: none;
	}
	#header-cell-1 .mobile-view .tmf-module-content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 10px;
	}
}

@media screen and (max-width: 950px) {
	.home #header-wrapper {
		background: url('../images/mobile_header_bg_3x.jpg') no-repeat center/cover;
		position: static;
		padding: 15px 0;
	}
	#header-container {
		padding-top: 0;
	}
	.home .header-billboard-wrap .header-wrap {
		position: relative;
	}
	#header-cell-1 .inner {
		padding-right: 25px;
	}
	#header .main-logo {
		display: none;
	}
	#header .mobile-logo-view {
		display: block;
		width: 100%;
		text-align: center;
		padding: 15px 0;
	}
	#header-cell-2 {
		position: unset;
	}
	#header-container {
		max-width: 100%;
	}
	#header-cell-1 .mobile-view {
		display: none;
	}
	#header-cell-2 .inner {
		margin-top: 0;
	}
	#header-cell-1 {
		margin-bottom: 0;
	}
}

@media screen and (max-width: 500px) {
	#header .logo {
		width: 100%;
		height: auto;
	}
}
/* #endregion Header Section */

/* ======================================== *
    #region Primary Navigation
* ======================================== */
#primary-nav-container {
	max-width: 100% !important;
	margin: 0 auto;
}
#primary-nav .menu {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	gap: 20px;
}
#primary-nav .menu > .menu-item > a {
	color: var(--header-link-color);
	font-family: var(--body-font);
	font-size: var(--header-font-size);
	font-weight: var(--header-font-weight);
	line-height: normal;
	padding: 5px 0;
	text-decoration: none;
	position: relative;
	height: auto;
	-webkit-transition: 0.2s ease;
	-o-transition: 0.2s ease;
	transition: 0.2s ease;
	text-transform: uppercase;
}

/* ------ Menu Item Hover animation ------ */
#primary-nav .menu > .menu-item > a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 2px;
	background: url('../images/header_nav_indicator_3x.png') no-repeat;
	background-size: cover;
	opacity: 0;
	-webkit-transition: opacity 0.35s ease-out;
	-o-transition: opacity 0.35s ease-out;
	transition: opacity 0.35s ease-out;
}
#primary-nav .menu > .menu-item:hover > a::after,
#primary-nav .menu > .menu-item.current-menu-item > a::after,
#primary-nav .menu > .menu-item.current-menu-item > a:hover::after,
#primary-nav .menu > .menu-item.current-menu-item > a:focus::after {
	opacity: 1;
}

/* ------ Home Icon ------ */
#primary-nav .menu > .menu-item.home-icon a {
	font-size: 0 !important;
	width: 25px;
}
#primary-nav .menu > .menu-item.home-icon a::before {
	content: '\f015';
	color: var(--accent);
	font-size: 20px;
	font-family: var(--font-awesome);
	font-weight: 300;
	display: inline-block;
	position: static;
	background: none;
	height: 0;
	-webkit-transition: unset;
	-o-transition: unset;
	transition: unset;
	width: 100%;
}
#primary-nav .menu > .menu-item.home-icon a:hover::before {
	background: none;
	height: 0;
}
#primary-nav .menu > .menu-item.home-icon a::after {
	display: none;
}

/* ------ sub menu ------ */
#primary-nav .menu .sub-menu {
	top: 0;
	left: 0;
	-webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
	box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
	min-width: 250px;
	background: var(--primary);
}
#primary-nav .menu > li.left-edge > div > ul {
	left: inherit;
	right: 0;
}
#primary-nav .sub-menu-columns ul.sub-menu li {
	display: inline-block;
}
#primary-nav .menu .sub-menu .menu-item > a {
	font-size: 16px;
	padding: 10px 15px;
	color: #fff;
	font-weight: 500;
}
#primary-nav .menu .sub-menu .menu-item:hover > a {
	background-color: var(--accent);
	color: #000;
	height: 100%;
}

/* ------ sub menu's sub menu ------ */
#primary-nav .menu .sub-menu .sub-menu {
	left: 100%;
}

@media screen and (min-width: 1650px) {
	#primary-nav .menu {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: end;
		gap: 45px;
	}
}

@media screen and (max-width: 1200px) {
	#primary-nav-wrapper {
		width: 95%;
		margin: 10px auto 0;
	}
	#primary-nav .menu {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

@media screen and (min-width: 950px) {
	#primary-nav-wrapper {
		margin-top: 20px;
	}
	body #header-wrapper.sticky #primary-nav-wrapper {
		margin-top: 0;
	}
}

/* #endregion Primary Navigation */

/* ======================================== *
    #region Mobile Header Bottom Section
* ======================================== */
#mobile-header-bottom {
	padding: 15px 0 15px;
}
#mobile-header-bottom-row {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
#mobile-header-bottom-cell-1,
#mobile-header-bottom-cell-2,
#mobile-header-bottom-cell-3,
#mobile-header-bottom-cell-4 {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 100%;
	width: auto;
	padding: 0 15px;
}
#mobile-header-bottom .location-phone a,
#mobile-header-bottom .location-email a,
#mobile-header-bottom .location-phone a,
#mobile-header-bottom .location-email a,
#mobile-header-bottom .mobile-header-button a,
#mobile-header-bottom .menu-bar-container .menu-label {
	font-family: var(--body-font);
	color: #fff;
	font-weight: 400;
	font-size: 14px;
	line-height: normal;
	display: block;
}
#mobile-header-bottom .mobile-header-button a:active,
#mobile-header-bottom .mobile-header-button a:hover {
	text-decoration: none;
}
#mobile-header-bottom a.mh-button::before {
	border-radius: 50%;
	content: '\f155';
	font-size: 18px;
	font-weight: 700;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 45px;
	height: 45px;
	margin: 0 auto 10px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
#mobile-header-bottom a.phone::before,
#mobile-header-bottom a.email::before,
#mobile-header-bottom a.mh-button::before,
#mobile-header-bottom #mobile-nav .hamburger::before {
	font-family: var(--font-awesome);
	font-weight: 400;
}
#mobile-header-bottom #mobile-nav .hamburger::before {
	font-size: 16px;
	font-weight: 700;
}
#mobile-header-bottom a.mh-button::before {
	font-weight: 300;
}

/* #endregion Mobile Header-Bottom */

/* ======================================== *
  #region Mobile Menu
* ======================================== */
#mobile-nav .mobile-menu-container {
	text-align: left;
}
#mobile-nav .top-part {
	min-height: 50px;
	padding: 15px 25px;
}
#mobile-nav .menu > .menu-item > a {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
}
#mobile-nav .menu > .menu-item:hover > a {
	color: #000;
}
#mobile-nav .menu > .menu-item > .sub-menu a {
	color: #fff;
	font-size: 18px !important;
}
#mobile-nav .top-part .mob-cancel-button {
	color: #fff;
}
#mobile-nav .menu .sub-menu .menu-item {
	padding: 5px 30px;
}
#mobile-nav .menu > .menu-item:hover {
	background: var(--accent);
}
#mobile-nav .mobile-menu .current-menu-item {
	background: transparent;
}
.mob-expand-submenu:before {
	font-family: var(--font-awesome);
}
#mobile-nav .menu .menu-item > div > .sub-menu a {
	color: #000;
	font-size: 16px;
}
#mobile-nav .menu .menu-item:hover .mob-expand-submenu:before {
	color: #000;
}
#mobile-nav .menu .menu-item.display a,
#mobile-nav .menu .menu-item.display > .mob-expand-submenu:before {
	color: #000;
}

/* #endregion Mobile Menu */

/* ======================================== *
      #region Mobile Nav Menu Multiple Locations
* ======================================== */
.mobile-location .tmf-post-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
.tmf-post.location.mobile-location .location-small-1 {
	border: 0;
}
.tmf-post.location.mobile-location .location-small-container {
	max-width: 570px;
	margin: 0 auto;
	border-right: 1px solid var(--primary);
}
.tmf-post.location.mobile-location.last-post .location-small-container {
	border: none;
}
.tmf-post.location.mobile-location,
.tmf-post.location.mobile-location a {
	color: #000000 !important;
	position: relative;
}
.tmf-post.location.mobile-location .phone-1 i.fa-phone-alt {
	-webkit-transform: rotate(10deg);
	-ms-transform: rotate(10deg);
	transform: rotate(10deg);
}
.mobile-menu .tmf-post.location.mobile-location .location-small-container {
	max-width: 100%;
}
.tmf-post.location.mobile-location .map-label {
	font-size: 20px;
	top: 20px;
}

@media screen and (max-width: 600px) {
	.mobile-location .tmf-post-list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.mobile-location .tmf-post-list .first-post {
		margin-bottom: 0;
	}
	.mobile-location .tmf-post-list .last-post {
		margin-top: 0;
	}
	.tmf-post.location.mobile-location .location-small-container {
		border-right: none;
	}
}

/* #endregion Mobile Nav Menu Multiple Locations*/

/* #endregion Header Sections */

/* ======================================== *
      #region Body Sections
 * ======================================== */
/* -------------------------
* Home Body Section
* ------------------------- */
#home-body-wrapper {
	padding: 0;
	background: url('../images/home_marble_b_bg_3x.jpg') no-repeat center/cover;
	z-index: -1;
	padding-top: 50px;
	position: relative;
}
#home-body-container {
	max-width: 90%;
}

/* --- cell 1 ---- */
#home-body #home-body-cell-1 .inner {
	padding: 45px 25px;
}
#home-body-cell-1 h2 {
	font-style: italic;
	font-size: 42px;
}
#home-body-cell-1 h2 span {
	font-family: var(--body-font);
	text-transform: uppercase;
	font-weight: 300;
	font-size: 30px;
	font-style: normal;
}

@media screen and (max-width: 1050px) {
	#home-body #home-body-cell-1 .inner {
		padding: 0;
	}
}

@media screen and (max-width: 950px) {
	#home-body-wrapper {
		background: #fff;
		padding-top: 35px;
	}
}

@media screen and (max-width: 500px) {
	#home-body #home-body-cell-1 .inner {
		padding-inline: 0;
	}
}

/* -------------------------
* Page Body Section
* ------------------------- */
#body-container {
	max-width: 90%;
}

/* --- cell 1 ---- */
#body #body-cell-1 > .inner {
	padding: 35px 25px;
}
#body #body-cell-1 .tmf-post .content-container {
	padding-bottom: 35px;
}

/* --- cell 2 ---- */
#body #body-cell-2 {
	position: relative;
}
#body #body-cell-2 > .inner {
	padding: 35px 25px;
}
#body-cell-2 {
	max-width: 425px;
	min-width: 400px;
	margin-left: auto;
}

@media screen and (max-width: 1050px) {
	#body-wrapper {
		margin-top: 0;
		overflow: hidden;
	}
	#body {
		padding: 35px 0 55px;
	}
	#body #body-cell-1 .inner {
		padding: 0 25px;
	}
	#body #body-cell-2 .inner {
		padding: 0 25px;
		margin-top: 0;
	}
	#body-cell-2 {
		max-width: unset;
		min-width: unset;
		width: 100%;
		margin: 0 auto;
	}
}

@media screen and (max-width: 700px) {
	#body iframe {
		max-width: 100%;
	}
}

@media screen and (max-width: 500px) {
	#body #body-cell-2 .inner,
	#body #body-cell-1 .inner {
		padding-inline: 0;
	}
}

/* -------------------------
* Attorney Body Section
* ------------------------- */
.single-attorney #body-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
}

/* --- cell 1 ---- */
.single-attorney #body-cell-1 {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

/* --- cell 2 ---- */
.single-attorney #body-cell-2 {
	width: 430px;
	max-width: 430px;
	min-width: 430px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-bottom: 25px;
}
.single-attorney #body #body-cell-2 .inner {
	padding: 80px 25px 35px;
}

@media screen and (max-width: 1150px) {
	.single-attorney #body #body-cell-2 .inner {
		padding: 35px 25px 0;
	}
	.single-attorney #body-cell-2 {
		width: 400px;
	}
}

@media screen and (max-width: 1050px) {
	.single-attorney #body-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 100%;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 0;
	}
	.single-attorney #body-cell-2 {
		padding-top: 0;
		width: 100%;
		max-width: 100%;
		min-width: unset;
		margin-bottom: 0;
	}
}

@media screen and (max-width: 500px) {
	.single-attorney #body #body-cell-2 .inner {
		padding-inline: 0;
	}
}

/* #endregion Body Sections */

/* ======================================== *
      #region Homepage Sections
 * ======================================== */
/* --------------------------- *
    #region Billboard
 * --------------------------- */
#billboard-wrapper {
	position: relative;
	overflow: hidden;
	background: url('../images/home_marble_b_bg_3x.jpg') no-repeat center / cover;
}
#billboard-wrapper::after {
	content: '';
	background: var(--accent);
	height: 2px;
	width: 50%;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
}
#billboard-container {
	max-width: 100%;
}
#billboard .billboard-content-container {
	position: absolute;
	width: 100%;
	right: 0;
	margin: 0 auto;
	bottom: 25px;
	padding: 0;
	text-align: right;
}
#billboard .billboard-content {
	position: relative;
	padding: 25px 25px 25px 0;
	max-width: 90%;
	margin: 0 auto;
}
#billboard h1 {
	margin: 0;
}
#billboard h1 span::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	background: var(--accent);
	height: 2px;
	width: 90px;
	margin-right: 15px;
}

@media screen and (min-width: 1750px) {
	#billboard .billboard-content {
		max-width: 1600px;
	}
}

@media screen and (max-width: 950px) {
	#billboard .billboard-content-container {
		background: var(--secondary-light);
		-webkit-transform: inherit;
		-ms-transform: inherit;
		transform: inherit;
		padding: 50px 25px;
		width: 100%;
		position: static;
		max-width: 100%;
		text-align: center;
	}
	#billboard-wrapper::after {
		display: none;
	}
	#billboard .billboard-content {
		background: transparent;
		padding: 0;
		max-width: 100%;
		margin: 0 auto;
	}
	#billboard h1 {
		text-align: center;
		margin-left: 0;
		color: #000;
	}
	#billboard h1 span::before {
		display: none;
	}
	#billboard .tmf-button {
		margin-top: 15px;
		color: #000;
	}
}

@media screen and (max-width: 550px) {
	#billboard .billboard-content {
		margin: 0 auto;
	}
}

@media screen and (max-width: 500px) {
	#billboard .billboard-content .tmf-module-content {
		width: 100%;
		display: block;
	}
}

/*---------------------------
*   Billboard Slider
*---------------------------*/
#billboard .billboard-slides {
	position: relative;
	height: 700px;
}
#billboard .slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#billboard .slide img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: bottom;
	object-position: bottom;
}
#billboard .mobile-view {
	position: relative;
	display: none;
}

@media screen and (min-width: 2400px) {
	#billboard .billboard-slides {
		height: 1000px;
	}
}

@media screen and (min-width: 1951px) and (max-width: 2399px) {
	#billboard .billboard-slides {
		height: 950px;
	}
}

@media screen and (min-width: 1700px) and (max-width: 1950px) {
	#billboard .billboard-slides {
		height: 900px;
	}
}

@media screen and (min-width: 1450px) and (max-width: 1699px) {
	#billboard .billboard-slides {
		height: 750px;
	}
}

@media screen and (max-width: 950px) {
	#billboard .billboard-slides {
		height: 400px;
	}
	#billboard .desktop-view {
		display: none;
	}
	#billboard .mobile-view {
		display: block;
	}
	#billboard .slide img {
		-o-object-position: center;
		object-position: center;
	}
}

@media screen and (max-width: 750px) {
	#billboard .billboard-slides {
		height: 300px;
	}
}
@media screen and (max-width: 550px) {
	#billboard .billboard-slides {
		height: 250px;
	}
}
/* #endregion Billboard */

/* -------------------------
*  #region Home Practice Areas Section
* ------------------------- */
#home-practice-areas-wrapper {
	padding: 100px 0 150px;
}

/* --- cell 1 --- */
#home-practice-areas-cell-1 {
	vertical-align: middle;
}
#home-practice-areas-cell-1 h2 {
	color: #000;
	font-style: italic;
	font-size: 42px;
	overflow: hidden;
	text-align: center;
}
#home-practice-areas-cell-1 h2 span {
	font-family: var(--body-font);
	font-style: normal;
	font-weight: 300;
	font-size: 30px;
	text-transform: uppercase;
}
#home-practice-areas-cell-1 h2::before,
#home-practice-areas-cell-1 h2::after {
	content: '';
	display: inline-block;
	border-top: 2px solid var(--accent);
	vertical-align: middle;
}
#home-practice-areas-cell-1 h2::before {
	margin-left: -100%;
	width: 100%;
	margin-right: 20px;
}
#home-practice-areas-cell-1 h2::after {
	margin-right: -100%;
	width: 100%;
	margin-left: 20px;
}
#home-practice-areas .tmf-post-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 100px;
	margin: 50px 0;
}
#home-practice-areas .tmf-post {
	margin: 0;
	padding: 0;
	border: 0;
	width: 100%;
}
#home-practice-areas .tmf-post .pa-listing a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 15px;
	width: 100%;
	height: auto;
	aspect-ratio: 1.852;
	background: var(--primary);
	text-decoration: none;
	-webkit-transition: 0.3s ease-in;
	-o-transition: 0.3s ease-in;
	transition: 0.3s ease-in;
}
#home-practice-areas .tmf-post .pa-listing a:hover {
	color: #000;
}
#home-practice-areas .tmf-post .pa-listing a::before {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
}
#home-practice-areas .tmf-post .pa-listing a .title {
	font-size: 24px;
	text-transform: uppercase;
	font-weight: 400;
	text-align: center;
}
#home-practice-areas .tmf-post.tmf-post-110 .pa-listing a {
	background: url('../images/home_services_eminent_domain_down_3x.png') no-repeat center/cover;
}
#home-practice-areas .tmf-post.tmf-post-110 .pa-listing a::before {
	background: url('../images/home_services_eminent_domain_hover_3x.png') no-repeat center/cover;
}
#home-practice-areas .tmf-post.tmf-post-110 .pa-listing a:hover {
	background: url('../images/home_services_eminent_domain_hover_3x.png') no-repeat center/cover;
}
#home-practice-areas .tmf-post.tmf-post-112 .pa-listing a {
	background: url('../images/home_services_inv_condemnation_down_3x.png') no-repeat center/cover;
}
#home-practice-areas .tmf-post.tmf-post-112 .pa-listing a::before {
	background: url('../images/home_services_inv_condemnation_hover_3x.png') no-repeat center/cover;
}
#home-practice-areas .tmf-post.tmf-post-112 .pa-listing a:hover {
	background: url('../images/home_services_inv_condemnation_hover_3x.png') no-repeat center/cover;
}

@media screen and (max-width: 1400px) {
	#home-practice-areas .tmf-post-list {
		gap: 50px;
	}
}

@media screen and (max-width: 1250px) {
	#home-practice-areas .tmf-post-list {
		gap: 25px;
	}
}

@media screen and (max-width: 1000px) {
	#home-practice-areas .tmf-post-list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	#home-practice-areas-wrapper {
		padding: 50px 0 15px;
	}
}

/* #endregion Home Practice Areas Section */

/* -------------------------
* #region Home Attorney Section
* ------------------------- */
#home-attorney-wrapper {
	background: url('../images/home_meet_attorney_bg_3x.png') no-repeat top/cover, url('../images/home_marble_c_bg_3x.jpg') no-repeat center/cover;
	padding: 50px 0 0;
	position: relative;
}
#home-attorney-wrapper::after {
	content: '';
	background: var(--accent);
	height: 2px;
	width: 64%;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
}
#home-attorney-container {
	max-width: 90%;
}

/* --- cell 1 --- */
#home-attorney-cell-1 {
	vertical-align: middle;
}
#home-attorney-cell-1 h2 {
	color: var(--accent);
	font-style: italic;
	font-weight: 300;
	font-size: 42px;
	overflow: hidden;
	line-height: 1;
}
#home-attorney-cell-1 h2 span {
	font-family: var(--body-font);
	text-transform: uppercase;
	font-size: 30px;
	font-weight: 300;
	font-style: normal;
}
#home-attorney-cell-1 h2 span.two {
	padding-left: 250px;
}
#home-attorney-cell-1 h2 span.two::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	border-bottom: 2px solid var(--primary);
	margin-left: -100%;
	width: 100%;
	margin-right: 20px;
}
#home-attorney-cell-1 p {
	color: #fff;
}
#home-attorney-cell-1 .tmf-button {
	margin-top: 25px;
}

/* --- cell 2 --- */
#home-attorney-cell-2 .inner {
	position: relative;
	bottom: 0px;
}
#home-attorney-cell-2 img {
	display: block;
	margin: 0 0 0 auto;
}

@media screen and (max-width: 1300px) {
	#home-attorney-cell-1 h2 span.two {
		padding-left: 200px;
	}
}

@media screen and (max-width: 1250px) {
	#home-attorney-wrapper {
		padding: 30px 0;
	}
	#home-attorney-cell-1 {
		min-width: 550px;
	}
	#home-attorney-cell-1 .tmf-button {
		margin-top: 10px;
	}
	#home-attorney-cell-2 .inner {
		bottom: -32px;
	}
	#home-attorney-cell-2 img {
		width: 100%;
		height: auto;
	}
}

@media screen and (max-width: 1050px) {
	#home-attorney-wrapper {
		background: url('../images/mobile_dark_bg_3x.jpg') no-repeat center/cover;
	}
	#home-attorney-wrapper::after {
		display: none;
	}
	#home-attorney-cell-1 {
		min-width: 100%;
	}
	#home-attorney-cell-1 h2 span.two::before {
		border-bottom: 2px solid var(--secondary);
	}
	#home-attorney-cell-1 h2 span.two {
		padding-left: 250px;
	}
	#home-attorney-cell-2 img {
		margin: 0 auto;
		width: 541px;
		height: 586px;
	}
}
@media screen and (max-width: 750px) {
	#home-attorney-cell-2 img {
		width: 100%;
		height: auto;
	}
}

@media screen and (max-width: 650px) {
	#home-attorney-cell-1 h2 span.two {
		padding-left: 200px;
	}
}

@media screen and (max-width: 600px) {
	#home-attorney-cell-1 h2 span.two {
		padding-left: 150px;
	}
}

@media screen and (max-width: 530px) {
	#home-attorney-cell-1 h2 span.two {
		padding-left: 100px;
	}
}

@media screen and (max-width: 500px) {
	#home-attorney-cell-1 h2 span.two {
		padding-left: 60px;
	}
}

@media screen and (max-width: 425px) {
	#home-attorney-cell-1 h2 span.two {
		padding-left: 30px;
	}
}

/* #endregion Home Attorney Section */

/* -------------------------
* #region Testimonials Section
* ------------------------- */
#testimonials-wrapper {
	background: url('../images/home_marble_d_bg_3x.jpg') no-repeat center/cover;
	padding: 100px 0;
	position: relative;
}

/* --- cell 1 --- */
#testimonials fieldset {
	border: 2px solid var(--accent);
	max-width: 90%;
	margin: 0 auto;
	min-height: 650px;
}
#testimonials fieldset legend {
	text-align: center;
	padding: 0 20px;
}
#testimonials fieldset legend h2 {
	font-style: italic;
}
#testimonials fieldset legend h2 span {
	font-style: normal;
	text-transform: uppercase;
	font-size: 30px;
	font-family: var(--body-font);
	font-weight: 300;
}
#testimonials fieldset legend h2 br {
	display: none;
}
#testimonials .testimonials-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 60px auto;
	position: absolute;
	left: 0;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none; /* Prevent text selection */
	-webkit-user-select: none; /* For older webkit browsers */
}
#testimonials .testimonial-item {
	max-width: 100%;
	margin: 0;
	border-bottom: none;
	text-align: center;
	background: #fff;
	padding: 45px 55px 75px;
	width: 33.33%;
	height: 382px;
	position: relative;
	-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
	-ms-flex-item-align: end;
	align-self: flex-end;
}
#testimonials .testimonial-item:nth-child(2) {
	margin-bottom: 75px;
	margin-inline: -45px;
	position: relative;
	z-index: 1;
	-ms-flex-item-align: start;
	align-self: start;
}
#testimonials .testimonial-item::after {
	content: '';
	display: block;
	background: url('../images/home_testimonial_card_footer_3x.jpg') no-repeat center/cover;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 55px;
}
#testimonials .testimonial-item .excerpt {
	font-family: var(--heading-font);
	font-style: italic;
	font-size: 18px;
}
#testimonials .testimonial-item .testimonial-desc {
	color: var(--accent);
	font-family: var(--heading-font);
	font-weight: 600;
	font-style: italic;
	font-size: 18px;
	text-align: center;
	max-width: 90%;
	margin: 25px auto 0;
}
#testimonials .dot-pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 15px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	padding: 0 30px;
	background: #e4e4e4;
	position: absolute;
	bottom: -7px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
#testimonials .dot-pagination .dot {
	background: transparent;
	border: 2px solid #9f9f9f;
	border-radius: 50%;
	height: 15px;
	width: 15px;
}
#testimonials .dot-pagination .dot:hover {
	cursor: pointer;
}
#testimonials .dot-pagination .dot.active {
	background: var(--accent);
	border: 2px solid var(--accent);
}

@media screen and (max-width: 1200px) {
	#testimonials .testimonial-item {
		width: 50%;
	}
	#testimonials .testimonial-item:nth-child(2) {
		margin: 0 0 0 25px;
	}
	#testimonials fieldset {
		min-height: 600px;
	}
}

@media screen and (max-width: 950px) {
	#testimonials-wrapper {
		padding: 50px 0 60px;
	}
	#testimonials .testimonial-item {
		width: 100%;
	}
	#testimonials fieldset {
		min-height: 550px;
	}
	#testimonials .testimonials-list {
		margin: 50px auto;
	}
	#testimonials fieldset legend h2 span {
		font-size: 24px;
	}
	#testimonials fieldset legend h2 {
		line-height: 1.2;
	}
}

@media screen and (max-width: 600px) {
	#testimonials fieldset legend h2 br {
		display: block;
	}
	#testimonials .testimonials-list {
		margin: 35px auto 50px;
	}
}

/* #endregion Testimonials Section */

/* -------------------------
* #region Why Us Section
* ------------------------- */
#home-why-us-wrapper {
	background: url('../images/home_why_choose_bg_3x.jpg') no-repeat bottom/cover;
	padding: 150px 0 200px;
	position: relative;
}
/* --- cell 1 --- */
#home-why-us-cell-1 h2 {
	color: var(--accent);
	text-transform: uppercase;
	font-family: var(--body-font);
	font-size: 30px;
	font-weight: 300;
	line-height: 1.3;
}
#home-why-us-cell-1 h2 span {
	text-transform: none;
	font-family: var(--heading-font);
	font-size: 42px;
	font-weight: 300;
	font-style: italic;
}
#home-why-us-cell-1 p {
	color: #fff;
}

/* --- cell 2 --- */
#home-why-us-cell-2 {
	color: #fff;
}
#home-why-us-cell-2 .inner {
	position: static;
}
#home-why-us-cell-2 .inner .tmf-module-area {
	background: #000;
	border: 2px solid var(--accent);
	border-radius: 5px;
	padding: 70px 50px;
	position: absolute;
	bottom: -235px;
	z-index: 1;
}
#home-why-us-cell-2 ul {
	padding-left: 0;
}
#home-why-us-cell-2 ul li {
	margin-bottom: 35px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#home-why-us-cell-2 ul li:last-child {
	margin-bottom: 0;
}
#home-why-us-cell-2 ul li .list-icon {
	width: 74px;
	height: 74px;
	background: url('../images/leroux_icon_sprite_3x.png') no-repeat;
	background-size: 510px;
	background-position: -87px 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
#home-why-us-cell-2 ul li::before {
	display: none;
}

@media screen and (max-width: 1050px) {
	#home-why-us-wrapper {
		padding: 50px 0 150px;
	}
	#home-why-us-cell-2 .inner .tmf-module-area {
		padding: 70px 50px;
		position: static;
	}
	#home-why-us-cell-2 {
		padding-top: 50px;
	}
}

@media screen and (max-width: 600px) {
	#home-why-us-cell-2 ul li .list-icon {
		width: 54px;
		height: 54px;
		background-size: 380px;
		background-position: -65px 0;
	}
	#home-why-us-cell-2 .inner .tmf-module-area {
		padding: 30px 30px;
		position: static;
	}
}

/* #endregion Why Us Section */

/* -------------------------
* #region Notable Cases Section
* ------------------------- */
#notable-cases-wrapper {
	background: url('../images/home_marble_c_bg_3x.jpg') no-repeat center/cover;
	padding: 100px 0;
	position: relative;
}
/* --- cell 1 --- */
#notable-cases h2 {
	color: #000;
	font-style: italic;
	font-size: 42px;
	overflow: hidden;
	text-align: center;
}
#notable-cases h2 span {
	font-family: var(--body-font);
	font-style: normal;
	font-weight: 300;
	font-size: 30px;
	text-transform: uppercase;
}
#notable-cases h2::before,
#notable-cases h2::after {
	content: '';
	display: inline-block;
	border-top: 2px solid var(--accent);
	vertical-align: middle;
}
#notable-cases h2::before {
	margin-left: -100%;
	width: 100%;
	margin-right: 20px;
}
#notable-cases h2::after {
	margin-right: -100%;
	width: 100%;
	margin-left: 20px;
}

/* posts */
#notable-cases-cell-1 .tmf-post {
	background: #3e3e3e;
	width: 360px !important;
	border-radius: 5px;
	color: #fff;
	text-align: center;
	padding: 50px 35px;
	margin-bottom: 0;
}
#notable-cases-cell-1 .tmf-post .thumbnail {
	position: relative;
	margin-bottom: 50px;
}
#notable-cases-cell-1 .tmf-post .thumbnail img {
	display: block;
	margin: 0 auto;
	width: 200px;
	height: auto;
	border: 2px solid var(--accent);
	border-radius: 5px;
	position: absolute;
	top: -110px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
#notable-cases-cell-1 .tmf-post .title {
	font-size: 18px;
}
#notable-cases-cell-1 .tmf-post .county {
	font-size: 14px;
}
#notable-cases-cell-1 .tmf-post .description {
	margin: 25px 0;
}
#notable-cases-cell-1 .tmf-post .initial-offer .label {
	display: inline-block;
	margin-right: 10px;
}
#notable-cases-cell-1 .tmf-post .initial-offer .value {
	display: inline-block;
}
#notable-cases-cell-1 .tmf-post .final-judgement .label {
	display: inline-block;
	margin-right: 10px;
}
#notable-cases-cell-1 .tmf-post .final-judgement .value {
	color: var(--accent);
	display: inline-block;
}
#notable-cases-cell-1 .tmf-post .tmf-button {
	margin-top: 25px;
}

@media screen and (max-width: 950px) {
	#notable-cases-wrapper {
		padding: 50px 0;
	}
}
/* #endregion Notable Cases Section */

/* #endregion Homepage Sections*/

/* ======================================== *
      #region Single Practice Areas Pages
 * ======================================== */

/* ------------------------------ *
    #region Int billboard 
 * ------------------------------- */
#int-billboard-wrapper {
	overflow: hidden;
}
#int-billboard-container {
	max-width: 100% !important;
}
#int-billboard .int-billboard-img {
	display: block;
	width: 100%;
	height: auto;
	min-height: 250px;
	max-height: 500px;
	-o-object-fit: cover;
	object-fit: cover;
}
#int-billboard-cell-1,
#int-billboard-cell-2 {
	vertical-align: middle;
}
#int-billboard-cell-1 .inner,
#int-billboard-cell-2 .inner {
	padding: 0;
}

/* --- cell 1 --- */
#int-billboard .int-billboard-content {
	position: absolute;
	max-width: 90%;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 0;
}
#int-billboard .int-billboard-title {
	position: relative;
	width: 50%;
	background: none;
	padding: 0;
}
#int-billboard .int-billboard-title::before,
#int-billboard .int-billboard-title::after {
	display: none;
}
#int-billboard h1#page-title {
	display: inline-block;
	margin-bottom: 0;
	padding: 12px 25px;
}
#int-billboard .mobile-view {
	display: none;
}

@media screen and (min-width: 1750px) {
	#int-billboard .int-billboard-content {
		max-width: 1600px;
	}
}

@media screen and (max-width: 1200px) {
	#int-billboard .int-billboard-title {
		width: 50%;
	}
}

@media screen and (max-width: 1050px) {
	#int-billboard .int-billboard-content {
		background: var(--primary);
		position: relative;
		left: inherit;
		right: inherit;
		top: inherit;
		-webkit-transform: inherit;
		-ms-transform: inherit;
		transform: inherit;
		padding: 35px 25px;
		max-width: 100%;
	}
	#int-billboard .int-billboard-title {
		width: 90%;
		margin: 0 auto;
	}
	#int-billboard h1#page-title {
		border: none;
		display: block;
		padding-bottom: 0;
		text-align: left;
		padding: 0;
	}
	#int-billboard .mobile-view {
		display: block;
	}
}

@media screen and (max-width: 550px) {
	#int-billboard .int-billboard-title {
		width: 100%;
	}
}
/* #endregion Int-billboard */
/* #endregion Single Practice Areas Pages */

/* ======================================== *
      #region Single Attorney Page CSS
 * ======================================== */
#attorney-bio-wrapper {
	background: url('../images/bio_page_info_bg_3x.jpg') no-repeat center/cover;
	height: 350px;
}
#attorney-bio-container {
	max-width: 90%;
}
#attorney-bio-cell-1,
#attorney-bio-cell-2 {
	vertical-align: middle;
}

/* ------ cell 1 ------ */
#attorney-bio-cell-1 {
	vertical-align: top;
}
#attorney-bio-cell-1 .inner {
	min-height: 350px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.attorney-bio-info .title-section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	gap: 25px;
	margin-bottom: 15px;
}
.attorney-bio-info h1#page-title {
	margin-bottom: 0;
	font-style: normal;
	font-family: var(--heading-font);
	min-width: -webkit-fit-content;
	min-width: -moz-fit-content;
	min-width: fit-content;
}
.attorney-bio-info .attorney-titles {
	border-left: 2px solid var(--accent);
	padding-left: 25px;
}
.attorney-bio-info .attorney-titles a {
	color: #fff;
	font-size: 24px;
	font-weight: 300;
	font-family: var(--body-font);
}
.attorney-bio-info .attorney-contact-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.attorney-bio-info .contact-information a,
.attorney-bio-info .icon-container a,
.attorney-bio-info .speaking a {
	color: #fff;
	font-weight: 400;
	font-size: 18px;
}
.attorney-bio-info .phone,
.attorney-bio-info .vcard,
.attorney-bio-info .resume,
.attorney-bio-info .fax,
.attorney-bio-info .email {
	display: inline-block;
	padding-top: 5px;
	line-height: normal;
	margin-right: 10px;
	padding-right: 10px;
	vertical-align: middle;
}
.attorney-bio-info .label {
	font-size: 0;
}
.attorney-bio-info .vcard .value {
	background: transparent;
	height: auto;
	width: auto;
	margin-right: 0;
}
.attorney-bio-info .vcard::before,
.attorney-bio-info .resume::before,
.attorney-bio-info .phone-1::before,
.attorney-bio-info .phone-2::before,
.attorney-bio-info .fax::before,
.attorney-bio-info .email::before,
.attorney-bio-info .speaking::before {
	color: var(--accent);
	font-size: 18px;
	font-family: var(--font-awesome);
	font-weight: 300;
	display: inline-block;
	vertical-align: middle;
}
.attorney-bio-info .phone-1::before,
.attorney-bio-info .phone-2::before {
	content: '\f879';
	margin-right: 5px;
	-webkit-transform: rotate(10deg);
	-ms-transform: rotate(10deg);
	transform: rotate(10deg);
}
.attorney-bio-info .fax::before {
	content: '\f1ac';
	margin-right: 5px;
}
.attorney-bio-info .email::before {
	content: '\f0e0';
	margin-right: 5px;
}
.attorney-bio-info .vcard::before {
	content: '\f2bb';
}

/* ------ cell 2 ------ */
#attorney-bio-cell-2 {
	vertical-align: top;
}
#attorney-bio-cell-2 img {
	display: block;
	margin-left: auto;
	margin-top: 50px;
	z-index: 1;
	position: relative;
}

@media screen and (max-width: 1300px) {
	.attorney-bio-info h1#page-title {
		font-size: 45px;
	}
	.attorney-bio-info .attorney-titles a {
		font-size: 22px;
	}
	.attorney-bio-info .title-section {
		gap: 20px;
	}
	.attorney-bio-info .attorney-titles {
		padding-left: 20px;
	}
}

@media screen and (max-width: 1150px) {
	.attorney-contact-info {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: start;
	}
	.attorney-bio-info .contact-information,
	.attorney-bio-info .icon-container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 10px;
	}
	#attorney-bio-wrapper {
		height: auto;
	}
	#attorney-bio-cell-2 .inner {
		min-height: 397px;
	}
	.attorney-bio-info .title-section {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 0;
		margin-bottom: 15px;
		flex-direction: column;
	}
	.attorney-bio-info h1#page-title {
		border: 0;
		padding: 0;
	}
	#attorney-bio-cell-2 img {
		margin-top: 0;
	}
	#attorney-bio-cell-1 .inner {
		min-height: 400px;
	}
}

@media screen and (max-width: 950px) {
	#attorney-bio-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	#attorney-bio-cell-2 img {
		margin: 0 auto;
		max-width: 100%;
		height: auto;
	}
	#attorney-bio-cell-1 .inner {
		min-height: auto;
	}
	.attorney-bio-info .attorney-page-title .title-section {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		text-align: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.attorney-bio-info {
		width: 100%;
		display: block;
		padding: 25px 0 35px;
	}
	.attorney-bio-info .contact-information {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 10px;
	}
	.attorney-bio-info .phone,
	.attorney-bio-info .fax,
	.attorney-bio-info .email {
		margin-right: 0;
		padding-right: 0;
	}
	.attorney-bio-info img.primary {
		width: 100%;
		display: block;
		margin: 0 auto;
	}
	.attorney-bio-info .attorney-titles {
		border: 0;
		padding: 0;
	}
	.attorney-bio-info .attorney-contact-info {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

/* #endregion Single Attorney Page CSS */

/* ======================================== *
      #region Single Notable Case
 * ======================================== */
.single-representative-case #body #body-cell-2 > .inner {
	padding: 100px 25px 35px;
}
.single-representative-case .back-link {
	margin-bottom: 35px;
}
.single-representative-case .back-link a {
	font-weight: 700;
}
.single-representative-case .county {
	font-size: 20px;
	padding-left: 5px;
	font-weight: 400;
	margin-bottom: 25px;
}
.single-representative-case .case-details {
	margin-bottom: 25px;
}
.single-representative-case .case-details .initial-offer .label {
	display: inline-block;
	margin-right: 10px;
	font-weight: 700;
}
.single-representative-case .case-details .initial-offer .value {
	display: inline-block;
	font-weight: 600;
}
.single-representative-case .case-details .final-judgement .label {
	display: inline-block;
	margin-right: 10px;
	font-weight: 700;
}
.single-representative-case .case-details .final-judgement .value {
	display: inline-block;
	color: var(--accent);
	font-weight: 600;
}

/* Adds additional scaffolding breakpoint Below 1250px */
@media screen and (max-width: 1250px) {
	.row.collapse-1250 {
		display: block;
	}
	.row.collapse-1250 > div {
		display: block;
		width: 100%;
		padding-top: 25px;
	}
	.row.collapse-1250 > div > .inner {
		display: block;
		width: 100%;
		min-width: 0 !important;
		max-width: none;
	}
	.row > div > .inner .row.collapse-1250 > div > .inner {
		padding: 0;
	}

	.single-representative-case #body-cell-2 {
		max-width: 100%;
		min-width: 100%;
		margin-left: unset;
		padding-top: 0;
	}
	.single-representative-case #body #body-cell-2 > .inner {
		padding: 35px 25px 35px;
	}
}

@media screen and (max-width: 500px) {
	.single-representative-case #body #body-cell-2 > .inner {
		padding: 35px 25px 0;
	}
}

/* #endregion Single Notable Case */

/* ======================================== *
      #region Single Results page
 * ======================================== */
.results-table {
	overflow-x: auto;
}
.results-table table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 25px;
}
.results-table th,
.results-table td {
	padding: 10px;
	text-align: left;
}
.results-table td {
	border-bottom: 1px solid #ddd;
}
.results-table th {
	background-color: #f2f2f2;
	font-weight: 700;
}
.table-notes p {
	font-weight: 700;
}
.table-notes .tmf-button {
	color: var(--primary-dark);
	margin-top: 25px;
}
.intro-text {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 50px;
}

@media screen and (max-width: 800px) {
	.results-table table,
	.results-table thead,
	.results-table tbody,
	.results-table th,
	.results-table td,
	.results-table tr {
		display: block;
	}
	.results-table tr {
		margin-bottom: 15px;
		border: 1px solid #f1f1f1;
	}
	.results-table thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	.results-table td {
		border: none;
		border-bottom: 0;
		position: relative;
		padding-left: 40%;
		padding-right: 25px;
	}
	.results-table td::before {
		position: absolute;
		top: 50%;
		left: 10px;
		width: 40%;
		padding-right: 10px;
		white-space: nowrap;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		font-weight: 700;
	}
	.results-table td:nth-of-type(1)::before {
		content: 'Client';
	}
	.results-table td:nth-of-type(2)::before {
		content: 'Property Type';
	}
	.results-table td:nth-of-type(3)::before {
		content: 'County';
	}
	.results-table td:nth-of-type(4)::before {
		content: 'Offer';
	}
	.results-table td:nth-of-type(5)::before {
		content: 'Final Recovery';
	}
	.results-table td:nth-of-type(6)::before {
		content: '% Increase';
	}
	.results-table td.accordion-header::after {
		content: '\f0d8';
		font-family: var(--font-awesome);
		font-size: 22px;
		font-weight: 300;
		color: var(--accent);
		display: inline-block;
		position: absolute;
		right: 10px;
	}
	.results-table td.accordion-header.open::after {
		-webkit-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	.results-table .accordion-header {
		background: #f1f1f1;
	}
	.results-table .accordion-content {
		background: transparent;
	}
}
/* #endregion Single Results page */

/* ======================================== *
      #region Int Title Section
 * ======================================== */
#int-title-wrapper {
	background: url('../images/int-titlebar_3x.png') no-repeat center center/cover;
}
#int-title-wrapper .title-arrow {
	display: none;
}
#int-title-container {
	max-width: 90%;
}
#int-title {
	padding: 50px 25px;
}
#int-title h1#page-title {
	margin-bottom: 0;
}

@media screen and (max-width: 500px) {
	#int-title {
		padding: 25px 0;
	}
}
/* #endregion Int Title Section */

/* ======================================== *
      #region All Archives
 * ======================================== */
.blog .read-more-button {
	color: #000;
}
.archive .read-more-button {
	color: #000;
}
.category-active-projects .tmf-post .excerpt a.read-more {
	display: none;
}
/* -------------------------------------- *
      #region Blog & News archive
 * -------------------------------------- */
.tmf-post.news.medium .excerpt img.thumbnail.mobile,
.tmf-post.post.medium .excerpt img.thumbnail.mobile {
	display: none;
}
.social-buttons .facebook-like {
	width: 75px;
}
.social-buttons .facebook-share {
	width: 86px;
}
.post-type-archive-news .social-buttons,
.blog .social-buttons {
	display: none;
}
.post-type-archive-news .tmf-post.news .post-information-container,
.blog .tmf-post.post .post-information-container {
	margin-top: 10px;
}
.post-type-archive-news .tmf-post.post .social-buttons,
.blog .tmf-post.post .social-buttons {
	margin: 0;
}

@media screen and (max-width: 750px) {
	.tmf-post.news.medium .excerpt img.thumbnail.mobile,
	.tmf-post.post.medium .excerpt img.thumbnail.mobile {
		display: block;
	}
	.tmf-post.news.medium img.thumbnail.not-mobile,
	.tmf-post.post.medium img.thumbnail.not-mobile {
		display: none;
	}
}
/* #endregion Blog archive */

/* ---------------------------------------- *
#region Notable Cases Archive
* ---------------------------------------- */
.post-type-archive-representative-case .title {
	font-size: 38px;
}
.post-type-archive-representative-case .county {
	font-weight: 600;
	font-size: 18px;
}
.post-type-archive-representative-case .case-info {
	font-size: 14px;
}
.post-type-archive-representative-case .initial-offer .label {
	display: inline-block;
	margin-right: 5px;
	font-weight: 600;
}
.post-type-archive-representative-case .initial-offer .value {
	display: inline-block;
}
.post-type-archive-representative-case .final-judgement .label {
	display: inline-block;
	margin-right: 5px;
	font-weight: 600;
}
.post-type-archive-representative-case .final-judgement .value {
	display: inline-block;
}
.post-type-archive-representative-case .tmf-post .excerpt a.read-more {
	font-weight: 700;
}
.post-type-archive-representative-case .thumbnail img {
	border: 2px solid var(--accent);
	border-radius: 5px;
}

@media screen and (max-width: 500px) {
	.post-type-archive-representative-case .tmf-post.representative-case.medium img.thumbnail {
		max-width: 100%;
		float: none;
		width: 100%;
	}
	.post-type-archive-representative-case .tmf-post.representative-case.medium .title {
		margin-bottom: 10px;
	}
}

/* #endregion Notable Cases Archive */

/* ---------------------------------------- *
      #region Testimonial Archive
 * ---------------------------------------- */
.tmf-post.testimonial .testimonial-description {
	float: none;
	font-size: 14px;
	margin-top: 10px;
	font-style: normal;
	font-weight: 700;
}
.post-type-archive-testimonial .tmf-post .taxonomy-container {
	margin-top: 0;
}
.post-type-archive-testimonial .tmf-post {
	border-bottom: 1px solid rgba(201, 143, 58, 0.4);
	padding-bottom: 35px;
	margin-bottom: 35px;
}
.post-type-archive-testimonial .tmf-post .excerpt {
	font-style: italic;
}
.post-type-archive-testimonial .tmf-archive-top {
	/* margin-bottom: 80px; */
}
.post-type-archive-testimonial .tmf-archive-top {
	font-size: 22px;
}

/* #endregion Testimonial Archive */

/* -------------------------------------- *
      #region Practice Area archive
 * -------------------------------------- */
.post-type-archive-practice-area p {
	line-height: 1.7em;
	margin-bottom: 15px;
}
.post-type-archive-practice-area #body-cell-1 .tmf-post.practice-area {
	padding-bottom: 45px;
	margin-bottom: 45px;
}
.post-type-archive-practice-area #body-cell-1 .tmf-post.practice-area.last-post {
	margin-bottom: 0;
	padding-bottom: 25px;
}
.post-type-archive-practice-area .tmf-post.medium img.thumbnail.mobile {
	display: none;
}
.post-type-archive-practice-area .tmf-post .taxonomy-container {
	margin-top: 0;
}

@media screen and (max-width: 450px) {
	.post-type-archive-practice-area .tmf-post.medium img.thumbnail.not-mobile {
		display: none;
	}
	.post-type-archive-practice-area .tmf-post.medium img.thumbnail.mobile {
		display: block;
		float: unset;
		max-width: 100%;
	}
}
/* #endregion Practice Area archive */

/* -------------------------------------- *
      #region Location archive
 * -------------------------------------- */
.post-type-archive-location #body #location-cell-1 .inner {
	padding: 0;
}
.post-type-archive-location #body #location-cell-2 .inner {
	padding: 0;
}
.post-type-archive-location .tmf-post.location.medium h2 {
	font-weight: 400;
	margin-top: 0;
}
.post-type-archive-location .gm-style .place-card {
	display: none !important;
}

/* #endregion Location archive*/

/* --------------------------------------- *
      #region Staff archive
 * --------------------------------------- */
.post-type-archive-staff .tmf-post.staff.medium .read-more-button.top {
	float: right;
	margin-bottom: 10px;
	margin-left: 25px;
	display: none !important;
}
.post-type-archive-staff .tmf-post.staff.medium .read-more-button.bottom {
	display: block !important;
	float: left;
}
.post-type-archive-staff .tmf-post.staff {
	padding-bottom: 45px;
	margin-bottom: 45px;
}
.post-type-archive-staff .contact-information a {
	color: #333;
}
.post-type-archive-staff .tmf-post.staff.medium h2::after {
	display: none;
}
.post-type-archive-staff .tmf-post.staff .tmf-taxonomy-list.attorney-titles {
	font-weight: 500;
}

/* #endregion Staff archive*/

/* --------------------------------------- *
      #region Attorney archive
 * --------------------------------------- */
.post-type-archive-attorney .tmf-post.attorney.medium .read-more-button.top {
	float: right;
	margin-bottom: 10px;
	margin-left: 25px;
	display: none !important;
}
.post-type-archive-attorney .tmf-post.attorney.medium .read-more-button.bottom {
	display: block !important;
	float: left;
}
.post-type-archive-attorney .tmf-post.attorney {
	padding-bottom: 45px;
	margin-bottom: 45px;
}
.post-type-archive-attorney .contact-information a {
	color: #333;
}
.post-type-archive-attorney .tmf-post.attorney .tmf-taxonomy-list.attorney-titles {
	font-weight: 500;
}

/* #endregion Attorney archive*/

/* ---------------------------------------- *
      #region Attorney Archive: Category Attorney
 * ---------------------------------------- */
.term-attorneys .tmf-post.attorney.medium .read-more-button.top {
	float: right;
	margin-bottom: 10px;
	margin-left: 25px;
	display: none !important;
}
.term-attorneys .tmf-post.attorney.medium .read-more-button.bottom {
	display: block !important;
	float: left;
}
.term-attorneys .tmf-post.attorney {
	padding-bottom: 45px;
	margin-bottom: 45px;
}
.term-attorneys .contact-information a {
	color: #333;
}

/* #endregion Attorney Archive: Category Attorney*/

/* #endregion All Archives*/

/* ======================================== *
      #region Call to Action
 * ======================================== */
body #call-to-action {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: transparent !important;
	margin: 100px 0 60px;
	padding: 0;
}
body #call-to-action .row {
	display: table;
	width: 100%;
	position: relative;
}
body #call-to-action .col {
	display: table-cell;
	vertical-align: middle;
}
body #call-to-action .col:nth-child(1) {
	background: url('../images/int_cta_2_heading_bg_3x.jpg') no-repeat center/cover;
	padding: 35px !important;
	position: absolute;
	width: 35%;
	top: 40px;
	bottom: 40px;
	display: grid;
	place-content: center;
	left: 3%;
	min-width: 290px;
	z-index: 1;
}
body #call-to-action .col:nth-child(2) {
	background: var(--secondary-light);
	width: 80%;
	margin: 0 0 0 auto;
	padding: 50px;
	text-align: left;
	padding-left: 23%;
	border-radius: 5px;
}
body #call-to-action .col h3 {
	color: #000;
	text-align: center;
	margin: 0;
	font-weight: 400;
	font-size: 24px;
	line-height: 1.2em;
	font-family: var(--body-font);
}
body #call-to-action .col p {
	color: #323232;
	font-weight: 500;
	font-size: 16px;
}
body #call-to-action .col p a {
	color: var(--accent) !important;
}
body #call-to-action .col .tmf-button {
	color: #000 !important;
}

@media screen and (max-width: 1400px) {
	body #call-to-action .col:nth-child(2) {
		padding-left: 26%;
	}
}

@media screen and (max-width: 1320px) {
	body #call-to-action .col:nth-child(2) {
		padding-left: 33%;
	}
}

@media screen and (max-width: 800px), screen and (max-width: 1250px) and (min-width: 1050px) {
	body #call-to-action .row {
		display: block;
	}
	body #call-to-action .col {
		display: block;
		width: 100%;
	}
	body #call-to-action .col:nth-child(1) {
		position: static;
		width: 100%;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
	body #call-to-action .col:nth-child(2) {
		width: 100%;
		padding-left: 50px;
	}
}
/* #endregion Call to Action */

/* ======================================== *
      #region Aside
 * ======================================== */
aside {
	float: right;
	margin: 15px;
	padding: 15px;
	background: transparent;
	color: #000;
	font-family: var(--body-font);
	font-size: 20px;
	font-weight: 400;
	position: relative;
	border: 0;
	text-align: center;
}
.editor-content aside p {
	font-family: var(--body-font);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.3;
	color: #000;
}
@media screen and (max-width: 700px) {
	aside {
		float: none;
		width: 100%;
		margin: 25px 0px;
	}
}

/* #endregion Aside */

/* ======================================== *
      #region Callout
 * ======================================== */
#callout {
	position: relative;
	background: transparent;
	padding: 15px 35px 15px 65px;
	margin: 35px 0;
}
#callout::before {
	content: '';
	display: inline-block;
	background: url('../images/int_cta_1_circle_1x.png') no-repeat;
	background-size: contain;
	width: 144px;
	height: 142px;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: -1;
}
#callout h3,
#callout h4 {
	font-family: var(--body-font);
	font-weight: 400;
	font-size: 20px;
	margin: 0;
	line-height: 1.3;
}
#callout p {
	font-family: var(--body-font);
	font-weight: 400;
	font-size: 20px;
	line-height: 1.3;
}
#callout a {
	text-decoration: none;
	color: var(--accent);
	font-weight: 700;
}
#callout a:hover {
	text-decoration: underline;
}

/* #endregion Callout */

/* ======================================== *
      #region Callout Alt
 * ======================================== */
#callout-alt {
	background: var(--primary-light);
	padding: 35px;
	margin-bottom: 25px;
	color: #fff;
}
#callout-alt p {
	font-weight: 400;
	font-size: 18px;
}
#callout-alt ul {
	padding-left: 25px;
	margin-bottom: 0;
}
#callout-alt ul li {
	margin-bottom: 0;
}

/* #endregion  Callout Alt */

/* ======================================== *
      #region Blockquote
 * ======================================== */
blockquote {
	color: var(--accent);
	font-family: var(--body-font);
	font-size: 20px;
	font-weight: 700;
	font-style: italic;
	line-height: 1em;
	padding: 0 15px;
	margin: 0 35px 15px;
}
blockquote p {
	line-height: 1.3em;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	display: none;
}

/* #endregion Blockquote */

/* ======================================== *
      #region Modules
 * ======================================== */
.tmf-multi-module-area .tmf-module {
	margin-bottom: 35px;
}
.tmf-multi-module-area .tmf-module:last-child {
	margin-bottom: 0;
}

/* For More information Form - sidebar */
body .tmf-module-22 {
	background: url('../images/sidebar_cta_bg_3x.png') no-repeat center/cover;
	padding: 45px 35px;
	text-align: center;
	position: relative;
	border-radius: 5px;
}
body .tmf-module-22 h3 {
	font-family: var(--heading-font);
	font-size: 30px;
	font-weight: 200;
	color: #000;
	margin-bottom: 25px;
	line-height: 38px;
}
body .tmf-module-22 h3 span {
	font-weight: 400;
	font-style: italic;
}

@media screen and (max-width: 1050px) {
	body.home .tmf-module-22 {
		position: relative;
	}
}

@media screen and (max-width: 700px) {
	body .tmf-module-22 {
		min-width: 100%;
	}
}
/* End For More information Form - sidebar */

/* consultation - sidebar */
.tmf-module-265 {
	background: url('../images/sidebar_cta_bg_3x.png') no-repeat center/cover;
	margin-bottom: 35px;
	padding: 45px 35px;
	text-align: center;
	border-radius: 5px;
}
.tmf-module-265 h3 {
	color: var(--primary);
	font-weight: 200;
	margin-bottom: 15px;
}
.tmf-module-265 h3 span {
	font-style: italic;
	text-transform: uppercase;
	font-weight: 400;
}
.tmf-module-265 .tmf-button {
	border-color: #000;
	color: #000;
	margin-top: 15px;
	font-weight: 600;
}

/* End consultation - sidebar */

/* Notable Cases- sidebar */
.tmf-module-267 {
	background: url('../images/sidebar_notable_case_bg_3x.png') no-repeat center/cover;
	margin-bottom: 35px;
	padding: 45px 35px;
	text-align: center;
	color: #fff;
	border-radius: 5px;
}
.tmf-module-267 h3 {
	color: #fff;
	font-weight: 200;
	margin-bottom: 15px;
}
.tmf-module-267 h3 span {
	font-style: italic;
	font-weight: 400;
}
.tmf-module-267 .title {
	font-size: 18px;
	font-weight: 400;
}
.tmf-module-267 .county {
	font-size: 14px;
	color: var(--secondary-light);
	margin-bottom: 15px;
}
.tmf-module-267 .initial-offer .label {
	display: inline-block;
	margin-right: 10px;
}
.tmf-module-267 .initial-offer .value {
	display: inline-block;
}
.tmf-module-267 .final-judgement .label {
	display: inline-block;
	margin-right: 10px;
}
.tmf-module-267 .final-judgement .value {
	display: inline-block;
	color: var(--accent);
}

.tmf-module-267 .bx-wrapper .bx-pager.bx-default-pager span {
	border: 2px solid var(--secondary-light);
}
/* End Notable Cases- sidebar */

/* Florida Map - sidebar */
.tmf-module-269 {
	background: var(--secondary-light);
	margin-bottom: 35px;
	padding: 45px 35px;
	border-radius: 5px;
	text-align: center;
}
.tmf-module-269 h3 {
	margin-bottom: 25px;
}
.tmf-module-269 h3 span {
	font-style: italic;
}
.tmf-module-269 img.florida-img {
	margin: 0 auto 0;
}
/* End Florida Map - sidebar */

/* #endregion Modules */

/* ======================================== *
      #region Footer Section
 * ======================================== */
#footer-wrapper {
	background: url('../images/footer_bg_3x.png') no-repeat top/cover;
	padding: 100px 0 35px;
	color: #fff;
}
.home #footer-wrapper {
	background: url('../images/footer_bg_3x.png') no-repeat top/cover, url('../images/home_marble_c_bg_3x.jpg') no-repeat center/cover;
}
#footer-wrapper::after {
	content: '';
	background: var(--accent);
	height: 2px;
	width: 64%;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
}
#footer-container {
	max-width: 90%;
}

/* --- Cell 1 --- */
#footer-cell-1 {
	text-align: center;
}
#footer-cell-1 .top-row {
	margin: 0 0 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: end;
	gap: 50px;
}
#footer-cell-1 .top-row .f-logo {
	width: 200px;
}
#footer-cell-1 .top-row .links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 50px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
}
#footer-cell-1 .top-row .btn-wrap:first-of-type,
#footer-cell-1 .top-row a.email,
#footer-cell-1 .top-row .phone-1 {
	border-right: 2px solid #323232;
	padding-right: 50px;
	height: 34.5px;
	display: block;
}
#footer-cell-1 .top-row a.email,
#footer-cell-1 .top-row .phone-1 a {
	color: #fff;
	font-size: 16px;
	text-decoration: none;
}
#footer-cell-1 .top-row a.email:hover,
#footer-cell-1 .top-row .phone-1 a:hover {
	text-decoration: underline;
}
#footer-cell-1 .top-row a.email::before,
#footer-cell-1 .top-row .phone-1 a::before {
	color: var(--accent);
	display: inline-block;
	vertical-align: middle;
	font-family: var(--font-awesome);
	font-size: 18px;
	font-weight: 300;
	margin-right: 5px;
}
#footer-cell-1 .top-row a.email::before {
	content: '\f0e0';
	margin-right: 8px;
}
#footer-cell-1 .top-row .phone-1 a::before {
	content: '\f095' !important;
	-webkit-transform: rotate(10deg);
	-ms-transform: rotate(10deg);
	transform: rotate(10deg);
}
#footer-cell-1 .bottom-row .tmf-post-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 45px;
}
#footer-cell-1 .bottom-row .tmf-post {
	padding-bottom: 0;
	margin-bottom: 0;
	border: 1px solid #323232;
	padding: 25px 50px;
	text-align: left;
	border-radius: 5px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}
#footer-cell-1 h3 {
	color: var(--accent);
	font-family: var(--body-font);
	font-size: 30px;
	font-weight: 300;
	line-height: 1.1em;
	margin: 0 0 20px;
	text-transform: uppercase;
}
#footer-cell-1 .business-info .contact-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
}
#footer-cell-1 .business-info a {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
}
#footer-cell-1 .address {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 5px;
}
#footer-cell-1 .business-info .address,
#footer-cell-1 .business-info .fax .value,
#footer-cell-1 .business-info .phone-1 .value a,
#footer-cell-1 .business-info .phone-2 .value a,
#footer-cell-1 .business-info .email .value {
	color: #fff;
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 20px;
}
#footer-cell-1 .address::before,
#footer-cell-1 .tmf-post.small.location .streetAddress::before,
#footer-cell-1 .tmf-post.small.location .fax::before,
#footer-cell-1 .tmf-post.small.location .phone-1::before,
#footer-cell-1 .tmf-post.small.location .phone-2::before,
#footer-cell-1 .tmf-post.small.location .email::before {
	color: var(--accent);
	display: inline-block;
	vertical-align: top;
	font-family: var(--font-awesome);
	font-size: 18px;
	font-weight: 300;
	margin-right: 5px;
}
#footer-cell-1 .address::before {
	content: '\f3c5';
}
#footer-cell-1 .phone-2::before {
	content: '\f3cd';
	-webkit-transform: unset;
	-ms-transform: unset;
	transform: unset;
}
#footer-cell-1 .tmf-post.small.location .streetAddress {
	line-height: 22px;
	-ms-flex-item-align: center;
	align-self: center;
}
#footer-cell-1 .tmf-post.small.location .streetAddress::before {
	display: none;
}
#footer-cell-1 .payments a {
	position: relative;
	font-weight: 500;
}
#footer-cell-1 .payments a::before {
	content: '\f155';
	display: inline-block;
	vertical-align: middle;
	font-family: var(--font-awesome);
	font-size: 15px;
	font-weight: 700;
	color: #edeef1;
	margin-right: 5px;
	background: var(--accent);
	width: 22px;
	height: 22px;
	border-radius: 50%;
	line-height: 1.5em;
}

@media screen and (min-width: 3500px) {
	.home #footer-wrapper,
	#footer-wrapper {
		background-position: 0 -110px;
	}
}
@media screen and (min-width: 3000px) and (max-width: 3499px) {
	.home #footer-wrapper,
	#footer-wrapper {
		background-position: 0 -80px;
	}
}
@media screen and (min-width: 2300px) and (max-width: 2999px) {
	.home #footer-wrapper,
	#footer-wrapper {
		background-position: 0 -50px;
	}
}

@media screen and (max-width: 1400px) {
	#footer-cell-1 .tmf-post.small.location .streetAddress br {
		display: none;
	}
	#footer-cell-1 .bottom-row .tmf-post {
		padding: 25px 35px;
	}
	#footer-cell-1 .top-row .links {
		gap: 25px;
	}
	#footer-cell-1 .top-row .btn-wrap:first-of-type,
	#footer-cell-1 .top-row a.email,
	#footer-cell-1 .top-row .phone-1 {
		padding-right: 25px;
	}
}

@media screen and (max-width: 1285px) {
	#footer-cell-1 .bottom-row .tmf-post-list {
		gap: 25px;
	}
}

@media screen and (max-width: 1250px) {
	#footer-cell-1 h3 {
		font-size: 26px;
	}
}

@media screen and (max-width: 1215px) {
	#footer-wrapper {
		padding: 130px 0 35px;
	}
	#footer-cell-1 .top-row {
		display: inline-block;
		margin: 0 auto 80px;
	}
	#footer-cell-1 .top-row .f-logo {
		width: 100%;
	}
	#footer-cell-1 .top-row .links {
		margin-top: 35px;
	}
}

@media screen and (max-width: 1000px) {
	#footer-wrapper,
	.home #footer-wrapper {
		background: #000;
		padding: 45px 0 20px;
	}
	#footer-wrapper::after {
		display: none;
	}
	#footer-cell-1 .inner {
		padding: 0;
	}
	#footer-cell-1 .top-row .links {
		display: grid;
		grid-template-columns: 1fr 1fr;
		max-width: -webkit-fit-content;
		max-width: -moz-fit-content;
		max-width: fit-content;
	}
	#footer-cell-1 .top-row .btn-wrap:first-of-type,
	#footer-cell-1 .top-row a.email,
	#footer-cell-1 .top-row .phone-1 {
		padding-right: 0;
		border: 0;
	}
	#footer-cell-1 .bottom-row .tmf-post-list {
		display: block;
	}
	#footer-cell-1 .bottom-row .tmf-post {
		margin-bottom: 25px;
		text-align: center;
	}
	#footer-cell-1 .bottom-row .tmf-post.last-post {
		margin-bottom: 0;
	}
	#footer-cell-1 .business-info .contact-links {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	#footer-cell-1 .address {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media screen and (max-width: 750px) {
	#footer-cell-1 .business-info {
		display: block;
	}
	#footer-cell-1 .business-info .streetAddress .address-2 {
		display: block;
	}
	#footer-cell-1 .business-info .contact-links {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 0;
	}
	#footer-wrapper {
		padding: 50px 0 20px;
	}
}

@media screen and (max-width: 600px) {
	#footer-cell-1 .top-row .links {
		gap: 25px 15px;
	}
}

@media screen and (max-width: 500px) {
	#footer-cell-1 .top-row .links {
		grid-template-columns: 1fr;
		max-width: -webkit-fit-content;
		max-width: -moz-fit-content;
		max-width: fit-content;
		gap: 10px;
	}
	#footer-cell-1 .top-row .btn-wrap:first-of-type,
	#footer-cell-1 .top-row a.email,
	#footer-cell-1 .top-row .phone-1 {
		height: auto;
	}
	#footer-cell-1 .top-row .btn-wrap {
		margin-top: 10px;
	}
	#footer-cell-1 .top-row {
		margin: 0 auto 50px;
	}
}

/* #endregion Footer Section */

/* ======================================== *
      #region Copyright Section
 * ======================================== */
#copyright-wrapper {
	overflow: hidden;
}
#copyright-container {
	max-width: 100%;
	padding: 50px 25px 0;
}
#copyright {
	padding: 25px 0;
}
#copyright p {
	color: var(--secondary);
	font-size: 14px;
	font-weight: 400;
	margin: 0;
}
#copyright p a {
	color: var(--secondary);
	text-decoration: none;
	font-size: 14px;
}
#copyright a:hover {
	text-decoration: underline;
}
#copyright .divider {
	margin: 0 5px !important;
}

/* --- cell 1 --- */
#copyright #copyright-cell-1 {
	vertical-align: middle;
}
#copyright #copyright-cell-1 .inner {
	padding: 0;
}
#copyright #copyright-cell-1 br:first-of-type {
	display: none;
}

/* --- cell 2 --- */
#copyright #copyright-cell-2 {
	vertical-align: middle;
	text-align: right;
}
#copyright-cell-2 .inner {
	padding: 0;
}

@media screen and (min-width: 1750px) {
	#copyright-container {
		max-width: 1600px;
	}
}

@media screen and (max-width: 1050px) {
	#copyright-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	#copyright #copyright-cell-1,
	#copyright #copyright-cell-2 {
		text-align: center;
	}
	#copyright #copyright-cell-2 {
		padding-top: 5px;
	}
}

@media screen and (max-width: 775px) {
	#copyright {
		padding: 25px 0;
	}
}
@media screen and (max-width: 620px) {
	#copyright #copyright-cell-1 br:first-of-type {
		margin-bottom: 5px;
	}
	#copyright #copyright-cell-1 span.divider.one {
		display: none;
	}
	#copyright #copyright-cell-1 span.copyright {
		margin-bottom: 5px;
		display: block;
	}
}

/* #endregion Copyright Section */

/* ======================================== *
      #region Buttons
 * ======================================== */
.post-type-archive .tmf-post a.read-more {
	text-decoration: none;
	font-weight: 500;
}
.post-type-archive .tmf-post a.read-more:hover {
	text-decoration: underline;
}
.tmf-button,
input[type='submit'] {
	position: relative;
	display: inline-block;
	padding: 5px 25px;
	color: #fff;
	text-align: center;
	font-family: var(--body-font);
	font-size: 17px;
	font-weight: 500;
	line-height: normal;
	background: transparent;
	border: 2px solid var(--accent);
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none !important;
	-webkit-transition: all 0.15s ease-out;
	-o-transition: all 0.15s ease-out;
	transition: all 0.15s ease-out;
}
.tmf-button:hover,
input[type='submit']:hover {
	text-decoration: none;
	background: -o-linear-gradient(45deg, #e8b964, #d09843, #c98f3a);
	background: linear-gradient(45deg, #e8b964, #d09843, #c98f3a);
	color: #000;
}
.tmf-button:active,
.page-numbers:active,
input[type='submit']:active {
	text-decoration: none;
}
.gform_wrapper .tmf-button,
.gform_wrapper input[type='submit'] {
	border-color: #000;
	color: #000;
	margin: 20px auto 0;
	display: block;
	font-weight: 500;
}
.gform_wrapper .tmf-button:hover,
.gform_wrapper input[type='submit']:hover {
	border-color: var(--accent);
}
.page-navigation .tmf-button,
.page-navigation .page-numbers {
	background: var(--primary);
	color: #fff;
	border-radius: 5px;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	line-height: 31px;
	height: auto;
}
.page-navigation .page-numbers:hover,
.page-navigation .page-numbers:active {
	background: var(--accent);
	color: #000;
}
.page-navigation .last.tmf-button {
	vertical-align: top;
	-webkit-transform: unset;
	-ms-transform: unset;
	transform: unset;
	border: 0;
}
.page-navigation .last.tmf-button:active,
.page-navigation .last.tmf-button:hover {
	color: #000;
	background: var(--accent);
}
.page-navigation .last.tmf-button::before,
.page-navigation .last.tmf-button::after {
	display: none;
}
.page-numbers.current {
	background: var(--accent);
	color: #000;
}
.tmf-button.large {
	font-size: 1.1em;
	padding: 7px 25px;
}
.tmf-button.medium {
	font-size: 0.95em;
	padding: 7px 25px;
}
.tmf-button.small {
	font-size: 0.85em;
	padding: 3px 15px;
	margin-top: 15px;
}
.tmf-button.tiny {
	font-size: 0.75em;
	padding: 2px 7px;
}

/* #endregion Buttons */

/* ======================================== *
      #region Miscellaneous
 * ======================================== */
/* ----- Secondary nav ----- */
@media screen and (max-width: 500px) {
	#secondary-nav-wrapper {
		display: none;
	}
}

/* ----- Stars ----- */
.stars {
	color: var(--accent);
}

/* ----- lightbox ----- */
.tmf-video {
	width: 100%;
	position: relative;
	overflow: hidden;
	background: #000;
}

/* ----- Bx Slider ----- */
.bx-wrapper {
	position: relative;
	margin: 0 auto 40px !important;
	padding: 0;
}
.bx-viewport {
	max-width: 100% !important;
	left: 0 !important;
	overflow: visible !important;
}
/* bxslider controls*/
.bx-wrapper .bx-controls-direction span {
	position: absolute;
	top: 20%;
	outline: 0;
	width: 30px;
	height: 28px;
	font-size: 0;
	color: #c5c5c5;
	z-index: unset;
	cursor: pointer;
}
.bx-wrapper .bx-prev {
	left: -25px;
}
.bx-wrapper .bx-next {
	right: -25px;
}
.bx-wrapper .bx-prev::before,
.bx-wrapper .bx-next::before {
	display: inline-block;
	font-family: var(--font-awesome);
	font-size: 30px;
	font-weight: 600;
	color: var(--accent);
	-webkit-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.bx-wrapper .bx-prev::before {
	content: '\f060';
}
.bx-wrapper .bx-next::before {
	content: '\f061';
}
.bx-wrapper .bx-prev:hover::before {
	-webkit-transform: translateX(-5px);
	-ms-transform: translateX(-5px);
	transform: translateX(-5px);
}
.bx-wrapper .bx-next:hover::before {
	-webkit-transform: translateX(5px);
	-ms-transform: translateX(5px);
	transform: translateX(5px);
}

/* pager */
body .bx-wrapper .bx-pager {
	text-align: center;
	font-size: 0.85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: 25px;
}
.bx-wrapper .bx-pager.bx-default-pager span:hover,
.bx-wrapper .bx-pager.bx-default-pager span.active {
	background: var(--accent);
	border: 2px solid var(--accent);
}
.bx-wrapper .bx-pager.bx-default-pager span {
	width: 15px;
	height: 15px;
	background: transparent;
	border: 2px solid var(--accent);
	text-indent: -9999px;
	display: block;
	-webkit-transition: all 0.15s ease;
	-o-transition: all 0.15s ease;
	transition: all 0.15s ease;
	cursor: pointer;
	border-radius: 15px;
	margin: 0 5px;
}
.bx-wrapper .bx-pager.bx-default-pager span:hover,
.bx-wrapper .bx-pager.bx-default-pager span.active {
	background: var(--accent);
	border: 2px solid var(--accent);
}

@media screen and (max-width: 750px) {
	.bx-wrapper .bx-pager {
		display: block;
	}
	.bx-wrapper .bx-controls-direction {
		display: none;
	}
}

/* ----- Font Awesome 6 Phone Icon change - old \f879 - new \f095 ----- */
body #header .sticky-view .phone-1 a::before,
body #header .mobile-view .phone-1 a::before,
body #header .desktop-view .phone-1 a::before,
body .tmf-post.attorney.medium .phone-1::before,
body .tmf-post.attorney.medium .phone-2::before,
body .attorney-bio-info .phone-1::before,
body .attorney-bio-info .phone-2::before,
body .fa-phone-alt:before,
body #mobile-header-bottom a.phone::before,
body .tmf-post.small.location .phone-1::before,
body .tmf-field.location.phone-1 a::before,
body .tmf-field.location.phone-2 a::before,
body .tmf-post.small.location .phone-2::before {
	content: '\f095' !important;
}

/* #endregion Miscellaneous */

/* ======================================== *
      #region Inputs & Gravity Forms
 * ======================================== */
input[type='text']::-webkit-input-placeholder,
input[type='tel']::-webkit-input-placeholder,
input[type='email']::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
	color: #333333;
	text-align: center;
}
input[type='text']::-moz-placeholder,
input[type='tel']::-moz-placeholder,
input[type='email']::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
	color: #333333;
	text-align: center;
}
input[type='text']:-ms-input-placeholder,
input[type='tel']:-ms-input-placeholder,
input[type='email']:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
	color: #333333;
	text-align: center;
}
input[type='text']::-ms-input-placeholder,
input[type='tel']::-ms-input-placeholder,
input[type='email']::-ms-input-placeholder,
textarea::-ms-input-placeholder,
select::-ms-input-placeholder {
	color: #333333;
	text-align: center;
}
input[type='text']::placeholder,
input[type='tel']::placeholder,
input[type='email']::placeholder,
textarea::placeholder,
select::placeholder {
	color: #333333;
	text-align: center;
}
input[type='text'],
input[type='tel'],
input[type='email'],
textarea,
select {
	background: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 0px;
	color: #333333;
	font-size: 15px !important;
	margin-top: 0 !important;
	margin-bottom: 5px !important;
	max-width: 100%;
	padding: 10px 10px !important;
	line-height: normal !important;
}
textarea {
	height: 120px !important;
}
select {
	-webkit-appearance: none; /* remove the strong OSX influence from Webkit */
	-moz-appearance: none;
	appearance: none;
}
input[type='text']:focus,
textarea:focus {
	border: 1px solid #cccccc;
}
select.gfield_select {
	background-image: -o-linear-gradient(45deg, transparent 50%, gray 50%), -o-linear-gradient(315deg, gray 50%, transparent 50%), -o-linear-gradient(left, #ccc, #ccc);
	background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
	background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
	background-size: 5px 5px, 5px 5px, 1px 1.6em;
	background-repeat: no-repeat;
}

/* Gravity Forms */
.gform_legacy_markup_wrapper {
	margin: 0 auto !important;
}
.gform_legacy_markup_wrapper .gform_footer {
	padding: 0 !important;
	margin: 0 !important;
}
.gform_wrapper #gform_1 li {
	padding-right: 0;
}
.gform_legacy_markup_wrapper textarea::-webkit-input-placeholder,
.gform_legacy_markup_wrapper input::-webkit-input-placeholder {
	color: #000;
	text-align: left;
	font-size: 13px !important;
}
.gform_legacy_markup_wrapper textarea::-moz-placeholder,
.gform_legacy_markup_wrapper input::-moz-placeholder {
	color: #000;
	text-align: left;
	font-size: 13px !important;
}
.gform_legacy_markup_wrapper textarea:-ms-input-placeholder,
.gform_legacy_markup_wrapper input:-ms-input-placeholder {
	color: #000;
	text-align: left;
	font-size: 13px !important;
}
.gform_legacy_markup_wrapper textarea::-ms-input-placeholder,
.gform_legacy_markup_wrapper input::-ms-input-placeholder {
	color: #000;
	text-align: left;
	font-size: 13px !important;
}
.gform_legacy_markup_wrapper textarea::placeholder,
.gform_legacy_markup_wrapper input::placeholder {
	color: #000;
	text-align: left;
	font-size: 13px !important;
}
.gform_legacy_markup_wrapper input,
.gform_legacy_markup_wrapper textarea {
	background: rgba(255, 255, 255, 0.4);
	color: #000;
	border-radius: 5px;
	border-color: var(--accent);
}
.gform_legacy_markup_wrapper select {
	color: #000;
	font-size: 13px !important;
}
body .gform_wrapper.tmf-form_wrapper ul li.field_description_below div.ginput_container_checkbox {
	margin-top: 0;
	margin-bottom: 0;
}
.gform_legacy_markup_wrapper label.gfield_label {
	color: #fff;
	font-size: 13px !important;
	font-weight: 400 !important;
	margin-left: 11px;
}
body .gform_legacy_markup_wrapper ul li.gfield {
	margin-top: 0 !important;
}
/* -- split name field stack inputs -- */
/* .gform_legacy_markup_wrapper .gfield--type-name div.ginput_complex.ginput_container.gf_name_has_2 span {
  width: 100%;
}
.gform_legacy_markup_wrapper .gfield--type-name .name_first input {
  margin-bottom: 10px !important;
} */
body .gform_wrapper.tmf-form_wrapper ul li.field_description_below div.ginput_container_checkbox {
	margin-top: 0;
	margin-bottom: 0;
}

.gform_legacy_markup_wrapper #field_1_4 {
	margin-bottom: 0;
}
.gform_legacy_markup_wrapper #field_1_5 {
	font-size: 14px;
	line-height: 1.3em;
	font-weight: 500;
	background: rgba(255, 255, 255, 0.4);
	color: #000;
	border-radius: 5px;
	border: 1px solid var(--accent);
	padding: 10px;
}

@media screen and (max-width: 640px) {
	.gform_legacy_markup_wrapper form {
		margin-left: 0 !important;
	}
}

@media screen and (max-width: 500px) {
	.gform_legacy_markup_wrapper {
		max-width: 100% !important;
	}
}

/* #endregion Inputs & Gravity Forms */
