/* ============================================================================ *
        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 - blues */
  --primary-color: #083c61;
  --alt-primary-color-light: #0090e8;
  --alt-primary-color-dark: #0e3960;

  /* ACCENT COLORS - Light Blues */
  --accent-color: #0180e9;
  --alt-accent-color-light: #035ca6;
  --alt-accent-color-dark: #005ca6;

  /* SECONDARY COLORS - grays */
  --secondary-color: #d4e0e8;
  --alt-secondary-color-light: #eef3f4;
  --alt-secondary-color-medium: #4e5558;
  --alt-secondary-color-dark: #3c4042;

  /* FONTS */
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Inter', sans-serif;
}

body {
  color: #000;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration-color: var(--alt-accent-color-light);
}

/* ======================================== *
        Large Screen Container Width CSS
 * ======================================== */
@media screen and (min-width: 1600px) {
  body .section-container:not(#billboard-container):not(#footer-container):not(#home-contact-container) {
    max-width: 90%;
  }

  #primary-nav-container {
    max-width: 800px !important;
    margin: 0 0 0 auto;
  }

  #billboard .billboard-content-container {
    max-width: 75% !important;
  }

  #int-billboard .int-billboard-content {
    max-width: 90% !important;
  }

  #contact-section .tmf-module {
    max-width: 90% !important;
  }

  .attorney-bio-info-container {
    max-width: 90% !important;
  }
}

/* ======================================== *
        Header 1
 * ======================================== */
h1,
h1#page-title,
.editor-content h1 {
  color: #fff;
  font-size: 44px;
  font-family: var(--heading-font);
  font-weight: 400;
  line-height: normal;
  margin-bottom: 15px;
}

body:not(.home) h1,
body:not(.home) h1#page-title,
body:not(.home) .editor-content h1 {
  color: #fff;
  font-size: 42px;
  font-family: var(--heading-font);
  font-weight: 400;
}

/* ======================================== *
        Header 2
 * ======================================== */
h2,
.tmf-post > h2,
.editor-content h2 {
  color: var(--alt-primary-color-dark);
  font-size: 44px;
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: normal;
  margin: 20px 0 10px 0;
}

h2 a,
.tmf-post > h2 a,
.editor-content h2 a {
  color: var(--alt-primary-color-dark);
}

body:not(.home) h2,
body:not(.home) .tmf-post > h2,
body:not(.home) .editor-content h2 {
  color: var(--alt-primary-color-dark);
  font-size: 28px;
  font-family: var(--heading-font);
  font-weight: 400;
}

/* ======================================== *
        Header 3
 * ======================================== */
h3,
.tmf-post > h3,
h3.tmf-module-title {
  color: var(--alt-primary-color-dark);
  font-size: 32px;
  font-family: var(--heading-font);
  font-weight: 400;
  line-height: normal;
  margin-bottom: 15px;
}

h3 a,
.tmf-post > h3 a,
h3.tmf-module-title a {
  color: var(--alt-primary-color-dark);
  text-decoration: none;
}

h3 a:hover,
.tmf-post > h3 a:hover,
h3.tmf-module-title a:hover {
  text-decoration: underline;
}

body:not(.home) h3,
body:not(.home) .tmf-post > h3,
body:not(.home) h3.tmf-module-title {
  color: var(--alt-primary-color-dark);
  font-size: 36px;
  font-family: var(--heading-font);
  font-weight: 400;
}

/* ======================================== *
        Header 4
 * ======================================== */
h4,
.tmf-post > h4 {
  color: #000;
  font-size: 36px;
  font-family: var(--heading-font);
  font-weight: 500;
  line-height: normal;
  margin-bottom: 15px;
}

h4 a,
.tmf-post > h4 a {
  color: var(--alt-primary-color-dark);
  text-decoration: none;
}

h4 a:hover,
.tmf-post > h4 a:hover {
  text-decoration: underline;
}

body:not(.home) h4,
body:not(.home) .tmf-post > h4 {
  color: #000;
  font-size: 26px;
  font-family: var(--heading-font);
  font-weight: 500;
}

/* ======================================== *
        Header 5
 * ======================================== */
h5 {
  color: #000;
  font-size: 40px;
  font-family: var(--heading-font);
  font-weight: 500;
  line-height: normal;
  margin-bottom: 15px;
}

h5 a {
  color: var(--alt-primary-color-dark);
  text-decoration: none;
}

h5 a:hover {
  text-decoration: underline;
}
body:not(.home) h5 {
  color: var(--alt-primary-color-dark);
  font-size: 24px;
  font-family: var(--heading-font);
  font-weight: 500;
}

/* ======================================== *
        Header 6
 * ======================================== */
h6 {
  color: #000;
  font-family: var(--heading-font);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3em;
  margin-bottom: 15px;
}

h6 a {
  color: var(--alt-primary-color-dark);
  text-decoration: none;
}

h6 a:hover {
  text-decoration: underline;
}
body:not(.home) h6 {
  color: #fff;
  font-size: 19px;
  font-family: var(--heading-font);
  font-weight: 600;
}

/* ======================================== *
        Breadcrumbs
 * ======================================== */
#breadcrumbs {
  color: #000;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 25px;
  line-height: 22px;
}
#breadcrumbs span.bread-divider {
  margin: 0 5px;
}

#breadcrumbs a {
  color: #000;
  text-decoration: none;
}

#breadcrumbs .current {
  color: var(--alt-primary-color-dark);
  font-weight: 600;
  font-size: 14px;
}

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

/* ======================================== *
        Call to Action
 * ======================================== */
body #call-to-action {
  display: flex;
  align-items: center;
  background: transparent !important;
  margin: 25px 0;
  padding: 50px 0;
  text-align: center;
}
#call-to-action .left {
  background: #0080e8;
  border: 6px solid #fff;
  padding: 50px 20px;
}
#call-to-action .left h2 {
  color: #fff;
  text-align: center;
  font-size: 28px;
  font-weight: 400;
}
#call-to-action .right {
  background: var(--secondary-color);
  padding: 50px 20px;
}
#call-to-action .right p {
  color: #000;
}
@media screen and (max-width: 1250px) {
  body #call-to-action {
    flex-direction: column;
  }
  #call-to-action .left {
    border-left: none;
    border-right: none;
  }
}
@media screen and (max-width: 1050px) {
  body #call-to-action {
    flex-direction: row;
  }
  #call-to-action .left {
    border: 6px solid #fff;
  }
}
@media screen and (max-width: 775px) {
  body #call-to-action {
    flex-direction: column;
  }
  #call-to-action .left {
    border-left: none;
    border-right: none;
  }
}

/* ======================================== *
        Callout
 * ======================================== */
#callout {
  padding: 25px 0px 25px 50px;
  margin: 35px 0;
  text-align: left;
  background: transparent;
  position: relative;
  z-index: -1;
}
#callout::before {
  content: '';
  background: #c5e9ff;
  border-radius: 100%;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 190px;
  height: 190px;
  z-index: -1;
}
#callout h4,
#callout p {
  color: var(--alt-primary-color-dark);
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 500;
  line-height: 34px;
}

/* ======================================== *
        Custom Sticky Header
 * ======================================== */
body #header-wrapper.sticky {
  -webkit-transition: all 0.33s cubic-bezier(0.694, 0.0482, 0.335, 1);
  -moz-transition: all 0.33s cubic-bezier(0.694, 0.0482, 0.335, 1);
  -o-transition: all 0.33s cubic-bezier(0.694, 0.0482, 0.335, 1);
  -ms-transition: all 0.33s cubic-bezier(0.694, 0.0482, 0.335, 1);
  transition: all 0.33s cubic-bezier(0.694, 0.0482, 0.335, 1);
  top: 0px;
  left: 0;
  position: fixed !important;
  -moz-background-clip: border;
  -webkit-background-clip: border;
  background-clip: border-box;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -moz-background-clip: content;
  -webkit-background-clip: content;
  background-clip: content-box;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: none;
  min-height: auto;
  width: 100%;
  z-index: 2;
  -webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
  -moz-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
  padding: 0;
}
body #header-wrapper.sticky.sticky_animate {
  top: 0;
}
body.admin-bar #header-wrapper.sticky.sticky_animate {
  top: 32px;
}
body #header-wrapper.sticky #header-top {
  display: none;
}
body #header-wrapper.sticky #header-container {
  max-width: 100% !important;
}
body #header-wrapper.sticky #header-cell-1 {
  width: 100%;
  display: block;
}
body #header-wrapper.sticky #header-cell-1 .inner {
  max-width: 90%;
  margin: 0 auto;
}
body #header-wrapper.sticky #header-cell-2 .inner {
  max-width: 90%;
  margin: 0 auto;
}
body #header-wrapper.sticky #header .sticky-logo {
  max-width: 637px;
  width: 100%;
  display: block;
  text-align: center;
  margin: 0 auto;
}

body #header-wrapper.sticky #header .sticky-logo-view {
  align-items: center;
  display: flex;
  width: 100%;
}

body #header-wrapper.sticky #header .sticky-logo-view #primary-nav-wrapper {
  flex-grow: 1;
}
body #header-wrapper.sticky #header #primary-nav-wrapper {
  margin-top: 0;
  width: 100%;
}

#header-top-sticky {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-align: right;
  line-height: 30px;
  flex-shrink: 0;
}

#header-top-sticky a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-family: var(--body-font);
  font-weight: 500;
}

#header-top-sticky a:hover {
  text-decoration: underline;
}

#header-top-sticky .tmf-module .phone-1 {
  margin: 0 15px;
}

body #header-wrapper.sticky #header .sticky-logo-view .tmf-module-17 p {
  display: none;
}

body #header-wrapper.sticky #header .logo {
  display: none;
}
body #header-wrapper.sticky #header #header-cell-1,
body #header-wrapper.sticky #header #header-cell-2 {
  vertical-align: middle;
}

body #header-wrapper.sticky #header-cell-2 {
  width: 100%;
  display: block;
  background: #122a43;
  padding: 15px 0;
}
body #header-wrapper.sticky #header-cell-2 .inner {
  display: table;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
body #header-wrapper.sticky #header-cell-2 #primary-nav-container {
  max-width: 100%;
}
body #header-wrapper.sticky #primary-nav .menu > .menu-item > a {
  color: #fff;
  font-family: var(--body-font);
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
  padding: 10px 0 3px;
  margin-bottom: 7px;
  position: relative;
  height: auto;
}
body #header-wrapper.sticky #primary-nav .menu > .menu-item > a:hover {
  color: #6db2df;
}

body #header-wrapper.sticky #primary-nav .menu .sub-menu {
  min-width: 250px;
  top: 0;
  left: 0;
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}

body #header-wrapper.sticky #primary-nav .menu > li.left-edge > div > ul {
  left: inherit;
  right: 0;
}

body #header-wrapper.sticky #primary-nav .menu .sub-menu .menu-item {
  background: var(--accent-color);
}

body #header-wrapper.sticky #primary-nav .menu .sub-menu .menu-item > a {
  font-size: 16px;
  padding: 10px 15px;
  color: #fff;
  font-weight: 500;
  transition: all 0.25s ease;
}

body #header-wrapper.sticky #primary-nav .menu .sub-menu .menu-item:hover > a {
  background-color: var(--accent-color);
  color: #fff;
}

body #header-wrapper.sticky #primary-nav .menu li a:hover {
  /* background: var(--primary-color); */
  color: #fff;
}

body #header-wrapper.sticky #primary-nav .menu .sub-menu .menu-item {
  background: var(--primary-color);
}

body #header-wrapper.sticky #primary-nav .menu li a:hover {
  /* background: #fff; */
}

body #header-wrapper.sticky #primary-nav .menu li:hover {
}

body #header-wrapper.sticky #header-cell-2 .inner {
  display: flex;
  align-items: center;
}

body #header-wrapper.sticky #header-cell-2 .inner .sticky-view {
  display: block;
  min-width: fit-content;
}

body #header-wrapper.sticky #header-cell-2 .inner .sticky-view .phone-1 a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
body #header-wrapper.sticky #header-cell-2 .inner .sticky-view .phone-1::before {
  content: '\f879';
  margin-right: 7px;
  transform: rotate(10deg);
  width: 16px;
  color: #6db2df;
  font-size: 16px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
}

@media screen and (max-width: 1250px) {
  body #header-wrapper.sticky #header .sticky-logo-view {
    display: none;
  }
}

/* ======================================== *
        Header Top Section
 * ======================================== */
#header-top {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-align: right;
  line-height: 30px;
}

#header-top a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-family: var(--body-font);
  font-weight: 500;
}

#header-top a:hover {
  text-decoration: underline;
}
#header-top .tmf-module-content p {
  display: inline-block;
}

#header-top .phone-1::before {
  content: '\f879';
  margin-right: 7px;
  transform: rotate(10deg);
  width: 16px;
  color: var(--accent-color);
  font-size: 16px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
}

#header-top .tmf-module .phone-1 {
  margin: 0 15px;
}

@media screen and (max-width: 1200px) {
  #header-top {
    margin-right: 0px;
  }
}
@media screen and (max-width: 1135px) {
  #header-top .tmf-module-content p {
    display: block;
  }
}

@media screen and (max-width: 950px) {
  #header-top {
    display: none;
  }
}

@media screen and (max-width: 550px) {
  #header-top .phone-1,
  #header-top .email {
    display: block;
    margin-right: 0;
  }
  #header-top .phone-1 {
    margin-left: 0;
  }
}

@media screen and (max-width: 350px) {
  #header-top {
    font-size: 16px;
  }
}
/* ======================================== *
      Header Section
* ======================================== */
#header-wrapper {
  background: var(--alt-secondary-color-light);
  padding: 15px 0;
}

.home #header-wrapper {
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  width: 100%;
  z-index: 2;
}

#header-container {
  max-width: 90%;
}

#header .logo {
  max-width: 312px;
  width: 100%;
  height: auto;
}

#header .sticky-logo-view {
  display: none;
}

#header-cell-1,
#header-cell-2 {
  vertical-align: middle;
}
#header-cell-1 {
  vertical-align: bottom;
}

#header-cell-2 .inner {
  padding-left: 0;
}
#header-cell-2 .tmf-module-content {
  position: relative;
  display: flex;
  align-items: center;
}
#header-cell-1 .tmf-module-content {
  position: relative;
}

#header .mobile-logo-view {
  display: none;
}
#header .sticky-view {
  display: none;
}
#header .mobile-view {
  display: none;
}
#header-cell-2 .desktop-view {
  display: flex;
  justify-content: end;
}

@media screen and (max-width: 1450px) {
  #header-cell-2 .inner {
    padding: 0;
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  #header-cell-2 {
    padding-top: 0;
  }
  #header-cell-1 {
    margin-bottom: 10px;
  }

  #header-cell-2 .inner {
    padding: 0;
    display: block;
  }

  #header .desktop-view {
    display: none;
  }

  .header-top-row {
    display: table;
    width: 100%;
  }
  .mobile-view #header-top form {
    display: inline-block;
    vertical-align: middle;
  }

  #header .main-logo,
  #header .mobile-view {
    box-sizing: border-box;
    display: table-cell;
    vertical-align: top;
  }

  #header .main-logo {
    width: 300px;
  }

  #header .mobile-view {
    vertical-align: middle;
  }
}

@media screen and (max-width: 1000px) {
  .mobile-view #header-top form {
    display: block;
    margin-top: 10px;
  }
}
@media screen and (max-width: 950px) {
  .home #header-wrapper {
    background: var(--alt-secondary-color-light);
    position: static;
  }
  .home .header-billboard-wrap .header-wrap {
    position: relative;
  }
  #header .desktop-logo-view {
    display: none;
  }
  #header-cell-1 .inner {
    padding-right: 25px;
  }
  #header .mobile-logo-view {
    display: block;
  }
  #header .main-logo,
  #header .mobile-view {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0;
  }
  #header-cell-2 {
    position: unset;
  }
  #header-container {
    max-width: 100%;
  }
}

@media screen and (max-width: 550px) {
  #header .logo {
    content: url('../images/- Mobile Slices/mobile_logo.png');
  }
}

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

/* ======================================== *
      Mobile Header Bottom Section
* ======================================== */
#mobile-header-bottom a.mh-button::before {
  background: #ffffff;
  border-radius: 50%;
  box-sizing: border-box;
  content: '\f155';
  color: #000000;
  font-size: 18px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 700;
  display: flex;
  width: 45px;
  height: 45px;
  margin: 0 auto 10px;
  align-items: center;
  justify-content: center;
}
#mobile-header-bottom {
  padding: 15px 0 15px;
}
#mobile-header-bottom .location-phone a,
#mobile-header-bottom .location-email a,
#mobile-header-bottom .location-phone a,
#mobile-header-bottom .location-email a,
#mobile-header-bottom .mobile-header-button a,
#mobile-header-bottom .menu-bar-container .menu-label {
  font-family: var(--body-font);
  color: #000;
  font-weight: 600;
  font-size: 17px;
  line-height: normal;
  display: block;
}
#mobile-header-bottom .mobile-header-button a:hover,
#mobile-header-bottom .mobile-header-button a:active {
  text-decoration: none;
}
body:not(.home) #mobile-header-bottom .location-phone a,
body:not(.home) #mobile-header-bottom .location-email a,
body:not(.home) #mobile-header-bottom .mobile-header-button a,
body:not(.home) #mobile-header-bottom .menu-bar-container .menu-label {
  color: #000 !important;
}

#mobile-header-bottom-cell-1,
#mobile-header-bottom-cell-2,
#mobile-header-bottom-cell-3,
#mobile-header-bottom-cell-4 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
  width: auto;
  padding: 0 15px;
}
#mobile-header-bottom-row {
  display: flex;
  width: 100%;
  position: relative;
  align-items: start;
  justify-content: center;
}
/* ======================================== *
      Mobile Nav Menu Multiple Locations
* ======================================== */
.mobile-location .tmf-post-list {
  display: flex;
  flex-wrap: nowrap;
}
.tmf-post.location.mobile-location .location-small-1 {
  border: 0;
}
.tmf-post.location.mobile-location .location-small-container {
  max-width: 570px;
  margin: 0 auto;
  border-right: 1px solid var(--primary-color);
}
.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;
}

@media screen and (max-width: 600px) {
  .mobile-location .tmf-post-list {
    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;
  }
}

/* ======================================== *
      Header Nav Section
* ======================================== */
#header-nav-wrapper {
  background: var(--primary-color);
}
#header-nav-container {
  max-width: 90%;
}

#header-nav #primary-nav-wrapper {
  width: 100%;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 16px;
}

#header-nav #primary-nav-container {
  max-width: 100% !important;
  margin: 0 auto;
}
#header-nav #primary-nav .menu {
  display: table;
}
#header-nav #primary-nav .menu li a:hover {
  background: var(--accent-color);
  color: #fff;
}

#header-nav #primary-nav .menu > .menu-item > a {
  color: #ffffff;
  font-family: var(--body-font);
  font-size: 16px;
  line-height: normal;
  font-weight: 700;
  padding: 10px 0;
  text-decoration: none;
}

#header-nav #primary-nav .menu .sub-menu {
  width: 100%;
  min-width: 200px;
  top: 0;
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}

#header-nav #primary-nav .menu > li.left-edge > div > ul {
  left: inherit;
  right: 0;
}

#header-nav #primary-nav .menu .sub-menu .menu-item {
  background: var(--accent-color);
}

#header-nav #primary-nav .menu .sub-menu .menu-item > a {
  font-size: 16px;
  padding: 10px 15px;
  color: #fff;
  font-weight: 600;
  transition: all 0.25s ease;
}

#header-nav #primary-nav .menu .sub-menu .menu-item:hover > a {
  background-color: #000;
  color: #fff;
}
@media screen and (max-width: 1250px) {
  #header-nav-container {
    max-width: 100%;
  }
}
@media screen and (max-width: 950px) {
  #header-nav-wrapper {
    background: var(--alt-secondary-color-light);
  }
}

/* ======================================== *
      Primary Navigation Section
* ======================================== */
#primary-nav-wrapper {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 16px;
  margin-top: 10px;
}

#primary-nav-container {
  max-width: 100% !important;
  margin: 0 auto;
}

#primary-nav .menu > .menu-item > a {
  padding: 10px 6px;
}

#primary-nav .menu {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

#primary-nav .menu > .menu-item > a {
  color: #000;
  font-family: var(--body-font);
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
  padding: 5px 0;
  text-decoration: none;
  position: relative;
  height: auto;
}
.home #primary-nav .menu > .menu-item > a {
  color: #000;
  font-family: var(--body-font);
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
  padding: 5px 0;
  text-decoration: none;
}
#primary-nav .menu > .menu-item.home-icon a {
  font-size: 0 !important;
}

#primary-nav .menu > .menu-item.home-icon a:before {
  content: '\f015';
  color: #093b61;
  font-size: 20px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 700;
  display: inline-block;
  font-display: block;
}

.home #primary-nav .menu > .menu-item.home-icon a:before {
  color: var(--accent-color);
}
#header-wrapper.sticky #primary-nav .menu > .menu-item.home-icon a:before {
  color: #fff;
}
#primary-nav .menu > .menu-item.home-icon a:after {
  display: none;
}
#primary-nav .menu > .menu-item > a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0%;
  height: 0;
  margin: 0 auto;
  background-position: center bottom;
  transition: width 0.35s ease-out;
}
#primary-nav .menu > .menu-item:hover > a:after,
#primary-nav .menu > .menu-item.current-menu-item > a:after,
#primary-nav .menu > .menu-item.current-menu-item > a:hover:after,
#primary-nav .menu > .menu-item.current-menu-item > a:focus:after {
  background-color: #61b4e5;
  width: 50%;
  height: 2px;
}

#primary-nav .menu .sub-menu {
  top: 0;
  left: 0;
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
  width: 250px;
  background: var(--primary-color);
}
#primary-nav .menu #menu-item-446:hover .sub-menu {
  width: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

#primary-nav .menu > li.left-edge > div > ul {
  left: inherit;
  right: 0;
}

#primary-nav .menu .sub-menu .menu-item {
  background: var(--primary-color);
}

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

#primary-nav .menu .sub-menu .menu-item:hover > a {
  background-color: var(--accent-color);
  color: #fff;
  height: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 1650px) {
  #primary-nav-wrapper {
    width: 100%;
    margin-left: auto;
  }
}

@media screen and (max-width: 1250px) {
  #primary-nav .menu {
    gap: 5px;
  }
}
@media screen and (max-width: 1200px) {
  #primary-nav-container {
    max-width: 1250px !important;
    margin: 0 auto;
  }
  #primary-nav-wrapper {
    width: 95%;
    margin: 0 auto;
  }
  #primary-nav {
    padding-top: 0;
  }
  #primary-nav .menu {
    justify-content: space-between;
  }
}

/* ======================================== *
       Search Form
 * ======================================== */
#header-top .search-form div {
  position: relative;
}
#header-top .search-form .search-box {
  margin: 0 !important;
  width: 137px;
  background: var(--primary-color);
  border-radius: 50px;
  color: #fff;
  padding: 5px 10px !important;
  font-size: 14px !important;
  vertical-align: super;
}

#header-top .search-form .search-btn {
  position: absolute;
  right: 3px;
  top: 41.5%;
  transform: translateY(-50%);
  border: none;
  background: #025ca8;
  color: #fff;
  padding: 4px;
  border-radius: 50%;
  cursor: pointer;
}
#header-top .search-form .search-btn i {
  font-size: 13px;
}

/* ======================================== *
  Mobile Menu
* ======================================== */
#mobile-nav-wrapper {
  text-align: left;
}

#mobile-nav {
  padding: 0px 20px;
}

.hamburger-container {
  max-width: none;
  margin-bottom: 0;
}

#mobile-nav .menu-bar {
  width: 35px;
}

#mobile-nav a {
  color: #fff;
  font-size: 18px !important;
}

#mobile-nav .menu > .menu-item > a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

#mobile-nav .menu .menu-item.display {
  /* background: var(--accent-color); */
  background: #0272cf;
}

#mobile-nav .top-part .mob-cancel-button {
  color: #fff;
}

#mobile-nav .menu .sub-menu .menu-item {
  padding: 5px 30px;
}

#mobile-nav .menu > .current-menu-item,
#mobile-nav .menu > .menu-item:hover {
  background: var(--accent-color);
}

#mobile-nav .mobile-menu .current-menu-item {
  background: transparent;
}

/* ======================================== *
    Billboard
 * ======================================== */
#billboard-wrapper {
  position: relative;
}

#billboard-container {
  max-width: 100%;
}
#billboard .mobile-view {
  position: relative;
}

#billboard img {
  display: block;
  width: 100%;
  height: auto;
}

#billboard .billboard-content-container {
  box-sizing: border-box;
  padding: 0;
  position: absolute;
  /* bottom: 18%; */
  bottom: 8%;
  left: 50%;
  z-index: 1;
  width: 90%;
  transform: translateX(-50%);
}

#billboard .billboard-content {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
#billboard video {
  display: block;
}
#billboard h1 {
  margin-bottom: 0;
  text-align: right;
}

#billboard .mobile-view {
  display: none;
}
#billboard h1 span {
  font-weight: 600;
}

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

@media screen and (max-width: 950px) {
  #billboard .billboard-content-container {
    background: var(--alt-primary-color-dark);
    border: none;
    position: static;
    transform: inherit;
    max-width: 100%;
    padding: 30px 30px;
    text-align: center;
    width: 100%;
  }

  #billboard .billboard-content {
    background: transparent;
    padding: 0;
    max-width: 100%;
  }
  #billboard h1 {
    font-size: 34px;
    color: #fff;
    text-align: left;
  }

  #billboard .desktop-view {
    display: none;
  }

  #billboard .mobile-view {
    display: block;
  }
  #billboard .mobile-view img {
    min-height: 300px;
    object-fit: cover;
  }
  #billboard .billboard-content .tmf-module-content {
    flex-direction: column;
  }
}

@media screen and (max-width: 550px) {
  #billboard .billboard-content {
    margin: 0 auto;
  }
  #billboard h1 {
    line-height: 42px;
    font-size: 32px;
  }
}
@media screen and (max-width: 500px) {
  #billboard .billboard-content .tmf-module-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }
  #billboard .billboard-content h1 {
    width: 100%;
  }
}

/* ======================================== *
        Int Billboard Section
 * ======================================== */
#int-billboard-wrapper {
  overflow: hidden;
}

#int-billboard-container {
  max-width: 100% !important;
}

#int-billboard .int-billboard-img {
  display: block;
  width: 100%;
  height: auto;
}

#int-billboard-cell-1,
#int-billboard-cell-2 {
  vertical-align: middle;
}

#int-billboard-cell-1 {
  background: url('../images/int_prac_area_bg_left_3x.png') no-repeat center center/cover;
  width: 35%;
}

#int-billboard-cell-2 {
  width: 65%;
}

#int-billboard-cell-1 .inner,
#int-billboard-cell-2 .inner {
  padding: 0;
}

#int-billboard .int-billboard-content {
  box-sizing: border-box;
  position: absolute;
  max-width: 90%;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
}

#int-billboard .int-billboard-title {
  box-sizing: border-box;
  position: relative;
}

#int-billboard h1#page-title {
  display: inline-block;
  margin-bottom: 0;
  padding: 12px 25px;
}

#int-billboard .mobile-view {
  display: none;
}
@media screen and (max-width: 1300px) {
  #int-billboard h1#page-title {
    font-size: 36px;
  }
}

@media screen and (max-width: 1050px) {
  #int-billboard .int-billboard-content {
    background: url('../images/int_page_bg_3x.png') no-repeat center right/cover;
    position: relative;
    left: inherit;
    right: inherit;
    top: inherit;
    transform: inherit;
    padding: 15px 25px;
    max-width: 100%;
  }
  .single-practice-area #int-billboard .int-billboard-content {
    background: url('../images/int_prac_area_bg_left_3x.png') no-repeat center center/cover;
    position: relative;
    left: inherit;
    right: inherit;
    top: inherit;
    transform: inherit;
    padding: 25px 25px;
    max-width: 100%;
    /* height: 200px; */
    align-items: center;
    display: flex;
  }

  #int-billboard .int-billboard-title {
    width: 90%;
    margin: 0 auto;
  }

  #int-billboard-cell-1,
  #int-billboard-cell-2 {
    background: transparent;
    width: 100%;
    padding-top: 0;
  }

  #int-billboard h1#page-title {
    border: none;
    display: block;
    padding-bottom: 0;
    text-align: left;
    padding: 0;
  }
}

@media screen and (max-width: 550px) {
  #int-billboard .int-billboard-title {
    width: 100%;
  }
  .single-practice-area #int-billboard .int-billboard-content {
    background: url('../images/- Mobile Slices/mobile_prac_area_left_bg.png') no-repeat center center/cover;
    /* height: 300px; */
  }
  #int-billboard .mobile-view {
    display: block;
  }
  #int-billboard .desktop-view {
    display: none;
  }
  #int-billboard-cell-2 .int-billboard-img {
    display: none;
  }
  #int-billboard .mobile-view .int-billboard-img {
    display: block;
    max-height: 300px;
    object-fit: cover;
  }
}

/* ======================================== *
        Int Title Section
 * ======================================== */
#int-title-wrapper {
  background: url('../images/int_page_bg_3x.png') no-repeat center right/cover;
}
#int-title-wrapper .title-arrow {
  display: none;
}

#int-title-container {
  max-width: 90%;
}

#int-title {
  padding: 25px;
}

#int-title h1#page-title {
  margin-bottom: 0;
}

@media screen and (max-width: 950px) {
  #int-title h1#page-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 550px) {
  #int-title {
    padding: 25px 0;
  }
}

/* ======================================== *
        Home Body Section
 * ======================================== */
#home-body-wrapper {
  margin-bottom: 220px;
  /* margin-top: 50px; */
  margin-top: 25px;
}
#home-body-container {
  max-width: 90%;
}
#home-body {
  /* margin-top: -125px; */
  background: #fff;
}
#home-body h2 {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 400;
  color: var(--primary-color);
  margin: 25px 0 10px 0;
}
#home-body h2::after {
  content: '';
  display: inline-block;
  border-top: 2px solid #dee7ec;
  vertical-align: middle;
  margin-right: -100%;
  width: 100%;
  margin-left: 20px;
}
#home-body .tmf-post {
  overflow: hidden;
}
#home-body-cell-1 .inner {
  padding: 0 35px;
}

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

@media screen and (max-width: 950px) {
  #home-body-wrapper {
    margin-top: 0;
    margin-bottom: 50px;
  }
  #home-body {
    padding: 10px 0;
    text-align: left;
    margin-top: 0;
  }
  #home-body h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 700px) {
  #home-body h2::after {
    display: none;
  }
  #home-body h2 {
    border-bottom: 2px solid #dee7ec;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 550px) {
  #home-body-container {
    max-width: 100%;
  }
}

/* ======================================== *
        Body Section
 * ======================================== */
#body-container {
  max-width: 90%;
}
#body .custom-inner {
  padding: 0 25px;
}
#body #body-cell-1 > .inner {
  padding: 35px 25px;
}
#body #body-cell-2 > .inner {
  padding: 50px 25px;
}
#body #body-cell-2 {
  position: relative;
}
#body-wrapper::after {
  content: '';
  width: 20%;
  height: 100%;
  display: block;
  position: absolute;
  background: var(--secondary-color);
  z-index: -1;
  top: 0;
  right: 0;
}
.single-attorney #body-wrapper::after {
  display: none;
}

@media screen and (max-width: 1050px) {
  #body-wrapper {
    margin-top: 0;
    overflow: hidden;
  }
  #body {
    padding: 35px 0;
  }
  #body #body-cell-1 .inner {
    padding: 0 25px;
  }
  #body #body-cell-2 .inner {
    padding: 0 25px;
  }
  #body-wrapper::after {
    display: none;
  }
}

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

/* ======================================== *
        Home Practice Area Section
 * ======================================== */
#home-practice-areas-wrapper {
  background: #f0f2f4;
}
#home-practice-areas-container {
  max-width: 90%;
}
#home-practice-areas {
  padding: 50px 0 100px;
}
#home-practice-areas-cell-1 .tmf-module-area {
  margin-top: -200px;
}

#home-practice-areas .tmf-post-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

#home-practice-areas .tmf-post {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
  width: max-content;
  margin: 0 auto;
  width: 100%;
  height: auto;
}

#home-practice-areas .pa-img {
  width: 100%;
  height: 270px;
  background: var(--primary-color);
  border: 5px solid var(--secondary-color);
  position: relative;
}
#home-practice-areas .pa-listing.business .pa-img {
  background: url('../images/home_prac_area_for_business_off_3x.jpg') no-repeat center center/cover;
  transition: all 0.2s ease-in-out;
}
#home-practice-areas .pa-listing.business .pa-img::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  background: url('../images/home_prac_area_for_business_over_3x.jpg') no-repeat;
}
#home-practice-areas .pa-listing.business a:hover .pa-img {
  background: url('../images/home_prac_area_for_business_over_3x.jpg') no-repeat center center/cover;
}
#home-practice-areas .pa-listing.personal .pa-img {
  background: url('../images/home_prac_area_for_personal_off_3x.jpg') no-repeat center center/cover;
}
#home-practice-areas .pa-listing.personal .pa-img::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  background: url('../images/home_prac_area_for_personal_over_3x.jpg') no-repeat;
}
#home-practice-areas .pa-listing.personal a:hover .pa-img {
  background: url('../images/home_prac_area_for_personal_over_3x.jpg') no-repeat center center/cover;
}
#home-practice-areas .pa-img .title {
  display: inline-block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #fff;
  width: 230px;
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
}

#home-practice-areas .pa-listing:hover .title {
  background: var(--accent-color);
}
#home-practice-areas .pa-img .title h2 {
  margin: 0;
  text-align: center;
  padding: 5px 10px;
  color: #fff;
  font-family: var(--body-font);
}
#home-practice-areas .pa-listing h2 {
  font-size: 18px;
  font-weight: 600;
}
#home-practice-areas .pa-listing a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 950px) {
  #home-practice-areas-cell-1 .tmf-module-area {
    margin-top: 0;
  }
  #home-practice-areas .tmf-post-list {
    grid-template-columns: repeat(1, 1fr);
  }
  #home-practice-areas {
    padding: 50px 0 70px;
  }
}
@media screen and (max-width: 550px) {
  #home-practice-areas .pa-listing.business .pa-img {
    background: url('../images/- Mobile Slices/mobile_home_prac_areas_business_off.jpg') no-repeat center center/cover;
  }
  #home-practice-areas .pa-listing.business .pa-img::before {
    background: url('../images/- Mobile Slices/mobile_home_prac_areas_business_over.jpg') no-repeat;
  }
  #home-practice-areas .pa-listing.business a:hover .pa-img {
    background: url('../images/- Mobile Slices/mobile_home_prac_areas_business_over.jpg') no-repeat center center/cover;
  }
  #home-practice-areas .pa-listing.personal .pa-img {
    background: url('../images/- Mobile Slices/mobile_home_prac_areas_personal_off.jpg') no-repeat center center/cover;
  }
  #home-practice-areas .pa-listing.personal .pa-img::before {
    background: url('../images/- Mobile Slices/mobile_home_prac_areas_personal_over.jpg') no-repeat;
  }
  #home-practice-areas .pa-listing.personal a:hover .pa-img {
    background: url('../images/- Mobile Slices/mobile_home_prac_areas_personal_over.jpg') no-repeat center center/cover;
  }
}

/* ======================================== *
        Home Attorney Section
 * ======================================== */
#home-attorney-wrapper {
  background: #f0f2f4;
  padding-bottom: 150px;
}
#home-attorney-container {
  max-width: 90%;
}
#home-attorney .team-txt {
  max-width: 70%;
  margin: 0 auto 50px;
  overflow: hidden;
}
#home-attorney h3 {
  font-size: 40px;
  font-weight: 400;
  color: var(--alt-primary-color-dark);
  text-align: center;
}
#home-attorney h3::before,
#home-attorney h3::after {
  content: '';
  display: inline-block;
  width: 50px;
  border-top: 2px solid #dee7ec;
  vertical-align: middle;
}
#home-attorney h3::before {
  margin-left: -100%;
  width: 100%;
  margin-right: 20px;
}
#home-attorney h3::after {
  margin-right: -100%;
  width: 100%;
  margin-left: 20px;
}
#home-attorney p {
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
}

#home-attorney .tmf-post .img-wrapper {
  position: relative;
  width: 190px;
  height: 190px;
  margin: 0 auto;
  margin-bottom: 20px;
}
#home-attorney .tmf-post img {
  border-radius: 50%;
  border: 5px solid var(--secondary-color);
  float: none;
  transition: 0.5s ease;
  max-width: 100%;
  width: 190px;
  height: 190px;
  opacity: 1;
  backface-visibility: hidden;
  box-sizing: border-box;
}
#home-attorney .img-wrapper .img-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background: rgba(10, 59, 97, 0.65);
  border-radius: 50%;
  border: 5px solid var(--accent-color);
  box-sizing: border-box;
}

#home-attorney .tmf-post.home .img-wrapper:hover .img-overlay {
  opacity: 1;
}
#home-attorney .img-wrapper .img-overlay .img-text {
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  font-family: var(--body-font);
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
#home-attorney .tmf-post .title a {
  text-decoration: none;
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

/* Attorney Slick Slider */

#home-attorney .tmf-post-list {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  clear: both;
  padding: 0;
  box-sizing: border-box;
}

#home-attorney .tmf-post {
  width: auto !important;
  max-width: 100%;
  padding: 0;
  margin: 0;
  border-bottom: none;
  text-align: center;
}

#home-attorney .slick-slide {
  padding: 0 20px;
  box-sizing: border-box;
  float: none;
  display: inline-block !important;
  vertical-align: middle;
  text-align: center;
}

#home-attorney .slick-list {
  margin: 0 -10px;
}

#home-attorney button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

/* #home-attorney .slick-slide img {
  width: 100%;
  height: auto;
} */
#home-attorney .slide-arrow {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  transform: translateY(-50%);
}

#home-attorney .prev-arrow {
  left: -50px;
}
#home-attorney .prev-arrow::before {
  content: '\f0a8';
  width: 28px;
  height: 28px;
  color: var(--alt-primary-color-dark);
  font-size: 28px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  display: inline-block;
  position: relative;
}

#home-attorney .next-arrow {
  right: -50px;
}
#home-attorney .next-arrow::before {
  content: '\f0a9';
  width: 28px;
  height: 28px;
  color: var(--alt-primary-color-dark);
  font-size: 28px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  display: inline-block;
  position: relative;
}

@media screen and (max-width: 1400px) {
  #home-attorney .tmf-post-list {
    max-width: 1000px;
  }
}

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

@media screen and (max-width: 1075px) {
  #home-attorney .tmf-post-list {
    max-width: 800px;
  }
}

@media screen and (max-width: 960px) {
  #home-attorney .tmf-post-list {
    max-width: 600px;
  }
}
@media screen and (max-width: 950px) {
  #home-attorney .team-txt {
    max-width: 100%;
  }
  #home-attorney p {
    max-width: 95%;
  }
  #home-attorney-wrapper {
    padding-bottom: 50px;
  }
  #home-attorney h3 {
    font-size: 34px;
  }
}

@media screen and (max-width: 760px) {
  #home-attorney .tmf-post-list {
    max-width: 500px;
  }
}

@media screen and (max-width: 650px) {
  #home-attorney .tmf-post-list {
    max-width: 280px;
  }
}
@media screen and (max-width: 430px) {
  #home-attorney .next-arrow {
    right: -20px;
  }
  #home-attorney .prev-arrow {
    left: -20px;
  }
  /* #home-attorney .tmf-post .img-wrapper {
    width: 160px;
    height: 160px;
  } */
}

/* ======================================== *
        Home Section 2 Section
 * ======================================== */
#home-section-2-container {
  max-width: 100% !important;
}
/* cell 1 */
#home-section-2-cell-1 {
  background: url('../images/home_our_latest_bg_3x.jpg') no-repeat center center/cover;
  position: absolute;
  top: -30px;
  bottom: -30px;
  z-index: 1;
  display: grid;
  place-content: center;
  border: 5px solid #fff;
  border-left: none;
}
#home-section-2-cell-1 h3 {
  color: #fff;
  font-size: 40px;
  line-height: 46px;
  font-weight: 500;
  margin: 0 auto 15px;
  text-align: center;
}
#home-section-2-cell-1 .tmf-button {
  background: #fff;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  width: 160px;
  display: block;
  margin: 0 auto 15px;
}
#home-section-2-cell-1 .tmf-button:hover {
  background: var(--accent-color);
  color: #fff;
}

/* cell 2 */
#home-section-2-cell-2 {
  background: var(--secondary-color);
  padding: 100px 0;
  padding-right: 8%;
  padding-left: 8%;
  box-sizing: border-box;
}
#home-section-2-cell-2 .inner {
  padding: 0;
}
#home-section-2-cell-2 .tmf-post .title h4 {
  color: #333;
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3em;
  margin-bottom: 15px;
}
#home-section-2-cell-2 .tmf-post .excerpt {
  color: #333;
}
#home-section-2-cell-2 .tmf-post .excerpt a.read-more {
  text-decoration: none;
  color: #3b3b3b;
  font-weight: 600;
}
#home-section-2-cell-2 .tmf-post .excerpt a.read-more:hover {
  text-decoration: underline;
}
#home-section-2-cell-2 .tmf-post {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
  text-align: center;
}
#home-section-2-cell-2 .bx-wrapper {
  position: relative;
  margin: 0 auto;
  padding: 0;
}
#home-section-2-cell-2 .bx-wrapper .bx-viewport {
  left: 0;
  max-width: 80%;
  margin: auto;
  -webkit-transform: translatez(0);
  -moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  transform: translatez(0);
}
#home-section-2-cell-2 .bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 43%;
  margin-top: 0;
  outline: 0;
  width: 29px;
  height: 29px;
  font-size: 0;
  color: #000;
  z-index: unset;
}
#home-section-2-cell-2 .bx-wrapper .bx-controls-direction span {
  position: absolute;
  top: 43%;
  margin-top: 0;
  outline: 0;
  width: 29px;
  height: 29px;
  font-size: 0;
  color: #000;
  z-index: unset;
}
#home-section-2-cell-2 .bx-wrapper .bx-prev {
  left: -30px;
}
#home-section-2-cell-2 .bx-wrapper .bx-prev::before {
  content: '\f0a8';
  width: 28px;
  height: 28px;
  color: var(--alt-primary-color-dark);
  font-size: 28px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  display: inline-block;
  position: relative;
}
#home-section-2-cell-2 .bx-wrapper .bx-next {
  right: -30px;
}
#home-section-2-cell-2 .bx-wrapper .bx-next::before {
  content: '\f0a9';
  width: 28px;
  height: 28px;
  color: var(--alt-primary-color-dark);
  font-size: 28px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  display: inline-block;
  position: relative;
}

@media screen and (max-width: 950px) {
  #home-section-2-cell-1 {
    position: static;
    padding: 50px 20px !important;
    display: block;
    box-sizing: border-box;
    border-right: none;
  }
  #home-section-2-cell-2 .bx-wrapper .bx-viewport {
    max-width: 80%;
  }
}
@media screen and (max-width: 600px) {
  #home-section-2-cell-2 {
    padding: 50px 25px;
  }
}
@media screen and (max-width: 550px) {
  #home-section-2-cell-2 .bx-wrapper .bx-prev {
    left: -15px;
  }
  #home-section-2-cell-2 .bx-wrapper .bx-next {
    right: -15px;
  }
}

/* ======================================== *
        Association Slider Section
 * ======================================== */
#associations-wrapper {
  background: #fff;
  padding: 100px 0 320px;
  z-index: 0;
}
#associations-container {
  max-width: 90%;
}

#associations-cell-1 .inner {
  padding: 0;
}

#associations h4 {
  color: #333333;
  font-size: 36px;
  font-weight: 400;
  font-family: var(--heading-font);
  margin-bottom: 0;
  text-align: center;
  margin-top: 30px;
}

#associations .tmf-post-list.small {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  clear: both;
  padding: 0;
  box-sizing: border-box;
}

#associations .tmf-post.association.small {
  width: auto !important;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

#associations .slick-slide {
  padding: 0 20px;
  box-sizing: border-box;
  float: none;
  display: inline-block !important;
  vertical-align: middle;
  text-align: center;
}

#associations .slick-list {
  margin: 0 -10px;
}

#associations .slick-track {
}

#associations button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

#associations .slick-slide img {
  width: 100%;
  height: auto;
}
#associations .slide-arrow {
  position: absolute;
  top: 50%;
  margin-top: -5px;
  transform: translateY(-50%);
}

#associations .prev-arrow {
  left: -40px;
}
#associations .prev-arrow::before {
  content: '\f0a8';
  width: 28px;
  height: 28px;
  color: var(--alt-primary-color-dark);
  font-size: 28px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  display: inline-block;
  position: relative;
}

#associations .next-arrow {
  right: -40px;
}

#associations .next-arrow::before {
  content: '\f0a9';
  width: 28px;
  height: 28px;
  color: var(--alt-primary-color-dark);
  font-size: 28px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  display: inline-block;
  position: relative;
}

@media screen and (min-width: 2000px) {
  #associations .tmf-post-list.small {
    max-width: 1600px;
  }
}
@media screen and (max-width: 1600px) {
  #associations .tmf-post-list.small {
    max-width: 950px;
  }
}
@media screen and (max-width: 1400px) {
  #associations .tmf-post-list.small {
    max-width: 800px;
  }
}
@media screen and (max-width: 1300px) {
  #associations .tmf-post-list.small {
    max-width: 700px;
  }
}
@media screen and (max-width: 1150px) {
  #associations .tmf-post-list.small {
    max-width: 600px;
  }
}
@media screen and (max-width: 1050px) {
  #associations .tmf-post-list.small {
    max-width: 500px;
  }
}

@media screen and (max-width: 950px) {
  #associations-wrapper {
    padding: 50px 0 320px;
  }
  #associations h4 {
    font-size: 34px;
    margin-top: 0;
  }
}

@media screen and (max-width: 750px) {
  #associations .tmf-post-list.small {
    max-width: 450px;
    padding: 25px 0;
  }
  #associations-wrapper {
    margin: 0;
  }
}
@media screen and (max-width: 600px) {
  #associations-container {
    max-width: 350px !important;
  }

  #associations .tmf-post-list.small {
    max-width: 300px;
  }
}
@media screen and (max-width: 415px) {
  #associations-container {
    max-width: 300px !important;
  }

  #associations .tmf-post-list.small {
    max-width: 250px;
  }
}

@media screen and (max-width: 370px) {
  #associations-container {
    max-width: 250px !important;
  }

  #associations .tmf-post-list.small {
    max-width: 200px;
  }
}

/* ======================================== *
        Practice Areas
 * ======================================== */

/* Business & Personal Practice area landing pages */
.pa-list-wrapper {
  background: #eff3f4;
  padding: 50px 25px 50px 0;
  margin: 50px 0;
  position: relative;
}
.pa-list-wrapper::before {
  content: '';
  background: #eff3f4;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: -100%;
}

.postid-440 .editor-content .pa-list-wrapper ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 15px;
  column-gap: 25px;
  padding-left: 0;
  margin: 0;
}
.postid-441 .editor-content .pa-list-wrapper ul {
  display: grid;
  grid-template-columns: max-content 1fr;
  row-gap: 15px;
  column-gap: 25px;
  padding-left: 0;
  margin: 0;
}

.editor-content .pa-list-wrapper ul li::before {
  display: none;
}

.editor-content .pa-list-wrapper ul li a {
  text-decoration: none;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: 5px;
}
.editor-content .pa-list-wrapper ul li a .pa-icon {
  width: 10px;
  min-width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  outline: 0 solid #005ca6;
  outline-offset: 0;
  transition: all 0.35s ease;
}
.editor-content .pa-list-wrapper ul li a:hover .pa-icon {
  outline: 2px solid #005ca6;
  outline-offset: 3px;
  background: var(--primary-color);
}
.editor-content .pa-list-wrapper ul li a .title {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--body-font);
  color: #000;
}
.editor-content .pa-list-wrapper ul li a:hover .title {
  /* color: var(--alt-primary-color-dark); */
  color: #0d3a60;
}
@media screen and (max-width: 1150px) {
  .postid-441 .editor-content .pa-list-wrapper ul {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 1050px) {
  .postid-440 .editor-content .pa-list-wrapper ul {
    grid-template-columns: 1fr;
  }
  .postid-441 .editor-content .pa-list-wrapper ul {
    grid-template-columns: 1fr;
  }
  .pa-list-wrapper::after {
    content: '';
    background: #eff3f4;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: -100%;
  }
}
/* End Business & Personal Practice area landing pages */

/* ======================================== *
        Linked attorneys to practice area Sidebar
 * ======================================== */
.single-practice-area .linked-attorneys {
  background: var(--alt-accent-color-dark);
  border: 5px solid #fff;
  padding: 45px 35px;
  margin-bottom: 45px;
  max-width: 400px;
  margin-left: auto;
  margin-right: 0;
  box-sizing: border-box;
}
.single-practice-area .linked-attorneys h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  font-family: var(--heading-font);
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px solid #91d7fe;
}

.single-practice-area .linked-attorneys .tmf-post {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.single-practice-area .linked-attorneys .tmf-post .title {
  margin-bottom: 10px;
}
.single-practice-area .linked-attorneys .tmf-post .title a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--body-font);
}
.single-practice-area .linked-attorneys .tmf-post .title a:hover {
  text-decoration: underline;
}
.single-practice-area.postid-440 .linked-attorneys {
  display: none; /* hide on business landing page */
}
.single-practice-area.postid-441 .linked-attorneys {
  display: none; /* hide on personal landing page */
}

@media screen and (max-width: 1050px) {
  .single-practice-area .linked-attorneys {
    max-width: 100%;
  }
}

/* ======================================== *
        Latest News & Articles Sidebar
 * ======================================== */
.tmf-module-749 {
  margin-top: 50px;
  background: var(--alt-secondary-color-medium);
  border: 6px solid #fff;
  padding: 45px;
  text-align: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: 0;
  box-sizing: border-box;
}
body .tmf-module-749 h3.tmf-module-title {
  color: #fff;
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 500;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 2px solid #9ba0a4;
}
body .tmf-module-749 .tmf-post {
  max-width: 100%;
  margin: 0 auto 10px;
}
.tmf-module-749 .title a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}
.tmf-module-749 a.read-more {
  font-size: 16px;
  font-weight: 600;
  color: #b4b9bf;
  text-decoration: none;
}
.tmf-module-749 .bx-wrapper .bx-pager {
  padding-top: 25px;
}
.tmf-module-749 .bx-wrapper .bx-pager.bx-default-pager a {
  background: transparent;
  border: 1px solid #fff;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.tmf-module-749 .bx-wrapper .bx-pager.bx-default-pager a:hover,
.tmf-module-749 .bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #fff;
}
.tmf-module-749 .bx-wrapper .bx-pager.bx-default-pager span {
  background: transparent;
  border: 1px solid #fff;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.tmf-module-749 .bx-wrapper .bx-pager.bx-default-pager span:hover,
.tmf-module-749 .bx-wrapper .bx-pager.bx-default-pager span.active {
  background: #fff;
}

@media screen and (max-width: 1050px) {
  .tmf-module-749 {
    max-width: 100%;
  }
}

/* ======================================== *
        Blog News & Articles archives
 * ======================================== */

body.blog #body-wrapper::after {
  display: none;
}
body.blog #body-cell-1 .tmf-post-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
}
body.blog .page-navigation {
  text-align: center;
}
body.blog .tmf-post {
  border: none;
}
body.blog .filter-wrap {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-top: 25px;
  margin-bottom: 50px;
}
body.blog .filter-wrap::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  border-top: 2px solid #dee7ec;
  margin-right: -100%;
  width: 100%;
  margin-left: 20px;
}
body.blog #body-cell-1 {
  overflow: hidden;
}
body.blog .filter-wrap h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin: 0;
}
body.blog .filter-wrap .filter-btn-wrap {
  display: flex;
  gap: 15px;
}
body.blog .filter-wrap .filter-btn-wrap button {
  border: none;
  padding: 5px 15px;
}
body.blog .filter-wrap .filter-btn-wrap button:hover {
}
body.blog .filter-wrap .filter-btn-wrap button.active {
  background: var(--accent-color);
}

.tmf-post.post.medium .excerpt img.thumbnail.mobile {
  display: none;
}
.social-buttons .facebook-like {
  width: 75px;
}
body.blog .tmf-post.medium .read-more-button {
  display: none;
}
body.blog .tmf-post.medium h2.title {
  margin-top: 10px;
}
body.blog .page-navigation {
  display: none;
}
body.blog .page-navigation.cat-filters {
  display: block;
}
body.blog .page-navigation.cat-filters a,
body.blog .page-navigation.cat-filters span {
  margin: 0 3px;
}
body.blog .page-navigation.cat-filters .prev {
  margin-right: 15px;
}
body.blog .page-navigation.cat-filters .next {
  margin-left: 15px;
}

@media screen and (max-width: 1250px) {
  body.blog #body-cell-1 .tmf-post-list {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 50px;
  }
}

@media screen and (max-width: 750px) {
  .tmf-post.post.medium .excerpt img.thumbnail.mobile {
    display: block;
  }
  .tmf-post.post.medium img.thumbnail.not-mobile {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  body.blog .filter-wrap::after {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  body.blog .filter-wrap {
    flex-wrap: wrap;
  }
}

/* ======================================== *
        blog category archive
 * ======================================== */
body.category #body-wrapper::after {
  display: none;
}
body.category #body-cell-1 .tmf-post-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
}
body.category .page-navigation {
  text-align: center;
}
body.category .tmf-post {
  border: none;
}
body.category .tmf-post.medium .read-more-button {
  display: none;
}

@media screen and (max-width: 1250px) {
  body.category #body-cell-1 .tmf-post-list {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 50px;
  }
}

/* ======================================== *
        Practice Area archive
 * ======================================== */
.post-type-archive-practice-area p {
  line-height: 1.7em;
  margin-bottom: 15px;
}
.post-type-archive-practice-area .tmf-post {
  padding-bottom: 45px;
  margin-bottom: 45px;
}

.post-type-archive-practice-area .tmf-post.medium img.thumbnail.mobile {
  display: none;
}
@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%;
  }
}
/* ======================================== *
        Location archive
 * ======================================== */
.post-type-archive-location #body #location-cell-1 .inner {
  padding: 0;
}
.post-type-archive-location #body #location-cell-2 .inner {
  padding: 0;
}
/* ======================================== *
        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 {
  padding-bottom: 45px;
  margin-bottom: 45px;
}
.post-type-archive-attorney .contact-information a {
  color: #333;
}

.post-type-archive-attorney .tmf-post .tmf-post-link-list {
  line-height: 20px;
}
.post-type-archive-attorney .tmf-post.attorney.medium a.read-more-button {
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  display: block;
  margin-top: 15px;
  float: left;
  max-width: fit-content;
}
.tmf-post.attorney.medium .label {
  font-size: 0;
  display: none;
}
/* ======================================== *
        Single Attorney Page CSS
 * ======================================== */
.single-attorney #body-cell-2 {
  border-left: none;
}

.single-attorney .mobile-view {
  display: none;
}

.attorney-bio-info {
  background: url('../images/int_attorney_bg_3x.png') no-repeat center center/cover;
  color: #fff;
  height: 294px;
}

.attorney-bio-info-container {
  max-width: 90%;
  margin: 0 auto;
}

.attorney-bio-info-row {
  display: flex;
  width: 100%;
}

.attorney-bio-info .attorney-bio-box-1,
.attorney-bio-info .attorney-bio-box-2 {
  box-sizing: border-box;
  display: table-cell;
  vertical-align: top;
}

.attorney-bio-info .attorney-bio-box-1 .attorney-bio-info-inner {
  padding: 0 0 0 25px;
}
.attorney-bio-box-2 .attorney-bio-info-inner .attorney-page-title {
  border-bottom: 2px solid #808080;
  margin-bottom: 15px;
  padding: 0 0 15px;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: end;
  gap: 25px;
}
.attorney-contact-info {
  padding-left: 0;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
}
.attorney-bio-info .attorney-bio-box-2 {
  width: calc(100% - 445px);
  height: 294px;
  display: flex;
  align-items: center;
  padding-left: 25px;
}

.attorney-bio-info .attorney-bio-box-2 .attorney-bio-info-inner {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 100px;
}

.attorney-bio-info img.primary {
  box-sizing: border-box;
  border-radius: 0;
  display: block;
  position: relative;
  width: 397px;
  border: 4px solid #fff;
  border-top: 0;
}

.attorney-bio-info h1#page-title {
  color: #fff !important;
  font-size: 42px !important;
  line-height: 47px;
  font-weight: 500 !important;
  margin-bottom: 0;
  font-style: normal;
  font-family: var(--heading-font);
}

.attorney-bio-info .attorney-titles a {
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  font-family: var(--heading-font);
}

.attorney-bio-info .contact-information,
.attorney-bio-info .icon-container {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  vertical-align: top;
}

.attorney-bio-info .phone,
.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;
  margin-bottom: 10px;
}

.attorney-bio-info .speaking {
  padding-top: 10px;
}

.attorney-bio-info .label {
  font-size: 0;
}

.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: #808080;
  font-size: 15px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
}

.attorney-bio-info .phone-1::before {
  content: '\f879';
  margin-right: 5px;
  transform: rotate(10deg);
}

.attorney-bio-info .phone-2::before {
  content: '\f879';
  margin-right: 5px;
  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 .speaking::before {
  content: '\f3c9';
  margin-right: 5px;
  margin-top: -5px;
  font-size: 24px;
}

.vcard .value {
  background: transparent;
  height: auto;
  width: 22px;
  vertical-align: middle;
  margin-right: 0;
}

.vcard .value::before {
  content: '\f2bb';
  color: #808080;
  font-size: 15px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 700;
  display: inline-block;
}

.attorney-bio-info .vcard {
  margin-right: 0;
}

.attorney-bio-info .vcard .label {
  margin-top: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  vertical-align: middle;
}
.attorney-bio-info .vcard-resume-container {
  padding-top: 5px;
  margin-bottom: 10px;
}

.attorney-bio-info .resume {
  display: block;
}

.attorney-bio-info .resume .label {
  display: inline-block;
  vertical-align: middle;
  margin-top: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.attorney-bio-info .contact-information a,
.attorney-bio-info .icon-container a,
.attorney-bio-info .speaking a {
  color: #fff;
}

.attorney-bio-info .icon-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.attorney-bio-info .social-icons .icon.linked-in {
  background: transparent;
  /* border-radius: 50%; */
  width: 22px;
  height: 22px;
  font-size: 15px;
  font-family: 'Font Awesome 5 Brands';
}
.attorney-bio-info .social-icons .icon.linked-in::before {
  content: '\f08c';
  font-weight: 400;
  color: #808080;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  font-size: 22px;
  display: grid;
  place-content: center;
  /* width: 22px;
  height: 22px; */
}

.at-mobile-view {
  display: none;
}
.single-attorney #body #body-cell-1 .inner {
  padding: 145px 25px 50px;
}

/* Easy Tabs */
.etabs {
  /* display: table; */
  display: flex;
  flex-wrap: wrap;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
}

.tab {
  border-right: 2px solid #fff;
  background: var(--secondary-color);
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  margin-right: 0px;
  margin-bottom: 5px;
  transition: all 0.2s ease-in-out;
  flex-grow: 1;
}

.tab a {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  font-family: var(--body-font);
  display: block;
  padding: 15px 15px;
  outline: none;
  text-decoration: none !important;
  transition: all 0.2s ease-in-out;
}

.tab:hover,
.tab.active {
  background: var(--accent-color);
  padding-top: 0;
  position: relative;
  top: 0;
}

.tab a:hover,
.tab a.active {
  color: #fff;
}

.panel-container {
  background: transparent;
  padding: 10px 0 20px;
}

.panel-container p {
  line-height: 26px;
  margin-bottom: 15px;
}

.panel-container p:last-child {
  margin-bottom: 0;
}

.panel-container ul {
  padding-left: 40px;
  margin: 15px 0;
}

.panel-container ol {
  padding-left: 40px;
  margin: 15px 0;
}

@media screen and (max-width: 760px) {
  .etabs {
    display: block;
  }

  .tab {
    border-right: none;
    border-bottom: 2px solid #fff;
    display: block;
  }
}

/* End Easy Tabs */

@media screen and (max-width: 1590px) {
  .attorney-bio-info .attorney-bio-box-2 .attorney-bio-info-inner {
    width: 75%;
  }
}
@media screen and (min-width: 1520px) {
  .single-attorney #body-row {
    display: flex;
    gap: 50px;
  }
  .single-attorney #body-cell-1 {
    max-width: 445px;
  }
  .single-attorney #body #body-cell-2 {
    flex-grow: 1;
  }

  body.single-attorney .tmf-module-22 {
    max-width: 420px;
    margin-left: 0;
    margin-right: auto;
  }
}
@media screen and (max-width: 1520px) {
  .attorney-bio-info .attorney-bio-box-2 .attorney-bio-info-inner {
    width: 85%;
  }
}
@media screen and (max-width: 1405px) {
  .attorney-bio-info .attorney-bio-box-2 .attorney-bio-info-inner {
    width: 75%;
    padding-left: 50px;
  }
  .attorney-bio-box-2 .attorney-bio-info-inner .attorney-page-title {
    align-items: start;
    gap: 5px;
    flex-direction: column;
  }
}
@media screen and (max-width: 1400px) {
  .attorney-bio-info img.primary {
    width: 297px;
    border-bottom: 0;
  }
  .single-attorney #body #body-cell-1 .inner {
    padding: 50px 25px 50px;
  }
}
@media screen and (max-width: 1276px) {
  .attorney-bio-info .attorney-bio-box-2 .attorney-bio-info-inner {
    width: 85%;
  }
}
@media screen and (max-width: 1190px) {
  .attorney-bio-info h1#page-title {
    font-size: 36px !important;
  }
  .attorney-bio-info .attorney-titles a {
    font-size: 26px;
  }
}
@media screen and (max-width: 1140px) {
  .attorney-contact-info {
    flex-direction: column;
    align-items: start;
  }
  .attorney-bio-info .contact-information {
    display: flex;
    flex-direction: column;
  }

  .attorney-bio-info .attorney-bio-box-2 .attorney-bio-info-inner {
    width: 100%;
  }
  .attorney-bio-info .attorney-bio-box-2 {
    width: calc(100% - 375px);
  }
}
@media screen and (max-width: 1050px) {
  .single-attorney #body-row {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    padding: 50px 0;
  }
  .single-attorney #body-cell-1 {
    max-width: 100%;
  }
}

@media screen and (max-width: 1050px) {
  .attorney-bio-info .attorney-bio-box-2 .attorney-bio-info-inner {
    width: 100%;
  }
  .attorney-bio-info .attorney-bio-box-2 {
    flex-grow: 1;
  }
  .single-attorney #body {
    padding: 0;
  }
  .single-attorney #body #body-cell-2 .inner {
    margin-top: 0;
  }
  .single-attorney #body-cell-2 {
    padding-top: 0;
  }
}

@media screen and (max-width: 950px) {
  .attorney-bio-info {
    height: auto;
  }
  .attorney-bio-info-row {
    flex-direction: column;
    align-items: center;
  }
  .attorney-bio-info .attorney-bio-box-1 .attorney-bio-info-inner {
    padding: 0;
  }
  .attorney-bio-info img.primary {
    width: auto;
    border: 4px solid #fff;
    margin-top: 25px;
  }
  .attorney-bio-info .attorney-bio-box-2 {
    padding-left: 0;
    width: 80%;
  }
  .attorney-bio-info .attorney-bio-box-2 .attorney-bio-info-inner {
    padding-left: 0;
  }
  .attorney-bio-box-2 .attorney-bio-info-inner .attorney-page-title {
    align-items: center;
  }
  .attorney-contact-info {
    align-items: center;
  }
  .attorney-bio-info .contact-information {
    align-items: center;
  }
  .attorney-bio-info .phone,
  .attorney-bio-info .fax,
  .attorney-bio-info .email {
    margin-right: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 700px) {
  .attorney-bio-info img.primary {
    width: 100%;
  }
}
@media screen and (max-width: 610px) {
  .attorney-bio-info h1#page-title {
    font-size: 32px !important;
    line-height: 38px;
    text-align: center;
  }
  .attorney-bio-info .attorney-titles a {
    font-size: 22px;
  }
}

/* ======================================== *
        Footer Section
 * ======================================== */
#footer-wrapper {
  background: url('../images/home_footer_bg_3x.jpg') no-repeat center center/cover;
}
#footer-container {
  max-width: 90%;
}
#footer {
  position: relative;
}
#footer-bottom-row {
  padding: 100px 0;
}
#footer-bottom-cell-1 h3 {
  color: #fff;
  font-size: 38px;
  font-weight: 400;
  text-align: center;
  margin: 0 auto 15px;
  max-width: 90%;
  overflow: hidden;
}
#footer-bottom-cell-1 h3::before,
#footer-bottom-cell-1 h3::after {
  content: '';
  display: inline-block;
  width: 50px;
  border-top: 2px solid #787a7e;
  vertical-align: middle;
}
#footer-bottom-cell-1 h3::before {
  margin-left: -100%;
  width: 100%;
  margin-right: 20px;
}
#footer-bottom-cell-1 h3::after {
  margin-right: -100%;
  width: 100%;
  margin-left: 20px;
}

#footer-bottom-cell-1 .tmf-post-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 50px;
  margin: 60px 0;
}
#footer-bottom-cell-1 .tmf-post {
  padding-bottom: 0;
  margin-bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  border: 5px solid #787a7e;
  padding: 50px 0;
  position: relative;
}
#footer-bottom-cell-1 .tmf-post .address,
#footer-bottom-cell-1 .tmf-post .phone {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--body-font);
  width: 65%;
  margin: 0 auto 10px;
  line-height: 26px;
}
#footer-bottom-cell-1 .tmf-post .phone a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--body-font);
}
#footer-bottom-cell-1 .tmf-post .streetAddress::before {
  display: none;
}
#footer-bottom-cell-1 .tmf-post .address::before {
  content: '\f3c5';
  margin-right: 5px;
  vertical-align: top;
  color: #ffffff;
  font-size: 18px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 700;
  display: inline-block;
}
#footer-bottom-cell-1 .tmf-post .address {
  display: flex;
  gap: 10px;
}
#footer-bottom-cell-1 .tmf-post .title {
  display: inline-block;
  padding: 10px 10px;
  background: var(--primary-color);
  width: 60%;
  text-align: center;
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
}
#footer-bottom-cell-1 .tmf-post .title h4 {
  color: #fff;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--body-font);
}

#footer-bottom-cell-1 .social-footer {
  margin: 15px auto 0;
  max-width: 90%;
  overflow: hidden;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
#footer-bottom-cell-1 .social-footer:before,
#footer-bottom-cell-1 .social-footer:after {
  content: '';
  display: inline-block;
  width: 50px;
  border-top: 2px solid #787a7e;
  vertical-align: middle;
}
#footer-bottom-cell-1 .social-footer:before {
  margin-left: -100%;
  width: 100%;
  margin-right: 20px;
}
#footer-bottom-cell-1 .social-footer:after {
  margin-right: -100%;
  width: 100%;
  margin-left: 20px;
}
#footer-bottom-cell-1 .social-footer .tmf-button {
  background: #fff;
  color: #333;
  font-size: 16px;
  border: none;
  border-radius: 20px;
}
#footer-bottom-cell-1 .social-footer .tmf-button:hover {
  background: var(--accent-color);
  color: #fff;
}
#footer-bottom-cell-1 .social-footer .social-icons {
  display: flex;
  gap: 20px;
}
#footer-bottom-cell-1 .social-footer .social-icons a {
  cursor: pointer;
}

#footer-bottom-cell-1 .social-footer .social-icons .icon {
  display: inline-block;
  vertical-align: middle;
  background: none;
  width: 22px;
  height: 22px;
  margin-right: 5px;
  position: relative;
}
#footer-bottom-cell-1 .social-footer .social-icons .label {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--body-font);
  margin: 0;
  line-height: 22px;
}
#footer-bottom-cell-1 .social-footer .social-icons .icon.facebook {
  vertical-align: unset;
}
#footer-bottom-cell-1 .social-footer .social-icons .icon.facebook::before {
  content: '\f09a';
  font-size: 22px;
  font-family: 'Font Awesome 5 Brands';
  font-weight: 600;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
#footer-bottom-cell-1 .social-footer .social-icons .icon.linked-in {
  background: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 28px;
  font-family: 'Font Awesome 5 Brands';
}
#footer-bottom-cell-1 .social-footer .social-icons .icon.linked-in::before {
  content: '\f0e1';
  font-weight: 400;
  color: #525759;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  font-size: 16px;
  display: grid;
  place-content: center;
  width: 22px;
  height: 22px;
}
#footer-bottom-cell-1 .social-footer .social-icons .icon.instagram {
  background: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 28px;
  font-family: 'Font Awesome 5 Brands';
}
#footer-bottom-cell-1 .social-footer .social-icons .icon.instagram::before {
  content: '\f16d';
  font-weight: 400;
  color: #525759;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  font-size: 16px;
  display: grid;
  place-content: center;
  width: 22px;
  height: 22px;
}

@media screen and (max-width: 1350px) {
  #footer-bottom-cell-1 .tmf-post .title {
    width: 70%;
  }
}
@media screen and (max-width: 1175px) {
  #footer-bottom-cell-1 .tmf-post .title {
    width: 75%;
  }
  #footer-bottom-cell-1 .tmf-post .address,
  #footer-bottom-cell-1 .tmf-post .phone {
    width: 75%;
  }
}
@media screen and (max-width: 1050px) {
  #footer-bottom-cell-1 .tmf-post-list {
    gap: 30px;
  }
  #footer-bottom-cell-1 .tmf-post .title {
    width: 90%;
  }
  #footer-bottom-cell-1 .tmf-post .address,
  #footer-bottom-cell-1 .tmf-post .phone {
    width: 80%;
  }
}

@media screen and (max-width: 950px) {
  #footer-bottom-cell-1 .tmf-post-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
    margin: 60px 0 50px;
  }
  #footer-bottom-cell-1 .inner {
    padding: 0;
  }
  #footer-bottom-cell-1 .tmf-post .title {
    width: 75%;
  }
  #footer-bottom-cell-1 .tmf-post .address,
  #footer-bottom-cell-1 .tmf-post .phone {
    width: 75%;
  }
  #footer-bottom-cell-1 h3 {
    font-size: 30px;
    max-width: 100%;
  }
  #footer-bottom-cell-1 .social-footer {
    max-width: 100%;
  }
}
@media screen and (max-width: 750px) {
  #footer-bottom-cell-1 .social-footer:before,
  #footer-bottom-cell-1 .social-footer:after {
    display: none;
  }
  #footer-wrapper {
    background: url('../images/home_footer_bg_1x.jpg') no-repeat center center/cover;
  }
}
@media screen and (max-width: 650px) {
  #footer-bottom-cell-1 .social-footer {
    flex-direction: column;
    margin: 0 auto;
    gap: 25px;
  }
}
@media screen and (max-width: 500px) {
  #footer-bottom-cell-1 h3::before,
  #footer-bottom-cell-1 h3::after {
    display: none;
  }
  #footer-bottom-cell-1 .tmf-post .title {
    width: 85%;
  }
  #footer-bottom-cell-1 .tmf-post .address,
  #footer-bottom-cell-1 .tmf-post .phone {
    width: 85%;
  }
}
@media screen and (max-width: 419px) {
  #footer-bottom-cell-1 .tmf-post.tmf-post-401 .title {
    top: -32px;
  }
  #footer-bottom-cell-1 .tmf-post-list {
    gap: 60px;
    margin: 60px 0 50px;
  }
}
@media screen and (max-width: 400px) {
  #footer-bottom-cell-1 .social-footer .social-icons {
    flex-direction: column;
  }
}

/* ------------------------------- *
 * Home Footer Contact
 * -------------------------------- */
#footer-contact-row {
  background: var(--alt-accent-color-light);
  border: 5px solid #fff;
  padding: 100px 0;
  position: absolute;
  top: -260px;
  z-index: 2;
  box-sizing: border-box;
}
#footer-contact-row #footer-contact-cell-1 .tmf-module-area {
  max-width: 80%;
  margin: 0 auto;
}
body.home #footer-bottom-row {
  padding: 320px 0 100px;
}
#footer-contact-row h3 {
  color: #fff;
  font-size: 40px;
  line-height: 46px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0;
}
#footer .gform-body .left_half,
#footer .gform-body .right_half {
  display: block;
  float: left;
  vertical-align: top;
  width: 50%;
  margin-bottom: 25px;
  margin-top: 25px;
}
#footer .gform_wrapper.tmf-form_wrapper ul.gform_fields textarea {
  height: 155px !important;
}
#footer .gform_wrapper.tmf-form_wrapper ul.gform_fields {
  padding: 0 15px;
}
#footer .gform_wrapper.tmf-form_wrapper .gform_body {
  width: auto;
}
#footer .gform_wrapper.tmf-form_wrapper ul.gform_fields li.gfield {
  margin: 15px 0 0;
}
#footer .gform_wrapper.tmf-form_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type='text'],
#footer .gform_wrapper.tmf-form_wrapper input[type='text'],
#footer .gform_wrapper.tmf-form_wrapper textarea {
  margin: 0;
}
#footer .gform_wrapper.tmf-form_wrapper ul.gform_fields input[type='text'],
#footer .gform_wrapper.tmf-form_wrapper ul.gform_fields textarea {
  padding: 12px 10px !important;
  line-height: normal;
  border: none;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
#footer .gform_legacy_markup_wrapper input::placeholder {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

#footer .gform_legacy_markup_wrapper textarea::placeholder {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  color: #000;
}
#footer .gform_footer input.button,
#footer .gform_legacy_markup_wrapper .gform_footer input[type='submit'] {
  border-radius: 20px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 10px 25px;
  max-width: fit-content;
  line-height: normal;
  font-size: 18px;
  font-weight: 600;
}
#footer .gform_footer input.button:hover,
#footer .gform_legacy_markup_wrapper .gform_footer input[type='submit']:hover {
  border-radius: 20px;
  background: var(--accent-color);
  color: #fff;
  border: none;
}

/* removed 2nd location updated styles to center 1 location */
#footer-bottom-cell-1 .tmf-post-list {
  display: block;
}
#footer-bottom-cell-1 .tmf-post {
  max-width: 500px;
  margin: 60px auto;
}

@media screen and (max-width: 950px) {
  #footer .gform-body .left_half,
  #footer .gform-body .right_half {
    float: none;
    width: 100%;
  }
  #footer .gform-body .left_half {
    margin-bottom: 0;
  }
  #footer .gform-body .right_half {
    margin-top: 0;
  }
  #footer-contact-row {
    padding: 50px 0;
    top: -284px;
  }
  body.home #footer-bottom-row {
    padding: 340px 0 50px;
  }
  #footer-contact-row h3 {
    font-size: 34px;
  }
}

@media screen and (max-width: 450px) {
  #footer-contact-row #footer-contact-cell-1 .tmf-module-area {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* ======================================== *
        Copyright Section
 * ======================================== */
#copyright-wrapper {
  background: var(--alt-secondary-color-dark);
  overflow: hidden;
}

#copyright-container {
  max-width: 90%;
}
#copyright {
  padding: 25px 0;
}
#copyright #copyright-cell-1 .inner {
  padding: 0 !important;
}

#copyright .tmf-module-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#copyright p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

#copyright a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}
#copyright a:hover {
  text-decoration: underline;
}
#copyright .divider {
  margin: 0 5px !important;
}
#copyright .left {
  float: left;
}
#copyright .right {
  float: right;
  vertical-align: middle;
}

@media screen and (max-width: 1250px) {
  #copyright .left {
    /* padding-left: 50px; */
    /* margin-right: 50px; */
    /* max-width: 55%; */
  }
}

@media screen and (max-width: 1150px) {
  #copyright .left,
  #copyright .right {
    float: none;
  }
}
@media screen and (max-width: 950px) {
  #copyright .left,
  #copyright .right {
    max-width: 100%;
    text-align: center;
  }
  #copyright .left {
    border-right: none;
    padding-left: 0;
    padding-right: 0;
    margin-right: 0;
  }
  #copyright .tmf-module-content {
    display: block;
  }
}

/* ======================================== *
        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_form_bg_3x.jpg') no-repeat center center/cover;
  padding: 45px 60px;
  text-align: center;
  position: relative;
  min-width: 315px;
  box-sizing: border-box;
  max-width: 400px;
  margin-left: auto;
  margin-right: 0;
}

body .tmf-module-22 h3 {
  font-family: var(--heading-font);
  font-size: 28px !important;
  font-weight: 500 !important;
  color: #fff !important;
}
body .tmf-module-22 .gform_legacy_markup_wrapper .hidden_label .gfield_label {
  display: none;
}

body .tmf-module-22 .gform_legacy_markup_wrapper .screen-reader-text,
.gform_legacy_markup_wrapper label.gform-field-label--type-sub {
  display: none;
}
body .tmf-module-22 .gform_legacy_markup_wrapper .gform_footer {
  text-align: center;
}
body .tmf-module-22 #gform_wrapper_1 input[type='submit'] {
  background: #fff;
  border: none;
  border-radius: 20px;
  color: #323232;
  padding: 5px 25px;
  transition: all 0.15s ease-in;
  max-width: fit-content;
  font-size: 18px;
  font-weight: 600;
}
body .tmf-module-22 #gform_wrapper_1 input[type='submit']:hover {
  background: var(--accent-color) !important;
  border: none;
  color: #fff !important;
}
body .tmf-module-22 .gform_legacy_markup_wrapper ul.gform_fields li.gfield {
  padding-right: 0;
}
.tmf-module-22 .editor-content ul {
  padding-left: 0;
  margin: 0;
}
.tmf-module-22 .gform_legacy_markup_wrapper input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']) {
  background: #fff;
  border: 1px solid #fff;
  /* color: var(--alt-primary-color-dark); */
  color: #000;
}
.tmf-module-22 .gform_legacy_markup_wrapper textarea {
  background: #fff;
  border: 1px solid #fff;
  /* color: var(--alt-primary-color-dark); */
  color: #000;
}
.tmf-module-22 .gform_legacy_markup_wrapper input::placeholder {
  /* color: var(--alt-primary-color-dark); */
  color: #000;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
}

.tmf-module-22 .gform_legacy_markup_wrapper textarea::placeholder {
  /* color: var(--alt-primary-color-dark); */
  color: #000;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
}

@media screen and (max-width: 1395px) {
  body .tmf-module-22 {
    padding: 45px;
  }
}
@media screen and (max-width: 1050px) {
  body .tmf-module-22 {
    max-width: 100%;
  }
}
@media screen and (max-width: 700px) {
  body .tmf-module-22 {
    min-width: 100%;
  }
}
@media screen and (max-width: 450px) {
  body .tmf-module-22 {
    padding: 35px;
  }
}
/* End For More information Form - sidebar */

/* ======================================== *
        Inputs & Buttons
 * ======================================== */
input[type='text']::-webkit-input-placeholder,
input[type='tel']::-webkit-input-placeholder,
input[type='email']::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: #000;
}

input[type='text']:-ms-input-placeholder,
input[type='tel']:-ms-input-placeholder,
input[type='email']:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: #000;
}

input[type='text']::placeholder,
input[type='tel']::placeholder,
input[type='email']::placeholder,
textarea::placeholder,
select::placeholder {
  color: #000;
}

input[type='text'],
input[type='tel'],
input[type='email'],
textarea,
select {
  background: #ffffff;
  border: 1px solid #cccccc;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  color: #000;
  font-size: 15px !important;
  margin-top: 0 !important;
  margin-bottom: 5px !important;
  max-width: 100%;
  padding: 10px 10px !important;
  line-height: normal !important;
}

textarea {
  height: 120px !important;
}

select {
  -webkit-appearance: none; /* remove the strong OSX influence from Webkit */
}

input[type='text']:focus,
textarea:focus {
  border: 1px solid #cccccc;
}

select.gfield_select {
  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;
}

.tmf-button,
input[type='submit'] {
  font-size: 18px;
  padding: 10px 15px;
  display: inline-block;
  background: var(--primary-color);
  box-sizing: border-box;
  cursor: pointer;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  text-decoration: none !important;
  color: #fff;
  font-family: var(--body-font);
  font-weight: 500;
  line-height: normal;
  position: relative;
  transition: all 0.15s ease-in;
}

.tmf-button:hover,
input[type='submit']:hover {
  background: var(--accent-color);
  text-decoration: none;
  color: #ffffff;
}

.tmf-button:active,
.page-numbers:active,
input[type='submit']:active {
  background: var(--primary-color);
  text-decoration: none;
  color: #ffffff;
}

.page-navigation .tmf-button,
.page-navigation .page-numbers {
  background: var(--primary-color);
  border: none;
  border-radius: 0;
}
.page-navigation .tmf-button:active,
.page-navigation .page-numbers:active {
  background: var(--accent-color);
  border: none;
}
.page-navigation .tmf-button:hover,
.page-navigation .page-numbers:hover {
  background: var(--accent-color);
  border: none;
  text-decoration: none;
}
.tmf-button.large {
  font-size: 1.1em;
  padding: 7px 25px;
}

.tmf-button.medium {
  font-size: 0.95em;
  padding: 7px 25px;
}

/* .tmf-button.small {
  font-size: 0.85em;
  padding: 3px 15px;
} */

.tmf-button.tiny {
  font-size: 0.75em;
  padding: 2px 7px;
}

.page-numbers.current {
  background: var(--accent-color);
  border: none;
  color: #fff;
}
@media screen and (max-width: 450px) {
  .tmf-button::before,
  input[type='submit']::before {
    display: none;
  }

  .tmf-button::after,
  input[type='submit']::after {
    display: none;
  }
}
/* ======================================== *
        Responsive Layout
 * ======================================== */

@media screen and (max-width: 500px) {
  #secondary-nav-wrapper {
    display: none;
  }
}

/* ======================================== *
        Miscellaneous
 * ======================================== */

/* ======================================== *
        Gravity Form
 * ======================================== */
.gform_wrapper.tmf-form_wrapper {
  margin: 0 !important;
}
.gform_legacy_markup_wrapper {
  max-width: 100% !important;
  margin: 0 auto !important;
}
#billboard .gform_legacy_markup_wrapper {
  max-width: 85% !important;
}
.gform_legacy_markup_wrapper form {
}
.gform_heading {
  display: none;
}

#gform_wrapper_1 .tmf-button,
.page-numbers,
input[type='submit'] {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: #fff;
  padding: 5px 25px;
  transition: all 0.15s ease-in;
}
#gform_wrapper_1 .tmf-button,
.page-numbers,
input[type='submit']:hover {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.gform_wrapper.tmf-form_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type='text'],
.gform_wrapper.tmf-form_wrapper input[type='text'],
.gform_wrapper.tmf-form_wrapper textarea {
  margin: 0;
}

.gform_legacy_markup_wrapper .gform_footer input.button,
.gform_legacy_markup_wrapper .gform_footer input[type='submit'],
.gform_legacy_markup_wrapper .gform_page_footer input.button,
.gform_legacy_markup_wrapper .gform_page_footer input[type='submit'] {
  margin: 0 !important;
  width: auto;
}

.gform_legacy_markup_wrapper input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']) {
  background: #e5e5e5;
  border: 1px solid #fff;
  color: #333333;
}
.gform_legacy_markup_wrapper input::placeholder {
  color: #333333;
}
.gform_legacy_markup_wrapper textarea {
  background: #e5e5e5;
  border: 1px solid #fff;
  color: #333333;
}
.gform_legacy_markup_wrapper textarea::placeholder {
  color: #333333;
}
body .gform_legacy_markup_wrapper ul li.gfield {
  margin-top: 0 !important;
}
.gform_wrapper.tmf-form_wrapper .top_label .gfield_label {
  margin-bottom: 0;
}
.gform_legacy_markup_wrapper .gform_footer {
  padding: 0 !important;
  margin: 0 !important;
}
.gform_wrapper.tmf-form_wrapper ul.gform_fields li.gfield {
  padding-right: 0 !important;
  margin-top: 0;
}

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

.gform_wrapper.tmf-form_wrapper .gform_footer {
  padding: 0;
  margin: 15px 0 0;
  text-align: center;
}

.gform_legacy_markup_wrapper .gform_footer input.button,
.gform_legacy_markup_wrapper .gform_footer input[type='submit'],
.gform_legacy_markup_wrapper .gform_page_footer input.button,
.gform_legacy_markup_wrapper .gform_page_footer input[type='submit'] {
  margin: 0;
}
@media screen and (max-width: 640px) {
  .gform_legacy_markup_wrapper form {
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 500px) {
  .gform_legacy_markup_wrapper {
    max-width: 100% !important;
  }
}

/* ======================================== *
        Sidebar Gravity Form
 * ======================================== */
body .tmf-module-22 .gform_wrapper.tmf-form_wrapper ul li.gfield {
  margin-top: 8px !important;
  padding-top: 0;
}

.tmf-module-22 .gform_wrapper.tmf-form_wrapper .gform_footer input.button,
.tmf-module-22 .gform_wrapper.tmf-form_wrapper input[type='submit'] {
  border: 2px solid #ffffff;
  box-sizing: border-box;
  font-size: 18px;
  max-width: 150px;
  width: 100%;
  padding: 6px 5px;
  margin-right: 0;
  line-height: normal !important;
}
