/* ============================================================================ *
        Structural Styles
    ---------------------------------------------------------------------------
        These are the styles which build the main site layout
        (headers, footers, body, etc.).

        If you are attempting to add styling for any elements placed inside of a 
        Wordpress Editor, use 'editor-content.css' stylesheet.
*/
:root {
	/* PRIMARY COLORS */
	--primary: #0b2f79;
	--primary-light: #1647a2;
	--primary-dark: #051e54;
	/* SECONDARY COLORS */
	--secondary: #5f8ad1;
	--secondary-light: #89bdf9;
	--secondary-dark: #4d6eb1;
	/* ACCENT COLORS */
	--accent: #d4af37;
	/* FONTS */
	--heading-font: 'Domine', serif;
	--body-font: 'Cabin', sans-serif;
	/* FONT AWESOME */
	--font-awesome: 'Font Awesome 6 Free';
	--font-brands: 'Font Awesome 6 Brands';
}
*,
*::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);
	color: var(--secondary-dark);
}

/* ======================================== *
        #region Typography
 * ======================================== */
/* calc px size by 16 and multiply by 1 rem to get rem value  */
/* -------------------------------- *
      Heading 1
 * -------------------------------- */
.home h1,
h1 {
	line-height: 1.3em;
	color: var(--primary-dark);
}
.home h1 {
	font-family: var(--body-font);
	font-size: 42px;
	font-weight: 600;
}
h1 {
	font-family: var(--heading-font);
	font-size: 38px;
	font-weight: 400;
}

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

/* -------------------------------- *
        Heading 2
 * -------------------------------- */
.home h2,
h2 {
	color: var(--primary-dark);
	line-height: 1.3em;
}
.home h2 {
	font-family: var(--heading-font);
	font-size: 38px;
	font-weight: 400;
}
h2 {
	font-family: var(--body-font);
	font-size: 32px;
	font-weight: 600;
}
h2 a {
	color: var(--primary);
}

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

/* -------------------------------- *
        Heading 3
 * -------------------------------- */
.home h3,
h3 {
	color: var(--primary-light);
	line-height: 1.3em;
}
.home h3 {
	font-family: var(--heading-font);
	font-size: 32px;
	font-weight: 400;
}
h3 {
	font-family: var(--body-font);
	font-size: 28px;
	font-weight: 600;
}
h3 a {
	color: var(--primary);
	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,
h4 {
	color: var(--primary-dark);
	line-height: 1.3em;
}
.home h4 {
	font-family: var(--heading-font);
	font-size: 30px;
	font-weight: 400;
}
h4 {
	font-family: var(--body-font);
	font-size: 26px;
	font-weight: 600;
}
h4 a {
	color: var(--primary);
	text-decoration: none;
}
h4 a:hover {
	text-decoration: underline;
}

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

/* -------------------------------- *
        Heading 5
 * -------------------------------- */
.home h5,
h5 {
	color: #333;
	font-family: var(--heading-font);
	font-weight: 400;
	line-height: 1.3em;
}
.home h5 {
	font-size: 28px;
}
h5 {
	font-size: 26px;
}
h5 a {
	color: var(--accent);
	text-decoration: none;
}
h5 a:hover {
	text-decoration: underline;
}

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

/* #endregion Typography */

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

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

/* site Specific - Breadcrumbs in its own section*/
#breadcrumbs-wrapper {
	background: #c7c9c9;
	padding: 25px 0;
}
#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) {
	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) {
		max-width: 90% !important;
	}
}

/* #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: #051843;
	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;
}

/* ----- 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: 49px;
	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%;
}

/* ------ 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;
	padding: 0;
	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: 49px;
}
body #header-wrapper.sticky .desktop-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: 16px;
	line-height: normal;
	font-weight: 400;
	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: 16px;
	font-weight: 400;
}
#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: 400;
}
body #header-wrapper.sticky #primary-nav .menu .sub-menu .menu-item:hover > a {
	background-color: var(--accent);
	color: var(--primary-dark);
}

@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: var(--primary-dark);
	padding: 30px 0;
}
#header-container {
	max-width: 90%;
}

/* ------ 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;
}

/* ------ cell 1 ------ */
#header .logo {
	max-width: 427px;
	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: #fff;
	font-size: 16px;
	font-weight: 400;
	text-decoration: none;
}
body #header-wrapper #header .tmf-button {
	color: var(--primary-dark);
}

/* ------ cell 2 ------ */
#header-cell-2 .inner {
	padding-left: 0;
}
#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;
}
#header .sticky-view {
	display: none;
}
#header-cell-2 .desktop-view a {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
}
#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: 600;
}
#header .mobile-logo-view {
	display: none;
}

@media screen and (max-width: 1200px) {
	.home #header-wrapper {
		padding: 20px 0;
	}
	#header-cell-1 {
		margin-bottom: 0;
	}
	#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;
		height: 49px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	#header-cell-1 .mobile-view .tmf-module-content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
}

@media screen and (max-width: 950px) {
	.home #header-wrapper {
		background: var(--primary-dark);
		position: static;
	}
	.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: 45px;
}
#primary-nav .menu > .menu-item > a {
	color: #fff;
	font-family: var(--body-font);
	font-size: 16px;
	line-height: normal;
	font-weight: 400;
	padding: 5px 0;
	text-decoration: none;
	position: relative;
	height: auto;
	-webkit-transition: 0.2s ease;
	-o-transition: 0.2s ease;
	transition: 0.2s ease;
}

/* ------ Menu Item Hover animation ------ */
#primary-nav .menu > .menu-item > a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 0%;
	height: 0;
	margin: 0 auto;
	background-position: center bottom;
	-webkit-transition: width 0.35s ease-out;
	-o-transition: width 0.35s ease-out;
	transition: width 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 {
	background-color: var(--accent);
	width: 80%;
	height: 2px;
}

/* ------ 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: 700;
	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: 400;
}
#primary-nav .menu .sub-menu .menu-item:hover > a {
	background-color: var(--accent);
	color: var(--primary-dark);
	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;
	}
}
/* #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: 600;
	font-size: 17px;
	line-height: normal;
	display: block;
}
#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);
}

/* #endregion Mobile Header-Bottom */

/* ======================================== *
  #region Mobile Menu Opened
* ======================================== */
#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 > .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);
}
/* #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: 50px 0 150px;
}
#home-body-container {
	max-width: 90%;
}

/* --- cell 1 ---- */

/* --- cell 2 ---- */
#home-body #home-body-cell-2 {
	/* vertical-align: middle; */
}
#home-body #home-body-cell-2 .inner {
	min-width: 370px;
	/* margin-top: -32px; */
}

@media screen and (max-width: 1250px) {
	#home-body h2 br {
		display: none;
	}
}

@media screen and (max-width: 1050px) {
	#home-body-wrapper {
		padding: 50px 0 90px;
	}
	#home-body #home-body-cell-1 {
		padding-bottom: 25px;
	}
	#home-body-cell-2 {
		padding-bottom: 50px;
	}
	#home-body #home-body-cell-2 .inner {
		min-width: unset;
		margin-top: 0;
	}
}

@media screen and (max-width: 500px) {
	#home-body #home-body-cell-2 .inner,
	#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: 50px 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 {
	width: 420px;
	max-width: 420px;
	min-width: 420px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-bottom: 25px;
}
.single-attorney #body #body-cell-1 .inner {
	padding: 150px 25px 35px;
}

/* --- cell 2 ---- */
.single-attorney #body-cell-2 {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: unset;
	margin: 0;
	min-width: unset;
}
.single-attorney #body #body-cell-2 > .inner {
	padding: 35px 25px 50px;
}

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

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

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

/* #endregion Body Sections */

/* ======================================== *
      #region Homepage Sections
 * ======================================== */
/* --------------------------- *
    #region Billboard
 * --------------------------- */
#billboard-wrapper {
	position: relative;
	overflow: hidden;
}
#billboard-container {
	max-width: 100%;
}
#billboard .billboard-content-container {
	position: absolute;
	max-width: 90%;
	left: 50px;
	right: 0;
	margin: 0 auto;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 0;
}
#billboard .billboard-content {
	position: relative;
	padding: 25px 0;
}
#billboard h1 {
	margin: 0;
	line-height: 1.15em;
}
#billboard .tmf-button {
	margin-top: 20px;
}

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

@media screen and (max-width: 950px) {
	#billboard .billboard-content-container {
		background: var(--primary-dark);
		-webkit-transform: inherit;
		-ms-transform: inherit;
		transform: inherit;
		padding: 25px;
		width: 100%;
		position: static;
		max-width: 100%;
	}
	#billboard .billboard-content {
		background: transparent;
		padding: 0;
		max-width: 100%;
		margin: 0 auto;
	}
	#billboard h1 {
		text-align: center;
		margin-left: 0;
		color: #fff;
	}
	#billboard .tmf-button {
		margin: 15px auto 0;
		display: block;
		max-width: -webkit-fit-content;
		max-width: -moz-fit-content;
		max-width: fit-content;
	}
}

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

@media screen and (max-width: 500px) {
	#billboard .billboard-content .tmf-module-content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		width: 100%;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

/*---------------------------
*   Billboard Slider
*---------------------------*/
/* If Slider is being used, uncomment below Code */
/* #billboard .slide {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
#billboard .slide.active {
  opacity: 1;
} */
/* End Slider Code */
#billboard .billboard-slides {
	position: relative;
	height: 600px;
}
#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;
}
#billboard .mobile-view {
	position: relative;
	display: none;
}

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

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

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

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

@media screen and (max-width: 1100px) {
	#billboard .billboard-slides {
		height: 450px;
	}
}

@media screen and (max-width: 950px) {
	#billboard .billboard-slides {
		height: 450px;
	}
	#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: 400px;
	}
}
@media screen and (max-width: 550px) {
	#billboard .billboard-slides {
		height: 350px;
	}
}
@media screen and (max-width: 450px) {
	#billboard .billboard-slides {
		height: 300px;
	}
}
@media screen and (max-width: 390px) {
	#billboard .billboard-slides {
		height: 250px;
	}
}
/* #endregion Billboard */

/* -------------------------
*  #region Home Practice Areas Section
* ------------------------- */
#home-practice-areas-wrapper {
	background: #f1f3f6;
	padding: 0;
	min-height: 450px;
}
#home-practice-areas-container {
	max-width: 90%;
}
#home-practice-areas-cell-1 .inner {
	margin-top: -65px;
}
#home-practice-areas .grid .tmf-post-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px;
	/* place-items: center; */
	text-align: center;
}
/* #home-practice-areas .staggered .tmf-post-list {
	display: none;
} */
#home-practice-areas .tmf-post {
	border: 0;
	padding: 0;
	margin: 0;
	text-align: center;
}
#home-practice-areas .tmf-post .pa-listing a {
	color: #3b3b3b;
	text-decoration: none;
}
#home-practice-areas .tmf-post .pa-listing a:hover {
	text-decoration: none;
}
#home-practice-areas .tmf-post .pa-listing a .pa-icon {
	display: block;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: var(--accent);
	position: relative;
	margin: 0 auto 15px;
	-webkit-transition: 0.3s ease-in;
	-o-transition: 0.3s ease-in;
	transition: 0.3s ease-in;
}
#home-practice-areas .tmf-post .pa-listing:hover a .pa-icon {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
#home-practice-areas .tmf-post .pa-listing a .title {
	font-size: 22px;
	font-weight: 500;
}
#home-practice-areas .tmf-post .pa-listing a::after {
	content: '\f0d8';
	display: block;
	font-family: var(--font-awesome);
	font-size: 44px;
	font-weight: 700;
	color: var(--accent);
	opacity: 0;
	-webkit-transition: 0.3s ease-in;
	-o-transition: 0.3s ease-in;
	transition: 0.3s ease-in;
	margin-top: 15px;
}
#home-practice-areas .tmf-post .pa-listing:hover a::after {
	opacity: 1;
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}

/* icons */
#home-practice-areas .tmf-post .pa-listing a .pa-icon::before {
	display: block;
	font-family: var(--font-awesome);
	font-size: 56px;
	font-weight: 700;
	color: var(--primary-dark);
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#home-practice-areas .tmf-post .pa-listing.alternative-dispute-resolution a .pa-icon::before {
	content: '\f277';
}
#home-practice-areas .tmf-post .pa-listing.business-law a .pa-icon::before {
	content: '\f0b1';
}
#home-practice-areas .tmf-post .pa-listing.civil-litigation a .pa-icon::before {
	content: '\f0e3';
}
#home-practice-areas .tmf-post .pa-listing.estate-planning a .pa-icon::before {
	content: '\f15c';
}
#home-practice-areas .tmf-post .pa-listing.family-law a .pa-icon::before {
	content: '\e4e1';
}
#home-practice-areas .tmf-post .pa-listing.real-estate a .pa-icon::before {
	content: '\f4d9';
}

@media screen and (max-width: 1130px) {
	/* #home-practice-areas .grid .tmf-post-list {
		grid-template-columns: repeat(3, 1fr);
	} */
	/* Target the last two items in the grid */
	/* #home-practice-areas .grid .tmf-post-list .tmf-post:nth-last-child(-n + 2) {
		display: none;
	} */
	/* #home-practice-areas .staggered {
		padding-bottom: 25px;
	}
	#home-practice-areas .staggered .tmf-post-list {
		margin-top: 30px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: space-evenly;
		-ms-flex-pack: space-evenly;
		justify-content: space-evenly;
	} */
}

@media screen and (max-width: 800px) {
	/* #home-practice-areas .staggered .tmf-post-list {
		display: none;
	} */
	/* #home-practice-areas .grid .tmf-post-list .tmf-post:nth-last-child(-n + 2) {
		display: block;
	} */
	#home-practice-areas .grid .tmf-post-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 50px;
	}
	#home-practice-areas-cell-1 .inner {
		padding-bottom: 50px;
	}
}

@media screen and (max-width: 550px) {
	#home-practice-areas .grid .tmf-post-list {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* #endregion Home Practice Areas Section */

/* -------------------------
* #region Home Attorney Section
* ------------------------- */
/*
#home-attorney-wrapper {
	background: url('../images/home_meet_our_team_bg_3x.png') no-repeat center/cover;
	padding: 100px 0;
}
*/
#home-attorney-wrapper {
	background: linear-gradient(rgba(0, 23, 58, 0.46), rgba(0, 23, 58, 0.6)),
	            url('../images/home_meet_our_team_bg_3x.png') no-repeat center/cover;
	padding: 100px 0;
}



#home-attorney-container {
	max-width: 90%;
}
/* --- cell 1 --- */
#home-attorney #home-attorney-cell-1 .inner {
	border-right: 2px solid var(--secondary);
	padding: 50px 50px 50px 0;
}

#home-attorney #home-attorney-cell-1 h3 span {
	font-size: 38px;
}
#home-attorney #home-attorney-cell-1 h3 {
	color: #fff;
	margin: 0 0 15px;
}
#home-attorney #home-attorney-cell-1 p {
	color: #fff;
}
#home-attorney #home-attorney-cell-1 .tmf-button {
	margin-top: 15px;
}

/* --- cell 2 --- */
#home-attorney #home-attorney-cell-2 {
	vertical-align: middle;
}
#home-attorney #home-attorney-cell-2 .inner {
	margin-top: 26px;
}
#home-attorney #home-attorney-cell-2 .tmf-post img {
	-webkit-transition: outline 0.2s ease-out, outline-offset 0.2s ease-out;
	-o-transition: outline 0.2s ease-out, outline-offset 0.2s ease-out;
	transition: outline 0.2s ease-out, outline-offset 0.2s ease-out;
	outline: 2px solid var(--secondary);
	outline-offset: -2px;
}
#home-attorney #home-attorney-cell-2 .tmf-post a {
	color: #fff;
}
#home-attorney #home-attorney-cell-2 .tmf-post a:hover {
	text-decoration: none;
}
#home-attorney #home-attorney-cell-2 .tmf-post:hover img {
	outline: 4px solid var(--accent);
	outline-offset: -4px;
}
#home-attorney #home-attorney-cell-2 .tmf-post .title {
	font-size: 18px;
	font-weight: 700;
}
#home-attorney #home-attorney-cell-2 .tmf-post .img-text {
	font-size: 16px;
	font-weight: 600;
	opacity: 0;
	-webkit-transition: 0.2s ease-out;
	-o-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
	margin-top: 10px;
}
#home-attorney #home-attorney-cell-2 .tmf-post:hover .img-text {
	opacity: 1;
}

@media screen and (max-width: 1150px) {
	#home-attorney-cell-1 {
		width: 40%;
	}
}

@media screen and (max-width: 1050px) {
	#home-attorney-cell-1 {
		width: 100%;
		text-align: center;
	}
	#home-attorney #home-attorney-cell-1 .inner {
		border: 0;
		padding: 0 25px;
	}
	#home-attorney #home-attorney-cell-1 p {
		width: 70%;
		margin: 0 auto;
	}
	#home-attorney #home-attorney-cell-1 .tmf-button {
		margin-top: 25px;
	}
}

@media screen and (max-width: 900px) {
	#home-attorney #home-attorney-cell-1 p {
		width: 80%;
	}
	#home-attorney-wrapper {
		padding: 50px 0;
	}
}

@media screen and (max-width: 600px) {
	#home-attorney #home-attorney-cell-1 p {
		width: 100%;
	}
}

/* #endregion Home Attorney Section */

/* -------------------------
* #region Testimonials Section
* ------------------------- */
#testimonials-wrapper {
	padding: 100px 0;
}

/* --- cell 1 --- */
#testimonials-cell-1 {
	border: 2px solid #d0d0d0;
	padding: 50px 0 60px !important;
	text-align: center;
	position: relative;
}
#testimonials-cell-1 .inner {
	position: static;
}
#testimonials-cell-1 .tmf-module-content {
	max-width: 80%;
	margin: 0 auto;
}
#testimonials-cell-1 h3 {
	margin-bottom: 35px;
}
#testimonials-cell-1 .btn-wrap {
	display: inline-block;
	position: absolute;
	bottom: -17px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
#testimonials-cell-1 .btn-wrap .tmf-button {
	min-width: -webkit-max-content;
	min-width: -moz-max-content;
	min-width: max-content;
}

@media screen and (max-width: 1050px) {
	#testimonials-wrapper {
		padding: 50px 0 60px;
	}
}

@media screen and (max-width: 700px) {
	#testimonials-cell-1 .tmf-module-content {
		max-width: 100%;
		margin: 0 auto;
	}
}

@media screen and (max-width: 550px) {
	#testimonials .tmf-post.testimonial.small .excerpt {
		max-width: 100%;
	}
}

/* #endregion Testimonials Section */

/* -------------------------
* #region Why Us Section
* ------------------------- */
#home-why-us-wrapper {
	padding: 100px 0 110px;
	background: #f1f3f6;
	text-align: center;
}

/* --- cell 1 --- */
#home-why-us h3 {
	margin-bottom: 25px;
}
#home-why-us h3 span {
	font-size: 38px;
}
#home-why-us p {
	width: 60%;
	margin: 0 auto;
}
#home-why-us .grid.why-us-list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 50px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	margin: 50px 0;
}
#home-why-us .why-us__item {
	max-width: 205px;
	margin: 0 auto;
}
#home-why-us .why-us__icon {
	display: block;
	width: 88px;
	height: 88px;
	background: var(--accent);
	border-radius: 50%;
	margin: 0 auto 15px;
	position: relative;
}
#home-why-us .why-us__item .why-us__icon::before {
	display: block;
	font-family: var(--font-awesome);
	font-size: 38px;
	font-weight: 700;
	color: var(--primary-dark);
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#home-why-us .why-us__item:nth-child(1) .why-us__icon::before {
	content: '\f2b5';
}
#home-why-us .why-us__item:nth-child(2) .why-us__icon::before {
	content: '\f086';
}
#home-why-us .why-us__item:nth-child(3) .why-us__icon::before {
	content: '\f681';
}
#home-why-us .why-us__item:nth-child(4) .why-us__icon::before {
	content: '\f14a';
}
#home-why-us .why-us__item:nth-child(5) .why-us__icon::before {
	content: '\f4be';
}
#home-why-us .why-us__title {
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-dark);
	border-bottom: 2px solid #525252;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
#home-why-us .staggered.why-us-list {
	display: none;
}

@media screen and (max-width: 1450px) {
	#home-why-us .grid.why-us-list {
		gap: 25px;
	}
}

@media screen and (max-width: 1320px) {
	#home-why-us p {
		width: 80%;
	}
	#home-why-us .grid.why-us-list {
		grid-template-columns: repeat(3, 1fr);
		gap: 50px;
	}
	#home-why-us .grid.why-us-list .why-us__item:nth-last-child(-n + 2) {
		display: none;
	}
	#home-why-us .staggered.why-us-list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-bottom: 50px;
		-webkit-box-pack: space-evenly;
		-ms-flex-pack: space-evenly;
		justify-content: space-evenly;
	}
	#home-why-us .staggered .why-us__item {
		margin: 0;
	}
}

@media screen and (max-width: 850px) {
	#home-why-us .grid.why-us-list .why-us__item:nth-last-child(-n + 2) {
		display: block;
	}
	#home-why-us .grid.why-us-list {
		grid-template-columns: repeat(1, 1fr);
	}
	#home-why-us .staggered.why-us-list {
		display: none;
	}
	#home-why-us .why-us__item {
		max-width: 50%;
	}
}

/* #endregion Why Us Section */

/* #endregion Homepage Sections*/

/* ======================================== *
      #region Single Practice Areas Pages
 * ======================================== */
/* ------------------------------ *
    #region Int billboard 
 * ------------------------------- */
#int-billboard-wrapper {
	overflow: hidden;
}
#int-billboard-container {
	max-width: 100%;
}
#int-billboard-cell-1,
#int-billboard-cell-2 {
	vertical-align: middle;
}
#int-billboard #int-billboard-cell-1 + .inner,
#int-billboard #int-billboard-cell-2 .inner {
	padding: 0;
}

/* --- cell 1 --- */
#int-billboard-cell-1 {
	background: url('../images/int_prac_areas_left_bg_3x.png') no-repeat center/cover;
	position: relative;
}
#int-billboard #int-billboard-cell-1 .inner {
	position: static;
	max-width: 90%;
	margin-left: auto;
}
#int-billboard-cell-1 .pa-breadcrumbs {
	background: #c7c9c9;
	padding: 25px 0;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}
#int-billboard-cell-1 .pa-breadcrumbs .pa-breadcrumb-inner {
	padding: 0 25px;
	max-width: 90%;
	margin-left: auto;
}
#int-billboard .int-billboard-content {
	-webkit-transform: translateY(-36px);
	-ms-transform: translateY(-36px);
	transform: translateY(-36px);
}
#int-billboard h1#page-title {
	display: inline-block;
	margin-bottom: 0;
	padding: 25px 0;
}
#int-billboard .mobile-view {
	display: none;
}

/* --- cell 2 --- */
#int-billboard .int-billboard-img {
	display: block;
	width: 100%;
	height: auto;
	min-height: 336px;
	-o-object-fit: cover;
	object-fit: cover;
}

@media screen and (min-width: 1750px) {
	#int-billboard .int-billboard-content {
		max-width: 775px;
		margin-left: auto;
	}
	#int-billboard-cell-1 .pa-breadcrumbs .pa-breadcrumb-inner {
		max-width: 775px;
		margin-left: auto;
		padding: 0;
	}
	#int-billboard h1#page-title {
		padding: 25px 25px;
	}
}

@media screen and (max-width: 1050px) {
	#int-billboard-cell-2 {
		display: none;
	}
	#int-billboard .mobile-view {
		display: block;
	}
	#int-billboard-cell-1 .pa-breadcrumbs {
		display: none;
	}
	#int-billboard .int-billboard-content {
		-webkit-transform: unset;
		-ms-transform: unset;
		transform: unset;
		max-width: 90%;
		margin: 0 auto;
	}
	#int-billboard #int-billboard-cell-1 .inner {
		max-width: 100%;
		margin-left: 0;
		padding: 0;
	}
	#int-billboard h1#page-title {
		padding: 25px;
	}
}

@media screen and (max-width: 850px) {
	.single-practice-area.postid-62 #int-billboard .int-billboard-img {
		-o-object-position: left;
		object-position: left;
	}
}

@media screen and (max-width: 550px) {
	#int-billboard .int-billboard-img {
		min-height: 200px;
	}
}

@media screen and (max-width: 500px) {
	#int-billboard h1#page-title {
		padding: 25px 0;
	}
}
/* #endregion Int-billboard */
/* #endregion Single Practice Areas Pages */

/* ======================================== *
      #region Single Attorney Page CSS
 * ======================================== */
#attorney-bio-wrapper {
	background: url('../images/int_attorney_page_bg_3x.png') no-repeat center/cover;
	height: 294px;
}
#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 img {
	display: block;
}

/* ------ cell 2 ------ */
#attorney-bio-cell-2 {
	vertical-align: top;
}
#attorney-bio-cell-2 .inner {
	min-height: 294px;
	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: 20px;
	margin-bottom: 15px;
}
.attorney-bio-info h1#page-title {
	font-size: 38px !important;
	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;
	border-right: 2px solid #b7b7b7;
	padding-right: 20px;
}
.attorney-bio-info .attorney-titles a {
	color: #000;
	font-size: 28px;
	font-weight: 400;
	font-family: var(--body-font);
}
.attorney-bio-info .contact-information a,
.attorney-bio-info .icon-container a,
.attorney-bio-info .speaking a {
	color: #000;
	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: 700;
	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';
}

/* ------ Attorney Easy Tabs ------ */
.etabs {
	display: table;
	margin: 0 !important;
	padding: 0 !important;
	width: 100%;
}
.tab {
	border-right: 2px solid #fff;
	background: #c7c9c9;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	margin-right: 0px;
	margin-bottom: 5px;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	position: relative;
}
.tab a {
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	font-family: var(--body-font);
	display: block;
	padding: 13px 10px;
	outline: none;
	text-decoration: none !important;
	-webkit-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
.tab:hover,
.tab.active {
	background: var(--accent);
	padding-top: 0;
	position: relative;
	top: 0;
}
.tab a:hover,
.tab a.active {
	color: var(--primary-dark);
}
.panel-container {
	padding: 20px 15px 0;
}
.panel-container p {
	line-height: 26px;
	margin-bottom: 15px;
}
.panel-container p:last-child {
	margin-bottom: 0;
}
.panel-container .editor-content ol,
.panel-container .editor-content ul {
	padding-left: 40px;
	margin: 0;
}
.panel-container .editor-content ol ol,
.panel-container .editor-content ul ul {
	padding-left: 40px;
	margin: 10px 0;
}

@media screen and (max-width: 760px) {
	.etabs {
		display: block;
	}
	.tab {
		border-right: none;
		border-bottom: 2px solid #fff;
		display: block;
	}
}

@media screen and (max-width: 500px) {
	.panel-container {
		padding: 20px 0 0;
	}
}
/* ------ End Easy Tabs ------ */

@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;
	}
	#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;
	}
}

@media screen and (max-width: 950px) {
	#attorney-bio-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	#attorney-bio-cell-1 img {
		margin: 25px auto 0;
		max-width: 100%;
		height: auto;
	}
	#attorney-bio-cell-2 {
		padding-top: 0;
	}
	#attorney-bio-cell-2 .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: unset;
		-ms-flex-align: unset;
		align-items: unset;
	}
	.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 h1#page-title {
		font-size: 32px !important;
	}
	.attorney-bio-info .attorney-titles a {
		font-size: 24px;
	}
}

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

/* #endregion Single Attorney Page CSS */

/* ======================================== *
      #region Single Video
 * ======================================== */
.single-video .video-thumbnail {
	margin-bottom: 30px;
}
.single-video iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
}

/* #endregion Single Video */

/* ======================================== *
      #region courthouse information page
 * ======================================== */
.page-id-312 #page-content img {
	margin: 10px 15px 10px 0;
}

/* #endregion courthouse information */
/* ======================================== *
      #region Make a Payment Page
 * ======================================== */
.page-id-68 .attorney-list {
	margin-top: 50px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
	place-items: center;
}
.page-id-68 .attorney-image img {
	display: block;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: top;
	object-position: top;
	width: 100%;
	height: 400px;
}

@media screen and (max-width: 1200px) and (min-width: 1050px), screen and (max-width: 800px) {
	.page-id-68 .attorney-list {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* #endregion Make a Payment Page */

/* ======================================== *
      #region Int Title Section
 * ======================================== */
#int-title-wrapper {
	background: url('../images/int_random_page_bg_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
 * ======================================== */
/* -------------------------------------- *
      #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 Testimonial Archive
 * ---------------------------------------- */
.tmf-post.testimonial .testimonial-description {
	float: none;
	font-size: 14px;
	margin-top: 10px;
	font-style: normal;
	font-weight: 500;
}
.post-type-archive-testimonial .tmf-post .taxonomy-container {
	margin-top: 0;
}

/* #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;
}

/* #endregion Location 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;
}
/* #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*/
/* ---------------------------------------- *
      #region Video Archive
 * ---------------------------------------- */
.tmf-post.video.medium .excerpt img.thumbnail.mobile {
	display: none;
}

@media screen and (max-width: 750px) {
	.tmf-post.video.medium .excerpt img.thumbnail.mobile {
		display: block;
	}
	.tmf-post.video.medium img.thumbnail.not-mobile {
		display: none;
	}
}

/* #endregion Video Archive */

/* #endregion All Archives*/

/* ======================================== *
      #region Call to Action
 * ======================================== */
/* body #call-to-action {
	position: relative;
	display: flex;
	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: var(--accent);
	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%;
}
body #call-to-action .col h3 {
	color: #000;
	text-align: center;
	margin: 0;
	font-weight: 600;
	font-size: 24px;
	line-height: 1.2em;
	font-family: var(--body-font);
}
body #call-to-action .col p {
	color: #000;
	font-weight: 500;
	font-size: 16px;
}
body #call-to-action .col .tmf-button {
	color: #323232 !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%;
		transform: none;
		clip-path: unset;
	}
	body #call-to-action .col:nth-child(2) {
		width: 100%;
		padding-left: 50px;
		clip-path: unset;
		margin-top: -25px;
	}
} */
/* #endregion Call to Action */

/* ======================================== *
      #region Aside
 * ======================================== */
aside {
	float: right;
	width: 350px;
	margin: 15px;
	padding: 25px;
	background: transparent;
	color: var(--primary);
	font-family: var(--body-font);
	font-size: 22px;
	font-weight: 700;
	position: relative;
	border: 2px solid var(--accent);
}
aside::before {
	content: '';
	display: inline-block;
	background: url('../images/icon_sprite_3x.png') no-repeat, #fff;
	background-size: 200px;
	background-position: -114px 0;
	width: 89px;
	height: 97px;
	position: absolute;
	right: -24px;
	top: -18px;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 72% 100%, 0 22%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 72% 100%, 0 22%);
}
.editor-content aside p {
	font-family: var(--heading-font);
	font-size: 25px;
	font-weight: 700;
	line-height: 36px;
	color: var(--primary-dark);
}
@media screen and (max-width: 700px) {
	aside {
		float: none;
		width: 100%;
		margin: 25px 0px;
	}
}

/* #endregion Aside */

/* ======================================== *
      #region Callout
 * ======================================== */
#callout {
	position: relative;
	background: transparent;
	padding: 0px 35px 15px 85px;
	margin: 35px 0;
}
#callout::before {
	content: '';
	display: inline-block;
	background: url('../images/icon_sprite_3x.png') no-repeat;
	background-size: 224px;
	background-position: -59px 0;
	width: 65px;
	height: 160px;
	position: absolute;
	left: 0;
	top: 0;
}
#callout h3,
#callout h4 {
	font-family: var(--body-font);
	font-weight: 700;
	font-size: 28px;
	margin: 0;
}
#callout p {
	font-family: var(--body-font);
	font-weight: 400;
	font-size: 18px;
}
#callout a {
	text-decoration: none;
	color: var(--secondary-dark);
	font-weight: 700;
}
#callout a:hover {
	text-decoration: underline;
}

/* #endregion Callout */

/* ======================================== *
      #region Callout Alt
 * ======================================== */
#callout-alt {
	border: 2px solid #dcdcdb;
	padding: 35px;
	margin-bottom: 25px;
}
#callout-alt p {
	font-weight: 600;
}
#callout-alt ul {
	padding-left: 25px;
	margin-bottom: 0;
}
#callout-alt ul li {
	margin-bottom: 0;
}

/* #endregion  Callout Alt */

/* ======================================== *
      #region Blockquote
 * ======================================== */
/* blockquote {
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 700;
  padding: 15px;
  position: relative;
  color: #534c32;
  line-height: 30px;
  font-style: normal;
  text-align: center;
  float: right;
  border-top: 11px solid #e6e6e6;
  border-bottom: 11px solid #e6e6e6;
  width: 300px;
  margin: 10px 15px 10px;
}

blockquote p {
  line-height: 32px !important;
  padding-left: 20px;
  padding-right: 0;
}

@media screen and (max-width: 750px) {
  blockquote {
    float: none;
    width: 100%;
    margin: 10px 0 10px;
    padding: 15px 0;
  }
}

@media screen and (max-width: 650px) {
  blockquote {
    padding: 0;
    margin: 65px 15px 15px;
    font-size: 22px;
    line-height: 28px;
  }
} */
/* #endregion Blockquote */

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

/* For More information Form - sidebar */
body .tmf-module-22 {
/* 	background: url('../images/form_bg.jpg') no-repeat center/cover; */
	background:#00173a;
	padding: 40px 50px;
	text-align: center;
	position: relative;
	outline: 2px solid #fff;
	outline-offset: -15px;
}
body .tmf-module-22 h3 {
	font-family: var(--body-font);
	font-size: 24px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 20px;
	line-height: 1.3em;
}

@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 */

/* Sidebar Practice Areas - sidebar */
.tmf-module-289 {
	margin-top: 50px;
}
.tmf-module-289 {
	padding: 50px;
	border: 2px solid #d0d0d0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.tmf-module-289 .tmf-post-list {
	position: relative;
	display: block;
	width: 100%;
}
.tmf-module-289 .tmf-post {
	padding: 0;
	margin: 0;
	border: 0;
	margin-bottom: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.tmf-module-289 .tmf-post.last-post {
	margin-bottom: 0;
}
.tmf-module-289 .tmf-post .pa-listing a {
	text-decoration: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	transition: all 0.25s ease-out;
}
.tmf-module-289 .tmf-post .pa-listing a:hover {
	transform: scale(1.1);
}
.tmf-module-289 .tmf-post .pa-listing a .title {
	color: #000;
	font-size: 22px;
	font-weight: 500;
}
.tmf-module-289 .tmf-post .pa-listing a:hover .title {
	color: var(--primary-dark);
	/* font-weight: 700; */
}

/* icons */
.tmf-module-289 .tmf-post .pa-listing a .pa-icon {
	width: 38px;
	height: 38px;
	min-width: 38px;
	background: var(--accent);
	border-radius: 50%;
	position: relative;
	/* transition: all 0.25s ease; */
}
.tmf-module-289 .tmf-post .pa-listing a .pa-icon::before {
	display: block;
	font-family: var(--font-awesome);
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-dark);
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.tmf-module-289 .tmf-post .pa-listing.alternative-dispute-resolution a .pa-icon::before {
	content: '\f277';
}
.tmf-module-289 .tmf-post .pa-listing.business-law a .pa-icon::before {
	content: '\f0b1';
}
.tmf-module-289 .tmf-post .pa-listing.civil-litigation a .pa-icon::before {
	content: '\f0e3';
}
.tmf-module-289 .tmf-post .pa-listing.estate-planning a .pa-icon::before {
	content: '\f15c';
}
.tmf-module-289 .tmf-post .pa-listing.family-law a .pa-icon::before {
	content: '\e4e1';
}
.tmf-module-289 .tmf-post .pa-listing.real-estate a .pa-icon::before {
	content: '\f4d9';
}

/* End Sidebar Practice Areas - sidebar */

/* Testimonials - sidebar */
.tmf-module-290 {
	margin-top: 50px;
	border: 2px solid #d0d0d0;
	padding: 45px 35px;
	position: relative;
}
.tmf-module-290 .tmf-post {
	border: 0;
	margin: 0;
	padding: 0;
}
.tmf-module-290 h3 {
	font-size: 24px;
	font-weight: 500;
	color: #000;
	text-align: center;
	margin-bottom: 10px;
}
.tmf-module-290 .tmf-button {
	position: absolute;
	bottom: -17px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	min-width: -webkit-max-content;
	min-width: -moz-max-content;
	min-width: max-content;
}
.tmf-module-290 .bx-wrapper {
	margin: 0 auto 60px !important;
	text-align: center;
}
/* End Testimonials - sidebar */

/* #endregion Modules */

/* ======================================== *
      #region Interior Footer Section
 * ======================================== */

/* #endregion Interior Footer Section */

/* ======================================== *
      #region Footer Section
 * ======================================== */
/*
#footer-wrapper {
	background: url('../images/footer_bg_3x.jpg') no-repeat center/cover;
	padding: 100px 0;
}
*/

#footer-wrapper {
    background: linear-gradient(rgba(0, 23, 58, 0.45), rgba(0, 23, 58, 0.6)), 
                url(../images/footer_bg_3x.jpg) no-repeat center / cover;
    padding: 100px 0;
}

#footer-container {
	max-width: 90%;
}
#footer-cell-1,
#footer-cell-2 {
	border-right: 2px solid var(--primary-light);
}

/* --- Cell 1 --- */
#footer-cell-1 h3 {
	color: #fff;
	font-family: var(--body-font);
	font-size: 28px;
	font-weight: 600;
	margin: 0 0 20px;
}
#footer-cell-1 .business-info .contact-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 20px;
}
#footer p {
	color: #fff;
}
#footer a {
	color: #fff;
	text-decoration: none;
}
#footer a:hover {
	text-decoration: underline;
}
#footer-cell-1 .business-info a {
	color: #fff;
	font-size: 17px;
	font-weight: 400;
}
#footer-cell-1 .contact-links {
	margin-bottom: 15px;
}
#footer-cell-1 .address {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin-bottom: 15px;
}
#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: 500;
	font-size: 16px;
}
#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: #fff;
	display: inline-block;
	vertical-align: top;
	font-family: var(--font-awesome);
	font-size: 18px;
	font-weight: 700;
	margin-right: 10px;
}
#footer-cell-1 .address::before {
	content: '\f3c5';
}
#footer-cell-1 .tmf-post.small.location .phone-1::before {
	margin-right: 3px;
}
#footer-cell-1 .phone-2::before {
	content: '\f3cd';
	-webkit-transform: unset;
	-ms-transform: unset;
	transform: unset;
}
#footer-cell-1 .tmf-post.small.location .fax::before {
	margin-right: 5px;
}
#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 .footer-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 57px;
}
#footer-cell-1 .payments {
	position: relative;
	font-weight: 500;
}
#footer-cell-1 .payments a::before {
	content: '\f09d';
	display: inline-block;
	vertical-align: middle;
	font-family: var(--font-awesome);
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-right: 10px;
	line-height: 1.5em;
}
#footer-cell-1 .directions {
	position: relative;
	font-weight: 500;
}
#footer-cell-1 .directions a::before {
	content: '\f4d7';
	display: inline-block;
	vertical-align: middle;
	font-family: var(--font-awesome);
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-right: 10px;
	line-height: 1.5em;
}
#footer-cell-1 .tmf-post.small.location .fax,
#footer-cell-1 .tmf-post.small.location .phone-1,
#footer-cell-1 .tmf-post.small.location .email {
	padding: 0;
}

/* --- Cell 2 --- */
#footer-cell-2 h3 {
	color: #fff;
	font-family: var(--body-font);
	font-size: 28px;
	font-weight: 600;
	margin: 0 0 20px;
	text-align: center;
}

/* Association Slider */
#footer-cell-2 .tmf-post {
	margin-bottom: 0;
	padding-bottom: 0;
	height: 100px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#footer-cell-2 .bx-wrapper img {
	max-height: 150px;
	display: block;
	width: auto;
	margin: 0 auto;
}
#footer-cell-2 .bx-wrapper .tmf-post-251 img,
#footer-cell-2 .bx-wrapper .tmf-post-267 img {
	height: auto;
	width: 250px;
}
#footer-cell-2 .bx-controls-direction {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 80px;
	margin-top: 30px;
}
#footer-cell-2 .bx-wrapper .bx-controls-direction span {
	position: relative;
	top: 0;
	outline: 0;
	width: 16px;
	height: 27px;
	font-size: 0;
	color: #c5c5c5;
	z-index: unset;
	cursor: pointer;
}
#footer-cell-2 .bx-wrapper .bx-prev {
	left: 0;
}
#footer-cell-2 .bx-wrapper .bx-next {
	right: 0;
}
#footer-cell-2 .bx-wrapper .bx-prev::before,
#footer-cell-2 .bx-wrapper .bx-next::before {
	display: inline-block;
	font-family: var(--font-awesome);
	font-size: 32px;
	font-weight: 600;
	color: #fff;
	-webkit-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
#footer-cell-2 .bx-wrapper .bx-prev::before {
	content: '\f0d9';
}
#footer-cell-2 .bx-wrapper .bx-next::before {
	content: '\f0da';
}

/* --- Cell 3 --- */
#footer-cell-3 {
	text-align: right;
	vertical-align: middle;
}
#footer-cell-3 p {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
}
#footer-cell-3 p .divider {
	display: none;
}
#footer-cell-3 .copy-links {
	margin-bottom: 15px;
}

@media screen and (max-width: 1180px) and (min-width: 1051px), screen and (max-width: 500px) {
	#footer-cell-1 .footer-links {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 15px;
	}
	#footer-cell-1 .business-info .contact-links {
		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: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		gap: 15px;
	}
}

@media screen and (max-width: 1050px) {
	#footer-cell-1,
	#footer-cell-2 {
		border: 0;
	}
	#footer-cell-1::after,
	#footer-cell-2::after {
		content: '';
		display: block;
		border-bottom: 2px solid var(--primary-light);
		width: 50%;
		margin: 35px auto;
	}
	#footer-cell-1,
	#footer-cell-3 {
		text-align: center;
	}
	#footer-cell-1 .address {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	#footer-cell-1 .business-info .contact-links {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	#footer-cell-1 .footer-links {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	#footer-cell-3 p.tmf br,
	#footer-cell-3 .copy-links br {
		display: none;
	}
	#footer-cell-3 p .divider {
		display: inline-block;
		padding: 0 5px;
	}
}

/* #endregion Footer 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: 7px 25px;
	color: var(--primary-dark);
	text-align: center;
	font-family: var(--body-font);
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	background: var(--accent);
	border: 0;
	border-radius: 0;
	cursor: pointer;
	text-decoration: none !important;
	-webkit-transition: all 0.15s ease-in;
	-o-transition: all 0.15s ease-in;
	transition: all 0.15s ease-in;
}
.tmf-button:hover,
input[type='submit']:hover {
	text-decoration: none;
}
.tmf-button:active,
.page-numbers:active,
input[type='submit']:active {
	text-decoration: none;
}
.gform_wrapper .tmf-button,
.gform_wrapper input[type='submit'] {
	border: none;
	color: var(--primary-dark);
}
.page-navigation .tmf-button,
.page-navigation .page-numbers {
	background: var(--primary-dark);
	color: #fff;
	border-radius: 0;
	-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 {
	color: var(--primary-dark);
	background: var(--accent);
}
.page-navigation .last.tmf-button {
	vertical-align: top;
	-webkit-transform: unset;
	-ms-transform: unset;
	transform: unset;
}
.page-navigation .last.tmf-button:active,
.page-navigation .last.tmf-button:hover {
	color: var(--primary-dark);
	background: var(--accent);
}
.page-navigation .last.tmf-button::before,
.page-navigation .last.tmf-button::after {
	display: none;
}
.page-numbers.current {
	color: var(--primary-dark);
	background: var(--accent);
}
.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;
}
.tmf-button.tiny {
	font-size: 0.75em;
	padding: 2px 7px;
}

/* ---- Button Animations ---- */
/* -- Ripple in Animation-- */
.tmf-button {
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	position: relative;
}
.tmf-button::before {
	content: '';
	display: inline-block;
	position: absolute;
	border: 4px solid var(--accent);
	top: -10px;
	right: -10px;
	bottom: -10px;
	left: -10px;
	opacity: 0;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
}
.tmf-button:hover::before {
	-webkit-animation-name: ripple-in;
	animation-name: ripple-in;
}

@-webkit-keyframes ripple-in {
	100% {
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		opacity: 1;
	}
}

@keyframes ripple-in {
	100% {
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		opacity: 1;
	}
}

/* #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: #8c8c8c;
	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 #8c8c8c;
	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;
	text-align: center;
}
.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: center;
	font-size: 15px !important;
}
.gform_legacy_markup_wrapper textarea::-moz-placeholder,
.gform_legacy_markup_wrapper input::-moz-placeholder {
	color: #000;
	text-align: center;
	font-size: 15px !important;
}
.gform_legacy_markup_wrapper textarea:-ms-input-placeholder,
.gform_legacy_markup_wrapper input:-ms-input-placeholder {
	color: #000;
	text-align: center;
	font-size: 15px !important;
}
.gform_legacy_markup_wrapper textarea::-ms-input-placeholder,
.gform_legacy_markup_wrapper input::-ms-input-placeholder {
	color: #000;
	text-align: center;
	font-size: 15px !important;
}
.gform_legacy_markup_wrapper textarea::placeholder,
.gform_legacy_markup_wrapper input::placeholder {
	color: #000;
	text-align: center;
	font-size: 15px !important;
}
.gform_legacy_markup_wrapper input,
.gform_legacy_markup_wrapper textarea {
	background: #fff;
	color: #000;
}
.gform_legacy_markup_wrapper label.gfield_label {
	color: #000;
	font-size: 13px !important;
	font-weight: 400 !important;
	margin-left: 11px;
}
body .gform_legacy_markup_wrapper ul li.gfield {
	margin-top: 0 !important;
}

body .gform_wrapper.tmf-form_wrapper ul li.field_description_below div.ginput_container_checkbox {
	margin-top: 0;
	margin-bottom: 0;
}

@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 */
