/**
* Base Colors
*/
/**************************
  Media Queries
***************************/
/*************************
  Fonts
**************************/
/*************************
  Button colours
**************************/
/*************************
  Location page colours
**************************/
/*************************
  Form colours
**************************/
/*************************
  Sidebar variables
**************************/
/*************************
  404 button background
**************************/
/*************************
  Results Partial
**************************/
/*************************
  Swiper
**************************/
/*************************
  Footer Top
**************************/
/* Additional Mixins */
.uppercase-title {
  font-family: var(--secondary-font), sans-serif;
  color: #2b2b2b;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.15rem;
  text-align: center;
}

/**
 * Critical CSS
 * Stylesheet for Elements above the fold
 * Header | Navigation | Banner
 * If there are additional stylings that need to be added, 
 * kindly remove it from other scss file to avoid duplicate 
 */
.header {
  position: relative;
  z-index: 99999999;
  padding: 0;
  background-color: var(--header-bg-color);
}

@media (max-width: 1199px) {
  .header {
    z-index: initial;
  }
}
.header .top-header-mobile {
  position: relative;
  z-index: 1;
  box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) and (max-width: 1199px) {
  .header .top-header-mobile {
    box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header .top-header-mobile .container {
    max-width: 730px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 370px) and (max-width: 767px) {
  .header .top-header-mobile .container {
    padding-left: 14px;
    padding-right: 15px;
  }
}
.header #nav-mobile {
  padding-top: 23px;
  padding-bottom: 20px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .header #nav-mobile {
    padding-top: 20px;
  }
}
.header #nav-mobile .site-logo {
  padding: 0;
  z-index: 99;
}

.header #nav-mobile .site-logo img {
  background-color: #fff;
}

@media (min-width: 330px) {
  .header #nav-mobile .site-logo img {
    width: 100%;
    max-width: 215px;
  }
}
@media (min-width: 576px) {
  .header #nav-mobile .site-logo img {
    max-width: 281px;
  }
}
.header #nav-mobile .phone-number-txt {
  font-family: var(--main-font), sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #6BC4FC;
  line-height: 24px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.header #nav-mobile .phone-number-txt strong {
  font-family: var(--secondary-font), sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 24px;
  margin-left: 6px;
}

.header .top-header-desktop {
  position: relative;
  background-color: var(--color-primary);
}

.header .top-header-desktop:before {
  content: none;
}

@media screen and (min-width: 1200px) {
  .header .top-header-desktop:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 113px;
    background-color: #fff;
    pointer-events: none;
  }
}
.header .top-header-desktop-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 23px;
  padding-bottom: 17px;
  width: 100%;
  max-width: 1558px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1600px) {
  .header .top-header-desktop .container-xxl {
    max-width: 1620px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header .top-header-desktop .site-logo-wrap {
    width: 100%;
    max-width: 60%;
  }
}
@media screen and (min-width: 1200px) {
  .header .top-header-desktop .site-logo-wrap {
    width: 100%;
    max-width: 500px;
  }
}
.header .top-header-desktop .phone-section {
  display: inline-flex;
  align-items: center;
}

.header .top-header-desktop .phone-section-txt {
  font-family: var(--main-font), sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #6BC4FC;
  line-height: 24px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.header .top-header-desktop .phone-section-link {
  letter-spacing: 0.13em;
}

.header .top-header-desktop .phone-section-link strong {
  font-family: var(--secondary-font), sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 24px;
  margin-left: 6px;
}

.header .top-header-desktop .desktop-menu {
  position: relative;
}

.header .top-header-desktop .desktop-menu-col {
  position: relative;
}

.hero {
  padding-top: 25px;
  position: relative;
}

.hero-home {
  position: relative;
}

@media screen and (min-width: 768px) {
  .hero-home {
    padding-top: 39px;
  }
}
@media screen and (min-width: 1200px) {
  .hero-home {
    padding-top: 72px;
  }
}
.hero-home:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-height: 303px;
  background: url("../images/banner-img.png"), linear-gradient(180deg, #F2F2F2 0%, #D9E0E4 100%);
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

@media (min-width: 576px) and (max-width: 767px) {
  .hero-home:before {
    max-height: 45%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-home:before {
    background: url("../images/banner-img-tablet.png"), linear-gradient(180deg, #F2F2F2 0%, #D9E0E4 100%);
    max-height: 543px;
  }
}
@media screen and (min-width: 992px) {
  .hero-home:before {
    content: none;
  }
}
@media screen and (min-width: 768px) {
  .hero-home .row {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 992px) {
  .hero-home .banner-bg-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
.hero-home .banner-img-container {
  position: relative;
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-home .banner-img-container {
    left: auto;
    right: 0;
  }
}
@media (min-width: 1500px) {
  .hero-home .banner-img-container {
    right: -58px;
  }
}
.hero-home .banner-img-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 231px;
  height: 303px;
  transform: translateX(-50%);
  background-image: url("../images/banner-map.png");
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .hero-home .banner-img-container:before {
    background-image: url("../images/banner-map-tablet.png");
    width: 362px;
    height: 591px;
    top: -141px;
    right: -27px;
    left: initial;
    transform: initial;
  }
}
@media screen and (min-width: 992px) {
  .hero-home .banner-img-container:before {
    background-image: url("../images/banner-map-desktop.png");
    width: 500px;
    height: 949px;
    top: -205px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
}
@media screen and (min-width: 1200px) {
  .hero-home .banner-img-container:before {
    height: 1339px;
    right: 0;
    width: 531px;
    height: 1339px;
    top: -295px;
  }
}
@media screen and (min-width: 1440px) {
  .hero-home .banner-img-container:before {
    width: 731px;
    top: -200px;
  }
}
@media (min-width: 1400px) and (max-width: 1439px) {
  .hero-home .banner-img-container:before {
    width: 660px;
    top: -200px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-home .banner-img-container:before {
    right: -22px;
  }
}
.hero-home .banner-img-container img {
  position: relative;
  z-index: 1;
  margin-top: 17px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-home .banner-img-container img {
    margin-top: 43px;
    margin-left: 23px;
    margin-right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .hero-home .banner-img-container img {
    margin-left: auto;
    margin-right: 82px;
  }
}
@media (min-width: 1500px) {
  .hero-home .banner-img-container img {
    margin-right: 22px;
  }
}
.hero-home .banner-content {
  position: relative;
  z-index: 2;
  padding-top: 29px;
  padding-bottom: 45px;
}

@media (max-width: 399px) {
  .hero-home .banner-content {
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-home .banner-content {
    width: 100%;
    max-width: 310px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 992px) {
  .hero-home .banner-content {
    padding-top: 40px;
    padding-left: 39px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .hero-home .banner-content {
    max-width: 605px;
    padding-left: 79px;
  }
}
.hero-home .banner-content:before {
  content: none;
}

@media screen and (min-width: 992px) {
  .hero-home .banner-content:before {
    position: absolute;
    z-index: -1;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    width: 70%;
    background-color: #fff;
    box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.1);
    transform: rotate(-180deg);
    pointer-events: none;
  }
}
.hero-home .banner-content:after {
  content: none;
}

@media screen and (min-width: 992px) {
  .hero-home .banner-content:after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    width: 30%;
    background-color: #fff;
    pointer-events: none;
  }
}
.hero-home .banner-content-col {
  position: relative;
}

@media screen and (min-width: 768px) {
  .hero-home .banner-content-col {
    z-index: 2;
    width: 52.8%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-home .banner-content-col {
    margin-left: 14px;
  }
}
.hero-home .banner-content-col:before {
  position: absolute;
  z-index: 1;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.1);
  transform: rotate(-180deg);
  pointer-events: none;
}

@media screen and (min-width: 992px) {
  .hero-home .banner-content-col:before {
    content: none;
  }
}
@media (max-width: 767px) {
  .hero-home .banner-content-col:before {
    left: -50%;
    right: -50%;
  }
}
.hero-home .banner-content .banner-title {
  position: relative;
  font-family: var(--secondary-font), sans-serif;
  font-weight: 500;
  font-size: 30px;
  color: var(--color-primary);
  line-height: 40px;
}

@media screen and (min-width: 992px) {
  .hero-home .banner-content .banner-title {
    margin-bottom: 22px;
  }
}
@media screen and (min-width: 1200px) {
  .hero-home .banner-content .banner-title {
    font-size: 47px;
    line-height: 61px;
    max-width: 483px;
  }
}
.hero-home .banner-content .banner-extra-content {
  margin-bottom: 20px;
}

.hero-home .banner-content .btn {
  min-width: 311px;
}

@media (max-width: 767px) {
  .hero-home .banner-content .btn {
    max-width: 311px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 369px) {
  .hero-home .banner-content .btn {
    width: 100%;
    min-width: initial;
  }
}
.hero-home .banner-content .btn-info {
  margin-top: 19px;
}

@media screen and (min-width: 992px) {
  .hero-home .banner-content .btn-info {
    margin-top: 24px;
    padding: 11px 28px;
    padding-right: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .hero-home .banner-content .btn-info {
    line-height: normal;
    max-width: 448px;
  }
}
@media screen and (min-width: 992px) {
  .hero-home .banner-content .btn-info svg {
    margin-right: 8px;
  }
}
.banner-subtitle {
  font-family: var(--main-font), sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--color-primary);
  line-height: normal;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.banner-subtitle-container {
  margin-bottom: 5px;
}

@media screen and (min-width: 992px) {
  .banner-subtitle-container {
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 992px) {
  .banner-subtitle {
    letter-spacing: 0.02em;
  }
}
.hero-bio {
  position: relative;
  padding-top: 50px;
}

@media screen and (min-width: 992px) {
  .hero-bio {
    padding-top: 17px;
  }
}
.hero-bio:before {
  position: absolute;
  z-index: -1;
  content: "";
  top: -33.5px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% + 33.5px);
  background-image: url("../images/joseph-j-russell-esq-banner-bg-img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  pointer-events: none;
}

@media screen and (min-width: 992px) {
  .hero-bio .row {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 992px) {
  .hero-bio .image-holder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }
}
.hero-bio .banner-content {
  margin-bottom: 50px;
}

@media screen and (min-width: 992px) {
  .hero-bio .banner-content {
    width: 100%;
    max-width: 676px;
    margin-top: 33px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1200px) {
  .hero-bio .banner-content {
    max-width: 576px;
    margin-left: initial;
    margin-right: initial;
  }
}
@media screen and (min-width: 992px) {
  .hero-bio .banner-content .banner-title {
    margin-bottom: 23px;
  }
}
.hero-bio .banner-content .banner-subtitle {
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  line-height: 37px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.hero-bio .banner-content * {
  color: #fff;
}

.hero-bio .banner-content * a:is(:hover, :focus) {
  color: var(--accent-color) !important;
}

.hero-bio .banner-content .btn {
  margin-top: 31px;
}

@media (min-width: 331px) {
  .hero-bio .banner-content .btn {
    min-width: 311px;
  }
}
.hero-default {
  position: relative;
  padding-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .hero-default {
    padding-bottom: 25px;
  }
}
@media screen and (min-width: 992px) {
  .hero-default {
    padding-top: 44px;
    padding-bottom: 0;
  }
}
.hero-default:before {
  position: absolute;
  z-index: -1;
  content: "";
  top: -33.5px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% + 33.5px);
  background-image: url("../images/generic-banner-img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  pointer-events: none;
}

.with-featured-img .hero-default {
  padding-bottom: 25px;
}

.with-featured-img .hero-default:before {
  top: -33.5px;
  height: calc(100% - 100.5px);
}

@media (max-width: 991px) {
  .with-featured-img .hero-default:before {
    height: calc(100% + 33.5px);
  }
}
@media screen and (min-width: 992px) {
  .hero-default .banner-title {
    margin-bottom: 68px;
  }
}
.hero-default .banner-title:after {
  width: 139.14px;
  background-size: 139.14px 2px;
}

.hero-default .image-holder {
  position: relative;
  z-index: 1;
}

.hero-default .image-holder img {
  border: 10px solid #fff;
}

.blog .hero-default, .archive .hero-default, .single .hero-default, .category .hero-default, .error404 .hero-default, .post-type-archive-attorney .hero-default {
  padding-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .blog .hero-default, .archive .hero-default, .single .hero-default, .category .hero-default, .error404 .hero-default, .post-type-archive-attorney .hero-default {
    padding-bottom: 25px;
  }
}
@media screen and (min-width: 992px) {
  .blog .hero-default, .archive .hero-default, .single .hero-default, .category .hero-default, .error404 .hero-default, .post-type-archive-attorney .hero-default {
    padding-bottom: 0;
  }
}
.blog .hero-default:before, .archive .hero-default:before, .single .hero-default:before, .category .hero-default:before, .error404 .hero-default:before, .post-type-archive-attorney .hero-default:before {
  height: calc(100% + 33.5px);
}

#mobile-menu {
  display: none;
}

.close__mobileMenu {
  padding: 13px 9px 11px;
  border-radius: 4px;
  background-color: var(--color-primary);
  border: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999999;
  width: 38px;
  height: 38px;
  display: none;
}

.close__mobileMenu .x {
  display: block;
  background-color: #fff;
  width: 20px;
  height: 2px;
  transition: all ease-in 0.5s;
  border-radius: 7px;
}

.close__mobileMenu .x:first-child {
  transform: rotate(43deg);
}

.close__mobileMenu .x:last-child {
  transform: translate(0px, -2px) rotate(-43deg);
}

.mm-ocd-opened .mobile-button {
  visibility: hidden;
}

.mm-ocd-opened .close__mobileMenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-button {
  padding: 11px 9px;
  background-color: var(--color-primary);
  border: none;
  border-radius: 4px;
  width: 38px;
  height: 38px;
  margin-left: 11px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .mobile-button {
    margin-left: 12px;
  }
}
.mobile-button .menu__bar {
  background-color: #fff;
  height: 2px;
  width: 20px;
  display: block;
  margin-bottom: 5px;
  border-radius: 7px;
}

.mobile-button .menu__bar:last-child {
  margin-bottom: 0;
}

#nav-mobile .navbar-brand {
  display: inline-block;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
  margin-right: 0;
}

@media (min-width: 330px) {
  #nav-mobile .navbar-brand {
    width: 100%;
    max-width: 215px;
  }
}
@media (min-width: 576px) {
  #nav-mobile .navbar-brand {
    max-width: 281px;
  }
}
#nav-mobile .navbar-toggler {
  background: black;
}

#nav-mobile .navbar-toggler.collapsed .navbar-toggler-icon {
  display: inline-block;
  width: 33px;
  height: 23px;
  vertical-align: middle;
  content: "";
  background: url("../images/bgBurger.svg") no-repeat scroll center center #000;
  background-size: 33px 23px;
}

#nav-mobile .navbar-toggler .navbar-toggler-icon {
  display: inline-block;
  width: 33px;
  height: 23px;
  vertical-align: middle;
  content: "";
  background: url("../images/bgBurgerClose.svg") no-repeat scroll center center #000;
  background-size: 33px 23px;
}

@media (max-width: 991px) {
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
  }
}
/**
 Desktop menu styles
*/
#nav-desktop {
  padding: 0;
}

#nav-desktop .menu-container {
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

#nav-desktop ul#menu-header-menu-1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

#nav-desktop ul#menu-header-menu-1 > .nav-item {
  /**
    styles specific to the main menu so we don't 
    have to put !important when doing styles for the dropdown menu
  */
}

#nav-desktop ul#menu-header-menu-1 > .nav-item.current-menu-item .nav-link {
  color: var(--header-main-m-current-color);
}

#nav-desktop ul#menu-header-menu-1 > .nav-item:last-child .nav-link {
  padding-right: 0;
}

#nav-desktop .nav-item {
  margin-bottom: 0;
}

#nav-desktop .nav-item:hover .dropdown-menu {
  display: block;
}

#nav-desktop .nav-item .nav-link:not(.dropdown-menu .nav-link) {
  font-family: var(--main-font), sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--header-main-m-color);
  text-transform: var(--header-main-m-format);
  display: block;
  position: relative;
  padding: 0;
  padding-top: 13px;
  padding-bottom: 15px;
  margin-right: 24px;
}

@media screen and (min-width: 1200px) {
  #nav-desktop .nav-item .nav-link:not(.dropdown-menu .nav-link) {
    letter-spacing: normal;
    margin-right: 48px;
  }
}
@media (min-width: 1400px) {
  #nav-desktop .nav-item .nav-link:not(.dropdown-menu .nav-link) {
    letter-spacing: 0.03em;
  }
}
#nav-desktop .nav-item .nav-link:not(.dropdown-menu .nav-link):is(:hover, :focus) {
  color: var(--header-main-m-hover-color);
}

#nav-desktop .nav-item .nav-link:not(.dropdown-menu .nav-link):active {
  color: var(--header-main-m-active-color);
}

#nav-desktop .nav-item .nav-link:not(.dropdown-menu .nav-link):after {
  background-image: url("../images/arrows/arrow-dropdown.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 12px;
  height: 7px;
  border: unset;
  vertical-align: unset;
  margin-left: 2.5px;
  margin-bottom: 3px;
}

#nav-desktop .nav-item .dropdown-menu {
  position: absolute;
  top: 100%;
  left: -21px;
  z-index: 1000;
  float: left;
  min-width: 286px;
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: #fff;
  text-align: left;
  list-style: none;
  background-color: var(--header-sub-m-bg);
  background-clip: padding-box;
  border: 1px solid var(--header-sub-m-bg);
  border-radius: 0;
}

#nav-desktop .nav-item .dropdown-menu li a {
  color: var(--header-sub-link);
  padding: 14px 7px 9px;
  margin-left: 13px;
  margin-right: 13px;
  border-bottom: 1px solid #4D5B8D;
  line-height: 21px;
}

#nav-desktop .nav-item .dropdown-menu li:is(:hover, :focus) a {
  color: var(--header-sub-link-hover) !important;
}

#nav-desktop .nav-item .dropdown-menu li.current-menu-item a {
  color: var(--header-sub-link-active);
}

#nav-desktop .nav-item .dropdown-menu li:last-of-type a {
  border-bottom: none;
  padding-bottom: 14px;
}

.mm-ocd {
  z-index: 9999 !important;
}

.mm-spn.mm-spn--navbar:before, .mm-spn.mm-spn--navbar:after {
  color: #4D5B8D;
  opacity: 1 !important;
}

.mm-spn.mm-spn--navbar ul:before {
  border-top: 1px solid #4D5B8D !important;
}

.mm-spn.mm-spn--navbar ul li:before {
  border-color: #4D5B8D;
  opacity: 1 !important;
}

.mm-spn.mm-spn--navbar ul li:after {
  border-top: 1px solid #4D5B8D;
}

.mm-spn.mm-spn--navbar ul li.current-menu-item a {
  font-weight: 600;
}

.mm-spn.mm-spn--navbar ul li a {
  font-family: var(--main-font), sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  line-height: 21px;
}

.mm-spn.mm-spn--navbar:after {
  font-family: var(--main-font), sans-serif;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.mm-spn a:not(:last-child):after,
.mm-spn li:after {
  color: #4D5B8D;
  margin-left: 0 !important;
}

/*# sourceMappingURL=critical.css.map*/