:root {
    --blue: #1c2d37;
    --green: #a6b7ba;
    --white: #fff;
    --gray: #3b3b3b;
}

.header-logo img,
.mobile-logo img {
    width: 200px;
}

.hero-title {
    font-size: 50px;
}

#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4DAE50;
    color: white;
    border-radius: 100px;
    padding: 15px;
    font-size: 24px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
    width: 70px;
    height: 70px;
}


/* Icono */

#whatsapp-button i {
    font-size: 40px;
    pointer-events: none;
}


/* Burbuja de texto */

#whatsapp-text {
    position: fixed;
    bottom: 30px;
    right: 100px;
    background-color: white;
    color: black;
    padding: 10px 14px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    max-width: 225px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 999;
}


/* Animación de salto */

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
}

.btnWhatsApp {
    background-color: #4DAE50;
    color: var(--white);
    font-size: 20px;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25) !important;
}

.btnWhatsApp:hover {
    background-color: #419644;
    color: var(--white);
    font-size: 20px;
}


/* #benefist {
    padding-top: 250px;
} */


/* 
.aminities-content h3 {
    font-weight: bold !important;
}

.aminities-content p {
    color: var(--white);
}

.aminities-card-icon img {
    padding: 0 60px;
}

#benefist .btnWhatsApp {
    margin-top: 40px;
} */

#map {
    border-radius: 8px;
    border: 4px solid #a6b7ba;
    /* height: 500px;
    width: 100%; */
}

.marker {
    background-size: cover;
    width: 110px;
    height: 110px;
    cursor: pointer;
    -webkit-filter: drop-shadow(10px 10px 10px #222);
    filter: drop-shadow(10px 10px 10px #222);
}

.contentMap .btnkm20 {
    margin-top: 10px;
    padding: 10px;
    background-color: var(--blue);
    width: 100%;
    color: #fff;
}

.process-card .box-content {
    background: linear-gradient(45deg, rgba(173, 138, 31, 1) 0%, rgba(173, 138, 31, 1) 45%, rgba(214, 173, 36, 1) 50%, rgba(173, 138, 31, 1) 55%, rgba(173, 138, 31, 1) 100%);
    animation: shineGold 7s ease-in-out infinite;
    background-size: 300%;
    background-position: 0%;
}

.property-card .property-card-details {
    border-left: 1px solid var(--blue);
}

.btnDownload {
    background-color: var(--blue);
    color: var(--white);
    padding: 15px;
    border-radius: 10px;
    width: 100%;
}

table {
    background-color: var(--blue);
    color: var(--white);
    border: #1c2d37;
}

td,
th {
    border: 5px solid var(--green);
    padding: 15px;
}

#card table th {
    background: linear-gradient(45deg, rgba(173, 138, 31, 1) 0%, rgba(173, 138, 31, 1) 45%, rgba(214, 173, 36, 1) 50%, rgba(173, 138, 31, 1) 55%, rgba(173, 138, 31, 1) 100%);
    color: var(--white);
    animation: shineGold 7s ease-in-out infinite;
    background-size: 300%;
    background-position: 0%;
}

.main-menu .active {
    color: #ad8a1f !important;
}

.main-menu>ul>li>a {
    font-size: 20px;
    font-weight: bold;
}

.main-menu>ul>li>a:hover {
    color: #ad8a1f;
}

.aminities-card .box-title {
    color: #ad8a1f;
}

.process-card:hover .box-number {
    background: var(--white);
}

.process-card .box-title {
    color: var(--white);
}

.process-card .box-text {
    color: var(--white);
    font-size: 20px;
}

@keyframes shineGold {
    0% {
        background-position: 0%;
    }
    50% {
        background-position: 100%;
    }
    100% {
        background-position: 0%;
    }
}

#gallery .btnWhatsApp {
    margin-top: 50px;
}

.footer-layout1 .footer-wrap {
    margin: 0 80px 35px;
}

.imgCover {
    position: absolute;
    border-radius: 10px !important;
    width: 100%;
}

.hero-1 {
    padding-bottom: 170px;
}

.hero-1 .hero-slider1 {
    padding-bottom: 0px;
}

.hero-inner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-inner .imgCover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-inner .imgCover:nth-child(1) {
    display: none;
    /* Ocultamos la imagen de la máscara directamente */
}

.hero-inner .imgCover:nth-child(2) {
    /* Aplica la máscara sobre esta imagen */
    -webkit-mask-image: url('../images/home/hero_1_bg_mask.png');
    /* Ajusta la ruta si es necesario */
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url('../images/home/hero_1_bg_mask.png');
    mask-size: cover;
    mask-repeat: no-repeat;
    mask-position: center;
}

.hero-inner {
    background-color: var(--blue);
}

.card {
    border-radius: 15px;
    background-color: #ad8a1f;
}

.card-header {
    background: linear-gradient(45deg, rgba(173, 138, 31, 1) 0%, rgba(173, 138, 31, 1) 45%, rgba(214, 173, 36, 1) 50%, rgba(173, 138, 31, 1) 55%, rgba(173, 138, 31, 1) 100%);
    animation: shineGold 7s ease-in-out infinite;
    background-size: 300%;
    background-position: 0%;
    border-top-left-radius: 14px !important;
    border-top-right-radius: 14px !important;
    background-color: #ad8a1f;
}

.card-body {
    background-color: var(--blue);
    border-bottom-right-radius: 14px;
    border-bottom-left-radius: 14px;
}

.card-body img {
    border-radius: 20px;
}

#contact {
    padding-top: 100px;
}

.sendData,
.sendData:hover {
    background-color: var(--blue) !important;
    color: var(--white) !important;
    border: 1px solid var(--blue) !important;
}

.th-btn.style-border:hover .btn-icon {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.th-widget-contact .info-box_text .details {
    margin-top: 8px;
}

.logoSide {
    width: 300px;
}

.property-card-wrap:hover .property-thumb img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.property-card {
    margin-left: 0px;
    margin-right: 0px;
}

.portfolio-card.style6 .portfolio-img img {
    height: auto;
    object-fit: none;
}

.project-slider6 .swiper-slide.swiper-slide-active .portfolio-card.style6 .portfolio-img img {
    height: auto;
}

.portfolio-card.style6 {
    margin-top: 80px;
}

.th-hero-bg {
    z-index: 9;
}

.hero-5 .th-hero-bg:after {
    background: transparent;
    opacity: 1;
}

.hero-5 {
    margin-top: 115px;
    background: #1c2d37;
}

.coverMobile {
    display: none;
}

@media(max-width: 768px) {
    .coverDestop {
        display: none;
    }
    .coverMobile {
        display: block;
    }
    .hero-5 {
        margin-top: 75px;
    }
    .hero-scroll-wrap {
        display: none !important;
    }
    .header-layout1,
    .header-layout1 .sticky-wrapper.sticky {
        border-bottom: 1px solid var(--green);
    }
    #location {
        padding-top: 30px;
    }
    #location .title-area .sec-title {
        font-size: 25px;
    }
    .cardLocation {
        width: 50%;
    }
    .process-card .box-title {
        font-size: 15px;
    }
    .process-card .box-text {
        font-size: 13px;
    }
    .card-body {
        padding: 0;
    }
    .card-body img {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
}


/* color: var(--title-color); */