/* ============================================================================ *
        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: #061355;
  /* SECONDARY COLORS */
  --secondary: #aaaaaa;
  --secondary-light: #d9d9d9;
  /* ACCENT COLORS */
  --accent: #00168a;
  /* FONTS */
  --heading-font: 'Gloock', serif;
  --body-font: 'Inter', sans-serif;
  --font-awesome: 'Font Awesome 5 Free';
  --font-brands: 'Font Awesome 5 Brands';
  /* HOME HEADINGS */
  /* font: font-style font-varient font-weight font-size/line-height font-family */
  /* font: italic uppercase 600 64px/1.3em var(--heading-font) */
  --home-h1: 400 60px/1.3em var(--heading-font);
  --home-h2: 400 36px/1.3em var(--heading-font);
  --home-h3: 400 32px/1.3em var(--heading-font);
  --home-h4: 400 24px/1.3em var(--body-font);
  /* INTERIOR HEADINGS */
  --h1: 400 60px/1.3em var(--heading-font);
  --h2: 400 36px/1.3em var(--heading-font);
  --h3: 400 32px/1.3em var(--heading-font);
  --h4: 400 24px/1.3em var(--body-font);
  /* HEADER */
  --header-bg-color: var(--primary);
  --sticky-header-bg-color: var(--primary);
  --header-font-size: 16px;
  --header-font-weight: 400;
  --header-link-color: #fff;
  /* LOGOS */
  --logo-width: 141px;
  --logo-height: 93px;
  --sticky-logo-width: 141px;
  --sticky-logo-height: 93px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* #footer .social-icons .fa-icon::after {
content:'Visit Our YouTube';
  font-size:16px;
  margin-left:40px;
  color:#fff;
  min-width:255px;
}

#footer .social-icons .fa-icon {
    background: transparent !important;
    color: #ffffff !important;
    font-size: 22px !important;
    width: 64px !important;
    height: 64px !important;
    margin-left: 115px;
    color:#fff;
}

.social-icons .fa-icon::after {
content:'YouTube';
  font-size:16px;
  margin-left:50px;
  color:#000;
}

.social-icons .fa-icon::after {
content:'YouTube';
  font-size:16px;
  margin-left:50px;
  color:#000;
} */


body {
  color: #000;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  background: var(--secondary-light);
}
a {
  color: var(--accent);
}
a:hover {
  color: var(--accent);
}
.social-icons {
  
  font-size: 26px !important;
    margin-top: 15px;
}
.social-icons a{
color:#ffffff !important;

color:#ffffff !important;
    width: 36px;
    height: 36px;
    border-radius: 50%;
        background: #fff;
    color: #091252!important;
margin:5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}
/* ======================================== *
        #region Typography
 * ======================================== */
/* calc px size by 16 and multiply by 1 rem to get rem value  */
/* -------------------------------- *
      Heading 1
 * -------------------------------- */
.home h1 {
  font: var(--home-h1);
  color: var(--primary);
}
h1 {
  font: var(--h1);
  color: var(--primary);
}

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

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

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

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

/* #endregion Typography */

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

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

/* #endregion Breadcrumbs */

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

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

/* ======================================== *
        #region Header Sections
 * ======================================== */
/* ------------------------------- *
      #region Sticky Header
 * ------------------------------- */
body #header-wrapper.sticky {
  transition: all 0.3s ease-in;
  position: fixed !important;
  width: 100%;
  z-index: 3;
  background: var(--sticky-header-bg-color);
  border-bottom: none;
  min-height: auto;
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
  padding: 20px 0;
}

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

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

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

/* Cell 2 */
#header-wrapper.sticky #header-cell-2 {
  width: 100%;
  display: block;
}
#header-wrapper.sticky #header-cell-2 .inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 25px 0 0;
  display: flex;
  align-items: end;
  justify-content: space-around;
  flex-direction: column;
  height: var(--sticky-logo-height);
}
#header-wrapper.sticky .desktop-view {
  display: none;
}
#header-wrapper.sticky #header-cell-2 .inner .sticky-view {
  display: block;
  min-width: fit-content;
}

/* Sticky Menu */
#header-wrapper.sticky #primary-nav-wrapper {
  margin-top: 0;
}
#header-wrapper.sticky #header-cell-2 #primary-nav-container {
  max-width: 100%;
}
#header-wrapper.sticky #primary-nav .menu {
  justify-content: space-between;
}
#header-wrapper.sticky #primary-nav .menu > .menu-item > a {
  color: var(--header-link-color);
  font-family: var(--body-font);
  font-size: var(--header-font-size);
  font-weight: var(--header-font-weight);
  line-height: normal;
  text-decoration: none;
  transition: color 0.15s ease;
  padding: 5px 0;
  position: relative;
}

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

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

/* Sticky Sub-menu */
#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);
  background: var(--primary);
}
#header-wrapper.sticky #primary-nav .menu .sub-menu .sub-menu {
  left: 100%;
}
#header-wrapper.sticky #primary-nav .menu > li.left-edge > div > ul {
  right: 0;
  left: inherit;
}
#header-wrapper.sticky #primary-nav .menu .sub-menu .menu-item > a {
  font-size: 16px;
  padding: 10px 15px;
  color: #fff;
  font-weight: 500;
}
#header-wrapper.sticky #primary-nav .menu .sub-menu .menu-item:hover > a {
  background-color: var(--accent);
  color: #fff;
}

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

@media screen and (max-width: 950px) {
  #header-wrapper {
    display: none;
  }
}
/* #endregion Sticky Header */

/* ------------------------------- *
    #region Header Section
* ------------------------------- */
#header-wrapper {
  background: var(--header-bg-color);
  padding: 30px 0;
  z-index: 3;
}
.home #header-wrapper {
  background: transparent;
  position: absolute;
  width: 100%;
}

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

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

/* ------ cell 2 ------ */
#header-cell-2 .inner {
  padding-left: 0;
  margin-top: 10px;
}
#header-cell-2 .desktop-view {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}
#header .sticky-view {
  display: none;
}
#header a {
  color: var(--header-link-color);
  text-decoration: none;
  font-size: var(--header-font-size);
  font-weight: 700;
  transition: 0.2s ease-in;
}
#header .tmf-field.location.phone-1 a::before {
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  content: '';
  background: url('../images/kingreelaw_icon_sprite_2x.png') no-repeat;
  background-size: 300px;
  background-position: -28px 0;
  width: 18px;
  height: 18px;
}
#header .clients:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  background: url('../images/kingreelaw_icon_sprite_2x.png') no-repeat;
  background-size: 300px;
  background-position: 0 0;
  width: 18px;
  height: 18px;
}
#header .tmf-field.location.email::before {
  content: '\f0e0';
}
#header .sticky-view a,
#header .mobile-view a,
#header .desktop-view a {
  font-weight: 700;
}

@media screen and (max-width: 1200px) {
  .home #header-wrapper {
    padding: 20px 0;
  }
  #header-cell-1 {
    margin-bottom: 0;
  }
  #header-cell-2 {
    padding-top: 10px;
  }
  #header-cell-2 .inner {
    padding: 0;
    display: block;
  }
  .header-top-row {
    display: table;
    width: 100%;
  }
  #header .main-logo {
    display: table-cell;
    vertical-align: top;
  }
  #header .main-logo {
    width: calc(var(--logo-width) + 50px);
  }
  #header-cell-2 .desktop-view {
    display: none;
  }
  #header-cell-1 .mobile-view {
    display: flex;
    height: var(--logo-height);
    align-items: center;
  }
  #header-cell-1 .mobile-view .tmf-module-content {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
  }
}

@media screen and (max-width: 950px) {
  .home #header-wrapper {
    background: var(--header-bg-color);
    position: static;
  }
  #header-cell-1 .inner {
    padding-right: 25px;
  }
  #header .main-logo {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 0;
  }
  #header-cell-2 {
    position: unset;
  }
  #header-container {
    max-width: 100%;
  }
  #header-cell-1 .mobile-view {
    display: none;
  }
  #header-cell-2 .inner {
    margin-top: 0;
  }
  #header-cell-1 {
    margin-bottom: 0;
  }
}

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

/* ======================================== *
    #region Primary Navigation
* ======================================== */
#primary-nav-container {
  max-width: 100%;
  margin: 0 auto;
}
#primary-nav .menu {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}
#primary-nav .menu > .menu-item > a {
  color: var(--header-link-color);
  font-family: var(--body-font);
  font-size: var(--header-font-size);
  font-weight: var(--header-font-weight);
  line-height: normal;
  padding: 5px 0;
  text-decoration: none;
  position: relative;
  height: auto;
  transition: 0.2s ease;
}

/* ------ Menu Item Hover animation ------ */
#primary-nav .menu > .menu-item > a:hover {
  color: #fff;
}
#primary-nav .menu > .menu-item > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  opacity: 0;
  background-color: #fff;
  transition: opacity 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 {
  opacity: 1;
}

/* ------ Home Icon ------ */
#primary-nav .menu > .menu-item.home-icon a {
  font-size: 0 !important;
  width: 25px;
}
#primary-nav .menu > .menu-item.home-icon a::before {
  content: '\f015';
  color: #fff;
  font-size: 20px;
  font-family: var(--font-awesome);
  font-weight: 700;
  display: inline-block;
  position: static;
  background: none;
  height: 0;
  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;
  max-width: 250px;
  background: var(--primary);
}
#primary-nav .menu > li.left-edge > div > ul {
  left: inherit;
  right: 0;
}
#primary-nav .sub-menu-columns ul.sub-menu li {
  display: inline-block;
}
#primary-nav .menu .sub-menu .menu-item > a {
  font-size: 16px;
  padding: 10px 15px;
  color: #fff;
  font-weight: 500;
}
#primary-nav .menu .sub-menu .menu-item:hover > a {
  background-color: var(--accent);
  color: #fff;
  height: 100%;
}

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

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

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

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

/* #endregion Primary Navigation */

/* ======================================== *
    #region Custom Mobile Header
* ======================================== */
#custom-mobile-header-wrapper {
  display: none;
}
#mobile-nav-container {
  max-width: 100%;
}

/* --- cell 1 --- */
#custom-mobile-header-cell-1 .logo {
  /* width: 100px; */
  /* height: auto; */
}

/* --- cell 2 --- */
#custom-mobile-header-cell-2 .inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
#custom-mobile-header-cell-2 a.phone {
  background: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  text-decoration: none;
}
#custom-mobile-header-cell-2 a.phone:hover {
  text-decoration: none;
  color: var(--primary);
}
#custom-mobile-header-cell-2 .menu-bar-container .menu-label {
  display: none;
}
#custom-mobile-header-cell-2 #mobile-nav .hamburger-container {
  max-width: none;
  height: auto;
  margin: 0;
}
#custom-mobile-header-cell-2 #mobile-nav .hamburger,
#custom-mobile-header-cell-2 #mobile-nav .hamburger:before {
  position: inherit;
  width: auto;
  height: auto;
  transition-timing-function: inherit;
  transition-duration: inherit;
  transition-property: inherit;
  border-radius: 0;
  background: transparent;
  display: block;
  margin: auto;
  left: inherit;
  right: inherit;
  top: inherit;
  bottom: inherit;
}
#custom-mobile-header-cell-2 #mobile-nav .hamburger:after {
  display: none;
}
#custom-mobile-header-cell-2 #mobile-nav .hamburger::before {
  background: #fff;
  border-radius: 50%;
  box-sizing: border-box;
  content: '\f0c9';
  color: var(--accent);
  font-size: 16px;
  font-family: var(--font-awesome);
  font-weight: 700;
  display: flex;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

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

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

/* #endregion Custom Mobile Header */

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

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

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

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

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

/* #endregion Mobile Menu */

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

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

/* #endregion Mobile Nav Menu Multiple Locations*/

/* #endregion Header Sections */

/* ======================================== *
      #region Int Title Section
 * ======================================== */
#int-title-wrapper {
  background: url('../images/int-header-bg-3x.jpg') no-repeat right/cover;
}
#int-title-wrapper .title-arrow {
  display: none;
}
#int-title {
  padding: 100px 25px 50px;
}
#int-title h1#page-title {
  margin-bottom: 15px;
  color: var(--accent);
}
#int-title #breadcrumbs {
  padding: 25px 0 0 0;
  border-top: 1px solid var(--secondary);
}

@media screen and (max-width: 700px) {
  #int-title {
    padding: 50px 25px 0;
  }
  #int-title h1#page-title {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 500px) {
  #int-title {
    padding: 50px 0 0;
  }
}
/* #endregion Int Title Section */

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

/* --- cell 1 ---- */
#home-body-cell-1 .tmf-module-content {
  text-align: center;
}
#home-body-cell-1 h2 {
  color: var(--accent);
  text-align: center;
}
#home-body-cell-1 .btn-wrapper {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#home-body-cell-1 .tmf-button {
  display: block;
  max-width: 350px;
  margin: 0 auto;
}

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

@media screen and (max-width: 950px) {
  #home-body-wrapper {
    padding: 50px 0 0;
  }
  #home-contact-cell-1 .inner {
    padding: 0;
  }
}

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

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

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

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

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

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

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

/* -------------------------
* Attorney Body Section
* ------------------------- */
.single-attorney #body-wrapper {
  padding-top: 15px;
}
/* --- cell 1 ---- */
.single-attorney #body-cell-1 {
  width: 450px;
}
.single-attorney #body-cell-1 .inner {
  margin-top: 295px;
}

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

@media screen and (max-width: 1050px) {
  .single-attorney #body-row {
    display: flex;
    flex-direction: column-reverse;
  }
  .single-attorney #body-wrapper {
    padding-top: 25px;
  }
  .single-attorney #body-cell-1 {
    width: 100%;
    padding-top: 50px !important;
  }
  .single-attorney #body-cell-1 .inner {
    margin-top: 0;
  }
  .single-attorney #body-cell-2 {
    padding-top: 0;
  }
}

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

/* #endregion Body Sections */

/* ======================================== *
      #region Homepage Sections
 * ======================================== */
/* --------------------------- *
    #region Billboard
 * --------------------------- */
#billboard-wrapper {
  position: relative;
  overflow: hidden;
  background: #000;
}
#billboard-container {
  max-width: 100%;
}
#billboard .billboard-content-container {
  position: absolute;
  width: 100%;
  right: 0;
  margin: 0 auto;
  bottom: 40%;
  transform: translateY(50%);
  padding: 0;
}
#billboard .billboard-content {
  position: relative;
  padding: 25px;
  max-width: 90%;
  margin: 0 auto;
}
#billboard h1 {
  margin: 0 0 15px;
  color: #fff;
}
#billboard p {
  color: #fff;
  max-width: 720px;
}
#billboard .tmf-button {
  margin-top: 15px;
  max-width: fit-content;
}

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

@media screen and (max-width: 950px) {
  #billboard .billboard-content-container {
    padding: 25px;
    width: 100%;
    max-width: 100%;
    bottom: 50%;
  }
  #billboard .billboard-content {
    background: transparent;
    padding: 0;
    max-width: 90%;
    margin: 0 auto;
  }
  #billboard h1 {
    margin-left: 0;
    color: #fff;
  }
  #billboard p {
    display: none;
  }
}

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

@media screen and (max-width: 500px) {
  #billboard .billboard-content {
    max-width: 100%;
  }
  #billboard .billboard-content .tmf-module-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
  }
}

/*---------------------------
*   Billboard Slides
*---------------------------*/
#billboard .slider-enabled .slide {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
#billboard .slider-enabled .slide.active {
  opacity: 1;
}
#billboard .billboard-slides {
  position: relative;
  /* height: 700px; */
}
#billboard .slide {
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  width: 100%;
  height: 100%;
}
#billboard .slide img {
  display: block;
  width: 100%;
  /* height: 100%; */
  height: auto;
  object-fit: cover;
  object-position: bottom;
  max-height: 1050px;
  min-height: 880px;
}
#billboard .mobile-view {
  position: relative;
  display: none;
}

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

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

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

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

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

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

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

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

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

/* #endregion Billboard */

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

/* #endregion Home Practice Areas Section */

/* -------------------------
* #region Home Contact Section
* ------------------------- */
#home-contact-wrapper {
  padding: 100px 0;
  background: url('../images/home-contact-bg-3x.png') no-repeat center/cover;
}
#home-contact-container {
  max-width: calc(90% - 50px);
}
#home-contact .desktop-form h3 {
  color: var(--accent);
}

/* --- mobile --- */
#home-contact .mobile-form {
  display: none;
}

/* --- desktop --- */
#home-contact .desktop-form {
  background: #fff;
  padding: 80px 50px;
  outline: 3px solid var(--secondary);
  outline-offset: 25px;
}
#home-contact .desktop-form .gform_legacy_markup_wrapper .left_half ul.gform_fields.description_below {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 0 10px;
}
#home-contact .desktop-form .tmf-button {
  color: #061355;
  border-color: var(--accent);
}
#home-contact .desktop-form .tmf-button:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

@media screen and (min-width: 1750px) {
  #home-contact-container {
    max-width: calc(1600px - 50px);
  }
}

@media screen and (max-width: 950px) {
  #home-contact-wrapper {
    background: var(--secondary-light);
    padding: 50px 0;
  }
  #home-contact .desktop-form {
    display: none;
  }
  #home-contact .mobile-form {
    display: block;
  }
  #home-contact .mobile-form .bottom {
    padding: 0;
  }
}

@media screen and (max-width: 500px) {
  #home-contact-wrapper {
    padding: 50px 0 0;
  }
  #home-contact-container {
    max-width: 100%;
  }
}

/* #endregion Home Contact Section */

/* -------------------------
* #region Home Results Section
* ------------------------- */
#home-results-wrapper {
  background: url('../images/result_bg.jpg') no-repeat center/cover;
}

/* --- cell 1 --- */
#home-results-cell-1 {
  vertical-align: middle;
  width: 933px;
}
#home-results-cell-1 .tmf-module-area {
  background: #fff;
  padding: 50px 50px;
  margin-top: 80px;
  margin-bottom: 80px;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 3px 20px;
}
#home-results-cell-1 h2 {
  margin-bottom: 20px;
  color: var(--accent);
}

/* --- cell 2 --- */
#home-results-cell-2 {
  width: auto;
}
#home-results-cell-2 img {
  display: none;
}

@media screen and (max-width: 1050px) {
  #home-results-wrapper {
    background: var(--primary);
  }
  #home-results-container {
    max-width: 100%;
  }
  #home-results-cell-1 {
    width: 100%;
  }
  #home-results-cell-1 .inner {
    padding: 0;
  }
  #home-results-cell-1 .tmf-module-area {
    margin: 0;
    padding: 50px 25px;
    box-shadow: none;
  }
  #home-results-cell-1 .tmf-module-area .tmf-module {
    max-width: 90%;
    margin: 0 auto;
  }
  #home-results-cell-2 {
    padding-top: 0;
  }
  #home-results-cell-2 .inner {
    padding: 0;
  }
  #home-results-cell-2 img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
  }
}

@media screen and (max-width: 950px) {
  #home-results-cell-2 img {
    max-height: 450px;
  }
}

@media screen and (max-width: 500px) {
  #home-results-cell-1 .tmf-module-area .tmf-module {
    max-width: 100%;
  }
}

/* #endregion Home Results Section */

/* -------------------------
* #region Home Associations Section
* ------------------------- */
#associations-wrapper {
  background: var(--secondary-light);
  padding: 100px 0;
}

/* --- cell 1 --- */
#associations-cell-1 h2 {
  color: var(--accent);
}
#associations-cell-1 .tmf-button {
  margin-top: 20px;
}

/* --- cell 2 --- */
#associations-cell-2 .slick-slider img {
  height: auto;
}

@media screen and (max-width: 950px) {
  #associations-wrapper {
    padding: 50px 0;
  }
  #associations-cell-2 {
    padding-top: 50px;
    display: none;
  }
}

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

/* #endregion Home Associations Section */

/* -------------------------
* #region Home Testimonials Section
* ------------------------- */
#testimonials-wrapper {
  background: var(--secondary-light);
  padding-bottom: 50px;
}

@media screen and (max-width: 950px) {
  #testimonials-wrapper {
    padding-bottom: 0;
  }
}

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

/* #endregion Home Testimonials Section */

/* -------------------------
* #region Home Attorney Section
* ------------------------- */
#home-attorney-wrapper {
  /* padding: 50px 0 0; */
  overflow: hidden;
  background: url('../images/home-meet-attorneys-3x.jpg') no-repeat center/cover;
}
#home-attorney-wrapper::before {
  content: '';
  background: #43434b;
  display: block;
  height: 100%;
  /* width: 31%; */
  width: 425px;
  position: absolute;
  top: 0;
  left: 0;
}
#home-attorney-container {
  position: static;
}
#home-attorney-row {
  position: static;
  min-height: 587px;
}

/* --- cell 1 --- */
#home-attorney-cell-1 {
  /* background: #43434b; */
  vertical-align: bottom;
  width: 795px;
}
#home-attorney-cell-1.inner {
  position: static;
}
#home-attorney-cell-1 img {
  display: block;
  /* margin: 0 0 0 auto; */
  position: absolute;
  bottom: 0;
  left: -108px;
  max-width: 899px;
  /* width: 100%;
  height: auto; */
}

/* --- cell 2 --- */
#home-attorney-cell-2 {
  /* background: url('../images/home-meet-attorneys-3x.jpg') no-repeat center/cover; */
  padding: 50px 0;
  vertical-align: middle;
  width: auto;
}
#home-attorney-cell-2 .inner {
  /* max-width: 90%; */
  padding: 0 25px;
  position: static;
}
#home-attorney-cell-2 h2 {
  color: #fff;
  margin-bottom: 15px;
}
#home-attorney-cell-2 p {
  color: #fff;
}
#home-attorney-cell-2 .btn-wrapper {
  margin-top: 25px;
}
#home-attorney-cell-2 .tmf-button:first-of-type {
  margin-right: 20px;
}

@media screen and (min-width: 1750px) {
  /* #home-attorney-cell-2 .inner {
    max-width: 790px;
  } */
  #home-attorney-cell-1 img {
    position: static;
  }
  #home-attorney-wrapper::before {
    width: calc(50% - 328px);
  }
}

@media screen and (max-width: 1400px) {
  #home-attorney-cell-1 {
    width: 645px;
  }
  #home-attorney-cell-1 img {
    max-width: 750px;
    height: auto;
  }
  #home-attorney-wrapper::before {
    width: 335px;
  }
}

@media screen and (max-width: 1250px) {
  #home-attorney-wrapper {
    background: none;
  }
  #home-attorney-wrapper::before {
    display: none;
  }
  #home-attorney-container {
    max-width: 100%;
  }
  #home-attorney-row {
    min-height: unset;
  }
  #home-attorney-cell-1 {
    width: 100%;
    padding-top: 50px !important;
    background: #43434b;
  }
  #home-attorney-cell-1 .inner,
  #home-attorney-cell-2 .inner {
    max-width: 90% !important;
    margin: 0 auto;
  }
  #home-attorney-cell-1 img {
    position: static;
    margin: 0 auto;
    width: 100%;
    height: auto;
    max-width: 899px;
  }
  #home-attorney-cell-2 {
    background: url('../images/home-meet-attorneys-3x.jpg') no-repeat center/cover;
  }
  #home-attorney-cell-2 .tmf-module-content {
    text-align: center;
  }
}

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

/* #endregion Home Attorney Section */

/* -------------------------
* #region Why Us Section
* ------------------------- */
#home-why-us-wrapper {
  padding: 100px 0;
}
#home-why-us-container {
  max-width: 80%;
}

/* === top row === */
#home-why-us-top-row {
  padding-bottom: 50px;
}
#home-why-us-top-row .sub-title {
  color: var(--accent);
  font-size: 24px;
  font-weight: 400;
}
#home-why-us-top-row h3 {
  color: var(--accent);
  font-size: 36px;
  font-weight: 400;
  margin: 10px 0 25px;
}

/* === bottom row === */

/* --- cell 1 --- */
#home-why-us-cell-1 ul.why-us {
  padding-left: 60px;
  margin: 0 0 50px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#home-why-us-cell-1 ul.why-us li {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
}
#home-why-us-cell-1 ul.why-us li::before {
  content: '';
  /* background: url('../images/why-us-icon_3x.png') no-repeat; */
  background-size: 60px;
  width: 60px;
  height: 60px;
  margin-left: -60px;
  flex-shrink: 0;
}
#home-why-us-cell-1 ul.why-us li:nth-of-type(1):before {
  background: url('../images/why-us-icon-1.png') no-repeat;
  background-size: 60px;
}
#home-why-us-cell-1 ul.why-us li:nth-of-type(2):before {
  background: url('../images/why-us-icon-2.png') no-repeat;
  background-size: 60px;
}
#home-why-us-cell-1 ul.why-us li:nth-of-type(3):before {
  background: url('../images/why-us-icon-3.png') no-repeat;
  background-size: 60px;
}
#home-why-us-cell-1 ul.why-us li:nth-of-type(4):before {
  background: url('../images/why-us-icon-4.png') no-repeat;
  background-size: 60px;
}

/* --- cell 2 --- */
#home-why-us-cell-2 img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 521px;
}

@media screen and (min-width: 1750px) {
  #home-why-us-container {
    max-width: 1280px;
  }
}

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

@media screen and (max-width: 650px) {
  #home-why-us-cell-2 img {
    width: 100%;
    height: auto;
  }
}

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

/* #endregion Why Us Section */

/* #endregion Homepage Sections*/

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

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

/* ------------------------------ *
    #region Int billboard 
 * ------------------------------- */
#int-billboard-wrapper {
  overflow: hidden;
}
#int-billboard-container {
  max-width: 100%;
}
#int-billboard .int-billboard-img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 457px;
  object-fit: cover;
}
#int-billboard-cell-1 {
  vertical-align: middle;
}
#int-billboard-cell-1 .inner {
  padding: 0;
}

/* --- cell 1 --- */
#int-billboard .int-billboard-content {
  position: absolute;
  max-width: 90%;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 25px;
  padding: 0;
}
#int-billboard .int-billboard-title {
  position: relative;
  background: none;
  padding: 0;
  width: calc(100% - 50px);
  margin: 0 auto;
}
#int-billboard h1#page-title {
  display: inline-block;
  margin-bottom: 0;
  color: var(--accent);
  max-width: 10ch;
}
#int-billboard #breadcrumbs {
  padding: 25px 0 0 0;
  border-top: 1px solid var(--secondary);
}

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

@media screen and (max-width: 1050px) {
  #int-billboard .int-billboard-content {
    padding: 35px 25px;
    max-width: 100%;
    bottom: 0;
  }
  #int-billboard .int-billboard-title {
    width: 90%;
    margin: 0 auto;
  }
  #int-billboard-cell-1 {
    background: transparent;
    width: 100%;
  }
  #int-billboard h1#page-title {
    border: none;
    display: block;
    padding-bottom: 0;
    text-align: left;
  }
  #int-billboard .mobile-view {
    display: block;
  }
}

@media screen and (max-width: 800px) {
  #int-billboard .int-billboard-content {
    padding: 30px 25px;
  }
}

@media screen and (max-width: 700px) {
  #int-billboard .int-billboard-content {
    padding: 45px 25px;
  }
}

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

/* -------------------------------------- *
      #region Single Attorney Page CSS
 * -------------------------------------- */
#attorney-bio-wrapper {
  background: url('../images/bio-header-bg-3x.jpg') no-repeat center/cover;
  height: 368px;
}
#attorney-bio-cell-1,
#attorney-bio-cell-2 {
  vertical-align: top;
}

/* ------ cell 1 ------ */
#attorney-bio-cell-1 {
  width: 450px;
}
#attorney-bio img {
  display: block;
  padding: 25px;
  border: 3px solid var(--accent);
  margin: 100px auto 0;
  width: 100%;
  height: auto;
}

/* ------ cell 2 ------ */
#attorney-bio-cell-2 {
  width: auto;
}
#attorney-bio-cell-2 .inner {
  min-height: 368px;
  display: flex;
  align-items: end;
  padding-bottom: 45px;
}
.attorney-bio-info .title-section {
  margin-bottom: 20px;
}
.attorney-bio-info h1#page-title {
  margin-bottom: 5px;
  min-width: fit-content;
  color: var(--accent);
}
.attorney-bio-info .attorney-titles a {
  color: var(--accent);
  font-size: 36px;
  font-weight: 400;
  font-family: var(--heading-font);
}
.attorney-bio-info .contact-information a,
.attorney-bio-info .speaking a {
  color: var(--primary);
  font-weight: 400;
}
.attorney-bio-info .phone,
.attorney-bio-info .vcard,
.attorney-bio-info .resume,
.attorney-bio-info .fax,
.attorney-bio-info .email {
  display: inline-block;
  padding-top: 5px;
  line-height: normal;
  margin-right: 15px;
  padding-right: 15px;
  vertical-align: middle;
}
.attorney-bio-info .label {
  font-size: 0;
}
.attorney-bio-info .vcard .value {
  background: transparent;
  height: auto;
  width: auto;
  margin-right: 0;
}
.attorney-bio-info .resume .label {
  font-size: 18px;
  font-weight: 400;
  color: var(--primary);
  margin: 0;
  vertical-align: middle;
}
.attorney-bio-info .resume .value {
  background: transparent;
  background-position: unset;
  width: 0;
  height: 0;
  margin-right: 5px;
  display: inline-block;
}
.attorney-bio-info .resume::before,
.attorney-bio-info .vcard::before,
.attorney-bio-info .resume::before,
.attorney-bio-info .phone-1::before,
.attorney-bio-info .phone-2::before,
.attorney-bio-info .fax::before,
.attorney-bio-info .email::before,
.attorney-bio-info .speaking::before {
  display: inline-block;
  vertical-align: middle;
  content: '';
  background: url('../images/kingreelaw_icon_sprite_2x.png') no-repeat;
  background-size: 300px;
  width: 18px;
  height: 18px;
}
.attorney-bio-info .phone-1::before,
.attorney-bio-info .phone-2::before {
  margin-right: 5px;
  transform: rotate(10deg);
  content: '';
  background-position: -168px 0;
}
.attorney-bio-info .email::before {
  margin-right: 5px;
  content: '';
  background-position: -140px 0;
}
.attorney-bio-info .vcard::before {
  content: '';
  background-position: -196px 0;
}
.attorney-bio-info .fax::before {
  content: '\f1ac';
  margin-right: 5px;
  color: var(--accent);
  font-size: 18px;
  font-family: var(--font-awesome);
  font-weight: 700;
}
.attorney-bio-info .resume::before {
  content: '\f1c1';
  font-size: 22px;
  margin-right: 5px;
  color: var(--accent);
  font-size: 18px;
  font-family: var(--font-awesome);
  font-weight: 700;
}

/* ------ Attorney Easy Tabs ------ */
.etabs {
  display: flex;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
}
.tab {
  border: 1px solid var(--accent);
  background: transparent;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  margin: 0;
  transition: all 0.2s ease-in;
  position: relative;
  flex-grow: 1;
}
.tab a {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  font-family: var(--body-font);
  display: block;
  padding: 13px 10px;
  outline: none;
  text-decoration: none !important;
  transition: all 0.2s ease-in;
}
.tab:hover,
.tab.active {
  background: var(--accent);
  padding-top: 0;
  position: relative;
  top: 0;
}
.tab a:hover,
.tab a.active {
  color: #fff;
}
.panel-container .tabcontent {
  padding: 30px 0 0;
}
.panel-container h2.print {
  display: none;
}

.panel-container p {
  line-height: 26px;
  margin-bottom: 15px;
}
.panel-container p:last-child {
  margin-bottom: 0;
}
.panel-container .editor-content ol,
.panel-container .editor-content ul {
  padding-left: 40px;
  margin: 0;
}
.panel-container .editor-content ol ol,
.panel-container .editor-content ul ul {
  padding-left: 40px;
  margin: 10px 0;
}

@media screen and (max-width: 760px) {
  .etabs {
    flex-direction: column;
  }
  .tab {
    display: block;
  }
}
/* ------ End Easy Tabs ------ */

@media screen and (max-width: 1050px) {
  .attorney-contact-info {
    flex-direction: column;
    align-items: start;
  }
  .attorney-bio-info .contact-information {
    display: flex;
    flex-direction: column;
  }
  #attorney-bio-wrapper {
    height: auto;
  }
  .attorney-bio-info .title-section {
    flex-direction: column;
    gap: 0;
    margin-bottom: 15px;
    flex-direction: column;
  }
  .attorney-bio-info h1#page-title {
    border: 0;
    padding: 0;
  }
  #attorney-bio img {
    margin: 30px auto;
  }
  #attorney-bio-cell-2 .inner {
    min-height: 608px;
    align-items: center;
  }
}

@media screen and (max-width: 950px) {
  #attorney-bio-row {
    display: flex;
    flex-direction: column;
  }
  #attorney-bio-cell-1 {
    width: auto;
  }
  #attorney-bio img {
    margin: 25px auto 0;
    max-width: 400px;
    height: auto;
  }
  #attorney-bio-cell-2 {
    padding-top: 0;
  }
  #attorney-bio-cell-2 .inner {
    min-height: auto;
    padding-bottom: 0;
  }
  .attorney-bio-info .attorney-page-title .title-section {
    justify-content: center;
    text-align: center;
    align-items: center;
  }
  .attorney-bio-info {
    width: 100%;
    display: block;
    padding: 25px 0 35px;
  }
  .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;
  }
}

@media screen and (min-width: 671px) and (max-width: 950px) {
  .attorney-bio-info .contact-information {
    align-items: center;
    gap: 30px;
    flex-direction: row;
    justify-content: center;
  }
}

@media screen and (max-width: 670px) {
  .attorney-bio-info .contact-information {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

@media screen and (max-width: 550px) {
  #attorney-bio img {
    max-width: 100%;
  }
}

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

/* #endregion Single Attorney Page CSS */

/* #endregion Single Pages */

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

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

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

/* #endregion Testimonial Archive */

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

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

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

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

@media screen and (max-width: 1050px) {
  .post-type-archive-location .tmf-post #location-row {
    display: table;
  }
  .post-type-archive-location .tmf-post #location-cell-1 {
    display: table-cell;
    width: 50%;
  }
  .post-type-archive-location #location-cell-2 {
    display: table-cell;
    width: 50%;
    margin-top: 0;
    padding-top: 0;
  }
  .post-type-archive-location #body #location-cell-2 .inner {
    padding: 0 25px;
  }
}

@media screen and (max-width: 750px) {
  .post-type-archive-location .tmf-post #location-row {
    display: block;
  }
  .post-type-archive-location #location-cell-1 {
    display: block;
    width: 100%;
  }
  .post-type-archive-location #location-cell-2 {
    display: block;
    width: 100%;
    margin-top: 35px;
  }
  .post-type-archive-location #body #location-cell-2 .inner {
    padding: 0;
  }
}

/* #endregion Location archive*/

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

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

/* #endregion Attorney archive*/

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

/* #endregion Attorney Archive: Category Attorney*/

/* #endregion All Archives*/

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

/* --- Cell 1 --- */
#footer-cell-1 h3 {
  color: #fff;
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3em;
  margin: 0 0 20px;
}
#footer-cell-1 .location.phone-1 {
  display: block;
  margin-top: 50px;
}
#footer-cell-1 .location.phone-1 a {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  text-decoration: none;
}
#footer-cell-1 .location.phone-1 a:hover {
  text-decoration: underline;
}
#footer-cell-1 .location.phone-1 a::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
  background: url('../images/kingreelaw_icon_sprite_2x.png') no-repeat;
  background-size: 400px;
  background-position: -37px 0;
  width: 25px;
  height: 25px;
}
#footer-cell-1 .tmf-button {
  margin-top: 50px;
}

/* --- Cell 2 --- */
#footer-cell-2 .tmf-post-list {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
#footer-cell-2 .tmf-post {
  border: 0;
  padding: 0;
  margin: 0;
}
#footer-cell-2 .location-title {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  font-family: var(--body-font);
  margin-bottom: 15px;
}
#footer-cell-2 .address {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
#footer-cell-2 .tmf-post.small.location .streetAddress {
  line-height: 22px;
  align-self: center;
}
#footer-cell-2 .tmf-post.small.location .streetAddress::before {
  display: none;
}
#footer-cell-2 .directions {
  margin: 25px 0 0;
}
#footer-cell-2 .directions a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
#footer-cell-2 .directions a:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
  background: url('../images/kingreelaw_icon_sprite_2x.png') no-repeat;
  background-size: 300px;
  background-position: -111px 0;
  width: 15px;
  height: 15px;
}
#footer-cell-2 .map {
  margin-top: 25px;
}
#footer-cell-2 .map img {
  display: block;
  width: 100%;
  height: auto;
}

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

@media screen and (max-width: 800px) {
  #footer-cell-2 .tmf-post-list {
    flex-direction: column;
  }
}

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

/* #endregion Footer Section */

/* ======================================== *
      #region Copyright Section
 * ======================================== */
#copyright-wrapper {
  background: var(--primary);
  overflow: hidden;
}
#copyright {
  padding: 25px 0;
}
#copyright p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}
#copyright p a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
#copyright a:hover {
  text-decoration: underline;
}
#copyright .divider {
  margin: 0 10px !important;
  color: #6d7cd0;
}

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

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

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

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

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

/* #endregion Copyright Section */

/* ======================================== *
      #region Editor Blocks
 * ======================================== */
/* -------------------------------------- *
      #region Call to Action
 * -------------------------------------- */
body #call-to-action {
  position: relative;
  overflow: hidden;
  background: transparent !important;
  margin: 50px 0;
  padding: 0;
}
body #call-to-action .row {
  width: 90%;
  margin-right: 0;
  margin-left: auto;
  position: static;
}
body #call-to-action .col {
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  overflow: visible;
}
body #call-to-action .col.left {
  background: url('../images/prac-area-cta-bg-3x.jpg') no-repeat center/cover;
  height: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 35px !important;
  position: absolute;
  width: 290px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
}
body #call-to-action .col.right {
  background: transparent;
  padding: 40px 35px;
  text-align: left;
  position: relative;
  border: 3px solid #818285;
  padding-left: 240px;
}
body #call-to-action .col .content {
  max-width: 100%;
}
body #call-to-action .col h3,
body #call-to-action .col h4 {
  color: #fff;
  margin: 0;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2em;
  font-family: var(--body-font);
  text-align: center;
}
body #call-to-action .col p {
  color: #000;
  font-weight: 700;
  font-size: 16px;
}
body #call-to-action .col p a {
  color: var(--accent) !important;
}
body #call-to-action .col .tmf-button {
  color: var(--primary) !important;
  font-weight: 700;
  margin-top: 15px;
}
body #call-to-action .col .tmf-button:hover {
  color: #fff !important;
}

@media screen and (max-width: 1530px) {
  body #call-to-action .col.left {
    width: 270px;
  }
}

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

@media screen and (max-width: 800px), screen and (max-width: 1200px) and (min-width: 1050px) {
  body #call-to-action .row {
    display: block;
    width: 100%;
  }
  body #call-to-action .col.left {
    position: relative;
    transform: unset;
    height: auto;
    width: 100%;
    padding: 45px 25px !important;
  }
  body #call-to-action .col.right {
    padding: 35px 25px;
  }
}

/* #endregion Call to Action */

/* -------------------------------------- *
      #region Aside
 * -------------------------------------- */
aside {
  float: right;
  width: 420px;
  margin: 15px;
  padding: 0;
  background: transparent;
  color: var(--primary);
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 700;
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
}
aside::before {
  content: '';
  display: inline-block;
  width: 111px;
  height: 129px;
  background: url('../images/int-cta-3x.png') no-repeat;
  background-size: 111px;
  flex-shrink: 0;
}
.editor-content aside h3,
.editor-content aside h4,
.editor-content aside p {
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
}
@media screen and (max-width: 750px) {
  aside {
    float: none;
    width: 100%;
    margin: 25px 0px;
  }
}

/* #endregion Aside */

/* --------------------------------------*
      #region Callout
 * --------------------------------------*/
#callout {
  position: relative;
  background: transparent;
  padding: 25px 35px 25px 148px;
  margin: 35px 0;
}
#callout::before {
  content: '';
  display: inline-block;
  background: url('../images/prac-area-cta1-3x.png') no-repeat;
  background-size: 128px;
  width: 128px;
  height: 146px;
  position: absolute;
  left: 0;
  top: 0;
}
#callout h3,
#callout h4 {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 24px;
  margin: 0;
  line-height: 1.3;
  color: #000;
}
.editor-content #callout p {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  color: #000;
}
#callout a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 400;
}
#callout a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 600px) {
  #callout {
    padding: 15px 35px 15px 100px;
  }
  #callout::before {
    background-size: 80px;
    width: 80px;
    height: 91px;
  }
}

/* #endregion Callout */

/* -------------------------------------- *
      #region Callout Alt
 * -------------------------------------- */
#callout-alt {
  border: 3px solid #818285;
  padding: 35px;
  margin-bottom: 25px;
}
#callout-alt p {
  color: var(--accent);
  font-family: var(--body-font);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}
#callout-alt ul {
  padding-left: 18px;
  margin-bottom: 0;
  list-style-type: none;
}
#callout-alt ul li {
  margin-bottom: 25px;
  display: flex;
}
#callout-alt ul li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  background: url('../images/kingreelaw_icon_sprite_2x.png') no-repeat;
  background-size: 300px;
  background-position: -224px 0;
  width: 15px;
  height: 17px;
  position: relative;
  top: 6px;
  flex-shrink: 0;
}

/* #endregion  Callout Alt */

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

/* #endregion Blockquote */

/* #endregion Editor Blocks */

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

/* #region For More information Form - sidebar */
body .tmf-module-22 {
  background: url('../images/bio-contact-bg-3x.jpg') no-repeat center/cover;
  padding: 50px 35px;
  text-align: center;
  position: relative;
}
body .tmf-module-22 h3 {
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.3;
}
body .tmf-module-22 .tmf-module-content {
  max-width: 500px;
  margin: 0 auto;
}

@media screen and (max-width: 1050px) {
  body.home .tmf-module-22 {
    position: relative;
  }
}

@media screen and (max-width: 700px) {
  body .tmf-module-22 {
    min-width: 100%;
  }
}
/* #endregion For More information Form - sidebar */

/* #region Practice Areas - sidebar */
.tmf-module-222 {
  text-align: center;
}
.tmf-module-222 h3 {
  color: var(--accent);
  margin: 0;
  font-size: 36px;
  font-weight: 400;
}
.tmf-module-222 .sub-title {
  color: var(--accent);
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 400;
}
.tmf-module-222 .tmf-button {
  border-color: var(--primary);
  color: var(--primary);
}
.tmf-module-222 .tmf-button:first-of-type {
  margin-bottom: 10px;
}
/* #endregion Practice Areas - sidebar */

/* #region Testimonials - sidebar */
.tmf-module-7088 {
  margin-top: 50px;
  text-align: center;
}
.tmf-module-7088 h3 {
  color: var(--accent);
  margin: 0 0 25px;
  font-size: 36px;
  font-weight: 400;
}
.tmf-module-7088 .tmf-post.testimonial.small .excerpt {
  max-width: 100%;
  line-height: 32px;
}
.tmf-module-7088 .tmf-post.testimonial.small .testimonial-description {
  font-weight: 400;
}

/* #endregion Testimonials - sidebar */

/* #endregion Modules */

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

/* read more button */
.tmf-post.medium a.read-more-button {
  margin-top: 15px;
}
.tmf-post.medium a.read-more-button:hover {
  background: var(--accent);
}

/* all buttons */
.tmf-button,
input[type='submit'] {
  position: relative;
  display: inline-block;
  padding: 13px 30px;
  color: var(--accent);
  text-align: center;
  font-family: var(--body-font);
  font-size: 17px;
  font-weight: 500;
  line-height: normal;
  background: transparent;
  border: 1px solid var(--accent);
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.15s ease-in;
}
.tmf-button:hover,
input[type='submit']:hover {
  text-decoration: none;
  background: var(--accent);
  color: #ffffff;
}
.tmf-button:active,
input[type='submit']:active {
  text-decoration: none;
  background: var(--accent);
  color: #ffffff;
}
.tmf-button.white {
  border-color: #fff;
  color: #fff;
}
.tmf-button.white:hover {
  background: #fff;
  color: var(--accent);
}
/** form button */
.gform_wrapper .tmf-button,
.gform_wrapper input[type='submit'] {
  border-color: #fff;
  color: #fff;
}
.gform_wrapper .tmf-button:hover,
.gform_wrapper input[type='submit']:hover {
  background: #fff;
  color: var(--accent);
}
/* pagination buttons */
.page-navigation .tmf-button,
.page-navigation .page-numbers {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  line-height: 31px;
  height: auto;
  transition: all 0.15s ease-in;
}
.page-navigation .page-numbers:hover,
.page-navigation .page-numbers:active {
  background: var(--accent);
  color: #fff;
}
.page-navigation .last.tmf-button {
  vertical-align: top;
  transform: unset;
}
.page-navigation .last.tmf-button:active,
.page-navigation .last.tmf-button:hover {
  color: #fff;
  background: var(--accent);
}
.page-navigation .last.tmf-button::before,
.page-navigation .last.tmf-button::after {
  display: none;
}
.page-numbers.current {
  background: var(--accent);
  color: #fff;
}
.tmf-button.large {
  font-size: 1.1em;
  padding: 7px 25px;
}
.tmf-button.medium {
  font-size: 0.95em;
  padding: 7px 25px;
}
.tmf-button.small {
  font-size: 0.85em;
  padding: 3px 15px;
  margin-top: 15px;
}
.tmf-button.tiny {
  font-size: 0.75em;
  padding: 2px 7px;
}

/* #endregion Buttons */

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

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

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

/* ----- lightbox ----- */

.tmf-video-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tmf-video-wrapper .fa-play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 64px;
  color: white;
  transform: translate(-50%, -50%);
  opacity: 0.85;
  transition: opacity 0.2s ease-in-out;
}

.tmf-video-wrapper:hover .fa-play-circle {
  opacity: 1;
}

.tmf-video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
}

.tmf-video-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 80%;
  max-width: 720px;
  transform: translate(-50%, -50%);
  background: #000;
  z-index: 10000;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.tmf-video-modal iframe {
  display: block;
  width: 100%;
  height: 405px;
}


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

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

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

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

/* --- Add scaffolding breakpoint at 1250px --- */
@media screen and (max-width: 1250px) {
  .row.collapse-1250 {
    display: block;
  }
  .row.collapse-1250 > div {
    display: block;
    width: 100%;
    padding-top: 25px;
  }
  .row.collapse-1250 > div > .inner {
    display: block;
    width: 100%;
    min-width: 0 !important;
    max-width: none;
  }
  .row > div > .inner .row.collapse-1250 > div > .inner {
    padding: 0;
  }
  .hide-below-1250 {
    display: none !important;
  }
}

/* #endregion Miscellaneous */

/* ======================================== *
      #region Inputs & Gravity Forms
 * ======================================== */
:root {
  --input-bg: #fff;
  --input-txt: #333333;
  --input-placeholder: #333333;
  --input-border: #cccccc;
  --form-txt: #333333;
}
input[type='text']::placeholder,
input[type='tel']::placeholder,
input[type='email']::placeholder,
input[type='url']::placeholder,
input[type='number']::placeholder,
input[type='checkbox']::placeholder,
input[type='radio']::placeholder,
input[type='date']::placeholder,
input[type='time']::placeholder,
input[type='hidden']::placeholder,
input[type='password']::placeholder,
input[type='file']::placeholder,
input[type='range']::placeholder,
input[type='color']::placeholder,
input[type='search']::placeholder,
textarea::placeholder,
select::placeholder {
  color: var(--input-placeholder);
  text-align: center;
  font-size: 13px !important;
}
input[type='text'],
input[type='tel'],
input[type='email'],
input[type='url'],
input[type='number'],
input[type='checkbox'],
input[type='radio'],
input[type='date'],
input[type='time'],
input[type='hidden'],
input[type='password'],
input[type='file'],
input[type='range'],
input[type='color'],
input[type='search'],
textarea,
select {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 0px;
  color: var(--input-txt);
  font-size: 13px !important;
  margin-top: 0 !important;
  margin-bottom: 5px !important;
  max-width: 100%;
  padding: 10px 10px !important;
  line-height: normal !important;
  accent-color: var(--accent);
  border-radius: 5px;
}
textarea {
  height: 120px !important;
}
select {
  -webkit-appearance: none; /* remove the strong OSX influence from Webkit */
  -moz-appearance: none;
  appearance: none;
}
.ginput_address_country select,
select.gfield_select {
  --line: #ccc;
  --arrow: gray;
  background-image: linear-gradient(45deg, transparent 50%, var(--arrow) 50%), linear-gradient(135deg, var(--arrow) 50%, transparent 50%),
    linear-gradient(to right, var(--line), var(--line));
  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;
}
.ginput_address_country select.large {
  background-image: unset;
}
.gform_legacy_markup_wrapper label.gfield_label {
  color: #333;
  font-size: 13px !important;
  font-weight: 400 !important;
  margin-left: 11px;
}
/* Home desktop-form */
.recaptcha-inline_wrapper ul.bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 0;
}
.recaptcha-inline_wrapper input,
.recaptcha-inline_wrapper textarea {
  background: var(--secondary-light);
  border-radius: 5px;
  border: 0;
  text-align: left;
}
.recaptcha-inline_wrapper input::placeholder,
.recaptcha-inline_wrapper textarea::placeholder {
  text-align: left;
}
.gform_wrapper #gform_1 ul.bottom {
  padding-left: 0;
}
.gform_wrapper #gform_1 ul.bottom .ginput_recaptcha {
  display: block;
  max-width: fit-content;
  margin: 0 auto !important;
}
.gform-field-label,
.gfield_label {
  color: #fff;
}
.gfield_description {
  color: #fff;
}
h2.gsection_title,
h3.gsection_title {
  color: #fff;
}
/* make black icon to white for dark background */
body .ginput_container_list table.gfield_list tbody tr td.gfield_list_icons img {
  filter: invert(1);
}
input:focus,
input[type='text']:focus,
input[type='tel']:focus,
input[type='email']:focus,
textarea:focus {
  border: 1px solid #cccccc;
}
.gform_legacy_markup_wrapper textarea:focus::placeholder,
.gform_legacy_markup_wrapper input:focus::placeholder {
  color: transparent !important;
}
a:focus-visible,
input:focus-visible,
button:focus-visible,
textarea:focus-visible {
  outline: none;
}

/* Gravity Forms */
.gform_legacy_markup_wrapper {
  margin: 0 auto !important;
}
.gform_legacy_markup_wrapper .gform_footer {
  padding: 0 !important;
  margin: 0 !important;
}
.gform_wrapper #gform_1 .gform_footer {
  text-align: center;
  margin-top: 25px !important;
}
.gform_wrapper #gform_1 li {
  padding-right: 0;
}
body .gform_legacy_markup_wrapper ul li.gfield {
  margin-top: 0 !important;
  padding-right: 0 !important;
}
body .gform_wrapper.tmf-form_wrapper ul li.field_description_below div.ginput_container_checkbox {
  margin-top: 0;
  margin-bottom: 0;
}

/* Error Handling */
/* for dark buttons can replace red color with #ffd0d0 */
/* no form exists error message */
.gform_not_found {
  color: #333;
}
/* error field border color */
body .gform_legacy_markup_wrapper li.gfield_error input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
body .gform_legacy_markup_wrapper li.gfield_error textarea {
  border: 1px solid #ffd0d0;
}
/* error field make width match other fields */
body .gform_legacy_markup_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
  max-width: 100% !important;
}
body .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description {
  max-width: 100%;
  text-align: left;
  line-height: 1.3;
  padding: 10px 0 0;
}
body .gform_legacy_markup_wrapper li.gfield.gfield_error,
body .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  border: 0;
  background: none;
}
body .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container,
body .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
  margin-top: 0;
}
body .gform_legacy_markup_wrapper .validation_message {
  color: #ffd0d0;
  font-weight: 500;
  letter-spacing: normal;
  text-align: left;
}
body .gform_legacy_markup_wrapper .gform_validation_errors > h2 {
  font-size: 15px;
  font-weight: 500;
  color: #ffd0d0;
  margin: 0 0 0.9375rem 0;
}
body .gform_legacy_markup_wrapper div.validation_error {
  color: #ffd0d0;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  border: none;
  padding: 0;
  clear: both;
  width: 100%;
  text-align: left;
}
body .gform_required_legend {
  color: #fff;
}
.gform_wrapper.gravity-theme .gfield_required {
  color: #fff;
}

/* styling for white form - homepage desktop */
body .gform_legacy_markup_wrapper.recaptcha-inline_wrapper .validation_message {
  color: #790000;
}
body .gform_legacy_markup_wrapper.recaptcha-inline_wrapper .gform_validation_errors > h2 {
  color: #790000;
}
body .gform_legacy_markup_wrapper.recaptcha-inline_wrapper div.validation_error {
  color: #790000;
}
body .recaptcha-inline_wrapper .gform_required_legend {
  color: #790000;
}
.gform_wrapper.recaptcha-inline_wrapper .gfield_required {
  color: #790000;
}
.recaptcha-inline_wrapper .gform-field-label,
.recaptcha-inline_wrapper .gfield_label {
  color: #333333;
}
.recaptcha-inline_wrapper .gfield_description {
  color: #333333;
}
.recaptcha-inline_wrapperh2.gsection_title,
.recaptcha-inline_wrapperh3.gsection_title {
  color: #333333;
}
/* make black icon to white for dark background */
body .recaptcha-inline_wrapper .ginput_container_list table.gfield_list tbody tr td.gfield_list_icons img {
  filter: invert(0);
}

@media screen and (max-width: 640px) {
  .gform_legacy_markup_wrapper form {
    margin-left: 0 !important;
  }
}

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

/* #endregion Inputs & Gravity Forms */
