html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

body, p {
  font-family: "Open Sans", monospace, sans-serif;
  font-optical-sizing: auto;
}

#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, .h4, .h5, .h6 {
  font-family: "Work Sans", serif, sans-serif;
  line-height: 1.2;
  font-weight: 500;
}

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 {
  font-size: 2.1875rem;
}

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

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

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

@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 {
  padding: 8px 24px;
  border-radius: 26px;
  line-height: 1;
  text-transform: capitalize;
  font-size: 19px;
  font-weight: 450;
  background: var(--secondary-color);
  color: white;
}
.btn:hover {
  background: #010101;
  color: var(--secondary-color);
}
.btn.btn_alt {
  background: var(--primary-color);
  color: white;
}
.btn.btn_alt:hover {
  background: var(--secondary-color);
}
.btn.btn_outline {
  background: transparent;
  color: #010101;
  border: inset 1px #010101;
}

.btn-text {
  width: fit-content;
}
.btn-text > div {
  font-size: 12.5px;
  line-height: 1;
  font-style: italic;
  margin: 4px auto;
}

.g-rating {
  width: fit-content;
}
.g-rating > div {
  display: flex;
  align-items: center;
  color: #FFC941;
  line-height: 1;
  font-size: 22px;
  letter-spacing: 0.18em;
}
.g-rating > div img {
  width: 26px;
  height: 26px;
}
.g-rating span {
  font-family: "Work Sans", serif, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.social_media_list a {
  display: block;
}
.social_media_list a:hover {
  rotate: 360deg;
}

.entry-content h2 {
  border-bottom: 2px solid #CF9455;
  padding-bottom: 5px;
  margin-bottom: 0.75rem;
}
@media (max-width: 479px) {
  .entry-content h2 {
    font-size: 9.5vw;
  }
}

.intro .hh {
  font-weight: 500;
  margin-bottom: 0;
}

#masthead .header_phone {
  display: flex;
  width: fit-content;
  gap: 0.5rem;
}

#desktop_header {
  border-bottom: 3px solid var(--tertiary-color);
}
#desktop_header .row {
  justify-content: space-between;
}
#desktop_header .site_branding {
  max-width: 130px;
  padding: 6px 0 6px 6px;
}
#desktop_header .site_branding img {
  width: 100%;
  height: auto;
}
#desktop_header .header_phone {
  max-width: fit-content;
}
#desktop_header .nav_holder {
  padding: 0;
}
#desktop_header .main_navigation {
  padding: 0;
}
#desktop_header .menu {
  display: flex;
  align-items: center;
  margin: 0 auto;
  max-width: 700px;
}
#desktop_header .menu > li > a {
  font-weight: 400;
  font-size: 17px;
  letter-spacing: normal;
  text-transform: capitalize;
  line-height: 1;
  padding: 0 5px;
  display: block;
}
@media (max-width: 1080px) {
  #desktop_header .menu > li > a {
    font-size: 16px;
  }
  #desktop_header .header_phone {
    gap: 0.25rem;
  }
  #desktop_header .btn {
    padding: 8px 18px;
    font-size: 18px;
  }
  #desktop_header .btn svg {
    display: none;
  }
}

#mobile_buttons_wrap > .row {
  background: white;
}
#mobile_buttons_wrap .mobile_phone {
  background: var(--tertiary-color);
  color: white;
  font-weight: 700;
  letter-spacing: 0.1em;
}
#mobile_buttons_wrap .mobile_phone a {
  color: white;
}
#mobile_buttons_wrap .mobile_phone a:hover {
  text-decoration: none;
  color: var(--primary-color);
}
#mobile_buttons_wrap .mobile_site_branding {
  height: unset;
  background: none;
}
#mobile_buttons_wrap .mobile_site_branding img {
  max-height: 76px;
  max-width: 100%;
  width: auto;
  height: auto;
  padding: 3px;
}
#mobile_buttons_wrap .mobile_message {
  display: none;
  background: none;
}
#mobile_buttons_wrap .mobile_message img {
  filter: invert(1);
}

.site-footer {
  padding: 6rem 0 0;
}
.site-footer .footer-row {
  border-top: 1px solid rgba(255, 255, 255, 0.5333333333);
  margin: 0 auto;
  max-width: 1100px;
  padding: 2rem 1rem 0;
  justify-content: space-between;
}
.site-footer .footer-row > div {
  flex-shrink: 0;
}
@media (min-width: 576px) {
  .site-footer .footer-row {
    justify-content: space-between;
  }
}
.site-footer .logo-col {
  padding: 0;
}
.site-footer .logo-col > div {
  width: fit-content;
}
.site-footer .logo-col img {
  height: auto;
}
.site-footer .logo-col .mobile-footer-logo {
  background: #fff;
  padding: 1rem 0px;
  width: 100%;
  margin-bottom: 1.5rem;
}
@media (min-width: 480px) {
  .site-footer .logo-col .mobile-footer-logo {
    display: none;
  }
}
@media (max-width: 479px) {
  .site-footer .logo-col .footer-logo {
    display: none;
  }
}
.site-footer .logo-col .footer-logo img {
  max-width: 170px;
}
@media (min-width: 576px) {
  .site-footer .logo-col {
    width: fit-content;
    flex-grow: 0;
  }
}
@media (max-width: 767px) {
  .site-footer .logo-col {
    width: 100%;
    flex-basis: auto;
  }
  .site-footer .logo-col > div {
    margin: 0 auto 1rem;
  }
}
.site-footer .footer-menu-col {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .site-footer .footer-menu-col {
    flex-grow: 0.5;
  }
}
.site-footer .footer-menu-col .menu {
  padding: 0;
  text-align: left;
  list-style: none;
  columns: 2;
}
.site-footer .footer-menu-col .menu a {
  font-weight: 320;
  display: block;
  padding-bottom: 8px;
}
@media (max-width: 767px) {
  .site-footer .footer-menu-col .menu {
    columns: unset;
    text-align: center;
  }
  .site-footer .footer-menu-col .menu li {
    display: inline-block;
  }
  .site-footer .footer-menu-col .menu li a {
    padding: 3px 6px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .site-footer .map-contact-col {
    flex-basis: auto;
  }
}
.site-footer .map-contact-col .map-contact-row {
  justify-content: space-around;
  align-items: start;
}
@media (max-width: 767px) {
  .site-footer .map-contact-col .map-contact-row {
    justify-content: center;
    gap: 1rem;
  }
}
.site-footer .map-contact-col .footer-map {
  width: 48%;
  margin-bottom: 1.5rem;
  flex-grow: 0.5;
}
@media (max-width: 479px) {
  .site-footer .map-contact-col .footer-map {
    width: 100%;
    margin-bottom: 0;
  }
}
.site-footer .map-contact-col .footer-map p {
  padding: 0;
}
.site-footer .map-contact-col .footer-map iframe {
  min-height: 200px;
  height: 100%;
}
.site-footer .map-contact-col .footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  flex-direction: column;
  max-width: fit-content;
}
.site-footer .map-contact-col .footer-contact > div {
  margin-bottom: 0.75rem;
}
.site-footer .map-contact-col .footer-contact .h5 {
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.site-footer .map-contact-col .footer-contact p {
  padding: 0;
  font-size: 15px;
}
.site-footer .map-contact-col .footer-social {
  width: 100%;
  min-width: 100%;
}
.site-footer .map-contact-col .footer-social .social_media_list {
  padding: 0;
}
.site-footer .footer-contact {
  white-space: nowrap;
}
@media (min-width: 480px) {
  .site-footer .footer-contact {
    width: 50%;
    text-align: left;
    justify-content: start !important;
  }
}
.site-footer .site_info {
  background: 0;
  color: #fff;
  padding-bottom: 3rem;
}

.cta_hero .hero_overlay {
  background: linear-gradient(271deg, rgba(23, 23, 23, 0.231372549) 19.07%, rgba(32, 27, 27, 0.8) 60.24%);
}
.cta_hero .cta_copy_wrap .subtitle {
  font-family: "Open Sans", monospace, sans-serif;
  font-weight: 500;
  line-height: 1.2;
  font-size: 20px;
}
.cta_hero .cta_copy_wrap .heroh1 {
  line-height: 1.1;
  font-size: 50px;
  font-weight: 500;
}
.cta_hero .cta_copy_wrap .subcopy {
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 450px;
  max-width: 100%;
}
.cta_hero .cta_copy_wrap .subcopy a {
  color: currentColor;
  font-weight: 450;
}
.cta_hero .hero-button {
  display: flex;
  gap: 1rem;
}
.cta_hero .hero-button .btn {
  padding: 9px 30px;
}
.cta_hero .form-col {
  position: relative;
  z-index: 1;
  color: #010101;
}
.cta_hero .form-col .the_form_wrap {
  padding: 1rem;
  background-color: white;
}
.cta_hero .form-col .the_form_wrap .gform_fields {
  grid-row-gap: 8px !important;
}
.cta_hero .form-col .the_form_wrap .gform_footer {
  padding: 5px 0 !important;
}
.cta_hero .form-col .the_form_wrap .btn {
  margin: 4px auto !important;
  border: none;
}
.cta_hero .form-col .the_form_wrap .secure {
  font-size: 13px;
  margin-top: 0;
}
@media (min-width: 992px) {
  .cta_hero.standard_hero:not(:has(.container > .row > div:nth-of-type(2))) .content-col {
    max-width: 870px;
    flex-basis: auto;
  }
}

.review_wrap {
  background: url("/wp-content/uploads/2025/04/soft-white-bg.webp") top center no-repeat;
  background-size: cover;
  padding: 2rem 0;
  overflow: hidden;
}
.review_wrap .intro .hh {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .review_wrap .intro .hh {
    font-size: 7vw;
  }
}
.review_wrap #snippet-box {
  max-width: 1000px;
}
.review_wrap .carousel-cell {
  padding: 0.8rem 10px 1.5rem;
}
.review_wrap .review_box {
  width: 100%;
  background: white;
  padding: 10px 15px;
  border-radius: 10px;
  text-align: left;
  transition: 0.3s ease all;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.2705882353));
}
.review_wrap .review_box .stars {
  color: var(--tertiary-color);
  font-size: 34px;
  letter-spacing: 0.2em;
  transition: 0.3s ease all;
}
.review_wrap .review_box .the_review {
  height: 7.2em;
  overflow-y: auto;
  font-family: "Open Sans", monospace, sans-serif;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 500;
  padding: 0 4px 12px 0;
  margin-bottom: 10px;
}
.review_wrap .review_box .review_name {
  margin: 4px 0 4px auto;
  width: fit-content;
  font-size: 13.5px;
  font-weight: 550;
}
.review_wrap .review_box img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  transition: 0.3s ease all;
}
.review_wrap .review_box:hover .stars {
  color: var(--secondary-color);
}
.review_wrap .review_box:hover img {
  scale: 1.1;
}
.review_wrap .reviews-slider:not(.flickity-enabled) {
  display: flex;
}
@media (max-width: 575px) {
  .review_wrap .reviews-slider {
    width: 90%;
    margin: 0 auto;
  }
}
.review_wrap .reviews-list .review_box {
  filter: drop-shadow(0px 4px 5px rgba(0, 0, 0, 0.2705882353));
}
.review_wrap .reviews-list .review_box:hover {
  filter: drop-shadow(4px 4px 3px rgba(207, 148, 85, 0.45));
}
.review_wrap.reviews_page {
  background-attachment: fixed;
}

.hlg-intro {
  padding: 3rem 1rem;
}
.hlg-intro .split_container {
  max-width: 1000px;
  margin: 0 auto;
}
.hlg-intro .img-col {
  width: 500px;
  display: flex;
  justify-content: space-between;
}
.hlg-intro .img-col p {
  margin: 0 auto;
  max-width: 48%;
}
.hlg-intro .img-col img {
  width: 100%;
  aspect-ratio: 113/142;
  height: auto;
  object-fit: cover;
}
@media (max-width: 991px) {
  .hlg-intro .img-col {
    margin: 0 auto 1rem;
  }
}
@media (max-width: 991px) {
  .hlg-intro {
    text-align: center;
    padding: 2rem 0;
  }
  .hlg-intro .btn-text {
    margin: 1rem auto;
  }
}

.practice_area_wrap {
  position: relative;
  overflow: crop;
}
.practice_area_wrap::before {
  content: "";
  background: url("/wp-content/uploads/2025/04/soft-white-bg.webp") center no-repeat;
  background-attachment: fixed;
  background-size: cover;
  width: 100%;
  height: 325px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.practice_area_wrap .intro {
  margin-bottom: 2rem;
}
.practice_area_wrap .pa-col {
  padding-left: 10px;
  padding-right: 10px;
}
.practice_area_wrap .practice_area_box {
  box-shadow: none;
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 330px;
  aspect-ratio: 330/400;
  overflow: hidden;
  background: var(--primary-color);
  color: white;
  padding: 0;
}
.practice_area_wrap .practice_area_box .pa-img {
  width: 100%;
  height: 100%;
  transition: 0.3s ease all;
}
.practice_area_wrap .practice_area_box .pa-bottom {
  background: var(--primary-color);
  padding: 10px;
  color: white;
  transition: 0.3s ease all;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.practice_area_wrap .practice_area_box h3 {
  line-height: 1.1;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2em;
  margin-bottom: 0;
}
.practice_area_wrap .practice_area_box h3::after {
  color: #CF9455;
  line-height: 1;
  margin-top: 2px;
}
.practice_area_wrap .practice_area_box .pa-desc {
  position: absolute;
  background: rgba(1, 1, 1, 0.8);
  color: white;
  font-size: 15px;
  padding: 15px;
  text-align: center;
  min-width: 80%;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease all;
  display: block;
  opacity: 0;
}
.practice_area_wrap .practice_area_box .pa-link {
  position: absolute;
  inset: 0;
  text-indent: -9999px;
}
.practice_area_wrap .practice_area_box:hover .pa-desc {
  top: calc(50% - 22.5px);
  opacity: 1;
}
.practice_area_wrap .practice_area_box:hover .pa-img {
  scale: 1.2;
}
.practice_area_wrap .practice_area_box:hover .pa-bottom {
  background: #2F2F2F;
}
.practice_area_wrap .pa-slider {
  margin-bottom: 2rem;
}
.practice_area_wrap .pa-slider:not(.flickity-enabled) {
  display: flex;
}
.practice_area_wrap .pa-slider .dot {
  scale: 1.5;
  background: var(--primary-color);
  opacity: 1;
  margin: 8px 12px 0;
}
.practice_area_wrap .pa-slider .dot.is-selected {
  background: var(--secondary-color);
}
@media (min-width: 992px) {
  .practice_area_wrap .pa-slider .dot {
    visibility: hidden;
  }
}

.results_wrap {
  background: #2F2F2F;
  color: white;
  overflow: hidden;
}
.results_wrap .intro {
  margin-bottom: 2rem;
}
.results_wrap .container {
  max-width: 1100px;
}
.results_wrap .results_box {
  background: white;
  color: #010101;
  border-radius: 10px;
  padding: 1rem 10px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.results_wrap .results_box .result-amount {
  color: var(--secondary-color);
  font-size: 49px;
  line-height: 1;
  font-weight: 500;
}
@media (max-width: 479px) {
  .results_wrap .results_box .result-amount {
    font-size: 12vw;
  }
}
.results_wrap .results_box .result-name {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}
.results_wrap .results_box .result-name::before {
  content: "";
  background: #CF9455;
  opacity: 0.5;
  height: 1px;
  width: 100%;
  position: absolute;
}
.results_wrap .results_box .result-name span {
  padding: 4px 10px;
  background: white;
  color: #CF9455;
  display: block;
  position: relative;
  font-weight: 500;
}
.results_wrap .results_box .result-name a {
  position: relative;
}
.results_wrap .results_box .result-text {
  height: 9em;
  overflow-y: auto;
  padding-right: 3px;
  text-align: left;
}
.results_wrap .results_box .result-text p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 0;
}
.results_wrap .view_all_results_box {
  height: 257px;
}
.results_wrap .view_all_results_box .btn {
  margin-top: 1rem;
}
.results_wrap .view_all_results_box img {
  max-height: 149px;
  width: 200px;
  max-width: 100%;
  height: auto;
}
.results_wrap .result-list {
  justify-content: center;
}
.results_wrap .result-list .res-col {
  margin: 0 auto 1.5rem;
  flex-grow: 0;
}
.results_wrap .result-list .results_box {
  padding: 1rem 12px 1.5rem;
  height: 100%;
  justify-content: start;
  transition: 0.3s ease all;
}
.results_wrap .result-list .results_box .result-name span {
  transition: 0.3s ease all;
}
.results_wrap .result-list .results_box:hover {
  background: var(--primary-color);
  color: white;
}
.results_wrap .result-list .results_box:hover .result-name span {
  background: var(--primary-color);
}
.results_wrap .result-list .results_box .result-text {
  height: unset;
}
.results_wrap .result-list .results_box .result-text p {
  line-height: 1.4;
}
.results_wrap .result-slider:not(.flickity-enabled) {
  display: flex;
}

.results_wrap.criminal_results .criminal-row {
  width: 100%;
}
.results_wrap.criminal_results .criminal-row.cr-heading-row {
  font-size: 24px;
  font-weight: 500;
  border-bottom: 2px solid #FF5758;
  margin-bottom: 0.5rem;
  padding: 0.75rem;
}
.results_wrap.criminal_results .criminal-row.criminal-result-row {
  padding: 0.75rem;
  font-size: 15px;
}
.results_wrap.criminal_results .criminal-row.criminal-result-row:nth-of-type(even) {
  background: rgba(0, 0, 0, 0.2);
}
@media (max-width: 575px) {
  .results_wrap.criminal_results .criminal-row.cr-heading-row {
    display: none;
  }
  .results_wrap.criminal_results .criminal-row.criminal-result-row {
    flex-direction: column;
    justify-content: center;
    padding: 1.25rem 0.75rem;
  }
  .results_wrap.criminal_results .criminal-row.criminal-result-row .col {
    flex-basis: auto;
    text-align: center;
  }
  .results_wrap.criminal_results .criminal-row.criminal-result-row .charge-col {
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 3px;
  }
  .results_wrap.criminal_results .criminal-row.criminal-result-row .charge-col::after {
    content: "";
    width: 150px;
    height: 1px;
    background: #FF5758;
    position: absolute;
    bottom: 0;
    left: 50%;
    opacity: 0.5;
    transform: translatex(-50%);
  }
  .results_wrap.criminal_results .criminal-row.criminal-result-row .outcome-col {
    color: #CF9455;
  }
  .results_wrap.criminal_results .criminal-row.criminal-result-row .court-col {
    padding-top: 4px;
    font-weight: 300;
    font-size: 13px;
  }
}
.results_wrap.criminal_results .result-slider .criminal-row {
  background: #fff;
  color: #010101;
}
.results_wrap.criminal_results .result-slider .criminal-result-row {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 257px;
  border-radius: 10px;
  padding: 1rem 10px;
}
.results_wrap.criminal_results .result-slider .criminal-result-row .col {
  flex-basis: auto;
  text-align: center;
  flex-grow: 0;
  max-width: 100%;
}
.results_wrap.criminal_results .result-slider .criminal-result-row .charge-col {
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 3px;
}
.results_wrap.criminal_results .result-slider .criminal-result-row .charge-col::after {
  content: "";
  width: 150px;
  height: 1px;
  background: #FF5758;
  position: absolute;
  bottom: 0;
  left: 50%;
  opacity: 0.5;
  transform: translatex(-50%);
}
.results_wrap.criminal_results .result-slider .criminal-result-row .outcome-col {
  color: #CF9455;
}
.results_wrap.criminal_results .result-slider .criminal-result-row .court-col {
  padding-top: 4px;
  font-weight: 300;
  font-size: 13px;
}

.footer-form {
  background-image: url("/wp-content/uploads/2025/04/softbg.webp");
  padding: 3rem 1rem 0;
}
.footer-form .the_form_wrap {
  background: #fff;
  padding: 2rem;
  border-radius: 9px;
  max-width: 625px;
  text-align: center;
  position: relative;
  margin: 0 auto -4rem;
}
.footer-form .the_form_wrap .btn {
  width: fit-content;
  background: var(--secondary-color);
  border: none;
  margin: 0 auto !important;
  font-size: 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 11px 2rem;
}

.the_form_wrap {
  margin: 0 auto;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.25);
}
.the_form_wrap .form-title {
  margin-bottom: 1.5rem;
}
@media (max-width: 575px) {
  .the_form_wrap .form-title {
    font-size: 8vw;
  }
}
.the_form_wrap .gform_wrapper input, .the_form_wrap .gform_wrapper textarea {
  border-color: #010101;
}
.the_form_wrap .gform_wrapper .secure {
  font-size: 14px;
  margin-top: 5px;
}

.toggle_wrap {
  position: relative;
  overflow: hidden;
}
@media (max-width: 479px) {
  .toggle_wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.toggle_wrap::before {
  content: "";
  inset: 0;
  position: absolute;
  backdrop-filter: blur(3px);
}
.toggle_wrap > .container {
  position: relative;
}
.toggle_wrap .intro {
  margin-bottom: 2rem;
}
.toggle_wrap .toggle-row {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  justify-content: space-between;
}
.toggle_wrap .accordion {
  width: 49%;
}
@media (max-width: 767px) {
  .toggle_wrap .accordion {
    width: 100%;
  }
}
.toggle_wrap .accordion .accordion_heading {
  padding: 1rem 50px 1rem 0;
  background: none;
  color: white;
  min-height: 72px;
  line-height: 1.2;
  border-bottom: 2px solid white;
  display: flex;
  align-items: center;
}
.toggle_wrap .accordion .accordion_heading::after {
  width: 21px;
  height: 14px;
  top: 28px;
  background: url("/wp-content/uploads/2025/04/down.svg");
}
.toggle_wrap .accordion .accordion_copy {
  background: #010101;
}

.legal-battles {
  padding: 0;
  background-position: center left;
  overflow: hidden;
}
.legal-battles > .container {
  max-width: 100%;
  padding: 0;
}
.legal-battles > .container > .row {
  margin: 0;
}
.legal-battles .is-text {
  background: rgba(32, 27, 27, 0.9);
  padding: 3rem 2rem;
  color: white;
}
.legal-battles .is-text > div {
  width: 740px;
  max-width: 100%;
}

.sb-inner {
  position: sticky;
  top: 120px;
}
.sb-inner .widget:has(.gform_wrapper) {
  padding: 0;
}
.sb-inner .the_form_wrap {
  background: #fff;
  box-shadow: 0px 5.878px 52.906px 0px rgba(0, 0, 0, 0.25);
}
.sb-inner .the_form_wrap .form-title {
  background: #2F2F2F;
  color: white;
  font-size: 31px;
  padding: 12px;
  line-height: 1.1;
  text-align: center;
  margin: 0 auto;
}
.sb-inner .the_form_wrap .sb-phone {
  margin: 0 auto;
  padding: 6px 3px;
  width: fit-content;
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 600;
}
.sb-inner .the_form_wrap .sb-phone svg, .sb-inner .the_form_wrap .sb-phone path {
  fill: currentColor;
  height: 26px;
  width: 26px;
  margin-right: 5px;
}
.sb-inner .the_form_wrap .sb-phone:hover {
  color: var(--secondary-color);
  text-decoration: none;
}
.sb-inner .the_form_wrap .gform_wrapper {
  padding: 0 15px 10px;
}
.sb-inner .the_form_wrap .gform_wrapper .gform_fields {
  grid-row-gap: 8px !important;
}
.sb-inner .the_form_wrap .gform_wrapper input[type]:not([type=checkbox]), .sb-inner .the_form_wrap .gform_wrapper textarea {
  box-shadow: 0px 0px 8px 4px rgba(0, 0, 0, 0.2);
  border: none;
}
.sb-inner .the_form_wrap .gform_wrapper input[type]:not([type=checkbox])::placeholder, .sb-inner .the_form_wrap .gform_wrapper textarea::placeholder {
  font-size: 14px;
}
.sb-inner .the_form_wrap .gform_wrapper .gfield_consent_label {
  font-size: 11.5px !important;
  line-height: 1.3 !important;
  text-align: center;
}
.sb-inner .the_form_wrap .gform_wrapper .btn {
  border: 0;
  width: fit-content;
  margin: 0 auto;
}
.sb-inner .the_form_wrap .gform_wrapper .secure {
  font-size: 13.5px;
}

.process_wrap {
  overflow: hidden;
  position: relative;
}
@media (max-width: 575px) {
  .process_wrap {
    text-align: center;
  }
  .process_wrap h2 {
    font-size: 7vw;
    margin-bottom: 0.5rem;
  }
}
.process_wrap .container {
  max-width: 1200px;
}
.process_wrap .intro {
  margin-bottom: 2rem;
  text-align: center;
}
.process_wrap .intro h2 {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .process_wrap .intro {
    display: flex;
    justify-content: space-between;
    text-align: left;
    align-items: center;
  }
  .process_wrap .intro h2 {
    max-width: 48%;
    font-size: 35px;
  }
  .process_wrap .intro .intro-copy {
    max-width: 45%;
  }
}
.process_wrap .step-number {
  font-size: 70px;
  font-weight: 600;
  line-height: 1;
}
.process_wrap .step-title {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
.process_wrap .step-content {
  font-size: 15px;
  overflow-y: auto;
  max-height: 200px;
}
.process_wrap .process-slider::after {
  content: "flickity";
  display: none;
}
@media (min-width: 992px) {
  .process_wrap .process-slider::after {
    content: none;
  }
}
.process_wrap .process-slider:not(.flickity-enabled) {
  display: flex;
  position: relative;
}
.process_wrap .process-slider::before {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--tertiary-color);
  opacity: 0.5;
  position: absolute;
  top: 36px;
  border-radius: 3px;
  left: 0;
  right: 0;
}
.process_wrap .process-slider button {
  background: url("/wp-content/uploads/2025/04/slide-arr-prev.svg") center no-repeat;
  background-size: contain;
}
.process_wrap .process-slider button svg {
  display: none;
}
.process_wrap .process-slider button.next {
  transform: scaleX(-1) translateY(-50%);
}
.process_wrap .process-slider button.previous {
  margin-left: -6.5rem;
}
.process_wrap .process-slider {
  width: 100%;
  margin: 0 auto 1rem;
}
@media (max-width: 575px) {
  .process_wrap .process-slider {
    margin-bottom: 3rem;
  }
  .process_wrap .process-slider button {
    top: calc(100% + 2rem);
  }
  .process_wrap .process-slider button.next {
    right: unset;
    margin-left: 3.5rem;
  }
  .process_wrap .process-slider button.previous {
    left: unset;
  }
}
@media (min-width: 576px) {
  .process_wrap .process-slider {
    width: 90%;
  }
  .process_wrap .process-slider button.next {
    right: -2rem;
  }
  .process_wrap .process-slider button.previous {
    left: -2rem;
    margin-left: unset;
  }
}
@media (min-width: 992px) {
  .process_wrap .process-slider {
    width: 100%;
  }
}
@media (min-width: 576px) {
  .process_wrap .process-step .step-content {
    max-height: unset;
  }
}

.staff_wrap {
  position: relative;
  overflow: hidden;
}
.staff_wrap::before {
  content: "";
  background: url(/wp-content/uploads/2025/04/soft-white-bg.webp) center no-repeat;
  background-attachment: fixed;
  background-size: cover;
  width: 100%;
  height: 325px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.staff_wrap .container {
  max-width: 1100px;
}
.staff_wrap .staff_box {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.staff_wrap .staff_box .staff-box-link {
  position: absolute;
  inset: 0;
  text-indent: -99999px;
}
.staff_wrap .staff_box .pic {
  aspect-ratio: 385/421;
  overflow: hidden;
  position: relative;
  padding-top: 1rem;
  background: linear-gradient(181deg, #FFF 28.03%, #777 99.49%);
  border-radius: 8px 8px 0 0;
}
.staff_wrap .staff_box .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.staff_wrap .staff_box .staff-box-bottom {
  border-radius: 0 0 8px 8px;
  background: var(--primary-color);
  color: white;
  line-height: 1;
  min-height: 40px;
  padding: 4px 6px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease all;
}
.staff_wrap .staff_box .staff-box-bottom .staff-name {
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 18px;
}
.staff_wrap .staff_box .staff-box-bottom .staff-name::after {
  content: "";
  display: block;
  height: 12px;
  width: 12px;
  background: url("/wp-content/uploads/2025/04/tan-arr.svg") center no-repeat;
  background-size: contain;
  transition: 0.3s ease all;
}
.staff_wrap .staff_box:hover .staff-box-bottom {
  background: #010101;
}
.staff_wrap .staff_box:hover .staff-box-bottom .staff-name::after {
  margin-left: 4px;
}

.cta_hero.attorney_hero {
  text-align: center;
}
.cta_hero.attorney_hero .row {
  justify-content: center;
}

.single_attorney_wrap .container-fluid {
  max-width: 1200px;
}
@media (min-width: 768px) {
  .single_attorney_wrap .att-pic-col {
    order: -1;
  }
}
.single_attorney_wrap .att-edu-block {
  background: #E1E1E1;
  padding: 1rem;
  margin: 1.5rem auto;
}
.single_attorney_wrap .att-edu-block p {
  font-size: 14px;
}
.single_attorney_wrap .att-edu-block h2, .single_attorney_wrap .att-edu-block .att-h2 {
  font-size: 22px;
  font-weight: 550;
  position: relative;
  padding-left: 26px;
  line-height: 1.2;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
}
.single_attorney_wrap .att-edu-block h2::before, .single_attorney_wrap .att-edu-block .att-h2::before {
  content: "";
  width: 22px;
  height: 18px;
  position: absolute;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.single_attorney_wrap .att-edu-block h2.att-education::before, .single_attorney_wrap .att-edu-block .att-h2.att-education::before {
  background-image: url("/wp-content/uploads/2025/04/school.svg");
}
.single_attorney_wrap .att-edu-block h2.att-admission::before, .single_attorney_wrap .att-edu-block .att-h2.att-admission::before {
  background-image: url("/wp-content/uploads/2025/04/gavel.svg");
}
.single_attorney_wrap .att-edu-block h2.att-memberships::before, .single_attorney_wrap .att-edu-block .att-h2.att-memberships::before {
  background-image: url("/wp-content/uploads/2025/04/award_star.svg");
}
.single_attorney_wrap .att-edu-block ul {
  padding-left: 1.5em;
  font-size: 15px;
}
.single_attorney_wrap .att-bio-col h2 {
  font-size: 28px;
  font-weight: 575;
}
@media (max-width: 767px) {
  .single_attorney_wrap .hide-mobile-pic {
    display: none;
  }
  .single_attorney_wrap .att-mobile-pic img {
    width: 350px;
    height: auto;
    max-width: 100%;
    margin: 0 auto 1.5rem;
    display: block;
  }
  .single_attorney_wrap .att-bio-col {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .single_attorney_wrap .att-bio-col .btn-text {
    margin: 1rem auto;
    width: fit-content;
  }
  .single_attorney_wrap .att-edu-block {
    width: 500px;
    max-width: 100%;
    margin: 1rem auto 0;
  }
}

.stat_wrap .intro {
  margin-bottom: 1.5rem;
}
.stat_wrap .intro h2 {
  font-size: 35px;
}
.stat_wrap .container {
  max-width: 1000px;
}
.stat_wrap .container > .row {
  margin: 0 auto;
}
.stat_wrap .stat-col {
  margin-bottom: 1.5rem;
  padding: 0 8px;
}
@media (max-width: 767px) {
  .stat_wrap .stat-col {
    min-width: 100%;
  }
  .stat_wrap .stat-col .the-stat {
    max-width: 400px;
    margin: 0 auto;
  }
}
.stat_wrap .the-stat {
  background: white;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.2));
  border-radius: 10px;
  overflow: hidden;
  padding: 1.25rem 1rem;
  height: 100%;
  border: 1px solid white;
  transition: 0.3s ease all;
}
.stat_wrap .the-stat .stat-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: 0.3s ease all;
}
.stat_wrap .the-stat img {
  height: 45px;
  width: 60px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 0.5rem;
  transition: 0.3s ease all;
}
.stat_wrap .the-stat .stat-copy {
  font-size: 14.5px;
}
.stat_wrap .the-stat:hover {
  border-color: var(--tertiary-color);
}
.stat_wrap .the-stat:hover img {
  transform: translatey(-3px) scale(1.05);
}
.stat_wrap .the-stat:hover .stat-title {
  color: var(--secondary-color);
}
.stat_wrap .social_media_list {
  padding: 0;
}

.blog_wrap {
  padding: 2rem 0;
}
.blog_wrap .container-fluid {
  max-width: 1200px;
}
.blog_wrap .blog-col {
  margin: 0 0 1.5rem;
}
.blog_wrap .blog_box {
  height: 100%;
  margin: 0 auto;
  width: 100%;
}
.blog_wrap .blog_box .blog-date {
  color: var(--tertiary-color);
}
.blog_wrap .blog_box .blog_box_copy {
  padding: 1.5rem;
}

.blog-sb {
  padding-bottom: 1px;
}

.contact-map {
  height: 300px;
  position: relative;
  overflow: hidden;
}
.contact-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #2F2F2F;
  mix-blend-mode: color;
  z-index: 2;
  pointer-events: none;
  opacity: 0.175;
}

.location_block_wrap {
  text-align: center;
}
.location_block_wrap a {
  color: var(--secondary-color);
}
.location_block_wrap .local-info-row {
  margin-top: 1.5rem;
  justify-content: center;
}
.location_block_wrap h4 {
  width: fit-content;
  padding: 0 1rem 5px;
  margin: 0 auto 1rem;
  border-bottom: 2px solid var(--tertiary-color);
}

@media (max-width: 991px) {
  .page-id-1201 .cta_hero {
    text-align: center;
  }
  .page-id-1201 .cta_hero .subcopy {
    margin: 1rem auto;
  }
  .page-id-1201 .cta_hero .hero-button {
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  .page-id-1201 .cta_hero .the_form_wrap {
    width: 500px;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .page-id-1201 .cta_hero .container > .row {
    align-items: center;
  }
}
.page-id-1201 .cta_hero .btn-text {
  display: none;
}

#contact-overlay {
  background: rgba(46, 46, 47, 0.8);
  backdrop-filter: blur(17.5px);
}
#contact-overlay p {
  margin: 0 auto;
}
#contact-overlay .contact-form-wrap img {
  max-height: 111px;
  width: auto;
  height: auto;
}
#contact-overlay .the_form_wrap {
  box-shadow: 0px 7.353px 66.173px 0px rgba(0, 0, 0, 0.25);
  background: white;
  text-align: center;
  margin: 0 auto;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.25);
}
#contact-overlay .the_form_wrap .form-title {
  background: #010101;
  color: white;
  font-size: 28px;
  padding: 1rem 0.5rem;
  border-bottom: 4px solid var(--tertiary-color);
  margin-bottom: 0;
}
#contact-overlay .the_form_wrap .sb-phone {
  margin: 0 auto;
  padding: 6px 3px;
  width: fit-content;
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 600;
  color: #010101;
}
#contact-overlay .the_form_wrap .sb-phone:hover {
  text-decoration: none;
  color: var(--secondary-color);
}
#contact-overlay .the_form_wrap .sb-phone svg {
  fill: currentColor;
  height: 26px;
  width: 26px;
  margin-right: 5px;
}
#contact-overlay .the_form_wrap .gform_wrapper {
  padding: 0 15px 10px;
  color: #010101;
}
#contact-overlay .the_form_wrap .gform_wrapper .gform_fields {
  grid-row-gap: 8px !important;
}
#contact-overlay .the_form_wrap .gform_wrapper input[type]:not([type=checkbox]), #contact-overlay .the_form_wrap .gform_wrapper textarea {
  box-shadow: 0px 0px 8px 4px rgba(0, 0, 0, 0.2);
  border: none;
}
#contact-overlay .the_form_wrap .gform_wrapper input[type]:not([type=checkbox])::placeholder, #contact-overlay .the_form_wrap .gform_wrapper textarea::placeholder {
  font-size: 14px;
}
#contact-overlay .the_form_wrap .gform_wrapper .gfield_consent_label {
  font-size: 11.5px !important;
  line-height: 1.3 !important;
  text-align: center;
}
#contact-overlay .the_form_wrap .gform_wrapper .btn {
  border: 0;
  width: fit-content;
  margin: 0 auto;
}
#contact-overlay .the_form_wrap .gform_wrapper .secure {
  font-size: 13.5px;
}
#contact-overlay .the_form_wrap p:empty {
  display: none;
}