/* ============================================================================ *
        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: #3f6c7b;
  /* SECONDARY COLORS */
  --secondary: #2a4751;
  /* ACCENT COLORS */
  --accent: #e6c439;
  /* FONTS */
  --billboard-font: 'fino-sans', sans-serif;
  --heading-font: 'Italiana', sans-serif;
  --body-font: 'Heebo', sans-serif;
  --font-awesome: 'Font Awesome 5 Free';
  --font-brands: 'Font Awesome 5 Brands';
  /* HOME HEADINGS */
  --home-h1: 400 75px/1.3em var(--billboard-font);
  --home-h2: 400 40px/1.3em var(--heading-font);
  --home-h3: 400 30px/1.3em var(--heading-font);
  --home-h4: 700 20px/1.3em var(--body-font);
  /* INTERIOR HEADINGS */
  --h1: 400 80px/1.3em var(--heading-font);
  --h2: 400 40px/1.3em var(--heading-font);
  --h3: 400 30px/1.3em var(--heading-font);
  --h4: 700 20px/1.3em var(--body-font);
  /* HEADER */
  --header-bg-color: #f8f7f2;
  --sticky-header-bg-color: #f8f7f2;
  --header-font-size: 16px;
  --header-font-weight: 700;
  --header-link-color: var(--primary);
  /* LOGOS */
  --logo-width: 259px;
  --logo-height: 89px;
  --sticky-logo-width: 259px;
  --sticky-logo-height: 89px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  color: #000;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
}
a {
  color: var(--primary);
}
a:hover {
  color: var(--accent);
}
.editor-content ol li {
  padding: 0 0 10px;
}
.editor-content ol ul li {
  margin-bottom: 0;
}
.editor-content ol ol.nested-list {
  list-style-type: decimal;
}

/* ======================================== *
        #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: #000;
  line-height: 1.1;
}

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

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

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

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

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

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

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

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

/* #endregion Typography */

/* ======================================== *
        #region Breadcrumbs
 * ======================================== */
#breadcrumbs {
  color: #fff;
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 300;
  margin: 50px 0 15px;
  line-height: 2;
  overflow: hidden;
  letter-spacing: 2.7px;
  text-transform: uppercase;
}
#breadcrumbs span.bread-divider {
  margin: 0 5px;
  color: #fff;
}
#breadcrumbs a {
  color: #fff;
  text-decoration: none;
  letter-spacing: 2.7px;
  text-transform: uppercase;
  line-height: 2;
}
#breadcrumbs .current {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 2;
}

@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;
}
body #header-top-wrapper.sticky {
  transition: all 0.3s ease-in;
  position: fixed !important;
  width: 100%;
  z-index: 3;
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}

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

/* 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;
}

/* 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: center;
  justify-content: flex-end;
  gap: 45px;
  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;
  flex-grow: 1;
}
#header-wrapper.sticky #header-cell-2 #primary-nav-container {
  max-width: 100%;
}
#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: var(--accent);
}
#header-wrapper.sticky #header-cell-2 .sticky-view .phone-1 a:hover::before {
  color: var(--accent);
}

/* Phone Links */
#header-wrapper.sticky #header-cell-2 .sticky-view .phone-1 a {
  color: var(--header-link-color);
  font-size: var(--header-font-size);
  font-weight: var(--header-font-weight);
  text-decoration: none;
}
#header-wrapper.sticky #header-cell-2 .sticky-view .phone-1 a::before {
  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: var(--secondary);
}

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

/* ------------------------------- *
#region Header top Section
* ------------------------------- */
#header-top-wrapper {
  background: var(--secondary);
  padding: 10px 0;
}
.home #header-top-wrapper {
  display: none;
}
.home #header-top-wrapper.sticky {
  display: block;
}
#header-top-cell-1 .tmf-module-content {
  color: #fff;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
}
.home #header-top-cell-1 .tmf-module-content {
  color: var(--secondary);
}
#header-top-cell-1 .tmf-module-content p {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
}
#header-top-cell-1 .tmf-module-content a {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
}
#header-top-cell-1 .tmf-module-content a:hover {
  /* text-decoration: underline; */
  color: var(--accent);
}
#header-top-cell-1 .tmf-module-content .phone-1 a::before {
  content: '\f879';
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  transform: rotate(10deg);
  color: #fff;
  font-size: 14px;
  font-family: var(--font-awesome);
  font-weight: 600;
}
#header-top-cell-1 a.email::before {
  content: '\f0e0';
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  color: #fff;
  font-size: 14px;
  font-family: var(--font-awesome);
  font-weight: 600;
}
#header a.consultation::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background: url('../images/bloomlegalcoach_icon_sprite_3x.png') no-repeat;
  background-size: 350px;
  background-position: -1px 0;
  width: 14px;
  height: 18px;
  margin-right: 7px;
}
#header-top a.consultation::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background: url('../images/bloomlegalcoach_icon_sprite_3x.png') no-repeat;
  background-size: 350px;
  background-position: -1px -54px;
  width: 14px;
  height: 18px;
  margin-right: 7px;
}

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

/* #endregion Header top section */

/* ------------------------------- *
    #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-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;
  margin-top: 10px;
}
#header-cell-2 .desktop-view {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}
#header .sticky-view {
  display: none;
}
#header .tmf-field.location.phone-1 a {
  color: var(--header-link-color);
  text-decoration: none;
  font-size: var(--header-font-size);
  transition: 0.2s ease-in;
}
#header .tmf-field.location.phone-1 a::before {
  content: '\f879';
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  transform: rotate(10deg);
  color: var(--primary);
  font-size: 14px;
  font-family: var(--font-awesome);
  font-weight: 600;
}
#header .tmf-field.location.email::before {
  content: '\f0e0';
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  color: var(--primary);
  font-size: 16px;
  font-family: var(--font-awesome);
  font-weight: 600;
}
#header .desktop-view .tmf-module-content a {
  text-decoration: none;
  font-weight: 400;
}
#header .desktop-view .tmf-module-content a:hover {
  /* text-decoration: underline; */
  color: var(--accent);
  font-weight: 400;
}

@media screen and (max-width: 1200px) {
  .home #header-wrapper {
    padding: 20px 0;
  }
  #header-cell-1 {
    margin-bottom: 0;
  }
  #header-cell-2 {
    padding-top: 0;
  }
  #header-cell-2 .inner {
    padding: 0;
    display: block;
  }
  .header-top-row {
    display: table;
    width: 100%;
  }
  #header .main-logo {
    display: table-cell;
    vertical-align: top;
  }
  #header .main-logo {
    width: 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) {
  #header-wrapper {
    background: #f8f7f2;
    padding: 10px 0;
  }
  .home #header-wrapper {
    background: #fff;
    position: static;
  }
  #header-cell-1 .inner {
    padding-right: 25px;
  }
  #header .main-logo {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 0 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: 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:hover {
  color: var(--accent);
}
#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: 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: var(--secondary);
  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 Mobile Header Bottom Section
* ======================================== */
#mobile-header-bottom {
  padding: 15px 0 15px;
}
#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: var(--primary);
  padding-left: 15px;
}

/* links */
#mobile-nav .menu > .menu-item > a {
  color: var(--primary);
  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 .mobile-menu .current-menu-item a {
  color: var(--accent);
}
#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;
}
.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 bottom/cover;
  min-height: 393px;
}
#int-title-wrapper .title-arrow {
  display: none;
}
#int-title {
  padding: 50px 25px;
  min-height: 393px;
  display: flex;
  align-items: center;
}
#int-title h1#page-title {
  margin-bottom: 0;
  color: #fff;
}

@media screen and (max-width: 950px) {
  #int-title-wrapper {
    min-height: 350px;
  }
  #int-title {
    min-height: 350px;
  }
}

@media screen and (max-width: 700px) {
  #int-title-wrapper {
    min-height: unset;
  }
  #int-title {
    min-height: unset;
  }
}

@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: 100px 0;
}

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

/* --- cell 2 ---- */
#home-body-cell-2 {
  width: 550px;
}
body #home-body-cell-2 .tmf-module-22 {
  background: url('../images/home_intro_contact_form_bg_3x.jpg') no-repeat;
  background-size: 100% 100%;
  margin-top: -80px;
  padding: 80px 20px;
}
body #home-body-cell-2 .tmf-module-22 h3 {
  max-width: 295px;
  margin: 45px 35px 15px auto;
}
body #home-body-cell-2 .tmf-module-22 .tmf-module-content {
  max-width: 295px;
  margin: 0 35px 0 auto;
}

@media screen and (max-width: 1050px) {
  #home-body-cell-2 {
    margin: 0 auto 0 100px;
  }
  body #home-body-cell-2 .tmf-module-22 {
    margin-top: 0;
  }
}

@media screen and (max-width: 960px) {
  #home-body-cell-2 {
    margin: 0 auto 0 70px;
  }
}

@media screen and (max-width: 875px) {
  #home-body-cell-2 {
    margin: 0 auto 0 50px;
  }
}

@media screen and (max-width: 800px) {
  #home-body-cell-2 {
    margin: 0 auto 0 20px;
  }
}

@media screen and (max-width: 700px) {
  #home-body-cell-2 {
    width: 100%;
    margin: 0 auto;
  }
  body #home-body-cell-2 .tmf-module-22 {
    background: url('../images/int_sidebar_contact_form_bg_3x.jpg') no-repeat;
    background-size: 100% 100%;
    margin-top: 25px;
    padding: 65px 55px;
  }
  body #home-body-cell-2 .tmf-module-22 h3 {
    max-width: unset;
    margin: 0 0 25px;
    font-size: 35px;
  }
  body #home-body-cell-2 .tmf-module-22 .tmf-module-content {
    max-width: 400px;
    margin: 0 auto;
  }
}

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

@media screen and (max-width: 450px) {
  body #home-body-cell-2 .tmf-module-22 {
    padding: 65px 50px;
  }
}

/* -------------------------
* Page Body Section
* ------------------------- */
#body-wrapper {
  padding: 50px 0;
  overflow: hidden;
}
/* --- 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: 100px 0 50px;
}

@media screen and (max-width: 950px) {
  .single-attorney #body-wrapper {
    padding: 50px 0;
  }
}

/* -------------------------
* Practice area Body Section
* ------------------------- */
.single-practice-area #body-wrapper {
  padding: 100px 0 50px;
}

/* --- cell 2 ---- */
.single-practice-area #body-cell-2 {
  width: 500px;
}
.single-practice-area #body-cell-2 .inner {
  width: 450px;
  margin-left: auto;
  margin-top: 180px;
}

@media screen and (max-width: 1050px) {
  .single-practice-area #body-wrapper {
    padding: 50px 0 50px;
  }
  .single-practice-area #body-cell-2 .inner {
    margin-top: 0;
    margin-left: unset;
    width: 100%;
  }
  .single-practice-area #body-cell-2 {
    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;
  background: linear-gradient(to bottom, #f9f7f2, #f9f7f2 83%, #fff 17%, #fff);
}
#billboard-container {
  max-width: 1800px;
}
#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 .billboard-content .tmf-module-content {
  max-width: fit-content;
  text-align: center;
  /* margin: 0 0 0 auto; */
  margin: 0 110px 0 auto;
}
#billboard h1 {
  margin: 0;
  text-transform: uppercase;
  /* font-size: 75px; */
  font-size: 85px;
}
#billboard h1::after {
  content: '';
  display: block;
  width: 368px;
  height: 2px;
  background: url('../images/int_sidebar_line_3x.png') no-repeat;
  background-size: cover;
  margin: 30px auto 0;
  text-align: center;
}
#billboard h1 span {
  /* font-size: 96px; */
  font-size: 106px;
}
.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: 1500px) {
  #billboard .billboard-content .tmf-module-content {
    margin: 0 80px 0 auto;
  }
}

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

@media screen and (max-width: 1300px) {
  #billboard h1 {
    font-size: 65px;
  }
  #billboard h1 span {
    font-size: 86px;
  }
  #billboard .billboard-content .tmf-module-content {
    margin: 0 50px 0 auto;
  }
}

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

@media screen and (max-width: 1150px) {
  #billboard h1 {
    font-size: 55px;
  }
  #billboard h1 span {
    font-size: 76px;
  }
  #billboard .billboard-content .tmf-module-content {
    margin: 0 30px 0 auto;
  }
}

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

@media screen and (max-width: 950px) {
  #billboard .billboard-content-container {
    transform: inherit;
    padding: 25px;
    width: 100%;
    max-width: 100%;
    top: unset;
    position: static;
    background: #f8f7f2;
  }
  #billboard .billboard-content {
    background: transparent;
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
  }
  #billboard .billboard-content .tmf-module-content {
    margin: 0 auto;
  }
  #billboard h1 {
    font-size: 75px;
  }
  #billboard h1 span {
    font-size: 96px;
  }
  #billboard h1::after {
    width: 368px;
    margin: 20px auto 0;
  }
}

@media screen and (max-width: 700px) {
  #billboard h1 {
    font-size: 50px;
  }
  #billboard h1 span {
    font-size: 80px;
  }
}

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

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

/*---------------------------
*   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;
}
#billboard .slide {
  width: 100%;
  height: auto;
}
#billboard .slide img {
  display: block;
  width: 100%;
  height: auto;
}
#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 (max-width: 950px) {
  #billboard .desktop-view {
    display: none;
  }
  #billboard .mobile-view {
    display: block;
  }
  #billboard .slide img {
    object-position: top;
  }
}

/* #endregion Billboard */

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

/* --- cell 1 --- */
#home-practice-areas-cell-1 .sub-title {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
#home-practice-areas-cell-1 h2 {
  margin: 0 0 50px;
  color: #101010;
}
#home-practice-areas-cell-1 h2::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  height: 55px;
  background: url('../images/home_practice_area_line_element_3x.png') no-repeat;
  background-size: cover;
  background-position: right center;
  margin-left: 25px;
}
#home-practice-areas .tmf-post .pa-img {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--secondary);
}
#home-practice-areas .tmf-post a {
  text-decoration: none;
  color: var(--secondary);
}
#home-practice-areas .tmf-post .pa-img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
#home-practice-areas .tmf-post .pa-title {
  border: 1px solid var(--secondary);
  border-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  transition: all 0.2s ease-in;
}
#home-practice-areas .tmf-post .title {
  color: var(--secondary);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2.55px;
  line-height: 29.75px;
  font-family: var(--body-font);
  text-transform: uppercase;
  text-align: left;
  /* line-height: 1.2; */
}
#home-practice-areas .tmf-post .pa-arrow {
  width: 15px;
  height: 12px;
  background: url('../images/bloomlegalcoach_icon_sprite_3x.png') no-repeat;
  background-size: 400px;
  background-position: -155px 0;
  flex-shrink: 0;
}
#home-practice-areas .tmf-post:hover .pa-title {
  background: var(--accent);
}
#home-practice-areas .tmf-post:hover {
  cursor: pointer;
}
#home-practice-areas .tmf-post:hover .pa-img::after {
  height: 100%;
}

@media screen and (max-width: 1501px) {
  #home-practice-areas-cell-1 h2::after {
    width: 45%;
  }
}

@media screen and (max-width: 1375px) {
  #home-practice-areas-cell-1 h2::after {
    width: 40%;
  }
}

@media screen and (max-width: 1251px) {
  #home-practice-areas-cell-1 h2::after {
    width: 35%;
  }
}

@media screen and (max-width: 1175px) {
  #home-practice-areas-cell-1 h2::after {
    width: 30%;
  }
}

@media screen and (max-width: 1100px) {
  #home-practice-areas-cell-1 h2::after {
    width: 25%;
  }
}

@media screen and (max-width: 1030px) {
  #home-practice-areas-cell-1 h2::after {
    width: 20%;
  }
}

@media screen and (max-width: 970px) {
  #home-practice-areas-cell-1 h2::after {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 950px) {
  #home-practice-areas .tmf-post .title {
    line-height: 1.2;
  }
}

@media screen and (max-width: 500px) {
  #home-practice-areas-wrapper {
    padding: 0;
  }
  #home-practice-areas-container {
    max-width: 100%;
  }
  #home-practice-areas-cell-1 .sub-title {
    font-size: 18px;
  }
}

/* #endregion Home Practice Areas Section */

/* -------------------------
* #region Home Attorney Section
* ------------------------- */
#home-attorney-wrapper {
  background: url('../images/home_meet_the_team_bg_3x.jpg') no-repeat top/cover;
  padding: 100px 0;
}

/* --- cell 1 --- */
#home-attorney-cell-1 .sub-title {
  text-align: center;
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 100px;
}
#home-attorney-cell-1 h2 {
  text-align: center;
  margin: 0 0 50px;
  color: #101010;
  font-size: 50px;
}
#home-attorney-cell-1 .tmf-post-list {
  display: flex;
/*   gap: 25px; */
    gap: 5px;
/*   justify-content: space-between; */
  justify-content: space-evenly;
  min-height: 550px;
}
#home-attorney-cell-1 .tmf-post {
  padding: 0;
  margin: 0;
  border: 0;
}
#home-attorney-cell-1 .tmf-post:nth-of-type(even) {
  align-self: flex-end;
}
#home-attorney-cell-1 .tmf-post a {
  text-decoration: none;
  transition: color 0.2s ease-in;
}
#home-attorney-cell-1 .tmf-post:hover a {
  color: var(--accent);
}
#home-attorney-cell-1 .tmf-post .at-wrapper {
  display: flex;
  gap: 15px;
}
#home-attorney-cell-1 .tmf-post img {
  border-radius: 200px;
}
#home-attorney-cell-1 .tmf-post .at-title {
  writing-mode: vertical-rl;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
}
#home-attorney-cell-1 .tmf-post .title {
  color: var(--secondary);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 3.45px;
  text-transform: uppercase;
}
#home-attorney-cell-1 .tmf-post .attorney-titles,
#home-attorney-cell-1 .tmf-post .attorney-titles a {
  color: #294751;
  font-size: 17px;
  font-weight: 400;
}

@media screen and (max-width: 1610px) {
  #home-attorney-cell-1 .tmf-post img {
    width: 180px;
    height: auto;
    display: block;
  }
}

@media screen and (max-width: 1410px) {
  #home-attorney-cell-1 .tmf-post img {
    width: 150px;
    height: auto;
    display: block;
  }
}

@media screen and (max-width: 1300px) {
  #home-attorney-cell-1 .tmf-post-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    max-width: 700px;
    margin: 150px auto 100px;
  }
  #home-attorney-cell-1 .tmf-post:nth-of-type(odd) {
    position: relative;
    bottom: 100px;
  }
  #home-attorney-cell-1 .tmf-post:nth-of-type(even) {
    position: relative;
    top: 100px;
  }
}

@media screen and (max-width: 700px) {
  #home-attorney-cell-1 .tmf-post-list {
    margin: 50px 0;
  }
  #home-attorney-cell-1 .tmf-post:nth-of-type(odd) {
    bottom: unset;
    align-self: flex-start;
  }
  #home-attorney-cell-1 .tmf-post:nth-of-type(even) {
    top: unset;
    align-self: flex-start;
  }
  #home-attorney-cell-1 .tmf-post a {
    display: block;
  }
  #home-attorney-cell-1 .tmf-post img {
    width: 150px;
    height: auto;
    display: block;
  }
  #home-attorney-cell-1 .tmf-post .title {
    font-size: 17px;
  }
  #home-attorney-cell-1 .tmf-post .attorney-titles,
  #home-attorney-cell-1 .tmf-post .attorney-titles a {
    font-size: 15px;
  }
}

@media screen and (max-width: 650px) {
  #home-attorney-cell-1 h2 {
    font-size: 38px;
  }
}

@media screen and (max-width: 500px) {
  #home-attorney-wrapper {
    padding: 50px 0;
  }
  #home-attorney-container {
    max-width: 100%;
  }
  #home-attorney-cell-1 .tmf-post-list {
    grid-template-columns: 1fr;
    gap: 50px;
    margin: 0 auto;
  }
  #home-attorney-cell-1 .sub-title {
    font-size: 18px;
  }
}

/* #endregion Home Attorney Section */

/** -------------------------
** #region Home Associations Section
** ------------------------- */
#associations-wrapper {
  background: url('../images/home_awards_bg_3x.jpg') no-repeat center/cover;
  padding: 50px 0;
}

/* --- cell 1 --- */
#associations-cell-1 {
  vertical-align: middle;
}
#associations-cell-1 h2 {
  color: #fff;
}

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

@media screen and (max-width: 950px) {
  #associations-cell-1 h2 {
    text-align: center;
  }
}

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

/* #endregion Home Associations Section */

/* -------------------------
* #region Home Why Us Section
* ------------------------- */
#home-why-us-wrapper {
  background: url('../images/home_why_choose_us_bg_3x.jpg') no-repeat bottom/cover;
  padding: 150px 0;
}

/* --- cell 1 --- */
#home-why-us-cell-1 .sub-title {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
#home-why-us-cell-1 h2 {
  margin-bottom: 30px;
  margin-top: 0;
}
#home-why-us-cell-1 h2::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 45%;
  height: 56px;
  background: url('../images/home_why_choose_us_upper_line_element_3x.png') no-repeat;
  background-size: cover;
  background-position: right center;
  margin-left: 25px;
}
#home-why-us-cell-1 .content {
  display: flex;
  margin-bottom: 50px;
  gap: 120px;
}
#home-why-us-cell-1 .tmf-module-content::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: url('../images/home_why_choose_us_bottom_line_element_3x.png') no-repeat;
  background-size: cover;
  margin: 30px auto 100px;
  text-align: center;
}
#home-why-us-cell-1 .content .left {
  width: auto;
  max-width: 706px;
  text-align: justify;
}
#home-why-us-cell-1 .content .right {
  width: 450px;
  flex-shrink: 0;
}
#home-why-us-cell-1 .content .right ul {
  padding-left: 0;
  margin: 0;
}

#home-why-us-cell-1 .content .right li {
  color: var(--secondary);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  display: flex;
  gap: 15px;
}
#home-why-us-cell-1 .content .right li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background: url(../images/bloomlegalcoach_icon_sprite_3x.png) no-repeat;
  background-size: 350px;
  background-position: -216px 0px;
  width: 19px;
  height: 9px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 7px;
}

/* --- cell 2 --- */

@media screen and (max-width: 1751px) {
  #home-why-us-cell-1 h2::after {
    width: 40%;
  }
}

@media screen and (max-width: 1640px) {
  #home-why-us-cell-1 h2::after {
    width: 35%;
  }
}

@media screen and (max-width: 1520px) {
  #home-why-us-cell-1 h2::after {
    width: 30%;
  }
}

@media screen and (max-width: 1420px) {
  #home-why-us-cell-1 h2::after {
    width: 25%;
  }
}

@media screen and (max-width: 1325px) {
  #home-why-us-cell-1 h2::after {
    width: 20%;
  }
}

@media screen and (max-width: 1250px) {
  #home-why-us-cell-1 h2::after {
    width: 100%;
    margin-left: 0;
    height: 80px;
    background-size: contain;
  }
  #home-why-us-cell-1 .content {
    gap: 60px;
  }
}

@media screen and (max-width: 1050px) {
  #home-why-us-wrapper {
    padding: 100px 0;
  }
  #home-why-us-cell-1 .content {
    display: block;
  }
  #home-why-us-cell-1 .content .right {
    width: 100%;
    margin-top: 50px;
  }
  #home-why-us-cell-1 .content .right ul {
    padding-left: 20px;
  }
}

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

/* #endregion Home Why Us Section */

/* -------------------------
* #region Home Testimonials Section
* ------------------------- */
#testimonials-wrapper {
  padding: 100px 0;
}

/* --- cell 1 --- */
#testimonials-cell-1 {
  width: auto;
}
#testimonials-cell-1 img {
  width: 100%;
  height: auto;
  max-width: 473px;
}

/* --- cell 2 --- */
#testimonials-cell-2 {
  width: 850px;
}
#testimonials-cell-2 .inner {
  background: url('../images/home_testimonials_text_bg_3x.jpg') no-repeat;
  background-size: 100% 100%;
  padding: 100px 0;
}
#testimonials .tmf-module-content {
  max-width: 579px;
  margin: 0 100px 0 150px;
  padding: 50px 20px;
}
#testimonials .sub-title {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
#testimonials h2 {
  margin: 0 0 25px;
}
#testimonials .tmf-post.testimonial.small .excerpt {
  max-width: 100%;
  text-align: left;
}

/** bx slider controls */
#testimonials .bx-wrapper .bx-controls-direction {
  position: absolute;
  bottom: -150px;
  right: 0;
}
#testimonials .bx-wrapper .bx-controls-direction span {
  position: absolute;
  top: unset;
  bottom: -90%;
  outline: 0;
  width: 30px;
  height: 28px;
  font-size: 0;
  color: #c5c5c5;
  z-index: unset;
  cursor: pointer;
}
#testimonials .bx-wrapper .bx-prev {
  left: unset;
  right: 0px;
}
#testimonials .bx-wrapper .bx-next {
  right: -65px;
}
#testimonials .bx-wrapper .bx-prev::before,
#testimonials .bx-wrapper .bx-next::before {
  content: '';
  display: inline-block;
  transition: unset;
  background: url(../images/bloomlegalcoach_icon_sprite_3x.png) no-repeat;
  background-size: 350px;
  width: 27px;
  height: 21px;
  transform: unset;
}
#testimonials .bx-wrapper .bx-prev::before {
  background-position: -80px -54px;
}
#testimonials .bx-wrapper .bx-next::before {
  background-position: -132px -54px;
}
#testimonials .bx-wrapper .bx-prev:hover::before {
  background-position: -187px -54px;
}
#testimonials .bx-wrapper .bx-next:hover::before {
  background-position: -240px -54px;
}

/** bx slider pager */
#testimonials body .bx-wrapper .bx-pager {
  text-align: center;
  font-size: 0.85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 25px;
}
#testimonials .bx-wrapper .bx-pager.bx-default-pager span {
  background: #000;
  border: 0;
  text-indent: -9999px;
  cursor: pointer;
  border-radius: 15px;
  margin: 0 5px;
  display: flex;
  align-items: center;
}
#testimonials .bx-wrapper .bx-pager.bx-default-pager span:hover,
#testimonials .bx-wrapper .bx-pager.bx-default-pager span.active {
  background: #000;
  border: 0;
}

@media screen and (max-width: 1450px) {
  #testimonials-cell-2 {
    width: 750px;
  }
  #testimonials .tmf-module-content {
    max-width: 530px;
    margin: 0 80px 0 130px;
    padding: 40px 20px 50px;
  }
  #testimonials .bx-wrapper .bx-controls-direction {
    right: 25px;
  }
}

@media screen and (max-width: 1375px) {
  #testimonials-cell-2 {
    width: 700px;
  }
  #testimonials .tmf-module-content {
    max-width: 495px;
    margin: 0 80px 0 117px;
    padding: 40px 20px 50px;
  }
}

@media screen and (max-width: 1250px) {
  #testimonials-cell-1 {
    vertical-align: middle;
  }
  #testimonials-cell-2 {
    width: 600px;
  }
  #testimonials .tmf-module-content {
    /* max-width: 495px;
    margin: 0 73px 0 100px;
    padding: 40px 20px 50px; */
    max-width: 380px;
    margin: 0 auto 0 128px;
    padding: 40px 20px 50px;
  }
  #testimonials h2 {
    font-size: 35px;
  }
  #testimonials-cell-2 .inner {
    background: url('../images/home_testimonials_text_bg_600_3x.jpg') no-repeat;
    background-size: 100% 100%;
    padding: 100px 0;
  }
}

@media screen and (max-width: 1050px) {
  #testimonials-row {
    display: flex;
    flex-direction: column-reverse;
  }
  #testimonials-cell-1 {
    padding-top: 50px;
  }
  #testimonials-cell-1 img {
    display: block;
    margin: 0 auto;
  }
  #testimonials-cell-2 {
    width: 850px;
    margin: 0 auto;
    padding-top: 0;
  }
  #testimonials h2 {
    font-size: 50px;
  }
  #testimonials .tmf-module-content {
    max-width: 579px;
    margin: 0 100px 0 150px;
    padding: 50px 20px;
  }
  #testimonials .bx-wrapper .bx-controls-direction {
    right: 0;
  }
  #testimonials-cell-2 .inner {
    background: url('../images/home_testimonials_text_bg_3x.jpg') no-repeat;
    background-size: 100% 100%;
    padding: 100px 0;
  }
}

@media screen and (max-width: 960px) {
  #testimonials-cell-2 {
    width: 750px;
  }
  #testimonials .tmf-module-content {
    max-width: 530px;
    margin: 0 80px 0 130px;
    padding: 40px 20px 50px;
  }
  #testimonials .bx-wrapper .bx-controls-direction {
    right: 25px;
  }
}

@media screen and (max-width: 860px) {
  #testimonials-cell-2 {
    width: 700px;
  }
  #testimonials .tmf-module-content {
    max-width: 495px;
    margin: 0 80px 0 117px;
    padding: 40px 20px 50px;
  }
}

@media screen and (max-width: 800px) {
  #testimonials-cell-2 {
    width: 600px;
  }
  /* #testimonials .tmf-module-content {
    max-width: 495px;
    margin: 0 73px 0 100px;
    padding: 40px 20px 50px;
  } */
  #testimonials h2 {
    font-size: 40px;
  }
  #testimonials .tmf-module-content {
    max-width: unset;
    margin: 0 auto;
    padding: 50px 45px;
  }
  #testimonials-cell-2 .inner {
    background: url('../images/mobile-testimonial-bg.jpg') no-repeat;
    background-size: 100% 100%;
    padding: 0;
  }
  #testimonials-row {
    gap: 130px;
  }
  #testimonials .bx-wrapper .bx-controls-direction {
    right: 53%;
    transform: translateX(-50%);
  }
  /* #testimonials-cell-2 {
    width: 100%;
  } */
  #testimonials-wrapper {
    padding: 50px 0 100px;
  }
}

@media screen and (max-width: 700px) {
  /* #testimonials-wrapper {
    padding: 50px 0 100px;
  } */

  #testimonials-cell-2 {
    width: 100%;
  }
  /* #testimonials .tmf-module-content {
    max-width: unset;
    margin: 0 auto;
    padding: 50px 45px;
  }
  #testimonials-cell-2 .inner {
    background: url('../images/mobile-testimonial-bg.jpg') no-repeat;
    background-size: 100% 100%;
    padding: 0;
  }
  #testimonials .bx-wrapper .bx-controls-direction {
    right: 53%;
    transform: translateX(-50%);
  } */
}

@media screen and (max-width: 550px) {
  #testimonials h2 {
    font-size: 35px;
  }
}

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

/* #endregion Home Testimonials Section */

/* -------------------------
* #region Home Blog Section
* ------------------------- */
#home-blog-wrapper {
  background: url('../images/home_posts_bg_3x.jpg') no-repeat center/cover;
  padding: 200px 0;
}

/* --- cell 1 --- */
#home-blog-cell-1 {
  vertical-align: middle;
}
#home-blog-cell-1 .sub-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
#home-blog-cell-1 .tmf-post {
  padding: 0;
  margin: 0;
  border: 0;
  max-width: 830px;
}
#home-blog-cell-1 .title h2 {
  color: #fff;
}
#home-blog-cell-1 .excerpt {
  color: #fff;
}
#home-blog-cell-1 .excerpt a {
  color: #fff;
}
#home-blog-cell-1 .excerpt a.read-more {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
#home-blog-cell-1 .excerpt a.read-more:hover {
  text-decoration: underline;
}

/** slider  */
#home-blog .bx-wrapper {
  margin-bottom: 0 !important;
}
#home-blog .bx-wrapper .bx-controls-direction {
  margin-top: 35px;
}
#home-blog .bx-wrapper .bx-controls-direction span {
  position: relative;
  top: unset;
  bottom: 0;
  outline: 0;
  width: 30px;
  height: 28px;
  font-size: 0;
  color: #c5c5c5;
  z-index: unset;
  cursor: pointer;
}
#home-blog .bx-wrapper .bx-prev {
  left: 0px;
}
#home-blog .bx-wrapper .bx-next {
  left: 30px;
}
#home-blog .bx-wrapper .bx-prev::before,
#home-blog .bx-wrapper .bx-next::before {
  content: '';
  display: inline-block;
  transition: unset;
  background: url(../images/bloomlegalcoach_icon_sprite_3x.png) no-repeat;
  background-size: 400px;
  width: 27px;
  height: 21px;
  transform: unset;
}
#home-blog .bx-wrapper .bx-prev::before {
  background-position: 0 -32px;
}
#home-blog .bx-wrapper .bx-next::before {
  background-position: -29px -32px;
}
#home-blog .bx-wrapper .bx-prev:hover::before {
  background-size: 350px;
  background-position: -187px -54px;
}
#home-blog .bx-wrapper .bx-next:hover::before {
  background-size: 350px;
  background-position: -240px -54px;
}

@media screen and (max-width: 1350px) {
  #home-blog-cell-1 .tmf-post {
    max-width: 750px;
  }
}

@media screen and (max-width: 1250px) {
  #home-blog-cell-1 .tmf-post {
    max-width: 650px;
  }
}

@media screen and (max-width: 950px) {
  #home-blog-wrapper {
    padding: 100px 0;
    background-position: left;
  }
  #home-blog-cell-1 .tmf-post {
    max-width: 580px;
  }
}

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

/* #endregion Home Blog 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: url('../images/int_practice_area_hero_bg_3x.jpg') no-repeat bottom/cover;
}
#int-billboard-row {
  min-height: 568px;
}
#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-cell-1 {
  width: auto;
}
#int-billboard .int-billboard-content {
  position: absolute;
  max-width: 90%;
  left: 25px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
}
#int-billboard .int-billboard-title {
  position: relative;
  padding: 0;
}
#int-billboard h1 {
  display: inline-block;
  margin-bottom: 0;
  color: #fff;
  font-size: 70px;
}
#int-billboard-cell-1 #breadcrumbs a {
  color: #fff;
}

/* --- cell 2 --- */
#int-billboard-cell-2 {
  width: 500px;
  position: relative;
}
#int-billboard-cell-2 .inner {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
#int-billboard .int-billboard-img {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 0px 0px 246px 246px;
  border: 10px solid #fff;
  border-top: 0;
}

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

@media screen and (max-width: 1350px) {
  #int-billboard h1 {
    font-size: 60px;
  }
}

@media screen and (max-width: 1050px) {
  #int-billboard-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column-reverse;
  }
  #int-billboard .int-billboard-img {
    border-radius: 0px 0px 100% 100%;
    margin: 0 auto;
    max-height: 500px;
    object-position: bottom;
  }
  #int-billboard .int-billboard-content {
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    position: static;
  }
  #int-billboard-cell-1 {
    padding-top: 50px !important;
    padding-bottom: 50px;
  }
  #int-billboard-cell-1 .inner {
    height: auto;
  }
  #int-billboard #int-billboard-cell-2 {
    padding: 0 25px;
  }
  #int-billboard-cell-2 {
    width: 100%;
  }
  #int-billboard-cell-2 .inner {
    position: relative;
    width: 100%;
    right: 0;
  }
}

@media screen and (max-width: 950px) {
  #int-billboard-row {
    min-height: unset;
  }
  #int-billboard-cell-1 .inner {
    padding: 0 25px;
  }
  #int-billboard .int-billboard-img {
    position: static;
    margin: 0 auto;
    width: 100%;
    height: auto;
  }
  #int-billboard h1 {
    font-size: 50px;
    line-height: 1.3;
  }
}

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

@media screen and (max-width: 500px) {
  #int-billboard-container {
    max-width: 100% !important;
  }
  #int-billboard h1 {
    font-size: 45px;
    line-height: 1.3;
  }
  #int-billboard .int-billboard-img {
    max-height: 400px;
  }
}

@media screen and (max-width: 400px) {
  #int-billboard .int-billboard-img {
    max-height: 300px;
  }
}

/* #endregion Int-billboard */
/* #endregion Single Practice Areas Pages */

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

/* ------ cell 1 ------ */
#attorney-bio img {
  display: block;
  margin-top: 50px;
  border-radius: 150px;
  border: 10px solid #fff;
}

/* ------ cell 2 ------ */
#attorney-bio-cell-2 .inner {
  min-height: 475px;
  display: flex;
  align-items: center;
}
.attorney-bio-info .title-section {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 15px;
}
.attorney-bio-info h1 {
  margin-bottom: 0;
  font-style: normal;
  min-width: fit-content;
  padding-right: 12px;
  color: #fff;
}
.attorney-bio-info .attorney-titles,
.attorney-bio-info .attorney-titles a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--body-font);
  text-transform: uppercase;
  letter-spacing: 3.6px;
}
.attorney-bio-info .contact-information a,
.attorney-bio-info .speaking a {
  color: #fff;
  font-weight: 400;
}
.attorney-bio-info .contact-information a:hover {
  color: var(--accent);
  text-decoration: none;
}
.attorney-bio-info .consult,
.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 .consultation::before {
  content: '';
  display: inline-block;
  vertical-align: sub;
  background: url('../images/bloomlegalcoach_icon_sprite_3x.png') no-repeat;
  background-size: 350px;
  background-position: -1px -54px;
  width: 14px;
  height: 18px;
  margin-right: 7px;
}
.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: #f8f7f2;
  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: 65px;
  }
}

@media screen and (max-width: 1250px) {
  .attorney-bio-info .title-section {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    flex-direction: column;
  }
  .attorney-bio-info h1#page-title {
    border: 0;
    padding: 0;
  }
}

@media screen and (max-width: 1150px) {
  .attorney-contact-info {
    flex-direction: column;
    align-items: start;
  }
  .attorney-bio-info .contact-information {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  #attorney-bio-wrapper {
    height: auto;
  }
  #attorney-bio img {
    margin-top: 0;
    position: relative;
    bottom: -50px;
  }
}

@media screen and (max-width: 950px) {
  #attorney-bio-row {
    display: flex;
    flex-direction: column;
  }
  #attorney-bio img {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    border-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    bottom: unset;
  }
  #attorney-bio-cell-2 .inner {
    min-height: auto;
  }
  .attorney-bio-info .attorney-page-title .title-section {
    justify-content: center;
    text-align: center;
    align-items: center;
    gap: 15px;
  }
  .attorney-bio-info {
    width: 100%;
    display: block;
    padding: 25px 0 70px;
  }
  .attorney-bio-info .contact-information {
    align-items: center;
    gap: 15px;
  }
  .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 Blog Post
 * -------------------------------------- */
.single-post #int-title h1 {
  font-size: 65px;
}

/* #endregion Single Blog Post/

/* #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;
}

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

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

/* #endregion All Archives*/

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

/* --- Cell 1 --- */
#footer fieldset {
  border: 1px solid #fff;
  position: relative;
}
#footer fieldset legend {
  padding: 0 50px 0 0;
  margin-left: -1px;
  background: var(--secondary);
  position: relative;
}
#footer fieldset legend::before {
  content: '';
  width: 100%;
  height: 25px;
  background: var(--secondary);
  display: inline-block;
  position: absolute;
  bottom: -25px;
  left: 0;
}
#footer fieldset .footer-img {
  position: absolute;
  top: -149px;
  top: -139px;
  right: -70px;
  display: inline-block;
  z-index: 1;
}
#footer fieldset .footer-img img {
  z-index: 1;
  position: relative;
}
#footer fieldset .footer-img::before {
  content: '';
  width: 100px;
  height: 206px;
  background: var(--secondary);
  display: inline-block;
  position: absolute;
  bottom: -12px;
  left: 19px;
}
#footer-cell-1 h3 {
  color: #fff;
  font-family: var(--heading-font);
  font-size: 57px;
  font-weight: 400;
  line-height: 1.1em;
  margin: 0;
}
#footer-cell-1 .business-info {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding: 60px 50px 85px;
  padding: 85px 50px 85px;
}
#footer-cell-1 .business-info .contact-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#footer-cell-1 .address {
  display: flex;
  gap: 5px;
  min-height: 29px;
}
#footer-cell-1 .business-info .address,
#footer-cell-1 .business-info .fax .value,
#footer-cell-1 .business-info .phone-1 .value a,
#footer-cell-1 .business-info .phone-2 .value a,
#footer-cell-1 .business-info .email .value {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
#footer-cell-1 .business-info .phone-1 .value a:hover,
#footer-cell-1 .business-info .phone-2 .value a:hover {
  color: var(--accent);
  text-decoration: none;
}
#footer-cell-1 .address::before,
#footer-cell-1 .tmf-post.small.location .streetAddress::before,
#footer-cell-1 .tmf-post.small.location .fax::before,
#footer-cell-1 .tmf-post.small.location .phone-1::before,
#footer-cell-1 .tmf-post.small.location .phone-2::before,
#footer-cell-1 .tmf-post.small.location .email::before {
  color: var(--accent);
  display: inline-block;
  vertical-align: top;
  font-family: var(--font-awesome);
  font-size: 18px;
  font-weight: 700;
  margin-right: 10px;
}
#footer-cell-1 .tmf-post.small.location .phone-1::before {
  margin-right: 8px;
}
#footer-cell-1 .address::before {
  content: '';
  background: url('../images/bloomlegalcoach_icon_sprite_3x.png') no-repeat;
  background-size: 400px;
  background-position: -60px -30px;
  width: 16px;
  height: 22px;
  flex-shrink: 0;
}
#footer-cell-1 .phone-2::before {
  content: '\f3cd';
  transform: unset;
}
#footer-cell-1 .tmf-post.small.location .streetAddress {
  line-height: 22px;
  align-self: center;
}
#footer-cell-1 .tmf-post.small.location .streetAddress::before {
  display: none;
}
#footer-cell-1 .tmf-post.small.location .label {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

/* Socials */
#footer-cell-1 .footer-social a .label {
  font-size: 16px;
  font-weight: 400;
}
#footer-cell-1 .footer-social a:hover .label {
  /* text-decoration: underline; */
  color: var(--accent) !important;
}
#footer-cell-1 .footer-social .social-icons {
  gap: 20px;
  display: flex;
  flex-direction: column;
}
#footer-cell-1 .footer-social .social-icons .icon {
  background: none;
  width: 22px;
  height: 22px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
}
.social-icons .youtube::before,
.social-icons .instagram::before,
.social-icons .linked-in::before {
  display: inline-block;
  background: url('../images/bloomlegalcoach_icon_sprite_3x.png') no-repeat;
  background-size: 400px;
  width: 22px;
  height: 16px;
}
.social-icons .instagram::before {
  content: '';
  background-position: -215px -32px;
}
.social-icons .linked-in::before {
  content: '';
  background-position: -184px -32px;
}
.social-icons .youtube::before {
  content: '';
  background-position: -155px -32px;
  height: 15px;
}
#footer .payments {
  min-width: 225px;
}
#footer .payments .tmf-button {
  display: none;
}
#footer .payments .tmf-button:hover {
  color: #fff;
  border-color: #fff;
}

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

@media screen and (max-width: 1150px) {
  #footer-cell-1 .business-info {
    grid-template-columns: 2fr 1fr;
  }
  #footer .payments {
    margin-top: 25px;
  }
}

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

@media screen and (max-width: 950px) {
  #footer fieldset legend {
    padding: 0 40px 0 0;
  }
  #footer-cell-1 h3 {
    font-size: 45px;
  }
}

@media screen and (max-width: 750px) {
  #footer-wrapper {
    padding: 80px 0 25px;
  }
  #footer-cell-1 .inner {
    padding: 0 25px;
  }
  #footer-cell-1 .business-info {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 50px 50px 50px;
  }
  #footer-cell-1 .business-info .contact-links {
    flex-direction: column;
    gap: 20px;
  }
  #footer fieldset .footer-img {
    display: none;
  }
}

@media screen and (max-width: 650px) {
  #footer-cell-1 .business-info .streetAddress .address-2 {
    display: block;
  }
  #footer-cell-1 h3 {
    font-size: 30px;
  }
}

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

/* #endregion Footer Section */

/* ======================================== *
      #region Copyright Section
 * ======================================== */
#copyright-wrapper {
  overflow: hidden;
}
#copyright-container {
  max-width: 100%;
}
#copyright {
  padding: 80px 0 25px;
}
#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: #7b7b7b;
}

/* --- 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: 50px 0 25px;
  }
}
@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;
  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: var(--secondary);
  height: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 35px 35px 35px 15px !important;
  position: absolute;
  width: 290px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
  border-radius: 0px 149px 149px 0px;
  border: 10px solid #fff;
}
body #call-to-action .col.left::before {
  content: '';
  display: inline-block;
  background: var(--secondary);
  vertical-align: middle;
  width: 1000%;
  height: 100%;
  position: absolute;
  left: -1000%;
}
body #call-to-action .col.right {
  background: #f8f7f2;
  padding: 40px 35px;
  text-align: left;
  position: relative;
  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: 700;
  font-size: 20px;
  line-height: 1.3em;
  font-family: var(--body-font);
  text-align: left;
}
body #call-to-action .col p {
  color: #565656;
  font-weight: 700;
  font-size: 16px;
}
body #call-to-action .col p a {
  color: var(--primary) !important;
}
body #call-to-action .col .tmf-button {
  color: var(--secondary) !important;
  font-weight: 700;
  margin-top: 15px;
}
body #call-to-action .col .tmf-button:hover {
  color: var(--secondary) !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: 350px;
  margin: 15px;
  padding: 0 15px 0 50px;
  background: transparent;
  color: var(--secondary);
  font-family: var(--body-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
}
aside::before {
  content: '';
  display: inline-block;
  background: url('../images/int_callout_element_3x.png') no-repeat;
  background-size: 30px;
  width: 30px;
  height: 163px;
  position: absolute;
  left: 0;
  top: 0;
}
.editor-content aside h3,
.editor-content aside h4,
.editor-content aside p {
  font-family: var(--body-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--secondary);
}
@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 150px;
  margin: 35px 0;
  min-height: 168px;
}
#callout::before {
  content: '';
  display: inline-block;
  background: url('../images/int_cta1_icon_3x.png') no-repeat;
  background-size: 123px;
  width: 123px;
  height: 168px;
  position: absolute;
  left: 0;
  top: 0;
}
#callout h3,
#callout h4 {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 24px;
  color: var(--secondary);
  margin: 0;
  line-height: 1.4;
}
.editor-content #callout p {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 24px;
  color: var(--secondary);
  line-height: 1.4;
}
#callout a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
}
#callout a:hover {
  text-decoration: underline;
}

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

/* #endregion Callout */

/* -------------------------------------- *
      #region Callout Alt
 * -------------------------------------- */
#callout-alt {
  background: #f8f7f2;
  padding: 35px;
  margin-bottom: 25px;
}
#callout-alt p {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
}
#callout-alt ul {
  padding-left: 25px;
  margin-bottom: 0;
}
#callout-alt ul li {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
}
#callout-alt ul li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background: url(../images/bloomlegalcoach_icon_sprite_3x.png) no-repeat;
  background-size: 350px;
  background-position: -216px 0px;
  width: 19px;
  height: 9px;
  margin-right: 15px;
}

/* #endregion  Callout Alt */

/* -------------------------------------- *
      #region Blockquote
 * -------------------------------------- */
blockquote {
  color: var(--secondary);
  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;
}
#body-cell-2 .tmf-single-module-area::before {
  content: '';
  display: block;
  width: 250px;
  height: 2px;
  background: url('../images/int_sidebar_line_3x.png') no-repeat;
  background-size: 100%;
  margin: 50px auto 0;
}

/* #region For More information Form - sidebar */
body .tmf-module-22 {
  background: url('../images/int_sidebar_contact_form_bg_3x.jpg') no-repeat;
  background-size: 100% 100%;
  padding: 45px 45px;
  text-align: center;
  position: relative;
}
.single-attorney .tmf-multi-module-area::before {
  content: '';
  display: block;
  width: 250px;
  height: 2px;
  background: url('../images/int_sidebar_line_3x.png') no-repeat;
  background-size: 100%;
  margin: 50px auto;
}
.single-attorney #body-cell-2 .tmf-multi-module-area:nth-of-type(1):before {
  display: none;
}
body .tmf-module-22 h3 {
  color: #000;
  margin-bottom: 30px;
}

@media screen and (max-width: 1050px) {
  body.home .tmf-module-22 {
    position: relative;
  }
  body .tmf-module-22 {
    position: relative;
    padding: 45px 55px;
  }
  body .tmf-module-22 .tmf-module-content {
    max-width: 400px;
    margin: 0 auto;
  }
}

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

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

/* #region Practice Areas - sidebar */
.tmf-module-251 {
  margin-top: 50px;
}
.tmf-module-251 .tmf-post {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 35px;
}
.tmf-module-251 .tmf-post-list {
  max-width: 80%;
  margin: 0 auto;
}
.tmf-module-251 .tmf-post:last-child {
  margin-bottom: 0;
}
.tmf-module-251 .pa-listing a {
  background: transparent;
  display: block;
  padding: 0 15px;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.15s ease-in;
}
.tmf-module-251 .pa-listing a .title {
  color: #565656;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  text-align: center;
  padding-bottom: 5px;
  transition: 0.15s ease-out;
  position: relative;
  text-transform: uppercase;
}
.tmf-module-251 .pa-listing a .title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0%;
  height: 0;
  margin: 0 auto;
  background-position: center bottom;
  transition: width 0.35s ease-out;
}
.tmf-module-251 .pa-listing a:hover .title::after {
  background-color: var(--accent);
  width: 100%;
  height: 2px;
}

/* #endregion Practice Areas - sidebar */

/* #region attorney sidebar - sidebar */
.tmf-module-249 {
  margin-top: 50px;
  text-align: center;
}
.tmf-module-249 h3 {
  margin-bottom: 15px;
}
.tmf-module-249 .tmf-post {
  padding: 0;
  margin: 0;
  border: 0;
  width: 250px !important;
  transform: translateX(-50%);
  left: 50%;
}
.tmf-module-249 img {
  display: block;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.tmf-module-249 .title a {
  color: var(--secondary);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 3.45px;
  text-transform: uppercase;
  text-decoration: none;
}
.tmf-module-249 .attorney-titles {
  color: var(--secondary);
  font-size: 17px;
}
/* bx slider */
.tmf-module-249 .bx-wrapper {
  margin-bottom: 0 !important;
}
.tmf-module-249 .bx-wrapper .bx-controls-direction span {
  top: 33%;
}
.tmf-module-249 .bx-wrapper .bx-prev {
  left: 30px;
}
.tmf-module-249 .bx-wrapper .bx-next {
  right: 30px;
}
.tmf-module-249 .bx-wrapper .bx-prev::before,
.tmf-module-249 .bx-wrapper .bx-next::before {
  content: '';
  display: inline-block;
  transition: unset;
  background: url(../images/bloomlegalcoach_icon_sprite_3x.png) no-repeat;
  background-size: 350px;
  width: 27px;
  height: 21px;
  transform: unset;
}
.tmf-module-249 .bx-wrapper .bx-prev::before {
  background-position: -80px -54px;
}
.tmf-module-249 .bx-wrapper .bx-next::before {
  background-position: -132px -54px;
}
.tmf-module-249 .bx-wrapper .bx-prev:hover::before {
  background-position: -187px -54px;
  transform: unset;
}
.tmf-module-249 .bx-wrapper .bx-next:hover::before {
  background-position: -240px -54px;
  transform: unset;
}

/* #endregion attorney sidebar */

/* #region testimonial sidebar */
.tmf-module-250 {
  margin-top: 50px;
  border: 1px solid var(--primary);
  border-radius: 5px;
  padding: 35px 25px;
  position: relative;
}
.tmf-module-250 h3 {
  color: #565656;
  text-align: center;
  max-width: 10ch;
  margin: 0 auto 15px;
}
.tmf-module-250 .tmf-post {
  text-align: center;
  padding-bottom: 0;
  margin-bottom: 0;
  border: 0;
}
.tmf-module-250 .tmf-post.testimonial .excerpt {
  font-size: 16px;
  color: #565656;
}
.tmf-module-250 .tmf-post.testimonial .testimonial-description {
  font-weight: 700;
  font-size: 16px;
  color: #565656;
}
.tmf-module-250 .btn-wrap {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 0 15px;
}
.tmf-module-250 .btn-wrap .tmf-button {
  padding: 5px 15px;
  min-width: max-content;
}

.tmf-module-250 .bx-wrapper .bx-pager.bx-default-pager span {
  background: #000;
  border: 0;
  text-indent: -9999px;
  cursor: pointer;
  border-radius: 15px;
  margin: 0 5px;
  display: flex;
  align-items: center;
}
.tmf-module-250 .bx-wrapper .bx-pager.bx-default-pager span:hover,
.tmf-module-250 .bx-wrapper .bx-pager.bx-default-pager span.active {
  background: #000;
  border: 0;
}

/* #endregion Testimonials - sidebar */

/* #region Attorney Badges - sidebar */
.attorney-sidebar-badges {
  margin-bottom: 50px;
}
.attorney-sidebar-badges .badge-list {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 250px;
  transform: translateX(-50%);
  left: 50%;
}
.attorney-sidebar-badges .bx-wrapper {
  margin: 0 auto !important;
}
.attorney-sidebar-badges .bx-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.attorney-sidebar-badges .bx-wrapper .bx-controls-direction span {
  top: 50%;
}
.attorney-sidebar-badges .bx-wrapper .bx-prev {
  left: 10px;
}
.attorney-sidebar-badges .bx-wrapper .bx-next {
  right: 10px;
}
.attorney-sidebar-badges .bx-wrapper .bx-prev::before,
.attorney-sidebar-badges .bx-wrapper .bx-next::before {
  content: '';
  display: inline-block;
  transition: unset;
  background: url(../images/bloomlegalcoach_icon_sprite_3x.png) no-repeat;
  background-size: 350px;
  width: 27px;
  height: 21px;
  transform: unset;
}
.attorney-sidebar-badges .bx-wrapper .bx-prev::before {
  background-position: -80px -54px;
}
.attorney-sidebar-badges .bx-wrapper .bx-next::before {
  background-position: -132px -54px;
}
.attorney-sidebar-badges .bx-wrapper .bx-prev:hover::before {
  background-position: -187px -54px;
  transform: unset;
}
.attorney-sidebar-badges .bx-wrapper .bx-next:hover::before {
  background-position: -240px -54px;
  transform: unset;
}

@media screen and (max-width: 1050px) {
  .attorney-sidebar-badges {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 500px) {
  .attorney-sidebar-badges .bx-wrapper .bx-prev {
    left: 0;
  }
  .attorney-sidebar-badges .bx-wrapper .bx-next {
    right: 0;
  }
}

/* #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;
}
.tmf-post.medium a.read-more-button:hover {
  color: var(--secondary);
}

/* all buttons */
.tmf-button,
input[type='submit'] {
  position: relative;
  display: inline-block;
  padding: 10px 25px;
  color: var(--secondary);
  text-align: center;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  line-height: normal;
  background: var(--accent);
  border: 2px solid var(--accent);
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.25s ease-in;
}
.tmf-button:hover,
input[type='submit']:hover {
  text-decoration: none;
  background: transparent;
  border-color: var(--secondary);
}
.tmf-button:active,
input[type='submit']:active {
  text-decoration: none;
  background: transparent;
  border-color: var(--secondary);
}

/* form button */
.gform_wrapper .tmf-button,
.gform_wrapper input[type='submit'] {
  min-width: 175px;
}

/* pagination buttons */
.page-navigation .tmf-button,
.page-navigation .page-numbers {
  background: var(--accent);
  border: 2px solid var(--accent);
  color: var(--secondary);
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  line-height: 31px;
  height: auto;
  transition: all 0.15s ease-in;
  text-transform: uppercase;
  letter-spacing: 2.4px;
}
.page-navigation .page-numbers:hover,
.page-navigation .page-numbers:active {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
.page-navigation .last.tmf-button {
  vertical-align: top;
  transform: unset;
}
.page-navigation .last.tmf-button:active,
.page-navigation .last.tmf-button:hover {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
.page-navigation .last.tmf-button::before,
.page-navigation .last.tmf-button::after {
  display: none;
}
.page-numbers.current {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
.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);
}

/* ----- 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: 15px;
  height: 15px;
  background: transparent;
  border: 2px solid var(--accent);
  text-indent: -9999px;
  display: block;
  transition: all 0.15s ease;
  cursor: pointer;
  border-radius: 15px;
  margin: 0 5px;
}
.bx-wrapper .bx-pager.bx-default-pager span:hover,
.bx-wrapper .bx-pager.bx-default-pager span.active {
  background: var(--accent);
  border: 2px solid var(--accent);
}

/* #endregion Miscellaneous */

/* ======================================== *
      #region Inputs & Gravity Forms
 * ======================================== */
:root {
  --input-bg: #fff;
  --input-txt: #333333;
  --input-placeholder: #a8a8a8;
  --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);
}
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;
}
.gform-field-label,
.gfield_label {
  color: #333333;
}
.gfield_description {
  color: #333333;
}
h2.gsection_title,
h3.gsection_title {
  color: #333333;
}
#field_1_5 {
  font-size: 14px;
  text-align: center;
  width: 80%;
  margin: 0 auto 20px !important;
  line-height: 1.3;
  color: #565656;
}
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;
  text-align: center;
}
.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 #790000;
}
/* 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: #790000;
  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: #790000;
  margin: 0 0 0.9375rem 0;
}
body .gform_legacy_markup_wrapper div.validation_error {
  color: #790000;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  border: none;
  padding: 0;
  clear: both;
  width: 100%;
  text-align: left;
}

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

@media screen and (max-width: 415px) {
  #field_1_5 {
    width: 100%;
  }
}

/* #endregion Inputs & Gravity Forms */
