/* ============================================================================ *
        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: #1b3c66;
  --primary-light: #316095;
  /* SECONDARY COLORS */
  --secondary: #f4f4f4;
  --secondary-dark: #d9d9d9;
  /* ACCENT COLORS */
  --accent: #eb971a;
  /* FONTS */
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Poppins', sans-serif;
  --font-awesome: 'Font Awesome 5 Free';
  --font-brands: 'Font Awesome 5 Brands';
  /* HOME HEADINGS */
  /* font: font-style font-varient font-weight font-size/line-height font-family */
  /* font: italic uppercase 600 64px/1.3em var(--heading-font) */
  --home-h1: 600 55px/1.3em var(--heading-font);
  --home-h2: 600 40px/1.3em var(--heading-font);
  --home-h3: 600 28px/1.3em var(--heading-font);
  --home-h4: 600 24px/1.3em var(--heading-font);
  --home-h5: 600 18px/1.3em var(--heading-font);
  /* INTERIOR HEADINGS */
  --h1: 600 55px/1.3em var(--heading-font);
  --h2: 600 40px/1.3em var(--heading-font);
  --h3: 600 28px/1.3em var(--heading-font);
  --h4: 600 24px/1.3em var(--heading-font);
  --h5: 600 18px/1.3em var(--heading-font);
  /* HEADER */
  --header-bg-color: var(--primary);
  --sticky-header-bg-color: #152f51;
  --header-font-size: 15px;
  --header-font-weight: 700;
  --header-link-color: #fff;
  /* LOGOS */
  --logo-width: 283px;
  --logo-height: 62px;
  --sticky-logo-width: 97px;
  --sticky-logo-height: 100px;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  color: #000;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 300;
  overflow-x: hidden;
}
a {
  color: var(--primary);
}
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: 45px;
  }
  h1 {
    font-size: 45px;
  }
}

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

/* -------------------------------- *
        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(--accent);
  text-decoration: none;
}
h3 a:hover {
  text-decoration: underline;
}

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

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

/* #endregion Typography */

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

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

/* ======================================== *
        #region Header Sections
 * ======================================== */
/* ------------------------------- *
      #region Sticky Header
 * ------------------------------- */
body #header-wrapper.sticky {
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background: var(--sticky-header-bg-color);
  border-bottom: none;
  min-height: auto;
  -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;
}

/* Adjusts position when admin bar is present */
body.admin-bar #header-wrapper.sticky.sticky_animate {
  top: 32px;
}
body #header-wrapper.sticky.sticky_animate {
  top: 0;
}

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

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

/* 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;
}
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: color 0.15s ease;
  -o-transition: color 0.15s ease;
  transition: color 0.15s ease;
  padding: 5px 0;
  position: relative;
}

/* Hover Effects */
body #header-wrapper.sticky #primary-nav .menu li a:hover,
#header-wrapper.sticky #header-cell-2 .sticky-view .phone-1 a:hover {
  color: var(--accent);
}
#header-wrapper.sticky #header-cell-2 .sticky-view .phone-1 a:hover::before {
  color: var(--accent);
}

/* Phone Links */
#header-wrapper.sticky #header-cell-2 .sticky-view .phone-1 a {
  color: var(--header-link-color);
  font-size: var(--header-font-size);
  font-weight: var(--header-font-weight);
  text-decoration: none;
}
#header-wrapper.sticky #header-cell-2 .sticky-view .phone-1 a::before {
  -webkit-transition: color 0.2s ease-in;
  -o-transition: color 0.2s ease-in;
  transition: color 0.2s ease-in;
}

/* 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-light);
}
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 {
  right: 0;
  left: inherit;
}
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: #fff;
}

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

/* ------------------------------- *
    #region Header Section
* ------------------------------- */
#header-wrapper {
  background: url('../images/int_hero_bg_3x.jpg') no-repeat center center/cover;
  background: #1a3862;
  padding: 30px 0;
}
.single-practice-area #header-wrapper,
.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 a.payment {
  color: var(--header-link-color);
  text-decoration: none;
  font-size: var(--header-font-size);
  font-weight: var(--header-font-weight);
  -webkit-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}
#header a.payment:hover {
  color: var(--accent);
}
#header a.payment::before {
  content: '\f09d';
  margin-right: 15px;
  width: 18px;
  height: 18px;
  color: #fff;
  font-size: 18px;
  font-family: var(--font-awesome);
  font-weight: 600;
  display: inline-block;
  vertical-align: top;
  -webkit-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}
#header a.payment:hover::before {
  color: var(--accent);
}
#header .tmf-field.location.phone-1 a {
  color: var(--header-link-color);
  text-decoration: none;
  font-size: var(--header-font-size);
  font-weight: var(--header-font-weight);
  -webkit-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}
#header .tmf-field.location.phone-1 a:hover {
  color: var(--accent);
}
#header .tmf-field.location.phone-1 a::before {
  color: #fff;
}
#header .tmf-field.location.phone-1 a:hover::before {
  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: 15px;
  font-family: var(--font-awesome);
  font-weight: 600;
  -webkit-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}
#header .mobile-logo-view {
  display: none;
}

@media screen and (max-width: 1260px) {
  #header-cell-1 {
    width: 270px;
  }
  #header-cell-2 {
    width: auto;
  }
}

@media screen and (max-width: 1200px) {
  .home #header-wrapper {
    padding: 20px 0;
  }
  #header-cell-1 {
    margin-bottom: 0;
    width: 100%;
  }
  #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;
  }
}

@media screen and (max-width: 950px) {
  #header-wrapper {
    background: var(--primary);
  }
  .home .header-billboard-wrap .header-wrap {
    position: relative;
  }
  #header-cell-1 .inner {
    padding: 0;
  }
  #header .main-logo {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 0;
  }
  #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: 25px;
}
#primary-nav .menu > .menu-item > a {
  color: var(--header-link-color);
  font-family: var(--body-font);
  font-size: var(--header-font-size);
  font-weight: var(--header-font-weight);
  line-height: normal;
  padding: 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-light);
}
#primary-nav .menu > li.left-edge > div > ul {
  left: inherit;
  right: 0;
}
#primary-nav .sub-menu-columns ul.sub-menu li {
  display: inline-block;
}
#primary-nav .menu .sub-menu .menu-item > a {
  font-size: 16px;
  padding: 10px 15px;
  color: #fff;
  font-weight: 500;
}
#primary-nav .menu .sub-menu .menu-item:hover > a {
  background-color: var(--accent);
  color: #fff;
  height: 100%;
}
#primary-nav .menu #menu-item-58 .sub-menu {
  min-width: 400px;
  left: -150px;
}
body #header-wrapper.sticky #primary-nav .menu #menu-item-58 .sub-menu {
  min-width: 400px;
  left: -150px;
}
#primary-nav .menu #menu-item-58 .sub-menu li {
  float: left;
  width: 200px;
}
body #header-wrapper.sticky #primary-nav .menu #menu-item-58 .sub-menu li {
  float: left;
  width: 200px;
}

/* ------ 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: #fff;
}
#mobile-nav .mobile-menu .current-menu-item {
  background: transparent;
}
#mobile-nav .mobile-menu .current-menu-item a {
  color: var(--accent);
}
#mobile-nav .menu .menu-item.display a {
  color: #fff;
}

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

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

/* #endregion Mobile Menu */

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

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

/* #endregion Mobile Nav Menu Multiple Locations*/

/* #endregion Header Sections */

/* ======================================== *
      #region Int Title Section
 * ======================================== */
#int-title-wrapper {
  /* background: url('../images/int_hero_bg_3x.jpg') no-repeat center center/cover; */
  background: #1a3862;
}
#int-title-wrapper .title-arrow {
  display: none;
}
#int-title-container {
  margin-top: -1px;
}
#int-title {
  padding: 100px 25px;
}
#int-title h1#page-title {
  margin-bottom: 0;
  text-align: center;
}

@media screen and (max-width: 950px) {
  #int-title-wrapper {
    background: var(--primary);
  }
  #int-title {
    padding: 15px 0 50px;
  }
}

/* #endregion Int Title Section */

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

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

/* -------------------------
* Page Body Section
* ------------------------- */
#body-wrapper {
  padding: 100px 0 50px;
}
/* --- cell 1 ---- */
#body-cell-1 {
  width: auto;
}

/* --- cell 2 ---- */
#body-cell-2 {
  position: relative;
  width: 450px;
  margin-left: auto;
}

@media screen and (max-width: 1300px) {
  #body-cell-2 {
    width: 400px;
  }
}

@media screen and (max-width: 1050px) {
  #body-cell-2 {
    width: 100%;
    margin: 0 auto;
    padding-top: 50px;
  }
}

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

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

/* -------------------------
* Attorney Body Section
* ------------------------- */
.single-attorney #body-wrapper {
  padding: 0 0 50px;
}
/* If sidebar is on left */
/* --- cell 1 ---- */
.single-attorney #body-cell-1 {
  width: 450px;
}
.single-attorney #body-cell-1 .inner {
  margin-top: 170px;
}

/* --- cell 2 ---- */
.single-attorney #body-cell-2 {
  width: auto;
}

@media screen and (max-width: 1200px) {
  .single-attorney #body-cell-1 {
    width: 400px;
  }
  .single-attorney #body-cell-1 .inner {
    margin-top: 110px;
  }
}

@media screen and (max-width: 1150px) {
  .single-attorney #body-cell-1 .inner {
    margin-top: 20px;
  }
}

@media screen and (max-width: 1050px) {
  .single-attorney #body-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;
  }
  .single-attorney #body-cell-1 {
    width: 100%;
    padding-top: 50px !important;
  }
  .single-attorney #body-cell-1 .inner {
    margin-top: 0;
  }
  .single-attorney #body-cell-2 {
    padding-top: 0;
    width: 100%;
  }
}

@media screen and (max-width: 760px) {
  .single-attorney #body-wrapper {
    overflow: hidden;
  }
}

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

/* #endregion Body Sections */

/* ======================================== *
      #region Homepage Sections
 * ======================================== */
/* --------------------------- *
    #region Billboard
 * --------------------------- */
#billboard-wrapper {
  position: relative;
  overflow: hidden;
}
#billboard-container {
  max-width: 100%;
}
#billboard .billboard-content-container {
  position: absolute;
  width: 100%;
  right: 0;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 0;
}
#billboard .billboard-content {
  position: relative;
  padding: 25px;
  max-width: 90%;
  margin: 0 auto;
}
#billboard h1 {
  margin: 0;
  color: #fff;
  font-weight: 700;
  margin-bottom: 25px;
}
#billboard h1 span {
  font-weight: 300;
}
#billboard p {
  color: #fff;
  max-width: 80ch;
}
#billboard .tmf-button {
  margin-top: 25px;
}
#billboard .tmf-button:hover {
  border-color: #fff;
  background: transparent;
  color: #fff;
}
.billboard-content-container .fade-in {
  opacity: 0;
  /* transition: opacity 0.25s ease-in-out; */
}
.billboard-content-container .fade-in.active {
  opacity: 1;
}

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

@media screen and (max-width: 950px) {
  #billboard .billboard-content-container {
    top: 56%;
  }
}

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

/*---------------------------
*   Billboard Slides
*---------------------------*/
/* If Slider is being used, uncomment below Code */
#billboard .slide {
  opacity: 0;
  -webkit-transition: opacity 1.5s ease-in-out;
  -o-transition: opacity 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out;
}
#billboard .slide.active {
  opacity: 1;
}
/* End Slider Code */
#billboard .billboard-slides {
  position: relative;
  height: 700px;
  background: var(--primary);
}
#billboard .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#billboard .slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#billboard .mobile-view {
  position: relative;
  display: none;
}

/* slide Dots */
#billboard .dots-container {
  text-align: center;
  position: absolute;
  bottom: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#billboard .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ddd;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
#billboard .dot.active {
  background-color: var(--accent);
}

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

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

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

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

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

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

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

/* #endregion Billboard */

/* -------------------------
*  #region Home Practice Areas Section
* ------------------------- */
#home-practice-areas-wrapper {
  background: var(--secondary);
  padding: 100px 0;
}

#home-practice-areas .pa-listing {
  background: #fff;
  /* border-radius: 5px; */
  padding: 45px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-transition: -webkit-box-shadow 0.2s ease-in;
  transition: -webkit-box-shadow 0.2s ease-in;
  -o-transition: box-shadow 0.2s ease-in;
  transition: box-shadow 0.2s ease-in;
  transition: box-shadow 0.2s ease-in, -webkit-box-shadow 0.2s ease-in;
}
#home-practice-areas .pa-listing:hover {
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
}
#home-practice-areas .pa-listing a {
  text-decoration: none;
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#home-practice-areas .pa-listing a:hover {
  text-decoration: none;
}

/* icons */
#home-practice-areas .pa-listing .pa-icon {
  width: 105px;
  height: 105px;
  margin: 0 auto 15px;
  background: url('../images/parmenterlaw_icon_sprite_practice_areas_3x.png') no-repeat;
  background-size: 950px;
  background-position: 0 0;
}
/* Business */
#home-practice-areas .tmf-post-116 .pa-listing .pa-icon {
  background-position: 3px 9px;
}
/* Civil Litigation */
#home-practice-areas .tmf-post-118 .pa-listing .pa-icon {
  background-position: -108px 3px;
  background-size: 930px;
}
/* Commercial Leasing */
#home-practice-areas .tmf-post-120 .pa-listing .pa-icon {
  background-position: -806px 2px;
}
/* Elder-law */
#home-practice-areas .tmf-post-124 .pa-listing .pa-icon {
  background-position: -213px 7px;
  background-size: 920px;
}
/* Estate Planning */
#home-practice-areas .tmf-post-126 .pa-listing .pa-icon {
  background-position: -364px 4px;
}
/* Family Law Practice */
#home-practice-areas .tmf-post-878 .pa-listing .pa-icon {
  background-position: -445px 1px;
  background-size: 900px;
}
/* Intellectual Property */
#home-practice-areas .tmf-post-128 .pa-listing .pa-icon {
  background-position: -584px 0px;
}
/* Labor Law */
#home-practice-areas .tmf-post-130 .pa-listing .pa-icon {
  background-position: -694px 12px;
}
/* Liquer Licenses */
#home-practice-areas .tmf-post-132 .pa-listing .pa-icon {
  background: none;
  position: relative;
}
#home-practice-areas .tmf-post-132 .pa-listing .pa-icon::before {
  content: '';
  display: block;
  background: url('../images/parmenterlaw_icon_sprite_practice_areas_3x.png') no-repeat;
  background-position: -105px -121px;
  background-size: 900px;
  width: 68px;
  height: 105px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* Non-Profit Organizations */
#home-practice-areas .tmf-post-134 .pa-listing .pa-icon {
  background-position: 1px -104px;
  background-size: 900px;
}
/* Probate Court */
#home-practice-areas .tmf-post-136 .pa-listing .pa-icon {
  background-position: -469px -127px;
}
/* Public Sector Government */
#home-practice-areas .tmf-post-138 .pa-listing .pa-icon {
  background-position: -330px -128px;
}
/* Real Estate */
#home-practice-areas .tmf-post-140 .pa-listing .pa-icon {
  background-position: -164px -110px;
  background-size: 850px;
}
/* Trust Administration */
#home-practice-areas .tmf-post-142 .pa-listing .pa-icon {
  background-position: -581px -126px;
}

#home-practice-areas .pa-listing .title {
  color: var(--primary);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}
#home-practice-areas .pa-listing .excerpt {
  color: #000;
  margin-top: 15px;
}
#home-practice-areas .pa-listing .link {
  color: var(--primary);
  margin-top: 25px;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  -webkit-transition: 0.1s ease-in;
  -o-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
}
#home-practice-areas .pa-listing .link::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 7px;
  background: url('../images/parmenterlaw_icon_sprite_3x.png') no-repeat;
  background-size: 800px;
  background-position: -36px -37px;
  margin-left: 7px;
}
#home-practice-areas .pa-listing a:hover .link::after {
  background-position: 0 -37px;
}
#home-practice-areas .pa-listing a:hover .link {
  color: var(--accent);
}

#home-practice-areas .tmf-button {
  display: block;
  max-width: fit-content;
  margin: 50px auto 0;
}

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

@media screen and (max-width: 760px) {
  #home-practice-areas .pa-listing {
    padding: 35px 25px;
  }
}

@media screen and (max-width: 500px) {
  #home-practice-areas-container {
    max-width: 100%;
  }
}

/* #endregion Home Practice Areas Section */

/* -------------------------
* #region  Home Why Us Section
* ------------------------- */
#home-why-us-wrapper {
  padding: 100px 0;
}
.why-us-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 25px;
}
.why-item {
  /* border-radius: 5px; */
  border: 1px solid #d9d9d9;
  padding: 35px 25px;
}
.why-item.main {
  background: url('../images/home_why_choose_us_text_bg_3x.jpg') no-repeat center/cover;
  grid-column: span 2;
  padding: 45px;
}

/* Icons */
.why-item .why-icon {
  width: 75px;
  height: 75px;
  margin-bottom: 20px;
  background: url('../images/parmenterlaw_icon_sprite_why_choose_us_3x.png') no-repeat;
  background-size: 650px;
  background-position: 0 0;
}
/* Our Purpose */
.why-item:nth-of-type(2) .why-icon {
  background-position: 1px 0;
}
/* Clients */
.why-item:nth-of-type(3) .why-icon {
  background-position: -91px 6px;
  background-size: 550px;
}
/* practical */
.why-item:nth-of-type(4) .why-icon {
  background-position: -199px 1px;
  background-size: 600px;
}
/* team */
.why-item:nth-of-type(5) .why-icon {
  background-position: -288px 7px;
  background-size: 580px;
}
/* tradition */
.why-item:nth-of-type(6) .why-icon {
  background-position: -358px 0px;
  background-size: 560px;
}
/* dedication */
.why-item:nth-of-type(7) .why-icon {
  background-position: -402px 0px;
  background-size: 520px;
}

.why-item h3 {
  margin-bottom: 20px;
  max-width: 13ch;
}
.why-item.main h2 {
  color: #fff;
  margin-bottom: 25px;
}
.why-item.main p {
  color: #fff;
  max-width: 50ch;
}
.why-item.main .tmf-button {
  margin-top: 25px;
  color: #fff;
  border-color: #fff;
  background: transparent;
}
.why-item.main .tmf-button:hover {
  margin-top: 25px;
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}

@media screen and (max-width: 1150px) {
  .why-us-list {
    grid-template-columns: 1fr 1fr;
  }
}

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

@media screen and (max-width: 700px) {
  .why-us-list {
    grid-template-columns: 1fr;
  }
  .why-item.main {
    grid-column: span 1;
  }
}

@media screen and (max-width: 500px) {
  #home-why-us-container {
    max-width: 100%;
  }
}

/* #endregion  Home Why Us Section */

/* -------------------------
* #region  Home Meet the Team Section
* ------------------------- */
#home-attorney-wrapper {
  padding: 100px 0;
  background: var(--secondary);
}

/* --- cell 1 --- */
#home-attorney-cell-1 {
  min-width: 365px;
}
#home-attorney-cell-1 .tmf-button {
  margin-top: 15px;
}

/* --- cell 2 --- */
#home-attorney-cell-2 .tmf-post .img-wrapper {
  position: relative;
}
#home-attorney-cell-2 .tmf-post a {
  display: block;
  color: #fff;
  text-decoration: none;
}
#home-attorney-cell-2 .tmf-post a:hover {
  text-decoration: none;
}
#home-attorney-cell-2 .tmf-post img {
  display: block;
  /* border-radius: 5px; */
}
#home-attorney-cell-2 .tmf-post .img-overlay {
  background: rgba(49, 96, 149, 0.75);
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
  /* border-radius: 5px; */
}
#home-attorney-cell-2 .tmf-post:hover .img-overlay {
  opacity: 1;
}
#home-attorney-cell-2 .tmf-post .content {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: left;
  color: #fff;
  width: 100%;
  padding: 15px;
}
#home-attorney-cell-2 .tmf-post .content .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
#home-attorney-cell-2 .tmf-post .content .attorney-titles.tmf-taxonomy-list .tmf-taxonomy {
  color: #fff;
  font-size: 15px;
  font-weight: 300;
}
#home-attorney-cell-2 .tmf-post .content .flex-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#home-attorney-cell-2 .tmf-post .content .link-arrow {
  -ms-flex-item-align: end;
  align-self: end;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 22px;
  height: 9px;
  margin-bottom: 4px;
  background: url('../images/parmenterlaw_icon_sprite_3x.png') no-repeat;
  background-size: 650px;
  background-position: -416px -1px;
}
#home-attorney-cell-2 .tmf-post:hover .content .link-arrow {
  background-size: 850px;
  background-position: 0 -38px;
}

/* Swiper Js slider */
#home-attorney .swiper {
  position: relative;
  margin-bottom: 50px;
  max-width: 865px;
  width: 100%;
}
#home-attorney .tmf-post-list.swiper-wrapper {
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
#home-attorney .tmf-post.swiper-slide {
  padding: 0;
  margin: 0;
  border-bottom: none;
  max-width: 275px !important;
}

/* Navigation buttons */
#home-attorney .swiper-navigation-container {
  margin-top: 20px;
  height: 30px;
}
#home-attorney .swiper-button-prev,
#home-attorney .swiper-button-next {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  position: absolute;
  top: unset;
  bottom: 0;
  width: 30px;
  height: 30px;
  -webkit-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
  background: var(--primary);
  border-radius: 50%;
  z-index: 2;
  display: inline-block;
}
#home-attorney .swiper-button-prev::before,
#home-attorney .swiper-button-next::before,
#home-attorney .swiper-button-prev::after,
#home-attorney .swiper-button-next::after {
  content: '';
  width: 17px;
  height: 9px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url('../images/parmenterlaw_icon_sprite_3x.png') no-repeat;
  background-size: 800px;
}
#home-attorney .swiper-button-prev:hover,
#home-attorney .swiper-button-next:hover {
  background: var(--accent);
}

/* previous */
#home-attorney .swiper-button-prev {
  left: 0;
}
#home-attorney .swiper-button-prev::before {
  background-position: -545px -1px;
}
#home-attorney .swiper-button-prev::after {
  background-position: -545px -1px;
}

/* next */
#home-attorney .swiper-button-next {
  left: 45px;
}
#home-attorney .swiper-button-next::before {
  background-position: -581px -1px;
}
#home-attorney .swiper-button-next::after {
  background-position: -581px -1px;
}

@media screen and (max-width: 1450px) {
  #home-attorney .swiper {
    max-width: 570px;
  }
}

@media screen and (max-width: 1050px) {
  #home-attorney-cell-1 {
    min-width: none;
  }
  #home-attorney .swiper {
    margin: 30px 0 0;
    max-width: 865px;
  }
}

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

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

/* #endregion  Home Meet the Team Section */

/* #endregion Homepage Sections*/

/* ======================================== *
      #region Single Pages
 * ======================================== */
/* -------------------------------------- *
      #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: 700px;
  max-height: 960px;
  -o-object-fit: cover;
  object-fit: cover;
}
#int-billboard-cell-1,
#int-billboard-cell-2 {
  vertical-align: middle;
}
#int-billboard-cell-1 .inner,
#int-billboard-cell-2 .inner {
  padding: 0;
}

/* --- cell 1 --- */
#int-billboard .int-billboard-content {
  max-width: 90%;
  width: 700px;
  margin: 0 auto;
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 0;
}
#int-billboard h1#page-title {
  margin-bottom: 35px;
  text-align: center;
}
#int-billboard p {
  color: #fff;
  text-align: center;
}
#int-billboard .mobile-view {
  display: none;
}
#int-billboard .sub-title {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

@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%;
    width: 90%;
  }
  #int-billboard .mobile-view {
    display: block;
  }
}

@media screen and (max-width: 650px) {
  #int-billboard .int-billboard-content {
    /* width: 100%; */
    top: 65%;
  }
  #int-billboard .int-billboard-img {
    min-height: 650px;
  }
}

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

/* -------------------------------------- *
      #region Under Body Section
 * -------------------------------------- */
#pa-under-body-wrapper {
  padding: 75px 0;
  background: var(--secondary);
}

/* cell 1 */
#pa-under-body-cell-1 h2 {
  margin-top: 0;
  margin-bottom: 15px;
}
#pa-under-body-cell-1 h3 {
  margin: 10px 0 10px;
}
#pa-under-body-cell-1 p {
  line-height: 1.7;
  margin-bottom: 15px;
}

/* cell 2 */
#pa-under-body-cell-2 .list-items .item {
  margin-bottom: 7px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
#pa-under-body-cell-2 .list-items .item::before {
  content: '';
  display: inline-block;
  background: url('../images/parmenterlaw_icon_sprite_3x.png') no-repeat;
  background-size: 650px;
  background-position: -502px 1px;
  width: 16px;
  height: 15px;
  margin-right: 7px;
}
#pa-under-body-cell-2 .list-items .item::marker {
  content: '';
}

#pa-under-body-cell-2 .list-items .item a {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
#pa-under-body-cell-2 .list-items .item a:hover {
  color: var(--accent);
  text-decoration: none;
}

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

@media screen and (max-width: 500px) {
  #pa-under-body-container {
    max-width: 100%;
  }
}
/* #endregion Under Body Section */

/* -------------------------------------- *
      #region attorney Section
 * -------------------------------------- */
#pa-attorney-body-wrapper {
  padding: 100px 0;
  background: url('../images/int_services_attorneys_bg_3x.jpg') no-repeat center/cover;
}
#pa-attorney-body-cell-1 h3 {
  color: #fff;
  margin-bottom: 15px;
}
#pa-attorney-body-cell-1 p {
  color: #fff;
  line-height: 1.7;
}
#pa-attorney-body-cell-1 h4 {
  color: #fff;
  margin-bottom: 25px;
}
#pa-attorney-body-cell-1 a:hover {
  text-decoration: none;
}
#pa-attorney-body-cell-1 .related-section {
  margin-top: 100px;
}
#pa-attorney-body-cell-1 .related-list .attorney {
  max-width: 150px;
}
#pa-attorney-body-cell-1 .related-list .attorney img {
  display: block;
  border-radius: 50%;
}
#pa-attorney-body-cell-1 .related-list .attorney a {
  display: block;
  text-align: center;
}
#pa-attorney-body-cell-1 .img-wrapper {
  position: relative;
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
}
#pa-attorney-body-cell-1 .img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 60, 102, 0.73);
  border-radius: 50%;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
}
#pa-attorney-body-cell-1 a:hover .img-wrapper::after {
  opacity: 1;
}
#pa-attorney-body-cell-1 .overlay-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-weight: 300;
  font-size: 15px;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
#pa-attorney-body-cell-1 a:hover .overlay-txt {
  opacity: 1;
  color: #fff;
}
#pa-attorney-body-cell-1 .title {
  color: #fff;
  font-weight: 600;
  margin-top: 10px;
}
#pa-attorney-body-cell-1 .custom-attorney-titles {
  color: #fff;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.2;
}
#pa-attorney-body-cell-1 a:hover .custom-attorney-titles,
#pa-attorney-body-cell-1 a:hover .title {
  color: var(--accent);
}

@media screen and (max-width: 1050px) {
  #pa-attorney-body-wrapper {
    padding: 50px 0;
  }
  #pa-attorney-body-cell-1 .related-section {
    margin-top: 50px;
    gap: 50px;
  }
}

@media screen and (max-width: 500px) {
  #pa-attorney-body-container {
    max-width: 100%;
  }
}

/* #endregion attorney Section */

/* -------------------------------------- *
      #region contact Section
 * -------------------------------------- */
#pa-contact-body-wrapper {
  padding: 100px 0;
}

/* Cell 1 */
#pa-contact-body-cell-1 {
  vertical-align: middle;
  width: auto;
}
#pa-contact-body-cell-1 h2 {
  margin-bottom: 15px;
}
#pa-contact-body-cell-1 h3 {
  margin: 15px 0 5px;
}
#pa-contact-body-cell-1 p {
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Cell 2 */
#pa-contact-body-cell-2 {
  width: 450px;
}

@media screen and (max-width: 1050px) {
  #pa-contact-body-wrapper {
    padding: 50px 0;
  }
  #pa-contact-body-cell-2 {
    padding-top: 50px;
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  #pa-contact-body-container {
    max-width: 100%;
  }
}

/* #endregion contact Section */

/* -------------------------------------- *
      #region Single Practice Area Practice areas slider
 * -------------------------------------- */
.single-practice-area #home-practice-areas .slick-slide {
  display: block !important;
}
.single-practice-area #home-practice-areas .pa-listing {
  display: block;
  padding: 0;
}
.single-practice-area #home-practice-areas .pa-listing .pa-icon {
  margin: 0 auto 25px;
}
.single-practice-area #home-practice-areas .pa-listing a {
  padding: 45px 25px;
}
.single-practice-area #home-practice-areas .pa-listing .title {
  font-size: 24px;
}

/* #endregion Single Practice Area Practice areas slider */

/* #endregion Single Practice Areas Pages */

/* -------------------------------------- *
      #region Single Attorney Page CSS
 * -------------------------------------- */
#attorney-bio-wrapper {
  /* background: url('../images/int_hero_bio_bg_3x.jpg') no-repeat center/cover; */
  background: #1a3862;
  height: 350px;
  border-bottom: 60px solid var(--secondary-dark);
}
#attorney-bio-cell-1,
#attorney-bio-cell-2 {
  vertical-align: top;
}

/* ------ cell 1 ------ */
#attorney-bio-cell-1 {
  width: 450px;
}
#attorney-bio img {
  display: block;
  margin-top: 50px;
  /* border-radius: 5px; */
  width: 100%;
  height: auto;
}

/* ------ cell 2 ------ */
#attorney-bio-cell-2 {
  width: auto;
}
#attorney-bio-cell-2 .inner {
  min-height: 290px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.attorney-bio-info .title-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 35px;
  margin-bottom: 15px;
}
.attorney-bio-info h1#page-title {
  font-size: 50px;
  margin-bottom: 0;
}
.attorney-bio-info .attorney-titles a {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--body-font);
}
.attorney-bio-info .contact-information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.attorney-bio-info .contact-information a,
.attorney-bio-info .icon-container a,
.attorney-bio-info .speaking a {
  color: #fff;
  font-weight: 300;
}
.attorney-bio-info .phone,
.attorney-bio-info .vcard,
.attorney-bio-info .resume,
.attorney-bio-info .fax,
.attorney-bio-info .email {
  display: inline-block;
  padding-top: 5px;
  line-height: normal;
  margin-right: 10px;
  padding-right: 10px;
  vertical-align: middle;
}
.attorney-bio-info .label {
  font-size: 0;
}
.attorney-bio-info .vcard .value {
  background: transparent;
  height: auto;
  width: auto;
  margin-right: 0;
}
.attorney-bio-info .resume .label {
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  margin: 0;
  vertical-align: middle;
}
.attorney-bio-info .resume .value {
  background: transparent;
  background-position: unset;
  width: 0;
  height: 0;
  margin-right: 5px;
  display: inline-block;
}
.attorney-bio-info .resume::before,
.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: #fff;
  font-size: 15px;
  font-family: var(--font-awesome);
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
}
.attorney-bio-info .resume::before {
  content: '\f1c1';
  font-size: 22px;
  margin-right: 5px;
}
.attorney-bio-info .phone-1::before,
.attorney-bio-info .phone-2::before {
  content: '\f879';
  margin-right: 5px;
  -webkit-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  transform: rotate(10deg);
}
.attorney-bio-info .fax::before {
  content: '\f1ac';
  margin-right: 5px;
}
.attorney-bio-info .email::before {
  content: '\f0e0';
  margin-right: 5px;
}
.attorney-bio-info .vcard::before {
  content: '\f2bb';
}

/* ------ Attorney Easy Tabs ------ */
.at-tabs {
  position: relative;
}
.etabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  position: relative;
  top: -60px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.etabs::before,
.etabs::after {
  content: '';
  background: var(--secondary-dark);
  display: block;
  height: 100%;
  width: 1000%;
  position: absolute;
  top: 0;
  z-index: -1;
}
.etabs::before {
  right: 100%;
}
.etabs::after {
  left: 100%;
}
.tab {
  border-right: 2px solid #c7c7c7;
  background: var(--secondary-dark);
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.tab.active::after {
  content: '\f0d7';
  color: #fff;
  font-family: var(--font-awesome);
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  bottom: -13px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: inline-block;
  z-index: 1;
}
.tab a {
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  font-family: var(--body-font);
  display: block;
  padding: 20px 15px;
  outline: none;
  text-decoration: none !important;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.tab:hover,
.tab.active {
  background: #fff;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.15);
  border-right: 2px solid #fff;
  z-index: 1;
}
.tab.active {
  z-index: 2;
}
.tab.wrapped {
  border-top: 2px solid #c7c7c7;
}
.tab.first-in-row {
  border-left: 2px solid #c7c7c7;
}
.tab.wrapped:hover,
.tab.wrapped.active {
  border-top: 2px solid #fff;
}
.tab.first-in-row:hover,
.tab.first-in-row.active {
  border-left: 2px solid #fff;
}
.tab a:hover,
.tab a.active {
  color: var(--accent);
}
.panel-container .tabcontent {
  padding: 0;
}
.panel-container p {
  line-height: 26px;
  margin-bottom: 15px;
}
.panel-container p:last-child {
  margin-bottom: 0;
}
.panel-container .editor-content ol,
.panel-container .editor-content ul {
  padding-left: 40px;
  margin: 0;
}
.panel-container .editor-content ol ol,
.panel-container .editor-content ul ul {
  padding-left: 40px;
  margin: 10px 0;
}

@media screen and (max-width: 760px) {
  .etabs {
    display: block;
    position: relative;
    top: unset;
    background: var(--secondary-dark);
    padding: 25px 0 !important;
  }
  .etabs::before,
  .etabs::after {
    content: '';
    background: var(--secondary-dark);
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
  }
  .etabs::before {
    right: 100%;
  }
  .etabs::after {
    left: 100%;
  }
  .tab {
    border: 2px solid #c7c7c7;
    display: block;
    margin-bottom: 10px;
  }
  .tab:hover,
  .tab.active {
    border: 2px solid #fff;
  }
  .tab:last-of-type {
    margin-bottom: 0;
  }
  .tab.active::after {
    content: '\f0d8';
    color: #c7c7c7;
    font-family: var(--font-awesome);
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: inline-block;
  }
  .panel-container .tabcontent {
    padding: 60px 0 0;
  }
}
/* ------ End Easy Tabs ------ */

@media screen and (max-width: 1600px) {
  .attorney-bio-info h1#page-title {
    font-size: 40px;
  }
}

@media screen and (max-width: 1400px) {
  .attorney-bio-info .title-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  .attorney-bio-info .contact-information {
    gap: 15px;
  }
}

@media screen and (max-width: 1200px) {
  #attorney-bio-cell-1 {
    width: 400px;
  }
}

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

@media screen and (max-width: 1050px) {
  #attorney-bio img {
    margin-top: 0;
    position: static;
  }
}

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

@media screen and (max-width: 760px) {
  #attorney-bio-wrapper {
    border-bottom: 0;
  }
}

/* #endregion Single Attorney Page CSS */

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

/* #endregion Single Video */

/* #endregion Single Pages */

/* ======================================== *
      #region All Archives
 * ======================================== */
/* -------------------------------------- *
      #region Blog & News archive
 * -------------------------------------- */
.tmf-post.news.medium .excerpt img.thumbnail.mobile,
.tmf-post.post.medium .excerpt img.thumbnail.mobile {
  display: none;
}
.social-buttons .facebook-like {
  width: 75px;
}
.social-buttons .facebook-share {
  width: 86px;
}
.post-type-archive-news .social-buttons,
.blog .social-buttons {
  display: none;
}
.post-type-archive-news .tmf-post.news .post-information-container,
.blog .tmf-post.post .post-information-container {
  margin-top: 10px;
}
.post-type-archive-news .tmf-post.post .social-buttons,
.blog .tmf-post.post .social-buttons {
  margin: 0;
}
.blog .tmf-post.post.medium img.thumbnail {
  /* border-radius: 5px; */
}

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

/* ---------------------------------------- *
      #region Testimonial Archive
 * ---------------------------------------- */
.tmf-post.testimonial .testimonial-description {
  float: none;
  font-size: 14px;
  margin-top: 10px;
  font-style: normal;
  font-weight: 500;
}
.post-type-archive-testimonial .tmf-post .taxonomy-container {
  margin-top: 0;
}

/* #endregion Testimonial Archive */

/* -------------------------------------- *
      #region Practice Area archive
 * -------------------------------------- */
.post-type-archive-practice-area p {
  line-height: 1.7em;
  margin-bottom: 15px;
}
/* .post-type-archive-practice-area #body-cell-1 .tmf-post.practice-area {
  padding-bottom: 45px;
  margin-bottom: 45px;
} */
/* .post-type-archive-practice-area #body-cell-1 .tmf-post.practice-area.last-post {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
} */
.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;
}
.post-type-archive-practice-area .tmf-post-list.medium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.post-type-archive-practice-area .tmf-post.medium {
  border: 1px solid #ccc;
  text-align: center;
  padding-bottom: 0;
  margin-bottom: 0;
  padding: 35px 25px;
}
.post-type-archive-practice-area .tmf-post.medium:last-of-type {
  border-bottom: 1px solid #ccc;
}
.post-type-archive-practice-area .tmf-post.medium h2.title {
  font-size: 34px;
}
.post-type-archive-practice-area .tmf-post.medium:hover {
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 1350px) {
  .post-type-archive-practice-area .tmf-post-list.medium {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 900px) {
  .post-type-archive-practice-area .tmf-post-list.medium {
    grid-template-columns: repeat(1, 1fr);
  }
}

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

/* -------------------------------------- *
      #region Location archive
 * -------------------------------------- */
.post-type-archive-location #body #location-cell-1 .inner {
  padding: 0;
}
.post-type-archive-location #body #location-cell-2 .inner {
  padding: 0;
}
.post-type-archive-location .tmf-post.location.medium h2 {
  margin-top: 0;
}

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

/* #endregion Location archive*/

/* --------------------------------------- *
      #region Attorney archive
 * --------------------------------------- */
.post-type-archive-attorney .tmf-post.attorney.medium .read-more-button.top {
  float: right;
  margin-bottom: 10px;
  margin-left: 25px;
  display: none !important;
}
.post-type-archive-attorney .tmf-post.attorney.medium .read-more-button.bottom {
  display: block !important;
  float: left;
}
.post-type-archive-attorney .tmf-post.attorney {
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.post-type-archive-attorney .tmf-post.attorney.last-post {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 1px solid #ccc;
}
.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: 700px) {
  .post-type-archive-attorney .tmf-post.attorney.medium h2.title {
    font-size: 30px;
  }
}

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

/*  Isotope Filters */
.post-type-archive-attorney #body-wrapper {
  min-height: 50vh;
}
.isotope-filters {
  max-width: 1230px;
  text-align: center;
  margin: 0 auto 25px;
}
.provider-filters.isotope-filters select {
  background-image: -o-linear-gradient(45deg, transparent 50%, gray 50%), -o-linear-gradient(315deg, gray 50%, transparent 50%);
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%);
  background-position: calc(100% - 15px) calc(1em + 2px), calc(100% - 10px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.6em;
  background-repeat: no-repeat;
  padding: 10px 35px 10px 20px !important;
  border-radius: 0;
}
.isotope-filters label strong {
  font-weight: 700;
  margin-right: 5px;
}

.isotope-filters label:last-child {
  margin-left: 30px;
}
.isotope-filters .filter {
  border: 1px solid #ccc;
}
.post-type-archive-attorney .post-container {
  margin: 0 auto;
}
.isotope {
  display: flex;
  flex-wrap: wrap;
}
.isotope-item {
  width: calc(33.33% - 40px);
  margin-right: 20px;
  margin-bottom: 20px !important;
}
.isotope-item {
  border: 1px solid #ccc;
  padding: 0;
  display: flex;
  align-items: center;
}
.isotope-item.tmf-post.medium img.thumbnail {
  float: none;
  margin: 0;
  display: block;
}
.isotope-item .title {
  flex-grow: 1;
}
.isotope-item .attorney-name {
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-style: italic;
  flex-direction: column;
  width: 100%;
}
.attorney-name span.person,
.attorney-name span.attorney-titles {
  width: 100%;
}
.attorney-name span.person {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}
.isotope-item:hover {
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
}
.isotope-item:hover .attorney-name span.person {
  color: var(--accent);
}

@media screen and (max-width: 1436px) {
  .isotope-filters {
    max-width: 820px;
    text-align: center;
  }
}

@media screen and (max-width: 1250px) {
  .isotope-item {
    width: calc(50% - 40px);
    margin-right: 20px;
    margin-bottom: 20px !important;
  }
}

@media screen and (max-width: 850px) {
  .isotope-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px !important;
  }
}

@media screen and (max-width: 740px) {
  .isotope-filters {
    text-align: left;
  }
  .isotope-filters label:last-child {
    margin-left: 0;
    display: block;
  }
  .isotope-filters label {
    margin-bottom: 10px;
    display: block;
  }
  .isotope-filters label select {
    width: 100%;
  }
  .isotope-filters {
    max-width: 100%;
    margin: 0 auto 15px;
  }
  .post-type-archive-attorney #body-wrapper {
    padding: 50px 0 50px;
  }
}

@media screen and (max-width: 550px) {
  .post-type-archive-attorney #body-cell-1 .tmf-post-list.medium {
    max-width: 100%;
  }
}

@media screen and (max-width: 520px) {
  .isotope-item {
    margin-bottom: 15px !important;
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .post-type-archive-attorney .tmf-post.attorney.medium img.thumbnail {
    max-width: 95px;
  }
  .attorney-name span.person {
    font-size: 14px;
  }
}

/* #endregion Attorney archive*/

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

/* #endregion Attorney Archive: Category Attorney*/

/* #endregion All Archives*/

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

/* --- Cell 1 --- */
#int-footer-cell-1 {
  vertical-align: middle;
}
#int-footer-cell-1 .logo {
  margin-bottom: 25px;
  width: 100%;
  height: auto;
  max-width: 432px;
}
#int-footer-cell-1 .business-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 100px;
}
#int-footer-cell-1 .business-info .address,
#int-footer-cell-1 .business-info .fax .value,
#int-footer-cell-1 .business-info .phone-1 .value a,
#int-footer-cell-1 .business-info .phone-2 .value a,
#int-footer-cell-1 .business-info .email .value {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
}
#int-footer-cell-1 .address::before,
#int-footer-cell-1 .tmf-post.small.location .streetAddress::before,
#int-footer-cell-1 .tmf-post.small.location .fax::before,
#int-footer-cell-1 .tmf-post.small.location .phone-1::before,
#int-footer-cell-1 .tmf-post.small.location .phone-2::before,
#int-footer-cell-1 .tmf-post.small.location .email::before {
  color: var(--accent);
  display: inline-block;
  vertical-align: top;
  font-family: var(--font-awesome);
  font-size: 17px;
  font-weight: 700;
  margin-right: 18px;
}
#int-footer-cell-1 .tmf-post.small.location .phone-1,
#int-footer-cell-1 .tmf-post.small.location .email {
  height: 24px;
}

/* col 1 */
#int-footer-cell-1 .business-info .col-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}
#int-footer-cell-1 .business-info a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
#int-footer-cell-1 .address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
#int-footer-cell-1 .address .address-label,
#int-footer-cell-1 .address .address-sub-label {
  font-size: 12px;
  font-weight: 300;
  line-height: 21px;
}
#int-footer-cell-1 .address::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 18px;
  background: url('../images/parmenterlaw_icon_sprite_3x.png') no-repeat;
  background-size: 670px;
  background-position: -86px 0;
  width: 20px;
  height: 17px;
}
#int-footer-cell-1 .mailing-address::before {
  content: '';
  background-position: -150px 0;
}
#int-footer-cell-1 .tmf-post.small.location .streetAddress {
  line-height: 22px;
  -ms-flex-item-align: center;
  align-self: center;
}
#int-footer-cell-1 .tmf-post.small.location .streetAddress::before {
  display: none;
}

/* col 2 */
#int-footer-cell-1 .business-info .col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
#int-footer-cell-1 .directions a {
  position: relative;
  font-weight: 500;
}
#int-footer-cell-1 .directions a::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 22px;
  background: url('../images/parmenterlaw_icon_sprite_3x.png') no-repeat;
  background-size: 670px;
  background-position: -121px 0;
  width: 20px;
  height: 17px;
}

/* col 3 */
#int-footer-cell-1 .business-info .col-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
#int-footer-cell-1 .footer-social a {
  display: block;
}
#int-footer-cell-1 .footer-social a:hover {
  text-decoration: underline !important;
}
#int-footer-cell-1 .footer-social a .label {
  font-size: 15px;
  font-weight: 500;
}
#int-footer-cell-1 .footer-social .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}
#int-footer-cell-1 .footer-social .social-icons .icon {
  background: none;
  width: 20px;
  height: 17px;
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
#int-footer-cell-1 .careers a {
  position: relative;
  font-weight: 500;
}
#int-footer-cell-1 .careers a::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  background: url('../images/parmenterlaw_icon_sprite_3x.png') no-repeat;
  background-size: 670px;
  background-position: -302px 0px;
  width: 20px;
  height: 17px;
}

@media screen and (max-width: 1150px) {
  #int-footer-cell-1 .business-info {
    gap: 50px;
  }
}

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

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

/* #endregion Interior Footer Section */

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

/* --- Cell 1 --- */
#footer-cell-1 {
  vertical-align: middle;
}
#footer-cell-1 .logo {
  margin-bottom: 10px;
  width: 100%;
  height: auto;
  max-width: 432px;
}
#footer-cell-1 .business-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px;
  max-width: 800px;
}
#footer-cell-1 .business-info .address,
#footer-cell-1 .business-info .fax .value,
#footer-cell-1 .business-info .phone-1 .value a,
#footer-cell-1 .business-info .phone-2 .value a,
#footer-cell-1 .business-info .email .value {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
}
#footer-cell-1 .address::before,
#footer-cell-1 .tmf-post.small.location .streetAddress::before,
#footer-cell-1 .tmf-post.small.location .fax::before,
#footer-cell-1 .tmf-post.small.location .phone-1::before,
#footer-cell-1 .tmf-post.small.location .phone-2::before,
#footer-cell-1 .tmf-post.small.location .email::before {
  color: var(--accent);
  display: inline-block;
  vertical-align: top;
  font-family: var(--font-awesome);
  font-size: 17px;
  font-weight: 700;
  margin-right: 18px;
}
#footer-cell-1 .tmf-post.small.location .phone-1,
#footer-cell-1 .tmf-post.small.location .email {
  height: 24px;
}

/* col 1 */
#footer-cell-1 .business-info .col-1 {
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}
#footer-cell-1 .business-info a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
#footer-cell-1 .address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
#footer-cell-1 .address .address-label,
#footer-cell-1 .address .address-sub-label {
  font-size: 12px;
  font-weight: 300;
  line-height: 21px;
}
#footer-cell-1 .address::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 18px;
  background: url('../images/parmenterlaw_icon_sprite_3x.png') no-repeat;
  background-size: 670px;
  background-position: -86px 0;
  width: 20px;
  height: 17px;
}
#footer-cell-1 .mailing-address::before {
  content: '';
  background-position: -150px 0;
}
#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 .directions a {
  position: relative;
  font-weight: 500;
}
#footer-cell-1 .directions a::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 22px;
  background: url('../images/parmenterlaw_icon_sprite_3x.png') no-repeat;
  background-size: 670px;
  background-position: -121px 0;
  width: 20px;
  height: 17px;
}

/* col 2 */
#footer-cell-1 .business-info .col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
#footer-cell-1 .careers a {
  position: relative;
  font-weight: 500;
}
#footer-cell-1 .careers a::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  background: url('../images/parmenterlaw_icon_sprite_3x.png') no-repeat;
  background-size: 670px;
  background-position: -302px 0px;
  width: 20px;
  height: 17px;
}

/* Socials */
#footer-cell-1 .footer-social a {
  display: block;
}
#footer-cell-1 .footer-social a:hover {
  text-decoration: underline !important;
}
#footer-cell-1 .footer-social a .label {
  font-size: 15px;
  font-weight: 500;
}
#footer-cell-1 .footer-social .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}
#footer-cell-1 .footer-social .social-icons .icon {
  background: none;
  width: 20px;
  height: 17px;
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.social-icons .twitter::before,
.social-icons .youtube::before,
.social-icons .instagram::before,
.social-icons .facebook::before,
.social-icons .linked-in::before {
  display: inline-block;
  vertical-align: middle;
  background: url('../images/parmenterlaw_icon_sprite_3x.png') no-repeat;
  background-size: 670px;
  width: 20px;
  height: 17px;
  position: absolute;
  top: 0;
  left: 0;
}
.social-icons .facebook::before {
  content: '';
  background-position: -242px 1px;
}
.social-icons .linked-in::before {
  content: '';
  background-position: -272px 1px;
}
.social-icons .instagram::before {
  content: '';
  background-position: -334px 0;
}
.social-icons .youtube::before {
  content: '';
  background-position: -394px 2px;
}
.social-icons .twitter::before {
  content: '';
  background-position: -365px 0;
}

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

@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: url('../images/home_footer_bg_3x.jpg') no-repeat center/cover;
  overflow: hidden;
}
#copyright {
  padding: 25px 0;
}
#copyright p {
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  margin: 0;
}
#copyright p a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}
#copyright a:hover {
  text-decoration: underline;
}
#copyright .divider {
  margin: 0 7px !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;
}
#copyright-cell-2 a {
  font-weight: 500;
}

@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: left;
    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 Editor Blocks
 * ======================================== */
/* -------------------------------------- *
      #region Call to Action
 * -------------------------------------- */
body #call-to-action {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: transparent !important;
  margin: 30px 0;
  padding: 50px 0;
}
body #call-to-action .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  position: relative;
}
body #call-to-action .col {
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  overflow: visible;
}
body #call-to-action .col.left {
  background: url('../images/int_cta2_bg_3x.jpg') no-repeat center/cover;
  /* border-radius: 5px; */
  min-width: 270px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
body #call-to-action .col.right {
  padding: 45px 35px;
  text-align: left;
}
body #call-to-action .col .content {
  max-width: 100%;
}
body #call-to-action .col h3,
body #call-to-action .col h4 {
  color: var(--primary-dark);
  text-align: center;
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2em;
  font-family: var(--body-font);
}
body #call-to-action .col p {
  color: #000;
  font-weight: 600;
  font-size: 15px;
}
body #call-to-action .col p a {
  color: var(--accent) !important;
}
body #call-to-action .col .tmf-button {
  color: var(--primary-dark) !important;
  margin-top: 10px;
}
body #call-to-action .col .tmf-button:hover {
  border-color: var(--primary);
  color: var(--primary) !important;
}

@media screen and (max-width: 1050px) {
  body #call-to-action {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 800px), screen and (max-width: 1200px) and (min-width: 1050px) {
  body #call-to-action {
    padding: 20px 0;
  }
  body #call-to-action .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  body #call-to-action .col.left {
    height: auto;
    width: 100%;
    padding: 30px 20px !important;
  }
  body #call-to-action .col.right {
    padding: 35px 25px;
  }
}
/* #endregion Call to Action */

/* -------------------------------------- *
      #region Aside
 * -------------------------------------- */
aside {
  float: right;
  width: 350px;
  margin: 15px;
  padding: 0;
  background: transparent;
  color: var(--primary);
  font-family: var(--body-font);
  font-size: 24px;
  font-weight: 600;
  position: relative;
}
.editor-content aside h3,
.editor-content aside h4,
.editor-content aside p {
  font-family: var(--body-font);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  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;
  margin: 45px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}
#callout .callout-icon {
  display: inline-block;
  background: url('../images/int_cta1_icon_3x.png') no-repeat;
  background-size: contain;
  width: 120px;
  height: 120px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
#callout h3,
#callout h4 {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 24px;
  margin: 0;
  line-height: 1.4;
}
.editor-content #callout p {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
}
#callout a {
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
}
#callout a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 600px) {
  #callout .callout-icon {
    width: 80px;
    height: 80px;
    -ms-flex-item-align: start;
    align-self: start;
  }
}

/* #endregion Callout */

/* -------------------------------------- *
      #region Callout Alt
 * -------------------------------------- */
#callout-alt {
  border: 2px solid var(--secondary-dark);
  /* border-radius: 5px; */
  padding: 45px 35px;
  margin-bottom: 25px;
}
#callout-alt p {
  font-weight: 600;
  font-size: 24px;
}
#callout-alt ul {
  padding-left: 25px;
  margin-bottom: 0;
}
#callout-alt ul li {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 300;
}
#callout-alt ul li::before {
  color: #000;
}

/* #endregion  Callout Alt */

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

/* #endregion Blockquote */

/* #endregion Editor Blocks */

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

/* For More information Form - sidebar */
body .tmf-module-22 {
  background: url('../images/int_contact_form_bg_3x.jpg') no-repeat center/cover;
  padding: 50px 35px;
  text-align: center;
  position: relative;
  /* border-radius: 5px; */
}
body .tmf-module-22 h3 {
  font-family: var(--body-font);
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
  line-height: 38px;
}

@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-2123 {
  margin-top: 50px;
  background: var(--secondary-dark);
}
.tmf-module-2123 .tmf-post {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
  border-top: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
  -webkit-transition: border-color 0.15s ease-in;
  -o-transition: border-color 0.15s ease-in;
  transition: border-color 0.15s ease-in;
}
.tmf-module-2123 .tmf-post:hover {
  border-color: #fff;
}
.tmf-module-2123 .tmf-post a::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -12px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 12px solid #fff;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.tmf-module-2123 .tmf-post a:hover::after {
  opacity: 1;
}
.tmf-module-2123 .tmf-post a {
  background: transparent;
  display: block;
  padding: 20px 25px;
  border-radius: 0;
  text-decoration: none;
  -webkit-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.tmf-module-2123 .tmf-post a:hover {
  background: #fff;
  -webkit-box-shadow: -10px 0px 60px -10px rgba(0, 0, 0, 0.25);
  box-shadow: -10px 0px 60px -10px rgba(0, 0, 0, 0.25);
}
.tmf-module-2123 .tmf-post a .title {
  color: var(--primary);
  font-size: 24px;
  font-weight: 600;
  -webkit-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}
.tmf-module-2123 .tmf-post a:hover .title {
  color: var(--accent);
}
.tmf-module-2123 .tmf-post a .pa-icon {
  background: url('../images/parmenterlaw_icon_sprite_sidebar_practice_areas_3x.png') no-repeat;
  background-size: 650px;
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
/*  Business */
.tmf-module-2123 .tmf-post.tmf-post-116 a .pa-icon {
  background-size: 770px;
  background-position: 0 0;
}
/* Civil Litigation */
.tmf-module-2123 .tmf-post.tmf-post-118 a .pa-icon {
  background-size: 700px;
  background-position: -32px 0px;
}
/* Commercial Leasing */
.tmf-module-2123 .tmf-post.tmf-post-120 a .pa-icon {
  /* background-size: 650px; */
  background-position: -274px 0px;
}
/* Elder Law */
.tmf-module-2123 .tmf-post.tmf-post-124 a .pa-icon {
  background-size: 690px;
  background-position: -97px 0px;
}
/* Estate Planning */
.tmf-module-2123 .tmf-post.tmf-post-126 a .pa-icon {
  background-size: 700px;
  background-position: -162px 0px;
}
/* Family Law */
.tmf-module-2123 .tmf-post.tmf-post-878 a .pa-icon {
  background-size: 700px;
  background-position: -194px 0px;
}
/* Intellectual Property */
.tmf-module-2123 .tmf-post.tmf-post-128 a .pa-icon {
  background-size: 750px;
  background-position: -245px 0px;
}
/* Labor Law */
.tmf-module-2123 .tmf-post.tmf-post-130 a .pa-icon {
  background-size: 750px;
  background-position: -280px 3px;
}
/* Liquor Licenses */
.tmf-module-2123 .tmf-post.tmf-post-132 a .pa-icon {
  background-position: -390px 0px;
}
/* Non-Profit Organizations */
.tmf-module-2123 .tmf-post.tmf-post-134 a .pa-icon {
  background-position: -335px 0px;
}
/* Probate Court */
.tmf-module-2123 .tmf-post.tmf-post-136 a .pa-icon {
  background-position: -547px 0px;
}
/* Public Sector */
.tmf-module-2123 .tmf-post.tmf-post-138 a .pa-icon {
  background-size: 650px;
  background-position: -487px 0px;
}
/* Real Estate */
.tmf-module-2123 .tmf-post.tmf-post-140 a .pa-icon {
  background-position: -426px 0px;
}
/* Trust & Estate Administration */
.tmf-module-2123 .tmf-post.tmf-post-142 a .pa-icon {
  background-size: 600px;
  background-position: -560px 0px;
}

/* End Sidebar Practice Areas - sidebar */

/* #endregion Modules */

/* ======================================== *
      #region Buttons
 * ======================================== */
/* read more links */
.post-type-archive .tmf-post a.read-more {
  text-decoration: none;
  font-weight: 500;
}
.post-type-archive .tmf-post a.read-more:hover {
  text-decoration: underline;
}

/* read more button */
.tmf-post.medium a.read-more-button {
  margin-top: 15px;
}

/* all buttons */
.tmf-button,
input[type='submit'] {
  position: relative;
  display: inline-block;
  padding: 14px 32px;
  color: #fff;
  text-align: center;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  background: var(--accent);
  border: 1px 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;
  border-color: var(--primary);
  background: transparent;
  color: var(--primary);
}
.tmf-button:active,
input[type='submit']:active {
  text-decoration: none;
  border-color: var(--primary);
  background: transparent;
  color: var(--primary);
}

/* form button */
.gform_wrapper .tmf-button,
.gform_wrapper input[type='submit'] {
  background: var(--accent);
  color: #fff;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.gform_wrapper .tmf-button:active,
.gform_wrapper input[type='submit']:active,
.gform_wrapper .tmf-button:hover,
.gform_wrapper input[type='submit']:hover {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}
/* pagination buttons */
.page-navigation .tmf-button,
.page-navigation .page-numbers {
  background: var(--primary);
  color: #fff;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  line-height: 31px;
  height: auto;
  -webkit-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
  /* border-radius: 5px; */
  border: none;
}
.page-navigation .page-numbers:hover,
.page-navigation .page-numbers:active {
  background: var(--accent);
  color: #fff;
}
.page-navigation .last.tmf-button {
  vertical-align: top;
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
}
.page-navigation .last.tmf-button:active,
.page-navigation .last.tmf-button:hover {
  color: #fff;
  background: var(--accent);
}
.page-navigation .last.tmf-button::before,
.page-navigation .last.tmf-button::after {
  display: none;
}
.page-numbers.current {
  background: var(--accent);
  color: #fff;
}
.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);
}

/* ----- table ----- */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 15px;
}
thead tr th {
  font-weight: 700;
}
tr td {
  border: 1px solid #9a9a9a;
  padding: 8px;
  line-height: 1.3;
}

/* ----- 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: 0;
  /* border-radius: 5px; */
  color: #333333;
  font-size: 15px !important;
  margin-top: 0 !important;
  margin-bottom: 5px !important;
  max-width: 100%;
  padding: 15px 20px !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;
}
.ginput_address_country select,
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;
}
/* make black icon to white for dark background */
body .ginput_container_list table.gfield_list tbody tr td.gfield_list_icons img {
  -webkit-filter: invert(1);
  filter: invert(1);
}

a:focus-visible,
input:focus-visible,
button:focus-visible,
textarea:focus-visible {
  outline: 2px dotted red;
}
select:focus,
input:focus,
textarea:focus {
  outline: none;
}

/* Gravity Forms */
.gform_legacy_markup_wrapper {
  margin: 0 auto !important;
}
.gform_legacy_markup_wrapper .gform_footer {
  padding: 0 !important;
  margin: 0 !important;
  margin-top: 15px !important;
}
.gform_wrapper #gform_1 li {
  padding-right: 0;
  padding-bottom: 15px;
}
.gform_legacy_markup_wrapper textarea::-webkit-input-placeholder,
.gform_legacy_markup_wrapper input::-webkit-input-placeholder {
  color: #767676;
  text-align: left;
  font-size: 15px !important;
  font-weight: 300;
}
.gform_legacy_markup_wrapper textarea::-moz-placeholder,
.gform_legacy_markup_wrapper input::-moz-placeholder {
  color: #767676;
  text-align: left;
  font-size: 15px !important;
  font-weight: 300;
}
.gform_legacy_markup_wrapper textarea:-ms-input-placeholder,
.gform_legacy_markup_wrapper input:-ms-input-placeholder {
  color: #767676;
  text-align: left;
  font-size: 15px !important;
  font-weight: 300;
}
.gform_legacy_markup_wrapper textarea::-ms-input-placeholder,
.gform_legacy_markup_wrapper input::-ms-input-placeholder {
  color: #767676;
  text-align: left;
  font-size: 15px !important;
  font-weight: 300;
}
.gform_legacy_markup_wrapper textarea::placeholder,
.gform_legacy_markup_wrapper input::placeholder {
  color: #767676;
  text-align: left;
  font-size: 15px !important;
  font-weight: 300;
}
.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: 15px !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;
}

/* Error Handling */
body .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description {
  max-width: 100%;
  text-align: left;
  line-height: 1.3;
  padding: 10px 0 0;
}
body .gform_legacy_markup_wrapper li.gfield.gfield_error,
body .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  border: 0;
  background: none;
}
body .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container,
body .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
  margin-top: 0;
}
body .gform_legacy_markup_wrapper .validation_message {
  color: #ffa0a0;
  font-weight: 500;
  letter-spacing: normal;
  text-align: left;
}
body .gform_legacy_markup_wrapper .gform_validation_errors > h2 {
  font-size: 15px;
  font-weight: 500;
  color: #ffa0a0;
  margin: 0 0 0.9375rem 0;
}
body .gform_legacy_markup_wrapper div.validation_error {
  color: #ffa0a0;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  border: none;
  padding: 0;
  clear: both;
  width: 100%;
  text-align: left;
}
body .gform_legacy_markup_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
  max-width: 100% !important;
}

@media screen and (max-width: 640px) {
  .gform_legacy_markup_wrapper form {
    margin-left: 0 !important;
  }
}
@media only screen and (max-width: 641px) {
  body .gform_legacy_markup_wrapper .ginput_container span:not(.ginput_price) {
    margin-bottom: 0;
    display: block;
  }
}

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

/* #endregion Inputs & Gravity Forms */
