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: "Montserrat", sans-serif;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Poppins", serif;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.04em;
  margin-bottom: 0;
}
h1 u, h2 u, h3 u, h4 u, h5 u, h6 u,
.h1 u, .h2 u, .h3 u, .h4 u, .h5 u, .h6 u {
  text-decoration: none;
  position: relative;
  display: inline-block;
}
h1 u::after, h2 u::after, h3 u::after, h4 u::after, h5 u::after, h6 u::after,
.h1 u::after, .h2 u::after, .h3 u::after, .h4 u::after, .h5 u::after, .h6 u::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20%;
  width: 100%;
  height: 32%;
  background-color: #31ADDF;
  z-index: -1;
}

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

.container-fluid {
  padding: 0 15px;
  max-width: 1371px !important;
}
.container-fluid .row {
  margin: 0;
}

.btn {
  background: #31ADDF;
  color: #fff;
  border-radius: 10px;
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  font-family: "Montserrat", sans-serif;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #31ADDF;
}
.btn::after {
  content: "";
  height: 18px;
  width: auto;
  background-color: white;
  mask: url("/wp-content/uploads/2024/05/arrow-right-btn.webp") center no-repeat;
  -webkit-mask: url("/wp-content/uploads/2024/05/arrow-right-btn.webp") center no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  margin-left: 10px;
  width: 20px;
  transition: 0.3s ease all;
}
.btn.btn_alt {
  border: 2px solid #283A48;
  background: #283A48;
}
.btn:hover {
  background: transparent;
  color: #283A48;
  border-color: #283A48;
}
.btn:hover::after {
  background-color: #283A48;
}

.dark .btn.btn_alt {
  background: #fff;
  border-color: #fff;
  color: #283A48;
}
.dark .btn.btn_alt::after {
  background-color: #283A48;
}
.dark .btn.btn_alt:hover {
  background: transparent;
}
.dark .btn:hover {
  border: 2px solid #fff;
  color: #fff;
}
.dark .btn:hover::after {
  background-color: #fff;
}

.dbl_btns {
  display: flex;
  flex-direction: column;
  width: fit-content;
  gap: 10px;
}

.content-area {
  padding-top: 0;
}

#desktop_header .header_phone .dbl_btns {
  flex-direction: row;
  margin-left: auto;
}
#desktop_header .site_branding {
  padding: 20px 0;
}
#desktop_header .nav_holder {
  padding: 0 15px;
  background-color: #283A48;
}
#desktop_header .nav_holder nav {
  max-width: 1089px;
  line-height: 20.6px;
  padding: 8px 0px;
}
#desktop_header .nav_holder nav a {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
}

#mobile_buttons_wrap .mobile_site_branding {
  background-color: #fff;
}
#mobile_buttons_wrap .mobile_site_branding img {
  padding-left: 15px;
}
#mobile_buttons_wrap .mobile_message {
  background-color: #31ADDF;
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 700;
}
#mobile_buttons_wrap .mobile_message a {
  color: white;
}
#mobile_buttons_wrap .mobile_phone {
  background-color: #283A48;
}
#mobile_buttons_wrap .mobile_phone a {
  color: #fff;
}
#mobile_buttons_wrap .mobile_navigation {
  font-weight: 600;
}

.cta_hero {
  background-position: center right -100px;
  color: #283A48;
  text-align: center;
}
.cta_hero .hero_overlay {
  background: linear-gradient(97deg, #FFF 8.43%, rgba(41, 59, 73, 0.12) 104.36%);
}
.cta_hero .row {
  position: relative;
  z-index: 1;
}
.cta_hero .content-col {
  margin-left: auto;
  margin-right: auto;
}
.cta_hero .cta_copy_wrap .heroh1 {
  font-size: 71px;
}
@media (max-width: 767px) {
  .cta_hero .cta_copy_wrap .heroh1 {
    font-size: 8.5vw;
  }
}
.cta_hero .cta_copy_wrap .heroh1.size82 {
  font-size: 82px;
}
@media (max-width: 767px) {
  .cta_hero .cta_copy_wrap .heroh1.size82 {
    font-size: 12vw;
  }
}
.cta_hero .cta_copy_wrap .subtitle {
  font-size: 20px;
}
.cta_hero .cta_copy_wrap .subcopy {
  margin-top: 1.2rem;
  max-width: 600px;
}
.cta_hero .cta_copy_wrap .subcopy:not(:has(.dbl_btns)) a {
  width: fit-content;
}
.cta_hero .cta_copy_wrap .subcopy .subtitle {
  margin-bottom: 1.2rem;
}
.cta_hero .cta_copy_wrap a:first-of-type {
  margin-top: 1.2rem;
}
.cta_hero .cta_copy_wrap .dbl_btns {
  margin: 0 auto;
}
.cta_hero .contact-left-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cta_hero .contact-left-col {
    margin-top: 1.2rem;
    justify-content: start;
  }
}
.cta_hero .contact-left-col .btn {
  padding: 1rem;
  box-shadow: 0px 3.809px 10.474px 0px rgba(0, 0, 0, 0.43);
}
.cta_hero .content-col:has(.subcopy) {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}
.cta_hero .content-col:has(.subcopy) .dbl_btns {
  margin-left: 0;
}
.cta_hero.alternative_hero .hero_overlay {
  background: linear-gradient(97deg, #FFF 8.43%, rgba(41, 59, 73, 0.12) 104.36%);
}

.rowtwo {
  position: relative;
  /* Widget Like Toggle button */
}
.rowtwo .toggle-btn-container {
  background-color: #fff;
  width: 238px;
  border-radius: 11.84px;
  display: flex;
  flex-direction: column;
  z-index: 10;
}
.rowtwo .toggle-btn-container .buttons-container {
  flex-direction: column;
  padding: 7px 16.58px;
  gap: 6px;
}
.rowtwo .toggle-btn-container .toggle-header {
  background-color: #283A48;
  padding: 7px 16px;
}
.rowtwo .toggle-btn-container .toggle-header h4, .rowtwo .toggle-btn-container .toggle-header .h4 {
  font-size: 8px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}
.rowtwo .widget-toggle-button {
  /* Initial styles for the toggle button */
  margin-bottom: -17px;
  display: flex;
  flex-direction: column;
  align-items: end;
  position: absolute;
  bottom: 0;
  right: 0px;
  gap: 5.92px;
  cursor: pointer;
  /* Hidden state */
  /* Visible state */
}
.rowtwo .widget-toggle-button[data-state=closed] .buttons-container,
.rowtwo .widget-toggle-button[data-state=closed] .circle-image-container {
  display: none;
}
.rowtwo .widget-toggle-button[data-state=closed] .toggle-header {
  border-radius: 11.84px;
  text-align: center;
}
.rowtwo .widget-toggle-button[data-state=closed] .toggle-header h4 {
  font-size: 14px;
}
.rowtwo .widget-toggle-button[data-state=open] .buttons-container {
  display: flex;
}
.rowtwo .widget-toggle-button[data-state=open] .toggle-header {
  border-radius: 12px 12px 0 0;
}
.rowtwo .widget-toggle-button .circle-image-container {
  border-radius: 50%; /* This makes the div circular */
  overflow: hidden; /* Ensures the image fits within the circle */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1fbbef;
  box-shadow: 0 0 10px rgba(85, 130, 173, 0.1);
  padding: 7.1px;
  z-index: 10;
}
.rowtwo .widget-toggle-button .circle-image-container img {
  object-fit: contain; /* Ensures the image covers the div without distortion */
}
@media (max-width: 800px) {
  .rowtwo .widget-toggle-button {
    margin-top: 17px;
    align-items: start;
    position: relative;
  }
}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 13px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
.floating {
  animation-name: floating;
  animation-duration: 3.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.floating:nth-of-type(even) {
  animation-delay: 0.4s;
}

.two_blocks_wrap {
  padding: 2rem 0;
}
.two_blocks_wrap .icon-rows {
  margin: 0 auto;
  padding: 0 1rem 1.5rem;
}
.two_blocks_wrap .icon-row {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  margin-top: 1rem;
}
.two_blocks_wrap .icon-row .icon {
  width: 40px;
  height: 40px;
  flex-grow: 0;
  transition: 0.3s ease all;
}
.two_blocks_wrap .icon-row .icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.two_blocks_wrap .icon-row:hover .icon {
  scale: 1.1;
}
@media (max-width: 400px) {
  .two_blocks_wrap .icon-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 3px;
  }
}
.two_blocks_wrap.style_1_wrap .container-fluid {
  max-width: 1000px;
  padding: 0 2rem;
}
.two_blocks_wrap.style_1_wrap .style_1_list {
  position: relative;
  z-index: 1;
}
.two_blocks_wrap.style_1_wrap .style_1_list .h4 {
  text-align: center;
}
.two_blocks_wrap.style_1_wrap .style_1_list .icon-rows {
  border-radius: 10px;
  padding: 0.5rem 1.5rem 1.5rem;
  position: relative;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
}
.two_blocks_wrap.style_1_wrap .style_1_list .icon-rows::before {
  content: "";
  inset: 0;
  position: absolute;
  border-radius: inherit;
  background: linear-gradient(0deg, rgba(40, 58, 72, 0.7) 0%, rgba(40, 58, 72, 0.7) 100%), linear-gradient(113deg, rgba(0, 0, 0, 0) 7.23%, #283A48 148.79%);
}
.two_blocks_wrap.style_1_wrap .style_1_list .icon-row {
  position: relative;
}
@media (max-width: 767px) {
  .two_blocks_wrap.style_1_wrap .content-col {
    display: none;
  }
}
.two_blocks_wrap.style_1_wrap .style_1_content {
  margin-top: 5rem;
}
.two_blocks_wrap.style_1_wrap .style_1_content .h4 {
  text-align: center;
}
.two_blocks_wrap.style_1_wrap .style_1_content .content-box {
  border-radius: 10px;
  padding: 4rem 2rem 4rem 8rem;
  margin: 8px auto auto -6rem;
  position: relative;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
}
.two_blocks_wrap.style_2_wrap .container-fluid {
  max-width: 1100px;
  padding: 1rem;
}
.two_blocks_wrap.style_2_wrap .container-fluid .row {
  align-items: center;
}
.two_blocks_wrap.style_2_wrap .style_2_list {
  padding: 2rem;
  max-width: 506px;
  margin: 0 auto;
}
.two_blocks_wrap.style_2_wrap .style_2_list h2 {
  font-size: 35px;
}
.two_blocks_wrap.style_2_wrap .style_2_content i {
  font-style: normal;
  color: #31ADDF;
  font-weight: bold;
}
.two_blocks_wrap.style_2_wrap .style_2_content h2 {
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .two_blocks_wrap.style_2_wrap .style_2_content {
    width: 500px;
    margin: 0 auto;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .two_blocks_wrap.style_2_wrap {
    background: #f2f3f4;
  }
}
.two_blocks_wrap.style_3_wrap .container-fluid {
  padding: 1rem;
  max-width: 1250px;
}
.two_blocks_wrap.style_3_wrap .container-fluid .row {
  align-items: center;
}
.two_blocks_wrap.style_3_wrap .style_3_list {
  align-items: center;
  padding: 2rem 1rem;
}
.two_blocks_wrap.style_3_wrap .style_3_list .col-inner {
  height: 360px;
  position: relative;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  color: white;
  transition: 0.4s ease all;
}
.two_blocks_wrap.style_3_wrap .style_3_list .col-inner::before {
  content: "";
  inset: 0;
  background: linear-gradient(180deg, rgba(40, 58, 72, 0) 0%, #283A48 100%);
  position: absolute;
  border-radius: inherit;
}
.two_blocks_wrap.style_3_wrap .style_3_list .col-inner:hover .icon {
  background: var(--primary-color);
}
.two_blocks_wrap.style_3_wrap .style_3_list .col-inner .icon {
  width: 75px;
  height: 75px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  border-radius: 8px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(10px, -10px);
  transition: 0.4s ease all;
}
.two_blocks_wrap.style_3_wrap .style_3_list .col-inner .icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.two_blocks_wrap.style_3_wrap .style_3_list .col-inner .h6 {
  padding: 0.5rem;
  text-align: center;
  position: absolute;
  text-transform: uppercase;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 530px) {
  .two_blocks_wrap.style_3_wrap .style_3_list .col-inner {
    height: 280px;
  }
  .two_blocks_wrap.style_3_wrap .style_3_list .col-inner .h6 {
    writing-mode: vertical-lr;
    transform: unset;
    left: 0;
  }
  .two_blocks_wrap.style_3_wrap .style_3_list .col-inner .icon {
    width: 50px;
    height: 50px;
    padding: 0.5rem;
    left: 50%;
    left: unset;
    transform: translate(-50%, -10px);
  }
}
.two_blocks_wrap.style_4_wrap .container-fluid {
  max-width: 1400px;
}
@media (max-width: 991px) {
  .two_blocks_wrap.style_4_wrap .list-col {
    padding: 2rem 0;
    margin: 0 -5px;
  }
}
.two_blocks_wrap.style_4_wrap .style_4_list {
  height: 100%;
}
.two_blocks_wrap.style_4_wrap .style_4_list .col-4 {
  padding: 0 5px;
}
.two_blocks_wrap.style_4_wrap .style_4_list .col-inner {
  background-image: url("/wp-content/uploads/2024/05/legal_focus_group_trees.webp");
  height: 100%;
  position: relative;
}
.two_blocks_wrap.style_4_wrap .style_4_list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}
.two_blocks_wrap.style_4_wrap .style_4_content {
  padding: 2.5rem;
}
@media (max-width: 575px) {
  .two_blocks_wrap.style_4_wrap .style_4_content {
    padding: 2.5rem 0;
  }
}

@media (min-width: 768px) {
  .home .style_3_content h2 {
    white-space: nowrap;
  }
}

.review_wrap {
  background-color: #f2f3f4;
  color: #283a48;
  overflow: clip;
  padding: 2.75rem 0;
}
.review_wrap h2 {
  font-size: 19px;
  margin-bottom: 0;
  font-weight: 500;
}
.review_wrap .intro-copy {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 26px;
  text-transform: uppercase;
}
.review_wrap #snippet-box {
  margin: 0.5rem auto 0;
  max-width: 1140px;
}
.review_wrap .flickity-slider {
  margin-top: 2rem;
}
.review_wrap .review-cell {
  padding: 0 7px 2rem;
  margin-bottom: 1rem;
}
.review_wrap .review-cell.is-selected .review_box .quote {
  background: #31ADDF;
}
.review_wrap .review-cell.is-selected .review_box:hover .quote {
  background: #283A48;
}
.review_wrap .review-cell.is-selected .review_box:hover .quote::before {
  background-color: #fff;
}
.review_wrap .review-slider:not(.flickity-enabled) {
  display: flex;
}
.review_wrap .review_box {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  color: #283a48;
  padding: 46px 24px 20px 24px;
  margin-top: 1rem;
  position: relative;
  border-radius: 11px;
  line-height: 1;
  transition: 0.3s ease all;
}
.review_wrap .review_box * {
  scrollbar-width: thin;
  scrollbar-color: #f2f3f4 transparent;
}
.review_wrap .review_box .row {
  justify-content: space-between;
  align-items: center;
  margin: 0;
  margin-top: 1rem;
}
.review_wrap .review_box .row .review-name {
  font-size: 14px;
}
.review_wrap .review_box .row .stars {
  color: #31ADDF;
  font-size: 22px;
}
.review_wrap .review_box .quote {
  position: absolute;
  background: #283A48;
  color: #fff;
  padding: 1.1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  transform: translateY(-50%);
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.5);
  transition: 0.3s ease all;
}
.review_wrap .review_box .quote::before {
  content: "";
  height: 25px;
  width: 21px;
  background-color: currentColor;
  mask: url("/wp-content/uploads/2024/05/quotes.svg") center no-repeat;
  -webkit-mask: url("/wp-content/uploads/2024/05/quotes.svg") center no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  display: block;
  transition: 0.3s ease all;
}
.review_wrap .review_box .review-copy {
  font-size: 14px;
  text-align: left;
  padding-right: 4px;
  line-height: 1.2;
  overflow-y: auto;
  height: 86px;
}
.review_wrap .review_box:hover {
  background: #31ADDF;
  color: #fff;
}
.review_wrap .review_box:hover * {
  scrollbar-width: thin;
  scrollbar-color: #283A48 transparent;
}
.review_wrap .review_box:hover .quote {
  background: #fff;
}
.review_wrap .review_box:hover .quote::before {
  background-color: #31ADDF;
}
.review_wrap .review_box:hover .stars {
  color: #fff;
  letter-spacing: -0.03em;
}

.cta_bar_wrap_new {
  padding: 0rem 1rem;
  margin: 2rem 0;
}
.cta_bar_wrap_new .container-fluid {
  max-width: 1400px;
  margin: 0 auto;
}
.cta_bar_wrap_new .cta_bar_image {
  max-width: 100%;
  position: relative;
}
.cta_bar_wrap_new .cta_bar_image img {
  width: 100%;
  height: auto;
  max-width: 460px;
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
}
.cta_bar_wrap_new .cta_bar_copy {
  padding: 2rem;
}
.cta_bar_wrap_new .cta_bar_copy h2 {
  line-height: 1;
}
.cta_bar_wrap_new .cta_bar_copy .cta_copy {
  width: 600px;
  max-width: 100%;
}
.cta_bar_wrap_new .cta_bar_copy .dbl_btns {
  margin-top: 1rem;
}
@media (max-width: 991px) {
  .cta_bar_wrap_new .cta_copy {
    width: 500px;
  }
  .cta_bar_wrap_new .cta_bar_image img {
    right: -2rem;
    width: 128%;
  }
}
@media (max-width: 910px) {
  .cta_bar_wrap_new {
    margin-top: 4rem;
  }
  .cta_bar_wrap_new .container-fluid > .row {
    flex-wrap: wrap;
    text-align: center !important;
  }
  .cta_bar_wrap_new .container-fluid > .row .dbl_btns {
    margin: 1rem auto;
  }
  .cta_bar_wrap_new .container-fluid > .row .cta_bar_image {
    max-width: 100%;
    width: 100%;
    height: 3rem;
    flex-basis: auto;
  }
  .cta_bar_wrap_new .container-fluid > .row .cta_bar_image img {
    bottom: -15px;
    left: 50%;
    right: unset;
    max-width: 100%;
    width: 320px;
    border-radius: 20px;
    transform: translateX(-50%);
  }
  .cta_bar_wrap_new .container-fluid > .row .cta_bar_copy {
    order: 13;
    max-width: 100%;
    width: 100%;
    flex-basis: auto;
  }
  .cta_bar_wrap_new .container-fluid > .row .cta_bar_copy .cta_copy {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .cta_bar_wrap_new .cta_bar_image {
    background: #283A48;
    padding: 1rem 1rem 0;
    height: auto !important;
  }
  .cta_bar_wrap_new .cta_bar_image img {
    position: relative;
    width: 250px;
  }
}
@media (min-width: 911px) and (max-width: 1199px) {
  .cta_bar_wrap_new.participate-cta .cta_bar_image {
    max-width: 100%;
    width: 100%;
    height: 3rem;
    flex-basis: auto;
  }
  .cta_bar_wrap_new.participate-cta .cta_bar_image img {
    bottom: -15px;
    left: 50%;
    right: unset;
    max-width: 100%;
    width: 320px;
    border-radius: 20px;
    transform: translateX(-50%);
  }
  .cta_bar_wrap_new.participate-cta .cta_bar_copy {
    margin: 0 auto;
    text-align: center;
    order: 13;
  }
  .cta_bar_wrap_new.participate-cta .cta_bar_copy .btn {
    background: #31ADDF;
    color: #fff;
    border-color: #31ADDF;
  }
  .cta_bar_wrap_new.participate-cta .cta_bar_copy .btn::after {
    background-color: #fff;
  }
  .cta_bar_wrap_new.participate-cta .cta_bar_copy .btn:hover {
    color: #283A48;
  }
  .cta_bar_wrap_new.participate-cta .cta_bar_copy .btn:hover::after {
    background-color: #283A48;
  }
  .cta_bar_wrap_new.participate-cta .cta_bar_copy .cta_copy {
    margin: 0 auto;
  }
}

.site-footer {
  background: #f2f3f4;
  color: #283a48;
  padding: 2rem 0 1rem;
}
.site-footer .site_info {
  background: none;
  border-top: 2px solid #D9D9D9;
}
@media (min-width: 576px) {
  .site-footer .site_info {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }
  .site-footer .site_info p a {
    display: inline-block;
  }
  .site-footer .site_info .social_media_list {
    padding: 0;
    white-space: nowrap;
  }
  .site-footer .site_info .social_media_list svg {
    fill: #283a48;
  }
}
.site-footer .footer-top-row {
  justify-content: flex-end;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.site-footer .footer-top-row > .col {
  width: fit-content;
  flex-grow: 0;
  flex-basis: auto;
}
@media (min-width: 675px) {
  .site-footer .footer-top-row {
    gap: 0.5rem;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
  }
  .site-footer .footer-top-row .logo-col {
    margin-right: auto;
    width: 100%;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .site-footer .footer-top-row .col:not(.logo-col) {
    text-align: left;
  }
  .site-footer .footer-top-row .h5 {
    white-space: nowrap;
  }
}
@media (min-width: 935px) {
  .site-footer .footer-top-row {
    justify-content: flex-end;
  }
  .site-footer .footer-top-row .logo-col {
    width: fit-content;
  }
}
.site-footer .footer-top-row .col img {
  max-width: 100%;
}
.site-footer .footer-top-row .col a, .site-footer .footer-top-row .col p {
  font-size: 0.90625rem;
  font-weight: 400;
}
.site-footer .footer-top-row .col p {
  margin-bottom: 6px;
  padding-bottom: 0;
}

.our-process {
  color: #283a48;
}
.our-process h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.our-process h2 img {
  flex-shrink: 1;
  flex-basis: 0;
  max-width: 100%;
}
@media (max-width: 575px) {
  .our-process h2 {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    margin-bottom: 0;
  }
}
.our-process .wow > img {
  box-shadow: -1rem -1rem 0 #283A48;
}
@media (max-width: 991px) {
  .our-process .wow > img {
    scale: 0.9;
  }
}

.toggle_wrap {
  color: #283a48;
  background: #f2f3f4;
}
.toggle_wrap .col-md-6 {
  float: left;
}
.toggle_wrap .intro {
  margin-bottom: 1rem;
}
.toggle_wrap .intro h2 {
  text-align: left;
  margin-bottom: 0;
}
.toggle_wrap .accordion {
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
  padding: 1rem;
  margin-bottom: 1rem;
}
.toggle_wrap .accordion .accordion_heading {
  background: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  border-bottom: 3px solid #31ADDF;
  padding: 5px 30px 1rem 0;
  line-height: 1;
  font-size: 18px;
}
.toggle_wrap .accordion .accordion_heading::after {
  top: calc(50% - 7px);
}
.toggle_wrap .accordion .accordion_copy {
  background: none;
  color: inherit;
}
.toggle_wrap .accordion .accordion_copy .accordion_copy__wrap {
  padding: 1rem 0 0;
}
.toggle_wrap .accordion .accordion_copy .accordion_copy__wrap p:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .staff_wrap .big_attorney .atty-picture {
    background-image: url("/wp-content/uploads/2024/05/legal_focus_group_trees.webp");
    padding: 2rem 2rem 0;
  }
  .staff_wrap .big_attorney .atty-picture img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    max-width: 100%;
  }
  .staff_wrap .big_attorney .atty-info {
    padding: 0 2.5rem;
    margin-bottom: 2rem;
  }
  .staff_wrap .big_attorney .atty-info h2 {
    font-size: 42px;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: normal;
  }
  .staff_wrap .big_attorney .atty-info .subtitle {
    text-align: center;
    font-size: 26px;
    letter-spacing: 0.08em;
    color: #31ADDF;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 992px) {
  .staff_wrap .big_attorney {
    margin-bottom: 3.5rem;
    position: relative;
  }
  .staff_wrap .big_attorney * {
    scrollbar-width: thin;
    scrollbar-color: #f2f3f4 transparent;
  }
  .staff_wrap .big_attorney .atty-row {
    align-items: stretch;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .staff_wrap .big_attorney .atty-picture {
    position: relative;
    padding: 0.5rem 0.5rem 0;
  }
  .staff_wrap .big_attorney .atty-picture img {
    max-width: 100%;
    height: auto;
    display: block;
    position: sticky;
    bottom: 0;
  }
  .staff_wrap .big_attorney .atty-info {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .staff_wrap .big_attorney .atty-info h2, .staff_wrap .big_attorney .atty-info h3 {
    flex-basis: auto;
    flex-grow: 0;
    text-align: left;
  }
  .staff_wrap .big_attorney .atty-info h2 {
    padding-top: 0.5rem;
  }
  .staff_wrap .big_attorney .atty-info h3 {
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 1rem;
  }
  .staff_wrap .big_attorney .atty-info .bio-holder {
    overflow-y: auto;
    margin-bottom: 1rem;
  }
  .staff_wrap .big_attorney:nth-of-type(even) .ba-bg {
    transform: scale(-1);
    right: 0;
  }
  .staff_wrap .big_attorney:nth-of-type(even) .atty-row {
    flex-direction: row-reverse;
  }
  .staff_wrap .big_attorney .ba-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, rgba(255, 255, 255, 0) 6.77%, #FFF 62.94%), linear-gradient(0deg, rgba(49, 173, 223, 0.5) 0%, rgba(49, 173, 223, 0.5) 58%), url("/wp-content/uploads/2024/05/legal_focus_group_trees.webp") lightgray 60%/cover no-repeat;
  }
}

.results_wrap {
  color: #283a48;
}
.results_wrap .container-fluid {
  padding: 0;
  margin: 0;
  max-width: 100%;
}
.results_wrap .container-fluid .result_row {
  margin: 0;
  padding: 1rem;
}
.results_wrap .container-fluid .result_row:nth-of-type(even) {
  background: #f2f3f4;
}
.results_wrap .container-fluid .result_row .result-container {
  max-width: 1300px;
}
.results_wrap .result-container {
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.results_wrap .result-container h3 {
  color: #31ADDF;
  text-align: center;
  margin-bottom: 1.3rem;
}
.results_wrap .result-container h4 {
  font-size: 22px;
  letter-spacing: normal;
}
.results_wrap .result-container .case-col {
  margin-bottom: 1.3rem;
}
.results_wrap .result-container .case-col:last-of-type .result_box {
  color: #fff;
  background: #31ADDF;
}
.results_wrap .result-container .result_box {
  background: #fff;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  border-radius: 7px;
  padding: 1rem;
}
.results_wrap .result-container .result_box p:last-of-type {
  margin-bottom: 0;
}

#contact-overlay,
#contact-overlay2 {
  padding: 2rem 0;
  background: rgba(26, 70, 91, 0.5215686275);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}
#contact-overlay .close,
#contact-overlay2 .close {
  scale: 1.56;
}
#contact-overlay .contact-form-wrap,
#contact-overlay2 .contact-form-wrap {
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  text-align: center;
}
#contact-overlay .contact-form-wrap .form_wrap,
#contact-overlay2 .contact-form-wrap .form_wrap {
  margin: 0 auto;
  background: #f2f3f4;
  border-radius: 10px;
  color: #283A48;
  width: 534px;
  max-width: 100%;
  padding: 1.5rem;
}
#contact-overlay .contact-form-wrap img,
#contact-overlay2 .contact-form-wrap img {
  max-width: 100%;
  padding-bottom: 1rem;
}
#contact-overlay h2,
#contact-overlay2 h2 {
  line-height: 1.1;
  letter-spacing: normal;
  font-size: 30px;
}
#contact-overlay h2 u,
#contact-overlay2 h2 u {
  z-index: 2;
  font-size: 44px;
  display: block;
}
#contact-overlay .btn:hover,
#contact-overlay2 .btn:hover {
  background: #31ADDF;
  color: #fff;
  border-color: #31ADDF;
}
#contact-overlay .btn:hover::after,
#contact-overlay2 .btn:hover::after {
  background-color: #31ADDF;
}

@media (max-width: 575px) {
  #contact-overlay h2 u {
    font-size: 10vw;
  }
}