#section-hotels-travel {
    padding-top: 45px;
    padding-bottom: 45px;
}
#section-hotels-travel .owl-stage-outer {
    padding: 15px 0;
}
.hotel-travel-card-item {
    height: 430px;
    width: 290px;
    position: relative;
}
.travel-card-item-link {
    display: block;
    width: inherit;
    height: inherit;
    overflow: hidden;
}
.travel-card-item-link img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all 0.5s ease;
}
.travel-card-title {
    position: absolute;
    bottom: 0%;
    font-size: 1.49rem;
    font-weight: 500;
    left: 3%;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .8);
}
.list-hotel-travel-card {
    margin: auto;
    width: 1200px;
    transition: all 0.5s ease;
}

.hotel-travel-card-item:hover {
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
}
.hotel-travel-card-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 1640px) {
    .list-hotel-travel-card {
        width: 1200px;
    }
}

@media (max-width: 1536px) {
    .list-hotel-travel-card {
        width: 1200px;
    }
}

@media (max-width: 1280px) {
    .list-hotel-travel-card {
        width: 911px;
    }
}

@media (max-width: 1024px) {
    .list-hotel-travel-card {
        width: 600px;
    }
}


@media (max-width: 768px) {
    .list-hotel-travel-card {
        width: 600px;
    }
}

@media (max-width: 640px) {
    .list-hotel-travel-card {
        width: 292px;
    }
}

/*  prueba */
.property-carousel .owl-stage{
    display:flex;
}

.property-card{
    position:relative;
    width:200px;
    height:450px;
    overflow:hidden;
    transition:all .4s ease;
}

.property-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* efecto expand */
.property-carousel .property-card:hover{
    width:500px;
}

/* oscurecer */
.property-card::after{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.4);
}
.property-card .content{
    position:absolute;
    bottom:30px;
    left:30px;
    color:white;
    opacity:0;
    transition:.3s;
}

.property-card:hover .content{
    opacity:1;
}

.property-card{
    width:180px;
}

.property-card.active{
    width:480px;
}


.property-carousel .owl-stage{
    display:flex;
}

.property-card{
    width:180px;
    height:450px;
    transition:all .4s ease;
    overflow:hidden;
}

.property-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* card abierta */
.property-card.active{
    width:480px;
}

/* contenido oculto */
.property-card .content{
    opacity:0;
    transition:.3s;
}

/* mostrar contenido */
.property-card.active .content{
    opacity:1;
}

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}