 :root {
   --primary-color: #1e2a5a;
   --secondary-color: #3a4b8a;
   --accent-color: #4a6ee0;
   --light-bg: #f8fafd;
   --text-color: #333;
   --text-light: #666;
   --white: #ffffff;
   --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
   --transition: all 0.3s ease;
 }

    #toggleChat {
      position: fixed;
      bottom: 70px;
      right: 20px;
      z-index: 10000;
      background: #283b59;
      color: white;
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      font-size: 24px;
      cursor: pointer;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    
     #chatboxFrame {
      display: none;
      position: fixed;
      bottom: 80px;
      right: 0;
      width: 400px;
      height: 500px;
      border: none;
      border-radius: 12px;
      box-shadow: 0 0 10px rgba(0,0,0,0.2);
      z-index: 1999;
    }
    

.act-map-container{
      background-color: #eef0fa !important;
}

 .act-dev-historia {
   background-color: var(--light-bg);
   padding: 100px 20px;
   position: relative;
   overflow: hidden;
   width: 100vw;
   position: relative;
   left: 50%;
   right: 50%;
   margin-left: -50vw;
   margin-right: -50vw;
 }

 .act-dev-container {
   max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
   position: relative;
   z-index: 2;
 }

 /* Image container */
 .act-dev-imagenes {
   position: relative;
   width: 100%;
   height: 500px;
 }

 /* Circle styles */
 .circle {
   position: absolute;
   border-radius: 50%;
   overflow: hidden;
   box-shadow: var(--shadow);
   transition: var(--transition);
   border: 4px solid var(--white);
 }

 .circle:hover {
   transform: scale(1.03);
   box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
 }

 .circle img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: var(--transition);
 }

 .circle:hover img {
   transform: scale(1.05);
 }

 /* Circle positions and sizes */
 .circle--large {
   width: 280px;
   height: 280px;
   bottom: 0;
   left: 0;
   z-index: 3;
 }

 .circle--medium {
   width: 220px;
   height: 220px;
   top: 20px;
   left: 180px;
   z-index: 2;
 }

 .circle--small {
   width: 160px;
   height: 160px;
   top: 180px;
   right: 20px;
   z-index: 1;
 }

 /* Text content */
 .act-dev-texto h2 {
   font-size: 2.5rem;
   color: var(--primary-color);
   margin-bottom: 30px;
   line-height: 1.2;
   font-weight: 700;
 }

 .act-dev-texto p {
   color: var(--text-light);
   line-height: 1.8;
   margin-bottom: 20px;
   font-size: 1.1rem;
 }

 /* Decorative elements */
 .act-dev-historia::before {
   content: '';
   position: absolute;
   top: -100px;
   right: -100px;
   width: 400px;
   height: 400px;
   background: radial-gradient(circle, rgba(74, 110, 224, 0.1) 0%, rgba(74, 110, 224, 0) 70%);
   z-index: 1;
 }

 /* Responsive design */
 @media (max-width: 992px) {
   .act-dev-container {
     gap: 40px;
   }

   .act-dev-texto h2 {
     font-size: 2rem;
   }
 }

 @media (max-width: 768px) {
   .act-dev-historia {
     padding: 80px 20px;
   }

   .act-dev-container {
     grid-template-columns: 1fr;
     text-align: center;
     gap: 30px;
   }

   .act-dev-imagenes {
     height: auto;
     margin-bottom: 40px;
     padding-bottom: 60px;
   }

   .circle {
     position: relative;
     margin: 0 auto 30px;
     width: 220px !important;
     height: 220px !important;
     top: auto !important;
     left: auto !important;
     right: auto !important;
     bottom: auto !important;
   }

   .act-dev-texto h2 {
     font-size: 1.8rem;
   }
 }

 @media (max-width: 480px) {
   .act-dev-texto h2 {
     font-size: 1.6rem;
   }

   .act-dev-texto p {
     font-size: 1rem;
   }
 }

 .act-dev-mision {
   width: 100vw;
   position: relative;
   left: 50%;
   right: 50%;
   margin-left: -50vw;
   margin-right: -50vw;
 }

 .act-dev-mision .hero-section {
   width: 100%;
   background: url('https://images.unsplash.com/photo-1503264116251-35a269479413') no-repeat center center/cover;
   min-height: 50vh;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 100px 20px;
 }

 .act-dev-mision .hero-section::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-color: rgba(0, 35, 77, 0.85);
   z-index: 0;
 }

 .act-dev-mision .container {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
 }


 .act-dev-mision .card {
   background-color: #f3f4f8;
   border-radius: 12px;
   padding: 40px 30px;
   position: relative;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
   color: #333;
 }

 .act-dev-mision .card img {
   position: absolute;
   top: -40px;
   left: 30px;
   width: 80px;
   height: 80px;
   border-radius: 50%;
   /* background-color: #d8dde9; */
   padding: 12px;
   object-fit: contain;
 }

 .act-dev-mision .card h2 {
   margin-top: 60px;
   margin-bottom: 20px;
   /* font-size: 1.4rem; */
   color: #1b2a4e;
   border-left: 4px solid #1b2a4e;
   padding-left: 10px;
   font-weight: bold;
 }

 .act-dev-mision .card p {
   /* font-size: 1rem;
    line-height: 1.6; */
   color: #444;
 }

 @media (max-width: 768px) {
   .act-dev-mision .hero-section {
     padding: 60px 20px;
   }

   .act-dev-mision .card img {
     left: 20px;
   }
 }

 .valores-section {
   max-width: 1200px;
   margin: auto;
   padding: 40px 20px;
 }

 .valores-section h2 {
   /* font-size: 2rem; */
   color: #1b2a4e;
   margin-bottom: 40px;
   border-left: 4px solid #1b2a4e;
   padding-left: 10px;
   margin-bottom: 6rem !important;
 }

 .valores-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
 }

 .valor {
   background-color: #eef0fa;
   border-radius: 12px;
   padding: 40px 20px 20px 20px;
   position: relative;
   box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
   margin-bottom: 3rem !important;
 }

 .valor-icon {
   width: 60px;
   height: 60px;
   background-color: #d9d9d9;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   position: absolute;
   top: -30px;
   left: 20px;
 }

 .valor-icon svg {
   width: 28px;
   height: 28px;
   color: #1b2a4e;
 }

 .valor h3 {
   margin-top: 20px;
   /* font-size: 1.1rem; */
   color: #1b2a4e;
   /* font-weight: bold; */
   border-left: 4px solid #1b2a4e;
   padding-left: 10px;
   margin-bottom: 10px;
 }

 .valor p {
   /* font-size: 0.95rem; */
   color: #333;
   /* line-height: 1.5; */
 }

 .toggle-container {
   display: flex;
   width: 100%;
   border: 1px solid #e6eaf3;
   border-radius: 4px;
   overflow: hidden;
   /* font-family: sans-serif; */
   margin-top: 10px;
 }

 .toggle-button {
   flex: 1;
   padding: 12px 0;
   border: none;
   background: white;
   color: #626a70;
   cursor: pointer;
   /* font-size: 16px; */
   transition: background 0.3s, color 0.3s;
   font-weight: 400;
 }

 .toggle-button.active {
   background: #0fca98;
   color: white;
 }


 .act-social a:hover {
   color: #0fca98;
 }

 /* .act-blog{
    background-color: #f5faff;
} */

 .certified-banner {
   background-color: #f5faff;
   border-bottom: 4px solid #d39a43;
 }

 .certified-banner__inner {
   max-width: 1200px;
   margin: 0 auto;
   padding: 1rem 2rem;
   display: flex;
   align-items: center;
 }

 .certified-banner__logo {
   width: 80px;
   height: auto;
   margin-right: 1.5rem;
 }

 .certified-banner__text {
   line-height: 1.2;
 }

 .certified-banner__subtitle {
   margin: 0;
   font-size: 1rem;
   /* color: #b7853a; */
   text-transform: uppercase;
   letter-spacing: 0.05em;
 }

 .certified-banner__title {
   margin: 0.2rem 0 0;
   font-size: 1.8rem;
   /* color: #8f5f23; */
   font-weight: 400;
 }

 .certified-banner {
   cursor: pointer;
 }

 /** banner-section **/

 .act-address:hover {
   color: #0fca98;
 }

 .menu-title:hover {
   color: #0fca98;
 }

 .act-header {
   background-color: #283b59;
   position: absolute;
   width: 100%;
 }

 .act-header-fixed {
   background-color: #283b59;
   width: 100%;
 }

 .act-header-display {
   display: flex;
   justify-content: center;
   align-content: stretch;
   flex-wrap: wrap;
   flex-direction: column;
 }


 .act-text p {
   line-height: 2;
   text-align: start;


 }

 .act-text h4 {
   text-align: start;
 }

 .footer-add {
   color: #fff;
   font-size: 16px;
   padding-right: 30px;
 }

 /* a {
    color: white !important;
    z-index: 1000;
} */

 .act-header ul li a:not(.header-fixed a) {
   color: white !important;
   z-index: 1000;
 }

 .header-fixed {
   background-color: #283b59;
   position: fixed;
   z-index: 1000000;
 }

 .header-fixed ul li a {
   color: white !important;
 }

 .act-header-fixed ul li a {
   color: white !important;
 }

 .banner-carousel .slide-item {
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
 }

 .banner-carousel .slide-item:before {
   position: absolute;
   content: "";
   width: 100%;
   height: 100%;
   background: #000;
   top: 0px;
   right: 0px;
   z-index: 1;
   opacity: 0.8;
 }

 .banner-carousel .theme-btn.btn-two {
   margin-left: 10px;
 }

 .banner-carousel .theme-btn.btn-two {
   margin-left: 10px;
 }

 .banner-carousel .slide-item .image-layer {
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   -webkit-transform: scale(1);
   -ms-transform: scale(1);
   transform: scale(1);
   -webkit-transition: all 6000ms linear;
   -moz-transition: all 6000ms linear;
   -ms-transition: all 6000ms linear;
   -o-transition: all 6000ms linear;
   transition: all 6000ms linear;
 }

 .banner-carousel .active .slide-item .image-layer {
   -webkit-transform: scale(1.15);
   -ms-transform: scale(1.15);
   transform: scale(1.15);
 }

 .banner-carousel .slide-item .bg-layer {
   left: 0px;
   top: 0px;
   width: 100%;
   height: 100%;
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center;
 }

 .banner-carousel .content-box h1 {
   opacity: 0;
   -webkit-transform: translateY(100px);
   -moz-transform: translateY(100px);
   -ms-transform: translateY(100px);
   -o-transform: translateY(100px);
   transform: translateY(100px);
   -webkit-transition: all 1000ms ease;
   -moz-transition: all 1000ms ease;
   -ms-transition: all 1000ms ease;
   -o-transition: all 1000ms ease;
   transition: all 1000ms ease;
 }

 .banner-carousel .active .content-box h1 {
   opacity: 1;
   -webkit-transform: translateY(0);
   -moz-transform: translateY(0);
   -ms-transform: translateY(0);
   -o-transform: translateY(0);
   transform: translateY(0);
   -webkit-transition-delay: 1000ms;
   -moz-transition-delay: 1000ms;
   -ms-transition-delay: 1000ms;
   -o-transition-delay: 1000ms;
   transition-delay: 1000ms;
 }

 .banner-carousel .content-box h2 {
   line-height: 32px;
   opacity: 0;
   -webkit-transform: translateY(100px);
   -moz-transform: translateY(100px);
   -ms-transform: translateY(100px);
   -o-transform: translateY(100px);
   transform: translateY(100px);
   -webkit-transition: all 1000ms ease;
   -moz-transition: all 1000ms ease;
   -ms-transition: all 1000ms ease;
   -o-transition: all 1000ms ease;
   transition: all 1000ms ease;
 }

 .banner-carousel .active .content-box h2 {
   opacity: 1;
   -webkit-transform: translateY(0);
   -moz-transform: translateY(0);
   -ms-transform: translateY(0);
   -o-transform: translateY(0);
   transform: translateY(0);
   -webkit-transition-delay: 1200ms;
   -moz-transition-delay: 1200ms;
   -ms-transition-delay: 1200ms;
   -o-transition-delay: 1200ms;
   transition-delay: 1200ms;
 }

 .banner-carousel .content-box .btn-box {
   position: relative;
   opacity: 0;
   -webkit-transform: translateY(100px);
   -moz-transform: translateY(100px);
   -ms-transform: translateY(100px);
   -o-transform: translateY(100px);
   transform: translateY(100px);
   -webkit-transition: all 1000ms ease;
   -moz-transition: all 1000ms ease;
   -ms-transition: all 1000ms ease;
   -o-transition: all 1000ms ease;
   transition: all 1000ms ease;
 }

 .banner-carousel .active .content-box .btn-box {
   opacity: 1;
   -webkit-transform: translateY(0);
   -moz-transform: translateY(0);
   -ms-transform: translateY(0);
   -o-transform: translateY(0);
   transform: translateY(0);
   -webkit-transition-delay: 1400ms;
   -moz-transition-delay: 1400ms;
   -ms-transition-delay: 1400ms;
   -o-transition-delay: 1400ms;
   transition-delay: 1400ms;
 }

 .owl-dots-none .owl-dots,
 .owl-nav-none .owl-nav {
   display: none !important;
 }

 .owl-nav button {
   background: transparent;
 }

 .banner-section.style-one .banner-carousel .owl-nav {
   position: absolute;
   right: 250px;
   bottom: 140px;
 }

 .banner-carousel .owl-nav button {
   position: absolute;
   display: inline-block;
   width: 60px;
   height: 60px;
   line-height: 62px;
   border: solid;
   border-width: 2px;
   border-color: #fff;
   text-align: center;
   border-radius: 50%;
   font-size: 16px;
   color: #fff;
   cursor: pointer;
   transition: all 500ms ease;
 }

 .banner-carousel .owl-nav button:hover {}

 .banner-carousel .owl-nav button.owl-prev {
   right: 10px;
 }

 .banner-section .banner-social {
   position: absolute;
   left: 240px;
   bottom: 90px;
   z-index: 2;
 }

 .banner-section .banner-social li {
   position: relative;
   display: inline-block;
 }

 .banner-section .banner-social li a {
   position: relative;
   display: inline-block;
   width: 44px;
   height: 44px;
   line-height: 44px;
   font-size: 16px;
   color: #cccccc;
   text-align: center;
   border-radius: 50%;
 }

 .banner-section .banner-social li a:hover {
   color: #fff;
 }

 .contact-section .image-box:hover:before {
   -webkit-animation: shine 1s;
   animation: shine 1s;
 }

 @-webkit-keyframes shine {
   100% {
     left: 125%;
   }
 }

 @keyframes shine {
   100% {
     left: 125%;
   }
 }

 /** banner-style-three **/

 .banner-section.style-three .content-box .icon-box:before {
   position: absolute;
   content: "";
   width: 57px;
   height: 1px;
   left: 0px;
   top: 9px;
 }

 .banner-section.style-three .content-box .icon-box:after {
   position: absolute;
   content: "";
   width: 57px;
   height: 1px;
   right: 0px;
   top: 9px;
 }

 .banner-section.style-three .banner-carousel .slide-item:before {
   opacity: 0.5;
 }

 .banner-carousel .content-box .icon-box {
   opacity: 0;
   -webkit-transform: translateY(-100px);
   -moz-transform: translateY(-100px);
   -ms-transform: translateY(-100px);
   -o-transform: translateY(-100px);
   transform: translateY(-100px);
   -webkit-transition: all 1000ms ease;
   -moz-transition: all 1000ms ease;
   -ms-transition: all 1000ms ease;
   -o-transition: all 1000ms ease;
   transition: all 1000ms ease;
 }

 .banner-carousel .active .content-box .icon-box {
   opacity: 1;
   -webkit-transform: translateY(0);
   -moz-transform: translateY(0);
   -ms-transform: translateY(0);
   -o-transform: translateY(0);
   transform: translateY(0);
   -webkit-transition-delay: 1000ms;
   -moz-transition-delay: 1000ms;
   -ms-transition-delay: 1000ms;
   -o-transition-delay: 1000ms;
   transition-delay: 1000ms;
 }

 .banner-section.style-three .owl-nav {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   width: 100%;
 }

 .banner-section.style-three .owl-nav .owl-prev {
   left: 80px;
 }

 .banner-section.style-three .owl-nav .owl-next {
   right: 80px;
 }

 /* Property */

 .act-property img {
   vertical-align: middle;
   max-width: 100%;
   display: inline-block;
 }

 .act-property .w-inline-block {
   max-width: 100%;
   display: inline-block;
 }

 .act-property .w-button {
   color: #fff;
   line-height: inherit;
   cursor: pointer;
   background-color: #3898ec;
   border: 0;
   border-radius: 0;
   padding: 9px 15px;
   text-decoration: none;
   display: inline-block;
 }

 .act-property h2,
 .act-property h5,
 .act-property h6 {
   margin-bottom: 10px;
   font-weight: 700;
 }

 .act-property h2 {
   margin-top: 20px;
   font-size: 32px;
   line-height: 36px;
 }

 .act-property h5 {
   margin-top: 10px;
   font-size: 14px;
   line-height: 20px;
 }

 .act-property h6 {
   margin-top: 10px;
   font-size: 12px;
   line-height: 18px;
 }

 .act-property .w-container {
   /* max-width: 940px; */
   margin-left: auto;
   margin-right: auto;
 }

 .act-property .w-container:before,
 .act-property .w-container:after {
   content: " ";
   grid-area: 1/1/2/2;
   display: table;
 }

 .act-property .w-container:after {
   clear: both;
 }

 @media screen and (max-width: 991px) {
   .act-property .w-container {
     max-width: 728px;
   }
 }

 @media screen and (max-width: 479px) {
   .act-property .w-container {
     max-width: none;
   }
 }

 :root {
   --primary-120: #151623;
   --neutral-00: white;
   --secondary-120: #d7a461;
   --neutral-50: #9c9ca7;
   --neutral-90: #2b333d;
   --black-footer: #222;
   --neutral-100: #4e4e4e;
   --black-footer-bottom: #1e1e1e;
   --prueba\<deleted\|variable-3af68f96-aba9-8f27-3e9d-9fbd81abff21\>: red;
   --primary-100: #04293a;
   --neutral-000: white;
   --primary-130: #00151f;
   --secondary-130: #bb7e2f;
   --body-1: Axiforma, sans-serif;
   --neutral-500: #9c9ca7;
   --heading-6: Gellix, sans-serif;
   --neutral-1000: #1e1e1e;
   --primary-90: #023d5c;
   --secondary-100: #e3af5a;
   --neutral-900: #252525;
   --heading-1: Gellix, sans-serif;
   --heading-2: Gellix, sans-serif;
   --heading-3: Gellix, sans-serif;
   --heading-4: Gellix, sans-serif;
   --heading-5: Gellix, sans-serif;
   --primary-1200: #151623;
   --primary-110: #2b333d;
   --primary-80: #044d6e;
   --secondary-1200: #f97d02;
   --secondary-90: #ffb361;
   --neutral-95: #222;
 }

 .act-property img {
   max-width: 100%;
   display: inline-block;
 }

 .act-property .section.max-width-1440px {
   z-index: 1000;
   max-width: 90%;
   display: block;
   position: static;
 }

 .act-property .centered {
   color: var(--neutral-100);
   text-align: center;
   letter-spacing: 0;
   text-transform: none;
   font-family:
     Crimson Text,
     sans-serif;
   font-size: 44px;
   font-weight: 600;
 }

 .act-property .wrapper-half {
   width: 100%;
   max-width: 100%;
   min-height: 1px;
   padding-left: 0;
   padding-right: 0;
   position: relative;
 }

 .act-property .space-small {
   min-height: 30px;
 }

 .act-property .space-semi {
   min-height: 60px;
 }

 .act-property .nav-menu-link:focus-visible {
   outline-offset: 0px;
   color: var(--secondary-120);
   border-radius: 4px;
   outline: 2px solid #0050bd;
 }

 .act-property .background-primary {
   background-color: var(--secondary-120);
   color: var(--black-footer-bottom);
 }

 .act-property .background-primary:hover {
   background-color: var(--neutral-00);
   color: var(--black-footer-bottom);
 }

 .act-property .main-wrapper {
   overflow: hidden;
 }

 .act-property .space-mid {
   min-height: 90px;
 }

 .act-property .description-max-width {
   color: #898989;
   text-align: center;
   max-width: 744px;
   margin-left: auto;
   margin-right: auto;
   font-family: Outfit, sans-serif;
   font-size: 19px;
   font-weight: 400;
 }

 .act-property .title-wrapper {
   grid-row-gap: 15px;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   width: 60%;
   margin-left: auto;
   margin-right: auto;
   padding-left: 15px;
   padding-right: 15px;
   display: flex;
 }

 .act-property .listings-cms-wrapper {
   flex-flow: wrap;
   justify-content: flex-start;
   width: 100%;
   max-width: 1440px;
   margin-left: auto;
   margin-right: auto;
   display: flex;
 }

 .act-property .listings-cms-wrapper.row-gap {
   grid-column-gap: 24px;
   grid-row-gap: 32px;
   grid-template-rows: auto auto auto auto;
   grid-template-columns: 1fr 1fr 1fr;
   grid-auto-columns: 1fr;
   display: grid;
 }

 .act-property .listings-cms-wrapper.row-gap.max-width-1920 {
   grid-template-columns: 1fr 1fr 1fr 1fr;
 }

 .act-property .card-listing-content {
   border-radius: 8px;
   flex-direction: column;
   width: 100%;
   margin-top: 0;
   margin-bottom: 0;
   display: flex;
   position: relative;
   overflow: visible;
 }

 .act-property .listings-menu-link:focus-visible {
   outline-offset: 0px;
   color: #0050bd;
   border-radius: 4px;
   outline: 2px solid #0050bd;
 }

 .act-property .icon-main {
   max-width: 96px;
   max-height: 96px;
   margin-bottom: 7.5px;
   position: static;
   top: -10px;
 }

 .act-property .max-width-1440px {
   align-self: center;
   width: 100%;
   max-width: 1440px;
   margin-left: auto;
   margin-right: auto;
   overflow: hidden;
 }

 .act-property .text-span {
   color: var(--secondary-120);
   -webkit-text-stroke-color: #d7a461;
   font-family:
     Crimson Text,
     sans-serif;
   font-size: 72px;
   font-weight: 400;
 }

 .act-property .text-span.font-size-40px {
   font-family:
     Crimson Text,
     sans-serif;
   font-size: 44px;
   font-weight: 600;
 }

 .act-property .heading-9 {
   color: var(--secondary-120);
   letter-spacing: 3px;
   text-transform: none;
   margin-bottom: 0;
   font-family:
     Crimson Text,
     sans-serif;
   font-size: 22px;
   font-weight: 600;
 }

 .act-property .bedroom {
   grid-column-gap: 8px;
   flex: 0 auto;
   justify-content: flex-start;
   align-items: center;
   text-decoration: none;
   display: flex;
 }

 .act-property .vectors-wrapper-2 {
   object-fit: cover;
   justify-content: center;
   align-items: center;
   width: 32px;
   height: 32px;
   text-decoration: none;
   display: flex;
 }

 .act-property .text-block-3 {
   font-family: Outfit, sans-serif;
   font-size: 0.875rem;
   font-weight: 400;
 }

 .act-property .website {
   grid-row-gap: 10px;
   border: 3px solid #d7a461;
   border-radius: 8px;
   flex-direction: column;
   justify-content: flex-start;
   align-items: flex-start;
   text-decoration: none;
   display: flex;
   position: relative;
 }

 .act-property .website.card.exclusive-property {
   border-width: 0;
   border-color: var(--secondary-120);
   border-radius: 12px;
   height: 488px;
 }

 .act-property .website .card .exclusive-property:hover {
   border-color: var(--secondary-120);
   border-radius: 18px;
 }

 .act-property .vectors-wrapper-4 {
   object-fit: cover;
   border: 0 solid #000;
   border-radius: 8px;
   flex: 0 auto;
   justify-content: center;
   align-items: center;
   height: 496px;
   text-decoration: none;
   display: flex;

 }

 .act-property .info {
   z-index: 4;
   grid-row-gap: 8px;
   flex-direction: column;
   justify-content: flex-start;
   align-items: flex-start;
   text-decoration: none;
   display: flex;
   position: absolute;
   top: 325px;
   left: 16px;
 }

 .act-property .text-3 {
   color: #fff;
   text-align: left;
   white-space: nowrap;
   width: 100%;
   margin-top: 0;
   margin-bottom: 0;
   font-family: Outfit, sans-serif;
   font-size: 20px;
   font-weight: 500;
   line-height: 32px;
   text-decoration: none;
   overflow: hidden;
 }

 .act-property .text-4 {
   color: var(--secondary-100);
   text-align: center;
   margin-top: 0;
   margin-bottom: 0;
   font-family: Outfit, sans-serif;
   font-size: 20px;
   font-weight: 700;
   line-height: 24px;
   text-decoration: none;
 }

 .act-property .projects-overlay {
   z-index: 1;
   background-image: linear-gradient(to bottom,
       #fff0 33%,
       var(--primary-100) 71%);
   opacity: 0.85;
   cursor: pointer;
   border-radius: 12px;
   justify-content: center;
   align-items: center;
   width: 100%;
   height: auto;
   transition: background-color 0.2s;
   position: absolute;
   inset: 0%;
 }

 .act-property .projects-overlay:hover {
   background-image:
     linear-gradient(#e3af5ad6, #fff0), linear-gradient(#fff0 17%, #000 89%);
 }

 .act-property .project-feature-text {
   color: var(--neutral-00);
   margin-top: 0;
   margin-bottom: 0;
   font-family: Gellix, sans-serif;
   font-size: 17px;
   font-weight: 500;
   line-height: 16px;
   text-decoration: none;
 }

 .act-property .project-price-wrapper {
   grid-column-gap: 8px;
   grid-row-gap: 8px;
   display: flex;
 }

 .act-property .project-badge {
   background-color: #252c41;
   color: var(--neutral-00);
   text-align: center;
   text-transform: uppercase;
   white-space: nowrap;
   border-radius: 4px;
   justify-content: center;
   align-self: center;
   align-items: center;
   padding: 10px 12px;
   font-family: Gellix, sans-serif;
   font-size: 0.7rem;
   font-weight: 300;
   line-height: 1;
   transition:
     transform 0.4s,
     border-color 0.4s,
     background-color 0.4s;
   display: flex;
   position: absolute;
   inset: 3% auto auto 18px;
   box-shadow: 0 2px 5px #0003;
 }

 .act-property .project-badge:hover {
   color: #eee;
 }

 .act-property .filters1_toggle-button-checkbox:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 4px;
   outline-width: 2px;
   outline-style: solid;
 }

 .act-property .filters1_rangeslider1-handle:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 0px;
   outline-width: 0;
   outline-style: solid;
 }

 .act-property .filters1_rangeslider2-handle-left:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 0px;
   outline-width: 0;
   outline-style: solid;
 }

 .act-property .filters1_rangeslider2-handle-right:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 0px;
   outline-width: 0;
   outline-style: solid;
 }

 .act-property .filters2_rangeslider1-handle:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 0px;
   outline-width: 0;
   outline-style: solid;
 }

 .act-property .filters2_toggle-button-checkbox:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 4px;
   outline-width: 2px;
   outline-style: solid;
 }

 .act-property .filters2_rangeslider2-handle-left:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 0px;
   outline-width: 0;
   outline-style: solid;
 }

 .act-property .filters2_rangeslider2-handle-right:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 0px;
   outline-width: 0;
   outline-style: solid;
 }

 .act-property .vproject-features {
   grid-column-gap: 16px;
   flex-flow: column;
   flex: 0 auto;
   justify-content: flex-start;
   align-items: flex-start;
   text-decoration: none;
   display: flex;
 }

 .act-property .div-block-27 {
   grid-column-gap: 8px;
   grid-row-gap: 8px;
   flex-flow: row;
   display: flex;
 }

 .act-property .div-block-28 {
   grid-column-gap: 8px;
   grid-row-gap: 8px;
   display: flex;
 }

 @media screen and (min-width: 1280px) {
   .act-property .body {
     background-color: var(--neutral-000);
   }

   .act-property .title-wrapper {
     justify-content: center;
     align-items: flex-start;
     width: 100%;
   }

   .act-property .listings-cms-wrapper.row-gap {
     grid-template-columns: 1fr 1fr 1fr 1fr;
   }

   .act-property .listings-cms-wrapper.row-gap.max-width-1920 {
     max-width: 1600px;
   }

   .act-property .website.card.exclusive-property {
     height: 496px;
   }

   .act-property .info {
     left: 20px;
   }

   .act-property .text-3 {
     width: 264px;
   }
 }

 @media screen and (min-width: 1920px) {
   .act-property .title-wrapper {
     justify-content: center;
     align-items: center;
   }

   .act-property .text-span {
     font-family:
       Crimson Text,
       sans-serif;
     font-size: 44px;
   }
 }

 @media screen and (max-width: 991px) {
   a:hover {
     color: var(--neutral-00);
   }

   .act-property .body {
     overflow: visible;
   }

   .act-property .wrapper-half {
     max-width: 100%;
   }

   .act-property .title-wrapper {
     width: 90%;
   }

   .act-property .listings-cms-wrapper {
     justify-content: center;
   }

   .act-property .listings-cms-wrapper.row-gap {
     grid-template-columns: 1fr 1fr;
     align-items: center;
   }

   .act-property .listings-cms-wrapper.row-gap.max-width-1920 {
     grid-template-columns: 1fr 1fr;
   }

   .act-property .card-listing-content {
     max-height: 100%;
   }

   .act-property .text-span.font-size-40px {
     font-size: 40px;
   }

   .act-property .website.card.exclusive-property,
   .vectors-wrapper-4 {
     height: 424px;
   }

   .act-property .info {
     top: 259px;
     left: 15px;
   }

   .act-property .projects-overlay {
     flex-direction: column;
     justify-content: center;
     align-items: center;
     display: flex;
   }
 }

 @media screen and (max-width: 767px) {
   .act-property .wrapper-half {
     max-width: 100%;
   }

   .act-property .description-max-width {
     font-size: 18px;
   }

   .act-property .listings-cms-wrapper {
     justify-content: center;
   }

   .act-property .listings-cms-wrapper.row-gap {
     grid-template-columns: 1fr;
     justify-items: stretch;
     padding-left: 16px;
     padding-right: 16px;
   }

   .act-property .listings-cms-wrapper.row-gap.max-width-1920 {
     grid-template-columns: 1fr;
   }

   .act-property .max-width-1440px {
     height: 100%;
     max-height: 100%;
     overflow: visible;
   }

   .act-property .website.card.exclusive-property,
   .act-property .vectors-wrapper-4 {
     height: 344px;
   }

   .act-property .info {
     top: 184px;
     left: 32px;
   }
 }

 @media screen and (max-width: 479px) {
   .act-property h2 {
     font-size: 30px;
   }

   .act-property h5 {
     font-size: 21px;
   }

   .act-property a {
     overflow: visible;
   }

   .act-property .button-secondary.background-primary {
     width: 100%;
   }

   .act-property .section {
     overflow: hidden;
   }

   .act-property .section.max-width-1440px {
     max-width: 100%;
   }

   .act-property .container {
     max-width: 100%;
     padding-left: 16px;
     padding-right: 16px;
   }

   .act-property .centered {
     font-size: 30px;
   }

   .act-property .wrapper-half {
     min-height: auto;
   }

   .act-property .main-wrapper {
     width: 100%;
   }

   .act-property .space-mid {
     min-height: 60px;
   }

   .act-property .description-max-width {
     max-width: 384px;
     font-size: 16px;
   }

   .act-property .title-wrapper {
     width: 100%;
     padding-left: 16px;
     padding-right: 16px;
   }

   .act-property .listings-cms-wrapper.row-gap {
     grid-template-columns: 1fr;
     place-items: center stretch;
     padding-left: 0;
     padding-right: 0;
   }

   .act-property .text-span {
     font-size: 44px;
   }

   .act-property .text-span.font-size-40px {
     font-size: 30px;
   }

   .act-property .heading-9 {
     text-align: left;
     font-size: 20px;
   }

   .act-property .heading-9.centered {
     text-align: center;
     font-size: 18px;
   }

   .act-property .info {
     top: 184px;
     left: 18px;
   }

   .act-property .text-3 {
     white-space: nowrap;
     word-break: normal;
     overflow-wrap: normal;
     width: 88%;
     font-size: 20px;
     overflow: hidden;
   }

   .act-property .project-feature-text {
     font-size: 14px;
   }

   .act-property .vproject-features {
     flex-direction: column;
   }
 }

 /* custom footer */

 .website-22-copy a {
   color: var(--neutral-00);
   cursor: pointer;
   font-size: 1.1rem;
   font-weight: 300;
   line-height: 1.7em;
   text-decoration: none;
   transition: color 0.4s;
 }

 .website-22-copy a:hover {
   color: #0fca98;
 }

 .act-box {
   /* position: absolute; */
   left: 0px;
   top: -4px;
   width: 58px;
   height: 58px;
   line-height: 58px;
   font-size: 26px;
   color: #fff;
   text-align: center;
   border-radius: 50%;
   background-color: #0fca98;
   margin-bottom: 10px;
 }

 /* a:hover {
    color: var(--secondary-120);
} */
 img {
   max-width: 100%;
   display: inline-block;
 }

 .nav-menu-link:focus-visible {
   outline-offset: 0px;
   color: var(--secondary-120);
   border-radius: 4px;
   outline: 2px solid #0050bd;
 }

 .invert {
   filter: invert();
 }

 .icon-listing {
   opacity: 0.7;
   object-fit: contain;
   width: 24px;
   height: 24px;
 }

 .icon-listing.small-size {
   width: 16px;
 }

 .listings-menu-link:focus-visible {
   outline-offset: 0px;
   color: #0050bd;
   border-radius: 4px;
   outline: 2px solid #0050bd;
 }

 .button {
   background-color: var(--neutral-00);
   color: var(--primary-120);
   text-align: center;
   letter-spacing: 0;
   text-transform: capitalize;
   white-space: nowrap;
   border-radius: 8px;
   justify-content: center;
   align-items: center;
   margin: 0.3125rem 1px;
   padding: 12px 30px;
   font-family: Gellix, sans-serif;
   font-size: 16px;
   font-weight: 600;
   line-height: 1.42857;
   text-decoration: none;
   transition-property: background-color;
   display: block;
   position: relative;
   overflow: hidden;
 }

 .button:hover {
   color: var(--black-footer-bottom);
 }

 .text-span-2 {
   color: #0fca98;
   font-weight: 800;
 }

 .filters1_toggle-button-checkbox:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 4px;
   outline-width: 2px;
   outline-style: solid;
 }

 .filters1_rangeslider1-handle:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 0px;
   outline-width: 0;
   outline-style: solid;
 }

 .filters1_rangeslider2-handle-left:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 0px;
   outline-width: 0;
   outline-style: solid;
 }

 .filters1_rangeslider2-handle-right:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 0px;
   outline-width: 0;
   outline-style: solid;
 }

 .filters2_rangeslider1-handle:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 0px;
   outline-width: 0;
   outline-style: solid;
 }

 .filters2_toggle-button-checkbox:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 4px;
   outline-width: 2px;
   outline-style: solid;
 }

 .filters2_rangeslider2-handle-left:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 0px;
   outline-width: 0;
   outline-style: solid;
 }

 .filters2_rangeslider2-handle-right:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 0px;
   outline-width: 0;
   outline-style: solid;
 }

 .frame-313 {
   grid-column-gap: 32px;
   flex: 0 auto;
   justify-content: flex-start;
   align-items: center;
   text-decoration: none;
   display: flex;
 }

 .vectors-wrapper-38 {
   border: 2px solid var(--secondary-120);
   object-fit: cover;
   border-radius: 32px;
   justify-content: center;
   align-items: center;
   width: 72px;
   height: 88px;
   text-decoration: none;
   display: flex;
 }

 .text-43 {
   color: #4c4c4c;
   margin-top: 0;
   margin-bottom: 0;
   font-size: 18px;
   font-weight: 600;
   line-height: 32px;
   text-decoration: none;
 }

 .text-43.text-white {
   color: #d4d4d4;
   width: 58.1362%;
   font-family: Gellix, sans-serif;
 }

 .vectors-wrapper-39 {
   justify-content: center;
   align-items: center;
   width: 0.00000349691px;
   height: 64px;
   text-decoration: none;
   display: flex;
 }

 .frame-180 {
   grid-column-gap: 8px;
   flex: 0 auto;
   justify-content: flex-start;
   align-items: flex-start;
   text-decoration: none;
   display: flex;
 }

 .website-23 {
   grid-column-gap: 8px;
   border: 1px solid #53a019;
   border-radius: 64px;
   flex: 0 auto;
   justify-content: flex-start;
   align-items: center;
   height: 32px;
   padding: 12px 16px;
   text-decoration: none;
   display: flex;
 }

 .website-23.button {
   border-width: 0;
   border-color: var(--neutral-00);
   background-color: #ffffff1a;
   height: 40px;
   text-decoration: none;
 }

 .frame-314-copy {
   grid-column-gap: 24px;
   flex: 0 auto;
   justify-content: flex-start;
   align-items: center;
   text-decoration: none;
   display: none;
 }

 .website-22-copy {
   grid-row-gap: 10px;
   background-color: #fff;
   border: 1px solid #e7e7e7;
   flex-direction: column;
   justify-content: flex-start;
   align-items: flex-start;
   padding: 16px 240px;
   text-decoration: none;
   display: flex;
 }

 .website-22-copy.sticky-bar-copy {
   z-index: 1000;
   border-width: 4px 0 0;
   border-color: #0fca98;
   background-color: #252c41;
   padding: 0 160px 8px;
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
 }

 .frame-179-copy {
   grid-column-gap: 0px;
   flex: 0 auto;
   justify-content: flex-start;
   align-items: center;
   text-decoration: none;
   display: flex;
 }

 .frame-176-copy {
   grid-column-gap: 64px;
   grid-row-gap: 4px;
   flex-flow: row;
   justify-content: flex-start;
   align-items: center;
   text-decoration: none;
   display: flex;
 }

 .text-44-copy {
   color: #d4d4d4;
   margin-top: 0;
   margin-bottom: 0;
   font-family: Gellix, sans-serif;
   font-size: 16px;
   font-weight: 500;
   line-height: 24px;
   text-decoration: none;
 }

 .link-4-copy {
   font-size: 0.9rem;
 }

 .div-block-17-copy {
   display: none;
 }

 @media screen and (min-width: 1920px) {
   .website-22-copy.sticky-bar-copy {
     padding-left: 240px;
     padding-right: 240px;
   }

   .frame-179-copy {
     grid-column-gap: 56px;
     justify-content: flex-start;
     width: 100%;
   }
 }

 @media screen and (max-width: 1400px) {
   a:hover {
     color: var(--neutral-00);
   }

   .icon-listing {
     opacity: 1;
   }

   .icon-listing.invert {
     opacity: 1;
     filter: invert();
     max-width: 100%;
     display: inline-block;
   }

   .icon-listing.small-size {
     width: 24px;
   }

   .link-block-2 {
     background-color: #ffffff26;
     border-radius: 8px;
     width: 56px;
     height: 48px;
     padding: 8px 16px;
   }

   .text-span-2 {
     color: var(--secondary-120);
   }

   .frame-314-copy {
     display: none;
   }

   .website-22-copy.sticky-bar-copy {
     justify-content: flex-start;
     align-items: center;
     padding-left: 16px;
     padding-right: 16px;
     display: flex;
   }

   .frame-179-copy {
     grid-column-gap: 0px;
   }

   .frame-176-copy {
     grid-column-gap: 0px;
     grid-row-gap: 0px;
     justify-content: flex-start;
     align-items: center;
   }

   .text-44-copy {
     width: 30%;
   }

   .div-block-17-copy {
     grid-column-gap: 16px;
     grid-row-gap: 16px;
     display: none;
   }
 }

 /* 641 */
 @media screen and (max-width: 960px) {
   .link-block-2 {
     background-color: #ffffff26;
   }

   .text-span-2 {
     color: var(--secondary-120);
   }

   .website-22-copy.sticky-bar-copy {
     padding-top: 8px;
   }

   .frame-176-copy {
     flex-flow: column;
   }

   .text-44-copy {
     width: auto;
   }

   .link-4-copy {
     font-size: 0.9rem;
   }

   .div-block-17-copy {
     display: none;
   }
 }

 @media screen and (max-width: 641px) {
   a {
     overflow: visible;
   }

   .icon-listing {
     width: 16px;
     max-width: 80%;
   }

   .icon-listing.invert.small-size {
     max-width: 80%;
   }

   .icon-listing.invert.small-size-copy {
     width: 16px;
     max-width: 80%;
   }

   .icon-listing.small-size {
     width: 20px;
     max-width: 90%;
   }

   .link-block-2 {
     background-color: #ffffff26;
     justify-content: center;
     align-items: center;
     width: 40px;
     height: 40px;
     padding: 4px 8px;
     display: flex;
   }

   .text-span-2 {
     color: var(--secondary-120);
   }

   .text-span-2.text-size-medium-copy {
     font-size: 14px;
   }

   .frame-180 {
     display: none;
   }

   .website-22-copy.sticky-bar-copy {
     padding-top: 0;
     padding-bottom: 0;
   }

   .frame-179-copy {
     justify-content: flex-start;
     align-items: center;
   }

   .frame-176-copy {
     grid-column-gap: 24px;
     grid-row-gap: 0px;
     flex-flow: row;
     justify-content: flex-start;
     align-items: center;
   }

   .text-44-copy {
     text-align: left;
     font-size: 13px;
     line-height: 20px;
   }

   .div-block-17-copy {
     grid-column-gap: 8px;
     grid-row-gap: 8px;
     display: flex;
   }
 }

 /* Contact Section */

 .container-act {
   max-width: 1200px;
   margin: 0 auto;
   text-align: center;
   /* Centrar todo el contenido */
 }

 .act-contact h2 {
   font-size: 2rem;
   color: #333;
   margin-bottom: 10px;
 }

 .act-contact .description {
   color: #777;
   margin-bottom: 20px;
   max-width: 800px;
   /* Limitar el ancho para mejor legibilidad */
   margin-left: auto;
   margin-right: auto;
 }

 .act-contact .contact-cards {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 20px;
   margin-top: 20px;
   justify-content: center;
   /* Centrar las tarjetas en la grilla */
 }

 .act-contact .card {
   background: #fff;
   padding: 20px;
   border-radius: 10px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   text-align: center;
   /* Centrar el texto dentro de la tarjeta */
   display: flex;
   flex-direction: column;
   align-items: center;
   /* Centrar elementos en columna */
 }

 .act-contact .card h3 {
   /* color: #d4a76a; */
   font-size: 1.5rem;
   margin-bottom: 10px;
 }

 /* .act-contact .card p {
    color: #777;
} */

 .act-contact .card a {
   display: block;
   margin-top: 10px;
   color: #222222;
   text-decoration: none;
   font-family: "Mulish", sans-serif;
   font-weight: bold;
 }

 .act-contact .card a:hover {
   color: #0fca98;
 }

 .text-contact {
   color: #0fca98 !important;
   font-weight: bold !important;
 }

 .act-contact .contact-section .content-box .sec-title .upper-text i {
   position: absolute;
   left: 0px;
   top: 5px;
   font-size: 14px;
   line-height: 20px;
 }

 .contact-section .pattern-layer {
   width: 100%;
   height: 100%;
   background-size: cover;
   background-repeat: no-repeat;
 }

 .contact-section .form-inner .form-group input[type="text"],
 .contact-section .form-inner .form-group input[type="email"],
 .contact-section .form-inner .form-group textarea {
   position: relative;
   width: 100%;
   height: 64px;
   border: solid;
   border-width: 2px;
   border-color: rgba(255, 255, 255, 0.3);
   border-radius: 3px;
   font-size: 18px;
   /* color: #fff; */
   padding: 10px 20px;
   background: transparent;
   transition: all 500ms ease;
 }

 .contact-section .form-inner .form-group textarea {
   height: 150px;
   resize: none;
   display: block;
 }

 .contact-section .form-inner .form-group input:focus,
 .contact-section .form-inner .form-group textarea:focus {}

 .contact-section .image-box {
   overflow: hidden;
 }

 .contact-section .image-box img {
   width: 100%;
   height: 500px;
 }

 .contact-section .image-box:before {
   position: absolute;
   top: 0;
   left: -75%;
   z-index: 2;
   display: block;
   content: "";
   width: 50%;
   height: 100%;
   background: -o-linear-gradient(left,
       rgba(255, 255, 255, 0) 0%,
       rgba(255, 255, 255, 0.3) 100%);
   background: -webkit-gradient(linear,
       left top,
       right top,
       from(rgba(255, 255, 255, 0)),
       to(rgba(255, 255, 255, 0.3)));
   background: linear-gradient(to right,
       rgba(255, 255, 255, 0) 0%,
       rgba(255, 255, 255, 0.3) 100%);
   -webkit-transform: skewX(-25deg);
   -ms-transform: skewX(-25deg);
   transform: skewX(-25deg);
   z-index: 1;
 }

 .contact-section .image-box:hover:before {
   -webkit-animation: shine 1s;
   animation: shine 1s;
 }

 @-webkit-keyframes shine {
   100% {
     left: 125%;
   }
 }

 @keyframes shine {
   100% {
     left: 125%;
   }
 }


 @media (min-width: 991px) {
   .col-sm-12-min-991 {
     width: 100%;
   }
 }

 .card-direction {

   /* display: block;
            margin-top: 10px; */
   color: rgb(34, 34, 34);
   font-family: Mulish, sans-serif;
   font-weight: bold;
   /* text-decoration: none; */

 }


 /* jodi  */

 /* act-dev-system */
 .act-dev-system a:active,
 .act-dev-system a:hover {
   outline: 0;
 }

 .act-dev-system img {
   border: 0;
 }

 .act-dev-system input,
 .act-dev-system select {
   color: inherit;
   font: inherit;
   margin: 0;
 }

 .act-dev-system select {
   text-transform: none;
 }

 .act-dev-system input::-moz-focus-inner {
   border: 0;
   padding: 0;
 }

 .act-dev-system input {
   line-height: normal;
 }

 .act-dev-system input[type="radio"] {
   box-sizing: border-box;
   padding: 0;
 }

 .act-dev-system * {
   box-sizing: border-box;
 }

 .act-dev-system html {
   height: 100%;
 }

 .act-dev-system img {
   vertical-align: middle;
   max-width: 100%;
   display: inline-block;
 }

 .act-dev-system .w-inline-block {
   max-width: 100%;
   display: inline-block;
 }

 .act-dev-system .w-button {
   color: #fff;
   line-height: inherit;
   cursor: pointer;
   background-color: #3898ec;
   border: 0;
   border-radius: 0;
   padding: 9px 15px;
   text-decoration: none;
   display: inline-block;
 }

 .act-dev-system input.w-button {
   -webkit-appearance: button;
 }

 .act-dev-system h2 {
   margin-bottom: 10px;
   font-weight: 700;
 }

 .act-dev-system h2 {
   margin-top: 20px;
   font-size: 32px;
   line-height: 36px;
 }

 .act-dev-system .w-form {
   margin: 0 0 15px;
 }

 .act-dev-system .w-form-done {
   text-align: center;
   background-color: #ddd;
   padding: 20px;
   display: none;
 }

 .act-dev-system .w-form-fail {
   background-color: #ffdede;
   margin-top: 10px;
   padding: 10px;
   display: none;
 }

 .act-dev-system label {
   margin-bottom: 5px;
   font-weight: 700;
   display: block;
 }

 .act-dev-system .w-input,
 .act-dev-system .w-select {
   color: #333;
   vertical-align: middle;
   background-color: #fff;
   border: 1px solid #ccc;
   width: 100%;
   height: 38px;
   margin-bottom: 10px;
   padding: 8px 12px;
   font-size: 14px;
   line-height: 1.42857;
   display: block;
 }

 .act-dev-system .w-input:focus,
 .act-dev-system .w-select:focus {
   border-color: #3898ec;
   outline: 0;
 }

 .act-dev-system .w-select {
   background-color: #f3f3f3;
 }

 .act-dev-system .w-form-label {
   cursor: pointer;
   margin-bottom: 0;
   font-weight: 400;
   display: inline-block;
 }

 .act-dev-system .w-radio {
   margin-bottom: 5px;
   padding-left: 20px;
   display: block;
 }

 .act-dev-system .w-radio:before,
 .act-dev-system .w-radio:after {
   content: " ";
   grid-area: 1/1/2/2;
   display: table;
 }

 .act-dev-system .w-radio:after {
   clear: both;
 }

 .act-dev-system .w-radio-input {
   float: left;
   margin: 3px 0 0 -20px;
   line-height: normal;
 }

 .act-dev-system .w-dyn-empty {
   background-color: #ddd;
   padding: 10px;
 }

 .act-dev-system .w-form-formradioinput--inputType-custom {
   border: 1px solid #ccc;
   border-radius: 50%;
   width: 12px;
   height: 12px;
 }

 .act-dev-system h2 {
   text-align: left;
   letter-spacing: 0;
   text-transform: capitalize;
   margin-top: 0;
   margin-bottom: 0;
   font-family: Gilda Display, sans-serif;
   font-size: 45px;
   font-weight: 400;
   line-height: 1.5em;
 }

 .act-dev-system img {
   max-width: 100%;
   display: inline-block;
 }

 .act-dev-system label {
   color: var(--secondary-120);
   letter-spacing: 6px;
   text-transform: uppercase;
   margin-bottom: 5px;
   font-family: Barlow Condensed, sans-serif;
   font-size: 15px;
   font-weight: 400;
   line-height: 1.7;
   display: block;
 }

 .act-dev-system .button-secondary {
   background-color: var(--neutral-00);
   color: var(--primary-120);
   text-align: center;
   letter-spacing: 0;
   text-transform: uppercase;
   white-space: nowrap;
   justify-content: center;
   align-items: center;
   margin: 0.3125rem 1px;
   padding: 12px 30px;
   font-family: Barlow Condensed, sans-serif;
   font-size: 17px;
   font-weight: 400;
   line-height: 1.42857;
   text-decoration: none;
   transition: background-color 0.2s;
   display: inline-block;
 }

 .act-dev-system .button-secondary:hover {
   background-color: var(--secondary-120);
   color: var(--black-footer-bottom);
 }

 .act-dev-system .button-secondary.background-primary {
   color: var(--neutral-00);
   text-transform: capitalize;
   background-color: #d7a461;
   border-radius: 8px;
   padding-top: 12px;
   font-family: Outfit, sans-serif;
   font-weight: 500;
   transition: background-color 0.2s, background-color 0.2s;
 }

 .act-dev-system .button-secondary.background-primary:hover {
   color: var(--neutral-00);
   background-color: #9b651f;
 }

 .act-dev-system .body {
   background-color: var(--neutral-00);
 }

 .act-dev-system .wrapper-half {
   width: 100%;
   max-width: 100%;
   min-height: 1px;
   padding-left: 0;
   padding-right: 0;
   position: relative;
 }

 .act-dev-system .space-small {
   min-height: 30px;
 }

 .act-dev-system .nav-menu-link:focus-visible {
   outline-offset: 0px;
   color: var(--secondary-120);
   border-radius: 4px;
   outline: 2px solid #0050bd;
 }

 .act-dev-system .background-primary {
   background-color: var(--secondary-120);
   color: var(--black-footer-bottom);
 }

 .act-dev-system .background-primary:hover {
   background-color: var(--neutral-00);
   color: var(--black-footer-bottom);
 }

 .act-dev-system .invert {
   filter: invert();
 }

 .act-dev-system .main-wrapper-no-overflow {
   width: 100%;
   display: block;
 }

 .act-dev-system .listing-type-title {
   text-align: left;
 }

 .act-dev-system .listing-type-title.centered-on-mobile {
   color: var(--neutral-100);
   text-transform: none;
   font-family: Crimson Text, sans-serif;
   font-weight: 600;
 }

 .act-dev-system .listings-cms-wrapper {
   flex-flow: wrap;
   justify-content: flex-start;
   width: 100%;
   max-width: 1440px;
   margin-left: auto;
   margin-right: auto;
   display: flex;
 }

 .act-dev-system .listings-cms-wrapper.row-gap {
   grid-column-gap: 24px;
   grid-row-gap: 32px;
   grid-template-rows: auto auto auto auto;
   grid-template-columns: 1fr 1fr;
   grid-auto-columns: 1fr;
   display: grid;
 }

 .act-dev-system .card-listing-content {
   border-radius: 8px;
   flex-direction: column;
   width: 100%;
   margin-top: 0;
   margin-bottom: 0;
   display: flex;
   position: relative;
   overflow: visible;
 }

 .act-dev-system .listings-menu-link:focus-visible {
   outline-offset: 0px;
   color: #0050bd;
   border-radius: 4px;
   outline: 2px solid #0050bd;
 }

 .act-dev-system .centered-on-mobile {
   color: #fff;
 }

 .act-dev-system .padding-section-large {
   padding-top: 2rem;
   padding-bottom: 7rem;
 }

 .act-dev-system .margin-bottom,
 .act-dev-system .margin-bottom.margin-xxlarge,
 .act-dev-system .margin-bottom.margin-small {
   margin-top: 0;
   margin-left: 0;
   margin-right: 0;
 }

 .act-dev-system .padding-global {
   padding-left: 3%;
   padding-right: 3%;
 }

 .act-dev-system .max-width-large {
   width: 100%;
   max-width: 48rem;
 }

 .act-dev-system .container-large {
   width: 100%;
   max-width: 80rem;
   margin-left: auto;
   margin-right: auto;
 }

 .act-dev-system .text-span {
   color: var(--secondary-120);
   -webkit-text-stroke-color: #d7a461;
   font-family: Crimson Text, sans-serif;
   font-size: 72px;
   font-weight: 400;
 }

 .act-dev-system .text-span.font-size-40px {
   font-family: Crimson Text, sans-serif;
   font-size: 44px;
   font-weight: 600;
 }

 .act-dev-system .c-metros_input {
   display: none;
 }

 .act-dev-system .c-text-1 {
   color: var(--neutral-1000);
   font-family: Outfit, sans-serif;
   font-size: 18px;
   font-weight: 500;
   line-height: 1.2;
 }

 .act-dev-system .c-title-wrapper {
   margin-bottom: 8px;
 }

 .act-dev-system .c-title-wrapper.cc-blue {
   color: #231575;
   font-weight: 600;
 }

 .act-dev-system .c-text-2.cc-inline {
   color: #bb7e2f;
   font-family: Outfit, sans-serif;
   font-size: 16px;
   font-weight: 600;
   display: inline-block;
 }

 .act-dev-system .c-metros_values {
   justify-content: space-between;
   width: 100%;
   margin-top: 20px;
   display: flex;
 }

 .act-dev-system .c-rooms_wrapper {
   display: flex;
 }

 .act-dev-system .c-filtro {
   margin-bottom: 32px;
   padding-top: 16px;
   display: block;
 }

 .act-dev-system .c-provincia_collection {
   display: none;
 }

 .act-dev-system .c-radio {
   border: 1px solid #ccc;
   border-left-width: 0.5px;
   border-right-style: none;
   margin-bottom: 0;
   padding: 5px 14px;
   position: relative;
 }

 .act-dev-system .c-radio.cc-last {
   border-right-style: solid;
   border-top-right-radius: 12px;
   border-bottom-right-radius: 12px;
 }

 .act-dev-system .c-radio.cc-first {
   border-top-left-radius: 8px;
   border-bottom-left-radius: 8px;
 }

 .act-dev-system .c-select {
   color: var(--neutral-50);
   -webkit-text-stroke-color: var(--primary-90);
   background-color: #4e4e4e12;
   border: 1px solid #fff6;
   border-radius: 12px;
   height: 40px;
   font-family: Outfit, sans-serif;
   font-size: 16px;
   font-weight: 400;
 }

 .act-dev-system .c-select:active,
 .act-dev-system .c-select:focus {
   color: var(--secondary-130);
 }

 .act-dev-system .c-metros_wrapper {
   flex-direction: column;
   justify-content: space-between;
   width: 252.297px;
   padding-left: 16px;
   display: flex;
 }

 .act-dev-system .c-metros_track {
   background-color: #64646430;
   height: 4px;
   position: relative;
 }

 .act-dev-system .c-checkbox_rooms {
   border-style: none;
   border-width: 0;
   border-radius: 0 0% 0%;
   width: 100%;
   height: 100%;
   margin-top: 0;
   margin-left: 0;
   font-family: Outfit, sans-serif;
   font-weight: 500;
   transition: all 0.2s;
   position: absolute;
   inset: 0%;
   box-shadow: 0 0 #000;
 }

 .act-dev-system .c-track_handle {
   z-index: 1;
   background-color: var(--secondary-120);
   color: #00000080;
   cursor: grab;
   border: 2.56px solid #fff;
   border-radius: 12px;
   min-width: 35px;
   padding: 6px 5px 5px;
   display: inline-block;
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
 }

 .act-dev-system .c-track_handle:active {
   background-color: var(--secondary-130);
   color: #fff;
 }

 .act-dev-system .c-metros {
   margin-top: 35px;
 }

 .act-dev-system .c-checkbox_text {
   z-index: 1;
   color: var(--neutral-1000);
   font-family: Outfit, sans-serif;
   font-weight: 600;
   position: relative;
 }

 .act-dev-system .c-track_amount {
   background-color: var(--secondary-100);
   width: 40%;
   height: 100%;
   position: absolute;
 }

 .act-dev-system .text-block {
   color: var(--neutral-00);
   font-family: Gellix, sans-serif;
   font-size: 13px;
   font-weight: 700;
 }

 .act-dev-system .tab {
   color: var(--neutral-00);
   text-align: center;
   -webkit-text-stroke-color: var(--secondary-120);
   text-transform: uppercase;
   background-color: #ffffff1a;
   border: 2px solid #e3af5a80;
   border-radius: 8px;
   justify-content: center;
   width: auto;
   padding: 8px 16px;
   font-family: Gellix, sans-serif;
   font-size: 0.9rem;
   display: block;
 }

 .act-dev-system .tab.w--current {
   color: var(--secondary-120);
   background-color: #e3af5a66;
   justify-content: center;
 }

 .act-dev-system .tab.outline {
   color: var(--secondary-120);
   text-align: left;
   background-color: #e3af5a26;
   font-family: Outfit, sans-serif;
   font-size: 0.9rem;
   font-weight: 500;
 }

 .act-dev-system .tab.outline.w--current {
   background-color: var(--secondary-120);
   color: var(--neutral-00);
   font-family: Outfit, sans-serif;
   display: block;
 }

 .act-dev-system .collection-item-3 {
   display: block;
 }

 .act-dev-system .collection-list-wrapper-6 {
   width: 100%;
   margin-left: 0;
 }

 .act-dev-system .bedroom {
   grid-column-gap: 8px;
   flex: 0 auto;
   justify-content: flex-start;
   align-items: center;
   text-decoration: none;
   display: flex;
 }

 .act-dev-system .vectors-wrapper-2 {
   object-fit: cover;
   justify-content: center;
   align-items: center;
   width: 32px;
   height: 32px;
   text-decoration: none;
   display: flex;
 }

 .act-dev-system .text-block-3 {
   font-family: Outfit, sans-serif;
   font-size: 0.875rem;
   font-weight: 400;
 }

 .act-dev-system .website {
   grid-row-gap: 10px;
   border: 3px solid #d7a461;
   border-radius: 8px;
   flex-direction: column;
   justify-content: flex-start;
   align-items: flex-start;
   text-decoration: none;
   display: flex;
   position: relative;
 }

 .act-dev-system .website.card.exclusive-property {
   border-width: 0;
   border-color: var(--secondary-120);
   border-radius: 12px;
   height: 488px;
   position: relative;
   overflow: hidden;
   border-radius: 12px;
 }

 .act-dev-system .website.card.exclusive-property:hover {
   border-color: var(--secondary-120);
   border-radius: 18px;
 }

 .act-dev-system .vectors-wrapper-4 {
   object-fit: cover;
   border: 0 solid #000;
   border-radius: 8px;
   flex: 0 auto;
   justify-content: center;
   align-items: center;
   height: 496px;
   text-decoration: none;
   display: flex;
   width: 100%;
 }

 .act-dev-system .info {
   z-index: 4;
   grid-row-gap: 8px;
   flex-direction: column;
   justify-content: flex-start;
   align-items: flex-start;
   text-decoration: none;
   display: flex;
   position: absolute;
   top: 325px;
   left: 16px;
 }

 .act-dev-system .text-3 {
   color: #fff;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 1;
   overflow: hidden;
   margin-top: 0;
   margin-bottom: 0;
   font-family: Outfit, sans-serif;
   font-size: 20px;
   font-weight: 500;
   line-height: 32px;
   text-decoration: none;
   width: 100%;
 }

 .act-dev-system .text-4 {
   color: #0fca98 !important;
   text-align: center;
   margin-top: 0;
   margin-bottom: 0;
   font-family: Outfit, sans-serif;
   font-size: 20px;
   font-weight: 700;
   line-height: 24px;
   text-decoration: none;
   font-weight: bold;
 }

 .act-dev-system .projects-overlay {
   z-index: 1;
   background-image: linear-gradient(to bottom,
       #fff0 33%,
       var(--primary-100) 71%);
   opacity: 0.85;
   cursor: pointer;
   border-radius: 12px;
   justify-content: center;
   align-items: center;
   width: 100%;
   height: auto;
   transition: background-color 0.2s;
   position: absolute;
   inset: 0%;
 }

 .act-dev-system .projects-overlay:hover {
   background-image: linear-gradient(#e3af5ad6, #fff0),
     linear-gradient(#fff0 17%, #000 89%);
 }

 .act-dev-system .project-feature-text {
   color: var(--neutral-00);
   margin-top: 0;
   margin-bottom: 0;
   font-family: Gellix, sans-serif;
   font-size: 17px;
   font-weight: 500;
   line-height: 16px;
   text-decoration: none;
 }

 .act-dev-system .project-price-wrapper {
   grid-column-gap: 8px;
   grid-row-gap: 8px;
   display: flex;
 }

 .act-dev-system .project-badge {
   background-color: #252c41;
   color: var(--neutral-00);
   text-align: center;
   text-transform: uppercase;
   white-space: nowrap;
   border-radius: 4px;
   justify-content: center;
   align-self: center;
   align-items: center;
   padding: 10px 12px;
   font-family: Gellix, sans-serif;
   font-size: 0.7rem;
   font-weight: 300;
   line-height: 1;
   transition: transform 0.4s, border-color 0.4s, background-color 0.4s;
   display: flex;
   position: absolute;
   inset: 3% auto auto 18px;
   box-shadow: 0 2px 5px #0003;
 }

 .act-dev-system .project-badge:hover {
   color: #eee;
 }

 .act-dev-system .filters1_toggle-button-checkbox:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 4px;
   outline-width: 2px;
   outline-style: solid;
 }

 .act-dev-system .filters1_rangeslider1-handle:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 0px;
   outline-width: 0;
   outline-style: solid;
 }

 .act-dev-system .icon-1x1-small {
   width: 2rem;
   height: 2rem;
 }

 .act-dev-system .button-icon-left {
   margin-right: 0.5rem;
 }

 .act-dev-system .filters1_rangeslider2-handle-left:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 0px;
   outline-width: 0;
   outline-style: solid;
 }

 .act-dev-system .filters1_rangeslider2-handle-right:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 0px;
   outline-width: 0;
   outline-style: solid;
 }

 .act-dev-system .button-5 {
   border: 1px solid var(--\<unknown\|relume-variable-color-neutral-1\>);
   background-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   color: var(--\<unknown\|relume-variable-color-neutral-2\>);
   text-align: center;
   padding: 0.75rem 1.5rem;
   text-decoration: none;
 }

 .act-dev-system .button-5.is-link {
   color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   background-color: #0000;
   border-style: none;
   padding: 0.25rem 0;
   line-height: 1;
   text-decoration: none;
 }

 .act-dev-system .filters2_tablet-modal-close-button {
   display: none;
 }

 .act-dev-system .filters2_scroll-wrapper {
   height: 80vh;
   padding-bottom: 4rem;
   padding-right: 1rem;
   overflow: scroll;
 }

 .act-dev-system .filters2_rangeslider1-handle:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 0px;
   outline-width: 0;
   outline-style: solid;
 }

 .act-dev-system .filters2_form {
   background-color: #0000;
   width: auto;
 }

 .act-dev-system .filters2_results-wrapper {
   margin-bottom: 1.5rem;
   display: flex;
 }

 .act-dev-system .filters2_layout {
   grid-column-gap: 1.75rem;
   grid-row-gap: 3rem;
   grid-template-rows: auto;
   grid-template-columns: max-content 1fr;
   grid-auto-columns: 1fr;
   align-items: start;
   display: grid;
 }

 .act-dev-system .filters2_form-header {
   justify-content: space-between;
   align-items: center;
   margin-bottom: 1.5rem;
   padding-right: 1rem;
   display: flex;
 }

 .act-dev-system .filters2_toggle-button-checkbox:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 4px;
   outline-width: 2px;
   outline-style: solid;
 }

 .act-dev-system .filters2_heading {
   color: var(--neutral-100);
   font-family: Outfit, sans-serif;
   font-size: 1.5rem;
   font-weight: 700;
   line-height: 1.4;
 }

 .act-dev-system .filters2_tablet-filters-button {
   border: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
   color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   text-align: center;
   background-color: #0000;
   padding: 0.75rem 1.5rem;
   display: none;
 }

 .act-dev-system .filters2_category-list {
   margin-bottom: 1.5rem;
 }

 .act-dev-system .filters2_tablet-modal-menu {
   display: none;
 }

 .act-dev-system .filters2_filters-wrapper {
   background-color: var(--neutral-00);
   max-width: 19rem;
   position: sticky;
   top: 10vh;
 }

 .act-dev-system .filters2_rangeslider2-handle-left:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 0px;
   outline-width: 0;
   outline-style: solid;
 }

 .act-dev-system .filters2_results-text {
   color: var(--neutral-100);
   font-family: Outfit, sans-serif;
   font-size: 1rem;
   font-weight: 500;
 }

 .act-dev-system .filters2_form-block {
   margin-bottom: 0;
 }

 .act-dev-system .filters2_rangeslider2-handle-right:focus-visible {
   outline-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
   outline-offset: 0px;
   outline-width: 0;
   outline-style: solid;
 }

 .act-dev-system .collection-list-2-copy {
   grid-column-gap: 16px;
   grid-row-gap: 16px;
   grid-template-rows: auto auto auto;
   grid-template-columns: 2fr;
   grid-auto-columns: 1fr;
   width: 100%;
   height: auto;
   display: grid;
 }

 .act-dev-system .clear-button {
   color: var(--secondary-120);
   font-family: Outfit, sans-serif;
   font-weight: 500;
 }

 .act-dev-system .text-span-6,
 .act-dev-system .text-span-7 {
   color: var(--secondary-130);
 }

 .act-dev-system .vproject-features {
   grid-column-gap: 16px;
   flex-flow: column;
   flex: 0 auto;
   justify-content: flex-start;
   align-items: flex-start;
   text-decoration: none;
   display: flex;
 }

 .act-dev-system .div-block-27 {
   grid-column-gap: 8px;
   grid-row-gap: 8px;
   flex-flow: row;
   display: flex;
 }

 .act-dev-system .div-block-28 {
   grid-column-gap: 8px;
   grid-row-gap: 8px;
   display: flex;
 }

 @media screen and (min-width: 1280px) {
   .act-dev-system .body {
     background-color: var(--neutral-000);
   }

   .act-dev-system .listing-type-title.centered-on-mobile {
     color: var(--neutral-100);
     font-family: Crimson Text, sans-serif;
     font-weight: 600;
   }

   .act-dev-system .listings-cms-wrapper.row-gap {
     grid-template-columns: 1fr 1fr 1fr 1fr;
   }

   .act-dev-system .listings-cms-wrapper.row-gap.grid-3-cols {
     grid-template-columns: 1fr 1fr 1fr;
   }

   .act-dev-system .listings-cms-wrapper.row-gap.grid-2-cols {
     grid-template-columns: 1fr 1fr;
   }

   .act-dev-system .margin-bottom.margin-small {
     padding-left: 120px;
   }

   .act-dev-system .margin-bottom.margin-small.no-padding {
     padding-left: 0;
   }

   .act-dev-system .container-large {
     max-width: 96rem;
     margin-left: auto;
     overflow: visible;
   }

   .act-dev-system .c-text-1 {
     color: var(--neutral-1000);
     font-family: Gellix, sans-serif;
     font-weight: 600;
   }

   .act-dev-system .c-text-2.cc-inline {
     color: #bb7e2f;
     font-family: Gellix, sans-serif;
     font-size: 16px;
   }

   .act-dev-system .c-select {
     color: var(--neutral-50);
     background-color: #4e4e4e12;
     font-family: Gellix, sans-serif;
     font-size: 16px;
     font-weight: 500;
   }

   .act-dev-system .c-metros_track {
     background-color: #64646430;
   }

   .act-dev-system .c-track_handle {
     border-color: var(--secondary-120);
     background-color: var(--secondary-120);
   }

   .act-dev-system .c-checkbox_text {
     color: var(--neutral-1000);
     font-family: Gellix, sans-serif;
     font-weight: 600;
   }

   .act-dev-system .c-track_amount {
     background-color: var(--secondary-100);
   }

   .act-dev-system .text-block {
     color: var(--neutral-00);
     font-family: Gellix, sans-serif;
     font-weight: 700;
   }

   .act-dev-system .tab {
     background-color: var(--secondary-120);
     color: var(--neutral-50);
     -webkit-text-stroke-width: 0px;
     text-transform: uppercase;
     font-size: 0.9rem;
     font-weight: 500;
     text-decoration: none;
     transition: none;
   }

   .act-dev-system .tab.outline {
     color: var(--secondary-120);
     width: auto;
     font-size: 0.9rem;
     font-weight: 500;
     line-height: 1.8em;
   }

   .act-dev-system .tab.outline.w--current {
     background-color: var(--secondary-120);
     color: var(--neutral-00);
   }

   .act-dev-system .website.card.exclusive-property {
     height: 496px;
   }

   .act-dev-system .info {
     left: 20px;
   }

   .act-dev-system .text-3 {
     /* width: 264px; */
   }

   .act-dev-system .text-3.full-width {
     /* width: 240px; */
   }

   .act-dev-system .filters2_filters-wrapper {
     background-color: var(--neutral-00);
   }

   .act-dev-system .collection-list-2-copy {
     grid-template-rows: auto auto auto;
     grid-template-columns: auto;
     width: 100%;
   }
 }

 @media screen and (min-width: 1920px) {
   .act-dev-system .listing-type-title.centered-on-mobile {
     color: var(--neutral-100);
     font-family: Crimson Text, sans-serif;
     font-weight: 600;
   }

   .act-dev-system .margin-bottom.margin-small {
     padding-left: 0;
   }

   .act-dev-system .container-large {
     margin-left: auto;
   }

   .act-dev-system .text-span {
     font-family: Crimson Text, sans-serif;
     font-size: 44px;
   }

   .act-dev-system .filters2_layout {
     grid-column-gap: 3rem;
   }
 }

 @media screen and (max-width: 991px) {
   .act-dev-system a:hover {
     color: var(--neutral-00);
   }

   .act-dev-system .body {
     overflow: visible;
   }

   .act-dev-system .wrapper-half {
     max-width: 100%;
   }

   .act-dev-system .listing-type-title.centered-on-mobile {
     font-size: 40px;
   }

   .act-dev-system .listings-cms-wrapper {
     justify-content: center;
   }

   .act-dev-system .listings-cms-wrapper.row-gap {
     grid-template-columns: 1fr 1fr;
     align-items: center;
   }

   .act-dev-system .card-listing-content {
     max-height: 100%;
   }

   .act-dev-system .padding-section-large {
     padding-top: 0;
     padding-bottom: 0;
   }

   .act-dev-system .margin-bottom {
     margin-top: 0;
     margin-left: 0;
     margin-right: 0;
   }

   .act-dev-system .text-span.font-size-40px {
     font-size: 40px;
   }

   .act-dev-system .c-text-1 {
     font-size: 16px;
   }

   .act-dev-system .c-select {
     color: var(--neutral-500);
   }

   .act-dev-system .c-metros_wrapper {
     width: 100%;
   }

   .act-dev-system .tab {
     text-align: center;
     height: 138.965%;
   }

   .act-dev-system .tab.outline {
     width: 60%;
     font-size: 0.9rem;
   }

   .act-dev-system .collection-list-wrapper-6 {
     width: 100%;
     height: 100%;
     margin-left: 0;
     padding-left: 0;
     padding-right: 16px;
   }

   .act-dev-system .website.card.exclusive-property,
   .act-dev-system .vectors-wrapper-4 {
     height: 424px;
   }

   .act-dev-system .info {
     top: 259px;
     left: 15px;
   }

   .act-dev-system .projects-overlay {
     flex-direction: column;
     justify-content: center;
     align-items: center;
     display: flex;
   }

   .act-dev-system .filters2_tablet-modal-close-button {
     display: block;
     position: absolute;
     top: 1.5rem;
     right: 1.5rem;
   }

   .act-dev-system .filters2_scroll-wrapper {
     height: auto;
     padding-bottom: 0;
     padding-right: 0;
     overflow: visible;
   }

   .act-dev-system .filters2_form {
     width: auto;
   }

   .act-dev-system .filters2_layout {
     grid-template-columns: 1fr;
   }

   .act-dev-system .filters2_form-header {
     flex-direction: column;
     align-items: flex-start;
   }

   .act-dev-system .filters2_heading {
     color: var(--black-footer-bottom);
     font-size: 2.25rem;
   }

   .act-dev-system .filters2_tablet-filters-button {
     background-color: var(--secondary-120);
     border-radius: 8px;
     justify-content: center;
     font-family: Outfit, sans-serif;
     display: flex;
   }

   .act-dev-system .filters2_tablet-modal-menu {
     z-index: 999;
     border-top: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
     background-color: var(--\<unknown\|relume-variable-color-neutral-2\>);
     background-image: linear-gradient(to bottom,
         var(--primary-100),
         var(--primary-100));
     justify-content: space-between;
     align-items: center;
     width: 100vw;
     margin-top: 3rem;
     margin-left: -5vw;
     padding: 0.75rem 5%;
     display: flex;
     position: sticky;
     bottom: 0;
     left: 0%;
     right: 0%;
   }

   .act-dev-system .filters2_filters-wrapper {
     z-index: 9999;
     background-color: var(--\<unknown\|relume-variable-color-neutral-2\>);
     background-image: linear-gradient(to bottom,
         var(--neutral-00),
         var(--neutral-00));
     width: 100%;
     max-width: none;
     height: auto;
     padding: 3rem 5% 0;
     position: fixed;
     inset: 0%;
     overflow: scroll;
     transform: translateY(100%);
   }

   .act-dev-system .filters2_form-block {
     z-index: 999;
     max-width: 100%;
   }

   .act-dev-system .text-block-7 {
     font-family: Outfit, sans-serif;
     font-size: 1.2rem;
   }

   .act-dev-system .collection-list-2-copy {
     grid-template-columns: 0.75fr;
     width: 100%;
     height: 100%;
   }
 }

 @media screen and (max-width: 767px) {
   .act-dev-system .wrapper-half {
     max-width: 100%;
   }

   .act-dev-system .listing-type-title {
     text-align: center;
   }

   .act-dev-system .listings-cms-wrapper {
     justify-content: center;
   }

   .act-dev-system .listings-cms-wrapper.row-gap {
     grid-template-columns: 1fr;
     justify-items: stretch;
     padding-left: 16px;
     padding-right: 16px;
   }

   .act-dev-system .centered-on-mobile {
     text-align: center;
   }

   .act-dev-system .padding-section-large {
     padding-top: 0;
     padding-bottom: 4rem;
   }

   .act-dev-system .margin-bottom {
     margin-top: 0;
     margin-left: 0;
     margin-right: 0;
   }

   .act-dev-system .tab {
     text-align: center;
     padding-left: 16px;
     padding-right: 16px;
   }

   .act-dev-system .collection-list-wrapper-6 {
     width: 100%;
     padding-left: 0;
     padding-right: 0;
   }

   .act-dev-system .website.card.exclusive-property,
   .act-dev-system .vectors-wrapper-4 {
     height: 344px;
   }

   .act-dev-system .info {
     top: 184px;
     left: 32px;
   }

   .act-dev-system .filters2_layout {
     grid-column-gap: 2.5rem;
     grid-row-gap: 2.5rem;
   }

   .act-dev-system .filters2_tablet-modal-menu {
     padding-top: 0.5rem;
     padding-bottom: 0.5rem;
   }

   .act-dev-system .filters2_filters-wrapper {
     transform: translateY(100%);
   }

   .act-dev-system .collection-list-2-copy {
     grid-template-rows: auto auto;
     grid-template-columns: 1fr;
     height: auto;
   }

   .act-dev-system .text-block-8 {
     display: none;
   }
 }

 @media screen and (max-width: 479px) {
   .act-dev-system h2 {
     font-size: 30px;
   }

   .act-dev-system a {
     overflow: visible;
   }

   .act-dev-system .button-secondary.background-primary {
     width: 100%;
   }

   .act-dev-system .button-secondary.background-primary.small-size {
     width: 55%;
     margin-right: 8px;
     padding-left: 16px;
     padding-right: 16px;
   }

   .act-dev-system .wrapper-half {
     min-height: auto;
   }

   .act-dev-system .listing-type-title {
     text-align: center;
   }

   .act-dev-system .listing-type-title.centered-on-mobile {
     width: 99.9999%;
     max-width: 99.9933%;
     font-size: 32px;
   }

   .act-dev-system .listings-cms-wrapper.row-gap {
     grid-template-columns: 1fr;
     place-items: center stretch;
     padding-left: 0;
     padding-right: 0;
   }

   .act-dev-system .padding-section-large {
     padding-top: 2rem;
   }

   .act-dev-system .margin-bottom {
     margin-top: 0;
     margin-left: 0;
     margin-right: 0;
   }

   .act-dev-system .text-span {
     font-size: 44px;
   }

   .act-dev-system .text-span.font-size-40px {
     font-size: 30px;
   }

   .act-dev-system .c-filtro {
     margin-bottom: 16px;
   }

   .act-dev-system .c-metros {
     max-width: 90%;
     margin-left: auto;
     margin-right: auto;
   }

   .act-dev-system .tab {
     justify-content: center;
     display: flex;
   }

   .act-dev-system .tab.outline {
     width: 100%;
   }

   .act-dev-system .collection-list-wrapper-6 {
     padding-left: 0;
     padding-right: 0;
   }

   .act-dev-system .info {
     top: 184px;
     left: 18px;
   }

   .act-dev-system .text-3 {
     /* white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
    width: 88%;
    font-size: 20px;
    overflow: hidden; */
   }

   .act-dev-system .project-feature-text {
     font-size: 14px;
   }

   .act-dev-system .filters2_filters-wrapper {
     transform: translateY(100%);
   }

   .act-dev-system .text-block-7 {
     font-size: 1rem;
   }

   .act-dev-system .collection-list-2-copy {
     grid-column-gap: 12px;
     grid-row-gap: 12px;
     grid-template-rows: auto auto auto;
     grid-template-columns: auto;
     width: auto;
   }

   .act-dev-system .vproject-features {
     flex-direction: column;
   }
 }

 #w-node-_718b22e3-6152-995d-b354-7d08a096df3d-388e4943,
 #w-node-_718b22e3-6152-995d-b354-7d08a096df3e-388e4943,
 #w-node-_718b22e3-6152-995d-b354-7d08a096df40-388e4943 {
   grid-area: span 1 / span 1 / span 1 / span 1;
 }

 #w-node-_718b22e3-6152-995d-b354-7d08a096df5a-388e4943 {
   grid-area: span 1 / span 1 / span 1 / span 1;
   align-self: auto;
 }

 #w-node-_718b22e3-6152-995d-b354-7d08a096e0e6-388e4943 {
   grid-area: span 1 / span 1 / span 1 / span 1;
 }


 .page-blog-title {
   width: 100%;
   height: 300px;
   text-align: left;
   display: flex;
   flex-direction: column;
   align-items: center;
   flex-wrap: wrap;
   justify-content: center;
   background: linear-gradient(rgba(0, 34, 85, 0.85), rgba(0, 34, 85, 0.85)), url(https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1470&q=80) center / cover no-repeat;
 }

 .page-blog-title .ipt-title {
   color: #ffffff;
   font-weight: bold;
 }


 .page-proyect-title {
   width: 100%;
   height: 300px;
   text-align: left;
   display: flex;
   flex-direction: column;
   align-items: center;
   flex-wrap: wrap;
   justify-content: center;
   background: linear-gradient(rgba(0, 34, 85, 0.85), rgba(0, 34, 85, 0.85)), url(https://actrealstate.actdevsystem.com/storage/general-1/justin-aikin-a49cnofkuto-unsplash.jpg) center / cover no-repeat;
 }

 .page-proyect-title .ipt-title {
   color: #ffffff;
   font-weight: bold;
 }


 .page-agent-title {
   width: 100%;
   height: 300px;
   text-align: left;
   display: flex;
   flex-direction: column;
   align-items: center;
   flex-wrap: wrap;
   justify-content: center;
   background: linear-gradient(rgba(0, 34, 85, 0.85), rgba(0, 34, 85, 0.85)), url(https://images.pexels.com/photos/7937743/pexels-photo-7937743.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2) center / cover no-repeat;
 }

 .page-agent-title .ipt-title {
   color: #ffffff;
   font-weight: bold;
 }

 .aei-cert {
   position: relative;
   cursor: pointer;
   padding: 60px 20px;
   text-align: center;
   color: white;
 }

 .aei-cert::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.4);
   /* más claro para que el fondo se note un poco */
   z-index: 1;
 }

 .aei-cert-content {
   position: relative;
   z-index: 2;
   max-width: 800px;
   margin: 0 auto;
 }

 .aei-cert img {
   width: 80px;
   margin-bottom: 20px;
 }

 .aei-cert p {
   font-size: 14px;
   letter-spacing: 1px;
   margin: 0;
   color: white;
   font-weight: bold;
   text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
 }

 .aei-cert h2 {
   font-weight: bold;
   font-size: 28px;
   margin-top: 8px;
   color: #fff;
   text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
   /* mejora el contraste */
 }

 @media (max-width: 600px) {
   .aei-cert h2 {
     font-size: 20px;
   }

   .aei-cert p {
     font-size: 13px;
   }
 }

 .act-hero-blog {
   position: relative;
   background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
   min-height: 300px;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   padding: 60px 20px;
   color: white;
 }

 .act-hero-blog::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(0, 42, 102, 0.85);
   /* azul oscuro translúcido */
   z-index: 1;
 }

 .testimonials {
   padding: 4rem 1rem;
   /* background: #eef0f5;
      font-family: Arial, sans-serif; */
 }

 .testimonials__title {
   text-align: center;
   font-size: 2rem;
   margin-bottom: 2rem;
   /* color: #333; */
 }

 /* Grid responsivo */
 .testimonials__grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 1.5rem;
   max-width: 1200px;
   margin: 0 auto;
 }

 /* Tarjeta de testimonio */
 .testimonial__card {
   background: #fff;
   padding: 2rem;
   border-radius: 12px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .testimonial__card:hover {
   transform: translateY(-4px);
   box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
 }

 /* Blockquote con icono de comillas */
 .testimonial__text {
   position: relative;
   font-size: 1rem;
   line-height: 1.6;
   color: #444;
   margin-bottom: 1.5rem;
   padding-left: 2.5rem;
 }

 .testimonial__text::before {
   content: "“";
   font-size: 3rem;
   color: #a0a4ad;
   position: absolute;
   left: 0;
   top: -0.5rem;
 }

 /* Pie de tarjeta */
 .testimonial__footer {
   display: flex;
   align-items: center;
   justify-content: space-between;
   border-top: 1px solid #ececf2;
   padding-top: 1.5rem;
 }

 .testimonial__author {
   display: flex;
   align-items: center;
 }

 .testimonial__avatar-wrap {
   background: #ddd;
   padding: 0.25rem;
   border-radius: 50%;
   margin-right: 0.75rem;
 }

 .testimonial__avatar {
   width: 48px;
   height: 48px;
   border-radius: 50%;
   object-fit: cover;
   display: block;
 }

 .testimonial__author-info {
   display: flex;
   flex-direction: column;
 }

 .testimonial__name {
   font-size: 1rem;
   font-weight: 600;
   color: #222;
   margin: 0;
 }

 .testimonial__role {
   font-size: 0.875rem;
   color: #777;
   margin: 0;
 }

 .testimonial__meta {
   text-align: right;
   display: flex;
   flex-direction: column;
   align-items: flex-end;
 }

 .testimonial__stars span {
   margin-left: 0.1rem;
   font-size: 1rem;
   color: #444;
 }

 .testimonial__time {
   font-size: 0.75rem;
   color: #888;
 }

 /* Contenedor de testimonios en Grid */
 .smart-textimonials {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
 }

 /* Estilos de cada tarjeta */
 .smart-textimonials .item-box {
   background-color: #fff;
   padding: 2rem 1.5rem 1.5rem;
   border-radius: 1rem;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   position: relative;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .smart-textimonials .item-box:hover {
   transform: translateY(-5px);
   box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
 }

 /* Cita decorativa */
 .quotes {
   position: absolute;
   top: -20px;
   left: 50%;
   transform: translateX(-50%);
   background-color: #007bff;
   color: #fff;
   width: 44px;
   height: 44px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.2rem;
 }

 /* Avatar redondo y centrado */
 .st-author-thumb img {
   width: 80px;
   height: 80px;
   border-radius: 50%;
   object-fit: cover;
   margin: 0 auto 1rem;
   display: block;
 }

 /* Texto de la cita */
 .smart-tes-content p {
   font-style: italic;
   color: #555;
   line-height: 1.6;
   margin-bottom: 1.5rem;
   text-align: center;
   padding: 0 0.5rem;
   margin-left: 1rem;
 }

 /* Nombre del autor */
 .st-author-title {
   font-weight: 600;
   font-size: 1.1rem;
   margin-bottom: 0.25rem;
   text-align: center;
 }

 /* Subtítulo (cargo/empresa) */
 .st-author-subtitle {
   display: block;
   font-style: italic;
   color: #888;
   font-size: 0.9rem;
   text-align: center;
 }

 section.act-testimonial {
   /* color naranja a tu gusto */
   background-color: #f5faff !important;
   /* vertical padding opcional */
   padding: 4rem 0;
   /* truco para 100vw centrado */
   width: 100vw;
   position: relative;
   left: 50%;
   right: 50%;
   margin-left: -50vw;
   margin-right: -50vw;
 }


 /* Ocultamos la comilla antigua si no la vas a usar más */
 .quotes {
   display: none;
 }

 /* Preparamos el contenedor para la cita */
 .smart-tes-content {
   position: relative;
 }

 /* Párrafo con espacio a la izquierda para la comilla */
 .smart-tes-content .act-quote {
   position: relative;
   padding-left: 2rem;
   /* espacio para el icono */
   margin: 0;
   /* elimina márgenes extra */
   font-style: italic;
   color: #555;
   line-height: 1.6;
   margin-left: 10;
 }

 /* Insertamos la comilla de Font-Awesome al inicio */
 .smart-tes-content .act-quote::before {
   content: "\f10d";
   /* unicode de fa-quote-left */
   font-family: "Font Awesome 5 Free";
   /* asegúrate de que coincide con tu versión */
   font-weight: 900;
   /* necesario para FA solid */
   position: absolute;
   left: 0;
   top: 0;
   font-size: 1.2rem;
   color: #0fca98;
 }