/* ============================================================================ *
        Structural Styles
    ---------------------------------------------------------------------------
        These are the styles which build the main site layout
        (headers, footers, body, etc.).

        If you are attempting to add styling for any elements placed inside of a 
        Wordpress Editor, use 'editor-content.css' stylesheet.
*/
:root {
  /* PRIMARY COLORS */
  --primary-color: #316196;
  --alt-primary-color-light: #488ed9;
  --alt-primary-color-dark: #1e3a59;

  /* SECONDARY COLORS */
  --secondary-color: #5b6670;
  --alt-secondary-color-light: #cfd3d9;
  --alt-secondary-color-dark: #292f34;

  /* ACCENT COLORS */
  --accent-color: #b19010;
  --alt-accent-color-light: #c8aa1f;
  --alt-accent-color-dark: #735e0a;

  /* FONTS */
  --billboard-font: "Raleway", sans-serif;
  --heading-font: "Zilla Slab", serif;
  --body-font: "Noto Sans", sans-serif;

  /* FONT AWESOME */
  --font-awesome-5: "Font Awesome 5 Free";
  --font-brands: "Font Awesome 5 Brands";
}

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

/* ======================================== *
        Header 1
 * ======================================== */
h1,
h1#page-title,
.editor-content h1 {
  color: #000;
  font-size: 52px;
  font-family: var(--billboard-font);
  font-weight: 700;
  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: 38px;
  font-family: var(--heading-font);
  font-weight: 600;
}

@media screen and (max-width: 950px) {
  h1,
  h1#page-title,
  .editor-content h1 {
    font-size: 34px;
  }
}

/* ======================================== *
        Header 2
 * ======================================== */
h2,
.tmf-post > h2,
.editor-content h2 {
  color: var(--alt-primary-color-dark);
  font-size: 38px;
  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(--primary-color);
}
body:not(.home) h2,
body:not(.home) .tmf-post > h2,
body:not(.home) .editor-content h2 {
  color: var(--alt-primary-color-dark);
  font-size: 32px;
  font-family: var(--heading-font);
  font-weight: 600;
}

/* ======================================== *
        Header 3
 * ======================================== */
h3,
.tmf-post > h3,
h3.tmf-module-title {
  color: var(--alt-primary-color-dark);
  font-size: 36px;
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
}
h3 a,
.tmf-post > h3 a,
h3.tmf-module-title a {
  color: var(--accent-color);
  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: 32px;
  font-family: var(--heading-font);
  font-weight: 600;
}

@media screen and (max-width: 950px) {
  h3,
  .tmf-post > h3,
  h3.tmf-module-title {
    font-size: 24px;
  }
}

/* ======================================== *
        Header 4
 * ======================================== */
h4,
.tmf-post > h4 {
  color: #fff;
  font-size: 34px;
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
}
h4 a,
.tmf-post > h4 a {
  color: var(--accent-color);
  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: var(--alt-primary-color-dark);
  font-size: 28px;
  font-family: var(--body-font);
  font-weight: 700;
}

/* ======================================== *
        Header 5
 * ======================================== */
h5 {
  color: var(--alt-primary-color-dark);
  font-size: 28px;
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
}
h5 a {
  color: var(--accent-color);
  text-decoration: none;
}
h5 a:hover {
  text-decoration: underline;
}
body:not(.home) h5 {
  color: var(--alt-primary-color-dark);
  font-size: 28px;
  font-family: var(--heading-font);
  font-weight: 700;
}

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

/* site Specific */
#breadcrumb-wrapper {
  background: var(--alt-secondary-color-light);
  padding: 15px 25px;
}
#breadcrumb-container {
  max-width: 90%;
}

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

/* ======================================== *
        Call to Action
 * ======================================== */
body #call-to-action {
  margin: 50px 0;
  background: transparent !important;
  text-align: left;
  position: relative;
}
body #call-to-action::before {
  content: "";
  display: inline-block;
  background-image: linear-gradient(var(--accent-color), var(--accent-color)),
    linear-gradient(var(--accent-color), var(--accent-color)) !important;
  background-repeat: no-repeat !important;
  background-size: 80px 10px !important;
  background-position: top left, bottom left !important;
  border-left: solid var(--accent-color);
  border-width: 0 10px;
  width: 25px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
body #call-to-action h4 {
  margin-bottom: 5px;
}
body #call-to-action p {
  color: #000;
}
body #call-to-action a {
  color: var(--primary-color) !important;
  font-weight: 700;
  text-decoration: none;
}
body #call-to-action a:hover {
  text-decoration: underline;
}

/* ======================================== *
        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: #0f2031;
  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: 10px 0;
}
/* Handles sticky when admin Bar is showing */
body #header-wrapper.sticky.sticky_animate {
  top: 0;
}
body.admin-bar #header-wrapper.sticky.sticky_animate {
  top: 32px;
}

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

/* ----- cell 1 ------ */
/* hides normal logo on sticky */
body #header-wrapper.sticky #header .logo {
  display: none;
}
body #header-wrapper.sticky #header .sticky-logo {
  max-width: 63px;
  height: auto;
  width: 100%;
  display: block;
  text-align: center;
  margin: 0 auto;
}
body #header-wrapper.sticky #header .sticky-logo-view {
  align-items: center;
  display: flex;
  width: 40px;
}
body #header-wrapper.sticky #header #header-cell-1 {
  width: 90px;
}

/* ----- cell 2 ----- */
body #header-wrapper.sticky #header-cell-2 {
  width: 100%;
  display: table-cell;
}
body #header-wrapper.sticky #header-cell-2 .inner {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 30px;
}
body #header-wrapper.sticky .desktop-view {
  display: none;
}
body #header-wrapper.sticky #header-cell-2 .inner .sticky-view {
  display: block;
  min-width: fit-content;
}

/* sticky menu */
body #header-wrapper.sticky #header #primary-nav-wrapper {
  margin-top: 0;
  flex-grow: 1;
}
body #header-wrapper.sticky #header-cell-2 #primary-nav-container {
  max-width: 100%;
}
body #header-wrapper.sticky #primary-nav .menu {
  gap: 30px;
}
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: 700;
  text-decoration: none;
  transition: all 0.15s ease;
  padding: 5px 0;
  position: relative;
  height: auto;
}
body #header-wrapper.sticky #primary-nav .menu li a:hover {
  color: #fff;
}
#header-wrapper.sticky #primary-nav .menu > .menu-item.home-icon a::before {
  color: #fff;
}
#header-wrapper.sticky #header-cell-2 .sticky-view .phone-1 a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}
#header-wrapper.sticky #header-cell-2 .sticky-view .phone-1 a:hover {
  text-decoration: underline;
}

/* sticky sub-menu */
body #header-wrapper.sticky #primary-nav .menu .sub-menu {
  min-width: 250px;
  top: 0;
  left: 0;
  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 .sub-menu .menu-item {
  background: var(--primary-color);
}

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

/* ======================================== *
      Header Section
* ======================================== */
#header-wrapper {
  background: var(--alt-secondary-color-dark);
  padding: 50px 0;
}
.home #header-wrapper {
  background: transparent;
  position: absolute;
  width: 100%;
  z-index: 2;
}
#header-container {
  max-width: 90%;
}

/* cell 1 & 2 */
#header-cell-1,
#header-cell-2 {
  vertical-align: middle;
}
.header-top .tmf-module-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* cell 1 */
#header .logo {
  max-width: 462px;
  width: 100%;
  height: auto;
}
#header .sticky-logo-view {
  display: none;
}
#header-cell-1 {
  vertical-align: bottom;
}
#header-cell-1 .mobile-view {
  display: flex;
  justify-content: end;
}
#header-cell-1 .mobile-view {
  display: none;
}
#header-cell-1 .mobile-view a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

/* cell 2 */
#header-cell-2 .inner {
  padding-left: 0;
}
#header-cell-2 .desktop-view {
  display: flex;
  justify-content: end;
}
#header .sticky-view {
  display: none;
}
#header-cell-2 .desktop-view a {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}
#header .header-top a:hover {
  text-decoration: underline;
}
#header .header-top .phone-1 a,
#header .header-top .email {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.home #header .header-top .phone-1 a,
.home #header .header-top .email {
  color: #000;
  font-size: 18px;
  font-weight: 700;
}
#header .header-top .phone-1 a::before,
#header .header-top .email::before {
  margin-right: 7px;
  width: 18px;
  height: 18px;
  color: var(--alt-accent-color-light);
  font-size: 18px;
  font-family: var(--font-awesome-5);
  font-weight: 600;
  display: inline-block;
  vertical-align: top;
}
#header .header-top .email::before {
  content: "\f0e0";
}
#header .sticky-view .phone-1 a::before,
#header .mobile-view .phone-1 a::before,
#header .desktop-view .phone-1 a::before {
  content: "\f879";
  margin-right: 7px;
  transform: rotate(10deg);
  width: 18px;
  height: 18px;
  color: var(--alt-accent-color-light);
  font-size: 18px;
  font-family: var(--font-awesome-5);
  font-weight: 600;
  display: inline-block;
  vertical-align: top;
}
#header .sticky-view .phone-1 a::before,
#header .sticky-view .email a::before {
  color: var(--primary-color);
}
#header .sticky-view .email::before {
  content: "\f0e0";
  font-size: 18px;
  font-family: var(--font-awesome-5);
  font-weight: 600;
  display: inline-block;
  vertical-align: top;
  width: 18px;
  height: 18px;
  margin-right: 7px;
  color: var(--primary-color);
}
#header .sticky-view .email {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
#header .sticky-view .phone-1 a {
  margin-right: 30px;
}

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

@media screen and (max-width: 1200px) {
  #header-cell-1 {
    margin-bottom: 10px;
  }
  #header-cell-2 {
    padding-top: 0;
  }
  #header-cell-2 .inner {
    padding: 0;
    display: block;
  }
  .header-top-row {
    display: table;
    width: 100%;
  }
  #header .main-logo {
    box-sizing: border-box;
    display: table-cell;
    vertical-align: top;
  }
  #header .main-logo {
    width: 300px;
  }
  #header-cell-2 .desktop-view {
    display: none;
  }
  #header-cell-1 .mobile-view {
    display: flex;
  }
  #header-cell-1 .mobile-view .tmf-module-content {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    gap: 10px;
  }
}

@media screen and (max-width: 950px) {
  .home #header-wrapper {
    background: var(--alt-secondary-color-dark);
    position: static;
  }
  .home .header-billboard-wrap .header-wrap {
    position: relative;
  }
  #header-cell-1 .inner {
    padding-right: 25px;
  }
  #header .main-logo {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0;
  }
  #header-cell-2 {
    position: unset;
  }
  #header-container {
    max-width: 100%;
  }
  #header-cell-1 .mobile-view {
    display: none;
  }
  .home #header #site-logo.logo {
    content: url("../images/logo_int_3x.png");
  }
}

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

/* ======================================== *
      Primary Navigation
* ======================================== */
#primary-nav-wrapper {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 16px;
  margin-top: 10px;
}
#primary-nav-container {
  max-width: 100% !important;
  margin: 0 auto;
}
#primary-nav .menu {
  width: 100%;
  display: flex;
  justify-content: end;
  gap: 45px;
}
#primary-nav .menu > .menu-item > a {
  color: #fff;
  font-family: var(--body-font);
  font-size: 16px;
  line-height: normal;
  font-weight: 700;
  padding: 5px 0;
  text-decoration: none;
  position: relative;
  height: auto;
}
.home #primary-nav .menu > .menu-item > a {
  color: #000;
}

/* -- Menu Item Hover animation -- */
#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: var(--accent-color);
  width: 80%;
  height: 2px;
}

/* --- Home Icon --- */
#primary-nav .menu > .menu-item.home-icon a {
  font-size: 0 !important;
  width: 25px;
}
#primary-nav .menu > .menu-item.home-icon a::before {
  content: "\f015";
  color: #fff;
  font-size: 20px;
  font-family: var(--font-awesome-5);
  font-weight: 700;
  display: inline-block;
  position: static;
  background: none;
  height: 0;
  transition: unset;
  width: 100%;
}
#primary-nav .menu > .menu-item.home-icon a:hover::before {
  background: none;
  height: 0;
}
#primary-nav .menu > .menu-item.home-icon a::after {
  display: none;
}

/* -- sub menu -- */
#primary-nav .menu .sub-menu {
  top: 0;
  left: 0;
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
  min-width: 250px;
  background: var(--primary-color);
}
#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;
}

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

@media screen and (min-width: 1650px) {
  #primary-nav .menu {
    justify-content: end;
    gap: 30px;
  }
}

@media screen and (max-width: 1200px) {
  #primary-nav-wrapper {
    width: 95%;
    margin: 0 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: var(--font-awesome-5);
  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: #fff;
  font-weight: 600;
  font-size: 17px;
  line-height: normal;
  display: block;
}
#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 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);
}
#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;
}
.tmf-post.location.mobile-location,
.tmf-post.location.mobile-location a {
  position: relative;
}
.tmf-post.location.mobile-location .location-small-1 {
  padding: 0;
  border: 0;
}
.tmf-post.location.mobile-location .map-label {
  font-size: 20px;
}

/* ======================================== *
    Billboard
 * ======================================== */
#billboard-wrapper {
  position: relative;
  overflow: hidden;
}
#billboard-container {
  max-width: 100%;
}
#billboard .billboard-content-container {
  box-sizing: border-box;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 7%;
  z-index: 1;
  transform: translateY(-50%);
  width: 60%;
}
#billboard .billboard-content {
  box-sizing: border-box;
  position: relative;
  padding: 0;
  overflow: hidden;
}
#billboard h1 {
  margin-bottom: 0;
}
#billboard h1 span.line1 {
  font-weight: 600;
}
#billboard h1 span.line2 {
  margin-left: 50px;
}

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

@media screen and (max-width: 950px) {
  #billboard .billboard-content-container {
    /* background: var(--alt-primary-color-dark); */
    background: url("../images/int_random_page_bg_3x.png") no-repeat center
      center/cover;
    transform: inherit;
    padding: 25px 25px;
    width: 100%;
    position: relative;
    left: unset;
    bottom: unset;
  }
  #billboard .billboard-content {
    background: transparent;
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
  }
  #billboard h1 span.line2 {
    margin-left: 0;
  }
  #billboard h1 {
    text-align: center;
    color: #fff;
  }
}

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

@media screen and (max-width: 500px) {
  #billboard .billboard-content .tmf-module-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
  }
  #billboard .billboard-btns a:nth-child(1) {
    display: block;
    margin-right: 0;
    margin-bottom: 25px;
  }
}

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

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

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

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

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

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

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

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

/* ======================================== *
        Int billboard 
 * ======================================== */
#int-billboard-wrapper {
  background: url("../images/int_attorney_bg_3x.png") no-repeat center
    center/cover;
}
#int-billboard-container {
  max-width: 90% !important;
}
#int-billboard-cell-1,
#int-billboard-cell-2 {
  vertical-align: middle;
}

/* cell 1 */
#int-billboard-cell-1 .inner {
  height: 190px;
}
#int-billboard .int-billboard-content {
  display: flex;
  align-items: center;
  height: 190px;
}
#int-billboard .int-billboard-title {
  box-sizing: border-box;
  display: inline-block;
  max-width: 100%;
  position: relative;
}

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

@media screen and (max-width: 1050px) {
  #int-billboard-row {
    display: flex;
  }
  #int-billboard .int-billboard-content {
    height: 310px;
  }
  #int-billboard #int-billboard-cell-2 {
    padding-top: 0;
  }
  #int-billboard-cell-2 .inner {
    position: relative;
    width: 100%;
  }
  #int-billboard .int-billboard-img {
    margin-top: 0;
    border-top: none;
    border-bottom: none;
  }
}

@media screen and (max-width: 950px) {
  #int-billboard #int-billboard-row {
    display: flex;
    flex-direction: column-reverse;
  }
  #int-billboard-cell-1 .inner {
    height: auto;
  }
  #int-billboard .int-billboard-content {
    height: auto;
    display: block;
    padding: 25px 0;
    text-align: center;
  }
  #int-billboard .int-billboard-img {
    max-height: unset;
    margin: 25px auto 0;
  }
}

@media screen and (max-width: 550px) {
  #int-billboard .int-billboard-title {
    width: 100%;
  }
  #int-billboard .int-billboard-img {
    max-width: unset;
    width: 100%;
    height: auto;
  }
  #int-billboard-cell-2 .inner {
    padding: 0;
  }
}

/* ======================================== *
        Int Title Section
 * ======================================== */
#int-title-wrapper {
  background: url("../images/int_random_page_bg_3x.png") no-repeat center
    center/cover;
}
#int-title-wrapper .title-arrow {
  display: none;
}
#int-title-container {
  max-width: 90%;
}
#int-title {
  padding: 50px 25px;
}
#int-title h1#page-title {
  margin-bottom: 0;
}

/* ======================================== *
        Home Body Section
 * ======================================== */
#home-body-wrapper {
  padding: 50px 0 100px;
}
#home-body-container {
  max-width: 90%;
}
#home-body h2 {
  margin-top: 0;
}

@media screen and (max-width: 1271px) {
  #home-body-cell-1 {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 950px) {
  #home-body-wrapper {
    margin-top: 0;
    margin-bottom: 0;
    padding: 25px 0 50px;
  }
  #home-body {
    text-align: left;
    margin-top: 0;
  }
  #home-body-cell-2 .inner {
    margin-top: 0;
  }
}

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

/* ======================================== *
        Body Section
 * ======================================== */
#body-container {
  max-width: 90%;
}
body:not(.single-attorney) #body-row {
  display: flex;
}
body:not(.single-attorney) #body-cell-1 {
  flex-grow: 1;
}
body:not(.single-attorney) #body-cell-2 {
  max-width: 450px;
  min-width: 375px;
  margin-left: auto;
}
#body #body-cell-1 .tmf-post .content-container {
  padding-bottom: 35px;
}
#body #body-cell-1 > .inner {
  padding: 35px 25px;
}
#body #body-cell-2 > .inner {
  padding: 50px 25px;
}
.page #body #body-cell-2 > .inner {
  padding: 50px 25px;
  margin-top: -150px;
}
#body #body-cell-2 {
  position: relative;
}

@media screen and (max-width: 1050px) {
  #body-wrapper {
    margin-top: 0;
    overflow: hidden;
  }
  #body {
    padding: 35px 0 50px;
  }
  #body #body-cell-1 .inner {
    padding: 0 25px;
  }
  #body #body-cell-2 .inner {
    padding: 0 25px;
  }
  body:not(.single-attorney) #body-row {
    display: block;
  }
  body:not(.single-attorney) #body-cell-1 {
    flex-grow: 1;
  }
  body:not(.single-attorney) #body-cell-2 {
    max-width: 100%;
    min-width: unset;
    margin-left: unset;
  }
}

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

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

/* ======================================== *
        Home Practice Area Section
 * ======================================== */
.tmf-module-336 {
  margin-bottom: 50px;
}
.tmf-module-336,
#home-practice-areas-wrapper {
  padding: 45px;
  background: url("../images/home_prac_areas_sidebar_bg_3x.jpg") no-repeat
    center center/cover;
  border: 3px solid #adbecd;
  min-width: 335px;
  box-sizing: border-box;
}
#home-practice-areas-container {
  max-width: 100%;
}
.tmf-module-336 .tmf-post-list,
#home-practice-areas .tmf-post-list {
  position: relative;
  display: block;
  width: 100%;
}
.tmf-module-336 .tmf-post,
#home-practice-areas .tmf-post {
  padding: 0;
  margin: 0;
  border: 0;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.tmf-module-336 .tmf-post.last-post,
#home-practice-areas .tmf-post.last-post {
  margin-bottom: 0;
}
.tmf-module-336 .tmf-post .pa-listing a,
#home-practice-areas .tmf-post .pa-listing a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 20px;
}
.tmf-module-336 .tmf-post .pa-listing a .title,
#home-practice-areas .tmf-post .pa-listing a .title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.25s ease;
}
.tmf-module-336 .tmf-post .pa-listing a:hover .title,
#home-practice-areas .tmf-post .pa-listing a:hover .title {
  color: var(--accent-color);
}

/* icons */
.tmf-module-336 .tmf-post .pa-listing a .pa-icon,
#home-practice-areas .tmf-post .pa-listing a .pa-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: url("../images/icon_sprite_3x.png") no-repeat;
  background-size: 250px;
  transition: transform 0.25s ease;
}
.tmf-module-336 .tmf-post .pa-listing a:hover .pa-icon,
#home-practice-areas .tmf-post .pa-listing a:hover .pa-icon {
  transform: scale(1.2);
}
.tmf-module-336 .tmf-post:nth-child(1) .pa-listing a .pa-icon,
#home-practice-areas .tmf-post:nth-child(1) .pa-listing a .pa-icon {
  background-position: 0 0;
}
.tmf-module-336 .tmf-post:nth-child(2) .pa-listing a .pa-icon,
#home-practice-areas .tmf-post:nth-child(2) .pa-listing a .pa-icon {
  background-position: -42px 0;
  background-size: 220px;
}
.tmf-module-336 .tmf-post:nth-child(3) .pa-listing a .pa-icon,
#home-practice-areas .tmf-post:nth-child(3) .pa-listing a .pa-icon {
  background-position: -100px 0;
}
.tmf-module-336 .tmf-post:nth-child(4) .pa-listing a .pa-icon,
#home-practice-areas .tmf-post:nth-child(4) .pa-listing a .pa-icon {
  background-position: -153px 0;
}
.tmf-module-336 .tmf-post:nth-child(5) .pa-listing a .pa-icon,
#home-practice-areas .tmf-post:nth-child(5) .pa-listing a .pa-icon {
  background-position: -182px 0;
  background-size: 220px;
}

/* ======================================== *
        Home Attorney Bottom Section
 * ======================================== */
#home-attorney-bottom-wrapper {
  height: 70px;
  background: #1e3a59;
}

/* ======================================== *
        Home Attorney Section
 * ======================================== */
#home-attorney-wrapper {
  background: url("../images/home_meet_thomas_bg_3x.jpg") no-repeat center
    center/cover;
}
#home-attorney-container {
  max-width: 90%;
  position: static;
}
#home-attorney-row {
  position: static;
}
#home-attorney {
  padding: 110px 0;
}

/* cell 1 */
#home-attorney-cell-1 .inner {
  position: static;
}
#home-attorney-cell-1 img {
  border: 4px solid #fff;
  position: absolute;
  top: -50px;
  bottom: -30px;
  z-index: 1;
}

/* cell 2 */
#home-attorney-cell-2 {
  vertical-align: middle;
}
#home-attorney-cell-2 .title a {
  text-decoration: none;
  color: var(--alt-primary-color-dark);
  font-size: 38px;
  font-weight: 700;
  font-family: var(--heading-font);
}
#home-attorney-cell-2 .read-more-btn {
  margin-top: 25px;
}

@media screen and (max-width: 1720px) {
  #home-attorney {
    padding: 96px 0;
  }
}

@media screen and (max-width: 1600px) {
  #home-attorney-cell-1 {
    width: 37%;
  }
}

@media screen and (max-width: 1450px) {
  #home-attorney-cell-1 {
    width: 40%;
  }
}

@media screen and (max-width: 1350px) {
  #home-attorney-cell-1 {
    width: 44%;
  }
  #home-attorney {
    padding: 83px 0;
  }
}

@media screen and (max-width: 1230px) {
  #home-attorney-cell-1 {
    width: 49%;
  }
}

@media screen and (max-width: 1212px) {
  #home-attorney {
    padding: 70px 0;
  }
}

@media screen and (max-width: 1100px) {
  #home-attorney-cell-1 {
    width: 53%;
  }
}

@media screen and (max-width: 1060px) {
  #home-attorney {
    padding: 59px 0;
  }
}

@media screen and (max-width: 1000px) {
  #home-attorney-cell-1 {
    width: 100%;
  }
  #home-attorney-cell-1 img {
    position: static;
    display: block;
    margin: 0 auto 15px;
  }
  #home-attorney-cell-2 {
    text-align: center;
  }
  #home-attorney {
    padding: 50px 0;
  }
}

@media screen and (max-width: 575px) {
  #home-attorney-cell-1 img {
    width: 100%;
    height: auto;
  }
}

/* ======================================== *
        Home Section 2 Section
 * ======================================== */
#home-section-2-wrapper {
  padding: 100px 0;
}
#home-section-2-container {
  max-width: 90% !important;
}

/* cell 1 */
#home-section-2-cell-1 fieldset {
  border: 2px solid #aebecf;
  padding: 80px 50px;
}
#home-section-2-cell-1 fieldset legend {
  text-align: center;
  padding: 0 15px;
  font-size: 38px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: var(--alt-primary-color-dark);
}
#home-section-2-cell-1 .why-choose {
  display: flex;
  gap: 50px;
}
#home-section-2-cell-1 .why-choose ul {
  padding-left: 65px;
  margin: 0;
}
#home-section-2-cell-1 .why-choose ul li {
  font-size: 20px;
  position: relative;
  margin-bottom: 35px;
}
#home-section-2-cell-1 .why-choose ul li::before {
  content: "";
  background: url("../images/icon_sprite_why_choose_3x.png") no-repeat;
  background-size: 107px;
  min-width: 48px;
  width: 48px;
  height: 49px;
  margin-left: -65px;
  /* margin-right: 10px; */
  /* position: relative; */
  position: absolute;
  /* top: 25px; */
  top: 0;
}
#home-section-2-cell-1 .why-choose ul.why-left li:nth-child(1)::before {
  background-position: 0 0;
}
#home-section-2-cell-1 .why-choose ul.why-left li:nth-child(2)::before {
  background-position: 0 -58px;
}
#home-section-2-cell-1 .why-choose ul.why-left li:nth-child(3)::before {
  background-position: 0 -117px;
}
#home-section-2-cell-1 .why-choose ul.why-right li:nth-child(1)::before {
  background-position: -59px 0;
}
#home-section-2-cell-1 .why-choose ul.why-right li:nth-child(2)::before {
  background-position: -59px -58px;
}
#home-section-2-cell-1 .why-choose ul.why-right li:nth-child(3)::before {
  background-position: -59px -117px;
}

#home-section-2-cell-1 .why-btn-wrapper {
  text-align: center;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
#home-section-2-cell-1 .why-btn {
  padding: 0 15px;
  background: #fff;
  display: inline-block;
}

@media screen and (max-width: 950px) {
  #home-section-2-cell-1 .why-choose {
    display: block;
  }
  #home-section-2-cell-1 fieldset {
    padding: 55px 35px 65px;
  }
  #home-section-2-wrapper {
    padding: 50px 0 65px;
  }
}

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

/* ======================================== *
        Single Practice Areas Pages
 * ======================================== */
body.single-practice-area #body #body-cell-2 {
  min-width: 450px;
}
.single-practice-area #body #body-cell-2 > .inner {
  margin-top: 90px;
}

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

/* ======================================== *
        All Archives
 * ======================================== */
.post-type-archive #body-cell-2 .inner {
  margin-top: -150px;
}
@media screen and (max-width: 1050px) {
  .post-type-archive #body-cell-2 .inner {
    margin-top: 0;
  }
}

/* ======================================== *
        Practice Area archive
 * ======================================== */
.post-type-archive-practice-area p {
  line-height: 1.7em;
  margin-bottom: 15px;
}
.post-type-archive-practice-area #body-cell-1 .tmf-post.practice-area {
  padding-bottom: 45px;
  margin-bottom: 45px;
}
.post-type-archive-practice-area
  #body-cell-1
  .tmf-post.practice-area.last-post {
  margin-bottom: 0;
  padding-bottom: 25px;
}
.post-type-archive-practice-area .tmf-post.medium img.thumbnail.mobile {
  display: none;
}

@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.attorney {
  padding-bottom: 45px;
  margin-bottom: 45px;
}
.post-type-archive-attorney .contact-information a {
  color: #333;
}

/* ======================================== *
        Single Attorney Page CSS
 * ======================================== */
/* --- attorney bio info header --- */
.attorney-bio-info {
  background: url("../images/int_attorney_bg_3x.png") no-repeat center
    center/cover;
  height: 295px;
}
.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-box-1 */
.attorney-bio-info .attorney-bio-box-1 .attorney-bio-info-inner {
  padding: 0;
}
.attorney-bio-info img.primary {
  box-sizing: border-box;
  border-radius: 0;
  display: block;
  position: relative;
  width: 396px;
}

/* attorney-bio-box-2 */
.attorney-bio-info .attorney-bio-box-2 {
  width: calc(100% - 375px);
  height: 294px;
  display: flex;
  align-items: center;
  padding-left: 25px;
}
.attorney-bio-info .attorney-bio-box-2 .attorney-bio-info-inner {
  display: flex;
  flex-direction: column;
  padding-left: 50px;
}
.attorney-bio-info .attorney-bio-box-2 .attorney-bio-info-inner .title-section {
  display: flex;
  align-items: end;
  gap: 15px;
  border-bottom: 2px solid rgba(128, 128, 128, 0.3);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.attorney-bio-info h1#page-title {
  margin-bottom: 0;
  min-width: fit-content;
}
.attorney-bio-info .attorney-titles {
  padding-bottom: 2px;
}
.attorney-bio-info .attorney-titles a {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  font-family: var(--body-font);
}
.attorney-contact-info {
  padding-left: 0;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
}
.attorney-bio-info .contact-information a,
.attorney-bio-info .icon-container a,
.attorney-bio-info .speaking a {
  color: #fff;
  font-weight: 600;
}
.attorney-bio-info .contact-information,
.attorney-bio-info .icon-container {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  vertical-align: top;
}
.attorney-bio-info .phone,
.attorney-bio-info .vcard,
.attorney-bio-info .resume,
.attorney-bio-info .fax,
.attorney-bio-info .email {
  display: inline-block;
  padding-top: 5px;
  line-height: normal;
  margin-right: 10px;
  padding-right: 10px;
  vertical-align: middle;
}
.attorney-bio-info .label {
  font-size: 0;
}
.attorney-bio-info .vcard .value {
  background: transparent;
  height: auto;
  width: auto;
  margin-right: 0;
}
.attorney-bio-info .vcard::before,
.attorney-bio-info .resume::before,
.attorney-bio-info .phone-1::before,
.attorney-bio-info .phone-2::before,
.attorney-bio-info .fax::before,
.attorney-bio-info .email::before,
.attorney-bio-info .speaking::before {
  color: var(--alt-secondary-color-light);
  font-size: 15px;
  font-family: var(--font-awesome-5);
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
}
.attorney-bio-info .phone-1::before,
.attorney-bio-info .phone-2::before {
  content: "\f879";
  margin-right: 5px;
  transform: rotate(10deg);
}
.attorney-bio-info .fax::before {
  content: "\f1ac";
  margin-right: 5px;
}
.attorney-bio-info .email::before {
  content: "\f0e0";
  margin-right: 5px;
}
.attorney-bio-info .vcard::before {
  content: "\f2bb";
}

/* --- attorney Body --- */
.single-attorney #body-row {
  display: flex;
  width: 100%;
}

/* cell 1 */
.single-attorney #body-cell-1 {
  width: 445px;
  flex-shrink: 0;
}
.single-attorney #body #body-cell-1 .inner {
  padding: 150px 25px 50px;
  width: 400px;
}

/* cell 2 */
.single-attorney #body-cell-2 {
  border-left: none;
  flex-grow: 1;
}
.single-attorney #body #body-cell-2 .inner {
  padding: 35px 25px;
}

@media screen and (max-width: 1400px) {
  .attorney-bio-info img.primary {
    width: 350px;
  }
  .single-attorney #body-cell-1 {
    width: 375px;
  }
  .single-attorney #body #body-cell-1 .inner {
    padding: 100px 25px 50px 0;
    width: 375px;
  }
}

@media screen and (max-width: 1200px) {
  .attorney-contact-info {
    flex-direction: column;
    align-items: start;
  }
  .attorney-bio-info
    .attorney-bio-box-2
    .attorney-bio-info-inner
    .title-section {
    flex-direction: column;
    align-items: start;
    gap: 5px;
  }
  .attorney-bio-info .contact-information,
  .attorney-bio-info .icon-container {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (max-width: 1140px) {
  .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%;
  }
  .single-attorney #body #body-cell-1 .inner {
    width: 400px;
    padding: 50px 25px 50px;
  }
  .attorney-bio-info img.primary {
    width: auto;
    height: 295px;
  }
  .attorney-bio-info .attorney-bio-box-2 .attorney-bio-info-inner {
    padding-left: 30px;
  }
  .single-attorney #body-row {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    padding: 0;
  }
  .single-attorney #body-cell-1 {
    width: 100%;
  }
  .single-attorney #body #body-cell-1 .inner {
    width: 100%;
    padding: 25px;
  }
  .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 0 25px;
  }
  .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-box-2 .attorney-titles {
    text-align: center;
    margin-top: 15px;
  }
  .attorney-bio-box-2
    .attorney-bio-info-inner
    .attorney-page-title
    .title-section {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .attorney-bio-info {
    height: auto;
  }
  .attorney-bio-info-row {
    display: block;
    padding: 50px 0;
  }
  .attorney-bio-info .attorney-bio-box-1 .attorney-bio-info-inner {
    padding: 0;
  }
  .attorney-bio-info .attorney-bio-box-1 {
    display: block;
  }
  .attorney-bio-info .attorney-bio-box-2 {
    padding-left: 0;
    width: 100%;
    display: block;
    height: auto;
  }
  .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;
    justify-content: center;
    flex-direction: column;
    gap: 0;
  }
  .attorney-bio-info h1#page-title {
    border-right: none;
    padding-right: 0;
    line-height: 42px;
  }
  .attorney-contact-info {
    align-items: center;
    gap: 10px;
  }
  .attorney-bio-info .contact-information {
    align-items: center;
    gap: 10px;
  }
  .attorney-bio-info .phone,
  .attorney-bio-info .fax,
  .attorney-bio-info .email {
    margin-right: 0;
    padding-right: 0;
  }
  .attorney-bio-info img.primary {
    width: 402px;
    height: auto;
    display: block;
    margin: 0 auto 25px;
  }
}

@media screen and (max-width: 700px) {
  .attorney-bio-info img.primary {
    width: 100%;
  }
  .attorney-bio-info-row {
    padding: 25px 0;
  }
}

@media screen and (max-width: 500px) {
  .attorney-bio-box-2
    .attorney-bio-info-inner
    .attorney-page-title
    .title-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-align: center;
  }
}

/* ======================================== *
        Int Footer Section
 * ======================================== */
#int-footer-wrapper {
  background: url("../images/int_footer_3x.png") no-repeat center left/contain,
    var(--alt-secondary-color-light);
  padding: 150px 0;
}
#int-footer-container {
  max-width: 90%;
}
#int-footer-cell-1 .tmf-post {
  border: 2px solid #a0b0bf;
  padding: 25px 50px;
  width: 50%;
  margin: 0 auto;
  box-sizing: border-box;
}
#int-footer-cell-1 .title {
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
}
#int-footer-cell-1 .streetAddress br {
  display: none;
}
#int-footer-cell-1 h3 {
  color: var(--alt-primary-color-dark);
  font-size: 28px;
  font-weight: 600;
  padding-bottom: 0;
  margin-bottom: 0;
  font-family: var(--heading-font);
}
#int-footer-cell-1 a {
  color: var(--alt-primary-color-dark);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}
#int-footer-cell-1 .tmf-post.small.location .business-info {
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
}
#int-footer-cell-1 .tmf-post.small.location .email::before {
  color: var(--primary-color);
}
#int-footer-cell-1 .streetAddress::before {
  display: none;
}
#int-footer-cell-1 .tmf-post.small.location .phone-1::before,
#int-footer-cell-1 .tmf-post.small.location .email::before,
#int-footer-cell-1 .tmf-post.small.location .fax::before,
#int-footer-cell-1 .address::before {
  font-size: 16px;
  font-family: var(--font-awesome-5);
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  color: var(--primary-color);
  margin-right: 5px;
  line-height: 24px;
}
#int-footer-cell-1 .tmf-post.small.location .phone-1::before {
  content: "\f879";
  transform: rotate(10deg);
}
#int-footer-cell-1 .tmf-post.small.location .email {
  display: inline-block;
}
#int-footer-cell-1 .address {
  display: flex;
  gap: 5px;
}
#int-footer-cell-1 .address::before {
  content: "\f3c5";
}
#int-footer-cell-1 .fax,
#int-footer-cell-1 .streetAddress {
  color: var(--alt-primary-color-dark);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

@media screen and (max-width: 2050px) {
  #int-footer-cell-1 .tmf-post {
    width: 60%;
  }
}

@media screen and (max-width: 1720px) {
  #int-footer-cell-1 .tmf-post {
    width: 70%;
  }
}

@media screen and (max-width: 1485px) {
  #int-footer-cell-1 .tmf-post {
    width: 80%;
  }
}

@media screen and (max-width: 1310px) {
  #int-footer-cell-1 .tmf-post {
    width: 90%;
  }
}

@media screen and (max-width: 1170px) {
  #int-footer-cell-1 .tmf-post {
    width: 100%;
  }
}

@media screen and (max-width: 1060px) {
  #int-footer-cell-1 .title {
    gap: 5px;
    flex-direction: column;
  }
  #int-footer-wrapper {
    padding: 100px 0;
  }
}

@media screen and (max-width: 950px) {
  #int-footer-cell-1 .tmf-post.small.location .business-info {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }
  #int-footer-cell-1 .address {
    justify-content: center;
    text-align: left;
  }
  #int-footer-cell-1 .address .address-2 {
    display: inline;
  }
  #int-footer-cell-1 .tmf-post.small.location .phone-1 {
    margin-right: 0;
  }
}

@media screen and (max-width: 750px) {
  #int-footer-cell-1 .streetAddress br {
    display: block;
  }
  #int-footer-cell-1 .streetAddress {
    text-align: center;
  }
}

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

/* ======================================== *
        Home Footer Section
 * ======================================== */
#footer-container {
  max-width: 100%;
}
#footer {
  position: relative;
}

/* cell 1 */
#footer-bottom-cell-1 {
  background: url("../images/home_footer_left_3x.png") no-repeat center
      left/contain,
    var(--alt-secondary-color-light);
  padding: 100px 0 !important;
  vertical-align: middle;
}
#footer-bottom-cell-1 .inner {
  padding: 0;
}
.tmf-module-area-footer-1 {
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0 auto;
}
#footer-bottom-cell-1 h3 {
  color: var(--alt-primary-color-dark);
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 15px;
}
#footer-bottom-cell-1 a {
  color: var(--alt-primary-color-dark);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}
#footer-bottom-cell-1 a:hover {
  text-decoration: underline;
}
#footer-bottom-cell-1 .tmf-post.small.location .phone-1 {
  margin-right: 15px;
}
#footer-bottom-cell-1 .tmf-post.small.location .phone-1::before,
#footer-bottom-cell-1 .tmf-post.small.location .email::before,
#footer-bottom-cell-1 .tmf-post.small.location .fax::before,
#footer-bottom-cell-1 .address::before {
  font-size: 16px;
  font-family: var(--font-awesome-5);
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  color: var(--primary-color);
  margin-right: 5px;
  line-height: 24px;
}

#footer-bottom-cell-1 .tmf-post.small.location .phone-1::before {
  content: "\f879";
  transform: rotate(10deg);
}
#footer-bottom-cell-1 .tmf-post.small.location .email {
  display: inline-block;
}
#footer-bottom-cell-1 .address {
  display: flex;
  gap: 5px;
}
#footer-bottom-cell-1 .address::before {
  content: "\f3c5";
}
#footer-bottom-cell-1 .fax,
#footer-bottom-cell-1 .streetAddress {
  color: var(--alt-primary-color-dark);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
#footer-bottom-cell-1 .streetAddress::before {
  display: none;
}

/* cell 2 */
#footer-bottom-cell-2 {
  background: url("../images/home_footer_right_3x.png") no-repeat center
    center/cover;
  vertical-align: middle;
  padding: 25px 0;
}
.tmf-module-area-footer-2 {
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
}
#footer #footer-bottom-cell-2 h3 {
  color: #fff;
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  margin: 0 0 20px 0;
}
#footer .gform-body {
  display: flex;
  gap: 50px;
}
#footer #gform_fields_3 {
  width: 0;
}
#footer .gform-body .left_half,
#footer .gform-body .right_half {
  width: 50%;
}
#footer .gform_wrapper ul.gform_fields textarea {
  height: 156px !important;
}
#footer .gform_footer {
  margin-top: 25px !important;
}

@media screen and (max-width: 1200px) {
  #footer .gform-body {
    display: block;
  }
  #footer .gform-body .left_half,
  #footer .gform-body .right_half {
    width: 80%;
    margin: 0 auto;
  }
  #footer .gform-body .left_half {
    margin-bottom: 25px;
  }
  #footer .gform_legacy_markup_wrapper ul.gform_fields li.gfield {
    padding-right: 0;
  }
}

@media screen and (max-width: 1000px) {
  #footer .gform-body {
    display: flex;
  }
  #footer .gform-body .left_half,
  #footer .gform-body .right_half {
    width: 50%;
  }
  #footer .gform-body .left_half {
    margin-bottom: 0;
  }
  #footer-wrapper {
    padding: 0;
  }
  #footer-bottom-cell-1 .inner,
  #footer-bottom-cell-2 .inner,
  #footer-bottom-cell-3 .inner {
    padding: 0 25px;
  }
  #footer-bottom-cell-1 .address {
    justify-content: center;
  }
  #footer-bottom-cell-1 .tmf-post.small.location .phone-1 {
    margin-right: 0;
  }
  #footer-bottom-cell-1 .business-info {
    text-align: center;
  }
  #footer-bottom-cell-1 .social-icons {
    justify-content: center;
  }
  #footer-bottom-cell-2 {
    padding: 50px 0;
  }
}

@media screen and (max-width: 750px) {
  #footer .gform-body {
    display: block;
  }
  #footer .gform-body .left_half,
  #footer .gform-body .right_half {
    width: 80%;
    margin: 0 auto;
  }
  #footer .gform-body .left_half {
    margin-bottom: 25px;
  }
  #footer .gform_legacy_markup_wrapper ul.gform_fields li.gfield {
    padding-right: 0;
  }
  #footer-bottom-cell-1 {
    padding: 50px 0 !important;
  }
}

@media screen and (max-width: 570px) {
  #footer .gform-body .left_half,
  #footer .gform-body .right_half {
    width: 90%;
  }
}

/* ======================================== *
        Copyright Section
 * ======================================== */
#copyright-wrapper {
  background: var(--alt-primary-color-dark);
  overflow: hidden;
}
#copyright-container {
  max-width: 90%;
}
#copyright {
  padding: 25px 0;
}
#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;
}

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

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

@media screen and (max-width: 950px) {
  #copyright-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #copyright #copyright-cell-1 {
    text-align: center;
  }
  #copyright #copyright-cell-1 p br {
    display: none;
  }
  #copyright #copyright-cell-2 {
    text-align: center;
    padding-top: 5px;
  }
  #copyright #copyright-cell-2 p br {
    display: none;
  }
}

/* ======================================== *
        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-276 {
  background: url("../images/int_contact_form_bg_3x.jpg") no-repeat center
    center/cover;
  padding: 45px 45px;
  text-align: center;
  position: relative;
  min-width: 335px;
  box-sizing: border-box;
}
body .tmf-module-276 h3 {
  font-family: var(--heading-font);
  font-size: 34px !important;
  font-weight: 600 !important;
  color: #fff !important;
}
body .tmf-module-276 .gform_legacy_markup_wrapper .hidden_label .gfield_label {
  display: none;
}
body .tmf-module-276 .gform_legacy_markup_wrapper .screen-reader-text,
.gform_legacy_markup_wrapper label.gform-field-label--type-sub {
  display: none;
}
body .tmf-module-276 .gform_legacy_markup_wrapper .gform_footer {
  text-align: center;
}
body .tmf-module-276 #gform_wrapper_1 input[type="submit"] {
  border: none;
  padding: 5px 25px;
  transition: all 0.15s ease-in;
  max-width: fit-content;
  font-size: 16px;
  font-weight: 700;
}
body .tmf-module-276 #gform_wrapper_1 input[type="submit"]:hover {
  background: var(--accent-color) !important;
  color: #fff !important;
}
body .tmf-module-276 .gform_legacy_markup_wrapper ul.gform_fields li.gfield {
  padding-right: 0;
}
.tmf-module-276 .editor-content ul {
  padding-left: 0;
  margin: 0;
}
.tmf-module-276 #field_1_2 {
  margin-bottom: 25px;
}
/* .tmf-module-276
  .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);
}
.tmf-module-276 .gform_legacy_markup_wrapper textarea {
  background: #fff;
  border: 1px solid #fff;
  color: var(--alt-primary-color-dark);
} */
/* .tmf-module-276 .gform_legacy_markup_wrapper input::placeholder {
  color: var(--alt-primary-color-dark);
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}
.tmf-module-276 .gform_legacy_markup_wrapper textarea::placeholder {
  color: var(--alt-primary-color-dark);
  text-align: center;
  font-weight: 500;
  font-size: 14px;
} */

@media screen and (max-width: 1395px) {
  body .tmf-module-276 {
    padding: 45px;
  }
}

@media screen and (max-width: 700px) {
  body .tmf-module-276 {
    min-width: 100%;
  }
}

@media screen and (max-width: 450px) {
  body .tmf-module-276 {
    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: #333333;
  font-size: 16px;
  font-weight: 400;
}
input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: #333333;
  font-size: 16px;
  font-weight: 400;
}
input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #333333;
  font-size: 16px;
  font-weight: 400;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select {
  background: #ffffff;
  border: 0;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  color: #333333;
  font-size: 15px !important;
  margin-top: 0 !important;
  margin-bottom: 5px !important;
  max-width: 100%;
  padding: 10px 10px !important;
  line-height: normal !important;
}
textarea {
  height: 120px !important;
}
select {
  -webkit-appearance: none; /* remove the strong OSX influence from Webkit */
}
input[type="text"]:focus,
textarea:focus {
  border: 0;
}
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: 16px;
  padding: 5px 15px;
  display: inline-block;
  background: var(--accent-color);
  box-sizing: border-box;
  cursor: pointer;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none !important;
  color: #fff;
  font-family: var(--body-font);
  font-weight: 700;
  line-height: normal;
  position: relative;
  transition: all 0.15s ease-in;
}
.tmf-button:hover,
input[type="submit"]:hover {
  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;
  color: #fff;
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-sizing: border-box;
  line-height: 31px;
  height: auto;
}
.page-navigation .tmf-button:hover,
.page-navigation .page-numbers:hover,
.page-navigation .tmf-button:active,
.page-navigation .page-numbers:active {
  background: var(--accent-color);
  color: #fff;
}
.tmf-button.large {
  font-size: 1.1em;
  padding: 7px 25px;
}
.tmf-button.medium {
  font-size: 0.95em;
  padding: 7px 25px;
}
.tmf-button.small {
  font-size: 0.85em;
  padding: 3px 15px;
}
.tmf-button.tiny {
  font-size: 0.75em;
  padding: 2px 7px;
}
.page-numbers.current {
  background: var(--accent-color);
  color: #fff;
}

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

/* ======================================== *
        Miscellaneous
 * ======================================== */
/* button Animation */
.tmf-button {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease;
}
.tmf-button::before {
  content: "";
  position: absolute;
  top: -12px;
  right: -12px;
  bottom: -12px;
  left: -12px;
  opacity: 0;
  border: 4px solid var(--accent-color);
  pointer-events: none;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: top, right, bottom, left;
  transition-property: top, right, bottom, left;
}
.tmf-button:hover::before,
.tmf-button:focus::before,
.tmf-button:active::before {
  top: -7px;
  right: -7px;
  bottom: -7px;
  left: -7px;
  opacity: 1;
}

/* ======================================== *
        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_heading {
  display: none;
}
.gform_wrapper #field_3_1 {
  margin-bottom: 0 !important;
}
.gform_wrapper #field_3_6 {
  margin-bottom: 0 !important;
}
.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: transparent;
  border-bottom: 2px solid #fff;
  color: #fff;
}
.gform_legacy_markup_wrapper input::placeholder {
  color: #fff;
  text-align: center;
  border-image-width: 0;
}
.gform_legacy_markup_wrapper textarea {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.gform_legacy_markup_wrapper textarea::placeholder {
  color: #fff;
  text-align: center;
}
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;
  text-align: center;
}
.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;
}
