/* ============================================================================ *
        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: #12151f;
	--primary-light: #576a91;
	--primary-dark: #313b52;
	/* SECONDARY COLORS */
	--secondary: #d9d9d9;
	--secondary-light: #f2f2f2;
	--secondary-dark: #cbcad0;
	/* ACCENT COLORS */
	--accent: #ff6400;
	/* FONTS */
	--heading-font: 'Crimson Text', serif;
	--body-font: 'Lora', serif;
	/* FONT AWESOME */
	--font-awesome: 'Font Awesome 5 Pro';
	--font-brands: 'Font Awesome 5 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);
}

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

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

/* -------------------------------- *
        Heading 2
 * -------------------------------- */
.home h2,
h2 {
	color: #000;
	font-family: var(--heading-font);
	font-weight: 600;
	line-height: 1.3em;
}
.home h2 {
	font-size: 36px;
}
h2 {
	font-size: 30px;
}
h2 a {
	color: var(--primary);
}

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

/* -------------------------------- *
        Heading 3
 * -------------------------------- */
.home h3,
h3 {
	color: #000;
	line-height: 1.3em;
}
.home h3 {
	font-family: var(--heading-font);
	font-size: 30px;
	font-weight: 600;
}
h3 {
	font-family: var(--body-font);
	font-size: 20px;
	font-weight: 500;
}
h3 a {
	color: var(--primary-light);
	text-decoration: none;
}
h3 a:hover {
	text-decoration: underline;
}

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

/* -------------------------------- *
        Heading 4
 * -------------------------------- */
.home h4,
h4 {
	color: #000;
	font-family: var(--body-font);
	line-height: 1.3em;
}
.home h4 {
	font-size: 20px;
	font-weight: 400;
}
h4 {
	font-size: 18px;
	font-weight: 700;
}
h4 a {
	color: var(--primary-light);
	text-decoration: none;
}
h4 a:hover {
	text-decoration: underline;
}

/* -------------------------------- *
        Heading 5
 * -------------------------------- */
.home h5,
h5 {
	color: #000;
	font-family: var(--body-font);
	font-weight: 700;
	line-height: 1.3em;
}
.home h5 {
	font-size: 18px;
}
h5 {
	font-size: 16px;
}
h5 a {
	color: var(--primary-light);
	text-decoration: none;
}
h5 a:hover {
	text-decoration: underline;
}

/* #endregion Typography */

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

@media screen and (max-width: 700px) {
	#breadcrumbs {
		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(#home-news-contact-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(#home-news-contact-container) {
		max-width: 90%;
	}
}

/* #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: var(--primary);
	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: 15px 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: 18px;
	line-height: normal;
	font-weight: 700;
	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: 18px;
	font-weight: 700;
}
#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);
}
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 {
	background: var(--primary-light);
}
body #header-wrapper.sticky #primary-nav .menu .sub-menu .menu-item > a {
	font-size: 16px;
	padding: 10px 15px;
	color: #fff;
	font-weight: 500;
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}
body #header-wrapper.sticky #primary-nav .menu .sub-menu .menu-item:hover > a {
	background-color: var(--accent);
	color: #fff;
}

@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(--secondary-light);
	padding: 30px 0;
}
.home #header-wrapper {
	background: transparent;
	position: absolute;
	width: 100%;
	z-index: 2;
	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: 276px;
	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: #000;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
}
.home #header-cell-1 .mobile-view a {
	color: var(--primary);
}

/* ------ 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: #000;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
}
.home #header-cell-2 .desktop-view a {
	color: var(--primary);
}
#header .header-top a:hover {
	text-decoration: underline;
}
#header .header-top p {
	margin-bottom: 0;
	/* display: inline-block; */
}
#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;
}
#header .payments::before,
#header .portal::before,
#header .professionals::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	margin-right: 7px;
	color: var(--accent);
	font-size: 16px;
	font-family: var(--font-awesome);
	font-weight: 600;
}
#header .payments::before {
	content: '\f09d';
}
#header .portal::before {
	content: '\f30d';
}
#header .professionals::before {
	content: '\f30d';
}
.header-top .tmf-module-content br {
	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: 276px;
	}
	#header-cell-2 .desktop-view {
		display: none;
	}
	#header-cell-1 .mobile-view {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		height: 105px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	#header-cell-1 .mobile-view .tmf-module-content {
		display: block;
		text-align: right;
	}
	#header-cell-1 .mobile-view .payments {
		display: inline-block;
		margin-left: 15px;
		margin-bottom: 10px;
	}
	#header-cell-1 .mobile-view .portal {
		display: inline-block;
	}
	#header-cell-1 .mobile-view .professionals {
		display: inline-block;
		margin-left: 15px;
	}
	.header-top .tmf-module-content br {
		display: block;
	}
}

@media screen and (max-width: 950px) {
	.home #header-wrapper {
		background: var(--secondary-light);
		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;
	}
	.home #header-wrapper {
		background: transparent;
		position: absolute;
	}
}
/* #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: var(--primary);
	font-family: var(--body-font);
	font-size: 18px;
	line-height: normal;
	font-weight: 700;
	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;
	width: 0%;
	height: 0;
	background-position: left 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: 100%;
	height: 2px;
}
#primary-nav .menu > .menu-item:not(.home-icon) a::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 0%;
	height: 0;
	background-position: right top;
	-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:not(.home-icon):hover > a::before,
#primary-nav .menu > .menu-item.current-menu-item:not(.home-icon) > a::before,
#primary-nav .menu > .menu-item.current-menu-item:not(.home-icon) > a:hover::before,
#primary-nav .menu > .menu-item.current-menu-item:not(.home-icon) > a:focus::before {
	background-color: var(--accent);
	width: 100%;
	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(--primary);
	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;
}
.home #primary-nav .menu > .menu-item.home-icon a::before {
	color: var(--accent);
}
#header-wrapper.sticky #primary-nav .menu > .menu-item.home-icon a::before {
	color: #fff;
}
#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;
}
#primary-nav .menu > li.left-edge > div > ul {
	left: inherit;
	right: 0;
}
#primary-nav .menu .sub-menu .menu-item {
	background: var(--primary-light);
}
#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: #fff;
	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 a.mh-button::before {
	background: #ffffff;
	border-radius: 50%;
	content: '\f155';
	color: #000000;
	font-size: 18px;
	font-family: var(--font-awesome);
	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 {
	padding: 15px 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.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);
}
#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-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	position: relative;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
/* #endregion Mobile Header-Bottom */

/* ======================================== *
  #region Mobile Menu
* ======================================== */
#mobile-nav-wrapper {
	text-align: left;
}
#mobile-nav {
	padding: 0px 20px;
}
.hamburger-container {
	max-width: none;
	margin-bottom: 0;
}
#mobile-nav .menu-bar {
	width: 35px;
}
#mobile-nav .top-part {
	min-height: 50px;
	padding: 15px 25px;
}
#mobile-nav a {
	color: #fff;
	font-size: 18px !important;
}
#mobile-nav .menu > .menu-item > a {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
}
#mobile-nav .menu .menu-item.display {
	background: var(--accent);
}
#mobile-nav .top-part .mob-cancel-button {
	color: #fff;
}
#mobile-nav .menu .sub-menu .menu-item {
	padding: 5px 30px;
}
#mobile-nav .menu > .current-menu-item,
#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
* ======================================== */
.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;
	-webkit-clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
	clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
	background: #fff;
	z-index: 1;
	bottom: -105px;
}
#home-body-container {
	max-width: 90%;
}
#home-body-row {
	margin-top: -105px;
}

/* --- cell 1 ---- */
#home-body #home-body-cell-1 .inner {
	padding: 85px 25px;
}
#home-body #home-body-cell-1 h2 {
	text-align: center;
}

@media screen and (max-width: 1050px) {
	#home-body #home-body-cell-1 .inner {
		padding: 45px 25px 20px;
	}
	#home-body {
		padding-bottom: 100px;
	}
}

@media screen and (max-width: 685px) {
	#home-body-wrapper {
		bottom: -130px;
	}
	#home-body-wrapper {
		-webkit-clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
		clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
	}
}

@media screen and (max-width: 550px) {
	#home-body-wrapper {
		-webkit-clip-path: polygon(100% 0, 100% 95%, 50% 100%, 0 95%, 0 0);
		clip-path: polygon(100% 0, 100% 95%, 50% 100%, 0 95%, 0 0);
	}
}

@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: 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: 450px;
	max-width: 450px;
	min-width: 450px;
	-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;
	min-width: unset;
}
.single-attorney #body-cell-2 #page-content {
	margin-bottom: 25px;
}

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

@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: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		padding: 0;
	}
	.single-attorney #body-cell-1 {
		padding-top: 0;
		width: 100%;
		max-width: 100%;
		min-width: unset;
		margin-bottom: 0;
	}
	.single-attorney #body #body-cell-1 .inner {
		padding: 0 25px;
	}
	.single-attorney #body #body-cell-2 {
		padding-top: 0;
	}
}

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

/* -------------------------
* Practice Area Body Section
* ------------------------- */
/* --- cell 1 ---- */
/* --- cell 2 ---- */
.single-practice-area #body #body-cell-2 > .inner {
	margin-top: 150px;
}

@media screen and (max-width: 1050px) {
	.single-practice-area #body #body-cell-2 > .inner {
		margin-top: 0;
	}
}

/* #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: 0;
	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;
	background: var(--primary-dark);
	max-width: 500px;
}
#billboard .billboard-content::before {
	content: '';
	background: var(--primary-dark);
	display: block;
	content: '';
	height: 100%;
	width: 1000%;
	position: absolute;
	top: 0;
	left: -1000%;
}
#billboard h1 {
	margin: 0;
}

@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 .billboard-content::before {
		display: none;
	}
}

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

@media screen and (max-width: 500px) {
	#billboard .billboard-slides {
		height: 535px;
	}
}
/* #endregion Billboard */

/* -------------------------
*  #region Home Practice Areas Section
* ------------------------- */
#home-practice-areas-wrapper {
	background: var(--primary-dark);
	padding: 200px 0 100px;
}
#home-practice-areas-container {
	max-width: 90%;
}
#home-practice-areas-cell-1 .inner {
	max-width: 1100px;
	margin: 0 auto;
}
#home-practice-areas h2 {
	text-align: center;
	color: #fff;
	margin-bottom: 50px;
	overflow: hidden;
}
#home-practice-areas h2::before,
#home-practice-areas h2::after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	border-top: 2px solid var(--primary-light);
}
#home-practice-areas h2::before {
	margin-left: -100%;
	margin-right: 20px;
}
#home-practice-areas h2::after {
	margin-right: -100%;
	margin-left: 20px;
}
#home-practice-areas .tmf-post-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px;
	margin: 0 auto;
	max-width: 90%;
}
#home-practice-areas .tmf-post {
	margin-bottom: 0;
	padding-bottom: 0;
	border: 0;
}
#home-practice-areas .tmf-post a {
	text-decoration: none;
	color: #fff;
	font-size: 20px;
	font-weight: 400;
	-webkit-transition: 0.3s ease-out;
	-o-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 25px;
}
#home-practice-areas .tmf-post a:hover {
	text-decoration: none;
	color: var(--accent);
	font-size: 24px;
	font-weight: 700;
}

/* icons */
#home-practice-areas .tmf-post a .pa-icon {
	width: 39px;
	height: 35px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-transition: 0.3s ease-out;
	-o-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
	background: url('../images/Icon-Sprite_3x.png') no-repeat;
	background-size: 442px;
}
#home-practice-areas .tmf-post a:hover .pa-icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-transform: scale(1.5);
	-ms-transform: scale(1.5);
	transform: scale(1.5);
}
#home-practice-areas .tmf-post .bankruptcy a .pa-icon {
	background-position: 0 0;
}
#home-practice-areas .tmf-post .bankruptcy a:hover .pa-icon {
	background-position: 0 -57px;
}
#home-practice-areas .tmf-post .real-estate a .pa-icon {
	background-position: -234px 0;
}
#home-practice-areas .tmf-post .real-estate a:hover .pa-icon {
	background-position: -234px -57px;
}
#home-practice-areas .tmf-post .business-and-corporate a .pa-icon {
	background-position: -55px 0;
}
#home-practice-areas .tmf-post .business-and-corporate a:hover .pa-icon {
	background-position: -55px -57px;
}
#home-practice-areas .tmf-post .tax-planning a .pa-icon {
	background-position: -289px 0;
}
#home-practice-areas .tmf-post .tax-planning a:hover .pa-icon {
	background-position: -289px -57px;
}
#home-practice-areas .tmf-post .business-formation a .pa-icon {
	background-position: -115px 0;
}
#home-practice-areas .tmf-post .business-formation a:hover .pa-icon {
	background-position: -115px -57px;
}
#home-practice-areas .tmf-post .irs-state-tax-resolution a .pa-icon {
	background-position: -348px 0;
}
#home-practice-areas .tmf-post .irs-state-tax-resolution a:hover .pa-icon {
	background-position: -348px -57px;
}
#home-practice-areas .tmf-post .business-sales-mergers-acquisitions a .pa-icon {
	background-position: -177px 0;
}
#home-practice-areas .tmf-post .business-sales-mergers-acquisitions a:hover .pa-icon {
	background-position: -177px -57px;
}
#home-practice-areas .tmf-post .trust-and-estate-planning a .pa-icon {
	background-position: -406px 0;
}
#home-practice-areas .tmf-post .trust-and-estate-planning a:hover .pa-icon {
	background-position: -406px -57px;
}

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

@media screen and (max-width: 900px) {
	#home-practice-areas h2::before,
	#home-practice-areas h2::after {
		display: none;
	}
}

/* #endregion Home Practice Areas Section */

/* -------------------------
* #region Home Attorney Section
* ------------------------- */
#home-attorney-wrapper {
	background: var(--secondary-dark);
	padding: 100px 0;
}
#home-attorney-container {
	max-width: 90%;
}
/* --- cell 1 --- */
#home-attorney .tmf-module-content {
	text-align: center;
}
#home-attorney .slick-slide img {
	width: 100%;
	height: auto;
	float: none;
	margin-bottom: 10px;
	-webkit-transition: border 0.3s ease, -webkit-transform 0.3s ease;
	transition: border 0.3s ease, -webkit-transform 0.3s ease;
	-o-transition: border 0.3s ease, transform 0.3s ease;
	transition: border 0.3s ease, transform 0.3s ease;
	transition: border 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
#home-attorney .tmf-post:hover img {
	border: 3px solid var(--accent);
	border-radius: 50%;
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
#home-attorney .tmf-post .title a {
	color: #000;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
}
#home-attorney .tmf-post .img-text a {
	color: var(--accent);
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	opacity: 0;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}
#home-attorney .tmf-post:hover .img-text a {
	opacity: 1;
}

@media screen and (max-width: 850px) {
	#home-attorney-wrapper {
		padding: 50px 0;
	}
}

/* #endregion Home Attorney Section */

/* -------------------------
* #region Why Us Section
* ------------------------- */
#home-why-us-wrapper {
	padding: 100px 0;
}
#home-why-us-container {
	max-width: 90%;
}
/* --- cell 1 --- */
#home-why-us-cell-1 {
	vertical-align: middle;
	border-right: 2px solid var(--secondary);
}
#home-why-us-cell-1 .inner {
	padding-right: 50px;
}
#home-why-us-cell-1 h2 {
	text-align: right;
	margin-bottom: 50px;
}
#home-why-us-cell-1 h2 span {
	font-weight: 400;
}
#home-why-us-cell-1 .tmf-button {
	display: block;
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content;
	margin: 0 0 0 auto;
}

/* --- cell 2 --- */
#home-why-us-cell-2 {
	vertical-align: middle;
}
#home-why-us-cell-2 .inner {
	padding: 25px 25px 25px 50px;
}
#home-why-us-cell-2 .tmf-button {
	display: none;
}

@media screen and (max-width: 1050px) {
	#home-why-us-cell-1 {
		border: 0;
	}
	#home-why-us-cell-1 .inner {
		padding-right: 25px;
	}
	#home-why-us-cell-1 h2 {
		text-align: center;
		margin-bottom: 0;
	}
	#home-why-us-cell-1 .tmf-button {
		display: none;
	}
	#home-why-us-cell-2 .tmf-button {
		display: block;
		max-width: -webkit-fit-content;
		max-width: -moz-fit-content;
		max-width: fit-content;
		margin: 45px auto 0;
	}
	#home-why-us-cell-2 .inner {
		padding: 0 25px;
	}
}

@media screen and (max-width: 850px) {
	#home-why-us-wrapper {
		padding: 50px 0;
	}
}

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

/* #endregion Why Us Section */

/* -------------------------
* #region Home news/contact Section
* ------------------------- */
#home-news-contact-container {
	max-width: 100%;
}
/* --- cell 1 --- */
#home-news-contact-cell-1 {
	background: var(--secondary-dark);
	vertical-align: middle;
}
#home-news-contact-cell-1 .inner {
	max-width: 90%;
	margin-right: 0;
	margin-left: auto;
}
#home-news-contact-cell-1 .tmf-module-content {
	max-width: 80%;
	margin: 0 auto;
}
#home-news-contact-cell-1 .tmf-module {
	text-align: center;
}
#home-news-contact-cell-1 h3 {
	margin-bottom: 30px;
}
#home-news-contact-cell-1 .tmf-post {
	margin-bottom: 0;
	padding-bottom: 0;
	border: 0;
}
#home-news-contact-cell-1 .tmf-post h4 a {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 15px;
	color: #000;
}
#home-news-contact-cell-1 .tmf-post a {
	text-decoration: none;
	font-weight: 700;
}
#home-news-contact-cell-1 .tmf-post a:hover {
	text-decoration: underline;
}
#home-news-contact-cell-1 .tmf-button {
	display: block;
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content;
	margin: 50px auto 0;
}

/* --- cell 2 --- */
#home-news-contact-cell-2 {
	background: var(--primary-dark);
	vertical-align: middle;
}
#home-news-contact-cell-2 .inner {
	padding: 100px 25px;
	max-width: 90%;
	margin-left: 0;
	margin-right: auto;
}
#home-news-contact-cell-2 .tmf-module-content {
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content;
	margin: 0 auto;
}
#home-news-contact-cell-2 h3 {
	text-align: center;
	color: #fff;
	margin-bottom: 30px;
}

@media screen and (min-width: 1750px) {
	#home-news-contact-cell-1 .inner {
		max-width: 800px;
	}
	#home-news-contact-cell-2 .inner {
		max-width: 800px;
	}
}

@media screen and (max-width: 1400px) {
	#home-news-contact-cell-1 .tmf-module-content {
		max-width: 90%;
	}
}

@media screen and (max-width: 1070px) {
	#home-news-contact-cell-1 .inner {
		margin: 0 auto;
	}
	#home-news-contact-cell-2 .inner {
		margin: 0 auto;
	}
}

@media screen and (max-width: 1050px) {
	#home-news-contact-cell-1 {
		padding: 50px 0 !important;
	}
	#home-news-contact-cell-2 {
		padding-top: 0 !important;
	}
	#home-news-contact-cell-2 .inner {
		padding: 50px 0;
	}
}

@media screen and (max-width: 500px) {
	#home-news-contact-cell-1 .tmf-module-content {
		max-width: 100%;
	}
	#home-news-contact-cell-1 .inner {
		padding: 0;
	}
}

/* #endregion Home news/contact Section */

/* #endregion Homepage Sections*/

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

/* ------------------------------ *
    #region Int billboard 
 * ------------------------------- */
#int-billboard-wrapper {
	background: url('../images/int_page_title_bg_3x.jpg') no-repeat center/cover;
}
#int-billboard-container {
	max-width: 90%;
}
#int-billboard-row {
	min-height: 190px;
}
#int-billboard-cell-1,
#int-billboard-cell-2 {
	vertical-align: middle;
}

/* cell 1 */
#int-billboard-cell-1 .inner {
	height: 190px;
}
#int-billboard .mobile-view {
	display: none;
}

/* cell 2 */
#int-billboard-cell-2 {
	min-width: 400px;
	position: relative;
}
#int-billboard-cell-2 .inner {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}
#int-billboard .int-billboard-img {
	display: block;
	width: 100%;
	max-width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
#int-billboard .int-billboard-title {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	background: none;
	padding: 0;
}
#int-billboard h1#page-title {
	display: inline-block;
	margin-bottom: 0;
}

/* ------ billboard Content ------ */
#int-billboard .int-billboard-content {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	max-width: 90%;
	left: 25px;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 0;
}
#int-billboard .int-billboard-title {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	max-width: 100%;
	position: relative;
}

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

@media screen and (max-width: 1200px) {
	#int-billboard h1#page-title {
		font-size: 38px;
	}
}

@media screen and (max-width: 1050px) {
	#int-billboard-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	#int-billboard .int-billboard-content {
		height: 321px;
		-webkit-transform: unset;
		-ms-transform: unset;
		transform: unset;
		top: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	#int-billboard-cell-1 .inner {
		height: 321px;
	}
	#int-billboard #int-billboard-cell-2 {
		padding-top: 0;
	}
	#int-billboard-cell-2 .inner {
		position: relative;
		width: 100%;
		right: 0;
	}
	#int-billboard .int-billboard-img {
		margin-top: 0;
	}
}

@media screen and (max-width: 950px) {
	body.single-practice-area #int-billboard-container {
		max-width: 100% !important;
	}
	#int-billboard #int-billboard-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;
	}
	#int-billboard-cell-1 .inner {
		height: auto;
		padding: 0;
	}
	#int-billboard-cell-2 .inner {
		bottom: unset;
	}
	#int-billboard .int-billboard-content {
		height: auto;
		display: block;
		padding: 25px;
		text-align: left;
		position: static;
		-webkit-transform: unset;
		-ms-transform: unset;
		transform: unset;
		margin: 0 auto;
	}
	#int-billboard .int-billboard-img {
		position: static;
		max-height: unset;
		margin: 0 auto;
		width: 100%;
		height: auto;
	}
	#int-billboard-cell-2 .inner {
		padding: 0;
	}
}

@media screen and (max-width: 550px) {
	#int-billboard .int-billboard-title {
		width: 100%;
	}
	#int-billboard .int-billboard-img {
		max-width: unset;
		width: 100%;
		height: auto;
		-o-object-fit: cover;
		object-fit: cover;
		max-height: 300px;
	}
	#int-billboard-cell-2 .inner {
		padding: 0;
	}
	#int-billboard-cell-2 {
		min-width: 100%;
	}
}
/* #endregion Int-billboard */
/* #endregion Single Practice Areas Pages */

/* ======================================== *
      #region Single Attorney Page CSS
 * ======================================== */
#attorney-bio-wrapper {
	background: url('../images/atty_bio_title_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 img {
	display: block;
	margin-top: 50px;
}

/* ------ cell 1 ------ */
#attorney-bio-cell-2 {
	vertical-align: top;
}
#attorney-bio-cell-2 .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: 12px;
	margin-bottom: 15px;
}
.attorney-bio-info h1#page-title {
	font-size: 30px !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 rgba(255, 255, 255, 0.3);
	padding-right: 12px;
}
.attorney-bio-info .attorney-titles a {
	color: #fff;
	font-size: 20px;
	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: #fff;
	font-weight: 400;
}
.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: 16px;
	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';
}

@media screen and (max-width: 1235px) {
	.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: 5px;
	}
}

@media screen and (max-width: 1150px) {
	#attorney-bio-wrapper {
		height: auto;
	}
	#attorney-bio-cell-2 .inner {
		min-height: 397px;
	}
	#attorney-bio-cell-1 img {
		margin-top: 0;
	}
	.attorney-bio-info .attorney-page-title .title-section {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.attorney-bio-info h1#page-title {
		border: 0;
		padding-right: 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;
	}
	.attorney-bio-info {
		width: 100%;
		display: block;
		padding: 30px 0 40px;
	}
	.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-page-title .title-section {
		-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;
	}
}

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

/* #endregion Single Attorney Page CSS */

/* ======================================== *
      #region Single Location Page CSS
 * ======================================== */
#location-billboard-container {
	max-width: 100% !important;
}
#location-billboard-row {
	min-height: 450px;
}

/* ---- Cell 1 ---- */
#location-billboard-cell-1 {
	vertical-align: middle;
	background: url('../images/offices_form_bg_3x.jpg') no-repeat center/cover;
}
#location-billboard-cell-1 .inner {
	max-width: 90%;
	margin-right: 0;
	margin-left: auto;
}
#location-billboard-cell-1 .location-title-content {
	padding-left: 50px;
}
#location-billboard-cell-1 h1#page-title {
	display: block;
}

/* ---- Cell 2 ---- */
#location-billboard-cell-2 {
	vertical-align: middle;
}
#location-billboard-cell-2 .inner {
	max-width: 90%;
	margin-left: 0;
	margin-right: auto;
}
/* background images */
.postid-369 #location-billboard-cell-2 {
	background: url('../images/offices_title_image_providence_3x.jpg') no-repeat center/cover;
}
.postid-371 #location-billboard-cell-2 {
	background: url('../images/offices_title_image_boston_3x.jpg') no-repeat center/cover;
}
.postid-373 #location-billboard-cell-2 {
	background: url('../images/offices_title_image_westborough_3x.jpg') no-repeat center/cover;
}
.postid-375 #location-billboard-cell-2 {
	background: url('../images/offices_title_image_denver_3x.jpg') no-repeat center/cover;
}
.postid-377 #location-billboard-cell-2 {
	background: url('../images/offices_title_image_bocaraton_3x.jpg') no-repeat center/cover;
}
/* location info */
#location-billboard-cell-2 .location-info {
	color: #fff;
	margin: 0 auto;
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 25px;
}
#location-billboard-cell-2 .location-info a {
	color: #fff;
}
#location-billboard-cell-2 .location-info .label {
	font-size: 0;
}
#location-billboard-cell-2 .address {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 5px;
}
#location-billboard-cell-2 .location-info .address,
#location-billboard-cell-2 .location-info .fax .value,
#location-billboard-cell-2 .location-info .phone-1 .value a {
	color: #fff;
	font-weight: 700;
	font-size: 20px;
}
#location-billboard-cell-2 .address::before,
#location-billboard-cell-2 .streetAddress::before,
#location-billboard-cell-2 .fax::before,
#location-billboard-cell-2 .phone-1::before {
	color: #fff;
	display: inline-block;
	vertical-align: top;
	font-family: var(--font-awesome);
	font-size: 16px;
	font-weight: 700;
	margin-right: 5px;
}
#location-billboard-cell-2 .address::before {
	content: '\f3c5';
}
#location-billboard-cell-2 .phone-1::before {
	content: '\f879';
	-webkit-transform: rotate(10deg);
	-ms-transform: rotate(10deg);
	transform: rotate(10deg);
}
#location-billboard-cell-2 .fax::before {
	content: '\f1ac';
}
#location-billboard-cell-2 .streetAddress {
	line-height: 22px;
	-ms-flex-item-align: center;
	align-self: center;
	margin-bottom: 5px;
}
#location-billboard-cell-2 .streetAddress::before {
	display: none;
}

/* Body bottom */
#body-bottom-wrapper {
	margin-bottom: 50px;
}
#body-bottom .map-image {
	width: 100%;
	height: 521px;
	-o-object-fit: cover;
	object-fit: cover;
}

@media screen and (min-width: 1750px) {
	#location-billboard-cell-1 .inner {
		max-width: 800px;
	}
	#location-billboard-cell-2 .inner {
		max-width: 800px;
	}
}

@media screen and (max-width: 1050px) {
	#location-billboard-row {
		min-height: unset;
	}
	#location-billboard-cell-1 {
		padding: 25px 0 !important;
	}
	#location-billboard-cell-1 .inner {
		max-width: 90%;
		margin: 0 auto;
	}
	#location-billboard-cell-1 .location-title-content {
		padding-left: 0;
	}
	#location-billboard-cell-2 {
		padding: 50px 0;
	}
	#location-billboard-cell-2 .inner {
		max-width: 90%;
		margin: 0 auto;
	}
	#location-billboard-cell-2 .location-info {
		margin: 0;
	}
}

@media screen and (max-width: 800px) {
	#body-bottom .map-image {
		height: auto;
	}
}

@media screen and (max-width: 500px) {
	#location-billboard-cell-1 .inner {
		max-width: 100%;
	}
	#location-billboard-cell-2 .inner {
		max-width: 100%;
	}
	#body-bottom-cell-1 .inner {
		padding: 0;
	}
	#body-bottom-cell-2 .inner {
		padding: 0;
	}
}

/* #endregion Single Location Page */

/* ======================================== *
      #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 Int Title Section
 * ======================================== */
#int-title-wrapper {
	background: url('../images/int_page_title_bg_3x.jpg') 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;
}
.post-type-archive-attorney .tmf-post .attorney-titles a {
	font-weight: 600;
}
/* #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: -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: var(--accent);
	padding: 35px !important;
	position: absolute;
	width: 35%;
	top: 40px;
	bottom: 40px;
	display: grid;
	place-content: center;
	left: 3%;
	min-width: 290px;
	-webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 11% 100%);
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 11% 100%);
	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%;
	-webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 8% 100%);
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 8% 100%);
}
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%;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		-webkit-clip-path: unset;
		clip-path: unset;
		-webkit-clip-path: polygon(100% 0, 100% 80%, 50% 100%, 0 80%, 0 0);
		clip-path: polygon(100% 0, 100% 80%, 50% 100%, 0 80%, 0 0);
	}
	body #call-to-action .col:nth-child(2) {
		width: 100%;
		padding-left: 50px;
		-webkit-clip-path: unset;
		clip-path: unset;
		margin-top: -25px;
	}
}
/* #endregion Call to Action */

/* ======================================== *
      #region Aside
 * ======================================== */
aside {
	float: right;
	width: 350px;
	margin: 15px;
	padding: 15px 15px 15px 30px;
	background: transparent;
	font-family: var(--body-font);
	font-size: 20px;
	font-weight: 600;
	position: relative;
}
aside::before {
	content: '';
	display: inline-block;
	background: rgba(255, 101, 15, 0.5);
	width: 12px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}
.editor-content aside p {
	font-family: var(--body-font);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5em;
}

@media screen and (max-width: 700px) {
	aside {
		float: none;
		width: 100%;
		margin: 25px 0px;
	}
}

/* #endregion Aside */

/* ======================================== *
      #region Callout
 * ======================================== */
#callout {
	position: relative;
	background: transparent;
	padding: 20px 35px;
	margin: 35px 0;
	border: 12px solid rgba(255, 101, 15, 0.5);
	border-left: 0;
	border-right: 0;
}
#callout h3,
#callout h4 {
	font-family: var(--body-font);
	font-weight: 600;
	font-size: 20px;
	margin: 0 0 10px;
}
#callout p {
	font-family: var(--body-font);
	font-weight: 400;
	font-size: 16px;
}
#callout a {
	text-decoration: none;
	color: #b58d32;
	font-weight: 700;
}
#callout a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 550px) {
	#callout {
		padding: 20px;
	}
}

/* #endregion Callout */

/* ======================================== *
      #region Callout Alt
 * ======================================== */
#callout-alt {
	border: 2px solid #dcdcdb;
	padding: 35px;
	margin-bottom: 25px;
}
#callout-alt p {
	font-weight: 600;
	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 {
  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/offices_form_bg_3x.jpg') no-repeat center/cover;
	padding: 50px 35px;
	text-align: center;
	position: relative;
	outline: 1px solid rgba(255, 255, 255, 0.3);
	outline-offset: -25px;
}
body .tmf-module-22 h3 {
	font-family: var(--body-font);
	font-size: 30px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 25px;
	line-height: 38px;
}
body .tmf-module-22 .gform_legacy_markup_wrapper {
	max-width: 80%;
}

@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-595 {
	margin-top: 50px;
}
.tmf-module-595 .tmf-post {
	padding-bottom: 0;
	border-bottom: 0;
	margin-bottom: 25px;
}
.tmf-module-595 .pa-listing {
	margin-bottom: 15px;
}
.tmf-module-595 .pa-listing:last-child {
	margin-bottom: 0;
}
.tmf-module-595 .pa-listing a {
	display: block;
	padding: 15px;
	border-radius: 0;
	text-decoration: none;
}
.tmf-module-595 .pa-listing a .title {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	-webkit-transition: color 0.3s;
	-o-transition: color 0.3s;
	transition: color 0.3s;
}
.tmf-module-595 .pa-listing a:hover .title {
	color: var(--primary-dark);
}

/* shutter in vertical animation */
.tmf-module-595 .pa-listing a {
	background: var(--accent);
	-webkit-transition: color 0.3s;
	-o-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
}
.tmf-module-595 .pa-listing a::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-dark);
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
	-webkit-transform-origin: 50%;
	-ms-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-transition: 0.3s ease-out;
	-o-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}
.tmf-module-595 .pa-listing a:hover::before {
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
}

/* End Sidebar Practice Areas - sidebar */

/* Latest News- sidebar */
.tmf-module-597 {
	margin-top: 50px;
	background: var(--secondary-light);
	padding: 35px;
	text-align: center;
}
.tmf-module-597 h3 {
	font-size: 30px;
	font-weight: 600;
	font-family: var(--heading-font);
	margin-bottom: 15px;
}
.tmf-module-597 .tmf-buton {
	display: block;
	max-width: -webkit-max-content;
	max-width: -moz-max-content;
	max-width: max-content;
	margin: 25px auto 0;
}
.tmf-module-597 .tmf-post {
	margin-bottom: 0;
	padding-bottom: 0;
}
.tmf-module-597 .tmf-post .title {
	margin-bottom: 15px;
}
.tmf-module-597 .tmf-post .title a {
	text-decoration: none;
	font-size: 20px;
	font-weight: 700;
	color: #000;
}
.tmf-module-597 .tmf-post .title a:hover {
	text-decoration: underline;
}
.tmf-module-597 .tmf-post .read-more {
	color: var(--accent);
	font-weight: 700;
	text-decoration: none;
}
.tmf-module-597 .tmf-post .read-more:hover {
	text-decoration: underline;
}
/* End Latest News- sidebar */

/* #endregion Modules */

/* ======================================== *
      #region Footer Section
 * ======================================== */
#footer-wrapper {
	background: var(--secondary-light);
	padding: 100px 0 50px;
	overflow: hidden;
}
#footer-container {
	max-width: 90%;
}

/* --- Cell 1 --- */
#footer-cell-1 {
	text-align: center;
}
#footer-cell-1 .inner {
	padding-left: 0;
}
#footer-cell-1 h2 {
	margin-bottom: 50px;
}
#footer-cell-1 h3 {
	color: var(--primary);
	font-family: var(--heading-font);
	font-size: 38px;
	font-weight: 600;
	line-height: 1.1em;
	margin: 0 0 20px;
}
#footer-cell-1 .tmf-post .title {
	margin-left: 24px;
}
#footer-cell-1 .business-info a {
	color: #000;
	font-size: 17px;
	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: #000;
	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: #999999;
	display: inline-block;
	vertical-align: top;
	font-family: var(--font-awesome);
	font-size: 16px;
	font-weight: 700;
	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;
	margin-bottom: 5px;
}
#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: 1800px) {
	#footer-container {
		max-width: 1600px;
	}
}

@media screen and (max-width: 1000px) {
	#footer-cell-1 .inner {
		padding: 0;
	}
	#footer-wrapper {
		padding: 50px 0;
	}
}

@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: 500px) {
	#footer-cell-1 .footer-social .social-icons {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 0;
	}
}

/* #endregion Footer Section */

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

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

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

/* ==== copyright bottom ==== */
/* --- cell 1 --- */
#copyright-bottom-cell-1 .inner {
	padding: 0;
}
#copyright #copyright-bottom-cell-1 .disclaimer {
	margin-top: 30px;
	max-width: 600px;
}

/* --- cell 2 --- */
#copyright-bottom-cell-2 .inner {
	padding: 0;
}
#copyright #copyright-bottom-cell-2 .footer-links {
	margin-top: 45px;
	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: 20px;
}
#copyright #copyright-bottom-cell-2 .footer-links a {
	color: var(--primary);
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
}
#copyright #copyright-bottom-cell-2 .payments::before,
#copyright #copyright-bottom-cell-2 .portal::before,
#copyright #copyright-bottom-cell-2 .professionals::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	margin-right: 7px;
	color: var(--accent);
	font-size: 16px;
	font-family: var(--font-awesome);
	font-weight: 600;
}
#copyright #copyright-bottom-cell-2 .portal::before {
	content: '\f30d';
}
#copyright #copyright-bottom-cell-2 .payments::before {
	content: '\f09d';
}
#copyright #copyright-bottom-cell-2 .professionals::before {
	content: '\f30d';
}

@media screen and (max-width: 1200px) {
	#copyright #copyright-bottom-cell-1 .disclaimer {
		max-width: 500px;
	}
}

@media screen and (max-width: 1050px) {
	#copyright {
		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;
	}
	#copyright-bottom-row,
	#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-bottom-cell-1,
	#copyright #copyright-bottom-cell-2,
	#copyright #copyright-cell-1,
	#copyright #copyright-cell-2 {
		text-align: center;
	}
	#copyright #copyright-cell-2 {
		padding-top: 10px;
	}
	#copyright #copyright-bottom-cell-1 .disclaimer {
		max-width: 600px;
		margin: 0 auto;
	}
	#copyright #copyright-bottom-cell-2 .footer-links {
		margin-bottom: 25px;
		margin-top: 0;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media screen and (max-width: 620px) {
	#copyright #copyright-cell-1 span.tmf-shortcode.copyright {
		display: block;
		margin-bottom: 10px;
	}
	#copyright #copyright-cell-1 span.divider.one {
		display: none;
	}
}

@media screen and (max-width: 500px) {
	#copyright #copyright-bottom-cell-2 .footer-links {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

/* #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: #000;
	text-align: center;
	font-family: var(--body-font);
	font-size: 16px;
	font-weight: 700;
	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;
	background: var(--accent);
}
.page-navigation .tmf-button,
.page-navigation .page-numbers {
	background: var(--primary);
	color: #fff;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	line-height: 31px;
	height: auto;
	-webkit-transition: all 0.15s ease-in;
	-o-transition: all 0.15s ease-in;
	transition: all 0.15s ease-in;
}
.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;
}
.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;
}
.tmf-button.tiny {
	font-size: 0.75em;
	padding: 2px 7px;
}

/* ---- Button Animations ---- */
/* -- Outline-out Animation --*/
.tmf-button {
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.tmf-button:before {
	content: '';
	position: absolute;
	border: 2px solid var(--accent);
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	-webkit-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: top, right, bottom, left;
	-o-transition-property: top, right, bottom, left;
	transition-property: top, right, bottom, left;
}
.tmf-button:hover:before,
.tmf-button:focus:before,
.tmf-button:active:before {
	top: -5px;
	right: -5px;
	bottom: -5px;
	left: -5px;
}

/* #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 80px !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(--primary-dark);
	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;
	}
}

/* #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: 30px 0 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: #8f8f8f;
	text-align: center;
	font-size: 14px !important;
	font-weight: 700;
}
.gform_legacy_markup_wrapper textarea::-moz-placeholder,
.gform_legacy_markup_wrapper input::-moz-placeholder {
	color: #8f8f8f;
	text-align: center;
	font-size: 14px !important;
	font-weight: 700;
}
.gform_legacy_markup_wrapper textarea:-ms-input-placeholder,
.gform_legacy_markup_wrapper input:-ms-input-placeholder {
	color: #8f8f8f;
	text-align: center;
	font-size: 14px !important;
	font-weight: 700;
}
.gform_legacy_markup_wrapper textarea::-ms-input-placeholder,
.gform_legacy_markup_wrapper input::-ms-input-placeholder {
	color: #8f8f8f;
	text-align: center;
	font-size: 14px !important;
	font-weight: 700;
}
.gform_legacy_markup_wrapper textarea::placeholder,
.gform_legacy_markup_wrapper input::placeholder {
	color: #8f8f8f;
	text-align: center;
	font-size: 14px !important;
	font-weight: 700;
}
.gform_legacy_markup_wrapper input,
.gform_legacy_markup_wrapper textarea {
	background: #fff;
	color: #000;
}
.gform_legacy_markup_wrapper label.gfield_label {
	color: #fff;
	font-size: 14px !important;
	font-weight: 700 !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: 90% !important;
	}
}

/* #endregion Inputs & Gravity Forms */
