/* ===========================
   HOTEL SLIDER
=========================== */

#hotel-slider{
    margin:40px auto;
    padding:0 15px;
}

#hotel-slider .splide__track{
    padding:20px 5px;
}

#hotel-slider .splide__slide{
    padding:10px;
    box-sizing:border-box;
}

/* Card */

.hotel-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
    border:1px solid #ececec;
    height:100%;
}

.hotel-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

/* Image */

.hotel-thumb{
    display:block;
    overflow:hidden;
}

.hotel-thumb img{
    width:100%;
    height:210px;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.hotel-card:hover img{
    transform:scale(1.06);
}

/* Content */

.hotel-content{
    padding:18px;
}

.hotel-content h3{
    font-size:22px;
    margin:0 0 12px;
    font-weight:700;
    color:#222;
    line-height:1.3;
}

.hotel-address{
    font-size:15px;
    color:#666;
    line-height:1.6;
    min-height:50px;
    margin-bottom:18px;
}

/* Button */

.hotel-btn{
    display:block;
    width:100%;
    text-align:center;
    padding:14px;
    border:2px solid #2563eb;
    color:#2563eb;
    border-radius:10px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.hotel-btn:hover{
    background:#2563eb;
    color:#fff;
}

/* Arrows */

#hotel-slider .splide__arrow{
    width:46px;
    height:46px;
    background:#fff;
    opacity:1;
    box-shadow:0 5px 18px rgba(0,0,0,.15);
}

#hotel-slider .splide__arrow svg{
    fill:#2563eb;
}

#hotel-slider .splide__pagination{
    margin-top:18px;
}

/* Mobile */

@media(max-width:991px){

.hotel-thumb img{
height:180px;
}

.hotel-content h3{
font-size:20px;
}

}

@media(max-width:767px){

.hotel-thumb img{
height:170px;
}

.hotel-content{
padding:15px;
}

.hotel-content h3{
font-size:18px;
}

.hotel-address{
font-size:14px;
}

.hotel-btn{
padding:12px;
}

}