.banner{
    margin-top: 90px;
    position: relative;
    width: 100%;
    padding: 0 100px;
}
.banner .bg{
    position: relative;
    width: 100%;
    height: 75vh;
    background: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    margin-bottom: 100px;
}
.cover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
.content{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.content h2{
    position: relative;
    font-size: 4em;
    font-weight: 900;
    color: #ffffff; 
    margin-bottom: 15px;
    text-align: center;
}

.content p{
    position: relative;
    font-size: 1.7em;
    font-weight: 700;
    color: #B90332;
    text-align: center;
}

form{
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: #fff;
    padding: 30px 35px;
    transform: translateY(60%);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    
}

form .inputBx{
    margin: 0 6px;
}
form .inputBx p{
    color: #222;
    margin-bottom: 5px;
}
form .inputBx p.white{
    color: #fff;
}
form .inputBx input{
    border: 1px solid #222;
    outline: none;
    padding: 7px;
    width: 100%;
    font-size: 0.8em;
}
form .inputBx select{
    border: 1px solid #222;
    outline: none;
    padding: 7px;
    width: 180px;
    font-size: 0.8em;
}
form .inputBx input[type="submit"]{
    outline: none;
    border: none;
    background: #B90332;
    color: #fff;
    cursor: pointer;
    letter-spacing: 2px;
    padding: 10px;
    border-radius: 5px;
}
form .inputBx input[type="submit"]:hover{
    outline: none;
    border: none;
    background: #910125;
    color: #fff;
    cursor: pointer;
    letter-spacing: 2px;
    padding: 10px;
    border-radius: 5px;
}
/*BOTONES REGIS Y PUBLICAR*/
.botones{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 30px;
}

.btns:nth-child(1){
    position: relative;
    display: inline-flex;
    padding: 20px 50px;
    background: #363636;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    overflow: hidden;
    margin: 0 -10px;
    font-size: 18px;
    font-weight: 700;
}
.btns:nth-child(2){
    position: relative;
    display: inline-flex;
    padding: 20px 71px;
    background: #363636;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    overflow: hidden;
    margin: 0 20px;
    font-size: 18px;
    font-weight: 700;
}

.btns span{
    position: relative;
    z-index: 1;
}
.btns::before{
    content: '';
    position: absolute;
    top: var(--y);
    left: var(--x);
    transform: translate(-50%,-50%);
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background: #B90332;
    transition: width 0.5s,height 0.5s;
}
.btns:hover::before{
    width: 400px;
    height: 400px;

}
/*-------------------BOTONES REGIS Y PUBLICAR----------------*/

/*-----------------------PUBLICACIONES PAGINA WEB-----------------------------------------*/
.contains{
    display: flex;
    justify-content: center;
    align-content: center;
    min-height: 100vh;
    margin-bottom: 60px;
}
.cont_t{
    position: relative;
    width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    grid-gap: 20px;
}
.cont_t .card{
    width: 100%;
    background: #EAEAEA;
}
.cont_t .card .imgBX{
    position: relative;
    width: 100%;
    min-height: 310px;
    overflow: hidden;
}
.cont_t .card .imgBX img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease-in-out;
    transform-origin: right;
}
.cont_t .card:hover .imgBX img{
    transform: scale(1.2);
}
.action{
    position: absolute;
    top: 10px;
    right: 10px;
}
.action a {
    text-decoration: none;
    color: #000;
} 
.action li{
    position: relative;
    list-style: none;
    width: 40px;
    height: 40px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4px;
    cursor: pointer;
}
.action a:hover{
    background: #ff2020;
    color: #fff;
}
.action   li:hover{
    background: #ff2020;
    color: #fff;
}
.action li span{
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%) translateX(-20px);
    white-space: nowrap;
    padding: 5px 60px;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    pointer-events: none;
    opacity: 0;
    transition: 0.5s;
}
.action li:hover span{
    transform: translateY(-50%) translateX(0px);
    opacity: 1;
}
.action li span::before{
    content: '';
    position: absolute;
    top: 50%;
    right: -4px;
    width: 8px;
    height: 8px;
    background: #fff;
    transform: translateY(-50%) rotate(45deg);
}
.cont_t .card .btn_mas{
    position: absolute;
    bottom: 10px;
    right: 90px;

}
.cont_t .card .btn_mas a{
    position: relative;
    text-decoration: none;
    color: #fff;
    width: 200px;
    height: 40px;
    background: rgba(0, 0, 0, 0.397);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.5s;
    transform: translateY(60px);
}
.cont_t .card .btn_mas a:hover{
    background: rgba(0, 0, 0, 0.849);
}
.cont_t .card:hover .btn_mas a{
    transform: translateY(-10px);
}
.cont_t .card .contenido{
    padding: 10px;
}
.cont_t .card .contenido .dis h2{
    font-size: 20px;
    font-weight: 700;
    color: #C40303;
    margin: 5px 0;
}
.cont_t .card .contenido .titulo h2{
    font-size: 20px;
    font-weight: 700;
    color: #000;
}
.cont_t .card .contenido .text{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cont_t .card .contenido .valor{
    font-size: 18px;
    font-weight: 700;
    color: #444;
    margin: 5px 0;
}
.cont_t .card .contenido .inmueble{
    font-size: 17px;
    font-weight: 600;
    color: #000;
}
.cont_t .card .contenido .zona_barrio{
    font-size: 17px;
    font-weight: 600;
    color: #000;
}
.cont_t .card .contenido .descripcion{
    font-size: 10px;
    font-weight: 600;
    color: #ccc;
}
/*-----------------------PUBLICACIONES PAGINA WEB-----------------------------------------*/
/*------------IR ARRIBA------------*/
#btn-up{
    width: 50px;
    height: 50px;
    background: #910125;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    border-radius: 50%;
    font-size: 20px;
    position: fixed;
    bottom: 50px;
    right: 10px;
    margin-left: -100px;
    cursor: pointer;
    z-index: 10000;
    transition: 0.3s ease;
    transform: scale(0);
}
#btn-up:hover{
    background: #af012c;
    color: #fff;
}

/*Responsive Web*/
@media(max-width: 991px){
    .content h2{
        font-size: 2.5em;
    }
    .content p{
        font-size: 1.3em;
    }
    .banner{
        padding: 0;
        margin-bottom: 200px;
    }
    form{
        padding: 10px;
        transform: translateY(100%);
    }
    form .inputBx input{
        font-size: 15px;
    } 
    form .inputBx select{
        width: 100%;
        font-size: 15px;
    }
    .botones{
        margin-top: -10px;
        display: flex;
        flex-direction: column;
        
    }
    .btns:nth-child(1) 
    {
        margin-bottom: 10px;
        
    }
}
@media(max-width: 768px){
    .banner{
        margin-bottom: 580px;
    }
    form .inputBx {
        width: 100%;
        margin-bottom: 20px;
    }
}