/* ============================================================================ *
        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: #002d57;
  /* SECONDARY COLORS */
  --secondary: #f3f3f3;
  /* ACCENT COLORS */
  --accent: #649caf;
  /* FONTS */
  --heading-font: 'Besley', serif;
  --body-font: 'Nunito Sans', serif;
  --font-awesome-5-free: 'Font Awesome 5 Free';
  --font-awesome-5-pro: 'Font Awesome 5 Pro';
  --font-awesome-5-brands: 'Font Awesome 5 Brands';
  --font-awesome-6-free: 'Font Awesome 6 free';
  --font-awesome-6-pro: 'Font Awesome 6 Pro';
  --font-awesome-6-brands: 'Font Awesome 6 Brands';
}

body {
  background: #ffffff;
  color: #000000;
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 400;
}

a {
  color: var(--accent);
}

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

  #primary-nav-container {
    max-width: 1300px !important;
  }

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

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

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

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

/* ======================================== *
        Header 1
 * ======================================== */
h1,
h1#page-title,
.editor-content h1 {
  color: var(--primary);
  font-family: var(--heading-font);
  font-size: 65px;
  font-weight: 400;
  line-height: 1.1em;
  margin-bottom: 35px;
}

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

/* ======================================== *
        Header 2
 * ======================================== */
h2,
.tmf-post > h2,
.editor-content h2 {
  color: var(--primary);
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2em;
  margin-bottom: 15px;
}

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

h2 strong {
  font-weight: inherit;
}

@media screen and (max-width: 550px) {
  h2,
  .tmf-post > h2,
  .editor-content h2 {
    font-size: 30px;
  }
}

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

h3 a,
.tmf-post > h3 a,
h3.tmf-module-title a {
  color: var(--primary);
}

h3 a:hover,
.tmf-post > h3 a:hover,
h3.tmf-module-title a:hover {
}

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

/* ======================================== *
        Header 4
 * ======================================== */
h4,
.tmf-post > h4 {
  color: var(--primary);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1em;
  margin-bottom: 15px;
}

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

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

/* ======================================== *
        Header 5
 * ======================================== */
h5 {
  color: var(--primary);
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* ======================================== *
        Secondary Navigation Section
 * ======================================== */
#secondary-nav .menu {
}
#secondary-nav .menu > .menu-item {
}
#secondary-nav .menu > .menu-item.first {
}
#secondary-nav .menu > .menu-item.last {
}
#secondary-nav .menu > .menu-item > a {
}
#secondary-nav .menu > .menu-item:hover {
}
#secondary-nav .menu > .menu-item:hover a {
}
#secondary-nav .menu:hover > .menu-item.current-menu-item > a {
}

/* ======================================== *
        Sticky Header Area
 * ======================================== */
body #header-wrapper.sticky {
  -webkit-transition: all 0.33s cubic-bezier(0.694, 0.0482, 0.335, 1);
  -moz-transition: all 0.33s cubic-bezier(0.694, 0.0482, 0.335, 1);
  -o-transition: all 0.33s cubic-bezier(0.694, 0.0482, 0.335, 1);
  -ms-transition: all 0.33s cubic-bezier(0.694, 0.0482, 0.335, 1);
  transition: all 0.33s cubic-bezier(0.694, 0.0482, 0.335, 1);
  top: -90px;
  top: 0px;
  left: 0;
  position: fixed !important;
  -moz-background-clip: border;
  -webkit-background-clip: border;
  background-clip: border-box;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -moz-background-clip: content;
  -webkit-background-clip: content;
  background-clip: content-box;
  background: var(--primary);
  border-bottom: none;
  min-height: auto;
  width: 100%;
  z-index: 999999;
  -webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
  -moz-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}

body #header-wrapper.sticky.sticky_animate {
  top: 0;
}

body #header-wrapper.sticky #header-container {
  max-width: 1300px !important;
}

body #header-wrapper.sticky #header {
  padding: 15px 0;
}

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

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

body #header-wrapper.sticky #header .sticky-view-logo {
  display: block;
}

body #header-wrapper.sticky #header .sticky-logo {
  display: block;
  max-width: 117px;
  width: 100%;
  margin: 0 auto;
}

body #header-wrapper.sticky #header #primary-nav-container {
  max-width: 100% !important;
  margin: 0;
}

@media screen and (max-width: 1200px) {
  body #header-wrapper.sticky {
    position: relative !important;
  }
}

/* ======================================== *
        Header Top Section
 * ======================================== */
.logged-in #header-top-wrapper {
  top: 32px;
}

#header-top-wrapper {
  position: absolute;
  top: 0;
  z-index: 10;
  width: 100%;
}

#header-top-container {
  max-width: 1300px !important;
}

#header-top {
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
  line-height: 16px;
}

#header-top a {
  color: #ffffff;
  text-decoration: none;
}

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

#header-top .header-top-left {
  background: var(--accent);
  box-sizing: border-box;
  border-radius: 0 0 10px 0;
  max-width: 350px;
  text-align: center;
  padding: 7px 10px;
  transition: all 0.3s ease-out;
}

#header-top .header-top-left:hover {
  background: #498194;
  transition: all 0.3s ease-in;
}

#header-top .phone-1 {
  font-weight: 800;
}

#header-top .header-top-right {
  text-align: right;
}

#header-top .tmf-button {
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  padding: 9px 15px;
  max-width: 180px;
  width: 100%;
  margin: 0 5px;
}

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

  #header-top .header-top-left {
    border-radius: 10px;
    margin: 0 0 0 auto;
  }

  #header-top .header-top-right {
    padding-top: 15px;
  }

  #header-top .tmf-button {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin: 0 10px 0 0;
  }

  #header-top .tmf-button.ghost {
    margin: 0;
  }
}

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

/* ======================================== *
        Header Section
 * ======================================== */
#header-wrapper {
  background: var(--primary);
}

.home #header-wrapper,
.single-practice-area #header-wrapper {
  background: transparent;
  position: absolute;
  width: 100%;
  z-index: 9;
}

#header-container {
  max-width: 1300px !important;
}

#header {
  padding: 50px 0;
}

#header .logo {
  max-width: 223px;
  width: 100%;
}

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

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

#header .header-top-row {
  display: none;
}

#header .desktop-view {
  padding: 0 25px;
}

#header .desktop-view-row {
  display: table;
  width: 100%;
}

#header .desktop-view-cell-1,
#header .desktop-view-cell-2,
#header .desktop-view-cell-3 {
  display: table-cell;
  vertical-align: middle;
}

#header .desktop-view-cell-1 {
  width: 450px;
}

#header .desktop-view-cell-2 {
  width: auto;
  text-align: center;
}

#header .desktop-view-cell-3 {
  width: 450px;
}

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

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

#header .custom-inner {
  padding: 0 25px;
}

@media screen and (max-width: 1250px) {
  #header .desktop-view-cell-1 {
    width: 400px;
  }

  #header .desktop-view-cell-3 {
    width: 400px;
  }
}

@media screen and (max-width: 1200px) {
  .home #header-wrapper,
  .single-practice-area #header-wrapper {
    background: var(--primary);
    position: relative;
    z-index: inherit;
  }

  #header {
    padding: 25px 0 0;
  }

  #header .header-top-row {
    display: table;
    width: 100%;
  }

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

  #header .tablet-view {
    display: block;
  }

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

  #header .main-logo {
    width: 250px;
    padding-right: 25px;
  }

  #header .mobile-view {
    width: 50%;
    padding-left: 25px;
  }
}

@media screen and (max-width: 950px) {
  #header {
    padding: 15px 0;
  }

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

  /*    #header .main-logo,
    #header .mobile-view{
        display: block;
        width: 100%;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }*/

  #header .main-logo {
    width: auto;
  }

  #header .mobile-view {
    width: 110px;
  }
}

/* ======================================== *
        Primary Navigation Section
 * ======================================== */
#primary-nav-wrapper {
  font-family: var(--body-font);
}

#primary-nav-container {
  max-width: 1300px !important;
}

#primary-nav {
}

#primary-nav .menu {
}
#primary-nav .menu > .menu-item {
}
#primary-nav .menu > .menu-item.first {
}
#primary-nav .menu > .menu-item.last {
}

#primary-nav .menu > .menu-item > a {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  padding: 10px 5px;
  text-decoration: none;
  transition: color 0.3s ease-out;
}

#primary-nav .menu > .menu-item.home-icon a {
  font-size: 0;
}

#primary-nav .menu > .menu-item.home-icon a:before {
  content: '\f015';
  color: var(--primary);
  font-size: 16px;
  font-family: var(--font-awesome-5-free);
  font-weight: 700;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
  transition: color 0.35s ease-out;
  position: inherit;
  top: inherit;
  width: auto;
  height: auto;
}

#primary-nav .menu > .menu-item.home-icon a:after {
  display: none;
}

#primary-nav .menu > .menu-item.middle-logo {
  width: 463px;
}

#primary-nav .menu > .menu-item.middle-logo > a {
  background: url(../images/logo-3x.png) no-repeat;
  background-size: 223px;
  font-size: 0;
  height: 122px;
  margin: auto;
  width: 223px;
  padding: 0;
}

#primary-nav .menu > .menu-item.current-menu-item > a,
#primary-nav .menu > .menu-item:hover > a {
  color: var(--accent);
  transition: color 0.3s ease-in;
}

#primary-nav .menu .sub-menu {
  min-width: 220px;
}

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

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

#primary-nav .menu .sub-menu .menu-item {
}
#primary-nav .menu .sub-menu .menu-item.first {
}
#primary-nav .menu .sub-menu .menu-item.last {
}
#primary-nav .menu .sub-menu .menu-item > a {
  color: #ffffff;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 15px;
  line-height: 20px;
}

#primary-nav .menu .sub-menu .menu-item:hover {
}
#primary-nav .menu .sub-menu .menu-item:hover > a {
  background-color: #498194;
  color: #ffffff;
}

@media screen and (max-width: 1250px) {
  #primary-nav .menu > .menu-item.middle-logo {
    width: 423px;
  }
}

@media screen and (max-width: 1200px) {
  #primary-nav {
    padding-top: 15px;
  }

  #primary-nav .menu > .menu-item.middle-logo {
    display: none;
  }
}

/* ======================================== *
    Mobile Menu
 * ======================================== */
#mobile-nav-wrapper {
  font-family: var(--body-font);
  text-align: left;
}

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

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

.hamburger-container {
  max-width: none;
}

#mobile-nav a {
  color: #fff;
  font-size: 16px;
}

#mobile-nav .menu > .menu-item.middle-logo {
  display: none;
}

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

#mobile-nav .menu .menu-item.display {
  background: var(--accent);
}

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

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

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

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

/* ======================================== *
    Mobile Header Bottom Section
 * ======================================== */
#mobile-header-bottom {
  padding-top: 0;
  text-align: right;
}

#mobile-header-bottom-row {
  display: block;
}

#mobile-header-bottom-cell-1,
#mobile-header-bottom-cell-2,
#mobile-header-bottom-cell-3 {
  display: inline-block;
  padding: 0;
}

#mobile-header-bottom-cell-1 {
  padding: 0 15px 0 0;
}

#mobile-header-bottom-cell-2 {
  display: none;
}

#mobile-header-bottom .location-phone a,
#mobile-header-bottom .location-email a {
  font-size: 0;
}

#mobile-header-bottom .menu-bar-container .menu-label {
  font-size: 0;
}

#mobile-header-bottom a.phone::before {
  background: #ffffff;
  font-size: 16px;
  margin: 0;
  width: 30px;
  height: 30px;
}

body #mobile-header-bottom #mobile-nav .hamburger::before {
  background: transparent !important;
  color: var(--accent) !important;
  font-size: 30px;
  margin: 0;
  width: 30px;
  height: 30px;
  margin-top: 2px;
}

/* ======================================== *
    Billboard
 * ======================================== */
#billboard-wrapper {
}

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

#billboard .modern-slider {
  border: none;
  background: transparent;
  margin: 0;
}

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

#billboard .billboard-content-container {
  box-sizing: border-box;
  padding: 0;
  position: absolute;
  bottom: 7%;
  max-width: 1300px !important;
  z-index: 2;
  margin: 0 auto;
  left: 0;
  right: 0;
}

#billboard .billboard-content {
}

#billboard .billboard-content-row {
  display: table;
  width: 100%;
}

#billboard .billboard-content-cell-1,
#billboard .billboard-content-cell-2 {
  display: table-cell;
  width: auto;
}

#billboard .billboard-content-cell-1 {
  vertical-align: bottom;
}

#billboard .billboard-content-cell-2 {
  width: 410px;
  vertical-align: top;
}

#billboard .billboard-content-inner {
  padding: 0 25px;
}

#billboard h1 {
  color: #ffffff;
  font-size: 65px;
  margin-bottom: 0;
  margin-top: 0;
}

#billboard .tmf-multi-module-area .sidebar-contact-form {
  margin-bottom: 0;
}

@media screen and (max-width: 1370px) {
  #billboard img {
    height: 785px;
    object-fit: cover;
    object-position: left;
  }
}

@media screen and (max-width: 1200px) {
  #billboard img {
    height: auto;
    object-fit: inherit;
    object-position: inherit;
  }

  #billboard .billboard-content-container {
    position: relative;
    top: inherit;
    z-index: inherit;
    left: inherit;
    right: inherit;
    transform: inherit;
    padding: 25px 0;
  }

  #billboard .billboard-content-cell-1 {
    vertical-align: middle;
  }

  #billboard h1 {
    color: var(--primary);
  }
}

@media screen and (max-width: 950px) {
  #billboard .billboard-content-cell-1 {
    display: block;
    width: 100%;
  }

  #billboard .billboard-content-cell-2 {
    display: none;
  }
}

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

/* ======================================== *
        Int Billboard Section
 * ======================================== */
#int-billboard-wrapper {
}
div#int-billboard-wrapper::before {
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#int-billboard-container {
  max-width: 100% !important;
}

#int-billboard img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 300px;
}
#int-billboard .int-billboard-content {
  max-width: 1300px !important;
  margin: 0 auto;
  padding: 0;
}
#int-billboard .int-billboard-title {
  padding: 0 25px;
  position: absolute;
  bottom: 10%;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 1;
  max-width: 1250px;
}
#int-billboard h1#page-title {
  /* padding: 45px 0; */
  margin: 0;
  color: #fff;
}

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

@media screen and (max-width: 1600px) {
  #int-billboard h1#page-title {
    padding-top: 100px;
  }
}

@media screen and (max-width: 1200px) {
  #int-billboard h1#page-title {
    padding-top: 0;
  }
}

@media screen and (max-width: 950px) {
  #int-billboard h1#page-title {
    font-size: 50px;
  }
}

@media screen and (max-width: 550px) {
  #int-billboard img {
    min-height: unset;
  }
  #int-billboard .int-billboard-content {
    padding-top: 50px;
  }
  #int-billboard .int-billboard-title {
    position: static;
    transform: unset;
  }
  #int-billboard h1#page-title {
    font-size: 40px;
    color: var(--primary);
  }
  .single-practice-area #body {
    padding-top: 35px;
  }
  div#int-billboard-wrapper::before {
    display: none;
  }
}

/* ======================================== *
        Breadcrumb Section
 * ======================================== */
#breadcrumb-section-wrapper {
  background: #ffffff;
}

#breadcrumb-section-container {
  max-width: 1300px;
}

#breadcrumb-section {
  padding: 25px 25px 0;
}

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

/* ======================================== *
        Home Body Section
 * ======================================== */
#home-body-wrapper {
}

#home-body-container {
  max-width: 1300px !important;
}

#home-body {
  padding: 50px 0;
}

#home-body .inner {
  padding: 0;
}

#home-body .home-body-main-content {
  display: table-cell;
  width: 50%;
  padding: 0 25px;
  box-sizing: border-box;
  color: #444444;
  line-height: 30px;
}

#home-body h2 {
  font-size: 25px;
  margin: 25px 0;
}

#home-body h4 {
  font-family: var(--body-font);
  font-size: 25px;
  font-weight: 600;
  margin: 25px 0;
}

#home-body p {
  font-size: 18px;
  line-height: 28px;
}

#home-body .tmf-multi-module-area .sidebar-contact-form {
  margin-bottom: 0;
}

#home-body .mobile-view {
  display: none;
}

@media screen and (max-width: 950px) {
  #home-body .home-body-main-content {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  #home-body .home-body-main-content:last-child {
    margin-bottom: 0;
  }

  #home-body .mobile-view {
    box-sizing: border-box;
    display: block;
    padding: 50px 25px 0;
  }
}

/* ======================================== *
        Body Section
 * ======================================== */
#body-wrapper {
}

#body-container {
  max-width: 1300px;
}

#body {
  padding: 50px 0;
}

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

#body-cell-2 {
  width: 410px;
}

#body .custom-inner {
  padding: 0 25px;
}

@media screen and (max-width: 950px) {
  #body-cell-1,
  #body-cell-2 {
    width: 100%;
  }
}

/* ======================================== *
        Home Practice Area Section
 * ======================================== */
#home-practice-areas-wrapper {
  background: var(--secondary);
}

#home-practice-areas-container {
  max-width: 1168px !important;
}

#home-practice-areas {
  text-align: center;
  padding: 50px 0;
}

#home-practice-areas .inner {
  padding: 0 13px;
}

#home-practice-areas .tmf-post-list.home {
  display: table;
  width: 100%;
}

#home-practice-areas h3 {
  font-size: 48px;
  margin: 0;
}

#home-practice-areas h5 {
  letter-spacing: 5px;
  margin-bottom: 0;
}

@media screen and (max-width: 950px) {
  #home-practice-areas-wrapper {
    padding: 10px 0 0;
  }
  #home-practice-areas .tmf-post {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
}

/* ======================================== *
        Home Attorneys Section
 * ======================================== */
#home-attorneys-wrapper {
  background: var(--primary);
}

#home-attorneys-container {
  max-width: 1300px !important;
}

#home-attorneys {
  padding: 50px 0;
}

#home-attorneys h3 {
  color: #ffffff;
  font-size: 48px;
  margin: 0 0 25px;
  text-align: center;
  padding: 0 12px;
}

#home-attorneys h5 {
  color: var(--accent);
  letter-spacing: 5px;
  margin-bottom: 0;
  text-align: center;
  padding: 0 12px;
}

#home-attorneys p {
  box-sizing: border-box;
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  padding: 0 12px;
}

#home-attorneys .inner {
  padding: 0 13px;
}

/*Slider CSS*/
#home-attorneys .tmf-post-list.small {
  width: 100%;
  max-width: 1142px;
  margin: 0 auto;
  clear: both;
  padding: 0;
  box-sizing: border-box;
}

#home-attorneys .tmf-post.attorney.small {
  background: #ffffff;
  /*    width: auto !important;*/
  max-width: 100%;
  padding: 0;
  margin: 0 0 50px;
}

#home-attorneys .slick-slide {
  padding: 0 12px;
  box-sizing: border-box;
  /*width: auto !important;*/
  float: none;
  display: inline-block !important;
  vertical-align: top;
  /*    text-align: center;*/
}

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

#home-attorneys .slide-arrow {
  position: absolute;
  bottom: 0;
  margin-top: 0px;
  z-index: 1;
}

#home-attorneys .prev-arrow {
  left: 1075px;
  width: 21px;
  height: 25px;
  background: url(../images/icon_sprite_3x.png) no-repeat scroll -30px 0;
  background-size: 113px;
  transform: rotate(180deg);
}

#home-attorneys .prev-arrow:hover {
  background: url(../images/icon_sprite_3x.png) no-repeat scroll 0px 0;
  background-size: 113px;
  transform: inherit;
}

#home-attorneys .next-arrow {
  right: 12px;
  width: 21px;
  height: 25px;
  background: url(../images/icon_sprite_3x.png) no-repeat scroll -30px 0;
  background-size: 113px;
}

#home-attorneys .next-arrow:hover {
  background: url(../images/icon_sprite_3x.png) no-repeat scroll 0px 0;
  background-size: 113px;
  transform: rotate(180deg);
}

#home-attorneys .slick-dots {
  display: block !important;
  margin: 0;
  padding: 25px 12px 0;
  list-style-type: none;
  text-align: center;
}

#home-attorneys .slick-dots li {
  margin: 0 5px;
  display: inline-block;
}

#home-attorneys .slick-dots li::before {
  display: none;
}

#home-attorneys .slick-dots button {
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: #ffffff;
  text-indent: -9999px;
}

#home-attorneys .slick-dots li.slick-active button {
  background-color: var(--accent);
}

@media screen and (max-width: 1190px) {
  #home-attorneys .tmf-post-list.small {
    max-width: 950px;
  }

  #home-attorneys .prev-arrow {
    left: 883px;
  }
}

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

  #home-attorneys .prev-arrow {
    left: 833px;
  }
}

@media screen and (max-width: 950px) {
  #home-attorneys .tmf-post-list.small {
    max-width: 571px;
  }

  #home-attorneys .tmf-post.attorney.small {
    margin: 0;
  }
}

/* ======================================== *
        Associations Section CSS
 * ======================================== */
#associations-wrapper {
  background: var(--secondary);
}

#associations-container {
  max-width: 1300px !important;
}

#associations {
  padding: 80px 0;
}

#associations h5 {
  letter-spacing: 5px;
  margin-bottom: 0;
}

#associations-cell-1 {
  width: 290px;
  vertical-align: middle;
}

#associations-cell-2 {
  width: auto;
  vertical-align: middle;
}

#associations-cell-2 .inner {
  padding: 0 10px;
}

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

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

#associations .tmf-post.association.small .association-logo {
  width: auto;
}

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

@media screen and (max-width: 1320px) {
  #associations .tmf-post-list.small {
    max-width: 900px;
  }
}

@media screen and (max-width: 1200px) {
  #associations-cell-1,
  #associations-cell-2 {
    display: block;
    width: 100%;
    text-align: center;
  }

  #associations #associations-cell-2 {
    padding-top: 50px;
  }

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

@media screen and (max-width: 760px) {
  #associations .tmf-post-list.small {
    max-width: 674px;
  }
}

@media screen and (max-width: 530px) {
  #associations .tmf-post-list.small {
    max-width: 337px;
  }
}

/* ======================================== *
        Home Process Section
 * ======================================== */
#home-process-wrapper {
  background: var(--accent);
}

#home-process-container {
  max-width: 1300px !important;
}

#home-process {
  padding: 65px 0;
}

#home-process-cell-1 {
  width: 470px;
}

#home-process-cell-2 {
  width: auto;
  position: relative;
}

#home-process-cell-2 .inner {
  padding: 0 0 0 50px;
}

#home-process h3 {
  color: #ffffff;
  font-size: 48px;
  margin-top: 0px;
  margin-bottom: 25px;
}

#home-process p {
  color: #ffffff;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 0;
}

#home-process .tmf-button {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  max-width: 220px;
  width: 100%;
  margin-top: 50px;
}

#home-process .tmf-button:hover {
  background: #ffffff;
  color: var(--accent);
}

/*Slider CSS*/
#home-process .bx-wrapper {
  margin: 0;
  padding: 0px;
  cursor: pointer;
}

#home-process .bx-viewport {
  max-width: 100% !important;
  left: 0 !important;
  overflow: inherit !important;
}

#home-process .bx-controls.bx-has-pager {
  position: relative;
}

#home-process .bx-wrapper .bx-pager {
  box-sizing: border-box;
  text-align: right;
  position: relative;
  padding: 35px 25px 0;
}

#home-process .bx-wrapper .bx-pager.bx-default-pager a {
  box-sizing: border-box;
  background: #8bb5c3;
  border: 2px solid #8bb5c3;
  font-size: 0;
  width: 15px;
  height: 15px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

#home-process .bx-wrapper .bx-pager.bx-default-pager a:hover,
#home-process .bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #ffffff;
  border: 2px solid #ffffff;
}

@media screen and (max-width: 1200px) {
  #home-process-cell-1,
  #home-process-cell-2 {
    width: 100%;
  }

  #home-process-cell-2 {
    padding-top: 50px;
  }

  #home-process-cell-2 .inner {
    padding: 0;
  }

  #home-process .tmf-button {
    margin-top: 25px;
  }
}

@media screen and (max-width: 950px) {
  #home-process-cell-1,
  #home-process-cell-2 {
    text-align: center;
  }

  #home-process .bx-wrapper .bx-pager {
    text-align: center;
  }
}

/* ======================================== *
        Home Faq Section
 * ======================================== */
#home-faqs-wrapper {
  background: #ffffff;
}

#home-faqs-container {
  max-width: 1300px !important;
}

#home-faqs {
  padding: 50px 0;
}

#home-faqs h3 {
  font-size: 48px;
  margin-top: 0;
  margin-bottom: 0;
}

#home-faqs-cell-1 {
  width: 400px;
}

#home-faqs-cell-2 {
  width: auto;
}

/*Accordion CSS*/
#home-faqs .smk_accordion {
  margin-bottom: 0;
}

#home-faqs .smk_accordion.acc_with_icon .accordion_in .acc_head {
  padding-left: 0;
  padding-right: 150px;
}

#home-faqs .smk_accordion.acc_with_icon .accordion_in .acc_content {
  padding-left: 75px;
  padding-right: 25px;
}

#home-faqs .smk_accordion .accordion_in .acc_head {
  padding: 15px 0;
}

#home-faqs .smk_accordion .accordion_in > .acc_head .title {
  color: var(--primary);
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 700;
}

#home-faqs .smk_accordion .accordion_in.acc_active > .acc_head .title {
  color: var(--primary);
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 700;
}

#home-faqs .smk_accordion .accordion_in.acc_active > .acc_head {
  color: var(--primary);
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 700;
}

#home-faqs .smk_accordion .accordion_in .acc_head {
  margin-top: 0;
}

#home-faqs .smk_accordion .accordion_in > .acc_content {
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  padding-top: 0;
  padding-bottom: 25px;
}

#home-faqs .smk_accordion .accordion_in > .acc_content .editor-content {
  padding-top: 10px;
}

#home-faqs .smk_accordion .accordion_in > .acc_content .editor-content p {
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

/* Icon expand */
#home-faqs .smk_accordion .accordion_in .acc_head .acc_icon_expand {
  background: transparent !important;
  display: block;
  position: absolute;
  left: inherit;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0px;
  width: auto;
  height: auto;
}

#home-faqs .smk_accordion .accordion_in .acc_head .acc_icon_expand::before {
  content: '\2b';
  color: var(--primary);
  font-size: 30px;
  font-family: 'Font Awesome 6 Sharp';
  font-weight: 900;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0;
}

#home-faqs .smk_accordion .accordion_in.acc_active .acc_head .acc_icon_expand::before {
  content: '\f068';
  color: var(--primary);
  font-size: 30px;
  font-family: 'Font Awesome 6 Sharp';
  font-weight: 900;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0;
}

@media screen and (max-width: 1200px) {
  #home-faqs-cell-1,
  #home-faqs-cell-2 {
    width: 100%;
  }

  #home-faqs-cell-1 {
    text-align: center;
  }
}

@media screen and (max-width: 750px) {
  #home-faqs .smk_accordion.acc_with_icon .accordion_in .acc_head {
    padding-right: 70px;
  }
}

/* ======================================== *
        Attorney Single Page CSS
 * ======================================== */
.single-attorney #body-cell-2 {
  padding-top: 125px;
  width: 410px;
}

.single-attorney #body-cell-2 .inner {
  padding: 0 25px;
}

.single-attorney .attorney-accordion {
  margin-top: 30px;
}

.single-attorney .attorney-accordion .editor-content ul {
  padding-left: 15px;
  line-height: 1.9em;
}

.single-attorney .superlawyer {
  margin-bottom: 50px;
  text-align: center;
}

.single-attorney .superlawyer img {
}

.attorney-bio-info {
  background: var(--secondary);
  height: 385px;
}

.attorney-bio-info-container {
  max-width: 1300px;
  margin: 0 auto;
}

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

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

.attorney-bio-info .attorney-bio-box-1 {
  width: calc(100% - 410px);
  position: relative;
}

.attorney-bio-info .attorney-bio-box-1 .attorney-bio-info-inner {
  padding: 0 25px;
}

.attorney-bio-info .attorney-bio-box-2 {
  width: 410px;
  position: relative;
}

.attorney-bio-info .attorney-bio-box-2 .attorney-bio-info-inner {
  padding: 0 25px;
}

.attorney-bio-info img.primary {
  border-radius: 15px;
  box-sizing: border-box;
  max-width: 350px;
  width: 100%;
  display: block;
  margin: 75px auto 0;
  position: relative;
  z-index: 1;
}

.attorney-bio-info .attorney-bio-info-box-wrap {
  display: flex;
  width: 100%;
  height: 385px;
  align-items: center;
}

.attorney-bio-info h1#page-title {
  margin-bottom: 15px;
}

.attorney-bio-info .sub-title {
  font-size: 40px;
  vertical-align: middle;
  line-height: 40px;
}

.attorney-bio-info .attorney-titles {
}

.attorney-bio-info .attorney-titles a {
  color: var(--primary);
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}

.attorney-bio-info .contact-info-box {
  margin-top: 15px;
}

.attorney-bio-info .contact-information,
.attorney-bio-info .icon-container {
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 34px;
  display: inline-block;
  vertical-align: top;
}

.attorney-bio-info .phone,
.attorney-bio-info .fax,
.attorney-bio-info .email {
  display: inline-block;
  line-height: normal;
  margin-right: 25px;
  vertical-align: middle;
}

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

.attorney-bio-info .vcard .label {
  margin-top: 0;
  color: var(--primary);
  font-size: 18px;
  font-weight: 500;
  vertical-align: middle;
}

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

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

.attorney-bio-info .contact-information a,
.attorney-bio-info .icon-container a {
  color: var(--primary);
}

.attorney-bio-info .vcard-resume-container {
  display: inline-block;
  vertical-align: middle;
}

.attorney-bio-info .social-icons {
  display: inline-block;
  vertical-align: middle;
  line-height: 20px;
}

.attorney-bio-info .social-icons a {
  display: inline-block;
  line-height: 14px;
}

.attorney-bio-info .mobile-view {
  display: none;
}

@media screen and (max-width: 1200px) {
  .attorney-bio-info h1#page-title {
    margin-bottom: 15px;
  }

  .attorney-bio-info .contact-information,
  .attorney-bio-info .icon-container {
    display: block;
  }

  .attorney-bio-info .phone,
  .attorney-bio-info .fax,
  .attorney-bio-info .email {
    display: block;
    line-height: 34px;
    margin-right: 0;
  }
}

@media screen and (max-width: 950px) {
  .single-attorney #body-cell-2 {
    padding-top: 25px;
    width: 100%;
  }

  .single-attorney #body-cell-2 .inner {
    padding: 0 25px;
  }

  .attorney-bio-info {
    height: auto;
  }

  .attorney-bio-info-container {
    background: transparent;
    padding: 25px 0;
  }

  .attorney-bio-info .attorney-bio-box-1 {
    display: block;
    width: 100%;
    text-align: center;
  }

  .attorney-bio-info .attorney-bio-box-2 {
    display: none;
  }

  .attorney-bio-info .attorney-bio-box-1 .attorney-bio-info-inner {
    padding: 0 25px;
  }

  .attorney-bio-info img.primary {
    margin: 0 auto 25px;
    position: inherit;
    z-index: inherit;
  }

  .attorney-bio-info .attorney-bio-info-box-wrap {
    display: block;
    height: auto;
    align-items: inherit;
  }

  .attorney-bio-info .title-wrap {
    text-align: center;
  }

  .attorney-bio-info .mobile-view {
    display: block;
  }
}

/* ======================================== *
        Attorney Bio Accordion CSS
 * ======================================== */
.single-attorney .smk_accordion.acc_with_icon .accordion_in .acc_head {
  padding-left: 0;
  padding-right: 45px;
}

.single-attorney .smk_accordion.acc_with_icon .accordion_in .acc_content {
  padding-left: 0;
  padding-right: 15px;
}

/* Icon expand */
.single-attorney .smk_accordion .accordion_in .acc_head .acc_icon_expand {
  background: transparent !important;
  display: block;
  position: absolute;
  left: inherit;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0px;
  width: auto;
  height: auto;
}

.single-attorney .smk_accordion .accordion_in .acc_head .acc_icon_expand::before {
  content: '\2b';
  color: var(--primary);
  font-size: 30px;
  font-family: 'Font Awesome 6 Sharp';
  font-weight: 900;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0;
}

.single-attorney .smk_accordion .accordion_in.acc_active .acc_head .acc_icon_expand::before {
  content: '\f068';
  color: var(--primary);
  font-size: 30px;
  font-family: 'Font Awesome 6 Sharp';
  font-weight: 900;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0;
}

/* ======================================== *
        Attorney Badges Slider
 * ======================================== */
.attorney-badges-and-associations-wrap {
  box-sizing: border-box;
  max-width: 100%;
  margin: 0 auto 40px;
  padding: 0;
  position: relative;
}

.attorney-badges-and-associations-container {
  box-sizing: border-box;
  text-align: center;
}

.attorney-badges-and-associations {
  width: 100%;
  max-width: 225px;
  margin: 0 auto;
  clear: both;
}

.attorney-badges-and-associations-area {
  width: auto !important;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.attorney-badges-and-associations .slick-slide {
  /*padding: 0 20px;*/
  box-sizing: border-box;
  /*width: auto !important;*/
  float: none;
  display: inline-block !important;
  vertical-align: middle;
  text-align: center;
}

.attorney-badges-and-associations .slick-slide img {
  width: auto !important;
}

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

.attorney-badges-and-associations .slide-arrow {
  position: absolute;
  top: 50%;
  margin-top: -5px;
  transform: translateY(-50%);
}

.attorney-badges-and-associations .prev-arrow {
  left: -30px;
}

.attorney-badges-and-associations .next-arrow {
  right: -30px;
}

.attorney-badges-and-associations .prev-arrow::before,
.attorney-badges-and-associations .next-arrow::before {
  display: inline-block;
  height: 30px;
  width: 24px;
}

.attorney-badges-and-associations .prev-arrow::before {
  content: '';
  background: rgba(0, 0, 0, 0) url(../images/bio_badges_arrows_3x.png) no-repeat scroll 0px 0;
  background-size: 110px;
}

.attorney-badges-and-associations .prev-arrow:hover::before {
  background: rgba(0, 0, 0, 0) url(../images/bio_badges_arrows_3x.png) no-repeat scroll -29px 0;
  background-size: 110px;
}

.attorney-badges-and-associations .next-arrow::before {
  content: '';
  background: rgba(0, 0, 0, 0) url(../images/bio_badges_arrows_3x.png) no-repeat scroll -58px 0;
  background-size: 110px;
}

.attorney-badges-and-associations .next-arrow:hover::before {
  background: rgba(0, 0, 0, 0) url(../images/bio_badges_arrows_3x.png) no-repeat scroll -86px 0;
  background-size: 110px;
}

/* ======================================== *
        Staff Single Page CSS
 * ======================================== */
.single-staff #body-cell-2 {
  padding-top: 225px;
  width: 410px;
}

.single-staff #body-cell-2 .inner {
  padding: 0 25px;
}

.single-staff .superlawyer {
  margin-bottom: 50px;
  text-align: center;
}

.single-staff .superlawyer img {
}

.staff-bio-info {
  background: var(--secondary);
  height: 285px;
}

.staff-bio-info-container {
  max-width: 1300px;
  margin: 0 auto;
}

.staff-bio-info .staff-bio-info-row {
  display: table;
  width: 100%;
}

.staff-bio-info .staff-bio-box-1,
.staff-bio-info .staff-bio-box-2 {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
}

.staff-bio-info .staff-bio-box-1 {
  width: calc(100% - 410px);
  position: relative;
}

.staff-bio-info .staff-bio-box-1 .staff-bio-info-inner {
  padding: 0 25px;
}

.staff-bio-info .staff-bio-box-2 {
  width: 410px;
  position: relative;
}

.staff-bio-info .staff-bio-box-2 .staff-bio-info-inner {
  padding: 0 25px;
}

.staff-bio-info img.primary {
  border-radius: 15px;
  box-sizing: border-box;
  max-width: 350px;
  width: 100%;
  display: block;
  margin: 75px auto 0;
  position: relative;
  z-index: 1;
}

.staff-bio-info .staff-bio-info-box-wrap {
  display: flex;
  width: 100%;
  height: 285px;
  align-items: center;
}

.staff-bio-info h1#page-title {
  margin-bottom: 15px;
}

.staff-bio-info .staff-titles {
}

.staff-bio-info .staff-titles a {
  color: var(--primary);
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}

.staff-titles a {
  color: #002d57 !important;
  font-size: 25px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  margin-bottom: 0 !important;
}
.staff-bio-info .contact-info-box {
  margin-top: 15px;
}

.staff-bio-info .contact-information,
.staff-bio-info .icon-container {
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 34px;
  display: inline-block;
  vertical-align: top;
}

.staff-bio-info .phone,
.staff-bio-info .fax,
.staff-bio-info .email {
  display: inline-block;
  line-height: normal;
  margin-right: 25px;
  vertical-align: middle;
}

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

.staff-bio-info .vcard .label {
  margin-top: 0;
  color: var(--primary);
  font-size: 18px;
  font-weight: 500;
  vertical-align: middle;
}

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

.staff-bio-info .resume .label {
  display: inline-block;
  vertical-align: middle;
  margin-top: 0;
  font-size: 18px;
  font-weight: 500;
}

.staff-bio-info .contact-information a,
.staff-bio-info .icon-container a {
  color: var(--primary);
}

.staff-bio-info .mobile-view {
  display: none;
}

@media screen and (max-width: 1200px) {
  .staff-bio-info h1#page-title {
    margin-bottom: 15px;
  }

  .staff-bio-info .contact-information,
  .staff-bio-info .icon-container {
    display: block;
  }

  .staff-bio-info .phone,
  .staff-bio-info .fax,
  .staff-bio-info .email {
    display: block;
    line-height: 34px;
    margin-right: 0;
  }
}

@media screen and (max-width: 950px) {
  .single-staff #body-cell-2 {
    padding-top: 25px;
    width: 100%;
  }

  .single-staff #body-cell-2 .inner {
    padding: 0 25px;
  }

  .staff-bio-info {
    height: auto;
  }

  .staff-bio-info-container {
    background: transparent;
    padding: 25px 0;
  }

  .staff-bio-info .staff-bio-box-1 {
    display: block;
    width: 100%;
    text-align: center;
  }

  .staff-bio-info .staff-bio-box-2 {
    display: none;
  }

  .staff-bio-info .staff-bio-box-1 .staff-bio-info-inner {
    padding: 0 25px;
  }

  .staff-bio-info img.primary {
    margin: 0 auto 25px;
    position: inherit;
    z-index: inherit;
  }

  .staff-bio-info .staff-bio-info-box-wrap {
    display: block;
    height: auto;
    align-items: inherit;
  }

  .staff-bio-info .title-wrap {
    text-align: center;
  }

  .staff-bio-info .mobile-view {
    display: block;
  }
}

/* ======================================== *
        Pages CSS Section
 * ======================================== */
.page-id-70 .editor-content a {
  text-decoration: none;
}

.page-id-70 .editor-content a:hover {
  text-decoration: underline;
}

.page-id-70 .tmf-post.attorney.medium h2.title,
.page-id-70 .tmf-post.staff.medium h2.title {
  margin: 0 !important;
  font-size: 32px !important;
}

.pa-border {
  border-bottom: 1px solid #ddd;
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.pa-border.first {
  padding-top: 50px;
}

.pa-border.last {
  border-bottom: none;
  padding-bottom: 0;
}

/* ======================================== *
        Footer Section
 * ======================================== */
.bottom-bg {
  background: var(--primary);
  position: relative;
}

#footer-wrapper {
}

#footer-container {
  max-width: 1300px !important;
}

#footer {
  padding: 50px 0 90px;
}

#footer-cell-1 {
  width: 450px;
  vertical-align: middle;
}

#footer-cell-2 {
  width: auto;
  vertical-align: middle;
}

@media screen and (max-width: 1200px) {
  #footer-cell-1 {
    width: 300px;
  }
}

@media screen and (max-width: 1050px) {
  #footer-cell-1,
  #footer-cell-2 {
    width: 100%;
  }

  #footer-cell-1 {
    text-align: center;
  }

  #footer-cell-2 {
    padding-top: 50px;
  }
}

@media screen and (max-width: 950px) {
  #footer {
    padding: 50px 0 25px;
  }

  #footer-cell-2 {
    text-align: center;
  }
}

/* ======================================== *
        Copyright Section
 * ======================================== */
#copyright-wrapper {
}

#copyright-container {
  max-width: 1300px !important;
}

#copyright {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  padding: 25px 0;
}

#copyright a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

#copyright a:hover {
  color: var(--accent);
  transition: all 0.3s ease-in;
}

#copyright .divider {
  color: #ffffff;
  margin: 0 7px;
}

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

#copyright-cell-1 {
  text-align: left;
  width: auto;
}

#copyright-cell-2 {
  text-align: right;
  width: 400px;
}

@media screen and (max-width: 1200px) {
  #copyright-container:before {
    display: none;
  }

  #copyright-cell-1,
  #copyright-cell-2 {
    text-align: center;
    width: 100%;
  }

  #copyright-cell-2 {
    padding-top: 0;
  }
}

@media screen and (max-width: 550px) {
  #copyright .tmf-shortcode.copyright {
    display: block;
  }

  #copyright .divider.first {
    display: none;
  }
}

/* ======================================== *
        Modules
 * ======================================== */
.tmf-multi-module-area .tmf-module {
  margin-bottom: 50px;
}

/*.tmf-multi-module-area .tmf-module:last-child {
    margin-bottom: 0;
}*/

.tmf-multi-module-area .tmf-module h3.tmf-module-title {
  font-family: var(--body-font);
  font-size: 33px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 15px;
}

.tmf-multi-module-area .sidebar-contact-form h3.tmf-module-title {
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 500;
  text-transform: inherit;
  letter-spacing: inherit;
  margin-bottom: 35px;
}

.tmf-multi-module-area .sidebar-contact-form {
  background: var(--accent);
  border-radius: 15px 0 0 0;
  -webkit-box-shadow: 10px 10px 17px -10px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 10px 10px 17px -10px rgba(0, 0, 0, 0.5);
  box-shadow: 10px 10px 17px -10px rgba(0, 0, 0, 0.5);
  padding: 35px 35px;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 950px) {
  .tmf-multi-module-area .sidebar-contact-form .tmf-module-content {
    max-width: 550px;
    margin: 0 auto;
  }
}

/* ======================================== *
        Inputs & Buttons
 * ======================================== */
input:focus-visible,
button:focus-visible,
textarea:focus-visible {
  outline: inherit;
}

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

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

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

input[type='text'],
input[type='tel'],
input[type='email'],
textarea,
select {
  background: transparent;
  border: 2px solid var(--secondary);
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  color: #000000;
  font-family: var(--body-font) !important;
  font-size: 15px !important;
  font-weight: 400;
  margin-top: 0 !important;
  margin-bottom: 15px !important;
  max-width: 100%;
  padding: 10px 10px !important;
  line-height: normal !important;
}

textarea {
  height: 120px !important;
}

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

input[type='text']:focus,
textarea:focus {
  border: 2px solid var(--secondary);
}

select.gfield_select {
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.6em;
  background-repeat: no-repeat;
}

.tmf-button,
.page-numbers {
  font-size: 21px;
  padding: 20px 25px;
  background: var(--accent);
  border: 2px solid var(--accent);
  box-sizing: border-box;
  display: inline-block;
  cursor: pointer;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  text-decoration: none !important;
  color: #ffffff;
  font-family: var(--body-font);
  font-weight: 600;
  line-height: 20px;
  position: relative;
  transition: all 0.3s ease-out;
}

.tmf-button:hover,
.page-numbers:hover {
  background: #498194;
  border: 2px solid #498194;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease-in;
}

.tmf-button:active,
.page-numbers:active {
  background: var(--accent);
  text-decoration: none;
  color: #ffffff;
}

.tmf-button.ghost {
  background: transparent;
  border: 2px solid var(--accent);
  color: #000000;
}

.tmf-button.ghost:hover {
  background: var(--accent);
  border: 2px solid var(--accent);
  color: #ffffff;
}

.tmf-button.large {
  font-size: 21px;
  padding: 10px 25px;
}

.tmf-button.medium {
  font-size: 21px;
  padding: 10px 25px;
}

.tmf-button.small {
  font-size: 21px;
}

.tmf-button.tiny {
  font-size: 21px;
}

.page-numbers.current {
  background: none;
  border: 1px solid var(--accent);
  color: #666666;
}

.vcard .value {
  background: transparent;
  background-size: 265px;
  height: auto;
  width: 25px;
  vertical-align: middle;
  margin-right: 0;
  display: none;
}

.vcard .value::before {
  content: '\f2bb';
  color: var(--primary);
  font-size: 16px;
  font-family: var(--font-awesome-5-free);
  font-weight: 700;
  display: inline-block;
}

/* ======================================== *
        Responsive Layout
 * ======================================== */
@media screen and (max-width: 700px) {
  #breadcrumbs {
    display: none;
  }
}

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

@media screen and (max-width: 450px) {
  /*    .row > div > .inner {
        padding-left: 12px;
        padding-right: 12px;
    }*/
}

/* ======================================== *
        Miscellaneous
 * ======================================== */
aside {
  color: var(--primary);
  font-family: var(--heading-font);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  position: relative;
  padding: 15px 15px;
}

aside p {
  line-height: 30px !important;
}

aside.left,
aside.right {
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}

blockquote {
  color: var(--primary);
  font-family: var(--heading-font);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  position: relative;
  margin: 25px 0;
  padding: 0 0 0 40px;
  z-index: 9;
}

blockquote:after {
  content: '“';
  display: inline-block;
  font-family: Georgia;
  font-size: 400px;
  position: absolute;
  left: -15px;
  color: #cccccc;
  top: 140px;
  z-index: -9;
  font-style: normal;
}

.editor-content img {
  max-width: 100% !important;
  height: auto !important;
}

#breadcrumbs {
  color: #ccd5dd;
  font-family: var(--body-font);
  font-size: 17px;
  font-weight: 700;
  /*    margin: 0 0 25px;*/
  margin: 0;
  line-height: normal;
}

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

#breadcrumbs .divider {
  color: #ccd5dd;
  margin: 0 7px;
}

#breadcrumbs .current {
  color: var(--primary);
  font-weight: 700;
}

body #call-to-action {
  background: transparent !important;
  color: var(--primary) !important;
  font-family: var(--heading-font);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  position: relative;
  padding: 25px 25px 25px 120px;
  margin: 50px 0;
}

body #call-to-action:before {
  background: url(../images/cta-1-anchor-3x.png) no-repeat;
  background-size: 106px;
  border-radius: 50%;
  content: '';
  display: inline-block;
  width: 106px;
  height: 106px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

body #call-to-action p {
  color: var(--primary) !important;
  font-family: var(--heading-font);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

body #call-to-action p a {
  color: var(--primary) !important;
  font-weight: 700;
  text-decoration: none;
}

body #call-to-action p a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 550px) {
  body #call-to-action {
    position: relative;
    padding: 25px 0;
    text-align: center;
  }

  body #call-to-action:before {
    position: inherit;
    top: 0;
    transform: inherit;
    z-index: 1;
    margin-bottom: 15px;
  }
}

.list-box {
  box-sizing: border-box;
  border-top: 2px solid #033f78;
  border-bottom: 2px solid #033f78;
  padding: 25px 0px;
  margin: 40px 0;
}

.list-box h4 {
  font-family: var(--body-font);
  font-size: 25px;
  font-weight: 700;
}

.list-box ul {
  padding-left: 40px !important;
  margin: 15px 0 0 !important;
}

.mobile {
  display: none;
}

@media screen and (max-width: 450px) {
  .not-mobile {
    display: none;
  }

  .mobile {
    display: inherit;
  }
}

/* ======================================== *
        Global Gravity Form
 * ======================================== */
.gform_wrapper.tmf-form_wrapper {
  margin: 0 !important;
}

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

.gform_wrapper.tmf-form_wrapper .top_label .gfield_label {
  margin-bottom: 0;
}

.gform_wrapper.tmf-form_wrapper ul.gform_fields li.gfield {
  padding-right: 0 !important;
  margin-top: 0;
}

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

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

.gform_wrapper.tmf-form_wrapper .tmf-button {
  box-sizing: border-box;
  cursor: pointer;
  max-width: 200px;
  width: 100%;
}

/* ======================================== *
        Sidebar Gravity Form CSS
 * ======================================== */
.sidebar-contact-form .gform_wrapper.tmf-form_wrapper ul {
  padding: 0 !important;
  margin: 0 !important;
}

.sidebar-contact-form .gform_wrapper.tmf-form_wrapper ul li.gfield {
  text-align: center;
}

.sidebar-contact-form input[type='text']::-webkit-input-placeholder,
.sidebar-contact-form input[type='tel']::-webkit-input-placeholder,
.sidebar-contact-form input[type='email']::-webkit-input-placeholder,
.sidebar-contact-form textarea::-webkit-input-placeholder,
.sidebar-contact-form select::-webkit-input-placeholder {
  color: #ffffff;
}

.sidebar-contact-form input[type='text']:-ms-input-placeholder,
.sidebar-contact-form input[type='tel']:-ms-input-placeholder,
.sidebar-contact-form input[type='email']:-ms-input-placeholder,
.sidebar-contact-form textarea:-ms-input-placeholder,
.sidebar-contact-form select:-ms-input-placeholder {
  color: #ffffff;
}

.sidebar-contact-form input[type='text']::placeholder,
.sidebar-contact-form input[type='tel']::placeholder,
.sidebar-contact-form input[type='email']::placeholder,
.sidebar-contact-form textarea::placeholder,
.sidebar-contact-form select::placeholder {
  color: #ffffff;
}

.sidebar-contact-form input[type='text'],
.sidebar-contact-form input[type='tel'],
.sidebar-contact-form input[type='email'],
.sidebar-contact-form textarea,
.sidebar-contact-form select {
  background: transparent;
  border: none;
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
  text-align: left;
}

.sidebar-contact-form textarea {
  height: 90px !important;
}

.sidebar-contact-form .gform_wrapper.tmf-form_wrapper .gform_footer {
  margin: 10px auto 0;
  display: block;
}

.sidebar-contact-form .gform_wrapper.tmf-form_wrapper .tmf-button {
  background: transparent;
  border: 2px solid #ffffff;
  font-size: 16px;
  max-width: 180px;
  width: 100%;
  padding: 15px 15px;
}

.sidebar-contact-form .gform_wrapper.tmf-form_wrapper .tmf-button:hover {
  background: #ffffff;
  color: var(--accent);
}

@media screen and (max-width: 950px) {
  .sidebar-contact-form input[type='text'],
  .sidebar-contact-form input[type='tel'],
  .sidebar-contact-form input[type='email'],
  .sidebar-contact-form textarea,
  .sidebar-contact-form select {
    text-align: center;
  }
}

/* ======================================== *
        CTA Module CSS
 * ======================================== */
.cta-module {
  background: var(--secondary);
  box-sizing: border-box;
  margin: 75px 0;
  padding: 45px 0;
  position: relative;
}

.cta-module::before {
  content: '';
  display: block;
  background: var(--secondary);
  height: 100%;
  width: 1000%;
  position: absolute;
  top: 0;
  left: -1000%;
}

.cta-module .cta-module-box-row {
  display: table;
  width: 100%;
}

.cta-module .cta-module-box-1,
.cta-module .cta-module-box-2 {
  display: table-cell;
  vertical-align: top;
}

.cta-module .cta-module-box-1 {
  width: 287px;
}

.cta-module .cta-module-box-1 img {
  border-radius: 10px;
  width: 287px;
}

.cta-module .cta-module-box-1 .cta-module-box-inner {
  padding: 0;
}

.cta-module .cta-module-box-2 {
}

.cta-module .cta-module-box-content {
  box-sizing: border-box;
  width: 100%;
  padding: 0 25px;
  position: relative;
}

.cta-module .cta-module-box-2 .cta-module-box-inner {
}

.cta-module .editor-content h4 {
  font-weight: 500;
  margin-bottom: 25px;
}

.cta-module .editor-content p {
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.cta-module .tmf-button {
  box-sizing: border-box;
  display: inline-block;
  max-width: 100%;
}

@media screen and (max-width: 1100px) {
  .cta-module {
    margin: 50px 0;
  }

  .cta-module .cta-module-box-1,
  .cta-module .cta-module-box-2 {
    display: block;
    width: 100%;
    text-align: center;
  }

  .cta-module .cta-module-box-1 img {
    margin-bottom: 25px;
  }

  .cta-module .tmf-button {
    margin-top: 15px;
  }
}

@media screen and (max-width: 950px) {
  .cta-module .cta-module-box-1,
  .cta-module .cta-module-box-2 {
    display: table-cell;
    width: auto;
    text-align: left;
  }

  .cta-module .cta-module-box-1 {
    width: 287px;
  }

  .cta-module .cta-module-box-1 img {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 650px) {
  .cta-module::before {
    display: none;
  }

  .cta-module .cta-module-box-1,
  .cta-module .cta-module-box-2 {
    display: block;
    width: 100%;
    text-align: center;
  }

  .cta-module .cta-module-box-1 {
    box-sizing: border-box;
    padding: 0 25px;
  }

  .cta-module .cta-module-box-1 img {
    margin-bottom: 25px;
    max-width: 287px !important;
    width: 100%;
  }
}
