/* Shall we begin? */

/* Variables  */
:root {
    --color-blanco: #ffffff;
    --color-primario: #17234d; 
    --color-secundario: #f9e6cd;
}

/* Generales */

*, *:after, *:before {
    border:0;
    margin:0;
    padding:0;
    box-sizing: inherit;
    color: inherit;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.8em;
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

a {
    color: var(--color-primario);
}

.title, .subtitle {
    color: var(--color-primario)!important;
}


i {
    color: var(--color-primario)!important;
}

.navbar-brand i {
    color: var(--color-blanco)!important;
}
/* Scroll bar*/

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: var(--color-primario); 
}

::-webkit-scrollbar-thumb {
    background-color:var(--color-secundario); 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:active {
    background-color: var(--color-secundario); 
}

/* Nav*/

nav.navbar{
    padding: 2rem 7rem 1rem 7rem;
}

.navbar-item img, .navbar-item svg {
    max-height: none;
    width: 9vw;
}

.navbar-brand i {
    background: var(--color-primario);
    padding: .5rem;
    color: var(--color-blanco);
    border-radius: 17px;
}

.navbar-brand .navbar-item{
    padding: .25rem;
}

nav.navbar a:hover{
    background-color: unset;
    font-weight: 600;
}

.home-icon {
    opacity: 0;
    font-size: 12px;
    color: #162a56;
    text-align: center;
    margin-bottom: -1rem;
}

.home-icon-2 {
    opacity: 1;
    margin-bottom: -.5rem;
}

.home-link {    
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}
.home-link:hover .home-icon {
    opacity: 1;
}

.navbar-start {
    margin-inline-end: unset;
}
.navbar-end {
    margin-inline-start: unset
}

.divisor-vertical {
    border-left-style: solid;
    border-left-color: var(--color-primario);
    border-left-width: 2.5px;
    margin: 2rem 1rem;
}

/* Footer */

footer.footer {
    background-color: var(--color-primario);
    color: var(--color-secundario);
    padding: 7rem 1rem 2rem 1rem;
}

.footer-logo {
    width: 5rem;
}

.footer-logo-2 {
    width: 10rem;
}

.social-icons a {
    margin-right: 10px;
}

.footer-end{
    background-color: var(--color-secundario);
    margin-bottom: 0;
    text-align: center;
    min-height: 3rem;
}

.divisor-horizontal{
    border-bottom-style: solid;
    border-bottom-width: 2.5px;
    border-bottom-color: var(--color-secundario);
    opacity: .1;
    width: 88%;
    margin-left: auto;
    margin-right: auto;
}

footer.footer a{
    color: var(--color-secundario);
}

footer.footer .footer-textos{
    padding: 0rem 20rem;
}

footer.footer .footer-icos{
    padding: 0rem 7rem;
}

.footer-textos span{
    font-weight: 700;
}

/*BANNER*/

.banner {
    position: relative;
    width: 100%;
    margin: -3rem 0 -15rem 0;
    padding: 0;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 75%, 0 85%);
}

.botones-banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    top: -45rem;
}

.botones-banner p {
    opacity: 0.75;
    background: black;
    
    font-size: 2.75vw;
    text-transform: uppercase;
    color: var(--color-blanco);

    display: flex;
    flex-direction: column;
}

.botones-banner span {
    font-size: 1vw;
}

.botones-banner-1{
    padding: 2.5rem 4rem 2.5rem 20vw;
}

.botones-banner-2{
    align-items: flex-end;
    padding: 2.5rem 10vw 2.5rem 4rem;
}

.has-text-blue {
    color: var(--color-primario);
}

.has-text-blue a {
    color: var(--color-primario);
}

.has-text-85 {
    font-size: .85rem;
    line-height: 1.5rem;
}

.z-index-1 {
    z-index: 1;
}

.mt-10 {
    margin-top: 5rem;
}

.casa-propia{
    background-color: var(--color-blanco);
    padding: 1rem;
    left: -30%;
    height: 15%;
}

.casa-propia > span:nth-child(1) {
    font-size: 1rem;
    padding-left: 1rem;
}

.casa-propia > span:nth-child(2) {
    font-size: 2.25rem;
    font-weight: 700;
    margin: -.25rem 0;
}

.casa-propia > span:nth-child(3) {
    font-size: 1rem;
    padding-left: 3rem;
}

/* CARRUSEL */

.swiper-slide img {
    width: 100%;
    height: auto;
}
.swiper-button-prev, .swiper-button-next {
    color: var(--color-blanco);
}

.carrusel-title {
    color: var(--color-primario);
    font-size: 2rem;
}

.figcaption-carrusel{
    top: -6.75rem;
    padding-left: 1rem;
}

.figcaption-carrusel span {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1rem;
}

.figcaption-carrusel p{
    margin-bottom: .75rem;
}

.video-container {
        width: 100%;
        height: 100%;
        background: black;
}

.video-iframe {
    width: 100%;
    height: 90%;
    border: none;
}

/**/
.has-bg-image-1{
    background-image: url(../images/casa.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 50rem;
}

.full-screen{
    padding: 0;
}

.has-bg-blue{
    padding: 0!important;
    background-color: var(--color-primario);
    color: var(--color-secundario);
}

.div-blanco{
    background-color: var(--color-blanco);
    height: 5rem;
    width: 15rem;
}

.has-bg-blue .contenidos {
    padding: 0 24vw 0 5rem;

}

.has-bg-blue .contenidos p:nth-child(1) {
    font-size: .75rem;
}

.has-bg-blue .contenidos p:nth-child(2) {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
}

.has-bg-blue .contenidos p:nth-child(3) {
    font-size: 1rem;
}

.has-bg-blue .contenidos div {
    margin-top: 2rem;
}

.has-bg-blue .contenidos div button{
    border-style: solid;
    border-width: 3px;
    border-radius: 30px;
    font-weight: 700;
    padding: 1rem;
}

.us {
    color: var(--color-secundario);
}

.w-50{
        width: 50%;
    }

.home-icon-3 {
    opacity: 1;
    margin-bottom: -.5rem;
    color: var(--color-secundario);
}

/**/

.clientes-satisfechos{
    color: var(--color-primario);
    font-weight: 400;
}

.has-border{
    border-top-style: solid;
    border-top-width: 3px;
    border-top-color: var(--color-primario);
}

.clientes-satisfechos-div{
    color: var(--color-primario);
}

.comillas{
    font-weight: 700;
    font-size: 6rem;
    font-style: italic;
}

.clientes-satisfechos-div .column {
    padding: 3rem 2rem 0rem 2rem;
}

.contact-form{
    width: 90%;
}

.form-button{
    color: var(--color-blanco);
    background: var(--color-primario);

}

.contact-div i {
    font-size: 1.5rem;
}

.contact-div span:nth-child(3){
    font-weight: 700;
}

.box.grid {
    padding: 1rem;
}

/* Form Styles */
.users-form .field {
    margin-bottom: 2rem;
}

.users-form .label {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.users-form input[type=text],.users-form input[type=password],.users-form select,.users-form textarea {
    width: 10rem;
    padding: 0.5rem;
    border: .5px solid var(--color-primario);
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
    background: white;
}

.users-form input[type=submit] {
    color: var(--color-blanco);
    background: var(--color-primario);
    border-radius: 25px;
    padding: .5rem 1rem;
    font-size: 1.15rem;
    cursor: pointer;
}

.grid-search-form-input{
    background: white;
}

[role="alert"] {
    margin: 1.5em;
    padding: 1.5em;
    position: fixed;
    border-radius: 5px;
    width: 25%;
    right: 11.4%;
    z-index: 999999999;
}

[role="alert"] > .close {
    position: absolute;
    top: 1px;
    right: 1px;
}

.padded {
    padding: 1.5em;
}

.info {
    background-color: var(--color-primario);
    color: var(--color-blanco);
    opacity: 0.75;
}

[role="dialog"] > input[type=checkbox] { display: none !important; }
input[type=checkbox]:checked ~ div {visibility:visible; opacity:1}
[role="dialog"] > div > *:not(.close) {width: 66%; margin-left:auto; margin-right:auto; border-radius: 5px;}
[role="dialog"] > div > .close, [role="alert"] > .close {
    background: url('data:image/svg+xml;utf8,<svg fill="%23000000" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M 12 2 C 6.4889971 2 2 6.4889971 2 12 C 2 17.511003 6.4889971 22 12 22 C 17.511003 22 22 17.511003 22 12 C 22 6.4889971 17.511003 2 12 2 z M 12 4 C 16.430123 4 20 7.5698774 20 12 C 20 16.430123 16.430123 20 12 20 C 7.5698774 20 4 16.430123 4 12 C 4 7.5698774 7.5698774 4 12 4 z M 8.7070312 7.2929688 L 7.2929688 8.7070312 L 10.585938 12 L 7.2929688 15.292969 L 8.7070312 16.707031 L 12 13.414062 L 15.292969 16.707031 L 16.707031 15.292969 L 13.414062 12 L 16.707031 8.7070312 L 15.292969 7.2929688 L 12 10.585938 L 8.7070312 7.2929688 z"/></svg>') center right no-repeat;
    width:24px; height:24px; cursor: pointer; position:absolute; top:15px; right:15px;
    cursor: pointer;
}

#userPhoto img{
    max-width: 10rem;
}

/* Selecciona un div que contenga un hijo con la clase .input.groups_members */
.multiple-select {
    margin-bottom: 9rem!important;
}

.grid-user-img{
    max-width: 5rem;
}

a[title=Regions]{
    padding: .25rem .5rem .25rem .25rem;
    margin-right: .5rem;
    border-radius: 3px;
    border-color: gray;
    border-style: solid;
    border-width: 1px;
}

.form-images {
    max-height: 10rem;
    margin-right: 2rem;
}

.banner-form{
    background-image: url(../images/top-form.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 15rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-form h2 {
    color: var(--color-blanco)!important;
}

.upload-fields {
    padding: 1.5rem;
    background: var(--color-primario);
    border-radius: 5px;
}

.upload-fields label.label {
    color: var(--color-blanco);
}

.form-images-control a{
    color: white;
}

.has-color-pg {
    color: var(--color-primario);
}

.property_main_photo {
    width: 100%;
}

.tachado{
    text-decoration: line-through;
}

.line {
    border-top-style: solid;
    border-top-color: var(--color-primario);
    border-top-width: 1.5px;
    margin:.5rem 0rem;
}

.main_description {
    color:var(--color-primario);
    font-size: .75rem;
    line-height: 1rem;
}

.main_description_2 {
    color:var(--color-primario);
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 600;
}

.upper {
    text-transform: uppercase;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.3s;
}

/*.zoom-on-hover:hover {
    transform: scale(1.02);
}
    */
.carousel-button img {
    width: 3rem;
}
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 1rem;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s;
}

.prev { left: 20px; }
.next { right: 20px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    border-radius: 50%;
    border: 2px solid var(--color-primario);
    background: transparent;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.is-active {
    background: var(--color-primario);
}

.bg-grid {
    background: #e9ebf7;
}

.choose-propery-title {
    font-weight: 600;
    color: var(--color-primario);
    line-height: 1.25rem;
    font-size: .8rem;
}

.choose-propery-description {
    font-size: .75rem;
    line-height: 1.25rem;
}

.price {
    font-size: 1rem;
    color: var(--color-primario);
    font-weight: 700;
}

.icon {
    width: 1.5rem;
    height: 1.5rem;
}

.icons-titles{
    font-weight: 600;
    color: var(--color-primario);
    font-size: .75rem;
}
.properties-contact-button{
    color: white;
    background-color: var(--color-primario);
    font-size: .75rem;
}

.properties-contact-button-2 {
    color: white;
    background-color: var(--color-primario);
    font-size: 1.25rem;
}

.property-details{
    background: #e9ebf7;
}

.row-subtitle, .row-description.title {
    color: var(--color-primario);
}

.row-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
}

.circular-image {
  width: 150px; /* Ancho de la imagen */
  height: 150px; /* Alto de la imagen */
  border-radius: 50%; /* Crea un círculo */
  overflow: hidden; /* Oculta cualquier parte de la imagen que sobresalga del círculo */
  /* Opcional: agrega un borde */
  border: 2px solid black; /* Agrega un borde negro */
}

.circular-image img {
  width: 100%; /* La imagen ocupa el 100% del ancho del contenedor */
  height: 100%; /* La imagen ocupa el 100% del alto del contenedor */
  object-fit: cover; /* Ajusta la imagen para cubrir todo el contenedor, recortando si es necesario */
}
.flags{
    width: 6rem;
}
.textomodal p, .textomodal b{
    color: var(--color-primario);
}
.textomodal{
    font-size: 2rem;
}
.modal-card-body{
    padding: 0!important;
}

.modalgb{
    background-image: url("../images/modalbg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 97vh;
}

.modalgb img {
    width: 25rem;
}
.modal-card {
    width: 100%;
    margin: 0;
    border-radius: 0;
}

.modal-card-head,
.modal-card-foot {
    border: none;
}

.modal.is-active {
    display: flex;
}

.modallogo {
    display: none;
}

.us-content img{
    width: 30rem;
}

.linea_us {
    border-top-style: solid;
    border-top-width: .5rem;
    border-top-color: var(--color-primario);
    width: 4rem;
    margin: 1rem 0;
}

.titulos_us h3 {
    color: var(--color-primario);
    font-size: 1.75rem;
    font-weight: 700;
}

.titulos_us h4 {
    font-size: 1.5rem;
    color: var(--color-primario);
}

.p-us {
    padding: 0 4rem;
    text-align: center;
}

.property-bar {
    background: #e9ebf7;
    border-radius: 5px;
}

.property-form .field {
    margin-bottom: 0!important;
}

.mb-20 {
    margin-bottom: 20%;
}

.swal2-confirm, .swal2-styled {
    width: 100%!important;
}