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

* {
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

* ::-moz-selection, * ::-moz-selection {
  background: #a8a8a88c;
  color: #fff;
}

* ::selection, * ::-moz-selection {
  background: #a8a8a88c;
  color: #fff;
}

body, p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9375rem, calc(0.9375rem + (18 - 15) * (100vw - 375px) / (1440 - 375)), 1.125rem);
	font-size: 1rem;
  color: #2B2B2B;
  line-height: 1.4;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--primary-color);
}

h1, .h1 {
  font-size: clamp(1.875rem, calc(1.875rem + (50 - 30) * (100vw - 375px) / (1440 - 375)), 3.125rem);
  line-height: 1;
}

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

@-webkit-keyframes pulse {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    opacity: 0;
    -webkit-transform: scale(2.5);
            transform: scale(2.5);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(3);
            transform: scale(3);
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    opacity: 0;
    -webkit-transform: scale(2.5);
            transform: scale(2.5);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(3);
            transform: scale(3);
  }
}

@-webkit-keyframes pulse2 {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  30% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2.5);
            transform: scale(2.5);
  }
}

@keyframes pulse2 {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  30% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2.5);
            transform: scale(2.5);
  }
}

.available {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.9375rem;
}

.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 {
  -webkit-animation: pulse2 2s ease 0s infinite;
          animation: pulse2 2s ease 0s infinite;
}

.beacon::after, .available .dot::after {
  -webkit-animation: pulse 2s ease 0s infinite;
          animation: pulse 2s ease 0s infinite;
}

.secure {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
  font-size: 0.9375rem;
  font-weight: normal;
  text-transform: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.375rem;
}

.secure::before {
  content: '';
  height: 20px;
  width: 20px;
  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;
}

.toggle_overlay.btn {
  font-size: 1.25rem;
  text-transform: uppercase;
}

.btn-phone {
  position: relative;
  padding-left: 5rem;
  font-size: 1.25rem;
}

.btn-phone:before {
  content: url("../img/phone.svg");
  position: absolute;
  left: 1.125rem;
}

.btn-phone .available, .btn-phone .free_con_text {
  font-size: 0.9375rem;
  text-transform: capitalize;
  font-weight: normal;
  margin-top: 0.375rem;
}

.cta_hero .col-lg-7 {
  max-width: 100%;
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
}

.cta_hero .cta_copy_wrap {
  padding-top: clamp(3.125rem, calc(3.125rem + (200 - 50) * (100vw - 375px) / (1440 - 375)), 12.5rem);
  padding-bottom: 3.125rem;
}

@media (max-width: 767px) {
  .cta_hero .cta_copy_wrap {
    text-align: center;
  }
}

.cta_hero .cta_copy_wrap h1, .cta_hero .cta_copy_wrap .h1 {
  margin-bottom: clamp(1.25rem, calc(1.25rem + (30 - 20) * (100vw - 375px) / (1440 - 375)), 1.875rem);
  color: #fff;
}

@media (max-width: 767px) {
  .cta_hero .cta_copy_wrap h1, .cta_hero .cta_copy_wrap .h1 {
    line-height: 1.2;
  }
}

.cta_hero .cta_copy_wrap .heroh1 {
  font-size: clamp(1.25rem, calc(1.25rem + (40 - 20) * (100vw - 375px) / (1440 - 375)), 2.5rem);
  font-style: italic;
  line-height: 1;
}

.cta_hero .cta_copy_wrap h1.heroh1 {
  font-size: clamp(1.875rem, calc(1.875rem + (50 - 30) * (100vw - 375px) / (1440 - 375)), 3.125rem);
  font-style: normal;
}

@media (min-width: 768px) {
  .cta_hero .cta_copy_wrap h1 + .heroh1 + .hero_buttons {
    padding-top: 2.8125rem;
  }
}

.cta_hero .cta_copy_wrap .hero_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}

@media (max-width: 767px) {
  .cta_hero .cta_copy_wrap .hero_buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 767px) {
  .cta_hero {
    min-height: 48vh;
  }
}

.cta_hero.has_form_holder .cta_copy_wrap {
  padding-top: 0 !important;
}

.btn-ratings a {
  background: #fff;
  color: #5E5E5E;
  font-weight: 600;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  padding: 0.625rem 1.25rem;
  border-radius: 3.125rem;
  font-size: 0.875rem;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.btn-ratings a img {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 0 !important;
  margin: 0;
}

.reviews-carousel {
  width: 100%;
}

.reviews-carousel:not(.flickity-enabled),
.pa-slider:not(.flickity-enabled) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

img {
  height: auto;
}

.review_wrap {
  padding-top: 0;
  margin-top: -110px;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}

.review_wrap::before {
  content: '';
  background-color: #013566;
  position: absolute;
  height: 77%;
  width: 100%;
  left: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
}

.review_wrap .flickity-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.review_wrap #snippet-box .carousel-cell {
  border-radius: 8px;
  background: var(--White, #FFF);
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
  margin: 10px;
  padding: 20px;
  border-bottom: 4px solid var(--secondary-color);
  position: relative;
}

.review_wrap #snippet-box .carousel-cell .snippet-markup {
  position: relative;
}

@media (max-width: 991px) {
  .review_wrap #snippet-box .carousel-cell {
    width: 33.33% !important;
  }
}

@media (max-width: 767px) {
  .review_wrap #snippet-box .carousel-cell {
    width: 90% !important;
  }
}

.review_wrap #snippet-box .carousel-cell:hover {
  border-bottom-color: var(--secondary-color);
}

.review_wrap .star-img svg path {
  fill: #FFB700;
}

.review_wrap .intro {
  display: none;
}

.review_wrap .review_wrap {
  padding: 0;
}

.review_wrap #snippet-box {
  margin: 0 auto;
}

.review_wrap #snippet-box {
  width: 100%;
  max-width: 1920px;
  margin: 2rem auto;
}

.review_wrap #snippet-box .carousel-cell {
  width: 25%;
}

.review_wrap .flickity-button, .review_wrap .flickity-page-dots {
  display: none;
}

.review_wrap .star-img svg {
  width: 100%;
}

.review_wrap .star_name_holder {
  text-align: center;
  margin-bottom: 0.5rem;
}

.review_wrap .star_name_holder > div .star-img {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  justify-self: center;
  gap: 0.375rem;
}

.review_wrap .star_name_holder > div .star-img::before {
  content: url("../img/google.svg");
}

.review_wrap .star_name_holder > div .star-img svg {
  padding: 0;
}

.review_wrap .star_name_holder > div .review_name {
  margin: 0;
  padding-bottom: 0.125rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2B2B2B;
  margin-bottom: 0.9375rem;
  margin-top: 1.25rem;
}

.review_wrap .the_review {
  text-align: center;
  display: inline-block;
  max-height: 120px;
  min-height: 120px;
  font-size: 1rem;
}

@media (min-width: 992px) {
  .review_wrap .flickity-viewport {
    margin-left: -40px;
  }
}

.featured_videos_section {
  padding-bottom: 0;
  margin-bottom: clamp(2.5rem, calc(2.5rem + (80 - 40) * (100vw - 375px) / (1440 - 375)), 5rem);
}

@media (min-width: 992px) {
  .featured_videos_section > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 992px) {
  .featured_videos_section > .container .intro {
    width: 30%;
  }
}

@media (max-width: 767px) {
  .featured_videos_section > .container .intro {
    text-align: center;
  }
}

.featured_videos_section > .container .intro .hh span {
  color: var(--secondary-color);
}

.featured_videos_section > .container .intro .videos-block-content p {
  font-size: clamp(1rem, calc(1rem + (18 - 16) * (100vw - 375px) / (1440 - 375)), 1.125rem);
  margin-bottom: 1.5625rem;
}

@media (min-width: 992px) {
  .featured_videos_section > .container .intro + .pa-slider {
    width: 70%;
  }
}

.featured_videos_section > .container .intro + .pa-slider .col-lg-4 {
  max-width: 50%;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  padding: 15px;
}

@media (max-width: 767px) {
  .featured_videos_section > .container .intro + .pa-slider .col-lg-4 {
    max-width: 90%;
    -webkit-box-flex: 90%;
        -ms-flex: 90%;
            flex: 90%;
    padding: 6px;
  }
}

.featured_videos_section > .container .intro + .pa-slider .col-lg-4 .video-title {
  display: none;
}

.featured_videos_section > .container .intro + .pa-slider .col-lg-4 .video-thumbnail {
  border-radius: 20px;
}

@media (max-width: 767px) {
  .featured_videos_section > .container .intro + .pa-slider .col-lg-4 .video-thumbnail svg {
    width: 3.75rem;
  }
}

.featured_videos_section > .container .intro + .pa-slider .col-lg-4 .video-thumbnail:hover a svg mask + g path {
  fill: var(--secondary-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.why_choose_us_section {
  padding: 0;
  overflow: hidden;
}

.why_choose_us_section + .featured_videos_section {
  margin-top: clamp(3.125rem, calc(3.125rem + (100 - 50) * (100vw - 375px) / (1440 - 375)), 6.25rem);
}

.why_choose_us_section > .container {
  max-width: 100%;
  padding: 0;
}

.why_choose_us_section > .container > .row {
  background: var(--primary-color);
  color: #fff;
}

@media (max-width: 991px) {
  .why_choose_us_section > .container > .row {
    margin: 0;
  }
}

.why_choose_us_section > .container > .row h2 {
  font-size: clamp(1.875rem, calc(1.875rem + (50 - 30) * (100vw - 375px) / (1440 - 375)), 3.125rem);
  color: #fff;
}

.why_choose_us_section > .container > .row .is-text {
  max-width: 750px;
  padding-left: clamp(1.25rem, calc(1.25rem + (100 - 20) * (100vw - 1024px) / (1440 - 1024)), 6.25rem);
  padding-bottom: 3.125rem;
  padding-top: 3.125rem;
}

@media (max-width: 767px) {
  .why_choose_us_section > .container > .row .is-text {
    padding-bottom: 1.25rem;
  }
  .why_choose_us_section > .container > .row .is-text > p:first-child {
    text-align: center;
  }
  .why_choose_us_section > .container > .row .is-text > p:first-child + h2 {
    text-align: center;
  }
  .why_choose_us_section > .container > .row .is-text > p:last-child {
    text-align: center;
  }
}

.why_choose_us_section > .container > .row .is-text p, .why_choose_us_section > .container > .row .is-text ul, .why_choose_us_section > .container > .row .is-text h2 {
  margin-bottom: 30px;
}

.why_choose_us_section > .container > .row .is-text p span.btn {
  font-size: 0.9375rem;
}

@media (max-width: 767px) {
  .why_choose_us_section > .container > .row > div.col-lg-6:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.faq_vide0_page .pa-slider .col-lg-4 {
  max-width: 50%;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  padding: 15px;
}

@media (max-width: 767px) {
  .faq_vide0_page .pa-slider .col-lg-4 {
    max-width: 90%;
    -webkit-box-flex: 90%;
        -ms-flex: 90%;
            flex: 90%;
    padding: 6px;
  }
}

.faq_vide0_page .pa-slider .col-lg-4 .video-title {
  display: none;
}

.faq_vide0_page .pa-slider .col-lg-4 .video-thumbnail {
  border-radius: 20px;
}

@media (max-width: 767px) {
  .faq_vide0_page .pa-slider .col-lg-4 .video-thumbnail svg {
    width: 3.75rem;
  }
}

.faq_vide0_page .pa-slider .col-lg-4 .video-thumbnail:hover a svg mask + g path {
  fill: var(--secondary-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.site-content ul {
  -webkit-padding-start: 1.25rem;
          padding-inline-start: 1.25rem;
}

.site-content ul li {
  margin-bottom: 0.625rem;
}

.awards_recognitions {
  margin-top: clamp(3.125rem, calc(3.125rem + (100 - 50) * (100vw - 375px) / (1440 - 375)), 6.25rem);
  margin-bottom: clamp(3.125rem, calc(3.125rem + (100 - 50) * (100vw - 375px) / (1440 - 375)), 6.25rem);
}

.awards_recognitions .flickity-page-dots {
  bottom: -48px;
}

@media (max-width: 991px) {
  .awards_recognitions .flickity-page-dots {
    bottom: -26px;
  }
}

@media (max-width: 991px) {
  .awards_recognitions {
    padding: 0;
  }
}

.awards_recognitions h2, .awards_recognitions p {
  text-align: center;
}

.awards_recognitions h2 + p {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 1.875rem;
}

.awards_recognitions .awards-carousel {
  position: relative;
}

.awards_recognitions .awards-carousel:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 120px;
  /* Adjust as needed */
  z-index: 2;
  pointer-events: none;
  background: -webkit-gradient(linear, left top, right top, color-stop(40%, white), to(transparent));
  background: linear-gradient(to right, white 40%, transparent 100%);
}

.awards_recognitions .awards-carousel:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 120px;
  /* Adjust as needed */
  z-index: 2;
  pointer-events: none;
  background: -webkit-gradient(linear, right top, left top, color-stop(40%, white), to(transparent));
  background: linear-gradient(to left, white 40%, transparent 100%);
}

.call_steven {
  background: var(--secondary-color);
  padding: 3rem 1.25rem;
}

.call_steven > .split_container {
  max-width: 1280px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}

@media (max-width: 991px) {
  .call_steven > .split_container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.25rem;
  }
}

.call_steven > .split_container h2 {
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  font-size: clamp(1.5625rem, calc(1.5625rem + (45 - 25) * (100vw - 375px) / (1440 - 375)), 2.8125rem);
}

.call_steven > .split_container .available {
  -ms-grid-column-align: center;
      justify-self: center;
  margin-bottom: 10px;
}

.call_steven > .split_container .on_hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.practice_areas_section {
  padding: clamp(3.75rem, calc(3.75rem + (120 - 60) * (100vw - 375px) / (1440 - 375)), 7.5rem) 0;
}

@media (max-width: 767px) {
  .practice_areas_section .container {
    padding: 0;
  }
}

.practice_area_wrap {
  background: #F7F7F7;
  background: #F7F7F7;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, #fff), color-stop(98%, rgba(186, 33, 39, 0.12)), to(rgba(186, 33, 39, 0.3)));
  background: linear-gradient(to bottom, #fff 85%, rgba(186, 33, 39, 0.12) 98%, rgba(186, 33, 39, 0.3) 100%);
}

.practice_area_wrap .practice_area_box {
  display: block;
  text-decoration: none;
  margin: 0;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.practice_area_wrap .practice_area_box .pa-inner-cont img {
  height: 80px;
  margin-bottom: 10px;
}

.practice_area_wrap .col-lg-4 {
  max-width: 25%;
  padding: 0;
  border: 1px solid #C9C9C9;
}

@media (max-width: 991px) {
  .practice_area_wrap .col-lg-4 {
    max-width: 50%;
  }
}

@media (max-width: 991px) and (max-width: 767px) {
  .practice_area_wrap .col-lg-4 {
    max-width: 90%;
  }
}

.practice_area_wrap h3 {
  font-size: 1.375rem;
}

.practice_area_wrap h3:after {
  content: '';
  display: block;
  width: 45px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 20px;
  margin: 0 auto;
  margin-top: 1.25rem;
}

.practice_area_wrap .text_holder {
  font-size: 0.875rem;
  margin: 1.5rem 0;
  max-height: 100px;
  min-height: 70px;
  margin-bottom: 0 !important;
  overflow-y: auto;
}

.pa-slider:not(.flickity-enabled) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .pa-slider:not(.flickity-enabled) {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.pa-slider .flickity-button {
  display: none;
}

/* flickity on by default */
.pa-slider:after {
  content: 'flickity';
  display: none;
}

@media screen and (min-width: 768px) {
  /* disable Flickity for large devices */
  .pa-slider:after {
    content: '';
  }
}

.results_box .col-lg-6 {
  max-width: 100%;
}

.results_wrap .intro {
  margin-bottom: clamp(1.5625rem, calc(1.5625rem + (50 - 25) * (100vw - 375px) / (1440 - 375)), 3.125rem);
}

.results_wrap .intro h2 {
  margin-bottom: 0.9375rem;
}

.results_wrap .intro .intro-copy {
  text-align: center;
  font-size: clamp(1.5625rem, calc(1.5625rem + (30 - 25) * (100vw - 375px) / (1440 - 375)), 1.875rem);
  font-weight: 500;
  color: #46627A;
}

@media (max-width: 991px) {
  .results_wrap .col-md-4 {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .results_wrap .col-md-4 {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
}

.results_wrap .results_box {
  text-align: left !important;
  border-radius: 28px;
  background: #F4F4F2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.results_wrap .results_box .results_copy {
  max-height: 110px;
  min-height: 110px;
  overflow-y: auto;
}

.results_wrap .results_box h3 {
  font-size: clamp(1.875rem, calc(1.875rem + (44 - 30) * (100vw - 375px) / (1440 - 375)), 2.75rem);
}

.results_wrap .results_box .results_name {
  display: block;
  background: #46627A;
  color: #fff;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 10px 20px;
  border-radius: 8px;
  margin-bottom: 1.25rem;
}

.results_wrap .results_box a {
  text-decoration: none;
}

.results_wrap .results_box:hover {
  background: var(--primary-color);
  color: #fff;
}

.results_wrap .results_box:hover h3, .results_wrap .results_box:hover p {
  color: #fff;
}

.results_wrap .results_btn {
  text-align: center;
  margin-top: clamp(1.875rem, calc(1.875rem + (50 - 30) * (100vw - 375px) / (1440 - 375)), 3.125rem);
}

.this_content_wrap {
  padding: 0;
}

.this_content_wrap > .container > .row {
  padding: 3rem 0;
}

@media (min-width: 992px) {
  .this_content_wrap.the_content {
    padding: 5rem 0;
  }
}

.this_content_wrap .widget-area {
  padding: 0;
}

@media (max-width: 991px) {
  .this_content_wrap .widget-area {
    margin-bottom: 0;
    margin-top: 1rem;
  }
}

.this_content_wrap .widget_block {
  margin: 0;
  background-color: var(--primary-color);
}

.this_content_wrap .widget_block .p_number {
  text-align: center;
  color: #fff;
  font-size: 1.08581rem;
  font-weight: 700;
  padding-top: 1.125rem;
  padding-bottom: 0.3125rem;
  text-transform: uppercase;
}

.this_content_wrap .widget_block .p_number a {
  color: #fff;
}

.this_content_wrap .sb-inner {
  position: -webkit-sticky;
  position: sticky;
  top: 11.25rem;
}

@media (min-width: 1400px) {
  .this_content_wrap .sb-inner {
    padding-left: 2.5rem;
  }
}

.this_content_wrap .sb-inner .widget_block {
  padding: 0;
}

.this_content_wrap .sb-inner .nowin_nofee {
  background: var(--secondary-color);
  color: #fff;
  margin: 0;
  padding: 20px;
  font-size: 1.375rem;
  text-align: center;
  text-transform: capitalize;
  font-weight: 500;
}

.this_content_wrap .sb-inner .gform_heading {
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 1.25rem;
}

.this_content_wrap .sb-inner .gform_heading .gform_description, .this_content_wrap .sb-inner .gform_heading p {
  margin: 0;
}

.this_content_wrap .sb-inner .gform_heading .avail {
  font-style: italic;
  font-size: 0.746rem;
}

.this_content_wrap .sb-inner .gform_heading h2 {
  color: #fff;
  margin: 0;
  text-align: center;
  font-size: 2.375rem;
  margin-bottom: 0.875rem;
}

.this_content_wrap .sb-inner .gform_heading p {
  color: #fff;
  font-size: 0.875rem;
}

.this_content_wrap .sb-inner form {
  padding: 1.25rem 1.875rem;
  color: #fff;
}

.this_content_wrap .sb-inner form .gfield--type-choice {
  text-align: center;
}

.this_content_wrap .sb-inner form .ginput_container textarea {
  resize: none;
}

.this_content_wrap .sb-inner form .ginput_container textarea, .this_content_wrap .sb-inner form .ginput_container input {
  background: var(--White, #FFF);
  -webkit-box-shadow: 0px 0px 11.004px 4.716px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 11.004px 4.716px rgba(0, 0, 0, 0.2);
  height: 45px;
  border-radius: 8px;
  padding: 6px 16px;
}

.this_content_wrap .sb-inner form .ginput_container textarea::-webkit-input-placeholder, .this_content_wrap .sb-inner form .ginput_container input::-webkit-input-placeholder {
  color: #656565;
}

.this_content_wrap .sb-inner form .ginput_container textarea:-ms-input-placeholder, .this_content_wrap .sb-inner form .ginput_container input:-ms-input-placeholder {
  color: #656565;
}

.this_content_wrap .sb-inner form .ginput_container textarea::-ms-input-placeholder, .this_content_wrap .sb-inner form .ginput_container input::-ms-input-placeholder {
  color: #656565;
}

.this_content_wrap .sb-inner form .ginput_container textarea::placeholder, .this_content_wrap .sb-inner form .ginput_container input::placeholder {
  color: #656565;
}

.this_content_wrap .sb-inner form .gform_fields {
  grid-row-gap: 10px;
}

.this_content_wrap .sb-inner form .ginput_container_consent input {
  height: auto !important;
}

.this_content_wrap .sb-inner form .gform_footer .gform_button {
  color: #fff;
  border: 0;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  margin-bottom: 10px;
}

.gform_footer .gform_button {
  color: #fff;
  border: 0;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  margin-bottom: 10px;
}

.gform_footer .btn-ratings {
  margin: 10px auto;
}

.this_content_wrap {
  padding-bottom: clamp(1.875rem, calc(1.875rem + (50 - 30) * (100vw - 375px) / (1440 - 375)), 3.125rem);
}

.process_wrap .fimg img {
  width: 100%;
}

@media (max-width: 991px) {
  .process_wrap .fimg img {
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 991px) {
  .process_wrap .intro + .row > div {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .process_wrap .intro + .row > div:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 1.25rem;
  }
  .process_wrap .intro + .row > div:last-child {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.our_prcoess_section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.process_wrap .intro {
  color: #fff;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 3.75rem;
}

.process_wrap .intro h2 {
  color: #fff;
}

.process_wrap .process-sect {
  color: #555555;
}

.process_wrap .process-sect > .row {
  gap: 30px;
}

.process_wrap .process-sect .process-step {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
}

.process_wrap .process-sect .process-step h4 {
  color: var(--primary-color);
  font-size: clamp(1.5625rem, calc(1.5625rem + (40 - 25) * (100vw - 375px) / (1440 - 375)), 2.5rem);
  margin-bottom: 0.75rem;
}

.process_wrap .process-sect .process-step > div {
  background: #fff;
  border-radius: 28px;
  padding: 30px 40px;
  font-size: 1rem;
}

.process_wrap .process-sect .process-step > div .step {
  background: #46627A;
  color: #fff;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 10px 25px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.process_wrap .process-sect .process-step > div:hover {
  background: #46627A;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.process_wrap .process-sect .process-step > div:hover h4, .process_wrap .process-sect .process-step > div:hover .step-content {
  color: #fff;
}

.process_wrap .process-sect .process-step > div:hover .step {
  background: var(--primary-color);
}

.process_wrap .btn-text {
  width: 100%;
  margin-top: 50px;
}

.site-content:has(.staff_wrap) .blogs_wrap_section {
  background-image: url("/wp-content/uploads/2025/06/bg_blogs-scaled.webp");
  background-color: #e2e2e28c;
}

.blogs_wrap_section {
  background-image: url("/wp-content/uploads/2025/06/bg_blogs-scaled.webp");
  background-color: #e2e2e28c;
  padding-top: clamp(3.125rem, calc(3.125rem + (120 - 50) * (100vw - 375px) / (1440 - 375)), 7.5rem);
  padding-bottom: clamp(3.125rem, calc(3.125rem + (120 - 50) * (100vw - 375px) / (1440 - 375)), 7.5rem);
}

.blogs_wrap_section .btn_holder {
  text-align: center;
  margin-top: clamp(1.875rem, calc(1.875rem + (60 - 30) * (100vw - 375px) / (1440 - 375)), 3.75rem);
}

.blogs_wrap .intro {
  text-align: center;
  padding: 0 2rem;
  margin-bottom: clamp(1.875rem, calc(1.875rem + (50 - 30) * (100vw - 375px) / (1440 - 375)), 3.125rem);
}

@media (max-width: 991px) {
  .blogs_wrap .row {
    gap: 1.5625rem;
  }
}

.blogs_wrap .post-card > div {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  height: 100%;
  -webkit-box-shadow: 0 0 2px 0 #ccc;
          box-shadow: 0 0 2px 0 #ccc;
}

@media (max-width: 1199px) {
  .blogs_wrap .post-card > div {
    -webkit-box-shadow: 0 0 4px #ccc;
            box-shadow: 0 0 4px #ccc;
  }
}

.blogs_wrap .post-card > div > a {
  display: block;
}

.blogs_wrap .post-card > div > a > img {
  width: 100%;
  height: 323px;
  -o-object-fit: cover;
     object-fit: cover;
}

.blogs_wrap .post-card > div .content_holder {
  padding: 1.75rem 1.875rem;
}

.blogs_wrap .post-card > div .content_holder .post-card-title {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.blogs_wrap .post-card > div .content_holder .post-card-title a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: clamp(1.5625rem, calc(1.5625rem + (30 - 25) * (100vw - 375px) / (1440 - 375)), 1.875rem);
  line-height: 1.2;
}

.blogs_wrap .post-card > div .content_holder .post-card-excerpt {
  font-size: 1rem;
  line-height: 1.6;
}

.blogs_wrap .post-card > div .content_holder .post-card-date {
  font-style: italic;
  color: var(--secondary-color);
  margin-bottom: 0.375rem;
}

.blogs_wrap .post-card > div .content_holder .post-card-learn-more {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.25rem;
}

.faq_section .intro {
  text-align: center;
  padding: 0 2rem;
  margin-bottom: clamp(1.875rem, calc(1.875rem + (50 - 30) * (100vw - 375px) / (1440 - 375)), 3.125rem);
}

.faq_section .intro .hh {
  margin-bottom: 1rem;
}

.faq_section .intro .intro-copy {
  max-width: 800px;
  margin: 0 auto;
}

.faq_section .col-md-12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
}

.faq_section .col-md-12 > div {
  padding: 0.75rem;
}

@media (min-width: 768px) {
  .faq_section .col-md-12 > div {
    width: calc(100%/2);
  }
}

.faq_section .col-md-12 .accordion.open .accordion_heading {
  border-bottom: 1px solid #E1E1E1;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.faq_section .col-md-12 .accordion_heading {
  background: #F4F4F2;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.4;
  border-bottom: 1px solid #F4F4F2;
  border-top-left-radius: 35px;
  border-top-right-radius: 35px;
  border-bottom-left-radius: 35px;
  border-bottom-right-radius: 35px;
  padding-right: 72px;
  padding-left: 34px;
}

.faq_section .col-md-12 .accordion_heading:after {
  right: 22px;
  top: 38%;
  height: 30px;
  width: 30px;
  background-size: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.faq_section .col-md-12 .accordion_copy {
  background: #F4F4F2;
  margin: 0;
  border-bottom-left-radius: 35px;
  border-bottom-right-radius: 35px;
}

.faq_section .col-md-12 .accordion_copy p {
  font-size: 1rem;
}

@media (min-width: 992px) {
  .customfooter_section .row.align-items-center > div.col-lg-6:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
    max-width: 60%;
  }
}

.customfooter_section .row.align-items-center > div.col-lg-6:last-child {
  color: #fff;
}

@media (min-width: 992px) {
  .customfooter_section .row.align-items-center > div.col-lg-6:last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    max-width: 40%;
  }
}

.customfooter_section .row.align-items-center > div.col-lg-6:last-child > h2 {
  color: #fff;
}

.customfooter_section .row.align-items-center > div.col-lg-6:last-child form #field_1_4, .customfooter_section .row.align-items-center > div.col-lg-6:last-child form #field_1_3 {
  grid-column: span 6;
}

.customfooter_section .row.align-items-center > div.col-lg-6:last-child form .ginput_container input:not([type="checkbox"]), .customfooter_section .row.align-items-center > div.col-lg-6:last-child form .ginput_container textarea {
  background: var(--White, #FFF);
  height: 45px;
  border-radius: 8px;
  padding: 6px 16px;
}

.customfooter_section .row.align-items-center > div.col-lg-6:last-child form .ginput_container textarea {
  height: 130px;
  resize: none;
}

.our_loactions_footer > .row {
  margin: 0;
}

.our_loactions_footer > .row > .col_ {
  width: calc(100%/4);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 1199px) {
  .our_loactions_footer > .row > .col_ {
    width: calc(100%/2);
  }
}

@media (max-width: 767px) {
  .our_loactions_footer > .row > .col_ {
    width: 100%;
  }
}

.our_loactions_footer .col_ {
  padding: 0;
}

.our_loactions_footer .col_ a {
  font-size: 0.9375rem;
}

.our_loactions_footer .col_ .location_box {
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 0;
  background: transparent;
  color: #fff;
  position: relative;
  padding: 22px 10px;
  min-height: 168px;
  display: fleX;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.our_loactions_footer .col_ .location_box::before {
  content: '';
  position: absolute;
  background: #000;
  opacity: 0.5;
  width: 100%;
  left: 0;
  height: 100%;
  top: 0;
}

.our_loactions_footer .col_ .location_box:hover > a:before {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.our_loactions_footer .col_ .location_box > a {
  position: relative;
  text-decoration: none;
}

.our_loactions_footer .col_ .location_box > a::before {
  content: url("../img/pin.svg");
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer_section > .container > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4rem 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 767px) {
  .footer_section > .container > div {
    gap: 1.5625rem;
  }
}

.footer_section > .container > div > div {
  width: calc(100%/4);
}

@media (max-width: 991px) {
  .footer_section > .container > div > div {
    width: calc(100%/3);
  }
}

@media (max-width: 767px) {
  .footer_section > .container > div > div {
    width: 100%;
  }
}

@media (max-width: 1199px) {
  .footer_section > .container > div > div:last-child {
    width: 30%;
    width: 100%;
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .footer_section > .container > div > div:last-child {
    text-align: center;
    margin-top: 20px;
  }
}

.footer_section > .container > div > div h5 {
  color: #fff;
  font-size: 1.375rem;
}

.footer_section > .container > div > div ul {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

.footer_section > .container > div > div ul li {
  list-style: none;
  margin-bottom: 6px;
}

.footer_section > .container > div > div ul li a {
  color: #fff;
  font-weight: normal;
}

.footer_section .footer_tel_holder .tel a {
  color: #fff;
  font-size: clamp(1.25rem, calc(1.25rem + (40 - 20) * (100vw - 375px) / (1440 - 375)), 2.5rem);
}

.footer_section .social_media_list .social_wrap li + li {
  margin-left: 6px;
}

.footer_section .social_media_list .social_wrap li a {
  border: 1px solid #fff;
  border-radius: 100px;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer_section .social_media_list .social_wrap li a svg {
  fill: #fff;
  width: 22px;
}

.site_info {
  background: var(--primary-color);
  border-top: 1px solid #3D5475;
}

.site_info p, .site_info a {
  color: #fff;
}

.desktop_header_wrap > .container > .row {
  margin: 0;
}

@media (max-width: 1199px) {
  .site-footer img {
    max-width: 160px;
  }
}

.mobile_site_branding img {
  max-width: 108px;
}

.mobile_phone a {
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}

.mobile_phone a::before {
  content: '';
  background-image: url("../img/phone.svg");
  display: inline-block;
  height: 20px;
  width: 20px;
  background-repeat: no-repeat;
  background-size: 20px;
}

.standard_hero:not(:has(.hero_video__wrap)) .hero_overlay {
  background: #183157;
  opacity: 0.8;
}

@media (max-width: 767px) {
  .standard_hero:has(.hero_video__wrap) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 0;
    background-image: none !important;
    background-color: var(--primary-color);
  }
  .standard_hero:has(.hero_video__wrap) > div:not(:last-child) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .standard_hero:has(.hero_video__wrap) .hero_video__wrap, .standard_hero:has(.hero_video__wrap) .hero_video__wrap video {
    position: relative;
    visibility: visible;
    height: 310px;
  }
  .standard_hero:has(.hero_video__wrap) .hero_video__wrap:before {
    content: '';
    background: -webkit-gradient(linear, left bottom, left top, color-stop(6%, #14253E), color-stop(46.22%, rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, #14253E 6%, rgba(0, 0, 0, 0) 46.22%);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    bottom: -2px;
  }
}

@media (max-width: 991px) {
  .single_attorney_wrap {
    padding-top: 0;
  }
}

.single_attorney_wrap .att-name {
  margin-bottom: 0.625rem;
}

.single_attorney_wrap .att-title {
  font-size: clamp(1.125rem, calc(1.125rem + (22 - 18) * (100vw - 375px) / (1440 - 375)), 1.375rem);
  font-weight: normal;
}

.single_attorney_wrap strong {
  color: var(--secondary-color);
}

.single_attorney_wrap .att_tel_holder {
  margin-bottom: 1.25rem;
}

.single_attorney_wrap .att_tel_holder a {
  font-size: 22px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  text-decoration: none;
  color: var(--primary-color);
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.single_attorney_wrap .att_tel_holder a.att_tel:before {
  content: url("../img/att_phone.svg");
}

.single_attorney_wrap .att_tel_holder a.att_linkedin:before {
  content: url("../img/att_linkedin.svg");
}

.single_attorney_wrap .attorney_featured_video {
  text-align: center;
  background: var(--secondary-color);
  border-radius: 20px;
  overflow: hidden;
  margin-top: clamp(1.75rem, calc(1.75rem + (35 - 28) * (100vw - 375px) / (1440 - 375)), 2.1875rem);
  margin-bottom: clamp(1.75rem, calc(1.75rem + (35 - 28) * (100vw - 375px) / (1440 - 375)), 2.1875rem);
}

.single_attorney_wrap .attorney_featured_video p {
  margin: 0;
}

.single_attorney_wrap .attorney_featured_video h3 {
  margin-top: 1.25rem;
  color: #fff;
}

.single_attorney_wrap .att-pic-col > div:first-child {
  padding: 30px;
  background: #F4F4F2;
  border-radius: 28px;
}

.single_attorney_wrap .att-pic-col > div:first-child > img {
  border-radius: 20px;
  border: 2px solid var(--secondary-color);
  margin-bottom: clamp(1.5625rem, calc(1.5625rem + (30 - 25) * (100vw - 375px) / (1440 - 375)), 1.875rem);
}

.single_attorney_wrap .att-pic-col > div:first-child h3 {
  font-size: clamp(1.5625rem, calc(1.5625rem + (30 - 25) * (100vw - 375px) / (1440 - 375)), 1.875rem);
}

.single_attorney_wrap .att-pic-col > div:first-child h3 ~ h3 {
  margin-top: clamp(1.5625rem, calc(1.5625rem + (30 - 25) * (100vw - 375px) / (1440 - 375)), 1.875rem);
}

.single_attorney_wrap .att-pic-col > div:first-child ul {
  list-style-type: square;
}

.single_attorney_wrap .att-pic-col > div:first-child ul li::marker {
  color: var(--secondary-color);
}

.single_attorney_wrap .att-pic-col .attorney_social {
  margin-top: clamp(1.5625rem, calc(1.5625rem + (40 - 25) * (100vw - 375px) / (1440 - 375)), 2.5rem);
  margin-bottom: clamp(1.5625rem, calc(1.5625rem + (40 - 25) * (100vw - 375px) / (1440 - 375)), 2.5rem);
}

.single_attorney_wrap .att-pic-col .attorney_social a {
  display: inline-block;
}

.single_attorney_wrap .att-pic-col .attorney_social a img {
  max-width: 44px;
}

.single_attorney_wrap .att-pic-col .attorney_social a + a {
  margin-left: clamp(0.3125rem, calc(0.3125rem + (12 - 5) * (100vw - 375px) / (1440 - 375)), 0.75rem);
}

.staff_wrap {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(74.85%, rgba(235, 235, 235, 0.22)), color-stop(110.4%, #A92217));
  background: linear-gradient(180deg, rgba(235, 235, 235, 0.22) 74.85%, #A92217 110.4%);
  padding-bottom: 6rem;
}

.staff_wrap .staff_box {
  display: block;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
}

.staff_wrap .staff_box:hover .content_holder {
  background: var(--primary-color);
}

.staff_wrap .staff_box .content_holder {
  background: var(--secondary-color);
  padding: 18px 28px;
  text-align: center;
}

.staff_wrap .staff_box .content_holder .h3 {
  color: #fff;
  color: #fff;
  font-size: clamp(1.25rem, calc(1.25rem + (26 - 20) * (100vw - 375px) / (1440 - 375)), 1.625rem);
  font-weight: 600;
  margin-bottom: 10px;
}

.staff_wrap .staff_box .content_holder .h5 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: normal;
}

.has_form_holder .subtitle {
  display: none;
}

@media (min-width: 992px) {
  .has_form_holder .container > .row > div:first-child {
    max-width: 60% !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 60% !important;
            flex: 0 0 60% !important;
  }
  .has_form_holder .container > .row > div:last-child {
    max-width: 40% !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 40% !important;
            flex: 0 0 40% !important;
  }
}

.has_form_holder .container > .row > div:first-child {
  text-align: left;
}

.has_form_holder .container > .row > div:first-child .cta_copy_wrap .subcopy {
  max-width: 600px;
  margin-bottom: 2.1875rem;
}

@media (max-width: 1199px) {
  .has_form_holder .container > .row > div:first-child .cta_copy_wrap .hero_buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.has_form_holder .container > .row > div:first-child .btn_free_eval {
  margin-left: 0;
}

.has_form_holder .tel_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.25rem;
  gap: clamp(1.25rem, calc(1.25rem + (70 - 20) * (100vw - 375px) / (1440 - 375)), 4.375rem);
}

@media (max-width: 991px) {
  .has_form_holder .tel_social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 2rem;
  }
}

.has_form_holder .tel_social h4 {
  font-size: clamp(1rem, calc(1rem + (22.898 - 16) * (100vw - 375px) / (1440 - 375)), 1.43112rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: 3px;
  margin-bottom: 0.625rem;
}

.has_form_holder .tel_social .tel a {
  font-size: clamp(1rem, calc(1rem + (22.898 - 16) * (100vw - 375px) / (1440 - 375)), 1.43112rem);
  letter-spacing: 3px;
}

.has_form_holder .tel_social .tel h4 {
  margin-right: 0.5rem;
}

.has_form_holder .tel_social .social_media_list {
  padding: 0;
}

.has_form_holder .tel_social a {
  font-size: 1.03481rem;
  color: var(--primary-color);
}

.has_form_holder .tel_social path {
  fill: var(--primary-color);
}

@media (min-width: 992px) {
  .megamenu > .sub-menu {
    width: 430px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .megamenu > .sub-menu > li {
    width: 50%;
    padding: 0.3rem 0;
  }
  .megamenu > .sub-menu .sub-menu li:hover {
    background-color: var(--secondary-color) !important;
  }
}

.nav_holder .main_navigation > div .sub-menu {
  padding: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.nav_holder .main_navigation > div .sub-menu li {
  padding: 10px !important;
  background: var(--primary-color);
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.nav_holder .main_navigation > div .sub-menu li a {
  color: #fff;
  border-bottom: 0 !important;
  display: block;
}

.nav_holder .main_navigation > div .sub-menu li:hover {
  background: var(--secondary-color);
}

.nav_holder .main_navigation > div .sub-menu li .sub-menu li {
  background-color: #013566;
}

.nav_holder .main_navigation > div .sub-menu li .sub-menu li a {
  color: var(--primary-color);
}

#desktop_header .sub-menu > li:has(.sub-menu) > a::after {
  content: ' »';
}

.form_style_2 {
  color: #fff;
}

@media (max-width: 991px) {
  .form_style_2 .cta_copy_wrap {
    padding-top: 0;
    padding-bottom: 0.625rem;
  }
}

.form_style_2 .cta_hero_form_wrap {
  padding: 0;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (max-width: 991px) {
  .form_style_2 .cta_hero_form_wrap {
    margin-top: 0 !important;
  }
}

.form_style_2 .cta_hero_form_wrap input, .form_style_2 .cta_hero_form_wrap textarea {
  font-size: 0.93037rem;
  padding: 12px !important;
  -webkit-box-shadow: 0px 0px 14.849px 6.364px rgba(0, 0, 0, 0.2) !important;
          box-shadow: 0px 0px 14.849px 6.364px rgba(0, 0, 0, 0.2) !important;
  border: 1px solid #DDDDDD !important;
  text-align: left;
  border-radius: 8px !important;
}

.form_style_2 .cta_hero_form_wrap input::-webkit-input-placeholder, .form_style_2 .cta_hero_form_wrap textarea::-webkit-input-placeholder {
  color: var(--primary-color);
}

.form_style_2 .cta_hero_form_wrap input:-ms-input-placeholder, .form_style_2 .cta_hero_form_wrap textarea:-ms-input-placeholder {
  color: var(--primary-color);
}

.form_style_2 .cta_hero_form_wrap input::-ms-input-placeholder, .form_style_2 .cta_hero_form_wrap textarea::-ms-input-placeholder {
  color: var(--primary-color);
}

.form_style_2 .cta_hero_form_wrap input::placeholder, .form_style_2 .cta_hero_form_wrap textarea::placeholder {
  color: var(--primary-color);
}

.form_style_2 .cta_hero_form_wrap textarea {
  resize: none;
  height: 125px !important;
}

.form_style_2 .cta_hero_form_wrap .ginput_container_consent {
  text-align: center;
}

.form_style_2 .cta_hero_form_wrap .ginput_container_consent input {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.form_style_2 .cta_hero_form_wrap .ginput_container_consent label {
  text-align: center;
  line-height: 1.4;
  font-weight: normal;
  font-size: 0.8125rem;
}

.form_style_2 .cta_hero_form_wrap .gform-footer {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  -ms-grid-column-align: center;
      justify-self: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.form_style_2 > h2 {
  color: #fff;
}

.form_style_2 form {
  color: #fff;
}

.form_style_2 form #field_1_4, .form_style_2 form #field_1_3 {
  grid-column: span 6;
}

.form_style_2 form .ginput_container input:not([type="checkbox"]), .form_style_2 form .ginput_container textarea {
  background: var(--White, #FFF);
  height: 45px;
  border-radius: 8px;
  padding: 6px 16px;
}

.form_style_2 form .ginput_container textarea {
  height: 130px;
  resize: none;
}

.location_module_wrap {
  padding: 2rem 0;
}

.location_module_wrap .col {
  height: inherit;
  padding: 0 0.75rem;
  padding-bottom: 1.5rem;
  width: calc(100% / 4);
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

@media (max-width: 1199px) {
  .location_module_wrap .col {
    width: calc(100% / 3);
  }
}

@media (max-width: 991px) {
  .location_module_wrap .col {
    width: calc(100% / 2);
  }
}

@media (max-width: 767px) {
  .location_module_wrap .col {
    width: 100%;
  }
}

.location_module_wrap .col .location_box {
  background-color: #F4F4F2;
  border-radius: 25px;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 100%;
  padding: 1.25rem 0.75rem;
}

.location_module_wrap .col .location_box .btn {
  font-weight: normal;
  font-size: 1rem;
  padding: 0.625rem 1.25rem;
}

.location_module_wrap .col .location_box h3 {
  margin: 0;
  margin-bottom: 10px;
}

.location_module_wrap .col .location_box p {
  font-size: 16px;
  font-weight: normal;
}

.location_module_wrap .col .location_box .button_wrap {
  padding: 0;
}

@media (max-width: 767px) {
  .gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: 2% !important;
  }
}

.default-content:has(.call_steven) {
  padding-bottom: 0;
}

.results_page {
  padding-top: 0;
}

@media (min-width: 992px) {
  body .lang.menu-item a {
    background: #1C3356;
    padding: 8px 20px;
    border-radius: 10px;
  }
  body .lang.menu-item > a::after {
    content: url("../img/arrow_lang.svg");
    margin-left: 4px;
    top: -1px;
    position: relative;
  }
  body .lang.menu-item .sub-menu {
    border: 0 !important;
  }
  body .lang.menu-item .sub-menu li {
    padding: 0 !important;
    background: transparent !important;
  }
  body .lang.menu-item .sub-menu li:hover {
    background: transparent !important;
  }
  body .lang.menu-item .sub-menu li a {
    color: #fff;
    border-bottom: 0 !important;
    display: block;
    max-width: 78px;
    text-align: center;
    font-size: 18px;
  }
}

#contact-overlay {
  background: #001d3dc7;
  inset: 0;
  position: fixed;
  display: none;
  z-index: 99;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

#contact-overlay .contact-form-wrap img {
  padding: 0 0 1.5rem 0;
  height: auto;
}

@media (max-width: 767px) {
  #contact-overlay .form_style_2 .row.justify-content-center {
    padding: 0 20px;
  }
}

#contact-overlay .overlay_text {
  background-color: #013566;
  border-radius: 20px 20px 0px 0px;
  text-align: center;
  border-bottom: 4px solid var(--secondary-color);
  padding: 1.25rem;
}

#contact-overlay .overlay_text .avail {
  font-style: italic;
  font-weight: 600;
  font-size: 0.7935rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}

#contact-overlay .overlay_text .avail p {
  margin: 0;
  color: #fff;
}

#contact-overlay .overlay_text .tel_h {
  font-size: clamp(1.5rem, calc(1.5rem + (44.471 - 24) * (100vw - 375px) / (1440 - 375)), 2.77944rem);
  letter-spacing: 4px;
  line-height: 1;
  font-weight: 700;
}

#contact-overlay .overlay_text .tel_h a {
  color: #fff;
  text-decoration: none;
}

.forminator-label {
  font-size: clamp(1.125rem, calc(1.125rem + (20 - 18) * (100vw - 375px) / (1440 - 375)), 1.25rem) !important;
  color: var(--primary-color);
}

.main_navigation .menu-primary-menu-container .menu > li:not(.lang):hover {
  background-color: var(--secondary-color);
}

.main_navigation .menu-primary-menu-container .menu > li:not(.lang):hover a {
  color: #fff;
}

.main_navigation .menu-primary-menu-container .menu > li:not(.lang) .sub-menu {
  left: 0;
}
/*# sourceMappingURL=custom.css.map */