.banner_hosteleria{
    height:100%;
    display:flex;
    flex-direction: column;
}
.img_frontal_hosteleria{
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center;
}
.package_wrap img{
    max-width:45%;
}

.titulo_host {
    height:180px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.overlay_hover {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
    opacity:0;
    pointer-events:none;
    transform: translateY(-100%);
    transition: all ease.3s;
}
.btn_wrap_hosteleria {
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding-bottom:30px;
}
.banner_hosteleria .titulo_host h2{
    transition: all ease.3s;
}
.banner_hosteleria:hover .titulo_host h2{
    opacity:0;
}
.banner_hosteleria:hover .titulo_host {
    height: 100%;
    border-bottom:none;
}
.banner_hosteleria:hover .overlay_hover{
    opacity:1;
    pointer-events:initial;
    transform: translateY(0%);
}