.pager-sec {
    background-color: #d1d1d1;
    padding: 15px 0;
}

.pager-sec .container {
    max-width: 100%;
}

.pager-sec-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.form_field {
    position: relative;
    margin-right: 10px;
    margin-bottom: 15px;
}

.form_field.full {
    flex: 1;
}

.form_field input.form-control {
    width: 100%;
    padding: 9px;
    /* border: 1px solid #391952; */
    /* border-radius: 10px; */
    background-color: #f3f0f5;
    /* color: #391952; */
}

.drop-menu {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    /* border: 1px solid #391952; */
    /* border-radius: 10px; */
    background-color: #fff;
    cursor: pointer;
    color: #391952;
    font-size: 14px;
}

.dropeddown, .dropdown1, .dropdown2, .dropdown3 {
    display: none;
    position: absolute;
    font-size: 13px;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    /* border: 1px solid #391952; */
    /* border-radius: 10px; */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.dropeddown li, .dropdown1 li, .dropdown2 li, .dropdown3 li {
    padding: 10px;
    cursor: pointer;
}

.dropeddown li:hover, .dropdown1 li:hover, .dropdown2 li:hover, .dropdown3 li:hover {
    background-color: #391952;
    color: #fff;
}

/* Cambiar la forma en que el dropdown se muestra al hacer hover */
.drop-menu:hover .dropeddown, 
.drop-menu:hover .dropdown1, 
.drop-menu:hover .dropdown2, 
.drop-menu:hover .dropdown3,
.dropeddown:hover, 
.dropdown1:hover, 
.dropdown2:hover, 
.dropdown3:hover {
    display: block;
}


.srch-btn button {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #391952;
    border-radius: 10px;
    background-color: #fff;
    color: #391952;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.srch-btn button i {
    margin-right: 5px;
}

#openModalBtn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    /* border: 1px solid #391952; */
    /* border-radius: 10px; */
    background-color: #f3f0f5;
    color: #391952;
    font-size: 14px;
}

/********banner**************/

.banner1 {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.banner1-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #f0f0f0; /* Un fondo de color para que se vea el área sobrante */
}


.banner1-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-10%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%; /* Para que se ajuste mejor en pantallas pequeñas */
    box-sizing: border-box;
    text-align: left;
}

.location {
    font-size: 14px;
    color: #8a8a8a;
    margin-bottom: 10px;
}

.project-name {
    font-size: 24px;
    color: #391952;
    margin-bottom: 10px;
}

.project-details {
    font-size: 16px;
    color: #8a8a8a;
    margin-bottom: 15px;
}

.description {
    font-size: 14px;
    color: #6c6c6c;
    margin-bottom: 20px;
}

.btn-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #391952;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

/* Estilos responsivos para móviles */
@media (max-width: 768px) {
    .banner1-content {
        max-width: 90%; /* Ajuste el ancho máximo para móviles */
        padding: 15px; /* Reduce el relleno en pantallas pequeñas */
        transform: translate(-50%, -50%);
    }

    .project-name {
        font-size: 20px; /* Disminuye el tamaño de fuente */
    }

    .project-details, .description {
        font-size: 14px; /* Ajusta el tamaño de fuente */
    }

    .btn-more {
        padding: 8px 16px; /* Ajusta el tamaño del botón */
        font-size: 13px; /* Disminuye el tamaño de fuente del botón */
    }
    .banner1 {
        height: 350px;
    }
}


/********banner lo sentimos**************/

.banner2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.banner2-image {
    max-width: 150px;
    margin-right: 20px;
}

.banner2-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.banner2-content img {
    max-width: 100px;
    margin-bottom: 10px;
}

.project-name {
    font-size: 24px;
    color: #391952;
    margin: 0 0 10px;
    font-weight: bold;
}

.description {
    color: #6f6f6f;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-more {
    padding: 10px 20px;
    background-color: #391952;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.btn-more:hover {
    background-color: #56237a;
}


/*** card inmueble destacado ****/
.property-card {
    display: flex;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
}

.property-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 400px; /* Establece un ancho máximo para la imagen */
     /* Establece una altura máxima para la imagen */
}

.property-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.property-card-content .location {
    font-size: 14px;
    color: #a1a1a1;
    margin-bottom: 5px;
}

.property-card-content .project-name {
    font-size: 24px;
    color: #391952;
    font-weight: bold;
    margin: 0;
}

.property-card-content .details {
    font-size: 16px;
    color: #6f6f6f;
    margin: 10px 0;
}

.property-card-content .description {
    color: #6f6f6f;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.property-card-content .btn-more {
    padding: 10px 20px;
    background-color: #391952;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    align-self: flex-start; /* Esto hace que el botón solo ocupe el ancho de su contenido */
}

.property-card-content .btn-more:hover {
    background-color: #2f1443;
}

/* Estilos responsivos para móviles */
@media (max-width: 768px) {
    .property-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-width: 100%; /* Establece un ancho máximo para la imagen */
         /* Establece una altura máxima para la imagen */
    }
    .property-card {
        display: block;
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin-bottom: 20px;
    }
}

/******** recomendado *****/

.recomendado {
    position: relative;
    margin: 0 auto;
    width: 100%;
    top: 30px;
    bottom: 50px;
}

.banner1 {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.losiento {
    position: relative;
    margin: 0 auto;
    width: 80%;
}
