/* ============================================================================ *
        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: #17254e;
	--primary-dark: #050505;
	/* SECONDARY COLORS */
	--secondary: #464646;
	--secondary-light: #f2ede4;
	--secondary-dark: #9c9c9c;
	/* ACCENT COLORS */
	--accent: #6176b3;
	--accent-light: #d5ccbc;
	/* FONTS */
	--heading-font: 'Figtree', sans-serif;
	--body-font: 'Lato', sans-serif;
	--font-awesome: 'Font Awesome 5 Free';
	--font-brands: 'Font Awesome 5 Brands';
	/* HOME HEADINGS */
	/* font: font-style font-varient font-weight font-size/line-height font-family */
	/* font: italic uppercase 600 64px/1.3em var(--heading-font) */
	--home-h1: 700 45px/1.1em var(--heading-font);
	--home-h2: 600 30px/1.3em var(--heading-font);
	--home-h3: 600 30px/1.3em var(--heading-font);
	--home-h4: 600 30px/1.3em var(--heading-font);
	/* INTERIOR HEADINGS */
	--h1: 700 60px/1.1em var(--heading-font);
	--h2: 700 45px/1.3em var(--heading-font);
	--h3: 700 35px/1.3em var(--heading-font);
	--h4: 600 30px/1.3em var(--heading-font);
	/* HEADER */
	--header-bg-color: var(--accent-light);
	--sticky-header-bg-color: var(--accent-light);
	--header-font-size: 17px;
	--header-font-weight: 600;
	--header-link-color: #fff;
	/* LOGOS */
	--logo-width: 317px;
	--logo-height: 114px;
	--sticky-logo-width: 317px;
	--sticky-logo-height: 114px;
}
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	color: #000;
	font-family: var(--body-font);
	font-size: 18px;
	font-weight: 400;
	overflow-x: hidden;
}
a {
	color: var(--accent);
}
a:hover {
	color: var(--accent);
}

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

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

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

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

@media screen and (max-width: 500px) {
	.home h2 {
		font-size: 22px;
	}
}

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

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

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

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

/* #endregion Typography */

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

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

/* site Specific - Breadcrumbs in its own section*/
#breadcrumb-wrapper {
	background: var(--accent-light);
	padding: 20px 0;
}
#breadcrumb-container {
	padding: 0 25px;
}
#breadcrumbs {
	margin: 0;
}
@media screen and (max-width: 700px) {
	#breadcrumb-wrapper {
		display: none;
	}
}
/* #endregion Breadcrumbs */

/* ======================================== *
#region Max Container Width
* ======================================== */
.section-container {
	max-width: 1600px;
}

@media screen and (max-width: 1750px) {
	.section-container {
		max-width: 90%;
	}
}
/* #endregion Max Container Width */

/* ======================================== *
        #region Header Sections
 * ======================================== */
/* ------------------------------- *
    #region Header Section
* ------------------------------- */
#header-wrapper {
	background: var(--header-bg-color);
	padding: 30px 0;
}

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



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

/* ------ cell 2 ------ */
#header-cell-2 .inner {
	padding-left: 0;
	margin-top: 10px;
}
#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: var(--header-link-color);
	font-size: var(--header-font-size);
	font-weight: var(--header-font-weight);
	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;
}
#header .header-text {
	font-size: 30px;
	font-weight: 400;
	line-height: 1.2;
	font-style: italic;
	border: 2px solid var(--accent);
	padding: 15px 0;
	border-left: 0;
	border-right: 0;
}

@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: var(--logo-height);
		-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-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
		gap: 10px;
	}
}

@media screen and (max-width: 950px) {
	#header-wrapper {
/* display:none; */
	}
	#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 Header Nav Section
* ======================================== */
#header-nav-wrapper {
	background: var(--primary);
	padding: 0;
}
#header-nav #primary-nav-wrapper {
	width: 100%;
	font-family: var(--body-font);
	font-weight: 600;
	font-size: 16px;
}
#header-nav #primary-nav-container {
	max-width: 100% !important;
	margin: 0 auto;
}
#header-nav #primary-nav .menu {
	height: 60px;
	display: table;
}
#header-nav #primary-nav .menu > .menu-item > a {
	color: #fff;
	font-family: var(--body-font);
	font-size: 18px;
	line-height: normal;
	font-weight: 600;
	padding: 19px 0;
	text-decoration: none;
}
#header-nav #primary-nav .menu > .menu-item > a:hover {
	background: var(--accent);
}
#header-nav #primary-nav .menu .sub-menu {
	top: 0;
	-webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
	box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}
#header-nav #primary-nav .menu > li.left-edge > div > ul {
	left: inherit;
	right: 0;
}
#header-nav #primary-nav .menu .sub-menu .menu-item {
	background: var(--primary);
}
#header-nav #primary-nav .menu .sub-menu .menu-item > a {
	font-size: 16px;
	padding: 10px 15px;
	color: #fff;
	font-weight: 600;
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}
#header-nav #primary-nav .menu > .menu-item::after {
	content: '';
	display: inline-block;
	background: var(--accent);
	height: 32px;
	width: 1px;
	position: absolute;
	top: 50%;
	right: -1px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
#header-nav #primary-nav .menu > .menu-item:hover::after,
#header-nav #primary-nav .menu > .menu-item:last-child:after {
	display: none;
}

/* #endregion Header Nav Section */

/* ======================================== *
    #region Primary Navigation
* ======================================== */
#primary-nav-container {
	max-width: 100%;
	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: 25px;
}
#primary-nav .menu > .menu-item > a {
	color: var(--header-link-color);
	font-family: var(--body-font);
	font-size: var(--header-font-size);
	font-weight: var(--header-font-weight);
	line-height: normal;
	padding: 19px 0;
	text-decoration: none;
	position: relative;
	height: auto;
	-webkit-transition: 0.2s ease;
	-o-transition: 0.2s ease;
	transition: 0.2s ease;
}

/* ------ 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;
	max-width: 100%;
	background: var(--primary);
	width: 100%;
}
#primary-nav .menu > li.left-edge > div > ul {
	left: inherit;
	right: 0;
}
#primary-nav .sub-menu-columns ul.sub-menu li {
	display: inline-block;
}
#primary-nav .menu .sub-menu .menu-item > a {
	font-size: 16px;
	padding: 10px 15px;
	color: #fff;
	font-weight: 500;
}
#primary-nav .menu .sub-menu .menu-item:hover > a {
	background-color: var(--accent);
	color: #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: auto 0;
	}
	#primary-nav .menu {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

@media screen and (max-width: 950px) {
	#primary-nav-wrapper {
		margin: 0 auto;
	}
}

/* #endregion Primary Navigation */

/* ======================================== *
    #region Mobile Header Section
* ======================================== */
#mobile-header-wrapper {
	display: none;
}
#mobile-nav-container {
	max-width: 100%;
}
#mobile-header-cell-1 .logo {
	width: 155px;
	height: 56px;
}
#mobile-header .header-text {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	font-style: italic;
	border: 2px solid var(--accent);
	padding: 15px 0;
	border-left: 0;
	border-right: 0;
	text-align: center;
	margin-top: 30px;
}
#mobile-header .header-text br {
	display: none;
}

@media screen and (max-width: 950px) {
	#mobile-header-wrapper {
		display: block;
		background: var(--accent-light);
		position: static;
		width: 100%;
		padding: 35px 0;
	}
	#mobile-header-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	#mobile-header-wrapper #mobile-nav-wrapper #mobile-nav {
		background: transparent;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: end;
		padding: 15px 0;
	}
	.hamburger-container {
		max-width: none;
		margin-bottom: 0;
	}
	#mobile-nav .menu-bar {
		width: 35px;
	}
	#mobile-header-wrapper .hamburger,
	#mobile-header-wrapper .hamburger:before,
	#mobile-header-wrapper .hamburger:after {
		background: var(--primary);
	}
	#mobile-header-wrapper .hamburger:before {
		top: 9px;
	}
	#mobile-header-wrapper .hamburger:after {
		top: 18px;
	}
}

@media screen and (max-width: 500px) {
	#mobile-header-container {
		max-width: 100%;
	}
}

/* #endregion Mobile Header Section */

/* ======================================== *
    #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 .mobile-header-button a:active,
#mobile-header-bottom .mobile-header-button a:hover {
	text-decoration: none;
}
#mobile-header-bottom a.mh-button::before {
	border-radius: 50%;
	content: '\f155';
	font-size: 18px;
	font-weight: 700;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 45px;
	height: 45px;
	margin: 0 auto 10px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
#mobile-header-bottom a.phone::before,
#mobile-header-bottom a.email::before,
#mobile-header-bottom a.mh-button::before,
#mobile-header-bottom #mobile-nav .hamburger::before {
	font-family: var(--font-awesome);
}

/* #endregion Mobile Header-Bottom */

/* ======================================== *
  #region Mobile Menu
* ======================================== */
#mobile-nav .mobile-menu-container {
	text-align: left;
}
#mobile-nav .sub-menu {
	-webkit-transition: max-height 200ms ease-out;
	-o-transition: max-height 200ms ease-out;
	transition: max-height 200ms ease-out;
}

/* close */
#mobile-nav .top-part {
	min-height: 50px;
	padding: 15px 25px;
}
#mobile-nav .top-part .mob-cancel-button {
	color: #fff;
	padding-left: 15px;
}

/* links */
#mobile-nav .menu > .menu-item > a {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
}
#mobile-nav .menu > .menu-item:hover {
	background: var(--accent);
}
#mobile-nav .menu > .menu-item:hover a {
	color: #fff;
}
#mobile-nav .mobile-menu .current-menu-item {
	background: transparent;
}
#mobile-nav .mobile-menu .current-menu-item a {
	color: #fff;
}
#mobile-nav .menu .menu-item.display a {
	color: #fff;
}

/* submenu */
#mobile-nav .menu > .menu-item > .sub-menu a {
	color: #fff;
	font-size: 18px !important;
}
#mobile-nav .menu .sub-menu .menu-item {
	padding: 5px 30px;
}
#mobile-nav .menu .menu-item > div > .sub-menu a {
	color: #fff;
	font-size: 16px;
}

/* toggles */
.mob-expand-submenu:before {
	font-family: var(--font-awesome);
}
#mobile-nav .menu-item.display .mob-expand-submenu:before {
	color: #fff;
}
#mobile-nav .menu .menu-item.display > .mob-expand-submenu:before {
	color: #fff;
}
#mobile-nav .menu > .menu-item:hover .mob-expand-submenu:before {
	color: #fff;
}

/* #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 Int Title Section
 * ======================================== */
#int-title-wrapper {
	background: var(--secondary-light);
}
#int-title-wrapper .title-arrow {
	display: none;
}
#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 Body Sections
 * ======================================== */
/* -------------------------
* Home Body Section
* ------------------------- */
#home-body-wrapper {
	padding: 0;
}

.border-wrap {
	text-align: center;
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content;
	margin: 0 auto 35px;
	padding: 15px 0;
	border-top: 2px solid var(--accent-light);
	border-bottom: 2px solid var(--accent-light);
}
.border-wrap h1 {
	margin: 0;
}
.editor-content .border-wrap h2 {
	margin: 0;
}

/* --- cell 1 ---- */
#home-body #home-body-cell-1 .inner {
	padding: 45px 25px;
}
#home-body #home-body-cell-1 h3 {
	color: #3b3c3f;
	font-family: var(--body-font);
	font-size: 24px;
	font-weight: 500;
	margin: 0;
}

/* --- cell 2 ---- */
#home-body #home-body-cell-2 .inner {
	min-width: 370px;
}

@media screen and (max-width: 1050px) {
	#home-body #home-body-cell-1 .inner {
		padding: 45px 25px 20px;
	}
	#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
* ------------------------- */
/* --- cell 1 ---- */
#body #body-cell-1 > .inner {
	padding: 35px 25px;
}
#body #body-cell-1 .tmf-post .content-container {
	padding-bottom: 35px;
}

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

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

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

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

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

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

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

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

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

/* -------------------------
* 404 Body Section - for if h1 is set to white the 404 message wont be invisible
* ------------------------- */
.error404 h1 {
	color: #000;
}

/* #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;
	width: 100%;
	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;
	max-width: 90%;
	margin: 0 auto;
}
#billboard h1 {
	margin: 0;
}

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

@media screen and (max-width: 950px) {
	#billboard .billboard-content-container {
		background: var(--primary);
		-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;
	}
}

@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
*---------------------------*/
#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: 850px;
	}
}

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

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

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

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

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

/* #endregion Homepage Sections*/

/* ======================================== *
      #region Single Pages
 * ======================================== */
/* -------------------------------------- *
      #region Single blog posts
 * -------------------------------------- */
.single-post #int-title h1#page-title {
	font-size: 40px;
}

/* #endregion Single blog posts */

/* -------------------------------------- *
      #region Single Practice Areas Pages
 * -------------------------------------- */
.single-practice-area .tmf-post.medium img.thumbnail.mobile {
	display: none;
}

@media screen and (max-width: 450px) {
	.single-practice-area .tmf-post.medium img.thumbnail.mobile {
		display: block;
		float: unset;
		max-width: 100%;
	}
	.single-practice-area .tmf-post.medium img.thumbnail.not-mobile {
		display: none;
	}
}

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

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

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

@media screen and (max-width: 1500px) {
	#int-billboard h1#page-title {
		font-size: 50px;
		line-height: 1.1;
	}
}

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

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

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

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

/* -------------------------------------- *
      #region Single Attorney Page CSS
 * -------------------------------------- */
#attorney-bio-wrapper {
	background: var(--secondary-light);
	height: 298px;
}
#attorney-bio-cell-1,
#attorney-bio-cell-2 {
	vertical-align: top;
}
.single-attorney #breadcrumb-cell-1 {
	min-width: 425px;
}

/* ------ cell 1 ------ */
#attorney-bio img {
	display: block;
	margin-top: 50px;
}
.attorney-bio-img {
	position: relative;
	z-index: 1;
}

/* ------ cell 2 ------ */
#attorney-bio-cell-2 .inner {
	min-height: 298px;
	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 {
	margin-bottom: 0;
	font-style: normal;
	min-width: -webkit-fit-content;
	min-width: -moz-fit-content;
	min-width: fit-content;
}
.attorney-bio-info .attorney-titles a {
	color: var(--primary);
	font-size: 28px;
	font-weight: 600;
	font-family: var(--body-font);
}
.attorney-bio-info .contact-information {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.attorney-bio-info .contact-information .phone-numbers-wrapper {
	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;
}
.attorney-bio-info .contact-information .email-vcard-wrapper {
	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;
}
.attorney-bio-info .contact-information a,
.attorney-bio-info .icon-container a,
.attorney-bio-info .speaking a {
	color: var(--primary-dark);
	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 .resume .label {
	font-size: 18px;
	font-weight: 400;
	color: var(--primary-dark);
	margin: 0;
	vertical-align: middle;
}
.attorney-bio-info .resume .value {
	background: transparent;
	background-position: unset;
	width: 0;
	height: 0;
	margin-right: 5px;
	display: inline-block;
}

.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 .resume::before {
	content: '\f1c1';
	font-size: 22px;
	margin-right: 5px;
}
.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 ------ */
.at-tabs {
	margin-top: 15px;
}
.etabs {
	display: table;
	margin: 0 !important;
	padding: 0 !important;
	width: 100%;
	border-bottom: 2px solid var(--accent-light);
}
.tab {
	border-right: 0;
	background: transparent;
	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::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 50%;
	width: 60%;
	height: 6px;
	background: var(--primary);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	opacity: 0;
}
.tab.active::after,
.tab:hover::after {
	opacity: 1;
}
.tab a {
	color: #4D5379;
	font-size: 18px;
	font-weight: 700;
	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 {
	padding-top: 0;
	position: relative;
	top: 0;
}
.tab a:hover,
.tab a.active {
	color: var(--accent);
	font-weight: 700;
}
.panel-container .tabcontent {
	padding: 20px 0 35px;
}
.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: 950px) {
	.etabs {
		display: block;
		border: 0;
	}

	.tab {
		border-right: none;
		border-bottom: 2px solid var(--accent-light);
		display: block;
	}
}
/* ------ End Easy Tabs ------ */
@media screen and (max-width: 1200px) {
	.attorney-bio-info h1#page-title {
		font-size: 50px;
	}
}

@media screen and (max-width: 1100px) {
	.attorney-bio-info h1#page-title {
		font-size: 40px;
	}
	.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-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;
	}
}

@media screen and (max-width: 1050px) {
	#attorney-bio-cell-2 .inner {
		padding-left: 0;
	}
	.single-attorney #breadcrumb-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.single-attorney #breadcrumb-cell-1 {
		min-width: 395px;
		display: table-cell;
		width: auto;
	}
	.single-attorney #breadcrumb-cell-2 {
		padding-top: 0;
		width: 100%;
		display: table-cell;
	}
}

@media screen and (max-width: 950px) {
	.single-attorney #breadcrumb-wrapper {
		display: none;
	}
	#attorney-bio-wrapper {
		height: auto;
	}
	#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 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: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.attorney-bio-info {
		width: 100%;
		display: block;
		padding: 25px 0 35px;
	}
	.attorney-bio-info .contact-information {
		text-align: center;
		display: block;
	}
	.attorney-bio-info .phone,
	.attorney-bio-info .fax,
	.attorney-bio-info .email {
		margin-right: 0;
		padding-right: 0;
		display: block;
	}
	.attorney-bio-info .contact-information .phone-numbers-wrapper {
		display: block;
	}
}

/* #endregion Single Attorney Page CSS */

/* #endregion Single Pages */

/* ======================================== *
      #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;
}
.blog .tmf-post.post h2.title {
	font-size: 35px;
}

@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 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 {
	margin-top: 0;
}

@media screen and (max-width: 1400px) {
	.post-type-archive-location #location-cell-1 {
		display: block;
		width: 100%;
	}
	.post-type-archive-location #location-cell-2 {
		display: block;
		width: 100%;
		margin-top: 35px;
	}
}

/* #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 .tmf-taxonomy-list.attorney-titles,
.post-type-archive-attorney .tmf-post.attorney .tmf-taxonomy-list.attorney-titles a {
	font-weight: 500;
}

@media screen and (max-width: 500px) {
	.post-type-archive-attorney .tmf-post.medium img.thumbnail {
		margin-right: 10px;
	}
}

/* #endregion Attorney archive*/

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

/* #endregion Attorney Archive: Category Attorney*/

/* #endregion All Archives*/

/* ======================================== *
      #region Footer Section
 * ======================================== */
#footer-wrapper {
	background: var(--primary);
	padding: 50px 0 50px;
}

/* --- Cell 1 --- */
#footer-cell-1 .footer-title {
	font-family: var(--heading-font);
	font-size: 45px;
	font-weight: 700;
	margin: 0 0 45px;
	color: #fff;
}
#footer-cell-1 .business-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
#footer-cell-1 .business-info a {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
}
#footer-cell-1 .address {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 5px;
}
#footer-cell-1 .business-info .address,
#footer-cell-1 .business-info .fax .value,
#footer-cell-1 .business-info .phone-1 .value a,
#footer-cell-1 .business-info .phone-2 .value a,
#footer-cell-1 .business-info .email .value {
	color: #fff;
	font-weight: 400;
	font-size: 16px;
}
#footer-cell-1 .business-info .fax .value span,
#footer-cell-1 .business-info .phone-1 .value a span,
#footer-cell-1 .business-info .phone-2 .value a span {
	color: var(--accent);
}
#footer-cell-1 .address::before,
#footer-cell-1 .tmf-post.small.location .streetAddress::before,
#footer-cell-1 .tmf-post.small.location .fax::before,
#footer-cell-1 .tmf-post.small.location .phone-1::before,
#footer-cell-1 .tmf-post.small.location .phone-2::before,
#footer-cell-1 .tmf-post.small.location .email::before {
	color: var(--accent);
	display: inline-block;
	vertical-align: top;
	font-family: var(--font-awesome);
	font-size: 18px;
	font-weight: 700;
	margin-right: 5px;
}
#footer-cell-1 .address::before {
	content: '\f3c5';
}
#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 .tmf-post.location .streetAddress br {
	/* display: none; */
}

@media screen and (max-width: 1400px) {
	#footer-cell-1 .tmf-post.location .streetAddress br {
		/* display: block; */
	}
}

@media screen and (max-width: 1220px) {
	#footer-cell-1 .business-info {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
	}
}

@media screen and (max-width: 1000px) {
	#footer-cell-1 {
		text-align: center;
	}
	#footer-cell-1 .inner {
		padding: 0;
	}
	#footer-wrapper {
		padding: 45px 0 20px;
	}
	#footer-cell-1 .business-info {
		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;
	}
	#footer-cell-1 .address {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media screen and (max-width: 750px) {
	#footer-cell-1 .business-info .streetAddress .address-2 {
		display: block;
	}
	#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;
	}
	#footer-cell-1 .footer-title {
		font-size: 35px;
	}
}

/* #endregion Footer Section */

/* ======================================== *
      #region Copyright Section
 * ======================================== */
#copyright-wrapper {
	background: var(--primary);
	overflow: hidden;
}
#copyright {
	padding: 35px 0;
}
#copyright p {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	margin: 0;
}
#copyright p a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
}
#copyright a:hover {
	text-decoration: underline;
}
#copyright .divider {
	margin: 0 5px !important;
	color: var(--accent);
}
#copyright .copy-left-disclaimer {
	margin-bottom: 5px;
}

/* --- cell 1 --- */
#copyright #copyright-cell-1 {
	vertical-align: middle;
}
#copyright #copyright-cell-1 .inner {
	padding-right: 0;
}
#copyright #copyright-cell-1 br:first-of-type {
	display: none;
}
#copyright #copyright-cell-1 p:first-of-type {
	margin-bottom: 5px;
}
#copyright #copyright-cell-1 p:last-of-type a {
	font-weight: 700;
}

/* --- cell 2 --- */
#copyright #copyright-cell-2 {
	vertical-align: middle;
	text-align: right;
}
#copyright-cell-2 .inner {
	padding-left: 0;
}
#copyright #copyright-cell-2 p:first-of-type {
	margin-bottom: 5px;
}

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

@media screen and (max-width: 775px) {
	#copyright {
		padding: 25px 0;
	}
}

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

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

/* #endregion Copyright Section */

/* ======================================== *
      #region Editor Blocks
 * ======================================== */
/* -------------------------------------- *
      #region Aside
 * -------------------------------------- */
aside {
	float: right;
	width: 350px;
	margin: 15px;
	padding: 15px;
	background: transparent;
	color: var(--primary);
	font-family: var(--heading-font);
	font-size: 30px;
	font-weight: 600;
	position: relative;
}
.editor-content aside h3,
.editor-content aside h4,
.editor-content aside p {
	font-family: var(--heading-font);
	font-size: 30px;
	font-weight: 600;
	line-height: 1.1;
	color: var(--primary);
	margin: 0;
}
@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 200px;
	margin: 35px 0;
}
#callout::before {
	content: '';
	display: inline-block;
	background: url('../images/cta_anchor_3x.png') no-repeat;
	background-size: 180px;
	width: 180px;
	height: 112px;
	position: absolute;
	left: 0;
	top: 0;
}
#callout h3,
#callout h4 {
	font-family: var(--heading-font);
	font-weight: 600;
	font-size: 30px;
	margin: 0;
	color: var(--primary);
	line-height: 1.1;
	border-top: 2px solid var(--accent-light);
	border-bottom: 2px solid var(--accent-light);
	padding: 15px 0;
}
.editor-content #callout p {
	font-family: var(--heading-font);
	font-weight: 600;
	font-size: 30px;
	color: var(--primary);
	line-height: 1.1;
	border-top: 2px solid var(--accent-light);
	border-bottom: 2px solid var(--accent-light);
	padding: 15px 0;
}
#callout a {
	text-decoration: none;
	color: var(--primary);
	font-weight: 700;
}
#callout a:hover {
	text-decoration: underline;
}

/* #endregion Callout */

/* -------------------------------------- *
      #region Callout Alt
 * -------------------------------------- */
#callout-alt {
	border: 1px solid var(--accent-light);
	border-bottom: 3px solid var(--accent-light);
	padding: 35px;
	margin-bottom: 25px;
}
#callout-alt p {
	font-weight: 600;
	font-size: 30px;
	font-family: var(--heading-font);
	color: var(--primary);
}
#callout-alt ul {
	padding-left: 25px;
	margin-bottom: 0;
}
#callout-alt ul li {
	margin-bottom: 0;
}

/* #endregion  Callout Alt */

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

/* #endregion Blockquote */

/* #endregion Editor Blocks */

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

/* #endregion Modules */

/* ======================================== *
      #region Buttons
 * ======================================== */
/* read more links */
.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;
}
/* read more button */
.tmf-post.medium a.read-more-button {
	margin-top: 15px;
}
.tmf-post.medium a.read-more-button:hover {
	text-decoration: underline;
	background: var(--primary);
	color: #fff;
}
/* all buttons */
.tmf-button,
input[type='submit'] {
	position: relative;
	display: inline-block;
	padding: 5px 25px;
	color: #fff;
	text-align: center;
	font-family: var(--body-font);
	font-size: 17px;
	font-weight: 500;
	line-height: normal;
	background: var(--accent);
	border: 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,
input[type='submit']:active {
	text-decoration: none;
}

/* form button */
.gform_wrapper .tmf-button,
.gform_wrapper input[type='submit'] {
	border: none;
	background: var(--primary);
	color: #fff;
}
/* pagination buttons */
.page-navigation .tmf-button,
.page-navigation .page-numbers {
	background: var(--accent);
	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;
	-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(--primary);
}
.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 {
	background: var(--primary);
}
.page-navigation .last.tmf-button::before,
.page-navigation .last.tmf-button::after {
	display: none;
}
.page-numbers.current {
	background: var(--primary);
}
.tmf-button.large {
	font-size: 1.1em;
	padding: 7px 25px;
}
.tmf-button.medium {
	font-size: 0.95em;
	padding: 7px 25px;
}
.tmf-button.small {
	font-size: 0.85em;
	padding: 3px 15px;
	margin-top: 15px;
}
.tmf-button.tiny {
	font-size: 0.75em;
	padding: 2px 7px;
}

/* #endregion Buttons */

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

/* #endregion Miscellaneous */

/* ======================================== *
      #region Inputs & Gravity Forms
 * ======================================== */
input[type='text']::-webkit-input-placeholder,
input[type='tel']::-webkit-input-placeholder,
input[type='email']::-webkit-input-placeholder,
input[type='url']::-webkit-input-placeholder,
input[type='number']::-webkit-input-placeholder,
input[type='checkbox']::-webkit-input-placeholder,
input[type='radio']::-webkit-input-placeholder,
input[type='date']::-webkit-input-placeholder,
input[type='time']::-webkit-input-placeholder,
input[type='hidden']::-webkit-input-placeholder,
input[type='password']::-webkit-input-placeholder,
input[type='file']::-webkit-input-placeholder,
input[type='range']::-webkit-input-placeholder,
input[type='color']::-webkit-input-placeholder,
input[type='search']::-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,
input[type='url']::-moz-placeholder,
input[type='number']::-moz-placeholder,
input[type='checkbox']::-moz-placeholder,
input[type='radio']::-moz-placeholder,
input[type='date']::-moz-placeholder,
input[type='time']::-moz-placeholder,
input[type='hidden']::-moz-placeholder,
input[type='password']::-moz-placeholder,
input[type='file']::-moz-placeholder,
input[type='range']::-moz-placeholder,
input[type='color']::-moz-placeholder,
input[type='search']::-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,
input[type='url']:-ms-input-placeholder,
input[type='number']:-ms-input-placeholder,
input[type='checkbox']:-ms-input-placeholder,
input[type='radio']:-ms-input-placeholder,
input[type='date']:-ms-input-placeholder,
input[type='time']:-ms-input-placeholder,
input[type='hidden']:-ms-input-placeholder,
input[type='password']:-ms-input-placeholder,
input[type='file']:-ms-input-placeholder,
input[type='range']:-ms-input-placeholder,
input[type='color']:-ms-input-placeholder,
input[type='search']:-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,
input[type='url']::-ms-input-placeholder,
input[type='number']::-ms-input-placeholder,
input[type='checkbox']::-ms-input-placeholder,
input[type='radio']::-ms-input-placeholder,
input[type='date']::-ms-input-placeholder,
input[type='time']::-ms-input-placeholder,
input[type='hidden']::-ms-input-placeholder,
input[type='password']::-ms-input-placeholder,
input[type='file']::-ms-input-placeholder,
input[type='range']::-ms-input-placeholder,
input[type='color']::-ms-input-placeholder,
input[type='search']::-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,
input[type='url']::placeholder,
input[type='number']::placeholder,
input[type='checkbox']::placeholder,
input[type='radio']::placeholder,
input[type='date']::placeholder,
input[type='time']::placeholder,
input[type='hidden']::placeholder,
input[type='password']::placeholder,
input[type='file']::placeholder,
input[type='range']::placeholder,
input[type='color']::placeholder,
input[type='search']::placeholder,
textarea::placeholder,
select::placeholder {
	color: #333333;
	text-align: center;
}
input[type='text'],
input[type='tel'],
input[type='email'],
input[type='url'],
input[type='number'],
input[type='checkbox'],
input[type='radio'],
input[type='date'],
input[type='time'],
input[type='hidden'],
input[type='password'],
input[type='file'],
input[type='range'],
input[type='color'],
input[type='search'],
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;
}
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;
}
.gform-field-label,
.gfield_label {
	color: #333333;
}
.gfield_description {
	color: #333333;
}
h2.gsection_title {
	color: #333333;
}

input:focus,
input[type='text']:focus,
input[type='tel']:focus,
input[type='email']:focus,
textarea:focus {
	border: 1px solid #cccccc;
}
a:focus-visible,
input:focus-visible,
button:focus-visible,
textarea:focus-visible {
	outline: none;
}

/* Gravity Forms */
.gform_legacy_markup_wrapper {
	margin: 0 auto !important;
}
.gform_legacy_markup_wrapper .gform_footer {
	padding: 0 !important;
	margin: 0 !important;
}
.gform_wrapper #gform_1 li {
	padding-right: 0;
}
.gform_legacy_markup_wrapper textarea::-webkit-input-placeholder,
.gform_legacy_markup_wrapper input::-webkit-input-placeholder {
	color: #000;
	text-align: left;
	font-size: 13px !important;
}
.gform_legacy_markup_wrapper textarea::-moz-placeholder,
.gform_legacy_markup_wrapper input::-moz-placeholder {
	color: #000;
	text-align: left;
	font-size: 13px !important;
}
.gform_legacy_markup_wrapper textarea:-ms-input-placeholder,
.gform_legacy_markup_wrapper input:-ms-input-placeholder {
	color: #000;
	text-align: left;
	font-size: 13px !important;
}
.gform_legacy_markup_wrapper textarea::-ms-input-placeholder,
.gform_legacy_markup_wrapper input::-ms-input-placeholder {
	color: #000;
	text-align: left;
	font-size: 13px !important;
}
.gform_legacy_markup_wrapper textarea::placeholder,
.gform_legacy_markup_wrapper input::placeholder {
	color: #000;
	text-align: left;
	font-size: 13px !important;
}
.gform_legacy_markup_wrapper textarea:focus::-webkit-input-placeholder,
.gform_legacy_markup_wrapper input:focus::-webkit-input-placeholder {
	color: transparent !important;
}
.gform_legacy_markup_wrapper textarea:focus::-moz-placeholder,
.gform_legacy_markup_wrapper input:focus::-moz-placeholder {
	color: transparent !important;
}
.gform_legacy_markup_wrapper textarea:focus:-ms-input-placeholder,
.gform_legacy_markup_wrapper input:focus:-ms-input-placeholder {
	color: transparent !important;
}
.gform_legacy_markup_wrapper textarea:focus::-ms-input-placeholder,
.gform_legacy_markup_wrapper input:focus::-ms-input-placeholder {
	color: transparent !important;
}
.gform_legacy_markup_wrapper textarea:focus::placeholder,
.gform_legacy_markup_wrapper input:focus::placeholder {
	color: transparent !important;
}
.gform_legacy_markup_wrapper input,
.gform_legacy_markup_wrapper textarea {
	background: #fff;
	color: #000;
}
.gform_legacy_markup_wrapper select {
	color: #000;
	font-size: 13px !important;
}
body .gform_wrapper.tmf-form_wrapper ul li.field_description_below div.ginput_container_checkbox {
	margin-top: 0;
	margin-bottom: 0;
}
.gform_legacy_markup_wrapper label.gfield_label {
	color: #fff;
	font-size: 13px !important;
	font-weight: 400 !important;
	margin-left: 11px;
}
body .gform_legacy_markup_wrapper ul li.gfield {
	margin-top: 0 !important;
}
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 */
/* ======================================== *
        #region badges Sections
 * ======================================== */
/* ------------------------------- *
    #region Badges Section
* ------------------------------- */
.logo-grid {
  position: absolute!important;
  top: -20px!important;
  left: 30%!important;
  transform: translateX(-50%)!important;
  display: grid!important;
  grid-auto-flow: column!important;
  gap: 2rem!important;
}

.logo-grid img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

@media (max-width: 1300px) {
  .logo-grid {
    display: none !important;
  }
}

.home .logo-grid {
  display: none !important;
}

/* #endregion */