/* ============================================================================ *
        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: #013048;
	/* SECONDARY COLORS */
	--secondary: #e1e1e1;
	/* ACCENT COLORS */
	--accent: #fbb03c;
	/* FONTS */
	--heading-font: 'magister', sans-serif;
	--body-font: 'acumin-pro', sans-serif;
	--font-awesome: 'Font Awesome 5 Pro';
	--font-brands: 'Font Awesome 5 Brands';
	/* HOME HEADINGS */
	/* font: font-style font-varient font-weight font-size/line-height font-family */
	/* font: italic uppercase 600 64px/1.3em var(--heading-font) */
	--home-h1: 700 80px/1.1em var(--heading-font);
	--home-h2: 700 50px/1.1em var(--heading-font);
	--home-h3: 700 35px/1.1em var(--heading-font);
	--home-h4: 700 25px/1.1em var(--heading-font);
	--home-h5: 700 20px/1.1em var(--heading-font);
	/* INTERIOR HEADINGS */
	--h1: 700 60px/1.1em var(--heading-font);
	--h2: 700 50px/1.1em var(--heading-font);
	--h3: 700 35px/1.1em var(--heading-font);
	--h4: 700 25px/1.1em var(--heading-font);
	--h5: 700 20px/1.1em var(--heading-font);
	/* HEADER */
	--header-bg-color: var(--primary);
	--sticky-header-bg-color: var(--primary);
	--header-font-size: 16px;
	--header-font-weight: 700;
	--header-link-color: #fff;
	/* LOGOS */
	--logo-width: 298px;
	--logo-height: 100px;
	--sticky-logo-width: 298px;
	--sticky-logo-height: 100px;
}
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	color: #050505;
	font-family: var(--body-font);
	font-size: 18px;
	font-weight: 300;
	overflow-x: hidden;
}
a {
	color: var(--primary);
	font-weight: 700;
}
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: #fff;
}
h1 {
	font: var(--h1);
	color: #fff;
}

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

@media screen and (max-width: 500px) {
	.home h1 {
		font-size: 50px;
	}
	h1 {
		font-size: 40px;
	}
}

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

/* -------------------------------- *
        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: 35px;
	}
	h2 {
		font-size: 35px;
	}
}

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

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

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

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

/* #endregion Typography */

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

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

/* #endregion Breadcrumbs */

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

@media screen and (max-width: 1750px) {
	.section-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(--sticky-header-bg-color);
	border-bottom: none;
	min-height: auto;
	width: 100%;
	z-index: 3;
	-webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
	box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
	padding: 20px 0;
}
/* Handles sticky when admin Bar is showing */
body #header-wrapper.sticky.sticky_animate {
	top: 0;
}
body.admin-bar #header-wrapper.sticky.sticky_animate {
	top: 32px;
}

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

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

/* ------ 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 25px 0 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: var(--sticky-logo-height);
}
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;
	gap: 25px;
}
body #header-wrapper.sticky #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;
	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;
}
body #header-wrapper.sticky #primary-nav .menu li a:hover {
	color: var(--accent);
}
#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: var(--header-link-color);
	text-decoration: none;
	font-size: var(--header-font-size);
	font-weight: var(--header-font-weight);
}
#header-wrapper.sticky #header-cell-2 .sticky-view .phone-1 a:hover {
	text-decoration: none;
	color: var(--accent);
}

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

@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(--header-bg-color);
	padding: 30px 0;
}
.home #header-wrapper {
	background: transparent;
	position: absolute;
	width: 100%;
	z-index: 2;
	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: none;
	color: var(--accent);
}
#header .header-top .email::before {
	content: '\f0e0';
}
#header .sticky-view .phone-1 a::before,
#header .mobile-view .phone-1 a::before,
#header .desktop-view .phone-1 a::before {
	content: '\f879';
	display: inline-block;
	vertical-align: middle;
	margin-right: 7px;
	-webkit-transform: rotate(10deg);
	-ms-transform: rotate(10deg);
	transform: rotate(10deg);
	color: var(--accent);
	font-size: 16px;
	font-family: var(--font-awesome);
	font-weight: 600;
}
#header .mobile-logo-view {
	display: none;
}

@media screen and (max-width: 1200px) {
	.home #header-wrapper {
		padding: 20px 0;
	}
	#header-cell-1 {
		margin-bottom: 0;
	}
	#header-cell-2 {
		padding-top: 0;
	}
	#header-cell-2 .inner {
		padding: 0;
		display: block;
	}
	.header-top-row {
		display: table;
		width: 100%;
	}
	#header .main-logo {
		display: table-cell;
		vertical-align: top;
	}
	#header .main-logo {
		width: 300px;
	}
	#header-cell-2 .desktop-view {
		display: none;
	}
	#header-cell-1 .mobile-view {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		height: 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-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) {
	.home .header-billboard-wrap .header-wrap {
		position: relative;
	}
	#header-cell-1 .inner {
		padding-right: 25px;
	}
	#header .main-logo {
		display: none;
	}
	#header .mobile-logo-view {
		display: block;
		width: 100%;
		text-align: center;
		padding: 15px 0;
	}
	#header-cell-2 {
		position: unset;
	}
	#header-container {
		max-width: 100%;
	}
	#header-cell-1 .mobile-view {
		display: none;
	}
	#header-cell-2 .inner {
		margin-top: 0;
	}
	#header-cell-1 {
		margin-bottom: 0;
	}
}

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

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

/* ------ Menu Item Hover animation ------ */
#primary-nav .menu > .menu-item > a:hover {
	color: var(--accent);
}

/* ------ 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: #fff;
	font-size: 20px;
	font-family: var(--font-awesome);
	font-weight: 700;
	display: inline-block;
	position: static;
	background: none;
	height: 0;
	-webkit-transition: unset;
	-o-transition: unset;
	transition: unset;
	width: 100%;
}
#primary-nav .menu > .menu-item.home-icon a:hover::before {
	background: none;
	height: 0;
}
#primary-nav .menu > .menu-item.home-icon a::after {
	display: none;
}

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

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

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

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

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

/* #endregion Primary Navigation */

/* ======================================== *
    #region Mobile Header Bottom Section
* ======================================== */
#mobile-header-bottom {
	padding: 15px 0 15px;
}
#mobile-header-bottom-row {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
#mobile-header-bottom-cell-1,
#mobile-header-bottom-cell-2,
#mobile-header-bottom-cell-3,
#mobile-header-bottom-cell-4 {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 100%;
	width: auto;
	padding: 0 15px;
}
#mobile-header-bottom .location-phone a,
#mobile-header-bottom .location-email a,
#mobile-header-bottom .location-phone a,
#mobile-header-bottom .location-email a,
#mobile-header-bottom .mobile-header-button a,
#mobile-header-bottom .menu-bar-container .menu-label {
	font-family: var(--body-font);
	color: #fff;
	font-weight: 600;
	font-size: 17px;
	line-height: normal;
	display: block;
}
#mobile-header-bottom .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: var(--primary);
}
#mobile-nav .mobile-menu .current-menu-item {
	background: transparent;
}
#mobile-nav .menu .menu-item.display a {
	color: var(--primary);
}

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

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

/* #endregion Mobile Menu */

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

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

/* #endregion Mobile Nav Menu Multiple Locations*/

/* #endregion Header Sections */

/* ======================================== *
      #region Body Sections
 * ======================================== */
/* -------------------------
* Home Body Section
* ------------------------- */
#home-body-wrapper {
	padding: 100px 0 50px;
}

/* --- cell 1 ---- */
#home-body #home-body-cell-1 .inner {
	padding: 0 25px 45px;
}
#home-body h2 {
	margin-top: 0;
}

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

@media screen and (max-width: 1050px) {
	#home-body-wrapper {
		padding: 50px 0;
	}
	#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;
	margin-bottom: 50px;
}
#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;
}
.single-attorney #body-cell-1 #breadcrumbs {
	margin-bottom: 25px;
}

/* --- cell 2 ---- */
.single-attorney #body-cell-2 {
	width: 457px;
	max-width: 457px;
	min-width: 457px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-bottom: 25px;
}
.single-attorney #body-cell-2 .attorney-badge {
	text-align: center;
	margin-bottom: 50px;
}
.single-attorney #body-cell-2 .attorney-badge img {
	width: 100%;
	height: auto;
	max-width: 320px;
}
.single-attorney #body #body-cell-2 .inner {
	padding: 135px 25px 35px;
}

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

@media screen and (max-width: 500px) {
	.single-attorney #body #body-cell-2 .inner {
		padding: 35px 0 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;
}
.section-container#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;
	max-width: 90%;
	margin: 0 auto;
}
#billboard h1 {
	margin: 0 0 25px;
	line-height: 1.2;
}
#billboard p {
	color: #fff;
	max-width: 400px;
}
#billboard .tmf-button {
	margin-top: 25px;
}

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

@media screen and (max-width: 950px) {
	#billboard .billboard-content-container {
		padding: 25px;
		width: 100%;
		max-width: 100%;
		top: 50%;
		text-align: center;
	}
	#billboard .billboard-content {
		background: transparent;
		padding: 0;
		max-width: 100%;
		margin: 0 auto;
	}
	#billboard p {
		max-width: 100%;
	}
	#billboard .tmf-button {
		display: none;
	}
}

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

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

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

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

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

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

@media screen and (max-width: 950px) {
	#billboard .billboard-slides {
		height: 1000px;
	}
	#billboard .desktop-view {
		display: none;
	}
	#billboard .mobile-view {
		display: block;
	}
}
/* #endregion Billboard */

/* --------------------------- *
      #region Home CTA
 * --------------------------- */
#home-cta-wrapper {
	padding: 0 0 50px;
}

#home-cta .tmf-module-320 {
	position: relative;
	padding: 50px 35px 50px 120px;
	margin: 0 0 0 80px;
	border: 2px solid var(--primary);
	border-radius: 5px;
	background: url('../images/home_cta_box_3x.jpg') no-repeat center/cover;
}
#home-cta .tmf-module-320::before {
	content: '';
	display: inline-block;
	width: 174px;
	height: 148px;
	position: absolute;
	left: -87px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background: url('../images/home_cta_logo_3x.png') no-repeat;
	background-size: 174px;
}
#home-cta .tmf-module-320 h3,
#home-cta .tmf-module-320 h4 {
	font-family: var(--body-font);
	font-weight: 300;
	font-size: 25px;
	margin: 0;
	line-height: 1.2;
	max-width: 900px;
}
#home-cta .tmf-module-320 p {
	font-family: var(--body-font);
	font-weight: 300;
	font-size: 25px;
	line-height: 1.2;
	max-width: 900px;
}
#home-cta .tmf-module-320 a {
	text-decoration: none;
	/* color: var(--accent);
	font-weight: 700; */
}
#home-cta .tmf-module-320 a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 750px) {
	#home-cta .tmf-module-320 {
		padding: 80px 25px 50px 25px;
		margin: 0;
	}
	#home-cta .tmf-module-320::before {
		width: 120px;
		height: 102px;
		background-size: 120px;
		left: 50%;
		top: -51px;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}

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

/* #endregion Home CTA */

/* -------------------------
*  #region Home Practice Areas Section
* ------------------------- */
#home-practice-areas-wrapper {
	background: url('../images/home_practice_areas_bg_3x.jpg') no-repeat center/cover;
	padding: 50px 0 100px;
}
#home-practice-areas h2 {
	text-align: center;
	margin-bottom: 50px;
}
#home-practice-areas .tmf-post-list {
	width: 100%;
	max-width: 1550px;
	margin: 0 auto;
	clear: both;
	padding: 0 0 15px;
}
#home-practice-areas .tmf-post {
	margin: 0;
	padding: 0;
	border: 0;
	border-right: 1px solid #b4b1b1;
}
#home-practice-areas .tmf-post:hover {
	border: 0;
}
#home-practice-areas .tmf-post.last-post {
	border: 0;
}
#home-practice-areas .slick-track {
	margin: 0 auto;
}
#home-practice-areas .slick-slide {
	padding: 20px 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	float: none;
	display: inline-block !important;
	vertical-align: middle;
	text-align: center;
}
#home-practice-areas .slick-list {
	overflow-x: scroll;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 55px;
}
#home-practice-areas button {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}
#home-practice-areas .slick-list::-webkit-scrollbar-track {
	background-color: var(--secondary);
	background-clip: padding-box;
}
#home-practice-areas .slick-list::-webkit-scrollbar {
	-webkit-appearance: none;
	height: 14px;
}
#home-practice-areas .slick-list::-webkit-scrollbar-thumb {
	background-color: var(--primary);
	height: 14px;
	border-radius: 10px;
}
#home-practice-areas .slick-list::-webkit-scrollbar-thumb:hover {
	cursor: pointer;
}

#home-practice-areas .tmf-post a {
	display: block;
	background: var(--secondary);
	padding: 35px 50px;
	color: var(--primary);
	text-decoration: none;
	-webkit-transition: 0.2s ease-in;
	-o-transition: 0.2s ease-in;
	transition: 0.2s ease-in;
	-webkit-box-shadow: inset 0px 5px 5px rgba(0, 0, 0, 0.1), inset 0px -5px 5px rgba(0, 0, 0, 0.1);
	box-shadow: inset 0px 5px 5px rgba(0, 0, 0, 0.1), inset 0px -5px 5px rgba(0, 0, 0, 0.1);
}
#home-practice-areas .tmf-post a .pa-icon {
	width: 70px;
	height: 68px;
	background: url('../images/pa-icon-sprite_2x.png') no-repeat;
	background-size: 600px;
	margin: 0 auto 15px;
	background-position: 0 0;
}
#home-practice-areas .tmf-post a .title {
	font-family: var(--heading-font);
	font-size: 25px;
	font-weight: 700;
	text-align: center;
}
#home-practice-areas .tmf-post a:hover {
	background: var(--primary);
	-webkit-transform: scaleY(1.15);
	-ms-transform: scaleY(1.15);
	transform: scaleY(1.15);
	border-radius: 15px;
}
#home-practice-areas .tmf-post a:hover .title {
	color: #fff;
}
#home-practice-areas .tmf-post a:hover .pa-icon {
	-webkit-transform: scale(1.45, 1.25);
	-ms-transform: scale(1.45, 1.25);
	transform: scale(1.45, 1.25);
}

/* icons */
#home-practice-areas .tmf-post .adoption a .pa-icon {
	background-position: -344px 0;
	width: 63px;
}
#home-practice-areas .tmf-post .adoption a:hover .pa-icon {
	background-position: -346px -80px;
}
#home-practice-areas .tmf-post .bankruptcy a .pa-icon {
	background-position: -431px 0;
	width: 62px;
}
#home-practice-areas .tmf-post .bankruptcy a:hover .pa-icon {
	background-position: -434px -83px;
}
#home-practice-areas .tmf-post .family-law a .pa-icon {
	background-position: -255px 0;
	width: 61px;
}
#home-practice-areas .tmf-post .family-law a:hover .pa-icon {
	background-position: -257px -78px;
}
#home-practice-areas .tmf-post .estate-administration a .pa-icon {
	background-position: -173px 0;
}
#home-practice-areas .tmf-post .estate-administration a:hover .pa-icon {
	background-position: -173px -78px;
}
#home-practice-areas .tmf-post .estate-planning a .pa-icon {
	background-position: -99px 0;
	width: 60px;
}
#home-practice-areas .tmf-post .estate-planning a:hover .pa-icon {
	background-position: -98px -78px;
}
#home-practice-areas .tmf-post .personal-injury a .pa-icon {
	background-position: -519px 0;
	width: 60px;
}
#home-practice-areas .tmf-post .personal-injury a:hover .pa-icon {
	background-position: -522px -82px;
	width: 60px;
}
#home-practice-areas .tmf-post .real-estate-law a .pa-icon {
	background-position: 0 0;
	width: 68px;
}
#home-practice-areas .tmf-post .real-estate-law a:hover .pa-icon {
	background-position: 0 -76px;
}

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

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

@media screen and (max-width: 1570px) {
	#home-practice-areas .tmf-post-list {
		max-width: 1300px;
	}
	#home-practice-areas .tmf-post a {
		height: 215px;
	}
}

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

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

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

@media screen and (max-width: 1350px) {
	#home-practice-areas .tmf-post-list {
		max-width: 1050px;
	}
	#home-practice-areas .tmf-post a {
		height: auto;
	}
}

@media screen and (max-width: 1250px) {
	#home-practice-areas .tmf-post-list {
		max-width: 1000px;
	}
	#home-practice-areas .tmf-post a {
		height: 215px;
	}
}

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

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

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

@media screen and (max-width: 1015px) {
	#home-practice-areas .tmf-post-list {
		max-width: 750px;
	}
	#home-practice-areas .tmf-post a {
		height: auto;
	}
}

@media screen and (max-width: 950px) {
	#home-practice-areas .slick-list::-webkit-scrollbar {
		height: 30px;
	}
	#home-practice-areas .slick-list::-webkit-scrollbar-thumb {
		height: 30px;
		border-radius: 15px;
	}
	#home-practice-areas h2 {
		margin-bottom: 40px;
	}
}

@media screen and (max-width: 825px) {
	#home-practice-areas .tmf-post a {
		height: 215px;
	}
}

@media screen and (max-width: 750px) {
	#home-practice-areas-wrapper {
		padding: 0 0 100px;
	}
}

/* #endregion Home Practice Areas Section */

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

/* --- cell 1 --- */
#testimonials .tmf-module-content {
	position: relative;
}
#testimonials .quote {
	background: url('../images/quote.png') no-repeat;
	width: 268px;
	height: 199px;
	mix-blend-mode: exclusion;
	position: absolute;
	top: -64px;
	left: -30px;
}
#testimonials h2 {
	color: #fff;
}
#testimonials .tmf-button {
	margin-top: 25px;
}
#testimonials .mobile-view-more-btn {
	display: none;
	margin-top: 80px;
}

/* --- cell 2 --- */
#testimonials-cell-2 {
	vertical-align: middle;
}
#testimonials-cell-2 .tmf-module-area {
	border: 2px solid #8699a3;
	padding: 25px 0;
	border-radius: 5px;
	position: relative;
}
#testimonials-cell-2 .tmf-module-area::before {
	content: '';
	background: var(--primary);
	border: 2px solid #8699a3;
	border-bottom: 0;
	border-right: 0;
	position: absolute;
	left: -7px;
	top: 50%;
	-webkit-transform: rotate(-45deg) translateY(-50%);
	-ms-transform: rotate(-45deg) translateY(-50%);
	transform: rotate(-45deg) translateY(-50%);
	width: 40px;
	height: 40px;
	display: inline-block;
}

/* --- WP Review Slider --- */
#testimonials .wprev-slick-slider {
	max-width: 900px;
	width: 50vw;
	margin: 0 auto;
}
#testimonials .slickwprev-initialized .slickwprev-slide {
	max-width: 900px;
}
#testimonials .slickwprev-list {
	margin: 0 !important;
}
#testimonials .wpproslider_t7_DIV_1a {
	margin: 0 !important;
}
#testimonials .wpproslider_t7_DIV_2 {
	padding: 0 !important;
	border: 0 !important;
}
#testimonials .wprevgoslick {
	padding: 0 !important;
}

/* content */
#testimonials #wprev-slider-1 .wprev_preview_bg1_T7 {
	background: transparent;
}
#testimonials #wprev-slider-1 .indrevtxt {
	font-size: 18px;
	font-weight: 300;
	font-family: var(--body-font);
	color: #fff;
	font-style: normal;
}
#wprev-slider-1 .wprs_rd_more {
	display: none;
}

/* Stars */
#testimonials .wpproslider_t7_star_DIV {
	text-align: left;
}

/* description */
#testimonials #wprev-slider-1 .wprev_preview_tcolor2_T7 {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	font-family: var(--body-font);
}
#testimonials #wprev-slider-1 .t7displayname {
	margin-top: 15px;
}

/* navigation */
#testimonials button.slickwprev-arrow {
	display: block;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 25px;
	height: 26px;
	cursor: pointer;
	z-index: 1 !important;
}
#testimonials button.slickwprev-prev {
	left: -100px;
	display: none !important;
}
#testimonials button.slickwprev-next {
	right: -100px;
}
#testimonials button.slickwprev-arrow:before {
	width: 25px;
	height: 26px;
	display: inline-block;
	font-family: var(--font-awesome);
	font-size: 40px;
	font-weight: 300;
	line-height: 1;
	opacity: 1;
	color: var(--accent);
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}
#testimonials .slickwprev-prev:before {
	content: '\f053';
}
#testimonials .slickwprev-next:before {
	content: '\f054';
}
#testimonials .slickwprev-prev:hover:before {
	-webkit-transform: translateX(-5px);
	-ms-transform: translateX(-5px);
	transform: translateX(-5px);
}
#testimonials .slickwprev-next:hover:before {
	-webkit-transform: translateX(5px);
	-ms-transform: translateX(5px);
	transform: translateX(5px);
}

/* pager */
#testimonials ul.slickwprev-dots {
	position: absolute;
	margin: 10px 0 0;
	bottom: -65px;
	left: 0;
	display: none !important;
}
#testimonials ul.slickwprev-dots li::before {
	content: '' !important;
	display: none;
}
#testimonials ul.slickwprev-dots li button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 10px;
	text-align: center;
	opacity: 1;
	background: #8a98a1;
	/* border: 1px solid var(--accent); */
	border-radius: 50%;
}
#testimonials ul.slickwprev-dots li.slickwprev-active button:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 10px;
	text-align: center;
	opacity: 1;
	background: var(--accent);
	/* border: 1px solid var(--accent); */
	/* border-radius: 50%; */
}

@media screen and (max-width: 1270px) {
	#testimonials .wprev-slick-slider {
		width: 45vw;
	}
}

@media screen and (max-width: 950px) {
	#testimonials-wrapper {
		padding: 100px 0 50px;
	}
	#testimonials-cell-2 .tmf-module-area::before {
		display: none;
	}
	#testimonials #testimonials-cell-1 .tmf-module-content {
		text-align: center;
	}
	#testimonials h2 {
		margin-top: 0;
	}
	#testimonials h2 br {
		display: none;
	}
	#testimonials .quote {
		position: absolute;
		top: unset;
		bottom: -20px;
		left: 50%;
		width: 150px;
		height: 111px;
		background-size: 150px;
		transform: translateX(-50%);
	}
	#testimonials-cell-1 .tmf-button {
		display: none;
	}
	#testimonials-cell-2 {
		padding-top: 50px;
		/* padding-right: 50px; */
	}
	#testimonials-cell-2 .inner {
		padding: 0 25px;
	}
	#testimonials .wprev-slick-slider {
		width: 70vw;
	}
	#testimonials-cell-2 .tmf-module-area {
		/* padding: 25px 35px; */
		border: 0;
		padding: 0;
	}
	#testimonials #wprevgoslickid_1 {
		border: 2px solid #8699a3;
		padding: 15px !important;
		border-radius: 5px;
	}
	#testimonials button.slickwprev-next {
		/* right: -80px; */
		display: none !important;
	}
	#testimonials .mobile-view-more-btn {
		display: block;
	}
	#testimonials .mobile-view-more-btn .tmf-button {
		margin: 25px auto 0;
		display: block;
		max-width: max-content;
	}
	#testimonials ul.slickwprev-dots {
		display: block !important;
	}
}

@media screen and (max-width: 500px) {
	#testimonials-cell-1 .inner {
		padding: 0;
	}
	#testimonials-cell-2 .inner {
		padding: 0;
	}
	#testimonials .wprev-slick-slider {
		width: 100%;
	}
}

/* #endregion Testimonials Section */

/* -------------------------
* #region Home Attorney Section
* ------------------------- */
#home-attorney-wrapper {
	background: url('../images/home_meet_the_attorney_bg_3x.png') no-repeat center/cover;
	padding: 25px 0 0;
}

/* --- cell 1 --- */
#home-attorney-cell-1 img {
	display: block;
	width: 100%;
	height: auto;
}

/* --- cell 2 --- */
#home-attorney-cell-2 {
	vertical-align: middle;
}
#home-attorney-cell-2 .subtitle {
	color: var(--primary);
	font-size: 35px;
	font-weight: 700;
	font-family: var(--heading-font);
}
#home-attorney-cell-2 h2 {
	margin-top: 0;
}
#home-attorney-cell-2 .btn-wrapper {
	margin-top: 25px;
}
#home-attorney-cell-2 .btn-wrapper .tmf-button {
	color: var(--primary);
}
#home-attorney-cell-2 .btn-wrapper .tmf-button:hover {
	border-color: var(--primary);
}
#home-attorney-cell-2 .btn-wrapper .tmf-button:nth-of-type(1) {
	margin-right: 15px;
}
#home-attorney-cell-2 .btn-wrapper .tmf-button:nth-of-type(2) {
	background: transparent;
	border-color: var(--primary);
}
#home-attorney-cell-2 .btn-wrapper .tmf-button:nth-of-type(2):hover {
	border-color: var(--accent);
	background: var(--accent);
}

@media screen and (max-width: 1200px) {
	#home-attorney-cell-1 {
		position: relative;
		min-width: 425px;
	}
	#home-attorney-cell-1 .inner {
		position: absolute;
		bottom: 0;
	}
	#home-attorney-cell-2 .inner {
		padding: 50px 25px;
	}
}

@media screen and (max-width: 1050px) {
	#home-attorney-cell-1 {
		min-width: unset;
	}
	#home-attorney-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;
	}
	#home-attorney-cell-1 .inner {
		position: static;
	}
	#home-attorney-cell-1 img {
		max-width: 520px;
		margin: 50px auto 0;
	}
	#home-attorney-cell-2 .inner {
		padding: 0 25px;
	}
	#home-attorney-cell-2 {
		text-align: center;
	}
}

@media screen and (max-width: 550px) {
	#home-attorney-cell-2 .btn-wrapper .tmf-button {
		display: block;
		max-width: -webkit-max-content;
		max-width: -moz-max-content;
		max-width: max-content;
		margin: 0 auto;
	}
	#home-attorney-cell-2 .btn-wrapper .tmf-button:nth-of-type(1) {
		margin: 0 auto 15px;
	}
}

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

/* #endregion Home Attorney Section */

/* -------------------------
* #region Why Us Section
* ------------------------- */
#home-why-us-wrapper {
	background: url('../images/home_why_choose_us_bg_3x.png') no-repeat center/cover;
	padding: 100px 0;
}

/* --- cell 1 --- */
#home-why-us-cell-1 .tmf-module-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 20px;
	color: #fff;
}
#home-why-us-cell-1 .main h2 {
	color: #fff;
	margin: 0 0 20px;
}
#home-why-us-cell-1 .main .tmf-button {
	margin-top: 15px;
}
#home-why-us-cell-1 .why-item {
	position: relative;
	padding: 35px;
	border: 2px solid #fff;
	border-radius: 5px;
	margin-top: 40px;
}
#home-why-us-cell-1 .why-item .why-icon {
	position: absolute;
	top: -30px;
	left: 20px;
	width: 80px;
	height: 60px;
	background: var(--primary);
}
#home-why-us-cell-1 .why-item .why-icon::before {
	content: '';
	background: url('../images/why_us_icon_sprite_3x.png') no-repeat;
	background-size: 350px;
	width: 66px;
	height: 60px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
/* 1st icon child offset -1 */
#home-why-us-cell-1 .why-item:nth-of-type(2) .why-icon::before {
	background-position: 4px 0;
}
#home-why-us-cell-1 .why-item:nth-of-type(3) .why-icon::before {
	background-position: -61px 0;
	width: 56px;
}
#home-why-us-cell-1 .why-item:nth-of-type(4) .why-icon::before {
	background-position: -128px 0;
}
#home-why-us-cell-1 .why-item:nth-of-type(5) .why-icon::before {
	background-position: -204px 0;
}
#home-why-us-cell-1 .why-item:nth-of-type(6) .why-icon::before {
	background-position: -276px 0;
	height: 49px;
}
#home-why-us-cell-1 .why-item .why-heading {
	font-family: var(--heading-font);
	font-size: 20px;
	font-weight: 700;
	margin: 10px 0;
}

@media screen and (max-width: 1250px) {
	#home-why-us-cell-1 .tmf-module-content {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 900px) {
	#home-why-us-cell-1 .tmf-module-content {
		grid-template-columns: repeat(1, 1fr);
	}
	#home-why-us-wrapper {
		padding: 50px 0;
	}
}

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

/* #endregion Why Us Section */

/* #endregion Homepage Sections*/

/* ======================================== *
      #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;
}
#int-billboard-container {
	max-width: 100%;
}
#int-billboard .int-billboard-img {
	display: block;
	width: 100%;
	height: auto;
	min-height: 400px;
	-o-object-fit: cover;
	object-fit: cover;
}
#int-billboard-cell-1 {
	vertical-align: middle;
}
#int-billboard-cell-1 .inner {
	padding: 0;
}

/* --- cell 1 --- */
#int-billboard-cell-1 .inner {
	padding: 0;
}
#int-billboard img {
	width: 100%;
	display: block;
}

#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;
	background: none;
	padding: 0;
	max-width: 50%;
	padding: 20px 25px;
	background: var(--primary);
}
#int-billboard .int-billboard-title:before {
	background: var(--primary);
	display: block;
	content: '';
	height: 100%;
	width: 1000%;
	position: absolute;
	top: 0;
	left: -1000%;
}
#int-billboard h1#page-title {
	display: inline-block;
	margin-bottom: 0;
	/* padding: 12px 25px; */
	line-height: 1.1;
}
#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: 1050px) {
	#int-billboard .int-billboard-content {
		padding: 35px 25px;
		max-width: 100%;
	}
	#int-billboard .int-billboard-title {
		width: 90%;
		/* margin: 0 auto; */
	}
	#int-billboard-cell-1 {
		background: transparent;
		width: 100%;
	}
	#int-billboard h1#page-title {
		border: none;
		display: block;
		padding-bottom: 0;
		text-align: left;
		padding: 0;
	}
}

@media screen and (max-width: 950px) {
	#int-billboard .int-billboard-content {
		position: static;
		transform: unset;
		max-width: 90%;
		padding: 35px 25px 0;
	}
	#int-billboard .int-billboard-title {
		background: #fff;
		max-width: 100%;
		width: 100%;
		padding: 0;
	}
	#int-billboard h1#page-title {
		color: var(--primary);
	}
	#int-billboard .int-billboard-title:before {
		display: none;
	}
	#int-billboard .int-billboard-img {
		min-height: 250px;
	}
}

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

/* ======================================== *
      #region Single Attorney Page CSS
 * ======================================== */
#attorney-bio-wrapper {
	height: 430px;
}
#attorney-bio-cell-1,
#attorney-bio-cell-2 {
	vertical-align: top;
}

/* ------ cell 1 ------ */
#attorney-bio-cell-1 {
	vertical-align: bottom;
	width: calc(100% - 457px);
}
#attorney-bio-cell-1 .inner {
	padding-right: 0;
}
#attorney-bio-cell-1 .inner .attorney-bio-info {
	border: 2px solid var(--primary);
	border-right: 0;
	padding: 100px 50px;
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
	background: #fff;
	background: url('../images/bio_title_bg_2x.jpg') no-repeat center/cover;
	margin-bottom: 75px;
}
.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 {
	color: var(--primary);
	margin-bottom: 0;
	font-style: normal;
	min-width: -webkit-fit-content;
	min-width: -moz-fit-content;
	min-width: fit-content;
	padding-right: 12px;
}
.attorney-bio-info .attorney-titles a {
	color: var(--primary);
	font-size: 35px;
	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: #050505;
	font-weight: 600;
}
.attorney-bio-info .contact-information a:hover,
.attorney-bio-info .icon-container a:hover,
.attorney-bio-info .speaking a:hover {
	color: var(--accent);
}
.attorney-bio-info .contact-information {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 50px;
}
.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;
	vertical-align: middle;
}
.attorney-bio-info .label {
	font-size: 18px;
	color: #050505;
	font-weight: 300;
}
.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(--primary);
	font-size: 18px;
	font-family: var(--font-awesome);
	font-weight: 700;
	display: inline-block;
	vertical-align: middle;
	display: none;
}
.attorney-bio-info .phone-1::before,
.attorney-bio-info .phone-2::before {
	content: '\f879';
	margin-right: 5px;
	-webkit-transform: rotate(10deg);
	-ms-transform: rotate(10deg);
	transform: rotate(10deg);
}
.attorney-bio-info .fax::before {
	content: '\f1ac';
	margin-right: 5px;
}
.attorney-bio-info .email::before {
	content: '\f0e0';
	margin-right: 5px;
}
.attorney-bio-info .vcard::before {
	content: '\f2bb';
}

/* ------ cell 2 ------ */
#attorney-bio-cell-2 {
	width: 432px;
}
#attorney-bio-cell-2 .inner {
	padding-left: 0;
}
#attorney-bio img {
	display: block;
	margin-left: auto;
	margin-top: 50px;
}

@media screen and (max-width: 1360px) {
	.attorney-bio-info .contact-information {
		gap: 25px;
	}
	.attorney-bio-info h1#page-title {
		font-size: 50px;
	}
}

@media screen and (max-width: 1300px) {
	#attorney-bio-cell-1 .inner .attorney-bio-info {
		padding: 100px 35px;
	}
}

@media screen and (max-width: 1270px) {
	.attorney-bio-info .contact-information {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 5px;
	}
	#attorney-bio-cell-1 .inner .attorney-bio-info {
		padding: 50px 35px;
	}
	.attorney-bio-info .title-section {
		-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: 445px;
	}
}

@media screen and (max-width: 1050px) {
	.attorney-bio-info h1#page-title {
		font-size: 38px;
		padding-right: 0;
	}
	.attorney-bio-info .attorney-titles a {
		font-size: 30px;
	}
}

@media screen and (max-width: 950px) {
	#attorney-bio-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	#attorney-bio-cell-1 {
		width: 100%;
	}
	#attorney-bio-cell-2 {
		width: 100%;
		padding-top: 0;
	}
	#attorney-bio-wrapper {
		height: auto;
	}
	#attorney-bio img {
		margin: 25px auto 0;
		width: 100%;
		max-width: 407px;
		height: auto;
	}
	#attorney-bio-cell-1 .inner,
	#attorney-bio-cell-2 .inner {
		padding: 0 25px;
	}
	#attorney-bio-cell-1 .inner .attorney-bio-info {
		margin-bottom: 0;
		border: 2px solid var(--primary);
		border-radius: 15px;
		padding-top: 250px;
		margin-top: -200px;
	}
	.attorney-bio-info .title-section,
	.attorney-bio-info .contact-information {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.attorney-bio-info h1#page-title {
		text-align: center;
	}
}

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

/* #endregion Single Attorney Page CSS */

/* ======================================== *
      #region Int Title Section
 * ======================================== */
#int-title-wrapper {
	background: url('../images/interior_pages_bg_3x.jpg') no-repeat center bottom/cover;
	/* min-height: 275px; */
	min-height: 185px;
}
.single-post #int-title-wrapper {
	min-height: 275px;
}
#int-title-wrapper .title-arrow {
	display: none;
}
#int-title-container {
	position: static;
}
#int-title {
	position: absolute;
	left: 50%;
	top: 50%;
	padding: 0 25px;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 1600px;
}
#int-title h1#page-title {
	margin-bottom: 0;
	text-align: center;
}

@media screen and (max-width: 500px) {
	#int-title {
		padding: 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;
}
.blog .tmf-post.post {
	padding-bottom: 60px;
	margin-bottom: 60px;
}

@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;
}
.page-id-394 #body-cell-1 .wprevpro_t7_outer_div {
	padding: 0;
	margin: 15px 0px;
}
.page-id-394 #body-cell-1 .wpproslider_t7_DIV_1a {
	margin: 0;
}
.page-id-394 .wpproslider_t7_star_DIV {
	text-align: left;
}
#body-cell-1 .wppro_pagination {
	margin: 5px 0;
}
#body-cell-1 .wppro_pagination ul.wppro_page_numbers_ul {
	padding: 0 !important;
}
.wppro_pagination ul.wppro_page_numbers_ul li {
	font-weight: 600;
}
.wppro_pagination ul.wppro_page_numbers_ul li::before {
	display: none;
}
.wppro_pagination ul.wppro_page_numbers_ul li span:hover {
	background: var(--accent) !important;
	border-color: var(--accent) !important;
}
.wppro_pagination ul.wppro_page_numbers_ul li span.current {
	background: var(--accent) !important;
	border-color: var(--accent) !important;
}

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

@media screen and (max-width: 1050px) {
	.post-type-archive-location #body-cell-1 {
		padding-bottom: 30px;
	}
	.post-type-archive-location #body {
		padding: 35px 0 15px;
	}
}

/* #endregion Location archive*/

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

/* #endregion Staff archive*/

/* --------------------------------------- *
      #region Attorney archive
 * --------------------------------------- */
.post-type-archive-attorney .tmf-post.attorney.medium .read-more-button.top {
	float: right;
	margin-bottom: 10px;
	margin-left: 25px;
	display: none !important;
}
.post-type-archive-attorney .tmf-post.attorney.medium .read-more-button.bottom {
	display: block !important;
	float: left;
}
.post-type-archive-attorney .tmf-post.attorney {
	padding-bottom: 60px;
	margin-bottom: 60px;
}
.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.attorney.medium h2.title {
		font-size: 30px;
	}
	.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*/
/* ---------------------------------------- *
      #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: 50px 0;
	padding: 0;
	text-align: left;
}
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(--primary);
	padding: 35px !important;
	border-radius: 15px;
}
body #call-to-action .col:nth-child(2) {
	margin: 0 0 0 auto;
	padding: 25px;
}
body #call-to-action .col h3,
body #call-to-action .col h4 {
	color: #fff;
	margin: 0;
	font-weight: 700;
	font-size: 25px;
	line-height: 1.2em;
}
body #call-to-action .col p {
	color: #050505;
	font-weight: 400;
	font-size: 16px;
	text-align: left;
}
body #call-to-action .col p a {
	color: var(--primary) !important;
}
body #call-to-action .col p a:hover {
	color: var(--accent) !important;
}
body #call-to-action .col .tmf-button {
	color: var(--primary) !important;
	margin-top: 15px;
}
body #call-to-action .col .tmf-button:hover {
	color: var(--primary) !important;
	background: transparent;
	border: 2px solid var(--primary);
}

@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) {
		padding: 50px 35px !important;
	}
}
/* #endregion Call to Action */

/* ======================================== *
      #region Aside
 * ======================================== */
aside {
	float: right;
	width: 350px;
	margin: 15px 25px;
	padding: 15px;
	background: transparent;
	color: var(--primary);
	font-family: var(--heading-font);
	font-size: 25px;
	font-weight: 700;
	position: relative;
	border: 2px solid #dfdfdf;
	border-left: 0;
	border-right: 0;
}
.editor-content aside p {
	font-family: var(--heading-font);
	font-size: 25px;
	font-weight: 700;
	line-height: 36px;
	color: var(--primary);
}
@media screen and (max-width: 700px) {
	aside {
		float: none;
		width: 100%;
		margin: 25px 0px;
	}
}

/* #endregion Aside */

/* ======================================== *
      #region Callout
 * ======================================== */
#callout {
	position: relative;
	background: transparent;
	padding: 50px;
	margin: 50px 0;
	border: 2px solid var(--primary);
	border-radius: 15px;
}
#callout h3,
#callout h4 {
	font-family: var(--heading-font);
	font-weight: 700;
	font-size: 25px;
	margin: 0;
	line-height: 1.2;
	color: var(--primary);
}
#callout p {
	font-family: var(--heading-font);
	font-weight: 700;
	font-size: 25px;
	line-height: 1.2;
	color: var(--primary);
}
#callout a {
	text-decoration: none;
	/* color: var(--accent); */
	/* font-weight: 700; */
}
#callout a:hover {
	text-decoration: underline;
}

/* #endregion Callout */

/* ======================================== *
      #region Callout Alt
 * ======================================== */
#callout-alt {
	border: 1px solid var(--primary);
	border-left: 0;
	border-right: 0;
	padding: 35px 0;
	margin-bottom: 25px;
}
#callout-alt p {
	font-weight: 700;
	color: #414042;
	font-size: 25px;
	font-family: var(--heading-font);
}
#callout-alt ul {
	padding-left: 40px;
	margin-bottom: 0;
}
#callout-alt ul li {
	margin-bottom: 0;
}
#callout-alt ul li::before {
	color: var(--accent);
}

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

/* ======================================== *
      #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/contact_form_bg_3x.jpg') no-repeat center/cover;
	padding: 50px 35px;
	border-radius: 15px;
	text-align: center;
	position: relative;
}
body .tmf-module-22 h3 {
	color: #fff;
	margin-bottom: 35px;
}

@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-384 .tmf-post-list {
	position: relative;
	display: block;
	width: 100%;
}
.tmf-module-384 .tmf-post {
	padding: 0;
	margin: 0 0 5px;
	border: 0;
}
.tmf-module-384 .tmf-post.last-post {
	margin-bottom: 0;
}
.tmf-module-384 .pa-listing {
	margin-bottom: 15px;
}
.tmf-module-384 .pa-listing:last-child {
	margin-bottom: 0;
}
.tmf-module-384 .pa-listing a {
	text-decoration: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	padding: 10px 25px;
	border-radius: 5px;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	position: relative;
}
.tmf-module-384 .pa-listing a::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #f6f6f6;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	-ms-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transition: -webkit-transform 0.5s ease-out;
	transition: -webkit-transform 0.5s ease-out;
	-o-transition: transform 0.5s ease-out;
	transition: transform 0.5s ease-out;
	transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}
.tmf-module-384 .pa-listing a:hover::before {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}
.tmf-module-384 .pa-listing a .title {
	color: var(--primary);
	font-size: 25px;
	font-weight: 700;
	font-family: var(--heading-font);
	transition: 0.25s ease-in;
}
.tmf-module-384 .pa-listing a:hover .title {
	font-weight: 700;
	color: #ec9500;
}
/* icons */
.tmf-module-384 .tmf-post .pa-listing a .pa-icon {
	width: 40px;
	height: 38px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	background: url('../images/pa-icon-sprite_2x.png') no-repeat;
	background-size: 350px;
	-webkit-transition: -webkit-transform 0.25s ease;
	transition: -webkit-transform 0.25s ease;
	-o-transition: transform 0.25s ease;
	transition: transform 0.25s ease;
	transition: transform 0.25s ease, -webkit-transform 0.25s ease;
	background-position: 0 0;
}
.tmf-module-384 .tmf-post-72 .pa-listing a .pa-icon {
	background-position: 0 0;
}
.tmf-module-384 .tmf-post-70 .pa-listing a .pa-icon {
	background-position: -56px 0;
}
.tmf-module-384 .tmf-post-69 .pa-listing a .pa-icon {
	background-position: -101px 0;
}
.tmf-module-384 .tmf-post-68 .pa-listing a .pa-icon {
	background-position: -148px 0;
}
.tmf-module-384 .tmf-post-66 .pa-listing a .pa-icon {
	background-position: -200px 0;
}
.tmf-module-384 .tmf-post-67 .pa-listing a .pa-icon {
	background-position: -251px 0;
}
.tmf-module-384 .tmf-post-71 .pa-listing a .pa-icon {
	background-position: -301px 0;
}
/* End Sidebar Practice Areas - sidebar */

/* Testimonials - sidebar */
.tmf-module-385 {
	border: 2px solid #8699a3;
	padding: 25px;
	border-radius: 15px;
	position: relative;
}
.tmf-module-385::before {
	content: '';
	background: #fff;
	border: 2px solid #8699a3;
	border-top: 0;
	border-right: 0;
	position: absolute;
	bottom: -7px;
	left: 50%;
	-webkit-transform: rotate(-45deg) translateX(-50%);
	-ms-transform: rotate(-45deg) translateX(-50%);
	transform: rotate(-45deg) translateX(-50%);
	width: 40px;
	height: 40px;
	display: inline-block;
}
.tmf-module-385 h3 {
	margin-bottom: 20px;
	text-align: center;
}
.tmf-module-385 .wpproslider_t7_DIV_1a {
	margin: 0 !important;
}
.tmf-module-385 .wpproslider_t7_DIV_2 {
	padding: 0 !important;
	border: 0 !important;
}
.tmf-module-385 .wprevgoslick {
	padding: 0 !important;
}
.tmf-module-385 .wpproslider_t7_DIV_2_top {
	height: 0 !important;
}
.tmf-module-385 .slickwprev-dotted.slickwprev-slider {
	margin-bottom: 0;
}

/* content */
.tmf-module-385 #wprev-slider-2 .wprev_preview_bg1_T7 {
	background: transparent;
}
.tmf-module-385 #wprev-slider-2 .indrevtxt {
	font-size: 16px;
	font-weight: 400;
	font-family: var(--body-font);
	font-style: normal;
	text-align: center;
}
#wprev-slider-2 .wprs_rd_more {
	display: none;
}

/* description */
.tmf-module-385 #wprev-slider-2 .wprev_preview_tcolor2_T7 {
	font-weight: 700;
	font-family: var(--body-font);
	text-align: center;
}

/* pager */
.tmf-module-385 #wprev-slider-2 .wprev_preview_bg1_T7 {
	background: #fff;
}
.tmf-module-385 ul.slickwprev-dots {
	position: static;
	margin: 10px 0 0;
	margin: 10px 0 0 5px;
}
.tmf-module-385 ul.slickwprev-dots li {
	margin-bottom: 0;
}
.tmf-module-385 ul.slickwprev-dots li::before {
	content: '' !important;
	display: none;
}
.tmf-module-385 ul.slickwprev-dots li button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 10px;
	text-align: center;
	opacity: 1;
	background: #909090;
	border-radius: 50%;
}
.tmf-module-385 ul.slickwprev-dots li.slickwprev-active button:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 10px;
	text-align: center;
	opacity: 1;
	background: var(--accent);
}
/* End Testimonials - sidebar */

/* #endregion Modules */

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

/* --- Cell 1 --- */
#footer-cell-1 h3 {
	margin: 0;
}
#footer-cell-1 .footer-badge {
	width: 150px;
	height: auto;
	margin-left: 50px;
}
#footer-cell-1 .business-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 50px;
}
#footer-cell-1 .business-info .contact-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 50px;
}
#footer-cell-1 .business-info a {
	color: #050505;
	font-size: 18px;
	font-weight: 400;
}
#footer-cell-1 .address {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	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: #050505;
	font-weight: 400;
	font-size: 18px;
}
#footer-cell-1 .business-info .phone-1 .value a:hover,
#footer-cell-1 .business-info .email .value:hover {
	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: #050505;
	display: inline-block;
	font-family: var(--font-awesome);
	font-size: 20px;
	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;
}
#footer-cell-1 .tmf-post.small.location .streetAddress::before {
	display: none;
}
#footer-cell-1 .footer-logo {
	margin-bottom: 25px;
}
#footer-cell-1 .footer-bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	margin-top: 45px;
}
#footer-cell-1 .footer-bottom .tmf-button {
	padding: 10px 50px;
	margin-right: 50px;
}
#footer-cell-1 .footer-bottom .tmf-button:hover {
	background: transparent;
	color: var(--primary);
	border: 2px solid var(--primary);
}

/* Socials */
#footer-cell-1 .footer-social {
	margin-top: 10px;
}
#footer-cell-1 a .label {
	font-size: 0;
	font-weight: 500;
}
#footer-cell-1 .social-icons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 20px;
}
#footer-cell-1 .social-icons a {
	height: 35px;
}
#footer-cell-1 .social-icons .icon {
	background: none;
	width: 35px;
	height: 35px;
	margin-right: 2px;
	display: inline-block;
	vertical-align: baseline;
}
.social-icons .facebook::before,
.social-icons .instagram::before {
	display: inline-block;
	font-family: var(--font-brands);
	font-size: 35px;
	font-weight: 500;
	color: #050505;
	vertical-align: middle;
}
.social-icons .facebook::before {
	content: '\f09a';
}
.social-icons .instagram::before {
	content: '\f16d';
}

/* Footer cell 2 */
#footer-cell-2 .tmf-module-15 {
	position: relative;
	background: #f4f4f4;
	border: 2px solid #e1e1e1;
	padding: 25px 20px;
	margin-top: 15px;
}
#footer-cell-2 .tmf-module-15 h3 {
	position: absolute;
	top: -25px;
	padding: 0 10px;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #f4f4f4));
	background: -o-linear-gradient(top, transparent 50%, #f4f4f4 50%);
	background: linear-gradient(to bottom, transparent 50%, #f4f4f4 50%);
}

@media screen and (max-width: 1650px) {
	#footer-cell-1 .business-info {
		gap: 25px;
	}
	#footer-cell-1 .business-info .contact-links {
		gap: 25px;
	}
}

@media screen and (max-width: 1525px) {
	#footer-cell-1 .business-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;
		gap: 15px;
	}
}

@media screen and (max-width: 1150px) {
	#footer-cell-1 .footer-bottom .tmf-button {
		margin-right: 0;
	}
}

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

@media screen and (max-width: 1000px) {
	#footer-wrapper {
		padding: 50px 0;
	}
	#footer-cell-2 {
		padding-top: 45px;
	}
}

@media screen and (max-width: 700px) {
	#footer-cell-1 .footer-logo {
		text-align: center;
	}
	#footer-cell-1 .footer-logo img.logo {
		width: 100%;
		height: auto;
		max-width: 325px;
	}
	#footer-cell-1 .footer-badge {
		width: 150px;
		height: auto;
		margin: 15px auto 0;
		display: block;
	}
	#footer-cell-1 .business-info {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	#footer-cell-1 .business-info .contact-links {
		gap: 10px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: center;
	}
	#footer-cell-1 .footer-bottom {
		display: block;
		text-align: center;
		margin-top: 35px;
	}
	#footer-cell-1 .footer-bottom .tmf-button {
		margin-bottom: 35px;
	}
	#footer-cell-1 h3 {
		margin-bottom: 15px;
	}
	#footer-cell-2 .tmf-module-15 h3 {
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	#footer-cell-2 .tmf-module-content {
		text-align: center;
	}
	#footer-cell-1 .tmf-post.small.location .streetAddress {
		text-align: center;
	}
}

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

/* #endregion Footer Section */

/* ======================================== *
      #region Copyright Section
 * ======================================== */
#copyright-wrapper {
	background: var(--primary);
	overflow: hidden;
}
#copyright {
	padding: 25px 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;
}

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

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

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

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

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

/* #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-post.medium a.read-more-button:hover {
	text-decoration: underline;
	border: 2px solid var(--primary);
	color: var(--primary);
}
.tmf-button,
input[type='submit'] {
	position: relative;
	display: inline-block;
	padding: 10px 25px;
	color: var(--primary);
	text-align: center;
	font-family: var(--body-font);
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	background: var(--accent);
	border: 2px solid var(--accent);
	border-radius: 5px;
	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;
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
}
.tmf-button:active,
.page-numbers:active,
input[type='submit']:active {
	text-decoration: none;
}
.page-navigation .tmf-button,
.page-navigation .page-numbers {
	background: transparent;
	border: 2px solid var(--primary);
	color: var(--primary);
	border-radius: 5px;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 16px;
	font-weight: 560;
	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);
	border: 2px solid var(--accent);
}
.page-navigation .last.tmf-button {
	vertical-align: top;
	-webkit-transform: unset;
	-ms-transform: unset;
	transform: unset;
}
.page-navigation .last.tmf-button:active,
.page-navigation .last.tmf-button:hover {
	background: var(--accent);
	border: 2px solid var(--accent);
}
.page-navigation .last.tmf-button::before,
.page-navigation .last.tmf-button::after {
	display: none;
}
.page-numbers.current {
	background: var(--accent);
	border: 2px solid var(--accent);
}
.tmf-button.large {
	font-size: 1.1em;
	padding: 7px 25px;
}
.tmf-button.medium {
	font-size: 0.95em;
	padding: 7px 25px;
}
.tmf-button.small {
	font-size: 0.85em;
	padding: 3px 15px;
	margin-top: 15px;
}
.tmf-button.tiny {
	font-size: 0.75em;
	padding: 2px 7px;
}

/* #endregion Buttons */

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

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

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

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

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

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

/* #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: #fff;
}
.gfield_description {
	color: #fff;
}
h2.gsection_title {
	color: #fff;
}

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

/* error Validation */
.gform_legacy_markup_wrapper div.validation_error {
	max-width: calc(100% - 16px) !important;
	background: rgba(255, 255, 255, 0.4);
}
.gform_legacy_markup_wrapper li.gfield.gfield_error,
.gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
	background: rgba(255, 255, 255, 0.4) !important;
}

/* Gravity Forms */
.gform_legacy_markup_wrapper {
	margin: 0 auto !important;
}
.gform_legacy_markup_wrapper .gform_footer {
	padding: 0 !important;
	margin: 35px 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: #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: 641px) {
	.gform_legacy_markup_wrapper textarea::placeholder,
	.gform_legacy_markup_wrapper input::placeholder {
		text-align: center;
	}
}

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

/* #endregion Inputs & Gravity Forms */
