/** ============================================================================ *
**	Structural Styles
** ============================================================================= */
:root {
  /** PRIMARY COLORS */
  --primary: #102648;
  --primary-gradient: linear-gradient(180deg, rgba(21, 49, 94, 0.95) 0%, #102648 100%);
  --primary-gradient-reverse: linear-gradient(180deg, #102648 0%, rgba(21, 49, 94, 0.95) 100%);
  /** SECONDARY COLORS */
  --secondary: #f6f6f6;
  /** ACCENT COLORS */
  --accent: #f7941e;
  /** FONTS */
  --heading-font: 'Figtree', sans-serif;
  --body-font: var(--heading-font);
  --font-awesome: 'Font Awesome 5 Free';
  --font-brands: 'Font Awesome 5 Brands';
  /** HOME HEADINGS */
  --home-h1: 900 70px/1.1em var(--heading-font);
  --home-h2: 900 50px/1.1em var(--heading-font);
  --home-h3: 900 40px/1.1em var(--heading-font);
  --home-h4: 700 25px/1.1em var(--heading-font);
  /** INTERIOR HEADINGS */
  --h1: 900 70px/1.1em var(--heading-font);
  --h2: 900 40px/1.1em var(--heading-font);
  --h3: 900 30px/1.3em var(--heading-font);
  --h4: 700 25px/1.3em var(--heading-font);
  /** HEADER */
  --header-bg-color: url('../images/header_bg_3x.jpg') no-repeat center/cover;
  --sticky-header-bg-color: url('../images/header_bg_3x.jpg') no-repeat center/cover;
  --header-font-size: 16px;
  --header-font-weight: 700;
  --header-link-color: var(--primary);
  /** LOGOS */
  --logo-width: 340px;
  --logo-height: 87px;
  --sticky-logo-width: 340px;
  --sticky-logo-height: 87px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  color: #000;
  font-family: var(--body-font);
  font-size: 17px;
  font-weight: 400;
  overflow-x: hidden;
}
.editor-content {
  line-height: 1.7em;
}
.editor-content p {
  line-height: 1.7em;
  margin-bottom: 15px;
}
.editor-content p:last-child {
  margin-bottom: 0;
}

/** Links */
a {
  color: var(--accent);
}
a:hover {
  color: var(--accent);
}
.editor-content a {
  text-decoration: underline;
}
.editor-content a:hover {
  text-decoration: none;
}

/** Lists */
.editor-content ul {
  list-style: none;
  padding-left: 40px;
  margin: 15px 0;
}
.editor-content ul li {
  margin-bottom: 8px;
}
.editor-content ul li::before {
  content: '\2022';
  color: var(--accent);
  font-weight: 400;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.editor-content ol {
  padding-left: 40px;
  margin: 15px 0;
}

/** ======================================== *
**			#region Typography
** ======================================== */
/** -------------------------------- *
**	 Heading 1
** -------------------------------- */
.home h1 {
  font: var(--home-h1);
  color: #fff;
}
h1 {
  font: var(--h1);
  color: #fff;
  text-wrap: pretty;
}

@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(--primary);
  text-wrap: pretty;
}
h2 a {
  color: var(--primary);
}
h2 a:hover {
  text-decoration: none;
}
.editor-content h2 {
  margin: 25px 0 10px;
}
.editor-content h2:first-child {
  margin-top: 0;
}

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

/** -------------------------------- *
**       Heading 3
** -------------------------------- */
.home h3 {
  font: var(--home-h3);
  color: var(--primary);
}
h3 {
  font: var(--h3);
  color: var(--primary);
  text-wrap: pretty;
}
h3 a {
  color: var(--accent);
  text-decoration: none;
}
h3 a:hover {
  text-decoration: none;
}
.editor-content h3 {
  margin: 25px 0 10px;
}

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

/** -------------------------------- *
**        Heading 4
** -------------------------------- */
.home h4 {
  font: var(--home-h4);
  color: var(--primary);
}
h4 {
  font: var(--h4);
  color: var(--primary);
  text-wrap: pretty;
}
h4 a {
  color: var(--accent);
  text-decoration: none;
}
h4 a:hover {
  text-decoration: none;
}
.editor-content h4 {
  margin: 20px 0 10px;
}

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

/** #endregion Typography */

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

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

/* site Specific - Breadcrumbs in its own section */
#breadcrumb-wrapper {
  background: var(--secondary);
  padding: 20px 0;
}
#breadcrumb-container {
  padding: 0 25px;
}
#breadcrumbs {
  margin: 0;
}
@media screen and (max-width: 700px) {
  #breadcrumb-wrapper {
    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 Header Section
** ------------------------------- */
#header-wrapper {
  background: var(--header-bg-color);
  padding: 63px 0;
}

/** --- cells 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;
}
#header p {
  margin-bottom: 0;
}

/** --- cell 1 --- */
#header-cell-1 {
  width: calc(var(--logo-width) + 50px);
}
#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 {
  width: auto;
}
#header-cell-2 .inner {
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}
#header .sticky-view {
  display: none;
}
#header p {
  color: var(--header-link-color);
  font-size: var(--header-font-size);
  font-weight: var(--header-font-weight);
}
#header .tmf-field.location.phone-1 a {
  color: var(--header-link-color);
  text-decoration: none;
  font-size: var(--header-font-size);
  font-weight: var(--header-font-weight);
  transition: 0.2s ease-in;
}
#header .tmf-field.location.phone-1 a:hover {
  color: var(--accent);
}
#header .tmf-field.location.phone-1 a::before {
  content: '\f879';
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  transform: rotate(10deg);
  color: var(--accent);
  font-size: 16px;
  font-family: var(--font-awesome);
  font-weight: 600;
}
#header .tmf-field.location.email::before {
  content: '\f0e0';
}

@media screen and (min-width: 1650px) {
  #header-cell-2 .inner {
    gap: 45px;
  }
}

@media screen and (max-width: 1500px) {
  #header-cell-2 .inner {
    gap: 15px;
  }
}

@media screen and (max-width: 1350px) {
  #header-cell-1 {
    margin-bottom: 0;
    width: auto;
  }
  #header-cell-2 {
    padding-top: 0;
  }
  #header-cell-2 .inner {
    padding: 0;
    display: block;
  }
  .header-top-row {
    display: table;
    width: 100%;
  }
  #header .main-logo {
    display: table-cell;
    vertical-align: top;
  }
  #header-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 (min-width: 800px) and (max-width: 950px) {
  #header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 90%;
    margin: 0 auto;
  }
  #header-cell-1 {
    width: var(--logo-width);
    margin: 0;
  }
  #header-cell-2 {
    width: auto;
    flex-grow: 1;
  }
  #header-cell-2 .inner {
    padding-right: 25px;
  }
  #header-cell-2 #mobile-header-bottom-row {
    justify-content: flex-end;
  }
  #mobile-header-bottom-container {
    max-width: 100%;
  }
}

@media screen and (max-width: 950px) {
  #header-wrapper {
    padding: 30px 0;
  }
  .home #header-wrapper {
    padding: 30px 0;
  }
  #header-cell-1 .inner {
    padding-right: 25px;
  }
  #header .main-logo {
    display: block;
    width: 100%;
    text-align: center;
  }
  #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: 0 auto;
  }
}

@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::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0%;
  height: 0;
  background-position: left 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);
  width: 100%;
  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: var(--primary);
  font-size: 16px;
  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;
  color: var(--accent);
}
#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 .menu-item:hover > a {
  color: var(--accent);
}
#primary-nav .menu .sub-menu .menu-item > a {
  font-size: 16px;
  padding: 10px 15px;
  color: #fff;
  font-weight: 500;
}
#primary-nav .menu .sub-menu .menu-item:hover > a {
  background-color: var(--accent);
  color: var(--primary);
  height: 100%;
}

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

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

@media screen and (max-width: 1500px) {
  #primary-nav .menu {
    gap: 15px;
  }
}

@media screen and (max-width: 1350px) {
  #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 Mobile Header Bottom Section
** ======================================== */
#mobile-header-bottom {
  padding: 15px 0 0;
}
#mobile-header-bottom-row {
  align-items: flex-start;
  justify-content: center;
}
#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 .location-phone a,
#mobile-header-bottom .location-email a,
#mobile-header-bottom .location-phone a,
#mobile-header-bottom .location-email a,
#mobile-header-bottom .mobile-header-button a,
#mobile-header-bottom .menu-bar-container .menu-label {
  font-family: var(--body-font);
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  line-height: normal;
  display: block;
}
#mobile-header-bottom .mobile-header-button a:active,
#mobile-header-bottom .mobile-header-button a:hover {
  text-decoration: none;
}
#mobile-header-bottom a.mh-button::before {
  border-radius: 50%;
  content: '\f155';
  font-size: 18px;
  font-weight: 700;
  display: flex;
  width: 45px;
  height: 45px;
  margin: 0 auto 10px;
  align-items: center;
  justify-content: center;
}
#mobile-header-bottom a.phone::before,
#mobile-header-bottom a.email::before,
#mobile-header-bottom a.mh-button::before,
#mobile-header-bottom #mobile-nav .hamburger::before {
  font-family: var(--font-awesome);
}

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

/** #endregion Mobile Header-Bottom */

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

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

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

/** #endregion Mobile Menu */

/** ======================================== *
**   #region Mobile Nav Menu Multiple Locations
** ======================================== */
.mobile-location .tmf-post-list {
  display: flex;
  flex-wrap: nowrap;
}
.tmf-post.location.mobile-location {
  border: 0;
}
.tmf-post.location.mobile-location .location-small-1 {
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tmf-post.location.mobile-location .location-small-1 .location-address .title {
  font-size: 20px;
}
.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_hero_bg_3x.jpg') no-repeat center center/cover;
}
#int-title-wrapper .title-arrow {
  display: none;
}
#int-title {
  padding: 80px 25px;
}
#int-title h1#page-title {
  margin-bottom: 0;
}
.single-post h1#page-title {
  font-size: 50px;
  text-wrap: auto;
}

@media screen and (max-width: 750px) {
  .single-post h1#page-title {
    font-size: 40px;
  }
}

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

/** ======================================== *
**      #region Body Sections
** ======================================== */
/** -------------------------
** Home Body Section
** ------------------------- */
#home-body-wrapper {
  padding: 175px 0 150px;
  background: url('../images/home_intro_bg_3x.jpg') no-repeat center / cover;
}

/** --- cell 1 ---- */
#home-body-cell-1 {
  width: auto;
}
#home-body-cell-1 h2 {
  line-height: 1.2;
  max-width: 815px;
}
#home-body-cell-1 h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 25px;
}

/** --- cell 2 ---- */
#home-body-cell-2 {
  min-width: 450px;
}

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

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

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

/** -------------------------
** Page Body Section
** ------------------------- */
#body-wrapper {
  padding: 50px 0;
  background: url('../images/int_content_area_bg_3x.jpg') no-repeat center top/contain;
}

/** --- cell 1 ---- */
#body-cell-1 {
  width: auto;
}

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

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

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

/** #endregion Body Sections */

/** ======================================== *
**      #region Homepage Sections
** ======================================== */
/** --------------------------- *
**    #region Billboard
** --------------------------- */
#billboard-wrapper {
  position: relative;
  overflow: hidden;
}
#billboard-container {
  max-width: 100%;
}
#billboard .billboard-content-container {
  position: absolute;
  width: 100%;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
}
#billboard .billboard-content {
  position: relative;
  padding: 25px 0;
  max-width: 90%;
  margin: 0 auto;
}
#billboard h1 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
#billboard h1 span {
  font-size: 90px;
  font-weight: 900;
  line-height: 1.2;
  margin-top: 20px;
  display: inline-block;
}
#billboard span.texas-icon {
  display: inline-block;
  width: 74px;
  height: 71px;
  margin-left: 20px;
  background: url('../images/home_hero_texas_icon_3x.png') no-repeat;
  background-size: 74px;
}
#billboard .btn-wrapper {
  margin-top: 45px;
}
#billboard .btn-wrapper .tmf-button:nth-of-type(1) {
  margin-right: 20px;
  margin-bottom: 15px;
  padding: 17px 20px;
}
#billboard .btn-wrapper .tmf-button:nth-of-type(1)::before {
  content: '';
  display: inline-block;
  background: url('../images/texasemployees_icon_sprite_3x.png') no-repeat;
  background-size: 500px;
  background-position: -61px 0;
  width: 22px;
  height: 19px;
  vertical-align: bottom;
  margin-right: 10px;
}
#billboard .btn-wrapper .tmf-button:nth-of-type(1):hover::before {
  background-position: -90px 0;
}
#billboard .btn-wrapper .tmf-button:nth-of-type(2) {
  background: transparent;
  color: var(--accent);
  padding: 17px 20px;
}
#billboard .btn-wrapper .tmf-button:nth-of-type(2):hover {
  background: var(--accent);
  color: var(--primary);
}
#billboard .btn-wrapper .tmf-button:nth-of-type(2)::before {
  content: '';
  display: inline-block;
  background: url('../images/texasemployees_icon_sprite_3x.png') no-repeat;
  background-size: 500px;
  background-position: -119px 0;
  width: 22px;
  height: 19px;
  vertical-align: bottom;
  margin-right: 10px;
}
#billboard .btn-wrapper .tmf-button:nth-of-type(2):hover::before {
  background-position: -148px 0;
}
.billboard-content-container .fade-in {
  opacity: 0;
}
.billboard-content-container .fade-in.active {
  opacity: 1;
}

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

@media screen and (max-width: 950px) {
  #billboard .billboard-content-container {
    transform: inherit;
    padding: 50px 25px 25px;
    width: 100%;
    top: 0;
    max-width: 100%;
  }
  #billboard .billboard-content {
    background: transparent;
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
  }
  #billboard h1 {
    text-align: center;
    margin-left: 0;
    color: #fff;
  }
  #billboard .btn-wrapper {
    text-align: center;
  }
}

@media screen and (max-width: 650px) {
  #billboard h1 {
    font-size: 40px;
  }
  #billboard h1 span {
    font-size: 70px;
  }
}

@media screen and (max-width: 600px) {
  #billboard .billboard-content {
    margin: 0 auto;
  }
  #billboard h1 br {
    display: none;
  }
  #billboard h1 span {
    font-size: 40px;
    margin-top: 0;
    font-weight: 700;
  }
  #billboard span.texas-icon {
    display: block;
    margin: 20px auto;
  }
  #billboard .btn-wrapper {
    margin-top: 35px;
  }
}

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

@media screen and (max-width: 450px) {
  #billboard h1 {
    font-size: 30px;
  }
  #billboard h1 span {
    font-size: 30px;
  }
  #billboard .btn-wrapper .tmf-button:nth-of-type(1) {
    margin: 0 15px 15px 0;
  }
}

@media screen and (max-width: 420px) {
  #billboard h1 span {
    margin-top: 0;
    vertical-align: text-bottom;
  }
  #billboard span.texas-icon {
    margin-top: 15px;
  }
  #billboard .btn-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
  }
  #billboard .btn-wrapper .tmf-button {
    max-width: fit-content;
    margin: 0 auto;
  }
  #billboard .btn-wrapper .tmf-button:nth-of-type(1) {
    margin: 0 auto;
  }
}

/** ---------------------------
**   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%;
  object-fit: cover;
}
#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: 1150px;
  }
  #billboard .desktop-view {
    display: none;
  }
  #billboard .mobile-view {
    display: block;
  }
  #billboard .slide img {
    object-position: bottom;
  }
}

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

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

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

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

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

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

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

@media screen and (max-width: 400px) {
  #billboard .billboard-slides {
    height: 1050px;
  }
  #billboard .billboard-content-container {
    padding-top: 35px;
  }
}
/** #endregion Billboard */

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

/** --- cell 1 --- */
#home-practice-areas-cell-1 {
  vertical-align: middle;
}
#home-practice-areas-cell-1 h2 {
  color: #fff;
}
#home-practice-areas-cell-1 p {
  color: #fff;
}
#home-practice-areas-cell-1 .tmf-button {
  display: block;
  max-width: fit-content;
  margin-top: 35px;
}

/** --- cell 2 --- */
#home-practice-areas-cell-2 .tmf-post {
  padding: 25px 10px;
  border: 0;
  margin: 0;
  transition: 0.3s ease;
}
#home-practice-areas-cell-2 .tmf-post .pa-img {
  position: relative;
  margin: 0 auto;
}
#home-practice-areas-cell-2 .tmf-post img {
  transition: box-shadow 0.25s ease-in;
}
#home-practice-areas-cell-2 .tmf-post:hover img {
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.5);
}
#home-practice-areas-cell-2 .tmf-post .title {
  font-size: 25px;
  font-weight: 700;
  color: #000;
  text-align: center;
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}

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

@media screen and (max-width: 630px) {
  #home-practice-areas-cell-2 .tmf-post {
    padding: 25px 10px 25px 0;
  }
}

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

/** #endregion Home Practice Areas Section */

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

/** --- cell 1 --- */
#testimonials-cell-1 .tmf-module-content {
  border: 2px solid var(--primary);
  border-radius: 15px;
  padding: 50px 50px;
}
#testimonials-cell-1 h2 {
  margin-bottom: 35px;
}
#testimonials-cell-1 .stars-div {
  margin-bottom: 15px;
}
#testimonials-cell-1 .tmf-post.testimonial .excerpt {
  max-width: 90%;
  margin: 0;
  font-size: 20px;
}
#testimonials-cell-1 .tmf-post.testimonial .testimonial-description {
  color: var(--primary);
  font-size: 25px;
  font-weight: 700;
  max-width: 90%;
  margin: 35px 0 0;
}
#testimonials-cell-1 .bx-wrapper .bx-pager {
  text-align: left;
}

/** --- cell 2 --- */
#testimonials-cell-2 {
  vertical-align: middle;
}
#testimonials-cell-2 img {
  margin-left: -80px;
}

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

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

@media screen and (max-width: 500px) {
  #testimonials-container {
    max-width: 100%;
  }
  #testimonials-cell-1 .tmf-module-content {
    padding: 50px 35px;
  }
  #testimonials-cell-1 .tmf-post.testimonial .excerpt {
    max-width: 100%;
  }
  #testimonials-cell-1 .tmf-post.testimonial .testimonial-description {
    max-width: 100%;
  }
}

/** #endregion Home Testimonials Section */

/** -------------------------
** #region Home Our Process Section
** ------------------------- */
#home-our-process-wrapper {
  padding: 100px 0;
  background: var(--primary-gradient);
}

/** --- cell 1 --- */
#home-our-process-cell-1 {
  color: #fff;
  text-align: center;
}
#home-our-process-cell-1 h2 {
  color: #fff;
}
#home-our-process-cell-1 .steps-list {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin: 100px 0 100px;
}
#home-our-process-cell-1 .steps-list .step-item .img {
  width: 230px;
  height: 131px;
  display: block;
  margin: 0 auto 25px;
  position: relative;
}
#home-our-process-cell-1 .steps-list .step-item:nth-of-type(1) .img {
  background: url('../images/home_our_approach_step1_3x.png') no-repeat;
  background-size: 230px;
}
#home-our-process-cell-1 .steps-list .step-item:nth-of-type(2) .img {
  background: url('../images/home_our_approach_step2_3x.png') no-repeat;
  background-size: 230px;
}
#home-our-process-cell-1 .steps-list .step-item:nth-of-type(3) .img {
  background: url('../images/home_our_approach_step3_3x.png') no-repeat;
  background-size: 230px;
}
#home-our-process-cell-1 .steps-list .step-item .img .step {
  position: relative;
  top: 54px;
  left: 55px;
  font-size: 20px;
  font-weight: 300;
  color: var(--primary);
  text-transform: uppercase;
}
#home-our-process-cell-1 .steps-list .step-item .title {
  font-size: 25px;
  font-weight: 700;
  max-width: 230px;
}

@media screen and (max-width: 1050px) {
  #home-our-process-cell-1 .steps-list {
    gap: 50px;
  }
}

@media screen and (max-width: 950px) {
  #home-our-process-wrapper {
    padding: 75px 0;
  }
  #home-our-process-cell-1 .steps-list {
    flex-direction: column;
    gap: 80px;
    margin: 80px 0 100px;
  }
  #home-our-process-cell-1 .steps-list .step-item .title {
    margin: 0 auto;
  }
}

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

/** #endregion Home Our Process Section */

/** -------------------------
** #region Home Blog/News Section
** ------------------------- */
#home-blog-wrapper {
  padding: 180px 0 150px;
  background: url('../images/home_misc_bg_3x.jpg') no-repeat center top/cover;
}
#home-blog-row {
  height: 100%;
}
#home-blog .tmf-post {
  margin: 0;
  padding: 0;
  border: 0;
  text-align: center;
}
#home-blog .tmf-module {
  height: 100%;
}
#home-blog-cell-1 .tmf-module-content,
#home-blog-cell-2 .tmf-module-content {
  border: 2px solid var(--primary);
  border-top-left-radius: 50% 100px;
  border-top-right-radius: 50% 100px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 0 35px 50px;
  height: 100%;
}
#home-blog h2 {
  text-align: center;
  margin: 0 auto;
  max-width: fit-content;
  position: relative;
  top: -47px;
}
#home-blog .read-more {
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.54px;
}
#home-blog .read-more:hover {
  color: var(--accent);
}
#home-blog h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
}

/** --- cell 1 --- */
#home-blog-cell-1 .inner {
  height: 100%;
}
#home-blog-cell-1 .tmf-module-area {
  height: 100%;
}
#home-blog-cell-1 h2 {
  background: var(--primary);
  padding: 15px 20px;
  color: var(--accent);
}

/** --- cell 2 --- */
#home-blog-cell-2 .inner {
  height: 100%;
}
#home-blog-cell-2 .tmf-module-area {
  height: 100%;
}
#home-blog-cell-2 h2 {
  background: var(--accent);
  padding: 15px 45px;
}

@media screen and (max-width: 1050px) {
  #home-blog-cell-2 {
    padding-top: 100px;
  }
}

@media screen and (max-width: 950px) {
  #home-blog-wrapper {
    padding: 180px 0 150px;
  }
}

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

/** #endregion Home Blog/News 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 {
  background: var(--primary);
  background: url('../images/int_prac_area_hero_bg3x.jpg') no-repeat center/cover;
  overflow-x: clip;
  max-width: 100%;
}
#int-billboard-row {
  position: static;
}
#int-billboard-container {
  position: static;
}
#int-billboard-cell-1,
#int-billboard-cell-2 {
  vertical-align: middle;
}
#int-billboard-cell-1 .inner,
#int-billboard-cell-2 .inner {
  padding: 0;
}

/** --- cell 1 --- */
#int-billboard .int-billboard-title {
  position: relative;
  padding: 0 50px 0 25px;
}
#int-billboard h1 {
  display: inline-block;
  margin-bottom: 0;
  padding: 0;
}
#int-billboard .mobile-view {
  display: none;
}

/** --- cell 2 --- */
#int-billboard-cell-2 {
  min-width: 485px;
}
#int-billboard-cell-2 .inner {
  position: static;
  min-height: 460px;
}
#int-billboard .int-billboard-img {
  display: block;
  position: absolute;
  bottom: -62px;
  right: 0;
  z-index: 1;
  width: calc(((100% - 1600px) / 2) + (1600px * 0.33333333));
  min-width: 525px;
  object-fit: cover;
}

@media screen and (max-width: 1050px) {
  #int-billboard-container {
    max-width: 100%;
  }
  #int-billboard .int-billboard-title {
    width: 90%;
    margin: 0 auto;
    padding: 75px 25px;
  }
  #int-billboard-cell-1,
  #int-billboard-cell-2 {
    width: 100%;
  }
  #int-billboard-cell-2 {
    display: none;
  }
  #int-billboard .int-billboard-img {
    position: static;
    max-height: 700px;
    min-width: 100%;
    object-position: top;
    width: 100%;
    height: auto;
  }
  #int-billboard .mobile-view {
    display: block;
  }
}

@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
** -------------------------------------- */
:root {
  --attorney-bio-height: 460px;
}
#attorney-bio-wrapper {
  background: url('../images/bio_hero_bg_3x.jpg') no-repeat center/cover;
  height: var(--attorney-bio-height);
}
#attorney-bio-cell-1,
#attorney-bio-cell-2 {
  vertical-align: top;
}

/** --- cell 1 --- */
#attorney-bio img {
  display: block;
}

/** --- cell 2 --- */
#attorney-bio-cell-2 .inner {
  min-height: var(--attorney-bio-height);
  display: flex;
  align-items: center;
}
.attorney-bio-info {
  display: flex;
  gap: 50px;
}
.attorney-bio-info h1 {
  margin-bottom: 0;
  font-style: normal;
  min-width: fit-content;
}
.attorney-bio-info .attorney-titles,
.attorney-bio-info .attorney-titles a {
  color: var(--accent);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--body-font);
  text-align: right;
  margin-top: 15px;
}
.attorney-bio-info .contact-information {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.attorney-bio-info .contact-information a,
.attorney-bio-info .speaking a {
  color: #fff;
  font-weight: 700;
}
.attorney-bio-info .contact-information a:hover,
.attorney-bio-info .speaking a:hover {
  color: var(--accent);
  text-decoration: none;
}
.attorney-bio-info .phone,
.attorney-bio-info .vcard,
.attorney-bio-info .resume,
.attorney-bio-info .fax,
.attorney-bio-info .email {
  display: inline-block;
  padding-top: 5px;
  line-height: normal;
  margin-right: 10px;
  padding-right: 10px;
  vertical-align: middle;
}
.attorney-bio-info .label {
  font-size: 0;
}
.attorney-bio-info .vcard .value {
  background: transparent;
  height: auto;
  width: auto;
  margin-right: 0;
}
.attorney-bio-info .resume .label {
  font-size: 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 {
  color: var(--accent);
  font-size: 18px;
  font-family: var(--font-awesome);
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
}
.attorney-bio-info .resume::before {
  content: '\f1c1';
  font-size: 22px;
  margin-right: 5px;
}
.attorney-bio-info .phone-1::before,
.attorney-bio-info .phone-2::before {
  content: '\f879';
  margin-right: 5px;
  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';
}

@media screen and (max-width: 1500px) {
  .attorney-bio-info h1 {
    font-size: 60px;
  }
}

@media screen and (max-width: 1415px) {
  .attorney-bio-info h1 {
    font-size: 50px;
  }
  .attorney-bio-info {
    display: flex;
    gap: 30px;
  }
}

@media screen and (max-width: 1305px) {
  #attorney-bio-cell-2 .attorney-bio-info {
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
  }
  .attorney-bio-info .attorney-titles,
  .attorney-bio-info .attorney-titles a {
    text-align: left;
  }
}

@media screen and (max-width: 1150px) {
  #attorney-bio-wrapper {
    height: auto;
  }
}

@media screen and (max-width: 1050px) {
  #attorney-bio-cell-2 .inner {
    padding-left: 10px;
  }
}

@media screen and (max-width: 950px) {
  #attorney-bio-row {
    display: flex;
    flex-direction: column-reverse;
  }
  #attorney-bio img {
    margin: 0 auto;
    max-width: 427px;
    width: 100%;
    height: auto;
  }
  #attorney-bio-cell-2 .inner {
    min-height: auto;
    padding: 0 25px;
  }
  .attorney-bio-info .attorney-page-title .title-section {
    text-align: center;
  }
  .attorney-bio-info .attorney-titles,
  .attorney-bio-info .attorney-titles a {
    text-align: center;
  }
  .attorney-bio-info {
    padding: 25px 0 0;
  }
  .attorney-bio-info .contact-information {
    align-items: center;
    margin-top: 0;
  }
  .attorney-bio-info .vcard,
  .attorney-bio-info .phone,
  .attorney-bio-info .fax,
  .attorney-bio-info .email {
    margin-right: 0;
    padding-right: 0;
  }
}

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

/** #endregion Single Attorney Page CSS */

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

/** #endregion Single Video */

/** -------------------------------------- *
**      #region Single Guide
** -------------------------------------- */
.single-guide .tmf-post.guide.large img.primary {
  float: none;
  margin: 0 0 25px;
}
.single-guide .tmf-post.guide.large .download-btn {
  margin-top: 25px;
}

/** #endregion Single Guide */

/** #endregion Single Pages */

/** ======================================== *
**      #region All Archives
** ======================================== */
/** -------------------------------------- *
**      #region Representative Case archive
** -------------------------------------- */
.post-type-archive-representative-case .result {
  margin-top: 10px;
  color: var(--accent);
  font-size: 22px;
  font-weight: 700;
}

/** #endregion Representative Case archive archive*/
/** -------------------------------------- *
**      #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;
}
.category-blog .tmf-post.news .post-information-container,
.category-blog .tmf-post.post .post-information-container {
  margin-top: 10px;
}
.category-blog .tmf-post.news .post-information-container .date,
.category-blog .tmf-post.post .post-information-container .date {
  font-weight: 700;
}

@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: 18px;
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
}
.tmf-post.testimonial.small .excerpt {
  font-size: 16px;
  line-height: 1.5em;
}
.post-type-archive-testimonial .tmf-post .taxonomy-container {
  margin-top: 0;
}
.post-type-archive-testimonial .tmf-post.testimonial.medium img {
  width: 100%;
  height: auto;
  max-width: fit-content;
}

/** #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;
}
.post-type-archive-location .tmf-archive-top h2 {
  font-weight: 700;
}

@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 Staff archive
** --------------------------------------- */
.post-type-archive-staff .tmf-post.staff.medium .read-more-button.top {
  float: right;
  margin-bottom: 10px;
  margin-left: 25px;
  display: none !important;
}
.post-type-archive-staff .tmf-post.staff.medium .read-more-button.bottom {
  display: block !important;
  float: left;
}
.post-type-archive-staff .tmf-post.staff {
  padding-bottom: 45px;
  margin-bottom: 45px;
}
.post-type-archive-staff .contact-information a {
  color: #333;
}
.post-type-archive-staff .tmf-post.staff.medium h2::after {
  display: none;
}
.post-type-archive-staff .tmf-post.staff .tmf-taxonomy-list.attorney-titles {
  font-weight: 500;
}
.tmf-post.attorney.medium .read-more-button.top,
.tmf-post.staff.medium .read-more-button.top {
  display: none !important;
}
.tmf-post.staff.medium .read-more-button.bottom {
  margin-top: 25px;
  display: block;
  float: none;
  max-width: fit-content;
}
.post-type-staff-attorney .contact-information a {
  color: #333;
}

/** #endregion Staff archive*/

/** --------------------------------------- *
**      #region Attorney archive
** --------------------------------------- */
.post-type-archive-attorney .tmf-post.attorney.medium .read-more-button.top {
  float: right;
  margin-bottom: 10px;
  margin-left: 25px;
  display: none !important;
}
.post-type-archive-attorney .tmf-post.attorney.medium .read-more-button.bottom {
  display: block !important;
  float: left;
}
.post-type-archive-attorney .tmf-post.attorney {
  padding-bottom: 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;
  }
}

@media screen and (max-width: 420px) {
  body.post-type-archive-attorney .tmf-post.medium img.thumbnail {
    float: none;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: unset;
    margin-right: 0;
  }
}

/** #endregion Attorney archive*/

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

/** #endregion Attorney Archive: Category Attorney*/

/** ---------------------------------------- *
**      #region Video Archive
** ---------------------------------------- */
.tmf-post.video.medium .excerpt img.thumbnail.mobile {
  display: none;
}

@media screen and (max-width: 750px) {
  .tmf-post.video.medium .excerpt img.thumbnail.mobile {
    display: block;
  }
  .tmf-post.video.medium img.thumbnail.not-mobile {
    display: none;
  }
}

/** #endregion Video Archive */

/** ---------------------------------------- *
**      #region Guide Archive
** ---------------------------------------- */
.tmf-post.guide.medium .excerpt img.thumbnail.mobile {
  display: none;
}

@media screen and (max-width: 750px) {
  .tmf-post.guide.medium .excerpt img.thumbnail.mobile {
    display: block;
  }
  .tmf-post.guide.medium img.thumbnail.not-mobile {
    display: none;
  }
}

/** #endregion Guide Archive */

/** #endregion All Archives*/

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

/** --- Cell 1 --- */
#footer .logo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 461px;
  text-align: center;
  margin: 0 auto 100px;
}
#footer-cell-1 .business-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
#footer .business-info a {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  font-family: var(--heading-font);
}
#footer .address {
  display: flex;
  justify-content: center;
  gap: 5px;
}
#footer .business-info .address,
#footer .business-info .fax .value,
#footer .business-info .phone-1 .value a,
#footer .business-info .phone-2 .value a,
#footer .business-info .email .value {
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  font-family: var(--heading-font);
}
#footer .address::before,
#footer .tmf-post.small.location .streetAddress::before,
#footer .tmf-post.small.location .fax::before,
#footer .tmf-post.small.location .phone-1::before,
#footer .tmf-post.small.location .phone-2::before,
#footer .tmf-post.small.location .email::before {
  color: var(--accent);
  display: inline-block;
  vertical-align: top;
  font-family: var(--font-awesome);
  font-size: 16px;
  font-weight: 700;
  margin-right: 5px;
}
#footer .address::before {
  content: '\f3c5';
}
#footer .phone-2::before {
  content: '\f3cd';
  transform: unset;
}
#footer .tmf-post.small.location .streetAddress {
  line-height: 22px;
  align-self: center;
}
#footer .tmf-post.small.location .streetAddress::before {
  display: none;
}
#footer .under-label {
  color: #fff;
  margin-left: 26px;
  font-weight: 400;
}
#footer .under-address {
  margin-left: 0;
  padding-top: 5px;
  display: inline-block;
}

/** Socials */
#footer a .label {
  font-size: 17px;
  font-weight: 700;
}
#footer .icon {
  background: none;
  width: 22px;
  height: 22px;
  margin-right: 2px;
  display: inline-block;
  vertical-align: baseline;
}
#footer .facebook::before,
#footer .linked-in::before {
  display: inline-block;
  font-family: var(--font-brands);
  font-size: 20px;
  font-weight: 500;
  color: var(--accent);
  background: url('../images/texasemployees_icon_sprite_3x.png') no-repeat;
  background-size: 550px;
  width: 22px;
  height: 22px;
  vertical-align: sub;
}
#footer .facebook::before {
  content: '\f09a';
  content: '';
  background-position: -96px -30px;
}
#footer .linked-in::before {
  content: '\f0e1';
  content: '';
  background-position: -129px -30px;
}

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

@media screen and (max-width: 950px) {
  #footer-wrapper {
    padding: 75px 0 0;
  }
  #footer .logo {
    margin: 0 0 50px;
  }
  #footer-cell-1 .business-info {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 750px) {
  #footer .business-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  #footer .logo {
    margin: 0 auto 50px;
  }
  #footer .business-info {
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
    margin-bottom: 50px;
  }
  #footer .under-address {
    display: block;
    text-align: center;
  }
  #footer .social-link,
  #footer .tmf-post.small.location .phone-1,
  #footer .tmf-post.small.location .email,
  #footer .tmf-post.small.location .fax {
    display: flex !important;
    justify-content: center;
    gap: 5px;
  }
}

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

/** #endregion Footer Section */

/** ======================================== *
**      #region Copyright Section
** ======================================== */
#copyright-wrapper {
  overflow: hidden;
}
#copyright-container {
  max-width: 100%;
}
#copyright {
  padding: 0 0 75px;
}
#copyright p {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  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: #8a8a8a;
}

/** --- 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 (min-width: 1750px) {
  #copyright-container {
    max-width: 1600px;
  }
}

@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: left;
    padding-top: 5px;
  }
}

/* @media screen and (max-width: 775px) {
  #copyright {
    padding: 25px 0;
  }
} */

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

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

/** #endregion Copyright Section */

/** ======================================== *
**      #region Editor Blocks
** ======================================== */
/** -------------------------------------- *
**      #region Call to Action
** -------------------------------------- */
body #call-to-action {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  background: transparent !important;
  margin: 30px 0;
  padding: 50px 0;
}
body #call-to-action .row {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}
body #call-to-action .col {
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  overflow: visible;
}
body #call-to-action .col.left {
  background: var(--primary);
  min-width: 270px;
  max-width: 317px;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 45px 20px !important;
}
body #call-to-action .col.right {
  background: var(--secondary);
  padding: 50px 45px;
  text-align: left;
}
body #call-to-action .col.right::before {
  content: '';
  position: absolute;
  width: 50px;
  height: 100%;
  top: 0;
  left: -50px;
  background: var(--secondary);
  z-index: -1;
}
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: 700;
  font-size: 25px;
  line-height: 1.2em;
  font-family: var(--heading-font);
}
body #call-to-action .col p {
  color: var(--primary);
  font-weight: 700;
  font-size: 17px;
}
body #call-to-action .col p a {
  color: var(--accent) !important;
}
body #call-to-action .col .tmf-button {
  background: var(--accent);
  color: var(--primary) !important;
  margin-top: 15px;
}
body #call-to-action .col .tmf-button:hover {
  background: transparent;
  color: var(--accent) !important;
}

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

@media screen and (max-width: 800px), screen and (max-width: 1200px) and (min-width: 1050px) {
  body #call-to-action .row {
    flex-direction: column;
  }
  body #call-to-action .col.left {
    height: auto;
    max-width: 100%;
    width: 100%;
    padding: 35px 25px !important;
  }
  body #call-to-action .col.right {
    padding: 35px 20px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
  body #call-to-action .col.right::before {
    display: none;
  }
  body #call-to-action .col .tmf-button {
    display: block;
    max-width: fit-content;
    margin: 25px auto 0;
  }
}

/** #endregion Call to Action */

/** -------------------------------------- *
**      #region Aside
** -------------------------------------- */
aside {
  float: right;
  width: 350px;
  margin: 15px;
  padding: 20px 20px;
  background: transparent;
  color: var(--primary);
  font-family: var(--body-font);
  font-size: 25px;
  font-weight: 700;
  position: relative;
  border: 1px solid var(--primary);
  border-radius: 10px;
}
.editor-content aside h3,
.editor-content aside h4,
.editor-content aside p {
  font-family: var(--body-font);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}
@media screen and (max-width: 700px) {
  aside {
    float: none;
    width: 100%;
    margin: 25px 0px;
  }
}

/** #endregion Aside */

/** --------------------------------------*
**      #region Callout
** --------------------------------------*/
#callout {
  position: relative;
  background: transparent;
  padding: 15px 35px 15px 160px;
  margin: 35px 0;
  min-height: 138px;
}
#callout::before {
  content: '';
  display: inline-block;
  background: url('../images/int_cta1_logo_3x.png') no-repeat;
  background-size: 138px;
  width: 138px;
  height: 138px;
  position: absolute;
  left: 0;
  top: 0;
}
#callout h3,
#callout h4 {
  color: #000;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 25px;
  margin: 0;
  line-height: 1.3;
}
.editor-content #callout p {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.3;
}
#callout a {
  text-decoration: none;
  color: var(--accent);
  font-weight: 900;
}
#callout a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 550px) {
  #callout {
    padding: 15px 35px 15px 110px;
    min-height: 138px;
  }
  #callout::before {
    background-size: 90px;
    width: 90px;
    height: 90px;
  }
}

/** #endregion Callout */

/** -------------------------------------- *
**      #region Callout Alt
** -------------------------------------- */
#callout-alt {
  background: linear-gradient(0deg, #ececec 0%, #ececec 100%), rgba(180, 180, 180, 0);
  padding: 35px;
  margin-bottom: 25px;
}
#callout-alt p {
  font-weight: 600;
  font-size: 25px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0;
  margin-top: 5px;
  line-height: 1.3;
}
#callout-alt ul {
  padding-left: 25px;
  margin-bottom: 0;
}
#callout-alt ul li {
  margin-bottom: 0;
}
#callout-alt ul li::before {
  content: '';
  display: inline-block;
  background: url(../images/texasemployees_icon_sprite_3x.png) no-repeat;
  background-size: 500px;
  background-position: -294px -30px;
  width: 11px;
  height: 11px;
  margin-right: 10px;
  margin-left: -20px;
}

/** #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: var(--primary-gradient-reverse);
  padding: 45px 45px;
  position: relative;
}
body .tmf-module-22 h3 {
  font-family: var(--body-font);
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 30px;
}

@media screen and (max-width: 1050px) {
  body .tmf-module-22 h3 {
    max-width: 600px;
    margin: 0 auto 30px;
  }
  body.home .tmf-module-22 {
    position: relative;
  }
}

@media screen and (max-width: 450px) {
  body .tmf-module-22 h3 {
    font-size: 35px;
  }
}

@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-1969 {
  margin-top: 50px;
}
.tmf-module-1969 .tmf-post {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}
.tmf-module-1969 .tmf-post:last-child a {
  border: 0;
}
.tmf-module-1969 .tmf-post a {
  background: var(--secondary);
  border-bottom: 1px solid #d1d1d1;
  padding: 35px 20px;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.15s ease-in;
  display: flex;
  gap: 15px;
}
.tmf-module-1969 .tmf-post a .pa-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: url(../images/texasemployees_icon_sprite_3x.png) no-repeat;
  background-size: 500px;
  background-position: -236px -28px;
}
.tmf-module-1969 .tmf-post a:hover {
  background: var(--primary);
}
.tmf-module-1969 .tmf-post a .title {
  color: var(--primary);
  font-size: 25px;
  font-weight: 700;
}
.tmf-module-1969 .tmf-post a:hover .title {
  color: #fff;
}
/** #endregion Practice Areas - sidebar */

/** #region cta sidebar - sidebar */
.tmf-module-1971 {
  border: 2px solid var(--primary);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  margin: 50px 0;
  position: relative;
  z-index: 1;
}
.tmf-module-1971 h4 {
  font-size: 25px;
}
.tmf-module-1971 h4 span::before {
  content: '';
  display: block;
  width: 80%;
  height: 32px;
  position: absolute;
  top: 81px;
  left: 0;
  background: var(--accent);
  z-index: -1;
}

@media screen and (max-width: 950px) {
  .tmf-module-1971 h4 span::before {
    width: 100%;
  }
}

/** #endregion cta sidebar - sidebar */

/** #region Attorney Badges - sidebar */
.single-attorney .superlawyer-badges-section {
  padding-bottom: 50px;
}
.single-attorney .bx-wrapper {
  border: 2px solid var(--primary);
  border-radius: 15px;
  padding: 30px 20px;
}
.single-attorney .attorney-badges .badge img {
  margin: 0 auto;
  display: block;
}
.single-attorney .bx-wrapper .bx-pager {
  display: inline-block;
  background: #fff;
  max-width: fit-content;
  padding: 23px 25px 0;
  left: 50%;
  transform: translateX(-50%);
}
/** #endregion Attorney Badges - sidebar */

/** #endregion Modules */

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

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

/** all buttons */
.tmf-button,
input[type='submit'] {
  position: relative;
  display: inline-block;
  padding: 17px 35px;
  color: var(--primary);
  text-align: center;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 1.54px;

  background: var(--accent);
  border-radius: 5px;
  border: 1px solid var(--accent);
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.15s ease-in;
}
.tmf-button:hover,
.tmf-button:active,
input[type='submit']:hover,
input[type='submit']:active {
  text-decoration: none;
  color: var(--accent);
  background: transparent;
}

/** form button */
.gform_wrapper .tmf-button,
.gform_wrapper input[type='submit'] {
  padding: 15px 39px;
}

/** pagination buttons */
.page-navigation .tmf-button,
.page-navigation .page-numbers {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: var(--primary);
  border-radius: 5px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 31px;
  height: auto;
  transition: all 0.15s ease-in;
}
.page-numbers.current,
.page-navigation .page-numbers:hover,
.page-navigation .page-numbers:active,
.page-navigation .last.tmf-button:hover,
.page-navigation .last.tmf-button:active {
  background: transparent;
  color: var(--accent);
}
.page-navigation .last.tmf-button {
  vertical-align: top;
  transform: unset;
}
.page-navigation .last.tmf-button::before,
.page-navigation .last.tmf-button::after {
  display: none;
}
.tmf-button.large {
  font-size: 1.1em;
  padding: 7px 25px;
}
.tmf-button.medium {
  font-size: 0.95em;
  padding: 7px 25px;
}
.tmf-button.small {
  font-size: 0.85em;
  padding: 3px 15px;
  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);
  font-size: 43px;
}

/** ----- 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 {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #000;
}
#video-light-box {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  display: none;
}

/** ----- 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: 10px;
  height: 10px;
  background: #d9d9d9;
  text-indent: -9999px;
  display: block;
  transition: all 0.15s ease;
  cursor: pointer;
  border-radius: 10px;
  margin: 0 5px;
}
.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 1350px --- */
@media screen and (max-width: 1350px) {
  .row.collapse-1350 {
    display: block;
  }
  .row.collapse-1350 > div {
    display: block;
    width: 100%;
    padding-top: 25px;
  }
  .row.collapse-1350 > div > .inner {
    display: block;
    width: 100%;
    min-width: 0 !important;
    max-width: none;
  }
  .row > div > .inner .row.collapse-1350 > div > .inner {
    padding: 0;
  }
  .hide-below-1350 {
    display: none !important;
  }
}

/** #endregion Miscellaneous */

/** ======================================== *
**      #region Inputs & Gravity Forms
** ======================================== */
:root {
  --input-bg: transparent;
  --input-txt: #fff;
  --input-placeholder: #d9d9d9;
  --input-border: #fff;
  --form-txt: #fff;
}
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);
  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: 5px;
  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);
}
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'] {
  margin-bottom: 15px !important;
}
textarea {
  height: 200px !important;
}
select {
  -webkit-appearance: none;
  -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: var(--form-txt);
  font-size: 13px !important;
  font-weight: 400 !important;
  margin-left: 11px;
}
.gform-field-label,
.gfield_label {
  color: var(--form-txt);
}
.gfield_description {
  color: var(--form-txt);
}
h2.gsection_title,
h3.gsection_title {
  color: var(--form-txt);
}
/** max character length text */
body .gform_legacy_markup_wrapper .field_description_below .gfield_description {
  padding-top: 10px;
  margin: 0 0 20px;
  padding-right: 0;
  color: var(--form-txt);
}
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;
}
.gform_legacy_markup_wrapper {
  margin: 0 auto !important;
}
.gform_legacy_markup_wrapper .gform_footer {
  padding: 0 !important;
  margin: 0 !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;
}
body .gform_legacy_markup_wrapper form {
  max-width: 600px;
}

/** Error Handling */
/** no form exists error message */
.gform_not_found {
  color: #333;
}
/** error field border color */
:root {
  --error-color: #ffd0d0;
}
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 var(--error-color);
}
/** 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: var(--error-color);
  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: var(--error-color);
  margin: 0 0 0.9375rem 0;
}
body .gform_legacy_markup_wrapper div.validation_error {
  color: var(--error-color);
  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;
}
body .gform_wrapper.gravity-theme .gfield_required.gfield_required_asterisk,
.gform_wrapper.gravity-theme .gfield_required {
  color: var(--error-color);
}

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