@charset "UTF-8";
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-optical-sizing: auto;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}
* ::selection, * ::-moz-selection {
  background: rgba(168, 168, 168, 0.5490196078);
  color: #fff;
}

body, p {
  font-family: "Montserrat", sans-serif;
}

p:has(> iframe) {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}

#primary {
  padding: 0;
}
#primary:has(#main > :first-child.container) {
  position: relative;
}
#primary:has(#main > :first-child.container)::before {
  content: "";
  width: 100%;
  height: 3rem;
  display: block;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .location_block_wrap .local_info_wrap h4, .h4, .the_form_wrap .form_call a, .h5, .h6 {
  font-family: "Oswald", serif;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.15em;
}

.h1, .h2, .h3, .location_block_wrap .local_info_wrap h4, .h4, .the_form_wrap .form_call a, .h5, .h6 {
  font-weight: 700;
}

h1, .h1 {
  font-size: 2.5rem;
}
@media (max-width: 575px) {
  h1, .h1 {
    font-size: 12vw;
  }
}

h2, .h2 {
  font-size: 2.8125rem;
}
@media (max-width: 575px) {
  h2, .h2 {
    font-size: 10vw;
  }
}

h3, .h3, .location_block_wrap .local_info_wrap h4 {
  font-size: 2.1875rem;
}

h4, .h4, .the_form_wrap .form_call a {
  font-size: 1.5625rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1.0625rem;
}

.subcap, .location_block_wrap .local_info_wrap .local-info-name, .results_wrap .intro .hh, .the_form_wrap .form_call .available {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  80% {
    opacity: 0;
    transform: scale(2.5);
  }
  100% {
    opacity: 0;
    transform: scale(3);
  }
}
@keyframes pulse2 {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}
.available {
  display: flex;
  align-items: center;
  width: fit-content;
}

.beacon, .available .dot {
  position: relative;
  height: 8px;
  width: 8px;
  padding: 3px;
  border-radius: 50%;
  background: #36db62;
  margin-right: 8px;
}
.beacon::after, .beacon::before, .available .dot::after, .available .dot::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #36db62;
  display: block;
}
.beacon::before, .available .dot::before {
  animation: pulse2 2s ease 0s infinite;
}
.beacon::after, .available .dot::after {
  animation: pulse 2s ease 0s infinite;
}

.secure {
  position: relative;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
}
.secure::before {
  content: "";
  height: 13px;
  width: 13px;
  background-color: currentColor;
  mask: url("../img/shield.svg") center no-repeat;
  -webkit-mask: url("../img/shield.svg") center no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  display: inline-block;
  margin-right: 4px;
}

.btn-text {
  width: fit-content;
  text-align: center;
}

.btn {
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.88px;
  border-radius: 0;
  color: white;
  background: var(--secondary-color);
  position: relative;
  padding: 0.8rem 1rem;
}
.btn:hover {
  background: var(--primary-color);
  color: white;
}
.btn.btn_eval {
  background: none;
  z-index: 2;
  font-size: 22px;
  font-weight: 650;
  padding: 0.8rem 1.1rem;
}
.btn.btn_eval::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: skewx(15deg);
  border: 2px solid white;
  background: var(--secondary-color);
  transition: 0.3s ease all;
}
.btn.btn_eval:hover::before {
  background: #1E1E1E;
  transform: skewx(-15deg);
}
.btn.btn_clear {
  background: none;
  color: currentColor;
  border: 1px solid currentColor;
}
.btn.btn_clear:hover {
  background: var(--secondary-color);
}

#desktop_header, #mobile_buttons_wrap {
  background: var(--primary-color);
  color: white;
}
#desktop_header .btn_group, #mobile_buttons_wrap .btn_group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
}
#desktop_header .btn_group .available, #desktop_header .btn_group .secure, #mobile_buttons_wrap .btn_group .available, #mobile_buttons_wrap .btn_group .secure {
  font-size: 14px;
  letter-spacing: 0.03em;
  margin: 0 auto;
}
#desktop_header .btn_group .btn, #mobile_buttons_wrap .btn_group .btn {
  white-space: nowrap;
  font-size: 18px;
}
#desktop_header .btn_group .btn-text, #mobile_buttons_wrap .btn_group .btn-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#desktop_header .btn_group .btn-text:last-of-type, #mobile_buttons_wrap .btn_group .btn-text:last-of-type {
  flex-direction: column-reverse;
  transition: 0.3s ease all;
  overflow: hidden;
}
#desktop_header .btn_group .btn-text:last-of-type .btn, #mobile_buttons_wrap .btn_group .btn-text:last-of-type .btn {
  max-width: 400px;
  background: var(--secondary-color);
}
#desktop_header .btn_group .btn-text:last-of-type .btn:hover, #mobile_buttons_wrap .btn_group .btn-text:last-of-type .btn:hover {
  background: #1E1E1E;
}

#mobile_buttons_wrap {
  background: var(--primary-color);
}
#mobile_buttons_wrap .col {
  background: none;
  display: flex;
  align-items: center;
}
#mobile_buttons_wrap .m-header-top {
  justify-content: end;
  flex-wrap: nowrap;
}
#mobile_buttons_wrap .logo-col {
  margin-right: auto;
}
#mobile_buttons_wrap .logo-col .mobile_site_branding {
  height: unset;
  padding: 8px;
}
#mobile_buttons_wrap .logo-col img {
  width: 193px;
  max-width: 100%;
  height: auto;
  padding: 0;
}
#mobile_buttons_wrap .menu-col {
  flex-grow: 0.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#mobile_buttons_wrap .menu-col button {
  padding: 20px;
  margin-top: 1rem;
}
#mobile_buttons_wrap .menu-col .hamburger__line {
  background: white;
  height: 4px;
  width: 35px;
}
#mobile_buttons_wrap .menu-col .cross .hamburger__line:last-child {
  transform: translateY(-10px) rotate(40deg) scale(1.2);
}
@media (max-width: 630px) {
  #mobile_buttons_wrap .menu-col {
    background: #1E1E1E;
  }
  #mobile_buttons_wrap .menu-col button {
    margin-top: unset;
  }
}
#mobile_buttons_wrap .contact-col {
  flex-grow: 0;
}
#mobile_buttons_wrap .btn_group .secure, #mobile_buttons_wrap .btn_group .available {
  font-size: 13px;
  letter-spacing: 0.05em;
}
#mobile_buttons_wrap .btn_group .btn {
  padding: 0.65rem 0.8rem;
}
#mobile_buttons_wrap .btn_group .btn-text {
  max-width: 310px;
  overflow: hidden;
  transition: 0.3s ease all;
}
#mobile_buttons_wrap .btn_group .msg {
  width: 0;
  height: 0;
  transition: 0.3s ease all;
}
@media (max-width: 895px) {
  #mobile_buttons_wrap .btn_group .btn-text:first-of-type {
    padding: 0;
    margin: 0;
    max-width: 0;
  }
}
@media (max-width: 630px) {
  #mobile_buttons_wrap .btn_group .btn-text:last-of-type {
    padding: 0;
    margin: 0;
    max-width: 0;
  }
  #mobile_buttons_wrap .btn_group .msg {
    width: 76px;
    height: auto;
    padding: 7px 17px;
  }
}
#mobile_buttons_wrap .mobile_phone a {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}
#mobile_buttons_wrap .mobile_navigation {
  background: #1E1E1E;
  color: white;
  border-bottom: 2px solid var(--secondary-color);
  box-shadow: 0 3px 15px #1E1E1E;
}
#mobile_buttons_wrap .mobile_navigation a {
  color: white;
  font-weight: 600;
}
#mobile_buttons_wrap .mobile_navigation li::after {
  filter: invert(1);
}
#mobile_buttons_wrap .mobile_navigation li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2666666667);
}
#mobile_buttons_wrap .mobile_navigation li:last-of-type {
  border: none;
}
#mobile_buttons_wrap .mobile_navigation .sub-menu {
  background: rgba(180, 180, 180, 0.1019607843);
}

#desktop_header .d-header-top {
  justify-content: space-between;
}
#desktop_header .btn-text:last-of-type {
  flex-direction: column-reverse;
}
#desktop_header .site_branding {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}
#desktop_header .site_branding img {
  width: 193px;
  height: auto;
}
#desktop_header .menu > li > a {
  color: white;
  font-weight: 600;
}
#desktop_header .menu .sub-menu {
  padding: 0.6rem;
  border-top: 0;
  box-shadow: 3px 3px 3px rgba(30, 30, 30, 0.5);
}
#desktop_header .menu .sub-menu li {
  padding: 0;
}
#desktop_header .menu .sub-menu li:has(> .sub-menu) > a::after {
  content: " »";
  display: inline;
}
#desktop_header .menu .sub-menu a {
  padding: 0.45rem;
  font-weight: 500;
  display: block;
}
#desktop_header .menu .sub-menu .sub-menu {
  background: #fbfbfb;
}
#desktop_header .nav_holder {
  background: var(--secondary-color);
}

.site-footer .container-fluid {
  padding: 3rem 1rem;
  max-width: 1050px;
}
.site-footer .container-fluid > .row {
  justify-content: space-around;
}
.site-footer .site_info {
  background: var(--secondary-color);
  color: white;
}
.site-footer .site_info a {
  color: currentColor;
}
.site-footer .footer-contact-col .footer_logo img {
  width: 275px;
  max-width: 100%;
  height: auto;
  margin-top: 0;
  margin-bottom: 1.25rem;
}
.site-footer .footer-contact-col .footer-location-phone {
  margin-top: 0.5rem;
  position: relative;
  display: flex;
  align-items: center;
}
.site-footer .footer-contact-col .footer-location-phone::before {
  content: "";
  height: 1.3em;
  width: 1.3em;
  background: url("/wp-content/uploads/2025/03/call.svg") no-repeat center;
  background-size: contain;
  margin-right: 0.25em;
  display: inline-block;
}
.site-footer .footer-contact-col .footer-location-phone a {
  font-size: 1.2rem;
}
.site-footer .footer-contact-col .footer-social {
  margin-top: 1rem;
}
.site-footer .footer-contact-col .footer-social .social_media_list {
  padding: 0.5rem 0 0;
}
.site-footer .footer-contact-col .footer-social .social_media_list svg {
  fill: currentColor;
  transition: 0.3s ease all;
}
.site-footer .footer-contact-col .footer-social .social_media_list svg:hover {
  scale: 1.2;
  rotate: 360deg;
  color: var(--secondary-color);
}
.site-footer .footer-contact-col p:has(> iframe) {
  margin-bottom: 0.5rem;
}
.site-footer .white-form {
  margin: 0 auto;
  padding: 2rem 1rem 1rem;
  text-align: center;
  border-radius: 9px;
  background: white;
  color: #1E1E1E;
}
.site-footer .white-form .secure-available {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column-gap: 8px;
  flex-wrap: wrap;
}
.site-footer .white-form .gform_title {
  margin-bottom: 1rem;
  letter-spacing: 0.11em;
}
.site-footer .white-form .btn {
  color: white;
  border-radius: 0;
  display: block;
  margin: 0 auto;
  border: 0;
}
@media (max-width: 767px) {
  .site-footer .white-form {
    width: 550px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .site-footer .footer-location-phone {
    justify-content: center;
  }
}

.gform_wrapper input[type], .gform_wrapper select, .gform_wrapper optgroup, .gform_wrapper textarea {
  border: 1px solid #1E1E1E !important;
  color: #1E1E1E;
}
.gform_wrapper .btn_eval {
  border: none;
}

.sb-inner:has(.gform_wrapper) {
  position: sticky;
  top: 150px;
}

.widget:has(.gform_wrapper) {
  padding: 0;
  background: none;
}

.the_form_wrap {
  background: #1E1E1E;
  color: white;
  text-align: center;
  width: 560px;
  max-width: 100%;
  margin: 0 auto 1rem;
}
.the_form_wrap h2 {
  font-size: 33px;
  line-height: 1;
  letter-spacing: 0.1em;
}
.the_form_wrap .form_top {
  background: var(--primary-color);
  padding: 12px 7px;
  border-bottom: 4px solid var(--secondary-color);
  margin-bottom: 0;
}
.the_form_wrap .form_call {
  padding: 10px;
  line-height: 1;
}
.the_form_wrap .form_call .available {
  font-size: 13px;
  margin: 0 auto;
}
.the_form_wrap .form_call a {
  color: white;
  letter-spacing: 0.06em;
  display: block;
}
.the_form_wrap .form_call a:hover {
  text-decoration: none;
  scale: 1.2;
  color: var(--secondary-color);
}
.the_form_wrap .gform_wrapper {
  padding: 0 12px;
}
.the_form_wrap .gform_wrapper .gform_fields {
  grid-row-gap: 8px !important;
}
.the_form_wrap .gform_wrapper .gform_footer {
  margin: 0 auto !important;
  padding: 14px 0 !important;
}
.the_form_wrap .gform_wrapper .gform_footer .btn_eval {
  width: fit-content;
  border: 0;
  margin: 0 auto 6px;
}
.the_form_wrap .gform_wrapper .gform_footer .btn_eval:hover {
  color: var(--secondary-color);
}
.the_form_wrap .gform_wrapper .gform_footer .btn_eval:hover::before {
  background: white;
  border-color: var(--secondary-color);
}
.the_form_wrap .gform_wrapper .gform_footer .secure {
  font-size: 14px;
}

.gform_wrapper .gform_fields {
  grid-row-gap: 8px !important;
}

#contact-overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
  backdrop-filter: blur(9px);
}
#contact-overlay .contact-form-holder {
  background: var(--primary-color);
  color: white;
  border: 2px solid var(--secondary-color);
  padding: 1.5rem;
  text-align: center;
  max-width: 550px;
}
#contact-overlay .secure-available {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  grid-column-gap: 7px;
}
#contact-overlay .overlay-phone {
  line-height: 1;
  margin-bottom: 13px;
  color: white;
  letter-spacing: 0.04em;
  font-weight: 800;
  display: block;
}
#contact-overlay .overlay-phone:hover {
  text-decoration: none;
  color: var(--secondary-color);
}
#contact-overlay .gform_fields {
  grid-row-gap: 8px !important;
}

.cta_hero {
  background-color: lightgray;
}
.cta_hero .hero_overlay {
  background: linear-gradient(258deg, rgba(30, 30, 30, 0) -5.3%, rgba(30, 30, 30, 0.9) 78.93%), linear-gradient(0deg, rgba(248, 247, 243, 0.08) 0%, rgba(248, 247, 243, 0.08) 100%);
}
.cta_hero .cta_copy_wrap {
  display: flex;
  flex-direction: column;
  text-shadow: 1px 1px 2.5px #1E1E1E;
}
.cta_hero .cta_copy_wrap .btn {
  text-shadow: none;
}
.cta_hero .cta_copy_wrap .subcap, .cta_hero .cta_copy_wrap .location_block_wrap .local_info_wrap .local-info-name, .location_block_wrap .local_info_wrap .cta_hero .cta_copy_wrap .local-info-name, .cta_hero .cta_copy_wrap .results_wrap .intro .hh, .results_wrap .intro .cta_hero .cta_copy_wrap .hh, .cta_hero .cta_copy_wrap .the_form_wrap .form_call .available, .the_form_wrap .form_call .cta_hero .cta_copy_wrap .available {
  font-size: 20px;
}
.cta_hero .cta_copy_wrap .subcopy {
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .cta_hero .cta_copy_wrap {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cta_hero .cta_copy_wrap .btn-text {
    margin: 0 auto 1rem;
  }
}
.cta_hero .cta_hero_form_wrap {
  background: rgba(30, 30, 30, 0.65);
  color: white;
  text-shadow: 1px 1px 2.5px #1E1E1E;
}
.cta_hero .cta_hero_form_wrap .gform_footer {
  padding: 8px 0 0 !important;
}
.cta_hero.home_cta_hero .cta_copy_wrap .heroh1 {
  order: -1;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cta_hero.home_cta_hero .cta_copy_wrap .heroh1 {
    font-size: 4.5rem;
  }
}
@media (max-width: 991px) {
  .cta_hero.home_cta_hero .cta_copy_wrap .heroh1 {
    font-size: 3.75rem;
  }
}
.cta_hero.home_cta_hero .cta_copy_wrap .subtitle {
  order: 0;
}
@media (min-width: 992px) {
  .cta_hero.standard_hero:not(:has(.container > .row > div:nth-of-type(2))) .content-col {
    max-width: 670px;
    flex-basis: auto;
  }
}

.toggle_wrap {
  position: relative;
  overflow: hidden;
  margin: 1.5rem;
  max-width: 1400px;
}
.toggle_wrap::before {
  content: "";
  inset: 0;
  position: absolute;
  background: linear-gradient(357deg, #050A05 8.33%, rgba(5, 10, 5, 0.4) 97.75%);
}
.toggle_wrap .container {
  max-width: 1200px;
  position: relative;
}
.toggle_wrap.dark .accordion_heading {
  color: white;
}
.toggle_wrap .accordion_heading {
  background: none;
  border-bottom: 2px solid currentColor;
  padding-left: 0;
  font-weight: 600;
}
.toggle_wrap .accordion_heading::after {
  background: url("/wp-content/uploads/2025/03/down-arrow.svg") no-repeat center;
  background-size: contain;
}
.toggle_wrap .accordion_copy ul {
  padding: 0 0 0 1em;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .toggle_wrap {
    margin: 0.75rem;
  }
}
@media (min-width: 1400px) {
  .toggle_wrap {
    margin: 1.5rem auto;
  }
}

.process_wrap {
  background: white url("/wp-content/uploads/2025/03/case-process-bg.webp") bottom right no-repeat;
  background-size: 100% 80%;
  position: relative;
  overflow: hidden;
}
.process_wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.7333333333);
  background-image: rgba(255, 255, 255, 0.5333333333), linear-gradient(0deg, rgba(248, 247, 243, 0.4) 0%, rgba(248, 247, 243, 0.4) 100%);
}
.process_wrap .container-fluid {
  position: relative;
  max-width: 1200px;
}
.process_wrap .intro {
  max-width: 1000px;
  margin: 2rem auto;
}
.process_wrap .intro .h2 {
  letter-spacing: 0.11em;
}
.process_wrap .step-row {
  position: relative;
  align-items: center;
}
.process_wrap .step-row::before {
  content: "";
  height: 3px;
  width: 100vw;
  background: var(--primary-color);
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
}
.process_wrap .step-row::after {
  content: "";
}
.process_wrap .process-step {
  padding: 0 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 180px;
  transition: 0.3s ease all;
}
.process_wrap .process-step:nth-of-type(even) .process_box::before {
  bottom: calc(50% - 3.5em);
}
.process_wrap .process-step:nth-of-type(odd) .process_box::before {
  top: calc(50% - 3.5em);
}
.process_wrap .process_box {
  position: relative;
  text-align: center;
  border: 1px solid var(--primary-color);
  padding: 1em 0.5em;
  background: white;
  transition: 0.3s ease all;
  z-index: 3;
  cursor: default;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.process_wrap .process_box p {
  margin-bottom: 0;
}
.process_wrap .process_box::before {
  content: var(--step-content, "default-value");
  position: absolute;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  transition: 0.3s ease all;
  z-index: -2;
  min-width: 118px;
}
.process_wrap .process_box h3 {
  letter-spacing: 0.02em;
  font-size: 15px;
  margin-bottom: 0.5rem;
}
.process_wrap .process_box .step-content {
  font-size: 12.5px;
}
.process_wrap .process_box .step-content p {
  font-size: 12.5px;
  line-height: 1.2;
}
.process_wrap .process_box:hover {
  min-width: 200px;
}
.process_wrap .process_box:hover::before {
  opacity: 0;
}
.process_wrap .process_box:hover .step-content, .process_wrap .process_box:hover h3 {
  transition: 0.2s ease all;
}
.process_wrap .process_box:not(:hover) {
  width: 35px;
  height: 35px;
  min-width: 0;
  border-radius: 1000px;
  background: var(--primary-color);
  padding: 0;
}
.process_wrap .process_box:not(:hover) > * {
  visibility: hidden;
}
@media (max-width: 767px) {
  .process_wrap .step-row::after {
    content: "flickity";
    display: none;
  }
  .process_wrap .flickity-enabled {
    display: block;
  }
  .process_wrap .flickity-enabled::before {
    transform: translate(-50%, -50%);
    top: 50%;
    width: 100%;
  }
  .process_wrap .flickity-enabled .process-step {
    transition: none;
  }
  .process_wrap .flickity-enabled .process_box {
    width: 300px;
    max-width: 90%;
    position: relative;
    padding: 1em 0.5em;
    background: white;
    border-radius: 0;
    transition: 0.3s ease all;
    z-index: 3;
    height: unset;
  }
  .process_wrap .flickity-enabled .process_box::before {
    content: none !important;
  }
  .process_wrap .flickity-enabled .process_box > * {
    visibility: visible;
  }
  .process_wrap .flickity-enabled button svg {
    fill: var(--primary-color);
    scale: 1.5;
  }
  .process_wrap .flickity-enabled button.previous {
    transform: translate(-37%, -50%);
    left: 0;
  }
  .process_wrap .flickity-enabled button.next {
    transform: translate(37%, -50%);
    right: 0;
  }
}

.why_us {
  overflow: hidden;
}
.why_us > .row > div {
  transition: none;
}
.why_us .is_text {
  z-index: 3;
}
.why_us .is_text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 2;
  pointer-events: none;
  height: calc(300px - 30%);
  background: linear-gradient(347deg, rgba(39, 70, 42, 0) 43.22%, #27462A 87.25%), linear-gradient(#27462A 20%, rgba(0, 0, 0, 0) 80%);
}
@media (max-width: 991px) {
  .why_us .is_text .container {
    margin-bottom: -200px;
    position: relative;
    z-index: 3;
  }
}
@media (min-width: 992px) {
  .why_us .is_text {
    padding: 4rem 2rem;
  }
  .why_us .is_text::after {
    height: 100%;
    width: 20%;
    right: 100%;
    left: unset;
    top: 0;
    bottom: 0;
    background: linear-gradient(-257deg, rgba(39, 70, 42, 0) 43.22%, #27462A 87.25%), linear-gradient(-90deg, #27462A 20%, rgba(0, 0, 0, 0) 80%);
  }
}
@media (min-width: 1200px) {
  .why_us .is_text {
    padding: 6rem 2rem;
  }
}
@media (max-width: 991px) {
  .why_us .is_img {
    margin: 0;
    padding: 0;
    margin-top: 3rem;
    order: 2;
  }
}
@media (min-width: 576px) {
  .why_us .is_img img {
    width: 100%;
    height: 415px;
    object-fit: cover;
    object-position: top;
  }
}

.results_wrap {
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}
.results_wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 250px;
  background: #1E1E1E;
  z-index: -1;
  clip-path: polygon(0 60%, 50% 0%, 100% 60%, 100% 100%, 0% 100%);
}
.results_wrap .intro {
  text-align: center;
  margin-bottom: 0.75rem;
}
.results_wrap .intro .hh {
  font-size: 18px;
  margin-bottom: 0;
}
.results_wrap .results-slider:not(.flickity-enabled) {
  display: flex;
  flex-wrap: nowrap;
}
.results_wrap .results_box {
  width: 100%;
  box-shadow: none;
  padding: 0;
  margin: 0;
  background: white;
  transition: 0.3s ease all;
  position: relative;
}
.results_wrap .results_box .result_amount {
  color: white;
  background: var(--primary-color);
  width: 100%;
  padding: 10px;
  line-height: 1;
  transition: 0.3s ease all;
}
.results_wrap .results_box .results_copy {
  padding: 1rem;
}
.results_wrap .results_box .result_text {
  overflow-y: auto;
  height: 6.5em;
  text-align: left;
}
.results_wrap .results_box .result_text p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
}
.results_wrap .results_box .btn {
  margin-top: 1rem;
  font-size: 17px;
  padding: 0.5rem 1rem;
  background: var(--primary-color);
}
.results_wrap .results_box .btn:hover {
  background: var(--secondary-color);
}
.results_wrap .results_box .results_name {
  background: #F8F7F3;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 6px 8px;
  font-size: 13px;
}
.results_wrap:not(:has(.results-slider)) {
  background: #F8F7F3;
}
.results_wrap:not(:has(.results-slider))::after {
  z-index: 0;
}
.results_wrap:not(:has(.results-slider)) .container {
  max-width: 1200px;
}
.results_wrap:not(:has(.results-slider)) > div {
  position: relative;
  z-index: 1;
}
.results_wrap:not(:has(.results-slider)) .res-col {
  margin-bottom: 2rem;
  display: flex;
}
.results_wrap:not(:has(.results-slider)) .results_box {
  height: 100%;
}
.results_wrap:not(:has(.results-slider)) .results_box .results_copy {
  padding: 1rem 1.5rem;
}
.results_wrap:not(:has(.results-slider)) .results_box .result_text {
  height: unset;
  max-height: 15em;
}
.results_wrap:not(:has(.results-slider)) .results_box:hover {
  box-shadow: 3px 3px 0 var(--secondary-color);
}
.results_wrap:not(:has(.results-slider)) .results_box:hover .result_amount {
  background: #1E1E1E;
  text-shadow: 2px 2px 2px var(--secondary-color);
}

.practice_area_wrap {
  position: relative;
  overflow: hidden;
}
.practice_area_wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 250px;
  background: var(--primary-color);
  z-index: -1;
  transform: scaleY(-1);
  clip-path: polygon(0 60%, 50% 0%, 100% 60%, 100% 100%, 0% 100%);
}
.practice_area_wrap::after {
  z-index: 1;
}
.practice_area_wrap::before {
  content: "";
  inset: 0;
  position: absolute;
  background: #fff;
  opacity: 0.5;
}
.practice_area_wrap > div {
  position: relative;
  z-index: 2;
}
.practice_area_wrap .container {
  max-width: 1140px;
}
.practice_area_wrap .intro {
  text-align: center;
  color: white;
  margin-bottom: 1rem;
}
.practice_area_wrap .intro .subcap, .practice_area_wrap .intro .location_block_wrap .local_info_wrap .local-info-name, .location_block_wrap .local_info_wrap .practice_area_wrap .intro .local-info-name, .practice_area_wrap .intro .the_form_wrap .form_call .available, .the_form_wrap .form_call .practice_area_wrap .intro .available, .practice_area_wrap .results_wrap .intro .hh, .results_wrap .practice_area_wrap .intro .hh {
  margin-bottom: 0;
}
.practice_area_wrap .pa-col {
  display: flex;
}
.practice_area_wrap .practice_area_box {
  background: white;
  padding: 2rem 1.5rem;
  box-shadow: none;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.practice_area_wrap .practice_area_box img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 1rem;
}
.practice_area_wrap .practice_area_box h3 {
  margin-bottom: 1rem;
  font-size: 17px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.practice_area_wrap .practice_area_box .pa-desc {
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-align: left;
  height: 5em;
  overflow-y: auto;
}
.practice_area_wrap .practice_area_box .btn {
  font-size: 16px;
  padding: 10px 1rem;
  background: var(--primary-color);
}
.practice_area_wrap .practice_area_box .btn:hover {
  background: #1E1E1E;
}
.practice_area_wrap .pa-slider {
  margin-bottom: 2rem;
}
.practice_area_wrap .pa-slider::after {
  content: "flickity";
  display: none;
}
.practice_area_wrap .pa-slider .dot {
  background: var(--primary-color);
}
.practice_area_wrap .pa-slider:not(.flickity-enabled) {
  display: flex;
}
@media (min-width: 992px) {
  .practice_area_wrap .pa-slider.paWatch::after {
    content: none;
  }
}
@media (max-width: 991px) {
  .practice_area_wrap .pa-slider.paWatch::after {
    content: "flickity";
  }
}

.review_wrap {
  position: relative;
  padding-bottom: 1rem;
}
.review_wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 250px;
  background: var(--primary-color);
  z-index: -1;
  transform: scaleY(-1);
  clip-path: polygon(0 60%, 50% 0%, 100% 60%, 100% 100%, 0% 100%);
}
.review_wrap::after {
  height: 310px;
}
.review_wrap .intro {
  text-align: center;
  color: white;
  margin-bottom: 1rem;
}
.review_wrap .intro .subcap, .review_wrap .intro .location_block_wrap .local_info_wrap .local-info-name, .location_block_wrap .local_info_wrap .review_wrap .intro .local-info-name, .review_wrap .intro .the_form_wrap .form_call .available, .the_form_wrap .form_call .review_wrap .intro .available, .review_wrap .results_wrap .intro .hh, .results_wrap .review_wrap .intro .hh {
  font-size: 1.25rem;
  margin-bottom: 0;
}
.review_wrap .review-col {
  margin: 1rem 0;
}
@media (min-width: 1400px) {
  .review_wrap .review-col {
    max-width: 350px;
  }
}
.review_wrap .review_box {
  background: white;
  margin: 0 auto;
  width: 100%;
  padding: 1rem;
  text-align: left;
  filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.2));
  height: 214px;
  transition: 0.3s ease all;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review_wrap .review_box:hover {
  border-color: var(--primary-color);
}
.review_wrap .review_box .stars {
  color: var(--secondary-color);
  font-size: 26px;
  letter-spacing: 0.24em;
  line-height: 1;
  font-weight: 600;
  transition: 0.3s ease all;
}
.review_wrap .review_box .review_text {
  max-height: 117px;
  font-size: 13px;
  line-height: 1.5;
  overflow-y: auto;
  padding-right: 2px;
  margin-bottom: 6px;
}
.review_wrap .review_box .review_name {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin: 0.5rem 0;
  justify-content: flex-start;
  grid-column-gap: 10px;
  letter-spacing: 0.05em;
}
.review_wrap .review_box .review_name::before {
  content: "";
  width: 1.5em;
  height: 1.5em;
  background: url("/wp-content/uploads/2025/03/google-icon.svg") center no-repeat;
  background-size: contain;
}
.review_wrap .more-review-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review_wrap .more-review-col::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  transition: 0.3s ease all;
}
.review_wrap .more-review-col:has(a:hover) .more_review_box {
  border: 3px solid var(--secondary-color);
}
.review_wrap .more-review-col .more_review_box {
  text-align: center;
  border: 3px solid transparent;
}
.review_wrap .more-review-col .more_review_box img {
  display: block;
  height: 64px;
  width: 64px;
  transition: 0.3s ease all;
}
.review_wrap .more-review-col .more_review_box a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: currentColor;
  height: 100%;
}
.review_wrap .more-review-col .more_review_box a:hover {
  text-decoration: none;
}
.review_wrap .more-review-col .more_review_box a:hover img {
  scale: 1.1;
  margin-bottom: 0.5rem;
}
.review_wrap .more-review-col .more_review_box a:hover .stars {
  color: var(--primary-color);
}
.review_wrap .review-slider {
  padding: 1rem auto;
}
.review_wrap .review-slider:not(.flickity-enabled) {
  display: flex;
}
.review_wrap .reviews_list {
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 1200px;
}
.review_wrap .reviews_list .review_box {
  background: #F8F7F3;
  border-bottom: 2px solid var(--primary-color);
}
.review_wrap .reviews_list .review-col:nth-of-type(even) .review_box:not(:hover) {
  border-bottom-color: var(--secondary-color);
}

.blg-about {
  margin: 1.5rem 1rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .blg-about {
    max-width: 1160px;
    margin: 2rem auto;
  }
}
.blg-about::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(84deg, rgba(255, 255, 255, 0.2) 25%, rgba(248, 247, 243, 0.84) 58.82%);
  min-width: 750px;
  width: 100%;
}
.blg-about .container {
  max-width: 100%;
}
.blg-about .container > .row {
  max-width: 560px;
  margin-left: auto;
}
.blg-about .col-12 {
  position: relative;
  font-weight: 475;
}
.blg-about .btn::before {
  background: #1E1E1E;
}
.blg-about .btn:hover::before {
  background: var(--secondary-color);
}
@media (max-width: 575px) {
  .blg-about .btn {
    font-size: 15.5px;
  }
}
.blg-about h2 {
  color: var(--primary-color);
}

.entry-content h2 {
  border-bottom: 2px solid var(--secondary-color);
  letter-spacing: 0.07em;
  padding-bottom: 4px;
  margin-bottom: 1rem;
}

.staff_wrap .intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}
.staff_wrap .staff-list-row {
  max-width: 900px;
  margin: 0 auto;
}
.staff_wrap .staff-col {
  margin: 0 auto 1.5rem;
}
.staff_wrap .staff_box {
  margin: 0 auto;
  width: 100%;
}
.staff_wrap .staff_box .staff_box_pic {
  position: relative;
}
.staff_wrap .staff_box .staff_link {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: end;
  align-items: end;
  padding: 1rem;
  filter: drop-shadow(0px 4px 35px rgba(0, 0, 0, 0.25));
}
.staff_wrap .staff_box .staff_link::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 125px;
  max-height: 40%;
  background: var(--secondary-color);
  transition: 0.3s ease all;
  opacity: 0.9;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.staff_wrap .staff_box .staff_link svg, .staff_wrap .staff_box .staff_link img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  object-position: bottom left;
  position: relative;
  transition: 0.3s ease all;
}
.staff_wrap .staff_box .staff_link:hover svg, .staff_wrap .staff_box .staff_link:hover img {
  scale: 1.1;
  rotate: 360deg;
}
.staff_wrap .staff_box .staff_link:hover::before {
  background: #1E1E1E;
}
.staff_wrap .staff_info {
  text-align: center;
  padding: 1rem 10px;
}
.staff_wrap .staff_info .subcap, .staff_wrap .staff_info .location_block_wrap .local_info_wrap .local-info-name, .location_block_wrap .local_info_wrap .staff_wrap .staff_info .local-info-name, .staff_wrap .staff_info .the_form_wrap .form_call .available, .the_form_wrap .form_call .staff_wrap .staff_info .available, .staff_wrap .staff_info .results_wrap .intro .hh, .results_wrap .intro .staff_wrap .staff_info .hh {
  font-size: 15px;
  margin-bottom: 0;
}
.staff_wrap .staff_info .staff_name {
  padding: 0;
}

.single_attorney_wrap {
  padding-top: 1rem;
}
.single_attorney_wrap .single-attorney-row {
  max-width: 1150px;
  margin: 0 auto;
}
.single_attorney_wrap .att-copy-col {
  margin-top: 2rem;
}

.blog_wrap > .container-fluid {
  max-width: 1250px;
}
.blog_wrap .blog-col {
  margin: 0 auto 1.5rem;
  display: flex;
}
.blog_wrap .blog_box {
  margin: 0 auto;
  width: 100%;
  position: relative;
  background: #F8F7F3;
}
.blog_wrap .blog_box::after {
  content: "";
  height: 28px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: block;
}
.blog_wrap .blog_box .blog-img {
  min-height: 175px;
}
.blog_wrap .blog_box .blog_box_copy {
  background: none;
}
.blog_wrap .blog_box h3 {
  color: var(--primary-color);
}
.blog_wrap .blog_box .btn {
  font-size: 17px;
  display: block;
  position: absolute;
  bottom: 0;
  transform: translateY(-50%);
}

.location_block_wrap .loc-new-content h2 {
  border-bottom: 2px solid var(--primary-color);
  color: var(--primary-color);
}
.location_block_wrap .loc-new-content .subcap, .location_block_wrap .loc-new-content .local_info_wrap .local-info-name, .location_block_wrap .local_info_wrap .loc-new-content .local-info-name, .location_block_wrap .loc-new-content .the_form_wrap .form_call .available, .the_form_wrap .form_call .location_block_wrap .loc-new-content .available, .location_block_wrap .loc-new-content .results_wrap .intro .hh, .results_wrap .intro .location_block_wrap .loc-new-content .hh {
  border-top: 2px solid var(--primary-color);
  padding-top: 5px;
  padding-bottom: 3px;
  color: var(--primary-color);
}
.location_block_wrap .loc-new-content .loc-contact-row {
  margin-bottom: 1rem;
}
@media (max-width: 479px) {
  .location_block_wrap .loc-new-content .loc-contact-row {
    display: block;
  }
}
.location_block_wrap .loc-new-content .loc-contact-row > div {
  position: relative;
  padding-left: 30px;
  background: url("/wp-content/uploads/2025/03/location_pin.svg") top left no-repeat;
  min-height: 28px;
  padding-right: 10px;
  max-width: fit-content;
}
@media (max-width: 479px) {
  .location_block_wrap .loc-new-content .loc-contact-row > div {
    max-width: 100%;
    width: 100%;
  }
}
.location_block_wrap .loc-new-content .loc-contact-row .loc-phone {
  background-image: url("/wp-content/uploads/2025/03/location_phone.svg");
}
.location_block_wrap .loc-new-content .loc-contact-row .loc-phone a {
  font-weight: 500;
  color: currentColor;
}
.location_block_wrap .loc-new-content .loc-contact-row .loc-phone a:hover {
  color: var(--secondary-color);
}
.location_block_wrap .loc-new-content .loc-contact-row p {
  font-size: 15px;
  margin-bottom: 0;
}
.location_block_wrap .loc-new-content .social_media_list {
  padding-top: 0;
}
.location_block_wrap iframe {
  box-shadow: 0px 4px 34px 10px rgba(0, 0, 0, 0.21);
}
.location_block_wrap .local_info_wrap {
  max-width: 960px;
  margin: 4rem auto 2rem;
  background: #F8F7F3;
  padding: 1rem;
  text-align: center;
}
.location_block_wrap .local_info_wrap h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.location_block_wrap .local_info_wrap .local-info-name {
  color: var(--secondary-color);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.location_block_wrap .local_info_wrap a {
  font-weight: 475;
  color: var(--primary-color);
}
.location_block_wrap .local_info_wrap .local_info_single {
  padding: 1rem;
}
.location_block_wrap .local_info_wrap .local-info-row {
  justify-content: center;
}