/*
 * Custom Styles
 *
 */
/* START - CSS Vars */
:root {
    --primary-color: #3deba3;
    --secondary-color: #303a57;
    --secondary-color-hover: #35436d;
    --link-color: #3deba3;
    --link-hover-color: #32bb82;
  
    --background-white: #fff;
    --background-light-grey: #f6f6f6;
    --background-primary: #3deba3;
    --background-secondary: #303a57;
  }
  /* END - CSS Vars */
  .text-blue {
    color: var(--secondary-color);
  }
  
  .text-green {
    color: var(--primary-color);
  }
  
  .color-white {
    color: #fff!important;
  }
  .subtitle {
    font-size: 1.3rem;
  }
  /* START - Custom Fonts */
  /* PT Sans Regular */
  @font-face {
    font-family: "PT Sans";
    src: url("../fonts/pt-sans/PTSans-Regular.woff2") format("woff2"),
      url("../fonts/pt-sans/PTSans-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
  }
  @font-face {
    font-family: "PT Sans";
    src: url("../fonts/pt-sans/PTSans-Bold.woff2") format("woff2"),
      url("../fonts/pt-sans/PTSans-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
  }
  @font-face {
    font-family: "PT Sans";
    src: url("../fonts/pt-sans/PTSans-Italic.woff2") format("woff2"),
      url("../fonts/pt-sans/PTSans-Italic.woff") format("woff");
    font-weight: 400;
    font-style: italic;
  }
  @font-face {
    font-family: "PT Sans";
    src: url("../fonts/pt-sans/PTSans-BoldItalic.woff2") format("woff2"),
      url("../fonts/pt-sans/PTSans-BoldItalic.woff") format("woff");
    font-weight: 700;
    font-style: italic;
  }
  /* END - Custom Fonts */
  
  /* START - Imports and HTML overrides */
  html {
    width: 100%;
    overflow-x: hidden !important;
  }
  
  /* START All BUttons */
  .btn-check:focus+.btn-primary,
  .btn-primary:focus {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
      box-shadow: none;
  }


  .btn-dynamic {
    text-transform: uppercase;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 2rem;
    font-size: 0.8rem;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .btn-dynamic .btn-icon {
    margin-left: 0.5rem;
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    transform: rotate(180deg);
  }
  
  .btn-dynamic::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
  }
  
  .btn-dynamic:hover::after {
    opacity: 1;
  }



  .btn-read-more {
    background: none;
    border: none;
    color: #232a3e;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    padding: 0;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    box-shadow: none;
    transition: none;
  }
  
  .btn-read-more .btn-icon {
    margin-left: 0.5rem;
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    transform: rotate(180deg) translateX(5px);
  }
  
  .btn-read-more:hover,
  .btn-read-more:focus {
    background: none;
    box-shadow: none;
  }
  
  .btn-read-more:hover .btn-icon,
  .btn-read-more:focus .btn-icon {
    transform: rotate(180deg) translateX(0);
  }
  
  .btn-read-more::after {
    display: none !important;
  }
  /* END All BUttons */
  
  #logo {
    max-width: 200px;
  }
  
  body {
    font-family: "PT Sans", sans-serif;
    font-size: 18px;
    color: #111111;
    font-weight: 400;
    background-color: white;
    width: 100%;
    overflow-x: hidden !important;
  }
  body.admin-bar #wpadminbar {
    display: none;
  }
  
  strong {
    font-weight: 600;
  }
  ul li {
    line-height: 16px;
  }
  ul li.menu-item {
    line-height: 1em;
    display: flex;
  }
  ul,
  ol {
    padding-left: 1rem;
  }
  
  a,
  a:link,
  a:visited,
  a:active {
    text-decoration: none;
    color: var(--link-color);
    transition: color 0.4s;
  }
  a:hover {
    color: var(--link-hover-color);
  }
  
  .mt-5 {
    margin-top: 5rem !important;
  }
  .mb-5 {
    margin-bottom: 5rem !important;
  }
  .mt-6 {
    margin-top: 6rem !important;
  }
  .mb-6 {
    margin-bottom: 6rem !important;
  }
  
  .gap-1 {
    gap: 1rem !important;
  }
  .gap-2 {
    gap: 2rem !important;
  }
  .gap-3 {
    gap: 3rem !important;
  }
  .gap-4 {
    gap: 4rem !important;
  }
  
  .splide__pagination__page.is-active {
    transform: scale(1) !important;
    width: 22px;
    border-radius: 50px;
  }
  
  /* CSS for [hide_on_mobile] shortcode */
  @media (max-width: 767px) {
    .hide-on-mobile {
      display: none !important;
    }
  }
  /* END - Imports and HTML overrides */
  
  /* START - Menu Defaults */
  header#main-header {
    position: relative;
    z-index: 10;
    padding: 3rem 1rem 2rem 1rem;
  }
  
  #top-nav-menu {
    display: flex;
    justify-content: center;
  }
  
  #top-menu.nav {
    gap: 25px;
  }
  
  #searchButton {
    color: var(--secondary-color);
    margin-left: 1rem;
  }
  
  #top-menu.nav li a {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 400;
    display: block;
    line-height: 1;
    font-family: "PT Sans", sans-serif;
    color: var(--secondary-color);
  }
  #top-menu.nav li a:after {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--link-color);
    content: " ";
    margin-top: 20px;
    position: absolute;
    opacity: 0;
    transition: all 0.3s;
  }
  #top-menu.nav li a:hover:after,
  #top-menu.nav li a:active:after {
    opacity: 1;
    margin-top: 8px;
  }
  @media (min-width: 992px) {
    #mobile-menu,
    header#main-header a#mobileMenuClose {
      display: none;
    }
    #top-menu.nav {
      justify-content: flex-end;
    }
  }
  @media (max-width: 991px) {
    .menu-column {
      position: fixed;
      width: 100%;
      height: 100vh;
      background: #232323;
      top: 0;
      left: 0;
      opacity: 0 !important;
      transform: translateX(100%) !important;
      transition: transform 0s linear 0.5s, opacity 0.4s ease 0s;
    }
    .menu-column.show {
      opacity: 1 !important;
      transform: translateX(0) !important;
      transition: transform 0s linear 0s, opacity 0.4s ease 0s;
    }
    .menu-column .primary-menu-container #top-menu {
      padding: 40px 40px;
      flex-direction: column;
      gap: 36px;
    }
    .menu-column .primary-menu-container ul li.menu-item {
      line-height: 1.5em;
    }
    #top-menu.nav li a:after {
      opacity: 1;
      margin-top: 3px;
      position: relative;
    }
    #top-menu.nav li a:hover:after {
      margin-top: 3px;
      width: calc(100% + 2rem);
    }
  }
  #mobileMenuClose {
    position: absolute;
    top: 36px;
    right: 2rem;
    font-size: 30px;
  }
  #mobileMenuToggle {
    font-size: 30px;
    line-height: 1;
    align-items: center;
    display: flex;
  }
  a#mobileMenuClose:hover,
  a#mobileMenuClose:active {
    color: var(--blue);
  }
  .mobile-and-search-menu {
    justify-content: flex-end;
    display: flex;
  }
  /* END - Menu Defaults */
  
  /* START Menu Adjusts */
  #top-menu.nav li a {
    font-weight: bold;
    font-size: 0.8rem;
  }
  /* END Menu Adjusts */
  
  .cta-top {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 2rem;
    color: var(--secondary-color) !important;
    border-radius: 50px;
    font-weight: 600;
  }

  .login-app-btn {
    background-color: transparent;
  }
  
  .text-uppercase {
    text-transform: uppercase;
  }
  
  .text-bold {
    font-weight: bold;
  }
  
  /* START Homepage */
  /* START Section One */
  .home-section-1 {
    position: relative;
    padding: 3rem;
    border-radius: 3rem;
    background-size: cover;
    background-position: center;
    color: #fff;
    min-height: 500px;
    display: flex;
    align-items: center;
  }
  
  .home-section-1 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 3rem;
    opacity: 1;
  }
  
  .home-section-1 .container {
    position: relative;
    z-index: 2;
  }
  
  .home-section-1 .content-wrapper {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
  }
  
  .home-section-1 .quotemark-icon {
    margin-right: 1rem;
  }
  
  .quotemark-icon img {
    width: 60px;
  }
  

  .home-section-1 .slider-content {
    display: flex;
    flex-direction: column;
  }

  .home-section-1 .slider-title {
    margin: 0;
    font-size: 4rem;
    font-style: italic;
    margin-bottom: -20px;
  }

  .home-section-1 .slider-paragraph,
  .home-section-1 .slider-paragraph p {
    font-size: 2.5rem;
    max-width: 80%;
    line-height: 1.2;
    margin-top: 1rem;
  }

  
  
  .home-section-1 .primary-bar {
    position: absolute;
    bottom: -5px;
    right: 4rem;
    width: 200px;
    height: 10px;
    background-color: var(--primary-color);
  }
  /* END Section One */
  
  /* START Section Two */
  .home-section-2 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  
  .home-section-2 .card-grid a {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .home-section-2 .card-grid a:hover {
    transform: translateY(-10px);
  }
  
  .home-section-2 .card {
    border: 1px solid rgb(143 143 143 / 13%);
    border-radius: 10px;
    box-shadow: 0 0px 20px -4px #a3a3a36b;
    margin: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .home-section-2 .card:hover {
    box-shadow: 0 10px 10px -4px #0000003f;
    margin: 0;
  }
  
  .home-section-2 .card-image {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 200px;
    width: 100%;
    border-radius: 10px 10px 0px 0px;
  }
  
  .home-section-2 .card-badge {
    position: absolute;
    top: 1rem;
    left: -7px;
    color: var(--background-secondary);
    background-color: var(--background-primary);
    padding: 0.1rem 1rem 0.1rem 1rem;
    display: inline-block;
    font-weight: bold;
    font-size: 0.8rem;
    clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%);
  }
  
  .home-section-2 .connector-triangle {
    position: absolute;
    top: 0;
    left: -7px;
    transform: translateY(70%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 8px solid #50b189;
  }
  
  .home-section-2 .card-badge::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 1rem solid var(--background-primary);
    border-left: 1rem solid transparent;
  }
  
  .home-section-2 .card-badge::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom: 1rem solid var(--background-primary);
    border-left: 1rem solid transparent;
  }
  
  .home-section-2 .card-price {
    position: absolute;
    bottom: 3px;
    right: -10px;
    color: #fff;
    background-color: var(--background-secondary);
    padding: 0.1rem 2rem;
    width: fit-content;
    border-radius: 10px 0px 0px 10px;
  }
  
  .home-section-2 .connector-triangle-right {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-318%);
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 0px solid transparent;
    border-left: 10px solid #000000;
  }
  
  .home-section-2 .card-content {
    padding: 1rem;
  }
  
  .home-section-2 .card-address {
    color: #000000;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .home-section-2 .card-address .address {
    font-size: 0.9rem;
    line-height: 1rem;
    min-height: 2rem;
  }
  
  .home-section-2 .card-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    justify-content: space-evenly;
    align-items: center;
  }
  
  .home-section-2 .card-features .feature {
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 0.8rem;
    line-height: 0.7rem;
  }
  
  .homeaid-card-icons {
    max-height: 20px;
  }
  
  .home-section-2 .card-features .feature img {
    max-height: 20px;
  }
  
  .home-section-2 .card-features .feature .feature-value {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    font-weight: bold;
    color: #000;
    line-height: 1;
  }
  
  .home-section-2 .text-center {
    text-align: center;
  }
  
  .home-section-2 .card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  
  .home-section-2 .card-placeholder {
    background-color: #ccc;
    height: 200px;
    border-radius: 0.5rem;
  }
  
  .home-section-2 .btn-icon {
    margin-left: 0.5rem;
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    transform: rotate(180deg);
  }
  /* END Section Two */
  
  /* START Section Three */
  .home-section-3 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  
  .home-section-3 .text-center {
    text-align: center;
  }
  
  .home-section-3 .card-placeholder {
    background-color: #ccc;
    height: 300px;
    border-radius: 0.5rem;
  }
  
  .home-section-3 .btn-icon {
    margin-left: 0.5rem;
    width: 1rem;
    height: 1rem;
    fill: currentColor;
  }
  .home-section-3 .splide-blocks {
    position: relative;
  }
  
  /* START Splides */
  .home-section-3 .splide__slide {
    height: 300px;
    width: 300px;
    position: relative;
  }
  
  .home-section-3 .card {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    border: 0;
    border-radius: 1rem;
  }
  
  .home-section-3 .splide__track--draggable {
    border-radius: 1rem;
  }
  
  .home-section-3 .lenders-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 50%,
      rgb(0 0 0 / 74%) 100%
    );
    border-radius: 1.1rem;
  }
  
  .home-section-3 .contractors-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 50%,
      rgb(0 0 0 / 74%) 100%
    );
    border-radius: 1.1rem;
  }
  
  .home-section-3 .card-logo {
    position: absolute;
    max-height: 100px;
    max-width: 200px;
    width: auto;
    top: 74%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: brightness(0) invert(1);
  }
  /* ENDSplides */
  
  .home-section-3 .green-sidebar-spilde {
    background: var(--background-primary);
    height: 10px;
    width: 200px;
    transform: rotate(90deg);
    position: absolute;
    left: -4.75rem;
    top: 45%;
    z-index: 2;
  }
  
  .home-section-3 .splide__pagination {
    bottom: -1.5em;
  }
  
  .home-section-3 .splide-button {
    margin-top: 2.5em;
  }
  /* END Section Three */
  
  /* START Section Four */

  .how-it-works-section {
    background: #fff;
    padding: 64px 0 0 0;
  }

  .how-works-header {
    margin-bottom: 64px;
  }

  .how-works-title {
    font-family: 'PT Sans', 'Arial', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3550;
    margin-bottom: 16px;
  }

  .how-works-intro {
    font-size: 1.08rem;
    color: #444a5a;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
  }

  .how-works-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-bottom: 80px;
    flex-direction: row;
  }

  .how-works-row.reverse {
    flex-direction: row-reverse;
  }


  .how-works-row.reverse .how-works-image {
    flex: 1 1 0;
    display: flex;
    justify-content: flex-start;
  }

  .how-works-text {
    flex: 1 1 0;
    min-width: 320px;
    max-width: 540px;
  }

  .how-works-image {
    flex: 1 1 0;
    display: flex;
    justify-content: flex-end;
  }

  .how-works-img {
    width: 100%;
    max-width: 560px;
    border-radius: 16px;
    box-shadow: 0 4px 32px 0 rgba(44, 58, 87, 0.08);
    object-fit: cover;
  }

  .image-left {
    justify-content: flex-start!important;
  }

 .image-right {
    justify-content: flex-end!important;
  }

  .how-works-subtitle {
    font-family: 'PT Sans', 'Arial', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2d3550;
    margin-bottom: 12px;
  }

  .how-works-desc {
    font-size: 1.08rem;
    color: #444a5a;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .how-works-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
    counter-reset: howlist;
  }

  .how-works-list li {
    position: relative;
    padding-left: 44px;
    margin-bottom: 18px;
    font-size: 1.08rem;
    color: #444a5a;
    line-height: 1.5;
  }

  .how-works-list li:before {
    content: counter(howlist);
    counter-increment: howlist;
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: #b6f8db;
    color: #2d3550;
    font-weight: 700;
    font-size: 1.15rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px 0 rgba(44, 58, 87, 0.06);
  }

  @media (max-width: 1100px) {
    .how-works-row {
      gap: 24px;
    }
    .how-works-img {
      max-width: 320px;
    }
  }

  @media (max-width: 900px) {
    .how-works-row,
    .how-works-row.reverse {
      flex-direction: column !important;
      gap: 32px;
      margin-bottom: 56px;
    }
    .how-works-image, .how-works-text {
      max-width: 100%;
      min-width: 0;
    }
    .how-works-img {
      max-width: 100%;
      width: 100%;
    }
  }

  @media (max-width: 600px) {
    .how-it-works-section {
      padding: 32px 0 0 0;
    }
    .how-works-header {
      margin-bottom: 32px;
    }
    .how-works-title {
      font-size: 2rem;
    }
    .how-works-subtitle {
      font-size: 1.3rem;
    }
    .how-works-row {
      margin-bottom: 36px;
    }
    .how-works-list li {
      padding-left: 36px;
      font-size: 1rem;
    }
    .how-works-list li:before {
      width: 24px;
      height: 24px;
      font-size: 0.95rem;
    }
  }

  /* END Section Four */

  /* START Coming Soon Section */
  .coming-soon-section {
    background-color: var(--background-white);
    background-image: url('/wp-content/uploads/2024/06/bg-faq.png');
    background-size: 1200px;
    background-position: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .coming-soon-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  .coming-soon-form input[type="email"] {
    max-width: 300px;
    border-radius: 100px;
    padding: 8px 20px;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
  }
  .coming-soon-form button {
    border-radius: 100px;
    padding: 8px 28px;
    font-size: 1rem;
    font-weight: 500;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    transition: background 0.2s;
  }
  .coming-soon-form button:hover {
    background-color: var(--secondary-color-hover);
    color:#fff;
  }
  @media (max-width: 600px) {
    .coming-soon-form {
      flex-direction: column;
      gap: 0.5rem;
    }
    .coming-soon-form input[type="email"] {
      width: 100%;
      margin-bottom: 0.5rem;
    }
    .coming-soon-form button {
      width: 100%;
    }
  }
  /* END Coming Soon Section */

  /* START Buyer Tips Section */
  .buyer-tips-section .section-title {
    font-family: 'PT Sans', 'Arial', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3550;
    margin-bottom: 16px;
    text-align: center;
  }

  .buyer-tips-section .card-title {
    font-weight: bold;
    color: var(--secondary-color);
    min-height: 3rem;
  }
  .buyer-tips-section .card-img-top {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    object-fit: cover;
    height: 220px;
    width: 100%;
  }
  .buyer-tips-section .card {
    border-radius: 0.5rem;
    border: 1px solid #e0e0e0;
    background: #fff;
    transition: box-shadow 0.2s;
  }
  .buyer-tips-section .card:hover {
    box-shadow: 0 4px 24px rgba(48,58,87,0.10);
  }
  .buyer-tips-section .card-body {
    padding: 1.2rem 1.2rem 1.5rem 1.2rem;
  }
  .buyer-tips-section .card-text {
    color: #555;
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .buyer-tips-section .text-blue {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: underline;
    font-size: 1rem;
  }
  @media (max-width: 600px) {
    .buyer-tips-section .card-img-top {
      height: 140px;
    }
  }
  /* END Buyer Tips Section */
  
  /* START Section Five */
  .home-section-5 {
    padding: 5rem 0;
    background-color: #f7f7f7;
  }
  
  .home-section-5 .table-column {
    text-align: left;
    margin-bottom: 2rem;
  }
  
  .home-section-5 .table-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .home-section-5 .table-items {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
  }
  
  .home-section-5 .table-items li {
    background-color: #e1fff3;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  
  .home-section-5 .table-column:nth-child(2) .table-items li {
    background-color: #efefef;
  }
  
  .home-section-5 .table-items li:nth-child(2n) {
    background-color: #f2fff9;
  }
  
  .home-section-5 .table-column:nth-child(2) .table-items li:nth-child(2n) {
    background-color: #f7f7f7;
  }
  
  .home-section-5 .checkmark-icon img {
    color: #3deba3;
    margin-right: 0.2rem;
    width: 1.4rem;
  }
  
  .home-section-5 .cross-icon img {
    color: #ff6e6e;
    margin-right: 0.2rem;
    width: 1.4rem;
  }
  
  .home-section-5 .table-price {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .home-section-5 .table-price-wrapper {
    display: flex;
    justify-content: center;
  }
  
  .home-section-5 .table-price-info-icon {
    margin-left: 5px;
    font-size: 14px;
    cursor: pointer;
    color: var(--secondary-color);
  }
  
  .home-section-5 .table-paragraph {
    text-align: center;
    margin-top: -1rem;
  }
  
  .container-tables {
    padding: 3% 10% 1% 10%;
  }
  
  .cta-table {
    padding: 0.8rem 5rem;
    font-size: 1rem;
    margin-top: 1rem;
  }
  
  .img-align-left {
    float: left;
    margin-right: 10px;
  }

  .table>:not(caption)>*>* {
    padding: .7rem .5rem;
    font-size: 1rem;
  }

  .table-responsive  {
    background: #fff;
    padding: 2rem 2rem 1rem 2rem;
    border-radius: 10px;
  }

  /* END Section Five */
  
  /* START Section Six */
  .home-section-6 {
    padding-bottom: 5rem;
  }
  
  .home-section-6 .big-title {
    font-size: 3.4rem;
  }
  
  .home-section-6 .section-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
  }
  
  .home-section-6 .highlight {
    color: var(--primary-color);
  }
  
  /* END Section Six */
  
  /* START Section Seven */
  .home-section-7 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
  }
  
  .home-section-7 .container {
    position: relative;
    z-index: 2;
  }
  
  .home-section-7 .row {
    display: flex;
    align-items: flex-start;
  }
  
  .home-section-7 .paragraph {
    margin-bottom: 2rem;
  }
  
  .home-section-7 .img-fluid {
    max-width: 75%;
    height: auto;
  }
  
  @media (min-width: 992px) {
  .home-section-7 .image-wrapper {
    display: flex;
      justify-content: center;
    }
  }

  /* FAQ Accordeon */
  
  .accordion-button {
    background-color: #3ede9c;
    color: var(--secondary-color);
    font-weight: bold;
  }
  
  .accordion-button:not(.collapsed) {
    color: var(--secondary-color);
  }
  
  .accordion-button::after {
    display: none;
  }
  
  .accordion-body {
    padding: 1rem 1.25rem;
    color: var(--secondary-color) !important;
    background: #3ede9c !important;
  }
  
  .accordion-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
    width: 12px;
  }
  
  .accordion-button.collapsed .accordion-icon {
    transform: rotate(90deg);
  }
  
  .accordion-button:not(.collapsed) .accordion-icon {
    transform: rotate(0deg);
  }
  
  .accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    background-color: #3ede9c;
  }
  .accordion-item {
    background-color: #fff0 !important;
  }
  
  .accordion-button.collapsed {
    border-radius: 10px !important;
  }
  
  .accordion-item:first-of-type .accordion-button {
    border-radius: 10px 10px 0px 0px !important;
  }
  
  .accordion-item .accordion-button {
    border-radius: 10px 10px 0px 0px !important;
  }
  
  .accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 10px 10px 0px 0px !important;
  }
  
  .accordion-item:last-of-type {
    border-radius: 10px !important;
  }
  
  .accordion-item .accordion-button {
    font-size: 1.2rem;
  }
  
  /* END Section Seven */
  
  .splide__pagination__page.is-active {
    background: var(--background-primary) !important;
  }
  
  #faqAccordion .accordion-button:focus {
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
  }
  
  #faqAccordion .accordion-button:focus {
    border-color: transparent !important;
  }
  
  .accordion-item {
    margin-bottom: 1rem !important;
    border: none !important;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .accordion-button {
    border-radius: 10px;
  }
  
  .accordion-button:not(.collapsed) {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  
  .accordion-body {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: none !important;
    position: relative;
    top: -3px;
  }
  
  /* Ajusta as bordas para quando o acordeão está aberto */
  .accordion-button.collapsed {
    border-radius: 10px;
  }
  
  /* END Homepage */
  
  /* START Footer */
  #footer {
    background: var(--secondary-color) url(/wp-content/themes/homeaid/images/noise.svg) repeat;
    min-height: 300px;
    padding: 5rem 0 3rem 0;
    background-size: 250px;
    background-blend-mode: color-burn;
    background-color: var(--secondary-color);
  }
  
  #footer p {
    color: #fff;
  }
  #footer .footer-logo {
    max-width: 150px;
    height: auto;
  }
  
  #footer .footer-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
  }
  #footer .footer-menu {
    padding: 0.6rem 0;
  }
  #footer .footer-menu ul {
    list-style: none;
    padding: 0;
  }
  
  #footer .footer-menu li a {
    color: white !important;
    font-size: 0.95rem;
  }
  
  #footer .footer-menu li a:hover {
    color: var(--link-hover-color) !important;
  }
  
  #footer .footer-menu li {
    margin-bottom: 1rem;
  }
  
  #footer .newsletter-form {
    display: flex;
    flex-direction: column;
  }
  
  #footer .newsletter-input {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    width: 100%;
  }
  
  #footer .btn-subscribe {
    background-color: var(--background-primary);
    color: var(--secondary-color);
    border: none;
    padding: 0.2rem 1rem;
    border-radius: 54px;
    font-weight: bold;
    width: fit-content;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
  }
  
  #footer .btn-subscribe:hover {
    background-color: #32bb82;
  }
  
  #footer .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 5.5rem !important;
  }
  
  #footer .social-icon {
    font-size: 1.5rem;
    background: var(--background-primary);
    color: var(--secondary-color) !important;
    border-radius: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    min-width: 40px;
    transition: all 0.3s;
  }
  
  #footer .social-icon:hover {
    color: var(--background-primary) !important;
    background: #22283b;
    transition: all 0.3s;
  }
  
  #footer .bottom-text {
    color: #fff;
    font-size: 0.8rem;
  }
  
  .bottom-right-text {
    display: flex;
    justify-content: flex-end;
  }
  
  #logo-mbm {
    width: 56px;
    margin-left: 6px;
    position: relative;
    top: -6px;
  }
  /* END Footer */
  
  /* -------------------------------------- */
  
  /* START Mobile Adjusts */
  @media (max-width: 768px) {
    /* START Mobile Adjusts Home */
  
    /* START Menu */
    .header-search {
      display: none;
    }
    /* END Menu */
  
    /* START Footer */
    #footer {
      padding: 4rem 2rem;
    }
  
    #footer .col-md-3 {
      padding: 1.5rem 0;
    }
    #footer .footer-title {
      font-size: 1.5rem;
    }
  
    #footer .footer-menu li a {
      font-size: 1.2rem;
    }
  
    #footer .social-icons {
      margin-top: 2rem !important;
      justify-content: center;
    }
  
    #footer .bottom-text {
      text-align: center !important;
      border-top: solid 1px #6575a1;
      padding-top: 1rem;
    }
  
    #footer .bottom-right-text {
      justify-content: center;
      margin-top: 0.5rem;
    }
  
    #footer .col-md-3:nth-child(1) {
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
    }
  
    #footer .col-md-3:nth-child(2) {
      width: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    #footer .col-md-3:nth-child(3) {
      width: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    #footer .col-md-3:nth-child(4) {
      text-align: center;
    }
  
    #footer .newsletter-form {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    #footer .btn-subscribe {
      padding: 0.8rem 6rem;
      margin-top: 1rem;
    }
  
    #footer p {
      font-size: 0.9rem;
    }
    /* END Footer */
  
    /* START Home Section 1 (Banner) */
    .home-section-1 {
      width: 90%;
      padding: 1rem;
      min-height: 300px;
      margin-bottom: 3rem !important;
    }
    .quotemark-icon img {
      width: 30px;
    }
    .home-section-1 .slider-title {
      font-size: 2.5rem;
      line-height: 3rem;
    }
    .home-section-1 .primary-bar {
      right: 25%;
    }
    .home-section-1 .overlay {
      background: linear-gradient(
        to bottom,
        rgba(48, 58, 87, 0.5) 20%,
        rgba(48, 58, 87, 0.9) 100%
      ) !important;
    }
    /* END Home Section 1 (Banner) */
  
    /* START Home Section 2 */
    .home-section-2 {
      padding: 3rem 1rem;
    }
    .home-section-2 .card-grid {
      grid-template-columns: repeat(1, 1fr);
    }
  
    .home-section-2 .card-grid a {
      margin: 0.5rem 0px;
    }
    /* END Home Section 2 */
  
    /* START Home Section 3 */
    .home-section-3 {
      padding: 3rem 1rem;
    }
  
    .home-section-3 .splide__slide {
      height: 230px;
    }
  
    .home-section-3 .green-sidebar-spilde {
      width: 120px;
      left: -3.2rem;
    }
  
    .home-section-3 .splide-blocks {
      padding: 0.5rem !important;
    }
  
    .home-section-3 .splide-blocks:nth-child(2) {
      margin-top: 3rem;
    }
  
    /* END Home Section 3 */
  
    /* START Home Section 4 */
    .home-section-4 {
      padding: 3rem 2rem 3rem 2rem;
    }
  
    .home-section-4 {
      background-image: none;
    }
    .home-section-4 .section-title {
      font-size: 3rem;
      display: flex;
      justify-content: space-evenly;
    }
    .home-section-4 .steps {
      flex-direction: column;
    }
  
    .home-section-4 .step {
      width: 100%;
    }
  
    .home-section-4 .step-number {
      padding-bottom: 4rem;
      line-height: 2rem;
    }
  
    .home-section-4 .step:nth-child(1) {
      transform: translateY(0rem) translateX(0rem);
    }
  
    .home-section-4 .step:nth-child(2) {
      transform: translateY(0rem) translateX(0rem);
    }
  
    .home-section-4 .step:nth-child(3) {
      transform: translateY(0rem) translateX(0rem);
    }
  
    .home-section-4 .step:nth-child(4) {
      transform: translateY(0rem) translateX(0rem);
    }
  
    .home-section-4 .step-icon {
      margin-bottom: 0rem;
      margin-top: 2rem;
    }
  
    .home-section-4 .paragraph {
      margin-top: 0rem;
      width: 100%;
      float: none;
      top: 0;
    }
    /* END Home Section 4 */
  
    /* START Home Section 5 */
    .home-section-5 {
      padding: 3rem 0rem;
    }
  
    .home-section-5 .container-tables {
      padding: 3% 0% 1% 0%;
    }
  
    .home-section-5 .table-column {
      margin-bottom: 4rem;
      border: solid 1px #ebebeb;
      padding: 1rem;
      border-radius: 1rem;
    }
  
    .table-paragraph .row {
      padding: 0 !important;
    }
  
    .home-section-5 .table-paragraph {
      margin-top: 0rem;
      line-height: 0.5rem;
    }
  
    .home-section-5.pb-0 div:nth-child(2) > div.table-paragraph {
      line-height: 1rem !important;
    }
    /* END Home Section 5 */
  
    /* STAT Home Section 6 */
    .home-section-6 {
      padding: 3rem 1rem;
    }
  
    .home-section-6 .row {
      flex-direction: column;
    }
    /* END Home Section 6 */
  
    /* START Home Section 7 */
    .home-section-7 {
      padding: 2rem;
    }
  
    .home-section-7 .row .col-md-6 {
      padding: 2rem 0;
    }
  
    /* END Home Section 7 */
  
    /* END Mobile Adjusts Home */
  }
  /* END Mobile Adjusts */
  
  .tooltip.show {
    opacity: 1;
  }
  
  .tooltip-inner {
    background-color: var(--background-primary);
    color: var(--secondary-color);
  }
  
  .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before,
  .bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--background-primary);
  }
  
  /* Mobile Menu Styles */
  #mobileMenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    overflow-y: auto;
  }
  
  #mobileMenu.active {
    right: 0;
  }
  
  .menu-open #mobileMenu {
    right: 0;
  }
  
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
  }
  
  #closeMenuBtn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 5px;
  }
  
  .mobile-menu-content {
    padding: 20px 0;
  }
  
  .mobile-menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile-menu-content ul li {
    margin-bottom: 15px;
  }
  
  .mobile-menu-content ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 20px;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease;
    font-weight: 600;
  }
  
  .mobile-menu-content ul li a:hover {
    color: #007bff;
  }
  
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
  }
  .mobile-menu-logo {
    width: 120px;
  }

  @media (max-width: 992px) {
    #top-nav-menu {
      display: none;
    }
  }

  @media (min-width: 992px) {
    #mobileMenu {
      display: none;
    }
    
    .mobile-menu-overlay {
      display: none;
    }
  }
  
  .mobile-menufooter-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .mobile-menufooter-cta a {
    width: fit-content;
  }




/* START Single Partner Page */
.single-partner-simple {
  min-height: 60vh;
  background: #fff;
}
.single-partner-simple .partner-block {
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.single-partner-simple .partner-logo-simple img {
  max-width: 240px;
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 3rem;
}
.single-partner-simple .partner-title-simple {
  font-size: 2.1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.2rem;
}
.single-partner-simple .partner-location-simple {
  color: #6c757d;
  font-size: 1.1rem;
  text-transform: capitalize;
}
.single-partner-simple .partner-address-simple {
  color: #444;
  font-size: 1rem;
  margin-top: 0.2rem;
}
.single-partner-simple .about-title-simple, .services-title-simple {
  color: #222;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.single-partner-simple .about-content-simple, .services-content-simple {
  color: #222;
  font-size: 1.08rem;
  line-height: 1.7;
  text-align: left;
}

.single-partner-simple ul li {
  line-height: 20px;
  margin-bottom: 20px;
}

/* END Single Partner Page */

.partners-list-page {
  min-height: 60vh;
}
.partners-list-page .partners-grid {
  row-gap: 2rem;
}
.partners-list-page .partner-card {
  border: 1px solid #f0f0f0;
}

.partners-list-page .partner-logo-index {
max-width: 180px;
max-height: 40px;
height: 40px;
object-fit: contain;
}

.partners-list-page-cta {
  background: #f8f9fa;
  border-radius: 12px;
  max-width: 900px;
  margin: 40px auto 40px auto;
}
.partners-list-page-cta .cta-title {
    font-weight: 700;
    color: #222;
}
.partners-list-page-cta .cta-description {
    font-size: 1.15rem;
    color: #444;
    max-width: 700px;
    margin: 18px auto 28px auto;
}
.partners-list-page-cta .cta-btn {
    padding: 12px 38px;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 6px;
}

.partners-list-page .partner-main-image-bg {
  width: 100%;
  height: 140px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

.partner-main-image-bg {
  width: 80%;
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  margin: 0 auto;
}

.partner-info-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 2rem;
}
.partner-details-col {
  border-left: 1px solid #f0f0f0;
  padding-left: 2.5rem;
}
@media (max-width: 991px) {
  .partner-details-col {
    border-left: none;
    padding-left: 0;
    margin-top: 2.5rem;
  }
}

.partner-contact-form {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  width: 90%;
}
.partner-contact-form label {
  font-weight: 600;
  color: #222;
}
.partner-contact-form .form-control {
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.partner-contact-form .btn-success {
  background: var(--secondary-color);
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 6px;
  padding: 10px 0;
}
.partner-contact-form .btn-success:hover {
  background: #32bb82;
}


.partner-registration #main-content{
  background-color: var(--primary-color) !important;
    background-image: url(/wp-content/themes/homeaid/images/bg-green-pattern-homeaid.png);
    background-size: cover;
    background-position: center;
    position: relative;
}


@media (max-width: 991px) {
  .container {
    padding: 0 2rem;
  }
  .hide-on-mobile {
    display: none;
  }

  .home-section-1 .container {
    padding: 0;
  }

  .home-section-1 .slider-paragraph,
  .home-section-1 .slider-paragraph p {
    font-size: 1.2rem;
    max-width: 100%;
    line-height: 1.2;
    margin-top: 1rem;
  }
  .quotemark-icon img {
    width: 20px;
  }
  .home-section-1 .quotemark-icon {
    margin-right: .5rem;
  }
  
}

@media (min-width: 992px) { 
  .hide-on-desktop {
    display: none;
  }
}


/* START Single Post Page */
.post-hero {
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.post-hero-overlay {
  width: 100%;
  background: rgba(0,0,0,0.35);
  padding: 10rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.post-hero .container {
  text-align: center;
  color: #fff;
}

.post-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.post-meta {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #69e8a7;
  font-weight: 600;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.post-share span {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 0.5rem;
}

.post-share a {
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  border: solid 1px;
}

.post-share a:hover {
  background: #fff;
  color: #232a3e;
}

.post-content {
  padding: 4rem 0;
}

.post-content h3 {
  color: var(--background-secondary);
  font-weight: 600;
  margin-top: 2rem;
  font-size: 2.5rem;
}
.post-content h3 {
  color: var(--background-secondary);
  font-weight: 600;
  margin-top: 2rem;
  font-size: 2rem;
}

.post-content h4 {
  color: #2bc988;
  margin-top: 2rem;
  font-size: 1.6rem;
}

.post-content ul li {
  line-height: 1.1;
  margin-bottom: .8rem;
}

.post-content a,
.post-content a:link,
.post-content a:visited,
.post-content a:active {
  color: var(--background-secondary);
  text-decoration: underline;
}


@media (max-width: 600px) {
  .post-title {
    font-size: 1.5rem;
  }
}
/* END Single Post Page */


@media (max-width: 991px) {
  .table-responsive {
    padding: 2rem 1rem 1rem 1rem;
  }
}